
img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;

  -ms-touch-action: none;
  touch-action: none;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  overflow: auto;

  text-align: center;

  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;

  outline: none;

  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}
/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;

  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-close {
  position: absolute;
  top: 0;
  left: 0;

  display: block;
  overflow: visible;

  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;

  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;

  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;

  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 35px;

  content: "\00d7";
  text-align: center;
}

/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
  font: inherit;

  display: inline-block;
  overflow: visible;

  min-width: 110px;
  margin: 0;
  padding: 12px 0;

  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}

/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}
.wpgmza-marker-library-dialog iframe{
	display: block;
	width: 100%;
	height: 80vh;
}

input#wpgmza_add_address_map_editor {
    width: 80% !important;
}

.wpgmza-marker-library-dialog {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    max-width: 100%;
    width: 1200px;
}

.wpgmza-marker-library-dialog #wpgmza-powered-by-mappity {
    position: absolute;
    float: unset;
    top: 8px;
    right: 5px;
    
}html .anwp-pg-wrap{box-sizing:border-box;-ms-overflow-style:scrollbar}.anwp-pg-wrap *,.anwp-pg-wrap :after,.anwp-pg-wrap :before{box-sizing:inherit}.anwp-pg-wrap .d-none{display:none!important}.anwp-pg-wrap .d-inline{display:inline!important}.anwp-pg-wrap .d-inline-block{display:inline-block!important}.anwp-pg-wrap .d-block{display:block!important}.anwp-pg-wrap .d-table{display:table!important}.anwp-pg-wrap .d-table-row{display:table-row!important}.anwp-pg-wrap .d-table-cell{display:table-cell!important}.anwp-pg-wrap .d-flex{display:flex!important}.anwp-pg-wrap .d-inline-flex{display:inline-flex!important}@media (min-width:576px){.anwp-pg-wrap .d-sm-none{display:none!important}.anwp-pg-wrap .d-sm-inline{display:inline!important}.anwp-pg-wrap .d-sm-inline-block{display:inline-block!important}.anwp-pg-wrap .d-sm-block{display:block!important}.anwp-pg-wrap .d-sm-table{display:table!important}.anwp-pg-wrap .d-sm-table-row{display:table-row!important}.anwp-pg-wrap .d-sm-table-cell{display:table-cell!important}.anwp-pg-wrap .d-sm-flex{display:flex!important}.anwp-pg-wrap .d-sm-inline-flex{display:inline-flex!important}}@media (min-width:768px){.anwp-pg-wrap .d-md-none{display:none!important}.anwp-pg-wrap .d-md-inline{display:inline!important}.anwp-pg-wrap .d-md-inline-block{display:inline-block!important}.anwp-pg-wrap .d-md-block{display:block!important}.anwp-pg-wrap .d-md-table{display:table!important}.anwp-pg-wrap .d-md-table-row{display:table-row!important}.anwp-pg-wrap .d-md-table-cell{display:table-cell!important}.anwp-pg-wrap .d-md-flex{display:flex!important}.anwp-pg-wrap .d-md-inline-flex{display:inline-flex!important}}@media (min-width:992px){.anwp-pg-wrap .d-lg-none{display:none!important}.anwp-pg-wrap .d-lg-inline{display:inline!important}.anwp-pg-wrap .d-lg-inline-block{display:inline-block!important}.anwp-pg-wrap .d-lg-block{display:block!important}.anwp-pg-wrap .d-lg-table{display:table!important}.anwp-pg-wrap .d-lg-table-row{display:table-row!important}.anwp-pg-wrap .d-lg-table-cell{display:table-cell!important}.anwp-pg-wrap .d-lg-flex{display:flex!important}.anwp-pg-wrap .d-lg-inline-flex{display:inline-flex!important}}@media (min-width:1200px){.anwp-pg-wrap .d-xl-none{display:none!important}.anwp-pg-wrap .d-xl-inline{display:inline!important}.anwp-pg-wrap .d-xl-inline-block{display:inline-block!important}.anwp-pg-wrap .d-xl-block{display:block!important}.anwp-pg-wrap .d-xl-table{display:table!important}.anwp-pg-wrap .d-xl-table-row{display:table-row!important}.anwp-pg-wrap .d-xl-table-cell{display:table-cell!important}.anwp-pg-wrap .d-xl-flex{display:flex!important}.anwp-pg-wrap .d-xl-inline-flex{display:inline-flex!important}}.anwp-pg-wrap .position-static{position:static!important}.anwp-pg-wrap .position-relative{position:relative!important}.anwp-pg-wrap .position-absolute{position:absolute!important}.anwp-pg-wrap .position-fixed{position:fixed!important}.anwp-pg-wrap .position-sticky{position:-webkit-sticky!important;position:sticky!important}.anwp-pg-wrap .flex-row{flex-direction:row!important}.anwp-pg-wrap .flex-column{flex-direction:column!important}.anwp-pg-wrap .flex-row-reverse{flex-direction:row-reverse!important}.anwp-pg-wrap .flex-column-reverse{flex-direction:column-reverse!important}.anwp-pg-wrap .flex-wrap{flex-wrap:wrap!important}.anwp-pg-wrap .flex-nowrap{flex-wrap:nowrap!important}.anwp-pg-wrap .flex-wrap-reverse{flex-wrap:wrap-reverse!important}.anwp-pg-wrap .flex-fill{flex:1 1 auto!important}.anwp-pg-wrap .flex-grow-0{flex-grow:0!important}.anwp-pg-wrap .flex-grow-1{flex-grow:1!important}.anwp-pg-wrap .flex-shrink-0{flex-shrink:0!important}.anwp-pg-wrap .flex-shrink-1{flex-shrink:1!important}.anwp-pg-wrap .justify-content-start{justify-content:flex-start!important}.anwp-pg-wrap .justify-content-end{justify-content:flex-end!important}.anwp-pg-wrap .justify-content-center{justify-content:center!important}.anwp-pg-wrap .justify-content-between{justify-content:space-between!important}.anwp-pg-wrap .justify-content-around{justify-content:space-around!important}.anwp-pg-wrap .align-items-start{align-items:flex-start!important}.anwp-pg-wrap .align-items-end{align-items:flex-end!important}.anwp-pg-wrap .align-items-center{align-items:center!important}.anwp-pg-wrap .align-items-baseline{align-items:baseline!important}.anwp-pg-wrap .align-items-stretch{align-items:stretch!important}.anwp-pg-wrap .align-content-start{align-content:flex-start!important}.anwp-pg-wrap .align-content-end{align-content:flex-end!important}.anwp-pg-wrap .align-content-center{align-content:center!important}.anwp-pg-wrap .align-content-between{align-content:space-between!important}.anwp-pg-wrap .align-content-around{align-content:space-around!important}.anwp-pg-wrap .align-content-stretch{align-content:stretch!important}.anwp-pg-wrap .align-self-auto{align-self:auto!important}.anwp-pg-wrap .align-self-start{align-self:flex-start!important}.anwp-pg-wrap .align-self-end{align-self:flex-end!important}.anwp-pg-wrap .align-self-center{align-self:center!important}.anwp-pg-wrap .align-self-baseline{align-self:baseline!important}.anwp-pg-wrap .align-self-stretch{align-self:stretch!important}@media (min-width:576px){.anwp-pg-wrap .flex-sm-row{flex-direction:row!important}.anwp-pg-wrap .flex-sm-column{flex-direction:column!important}.anwp-pg-wrap .flex-sm-row-reverse{flex-direction:row-reverse!important}.anwp-pg-wrap .flex-sm-column-reverse{flex-direction:column-reverse!important}.anwp-pg-wrap .flex-sm-wrap{flex-wrap:wrap!important}.anwp-pg-wrap .flex-sm-nowrap{flex-wrap:nowrap!important}.anwp-pg-wrap .flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.anwp-pg-wrap .flex-sm-fill{flex:1 1 auto!important}.anwp-pg-wrap .flex-sm-grow-0{flex-grow:0!important}.anwp-pg-wrap .flex-sm-grow-1{flex-grow:1!important}.anwp-pg-wrap .flex-sm-shrink-0{flex-shrink:0!important}.anwp-pg-wrap .flex-sm-shrink-1{flex-shrink:1!important}.anwp-pg-wrap .justify-content-sm-start{justify-content:flex-start!important}.anwp-pg-wrap .justify-content-sm-end{justify-content:flex-end!important}.anwp-pg-wrap .justify-content-sm-center{justify-content:center!important}.anwp-pg-wrap .justify-content-sm-between{justify-content:space-between!important}.anwp-pg-wrap .justify-content-sm-around{justify-content:space-around!important}.anwp-pg-wrap .align-items-sm-start{align-items:flex-start!important}.anwp-pg-wrap .align-items-sm-end{align-items:flex-end!important}.anwp-pg-wrap .align-items-sm-center{align-items:center!important}.anwp-pg-wrap .align-items-sm-baseline{align-items:baseline!important}.anwp-pg-wrap .align-items-sm-stretch{align-items:stretch!important}.anwp-pg-wrap .align-content-sm-start{align-content:flex-start!important}.anwp-pg-wrap .align-content-sm-end{align-content:flex-end!important}.anwp-pg-wrap .align-content-sm-center{align-content:center!important}.anwp-pg-wrap .align-content-sm-between{align-content:space-between!important}.anwp-pg-wrap .align-content-sm-around{align-content:space-around!important}.anwp-pg-wrap .align-content-sm-stretch{align-content:stretch!important}.anwp-pg-wrap .align-self-sm-auto{align-self:auto!important}.anwp-pg-wrap .align-self-sm-start{align-self:flex-start!important}.anwp-pg-wrap .align-self-sm-end{align-self:flex-end!important}.anwp-pg-wrap .align-self-sm-center{align-self:center!important}.anwp-pg-wrap .align-self-sm-baseline{align-self:baseline!important}.anwp-pg-wrap .align-self-sm-stretch{align-self:stretch!important}}@media (min-width:768px){.anwp-pg-wrap .flex-md-row{flex-direction:row!important}.anwp-pg-wrap .flex-md-column{flex-direction:column!important}.anwp-pg-wrap .flex-md-row-reverse{flex-direction:row-reverse!important}.anwp-pg-wrap .flex-md-column-reverse{flex-direction:column-reverse!important}.anwp-pg-wrap .flex-md-wrap{flex-wrap:wrap!important}.anwp-pg-wrap .flex-md-nowrap{flex-wrap:nowrap!important}.anwp-pg-wrap .flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.anwp-pg-wrap .flex-md-fill{flex:1 1 auto!important}.anwp-pg-wrap .flex-md-grow-0{flex-grow:0!important}.anwp-pg-wrap .flex-md-grow-1{flex-grow:1!important}.anwp-pg-wrap .flex-md-shrink-0{flex-shrink:0!important}.anwp-pg-wrap .flex-md-shrink-1{flex-shrink:1!important}.anwp-pg-wrap .justify-content-md-start{justify-content:flex-start!important}.anwp-pg-wrap .justify-content-md-end{justify-content:flex-end!important}.anwp-pg-wrap .justify-content-md-center{justify-content:center!important}.anwp-pg-wrap .justify-content-md-between{justify-content:space-between!important}.anwp-pg-wrap .justify-content-md-around{justify-content:space-around!important}.anwp-pg-wrap .align-items-md-start{align-items:flex-start!important}.anwp-pg-wrap .align-items-md-end{align-items:flex-end!important}.anwp-pg-wrap .align-items-md-center{align-items:center!important}.anwp-pg-wrap .align-items-md-baseline{align-items:baseline!important}.anwp-pg-wrap .align-items-md-stretch{align-items:stretch!important}.anwp-pg-wrap .align-content-md-start{align-content:flex-start!important}.anwp-pg-wrap .align-content-md-end{align-content:flex-end!important}.anwp-pg-wrap .align-content-md-center{align-content:center!important}.anwp-pg-wrap .align-content-md-between{align-content:space-between!important}.anwp-pg-wrap .align-content-md-around{align-content:space-around!important}.anwp-pg-wrap .align-content-md-stretch{align-content:stretch!important}.anwp-pg-wrap .align-self-md-auto{align-self:auto!important}.anwp-pg-wrap .align-self-md-start{align-self:flex-start!important}.anwp-pg-wrap .align-self-md-end{align-self:flex-end!important}.anwp-pg-wrap .align-self-md-center{align-self:center!important}.anwp-pg-wrap .align-self-md-baseline{align-self:baseline!important}.anwp-pg-wrap .align-self-md-stretch{align-self:stretch!important}}@media (min-width:992px){.anwp-pg-wrap .flex-lg-row{flex-direction:row!important}.anwp-pg-wrap .flex-lg-column{flex-direction:column!important}.anwp-pg-wrap .flex-lg-row-reverse{flex-direction:row-reverse!important}.anwp-pg-wrap .flex-lg-column-reverse{flex-direction:column-reverse!important}.anwp-pg-wrap .flex-lg-wrap{flex-wrap:wrap!important}.anwp-pg-wrap .flex-lg-nowrap{flex-wrap:nowrap!important}.anwp-pg-wrap .flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.anwp-pg-wrap .flex-lg-fill{flex:1 1 auto!important}.anwp-pg-wrap .flex-lg-grow-0{flex-grow:0!important}.anwp-pg-wrap .flex-lg-grow-1{flex-grow:1!important}.anwp-pg-wrap .flex-lg-shrink-0{flex-shrink:0!important}.anwp-pg-wrap .flex-lg-shrink-1{flex-shrink:1!important}.anwp-pg-wrap .justify-content-lg-start{justify-content:flex-start!important}.anwp-pg-wrap .justify-content-lg-end{justify-content:flex-end!important}.anwp-pg-wrap .justify-content-lg-center{justify-content:center!important}.anwp-pg-wrap .justify-content-lg-between{justify-content:space-between!important}.anwp-pg-wrap .justify-content-lg-around{justify-content:space-around!important}.anwp-pg-wrap .align-items-lg-start{align-items:flex-start!important}.anwp-pg-wrap .align-items-lg-end{align-items:flex-end!important}.anwp-pg-wrap .align-items-lg-center{align-items:center!important}.anwp-pg-wrap .align-items-lg-baseline{align-items:baseline!important}.anwp-pg-wrap .align-items-lg-stretch{align-items:stretch!important}.anwp-pg-wrap .align-content-lg-start{align-content:flex-start!important}.anwp-pg-wrap .align-content-lg-end{align-content:flex-end!important}.anwp-pg-wrap .align-content-lg-center{align-content:center!important}.anwp-pg-wrap .align-content-lg-between{align-content:space-between!important}.anwp-pg-wrap .align-content-lg-around{align-content:space-around!important}.anwp-pg-wrap .align-content-lg-stretch{align-content:stretch!important}.anwp-pg-wrap .align-self-lg-auto{align-self:auto!important}.anwp-pg-wrap .align-self-lg-start{align-self:flex-start!important}.anwp-pg-wrap .align-self-lg-end{align-self:flex-end!important}.anwp-pg-wrap .align-self-lg-center{align-self:center!important}.anwp-pg-wrap .align-self-lg-baseline{align-self:baseline!important}.anwp-pg-wrap .align-self-lg-stretch{align-self:stretch!important}}@media (min-width:1200px){.anwp-pg-wrap .flex-xl-row{flex-direction:row!important}.anwp-pg-wrap .flex-xl-column{flex-direction:column!important}.anwp-pg-wrap .flex-xl-row-reverse{flex-direction:row-reverse!important}.anwp-pg-wrap .flex-xl-column-reverse{flex-direction:column-reverse!important}.anwp-pg-wrap .flex-xl-wrap{flex-wrap:wrap!important}.anwp-pg-wrap .flex-xl-nowrap{flex-wrap:nowrap!important}.anwp-pg-wrap .flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.anwp-pg-wrap .flex-xl-fill{flex:1 1 auto!important}.anwp-pg-wrap .flex-xl-grow-0{flex-grow:0!important}.anwp-pg-wrap .flex-xl-grow-1{flex-grow:1!important}.anwp-pg-wrap .flex-xl-shrink-0{flex-shrink:0!important}.anwp-pg-wrap .flex-xl-shrink-1{flex-shrink:1!important}.anwp-pg-wrap .justify-content-xl-start{justify-content:flex-start!important}.anwp-pg-wrap .justify-content-xl-end{justify-content:flex-end!important}.anwp-pg-wrap .justify-content-xl-center{justify-content:center!important}.anwp-pg-wrap .justify-content-xl-between{justify-content:space-between!important}.anwp-pg-wrap .justify-content-xl-around{justify-content:space-around!important}.anwp-pg-wrap .align-items-xl-start{align-items:flex-start!important}.anwp-pg-wrap .align-items-xl-end{align-items:flex-end!important}.anwp-pg-wrap .align-items-xl-center{align-items:center!important}.anwp-pg-wrap .align-items-xl-baseline{align-items:baseline!important}.anwp-pg-wrap .align-items-xl-stretch{align-items:stretch!important}.anwp-pg-wrap .align-content-xl-start{align-content:flex-start!important}.anwp-pg-wrap .align-content-xl-end{align-content:flex-end!important}.anwp-pg-wrap .align-content-xl-center{align-content:center!important}.anwp-pg-wrap .align-content-xl-between{align-content:space-between!important}.anwp-pg-wrap .align-content-xl-around{align-content:space-around!important}.anwp-pg-wrap .align-content-xl-stretch{align-content:stretch!important}.anwp-pg-wrap .align-self-xl-auto{align-self:auto!important}.anwp-pg-wrap .align-self-xl-start{align-self:flex-start!important}.anwp-pg-wrap .align-self-xl-end{align-self:flex-end!important}.anwp-pg-wrap .align-self-xl-center{align-self:center!important}.anwp-pg-wrap .align-self-xl-baseline{align-self:baseline!important}.anwp-pg-wrap .align-self-xl-stretch{align-self:stretch!important}}.anwp-pg-wrap .w-25{width:25%!important}.anwp-pg-wrap .w-50{width:50%!important}.anwp-pg-wrap .w-75{width:75%!important}.anwp-pg-wrap .w-100{width:100%!important}.anwp-pg-wrap .w-auto{width:auto!important}.anwp-pg-wrap .h-25{height:25%!important}.anwp-pg-wrap .h-50{height:50%!important}.anwp-pg-wrap .h-75{height:75%!important}.anwp-pg-wrap .h-100{height:100%!important}.anwp-pg-wrap .h-auto{height:auto!important}.anwp-pg-wrap .mw-100{max-width:100%!important}.anwp-pg-wrap .mh-100{max-height:100%!important}.anwp-pg-wrap .min-vw-100{min-width:100vw!important}.anwp-pg-wrap .min-vh-100{min-height:100vh!important}.anwp-pg-wrap .vw-100{width:100vw!important}.anwp-pg-wrap .vh-100{height:100vh!important}.anwp-pg-wrap .m-0{margin:0!important}.anwp-pg-wrap .mt-0,.anwp-pg-wrap .my-0{margin-top:0!important}.anwp-pg-wrap .mr-0,.anwp-pg-wrap .mx-0{margin-right:0!important}.anwp-pg-wrap .mb-0,.anwp-pg-wrap .my-0{margin-bottom:0!important}.anwp-pg-wrap .ml-0,.anwp-pg-wrap .mx-0{margin-left:0!important}.anwp-pg-wrap .m-1{margin:.25rem!important}.anwp-pg-wrap .mt-1,.anwp-pg-wrap .my-1{margin-top:.25rem!important}.anwp-pg-wrap .mr-1,.anwp-pg-wrap .mx-1{margin-right:.25rem!important}.anwp-pg-wrap .mb-1,.anwp-pg-wrap .my-1{margin-bottom:.25rem!important}.anwp-pg-wrap .ml-1,.anwp-pg-wrap .mx-1{margin-left:.25rem!important}.anwp-pg-wrap .m-2{margin:.5rem!important}.anwp-pg-wrap .mt-2,.anwp-pg-wrap .my-2{margin-top:.5rem!important}.anwp-pg-wrap .mr-2,.anwp-pg-wrap .mx-2{margin-right:.5rem!important}.anwp-pg-wrap .mb-2,.anwp-pg-wrap .my-2{margin-bottom:.5rem!important}.anwp-pg-wrap .ml-2,.anwp-pg-wrap .mx-2{margin-left:.5rem!important}.anwp-pg-wrap .m-3{margin:1rem!important}.anwp-pg-wrap .mt-3,.anwp-pg-wrap .my-3{margin-top:1rem!important}.anwp-pg-wrap .mr-3,.anwp-pg-wrap .mx-3{margin-right:1rem!important}.anwp-pg-wrap .mb-3,.anwp-pg-wrap .my-3{margin-bottom:1rem!important}.anwp-pg-wrap .ml-3,.anwp-pg-wrap .mx-3{margin-left:1rem!important}.anwp-pg-wrap .m-4{margin:1.5rem!important}.anwp-pg-wrap .mt-4,.anwp-pg-wrap .my-4{margin-top:1.5rem!important}.anwp-pg-wrap .mr-4,.anwp-pg-wrap .mx-4{margin-right:1.5rem!important}.anwp-pg-wrap .mb-4,.anwp-pg-wrap .my-4{margin-bottom:1.5rem!important}.anwp-pg-wrap .ml-4,.anwp-pg-wrap .mx-4{margin-left:1.5rem!important}.anwp-pg-wrap .m-5{margin:3rem!important}.anwp-pg-wrap .mt-5,.anwp-pg-wrap .my-5{margin-top:3rem!important}.anwp-pg-wrap .mr-5,.anwp-pg-wrap .mx-5{margin-right:3rem!important}.anwp-pg-wrap .mb-5,.anwp-pg-wrap .my-5{margin-bottom:3rem!important}.anwp-pg-wrap .ml-5,.anwp-pg-wrap .mx-5{margin-left:3rem!important}.anwp-pg-wrap .p-0{padding:0!important}.anwp-pg-wrap .pt-0,.anwp-pg-wrap .py-0{padding-top:0!important}.anwp-pg-wrap .pr-0,.anwp-pg-wrap .px-0{padding-right:0!important}.anwp-pg-wrap .pb-0,.anwp-pg-wrap .py-0{padding-bottom:0!important}.anwp-pg-wrap .pl-0,.anwp-pg-wrap .px-0{padding-left:0!important}.anwp-pg-wrap .p-1{padding:.25rem!important}.anwp-pg-wrap .pt-1,.anwp-pg-wrap .py-1{padding-top:.25rem!important}.anwp-pg-wrap .pr-1,.anwp-pg-wrap .px-1{padding-right:.25rem!important}.anwp-pg-wrap .pb-1,.anwp-pg-wrap .py-1{padding-bottom:.25rem!important}.anwp-pg-wrap .pl-1,.anwp-pg-wrap .px-1{padding-left:.25rem!important}.anwp-pg-wrap .p-2{padding:.5rem!important}.anwp-pg-wrap .pt-2,.anwp-pg-wrap .py-2{padding-top:.5rem!important}.anwp-pg-wrap .pr-2,.anwp-pg-wrap .px-2{padding-right:.5rem!important}.anwp-pg-wrap .pb-2,.anwp-pg-wrap .py-2{padding-bottom:.5rem!important}.anwp-pg-wrap .pl-2,.anwp-pg-wrap .px-2{padding-left:.5rem!important}.anwp-pg-wrap .p-3{padding:1rem!important}.anwp-pg-wrap .pt-3,.anwp-pg-wrap .py-3{padding-top:1rem!important}.anwp-pg-wrap .pr-3,.anwp-pg-wrap .px-3{padding-right:1rem!important}.anwp-pg-wrap .pb-3,.anwp-pg-wrap .py-3{padding-bottom:1rem!important}.anwp-pg-wrap .pl-3,.anwp-pg-wrap .px-3{padding-left:1rem!important}.anwp-pg-wrap .p-4{padding:1.5rem!important}.anwp-pg-wrap .pt-4,.anwp-pg-wrap .py-4{padding-top:1.5rem!important}.anwp-pg-wrap .pr-4,.anwp-pg-wrap .px-4{padding-right:1.5rem!important}.anwp-pg-wrap .pb-4,.anwp-pg-wrap .py-4{padding-bottom:1.5rem!important}.anwp-pg-wrap .pl-4,.anwp-pg-wrap .px-4{padding-left:1.5rem!important}.anwp-pg-wrap .p-5{padding:3rem!important}.anwp-pg-wrap .pt-5,.anwp-pg-wrap .py-5{padding-top:3rem!important}.anwp-pg-wrap .pr-5,.anwp-pg-wrap .px-5{padding-right:3rem!important}.anwp-pg-wrap .pb-5,.anwp-pg-wrap .py-5{padding-bottom:3rem!important}.anwp-pg-wrap .pl-5,.anwp-pg-wrap .px-5{padding-left:3rem!important}.anwp-pg-wrap .m-n1{margin:-.25rem!important}.anwp-pg-wrap .mt-n1,.anwp-pg-wrap .my-n1{margin-top:-.25rem!important}.anwp-pg-wrap .mr-n1,.anwp-pg-wrap .mx-n1{margin-right:-.25rem!important}.anwp-pg-wrap .mb-n1,.anwp-pg-wrap .my-n1{margin-bottom:-.25rem!important}.anwp-pg-wrap .ml-n1,.anwp-pg-wrap .mx-n1{margin-left:-.25rem!important}.anwp-pg-wrap .m-n2{margin:-.5rem!important}.anwp-pg-wrap .mt-n2,.anwp-pg-wrap .my-n2{margin-top:-.5rem!important}.anwp-pg-wrap .mr-n2,.anwp-pg-wrap .mx-n2{margin-right:-.5rem!important}.anwp-pg-wrap .mb-n2,.anwp-pg-wrap .my-n2{margin-bottom:-.5rem!important}.anwp-pg-wrap .ml-n2,.anwp-pg-wrap .mx-n2{margin-left:-.5rem!important}.anwp-pg-wrap .m-n3{margin:-1rem!important}.anwp-pg-wrap .mt-n3,.anwp-pg-wrap .my-n3{margin-top:-1rem!important}.anwp-pg-wrap .mr-n3,.anwp-pg-wrap .mx-n3{margin-right:-1rem!important}.anwp-pg-wrap .mb-n3,.anwp-pg-wrap .my-n3{margin-bottom:-1rem!important}.anwp-pg-wrap .ml-n3,.anwp-pg-wrap .mx-n3{margin-left:-1rem!important}.anwp-pg-wrap .m-n4{margin:-1.5rem!important}.anwp-pg-wrap .mt-n4,.anwp-pg-wrap .my-n4{margin-top:-1.5rem!important}.anwp-pg-wrap .mr-n4,.anwp-pg-wrap .mx-n4{margin-right:-1.5rem!important}.anwp-pg-wrap .mb-n4,.anwp-pg-wrap .my-n4{margin-bottom:-1.5rem!important}.anwp-pg-wrap .ml-n4,.anwp-pg-wrap .mx-n4{margin-left:-1.5rem!important}.anwp-pg-wrap .m-n5{margin:-3rem!important}.anwp-pg-wrap .mt-n5,.anwp-pg-wrap .my-n5{margin-top:-3rem!important}.anwp-pg-wrap .mr-n5,.anwp-pg-wrap .mx-n5{margin-right:-3rem!important}.anwp-pg-wrap .mb-n5,.anwp-pg-wrap .my-n5{margin-bottom:-3rem!important}.anwp-pg-wrap .ml-n5,.anwp-pg-wrap .mx-n5{margin-left:-3rem!important}.anwp-pg-wrap .m-auto{margin:auto!important}.anwp-pg-wrap .mt-auto,.anwp-pg-wrap .my-auto{margin-top:auto!important}.anwp-pg-wrap .mr-auto,.anwp-pg-wrap .mx-auto{margin-right:auto!important}.anwp-pg-wrap .mb-auto,.anwp-pg-wrap .my-auto{margin-bottom:auto!important}.anwp-pg-wrap .ml-auto,.anwp-pg-wrap .mx-auto{margin-left:auto!important}@media (min-width:576px){.anwp-pg-wrap .m-sm-0{margin:0!important}.anwp-pg-wrap .mt-sm-0,.anwp-pg-wrap .my-sm-0{margin-top:0!important}.anwp-pg-wrap .mr-sm-0,.anwp-pg-wrap .mx-sm-0{margin-right:0!important}.anwp-pg-wrap .mb-sm-0,.anwp-pg-wrap .my-sm-0{margin-bottom:0!important}.anwp-pg-wrap .ml-sm-0,.anwp-pg-wrap .mx-sm-0{margin-left:0!important}.anwp-pg-wrap .m-sm-1{margin:.25rem!important}.anwp-pg-wrap .mt-sm-1,.anwp-pg-wrap .my-sm-1{margin-top:.25rem!important}.anwp-pg-wrap .mr-sm-1,.anwp-pg-wrap .mx-sm-1{margin-right:.25rem!important}.anwp-pg-wrap .mb-sm-1,.anwp-pg-wrap .my-sm-1{margin-bottom:.25rem!important}.anwp-pg-wrap .ml-sm-1,.anwp-pg-wrap .mx-sm-1{margin-left:.25rem!important}.anwp-pg-wrap .m-sm-2{margin:.5rem!important}.anwp-pg-wrap .mt-sm-2,.anwp-pg-wrap .my-sm-2{margin-top:.5rem!important}.anwp-pg-wrap .mr-sm-2,.anwp-pg-wrap .mx-sm-2{margin-right:.5rem!important}.anwp-pg-wrap .mb-sm-2,.anwp-pg-wrap .my-sm-2{margin-bottom:.5rem!important}.anwp-pg-wrap .ml-sm-2,.anwp-pg-wrap .mx-sm-2{margin-left:.5rem!important}.anwp-pg-wrap .m-sm-3{margin:1rem!important}.anwp-pg-wrap .mt-sm-3,.anwp-pg-wrap .my-sm-3{margin-top:1rem!important}.anwp-pg-wrap .mr-sm-3,.anwp-pg-wrap .mx-sm-3{margin-right:1rem!important}.anwp-pg-wrap .mb-sm-3,.anwp-pg-wrap .my-sm-3{margin-bottom:1rem!important}.anwp-pg-wrap .ml-sm-3,.anwp-pg-wrap .mx-sm-3{margin-left:1rem!important}.anwp-pg-wrap .m-sm-4{margin:1.5rem!important}.anwp-pg-wrap .mt-sm-4,.anwp-pg-wrap .my-sm-4{margin-top:1.5rem!important}.anwp-pg-wrap .mr-sm-4,.anwp-pg-wrap .mx-sm-4{margin-right:1.5rem!important}.anwp-pg-wrap .mb-sm-4,.anwp-pg-wrap .my-sm-4{margin-bottom:1.5rem!important}.anwp-pg-wrap .ml-sm-4,.anwp-pg-wrap .mx-sm-4{margin-left:1.5rem!important}.anwp-pg-wrap .m-sm-5{margin:3rem!important}.anwp-pg-wrap .mt-sm-5,.anwp-pg-wrap .my-sm-5{margin-top:3rem!important}.anwp-pg-wrap .mr-sm-5,.anwp-pg-wrap .mx-sm-5{margin-right:3rem!important}.anwp-pg-wrap .mb-sm-5,.anwp-pg-wrap .my-sm-5{margin-bottom:3rem!important}.anwp-pg-wrap .ml-sm-5,.anwp-pg-wrap .mx-sm-5{margin-left:3rem!important}.anwp-pg-wrap .p-sm-0{padding:0!important}.anwp-pg-wrap .pt-sm-0,.anwp-pg-wrap .py-sm-0{padding-top:0!important}.anwp-pg-wrap .pr-sm-0,.anwp-pg-wrap .px-sm-0{padding-right:0!important}.anwp-pg-wrap .pb-sm-0,.anwp-pg-wrap .py-sm-0{padding-bottom:0!important}.anwp-pg-wrap .pl-sm-0,.anwp-pg-wrap .px-sm-0{padding-left:0!important}.anwp-pg-wrap .p-sm-1{padding:.25rem!important}.anwp-pg-wrap .pt-sm-1,.anwp-pg-wrap .py-sm-1{padding-top:.25rem!important}.anwp-pg-wrap .pr-sm-1,.anwp-pg-wrap .px-sm-1{padding-right:.25rem!important}.anwp-pg-wrap .pb-sm-1,.anwp-pg-wrap .py-sm-1{padding-bottom:.25rem!important}.anwp-pg-wrap .pl-sm-1,.anwp-pg-wrap .px-sm-1{padding-left:.25rem!important}.anwp-pg-wrap .p-sm-2{padding:.5rem!important}.anwp-pg-wrap .pt-sm-2,.anwp-pg-wrap .py-sm-2{padding-top:.5rem!important}.anwp-pg-wrap .pr-sm-2,.anwp-pg-wrap .px-sm-2{padding-right:.5rem!important}.anwp-pg-wrap .pb-sm-2,.anwp-pg-wrap .py-sm-2{padding-bottom:.5rem!important}.anwp-pg-wrap .pl-sm-2,.anwp-pg-wrap .px-sm-2{padding-left:.5rem!important}.anwp-pg-wrap .p-sm-3{padding:1rem!important}.anwp-pg-wrap .pt-sm-3,.anwp-pg-wrap .py-sm-3{padding-top:1rem!important}.anwp-pg-wrap .pr-sm-3,.anwp-pg-wrap .px-sm-3{padding-right:1rem!important}.anwp-pg-wrap .pb-sm-3,.anwp-pg-wrap .py-sm-3{padding-bottom:1rem!important}.anwp-pg-wrap .pl-sm-3,.anwp-pg-wrap .px-sm-3{padding-left:1rem!important}.anwp-pg-wrap .p-sm-4{padding:1.5rem!important}.anwp-pg-wrap .pt-sm-4,.anwp-pg-wrap .py-sm-4{padding-top:1.5rem!important}.anwp-pg-wrap .pr-sm-4,.anwp-pg-wrap .px-sm-4{padding-right:1.5rem!important}.anwp-pg-wrap .pb-sm-4,.anwp-pg-wrap .py-sm-4{padding-bottom:1.5rem!important}.anwp-pg-wrap .pl-sm-4,.anwp-pg-wrap .px-sm-4{padding-left:1.5rem!important}.anwp-pg-wrap .p-sm-5{padding:3rem!important}.anwp-pg-wrap .pt-sm-5,.anwp-pg-wrap .py-sm-5{padding-top:3rem!important}.anwp-pg-wrap .pr-sm-5,.anwp-pg-wrap .px-sm-5{padding-right:3rem!important}.anwp-pg-wrap .pb-sm-5,.anwp-pg-wrap .py-sm-5{padding-bottom:3rem!important}.anwp-pg-wrap .pl-sm-5,.anwp-pg-wrap .px-sm-5{padding-left:3rem!important}.anwp-pg-wrap .m-sm-n1{margin:-.25rem!important}.anwp-pg-wrap .mt-sm-n1,.anwp-pg-wrap .my-sm-n1{margin-top:-.25rem!important}.anwp-pg-wrap .mr-sm-n1,.anwp-pg-wrap .mx-sm-n1{margin-right:-.25rem!important}.anwp-pg-wrap .mb-sm-n1,.anwp-pg-wrap .my-sm-n1{margin-bottom:-.25rem!important}.anwp-pg-wrap .ml-sm-n1,.anwp-pg-wrap .mx-sm-n1{margin-left:-.25rem!important}.anwp-pg-wrap .m-sm-n2{margin:-.5rem!important}.anwp-pg-wrap .mt-sm-n2,.anwp-pg-wrap .my-sm-n2{margin-top:-.5rem!important}.anwp-pg-wrap .mr-sm-n2,.anwp-pg-wrap .mx-sm-n2{margin-right:-.5rem!important}.anwp-pg-wrap .mb-sm-n2,.anwp-pg-wrap .my-sm-n2{margin-bottom:-.5rem!important}.anwp-pg-wrap .ml-sm-n2,.anwp-pg-wrap .mx-sm-n2{margin-left:-.5rem!important}.anwp-pg-wrap .m-sm-n3{margin:-1rem!important}.anwp-pg-wrap .mt-sm-n3,.anwp-pg-wrap .my-sm-n3{margin-top:-1rem!important}.anwp-pg-wrap .mr-sm-n3,.anwp-pg-wrap .mx-sm-n3{margin-right:-1rem!important}.anwp-pg-wrap .mb-sm-n3,.anwp-pg-wrap .my-sm-n3{margin-bottom:-1rem!important}.anwp-pg-wrap .ml-sm-n3,.anwp-pg-wrap .mx-sm-n3{margin-left:-1rem!important}.anwp-pg-wrap .m-sm-n4{margin:-1.5rem!important}.anwp-pg-wrap .mt-sm-n4,.anwp-pg-wrap .my-sm-n4{margin-top:-1.5rem!important}.anwp-pg-wrap .mr-sm-n4,.anwp-pg-wrap .mx-sm-n4{margin-right:-1.5rem!important}.anwp-pg-wrap .mb-sm-n4,.anwp-pg-wrap .my-sm-n4{margin-bottom:-1.5rem!important}.anwp-pg-wrap .ml-sm-n4,.anwp-pg-wrap .mx-sm-n4{margin-left:-1.5rem!important}.anwp-pg-wrap .m-sm-n5{margin:-3rem!important}.anwp-pg-wrap .mt-sm-n5,.anwp-pg-wrap .my-sm-n5{margin-top:-3rem!important}.anwp-pg-wrap .mr-sm-n5,.anwp-pg-wrap .mx-sm-n5{margin-right:-3rem!important}.anwp-pg-wrap .mb-sm-n5,.anwp-pg-wrap .my-sm-n5{margin-bottom:-3rem!important}.anwp-pg-wrap .ml-sm-n5,.anwp-pg-wrap .mx-sm-n5{margin-left:-3rem!important}.anwp-pg-wrap .m-sm-auto{margin:auto!important}.anwp-pg-wrap .mt-sm-auto,.anwp-pg-wrap .my-sm-auto{margin-top:auto!important}.anwp-pg-wrap .mr-sm-auto,.anwp-pg-wrap .mx-sm-auto{margin-right:auto!important}.anwp-pg-wrap .mb-sm-auto,.anwp-pg-wrap .my-sm-auto{margin-bottom:auto!important}.anwp-pg-wrap .ml-sm-auto,.anwp-pg-wrap .mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.anwp-pg-wrap .m-md-0{margin:0!important}.anwp-pg-wrap .mt-md-0,.anwp-pg-wrap .my-md-0{margin-top:0!important}.anwp-pg-wrap .mr-md-0,.anwp-pg-wrap .mx-md-0{margin-right:0!important}.anwp-pg-wrap .mb-md-0,.anwp-pg-wrap .my-md-0{margin-bottom:0!important}.anwp-pg-wrap .ml-md-0,.anwp-pg-wrap .mx-md-0{margin-left:0!important}.anwp-pg-wrap .m-md-1{margin:.25rem!important}.anwp-pg-wrap .mt-md-1,.anwp-pg-wrap .my-md-1{margin-top:.25rem!important}.anwp-pg-wrap .mr-md-1,.anwp-pg-wrap .mx-md-1{margin-right:.25rem!important}.anwp-pg-wrap .mb-md-1,.anwp-pg-wrap .my-md-1{margin-bottom:.25rem!important}.anwp-pg-wrap .ml-md-1,.anwp-pg-wrap .mx-md-1{margin-left:.25rem!important}.anwp-pg-wrap .m-md-2{margin:.5rem!important}.anwp-pg-wrap .mt-md-2,.anwp-pg-wrap .my-md-2{margin-top:.5rem!important}.anwp-pg-wrap .mr-md-2,.anwp-pg-wrap .mx-md-2{margin-right:.5rem!important}.anwp-pg-wrap .mb-md-2,.anwp-pg-wrap .my-md-2{margin-bottom:.5rem!important}.anwp-pg-wrap .ml-md-2,.anwp-pg-wrap .mx-md-2{margin-left:.5rem!important}.anwp-pg-wrap .m-md-3{margin:1rem!important}.anwp-pg-wrap .mt-md-3,.anwp-pg-wrap .my-md-3{margin-top:1rem!important}.anwp-pg-wrap .mr-md-3,.anwp-pg-wrap .mx-md-3{margin-right:1rem!important}.anwp-pg-wrap .mb-md-3,.anwp-pg-wrap .my-md-3{margin-bottom:1rem!important}.anwp-pg-wrap .ml-md-3,.anwp-pg-wrap .mx-md-3{margin-left:1rem!important}.anwp-pg-wrap .m-md-4{margin:1.5rem!important}.anwp-pg-wrap .mt-md-4,.anwp-pg-wrap .my-md-4{margin-top:1.5rem!important}.anwp-pg-wrap .mr-md-4,.anwp-pg-wrap .mx-md-4{margin-right:1.5rem!important}.anwp-pg-wrap .mb-md-4,.anwp-pg-wrap .my-md-4{margin-bottom:1.5rem!important}.anwp-pg-wrap .ml-md-4,.anwp-pg-wrap .mx-md-4{margin-left:1.5rem!important}.anwp-pg-wrap .m-md-5{margin:3rem!important}.anwp-pg-wrap .mt-md-5,.anwp-pg-wrap .my-md-5{margin-top:3rem!important}.anwp-pg-wrap .mr-md-5,.anwp-pg-wrap .mx-md-5{margin-right:3rem!important}.anwp-pg-wrap .mb-md-5,.anwp-pg-wrap .my-md-5{margin-bottom:3rem!important}.anwp-pg-wrap .ml-md-5,.anwp-pg-wrap .mx-md-5{margin-left:3rem!important}.anwp-pg-wrap .p-md-0{padding:0!important}.anwp-pg-wrap .pt-md-0,.anwp-pg-wrap .py-md-0{padding-top:0!important}.anwp-pg-wrap .pr-md-0,.anwp-pg-wrap .px-md-0{padding-right:0!important}.anwp-pg-wrap .pb-md-0,.anwp-pg-wrap .py-md-0{padding-bottom:0!important}.anwp-pg-wrap .pl-md-0,.anwp-pg-wrap .px-md-0{padding-left:0!important}.anwp-pg-wrap .p-md-1{padding:.25rem!important}.anwp-pg-wrap .pt-md-1,.anwp-pg-wrap .py-md-1{padding-top:.25rem!important}.anwp-pg-wrap .pr-md-1,.anwp-pg-wrap .px-md-1{padding-right:.25rem!important}.anwp-pg-wrap .pb-md-1,.anwp-pg-wrap .py-md-1{padding-bottom:.25rem!important}.anwp-pg-wrap .pl-md-1,.anwp-pg-wrap .px-md-1{padding-left:.25rem!important}.anwp-pg-wrap .p-md-2{padding:.5rem!important}.anwp-pg-wrap .pt-md-2,.anwp-pg-wrap .py-md-2{padding-top:.5rem!important}.anwp-pg-wrap .pr-md-2,.anwp-pg-wrap .px-md-2{padding-right:.5rem!important}.anwp-pg-wrap .pb-md-2,.anwp-pg-wrap .py-md-2{padding-bottom:.5rem!important}.anwp-pg-wrap .pl-md-2,.anwp-pg-wrap .px-md-2{padding-left:.5rem!important}.anwp-pg-wrap .p-md-3{padding:1rem!important}.anwp-pg-wrap .pt-md-3,.anwp-pg-wrap .py-md-3{padding-top:1rem!important}.anwp-pg-wrap .pr-md-3,.anwp-pg-wrap .px-md-3{padding-right:1rem!important}.anwp-pg-wrap .pb-md-3,.anwp-pg-wrap .py-md-3{padding-bottom:1rem!important}.anwp-pg-wrap .pl-md-3,.anwp-pg-wrap .px-md-3{padding-left:1rem!important}.anwp-pg-wrap .p-md-4{padding:1.5rem!important}.anwp-pg-wrap .pt-md-4,.anwp-pg-wrap .py-md-4{padding-top:1.5rem!important}.anwp-pg-wrap .pr-md-4,.anwp-pg-wrap .px-md-4{padding-right:1.5rem!important}.anwp-pg-wrap .pb-md-4,.anwp-pg-wrap .py-md-4{padding-bottom:1.5rem!important}.anwp-pg-wrap .pl-md-4,.anwp-pg-wrap .px-md-4{padding-left:1.5rem!important}.anwp-pg-wrap .p-md-5{padding:3rem!important}.anwp-pg-wrap .pt-md-5,.anwp-pg-wrap .py-md-5{padding-top:3rem!important}.anwp-pg-wrap .pr-md-5,.anwp-pg-wrap .px-md-5{padding-right:3rem!important}.anwp-pg-wrap .pb-md-5,.anwp-pg-wrap .py-md-5{padding-bottom:3rem!important}.anwp-pg-wrap .pl-md-5,.anwp-pg-wrap .px-md-5{padding-left:3rem!important}.anwp-pg-wrap .m-md-n1{margin:-.25rem!important}.anwp-pg-wrap .mt-md-n1,.anwp-pg-wrap .my-md-n1{margin-top:-.25rem!important}.anwp-pg-wrap .mr-md-n1,.anwp-pg-wrap .mx-md-n1{margin-right:-.25rem!important}.anwp-pg-wrap .mb-md-n1,.anwp-pg-wrap .my-md-n1{margin-bottom:-.25rem!important}.anwp-pg-wrap .ml-md-n1,.anwp-pg-wrap .mx-md-n1{margin-left:-.25rem!important}.anwp-pg-wrap .m-md-n2{margin:-.5rem!important}.anwp-pg-wrap .mt-md-n2,.anwp-pg-wrap .my-md-n2{margin-top:-.5rem!important}.anwp-pg-wrap .mr-md-n2,.anwp-pg-wrap .mx-md-n2{margin-right:-.5rem!important}.anwp-pg-wrap .mb-md-n2,.anwp-pg-wrap .my-md-n2{margin-bottom:-.5rem!important}.anwp-pg-wrap .ml-md-n2,.anwp-pg-wrap .mx-md-n2{margin-left:-.5rem!important}.anwp-pg-wrap .m-md-n3{margin:-1rem!important}.anwp-pg-wrap .mt-md-n3,.anwp-pg-wrap .my-md-n3{margin-top:-1rem!important}.anwp-pg-wrap .mr-md-n3,.anwp-pg-wrap .mx-md-n3{margin-right:-1rem!important}.anwp-pg-wrap .mb-md-n3,.anwp-pg-wrap .my-md-n3{margin-bottom:-1rem!important}.anwp-pg-wrap .ml-md-n3,.anwp-pg-wrap .mx-md-n3{margin-left:-1rem!important}.anwp-pg-wrap .m-md-n4{margin:-1.5rem!important}.anwp-pg-wrap .mt-md-n4,.anwp-pg-wrap .my-md-n4{margin-top:-1.5rem!important}.anwp-pg-wrap .mr-md-n4,.anwp-pg-wrap .mx-md-n4{margin-right:-1.5rem!important}.anwp-pg-wrap .mb-md-n4,.anwp-pg-wrap .my-md-n4{margin-bottom:-1.5rem!important}.anwp-pg-wrap .ml-md-n4,.anwp-pg-wrap .mx-md-n4{margin-left:-1.5rem!important}.anwp-pg-wrap .m-md-n5{margin:-3rem!important}.anwp-pg-wrap .mt-md-n5,.anwp-pg-wrap .my-md-n5{margin-top:-3rem!important}.anwp-pg-wrap .mr-md-n5,.anwp-pg-wrap .mx-md-n5{margin-right:-3rem!important}.anwp-pg-wrap .mb-md-n5,.anwp-pg-wrap .my-md-n5{margin-bottom:-3rem!important}.anwp-pg-wrap .ml-md-n5,.anwp-pg-wrap .mx-md-n5{margin-left:-3rem!important}.anwp-pg-wrap .m-md-auto{margin:auto!important}.anwp-pg-wrap .mt-md-auto,.anwp-pg-wrap .my-md-auto{margin-top:auto!important}.anwp-pg-wrap .mr-md-auto,.anwp-pg-wrap .mx-md-auto{margin-right:auto!important}.anwp-pg-wrap .mb-md-auto,.anwp-pg-wrap .my-md-auto{margin-bottom:auto!important}.anwp-pg-wrap .ml-md-auto,.anwp-pg-wrap .mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.anwp-pg-wrap .m-lg-0{margin:0!important}.anwp-pg-wrap .mt-lg-0,.anwp-pg-wrap .my-lg-0{margin-top:0!important}.anwp-pg-wrap .mr-lg-0,.anwp-pg-wrap .mx-lg-0{margin-right:0!important}.anwp-pg-wrap .mb-lg-0,.anwp-pg-wrap .my-lg-0{margin-bottom:0!important}.anwp-pg-wrap .ml-lg-0,.anwp-pg-wrap .mx-lg-0{margin-left:0!important}.anwp-pg-wrap .m-lg-1{margin:.25rem!important}.anwp-pg-wrap .mt-lg-1,.anwp-pg-wrap .my-lg-1{margin-top:.25rem!important}.anwp-pg-wrap .mr-lg-1,.anwp-pg-wrap .mx-lg-1{margin-right:.25rem!important}.anwp-pg-wrap .mb-lg-1,.anwp-pg-wrap .my-lg-1{margin-bottom:.25rem!important}.anwp-pg-wrap .ml-lg-1,.anwp-pg-wrap .mx-lg-1{margin-left:.25rem!important}.anwp-pg-wrap .m-lg-2{margin:.5rem!important}.anwp-pg-wrap .mt-lg-2,.anwp-pg-wrap .my-lg-2{margin-top:.5rem!important}.anwp-pg-wrap .mr-lg-2,.anwp-pg-wrap .mx-lg-2{margin-right:.5rem!important}.anwp-pg-wrap .mb-lg-2,.anwp-pg-wrap .my-lg-2{margin-bottom:.5rem!important}.anwp-pg-wrap .ml-lg-2,.anwp-pg-wrap .mx-lg-2{margin-left:.5rem!important}.anwp-pg-wrap .m-lg-3{margin:1rem!important}.anwp-pg-wrap .mt-lg-3,.anwp-pg-wrap .my-lg-3{margin-top:1rem!important}.anwp-pg-wrap .mr-lg-3,.anwp-pg-wrap .mx-lg-3{margin-right:1rem!important}.anwp-pg-wrap .mb-lg-3,.anwp-pg-wrap .my-lg-3{margin-bottom:1rem!important}.anwp-pg-wrap .ml-lg-3,.anwp-pg-wrap .mx-lg-3{margin-left:1rem!important}.anwp-pg-wrap .m-lg-4{margin:1.5rem!important}.anwp-pg-wrap .mt-lg-4,.anwp-pg-wrap .my-lg-4{margin-top:1.5rem!important}.anwp-pg-wrap .mr-lg-4,.anwp-pg-wrap .mx-lg-4{margin-right:1.5rem!important}.anwp-pg-wrap .mb-lg-4,.anwp-pg-wrap .my-lg-4{margin-bottom:1.5rem!important}.anwp-pg-wrap .ml-lg-4,.anwp-pg-wrap .mx-lg-4{margin-left:1.5rem!important}.anwp-pg-wrap .m-lg-5{margin:3rem!important}.anwp-pg-wrap .mt-lg-5,.anwp-pg-wrap .my-lg-5{margin-top:3rem!important}.anwp-pg-wrap .mr-lg-5,.anwp-pg-wrap .mx-lg-5{margin-right:3rem!important}.anwp-pg-wrap .mb-lg-5,.anwp-pg-wrap .my-lg-5{margin-bottom:3rem!important}.anwp-pg-wrap .ml-lg-5,.anwp-pg-wrap .mx-lg-5{margin-left:3rem!important}.anwp-pg-wrap .p-lg-0{padding:0!important}.anwp-pg-wrap .pt-lg-0,.anwp-pg-wrap .py-lg-0{padding-top:0!important}.anwp-pg-wrap .pr-lg-0,.anwp-pg-wrap .px-lg-0{padding-right:0!important}.anwp-pg-wrap .pb-lg-0,.anwp-pg-wrap .py-lg-0{padding-bottom:0!important}.anwp-pg-wrap .pl-lg-0,.anwp-pg-wrap .px-lg-0{padding-left:0!important}.anwp-pg-wrap .p-lg-1{padding:.25rem!important}.anwp-pg-wrap .pt-lg-1,.anwp-pg-wrap .py-lg-1{padding-top:.25rem!important}.anwp-pg-wrap .pr-lg-1,.anwp-pg-wrap .px-lg-1{padding-right:.25rem!important}.anwp-pg-wrap .pb-lg-1,.anwp-pg-wrap .py-lg-1{padding-bottom:.25rem!important}.anwp-pg-wrap .pl-lg-1,.anwp-pg-wrap .px-lg-1{padding-left:.25rem!important}.anwp-pg-wrap .p-lg-2{padding:.5rem!important}.anwp-pg-wrap .pt-lg-2,.anwp-pg-wrap .py-lg-2{padding-top:.5rem!important}.anwp-pg-wrap .pr-lg-2,.anwp-pg-wrap .px-lg-2{padding-right:.5rem!important}.anwp-pg-wrap .pb-lg-2,.anwp-pg-wrap .py-lg-2{padding-bottom:.5rem!important}.anwp-pg-wrap .pl-lg-2,.anwp-pg-wrap .px-lg-2{padding-left:.5rem!important}.anwp-pg-wrap .p-lg-3{padding:1rem!important}.anwp-pg-wrap .pt-lg-3,.anwp-pg-wrap .py-lg-3{padding-top:1rem!important}.anwp-pg-wrap .pr-lg-3,.anwp-pg-wrap .px-lg-3{padding-right:1rem!important}.anwp-pg-wrap .pb-lg-3,.anwp-pg-wrap .py-lg-3{padding-bottom:1rem!important}.anwp-pg-wrap .pl-lg-3,.anwp-pg-wrap .px-lg-3{padding-left:1rem!important}.anwp-pg-wrap .p-lg-4{padding:1.5rem!important}.anwp-pg-wrap .pt-lg-4,.anwp-pg-wrap .py-lg-4{padding-top:1.5rem!important}.anwp-pg-wrap .pr-lg-4,.anwp-pg-wrap .px-lg-4{padding-right:1.5rem!important}.anwp-pg-wrap .pb-lg-4,.anwp-pg-wrap .py-lg-4{padding-bottom:1.5rem!important}.anwp-pg-wrap .pl-lg-4,.anwp-pg-wrap .px-lg-4{padding-left:1.5rem!important}.anwp-pg-wrap .p-lg-5{padding:3rem!important}.anwp-pg-wrap .pt-lg-5,.anwp-pg-wrap .py-lg-5{padding-top:3rem!important}.anwp-pg-wrap .pr-lg-5,.anwp-pg-wrap .px-lg-5{padding-right:3rem!important}.anwp-pg-wrap .pb-lg-5,.anwp-pg-wrap .py-lg-5{padding-bottom:3rem!important}.anwp-pg-wrap .pl-lg-5,.anwp-pg-wrap .px-lg-5{padding-left:3rem!important}.anwp-pg-wrap .m-lg-n1{margin:-.25rem!important}.anwp-pg-wrap .mt-lg-n1,.anwp-pg-wrap .my-lg-n1{margin-top:-.25rem!important}.anwp-pg-wrap .mr-lg-n1,.anwp-pg-wrap .mx-lg-n1{margin-right:-.25rem!important}.anwp-pg-wrap .mb-lg-n1,.anwp-pg-wrap .my-lg-n1{margin-bottom:-.25rem!important}.anwp-pg-wrap .ml-lg-n1,.anwp-pg-wrap .mx-lg-n1{margin-left:-.25rem!important}.anwp-pg-wrap .m-lg-n2{margin:-.5rem!important}.anwp-pg-wrap .mt-lg-n2,.anwp-pg-wrap .my-lg-n2{margin-top:-.5rem!important}.anwp-pg-wrap .mr-lg-n2,.anwp-pg-wrap .mx-lg-n2{margin-right:-.5rem!important}.anwp-pg-wrap .mb-lg-n2,.anwp-pg-wrap .my-lg-n2{margin-bottom:-.5rem!important}.anwp-pg-wrap .ml-lg-n2,.anwp-pg-wrap .mx-lg-n2{margin-left:-.5rem!important}.anwp-pg-wrap .m-lg-n3{margin:-1rem!important}.anwp-pg-wrap .mt-lg-n3,.anwp-pg-wrap .my-lg-n3{margin-top:-1rem!important}.anwp-pg-wrap .mr-lg-n3,.anwp-pg-wrap .mx-lg-n3{margin-right:-1rem!important}.anwp-pg-wrap .mb-lg-n3,.anwp-pg-wrap .my-lg-n3{margin-bottom:-1rem!important}.anwp-pg-wrap .ml-lg-n3,.anwp-pg-wrap .mx-lg-n3{margin-left:-1rem!important}.anwp-pg-wrap .m-lg-n4{margin:-1.5rem!important}.anwp-pg-wrap .mt-lg-n4,.anwp-pg-wrap .my-lg-n4{margin-top:-1.5rem!important}.anwp-pg-wrap .mr-lg-n4,.anwp-pg-wrap .mx-lg-n4{margin-right:-1.5rem!important}.anwp-pg-wrap .mb-lg-n4,.anwp-pg-wrap .my-lg-n4{margin-bottom:-1.5rem!important}.anwp-pg-wrap .ml-lg-n4,.anwp-pg-wrap .mx-lg-n4{margin-left:-1.5rem!important}.anwp-pg-wrap .m-lg-n5{margin:-3rem!important}.anwp-pg-wrap .mt-lg-n5,.anwp-pg-wrap .my-lg-n5{margin-top:-3rem!important}.anwp-pg-wrap .mr-lg-n5,.anwp-pg-wrap .mx-lg-n5{margin-right:-3rem!important}.anwp-pg-wrap .mb-lg-n5,.anwp-pg-wrap .my-lg-n5{margin-bottom:-3rem!important}.anwp-pg-wrap .ml-lg-n5,.anwp-pg-wrap .mx-lg-n5{margin-left:-3rem!important}.anwp-pg-wrap .m-lg-auto{margin:auto!important}.anwp-pg-wrap .mt-lg-auto,.anwp-pg-wrap .my-lg-auto{margin-top:auto!important}.anwp-pg-wrap .mr-lg-auto,.anwp-pg-wrap .mx-lg-auto{margin-right:auto!important}.anwp-pg-wrap .mb-lg-auto,.anwp-pg-wrap .my-lg-auto{margin-bottom:auto!important}.anwp-pg-wrap .ml-lg-auto,.anwp-pg-wrap .mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.anwp-pg-wrap .m-xl-0{margin:0!important}.anwp-pg-wrap .mt-xl-0,.anwp-pg-wrap .my-xl-0{margin-top:0!important}.anwp-pg-wrap .mr-xl-0,.anwp-pg-wrap .mx-xl-0{margin-right:0!important}.anwp-pg-wrap .mb-xl-0,.anwp-pg-wrap .my-xl-0{margin-bottom:0!important}.anwp-pg-wrap .ml-xl-0,.anwp-pg-wrap .mx-xl-0{margin-left:0!important}.anwp-pg-wrap .m-xl-1{margin:.25rem!important}.anwp-pg-wrap .mt-xl-1,.anwp-pg-wrap .my-xl-1{margin-top:.25rem!important}.anwp-pg-wrap .mr-xl-1,.anwp-pg-wrap .mx-xl-1{margin-right:.25rem!important}.anwp-pg-wrap .mb-xl-1,.anwp-pg-wrap .my-xl-1{margin-bottom:.25rem!important}.anwp-pg-wrap .ml-xl-1,.anwp-pg-wrap .mx-xl-1{margin-left:.25rem!important}.anwp-pg-wrap .m-xl-2{margin:.5rem!important}.anwp-pg-wrap .mt-xl-2,.anwp-pg-wrap .my-xl-2{margin-top:.5rem!important}.anwp-pg-wrap .mr-xl-2,.anwp-pg-wrap .mx-xl-2{margin-right:.5rem!important}.anwp-pg-wrap .mb-xl-2,.anwp-pg-wrap .my-xl-2{margin-bottom:.5rem!important}.anwp-pg-wrap .ml-xl-2,.anwp-pg-wrap .mx-xl-2{margin-left:.5rem!important}.anwp-pg-wrap .m-xl-3{margin:1rem!important}.anwp-pg-wrap .mt-xl-3,.anwp-pg-wrap .my-xl-3{margin-top:1rem!important}.anwp-pg-wrap .mr-xl-3,.anwp-pg-wrap .mx-xl-3{margin-right:1rem!important}.anwp-pg-wrap .mb-xl-3,.anwp-pg-wrap .my-xl-3{margin-bottom:1rem!important}.anwp-pg-wrap .ml-xl-3,.anwp-pg-wrap .mx-xl-3{margin-left:1rem!important}.anwp-pg-wrap .m-xl-4{margin:1.5rem!important}.anwp-pg-wrap .mt-xl-4,.anwp-pg-wrap .my-xl-4{margin-top:1.5rem!important}.anwp-pg-wrap .mr-xl-4,.anwp-pg-wrap .mx-xl-4{margin-right:1.5rem!important}.anwp-pg-wrap .mb-xl-4,.anwp-pg-wrap .my-xl-4{margin-bottom:1.5rem!important}.anwp-pg-wrap .ml-xl-4,.anwp-pg-wrap .mx-xl-4{margin-left:1.5rem!important}.anwp-pg-wrap .m-xl-5{margin:3rem!important}.anwp-pg-wrap .mt-xl-5,.anwp-pg-wrap .my-xl-5{margin-top:3rem!important}.anwp-pg-wrap .mr-xl-5,.anwp-pg-wrap .mx-xl-5{margin-right:3rem!important}.anwp-pg-wrap .mb-xl-5,.anwp-pg-wrap .my-xl-5{margin-bottom:3rem!important}.anwp-pg-wrap .ml-xl-5,.anwp-pg-wrap .mx-xl-5{margin-left:3rem!important}.anwp-pg-wrap .p-xl-0{padding:0!important}.anwp-pg-wrap .pt-xl-0,.anwp-pg-wrap .py-xl-0{padding-top:0!important}.anwp-pg-wrap .pr-xl-0,.anwp-pg-wrap .px-xl-0{padding-right:0!important}.anwp-pg-wrap .pb-xl-0,.anwp-pg-wrap .py-xl-0{padding-bottom:0!important}.anwp-pg-wrap .pl-xl-0,.anwp-pg-wrap .px-xl-0{padding-left:0!important}.anwp-pg-wrap .p-xl-1{padding:.25rem!important}.anwp-pg-wrap .pt-xl-1,.anwp-pg-wrap .py-xl-1{padding-top:.25rem!important}.anwp-pg-wrap .pr-xl-1,.anwp-pg-wrap .px-xl-1{padding-right:.25rem!important}.anwp-pg-wrap .pb-xl-1,.anwp-pg-wrap .py-xl-1{padding-bottom:.25rem!important}.anwp-pg-wrap .pl-xl-1,.anwp-pg-wrap .px-xl-1{padding-left:.25rem!important}.anwp-pg-wrap .p-xl-2{padding:.5rem!important}.anwp-pg-wrap .pt-xl-2,.anwp-pg-wrap .py-xl-2{padding-top:.5rem!important}.anwp-pg-wrap .pr-xl-2,.anwp-pg-wrap .px-xl-2{padding-right:.5rem!important}.anwp-pg-wrap .pb-xl-2,.anwp-pg-wrap .py-xl-2{padding-bottom:.5rem!important}.anwp-pg-wrap .pl-xl-2,.anwp-pg-wrap .px-xl-2{padding-left:.5rem!important}.anwp-pg-wrap .p-xl-3{padding:1rem!important}.anwp-pg-wrap .pt-xl-3,.anwp-pg-wrap .py-xl-3{padding-top:1rem!important}.anwp-pg-wrap .pr-xl-3,.anwp-pg-wrap .px-xl-3{padding-right:1rem!important}.anwp-pg-wrap .pb-xl-3,.anwp-pg-wrap .py-xl-3{padding-bottom:1rem!important}.anwp-pg-wrap .pl-xl-3,.anwp-pg-wrap .px-xl-3{padding-left:1rem!important}.anwp-pg-wrap .p-xl-4{padding:1.5rem!important}.anwp-pg-wrap .pt-xl-4,.anwp-pg-wrap .py-xl-4{padding-top:1.5rem!important}.anwp-pg-wrap .pr-xl-4,.anwp-pg-wrap .px-xl-4{padding-right:1.5rem!important}.anwp-pg-wrap .pb-xl-4,.anwp-pg-wrap .py-xl-4{padding-bottom:1.5rem!important}.anwp-pg-wrap .pl-xl-4,.anwp-pg-wrap .px-xl-4{padding-left:1.5rem!important}.anwp-pg-wrap .p-xl-5{padding:3rem!important}.anwp-pg-wrap .pt-xl-5,.anwp-pg-wrap .py-xl-5{padding-top:3rem!important}.anwp-pg-wrap .pr-xl-5,.anwp-pg-wrap .px-xl-5{padding-right:3rem!important}.anwp-pg-wrap .pb-xl-5,.anwp-pg-wrap .py-xl-5{padding-bottom:3rem!important}.anwp-pg-wrap .pl-xl-5,.anwp-pg-wrap .px-xl-5{padding-left:3rem!important}.anwp-pg-wrap .m-xl-n1{margin:-.25rem!important}.anwp-pg-wrap .mt-xl-n1,.anwp-pg-wrap .my-xl-n1{margin-top:-.25rem!important}.anwp-pg-wrap .mr-xl-n1,.anwp-pg-wrap .mx-xl-n1{margin-right:-.25rem!important}.anwp-pg-wrap .mb-xl-n1,.anwp-pg-wrap .my-xl-n1{margin-bottom:-.25rem!important}.anwp-pg-wrap .ml-xl-n1,.anwp-pg-wrap .mx-xl-n1{margin-left:-.25rem!important}.anwp-pg-wrap .m-xl-n2{margin:-.5rem!important}.anwp-pg-wrap .mt-xl-n2,.anwp-pg-wrap .my-xl-n2{margin-top:-.5rem!important}.anwp-pg-wrap .mr-xl-n2,.anwp-pg-wrap .mx-xl-n2{margin-right:-.5rem!important}.anwp-pg-wrap .mb-xl-n2,.anwp-pg-wrap .my-xl-n2{margin-bottom:-.5rem!important}.anwp-pg-wrap .ml-xl-n2,.anwp-pg-wrap .mx-xl-n2{margin-left:-.5rem!important}.anwp-pg-wrap .m-xl-n3{margin:-1rem!important}.anwp-pg-wrap .mt-xl-n3,.anwp-pg-wrap .my-xl-n3{margin-top:-1rem!important}.anwp-pg-wrap .mr-xl-n3,.anwp-pg-wrap .mx-xl-n3{margin-right:-1rem!important}.anwp-pg-wrap .mb-xl-n3,.anwp-pg-wrap .my-xl-n3{margin-bottom:-1rem!important}.anwp-pg-wrap .ml-xl-n3,.anwp-pg-wrap .mx-xl-n3{margin-left:-1rem!important}.anwp-pg-wrap .m-xl-n4{margin:-1.5rem!important}.anwp-pg-wrap .mt-xl-n4,.anwp-pg-wrap .my-xl-n4{margin-top:-1.5rem!important}.anwp-pg-wrap .mr-xl-n4,.anwp-pg-wrap .mx-xl-n4{margin-right:-1.5rem!important}.anwp-pg-wrap .mb-xl-n4,.anwp-pg-wrap .my-xl-n4{margin-bottom:-1.5rem!important}.anwp-pg-wrap .ml-xl-n4,.anwp-pg-wrap .mx-xl-n4{margin-left:-1.5rem!important}.anwp-pg-wrap .m-xl-n5{margin:-3rem!important}.anwp-pg-wrap .mt-xl-n5,.anwp-pg-wrap .my-xl-n5{margin-top:-3rem!important}.anwp-pg-wrap .mr-xl-n5,.anwp-pg-wrap .mx-xl-n5{margin-right:-3rem!important}.anwp-pg-wrap .mb-xl-n5,.anwp-pg-wrap .my-xl-n5{margin-bottom:-3rem!important}.anwp-pg-wrap .ml-xl-n5,.anwp-pg-wrap .mx-xl-n5{margin-left:-3rem!important}.anwp-pg-wrap .m-xl-auto{margin:auto!important}.anwp-pg-wrap .mt-xl-auto,.anwp-pg-wrap .my-xl-auto{margin-top:auto!important}.anwp-pg-wrap .mr-xl-auto,.anwp-pg-wrap .mx-xl-auto{margin-right:auto!important}.anwp-pg-wrap .mb-xl-auto,.anwp-pg-wrap .my-xl-auto{margin-bottom:auto!important}.anwp-pg-wrap .ml-xl-auto,.anwp-pg-wrap .mx-xl-auto{margin-left:auto!important}}.anwp-pg-wrap .text-decoration-none{text-decoration:none!important}.anwp-pg-wrap .anwp-btn-outline-secondary{display:inline-block;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;font-size:1rem;line-height:1.5;-o-border-image:initial;border-image:initial;padding:.375rem .75rem;border-radius:4px;transition:color .15s ease-in-out 0s,background-color .15s ease-in-out 0s,border-color .15s ease-in-out 0s,box-shadow .15s ease-in-out 0s;color:#6c757d;border:1px solid #6c757d}.anwp-pg-wrap .anwp-btn-outline-secondary:not(:disabled):not(.disabled){cursor:pointer}.anwp-pg-wrap .anwp-btn-outline-secondary:active,.anwp-pg-wrap .anwp-btn-outline-secondary:focus,.anwp-pg-wrap .anwp-btn-outline-secondary:hover,.anwp-pg-wrap .anwp-btn-outline-secondary[disabled]:active,.anwp-pg-wrap .anwp-btn-outline-secondary[disabled]:focus,.anwp-pg-wrap .anwp-btn-outline-secondary[disabled]:hover{background-color:#f5f5f5;color:#6c757d;border:1px solid #6c757d}.anwp-pg-pagination{display:flex;padding-left:0;list-style:none;border-radius:4px;margin-top:25px}.anwp-pg-pagination-loader{position:absolute;left:50%;top:50%;margin-left:-15px;margin-top:-15px}.anwp-pg-posts-wrapper{position:relative}.anwp-pg-posts-wrapper:not(.anwp-pg-pagination--loading) .anwp-pg-pagination-loader{display:none}.anwp-pg-posts-wrapper.anwp-pg-pagination--loading>:not(.anwp-pg-pagination-loader){opacity:.1}.anwp-page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#0085ba;background-color:#fff;border:1px solid #dee2e6}.anwp-page-link:hover{z-index:2;color:#004e6e;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.anwp-page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,133,186,.25)}.anwp-page-item{min-width:32px;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.anwp-page-item:first-child .anwp-page-link{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.anwp-page-item:last-child .anwp-page-link{border-top-right-radius:4px;border-bottom-right-radius:4px}.anwp-page-item .anwp-page-link--active{z-index:3;color:#fff!important;background-color:#0085ba;border-color:#0085ba}.anwp-page-item .anwp-page-link--disabled{color:#6c757d!important;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6;opacity:.7}.anwp-container,.anwp-container-fluid,.anwp-container-lg,.anwp-container-md,.anwp-container-sm,.anwp-container-xl{width:100%;padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}@media (min-width:576px){.anwp-container,.anwp-container-sm{max-width:540px}}@media (min-width:768px){.anwp-container,.anwp-container-md,.anwp-container-sm{max-width:720px}}@media (min-width:992px){.anwp-container,.anwp-container-lg,.anwp-container-md,.anwp-container-sm{max-width:960px}}@media (min-width:1200px){.anwp-container,.anwp-container-lg,.anwp-container-md,.anwp-container-sm,.anwp-container-xl{max-width:1140px}}.anwp-row{display:flex;flex-wrap:wrap;margin-right:-10px;margin-left:-10px}.anwp-no-gutters{margin-right:0;margin-left:0}.anwp-no-gutters>.anwp-col,.anwp-no-gutters>[class*=anwp-col-]{padding-right:0;padding-left:0}.anwp-col,.anwp-col-1,.anwp-col-2,.anwp-col-3,.anwp-col-4,.anwp-col-5,.anwp-col-6,.anwp-col-7,.anwp-col-8,.anwp-col-9,.anwp-col-10,.anwp-col-11,.anwp-col-12,.anwp-col-auto,.anwp-col-lg,.anwp-col-lg-1,.anwp-col-lg-2,.anwp-col-lg-3,.anwp-col-lg-4,.anwp-col-lg-5,.anwp-col-lg-6,.anwp-col-lg-7,.anwp-col-lg-8,.anwp-col-lg-9,.anwp-col-lg-10,.anwp-col-lg-11,.anwp-col-lg-12,.anwp-col-lg-auto,.anwp-col-md,.anwp-col-md-1,.anwp-col-md-2,.anwp-col-md-3,.anwp-col-md-4,.anwp-col-md-5,.anwp-col-md-6,.anwp-col-md-7,.anwp-col-md-8,.anwp-col-md-9,.anwp-col-md-10,.anwp-col-md-11,.anwp-col-md-12,.anwp-col-md-auto,.anwp-col-sm,.anwp-col-sm-1,.anwp-col-sm-2,.anwp-col-sm-3,.anwp-col-sm-4,.anwp-col-sm-5,.anwp-col-sm-6,.anwp-col-sm-7,.anwp-col-sm-8,.anwp-col-sm-9,.anwp-col-sm-10,.anwp-col-sm-11,.anwp-col-sm-12,.anwp-col-sm-auto,.anwp-col-xl,.anwp-col-xl-1,.anwp-col-xl-2,.anwp-col-xl-3,.anwp-col-xl-4,.anwp-col-xl-5,.anwp-col-xl-6,.anwp-col-xl-7,.anwp-col-xl-8,.anwp-col-xl-9,.anwp-col-xl-10,.anwp-col-xl-11,.anwp-col-xl-12,.anwp-col-xl-auto{position:relative;width:100%;padding-right:10px;padding-left:10px}.anwp-col{flex-basis:0;flex-grow:1;max-width:100%}.anwp-row-cols-1>*{flex:0 0 100%;max-width:100%}.anwp-row-cols-2>*{flex:0 0 50%;max-width:50%}.anwp-row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.anwp-row-cols-4>*{flex:0 0 25%;max-width:25%}.anwp-row-cols-5>*{flex:0 0 20%;max-width:20%}.anwp-row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.anwp-col-auto{flex:0 0 auto;width:auto;max-width:100%}.anwp-col-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.anwp-col-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.anwp-col-3{flex:0 0 25%;max-width:25%}.anwp-col-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.anwp-col-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.anwp-col-6{flex:0 0 50%;max-width:50%}.anwp-col-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.anwp-col-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.anwp-col-9{flex:0 0 75%;max-width:75%}.anwp-col-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.anwp-col-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.anwp-col-12{flex:0 0 100%;max-width:100%}.anwp-order-first{order:-1}.anwp-order-last{order:13}.anwp-order-0{order:0}.anwp-order-1{order:1}.anwp-order-2{order:2}.anwp-order-3{order:3}.anwp-order-4{order:4}.anwp-order-5{order:5}.anwp-order-6{order:6}.anwp-order-7{order:7}.anwp-order-8{order:8}.anwp-order-9{order:9}.anwp-order-10{order:10}.anwp-order-11{order:11}.anwp-order-12{order:12}.anwp-offset-1{margin-left:8.3333333333%}.anwp-offset-2{margin-left:16.6666666667%}.anwp-offset-3{margin-left:25%}.anwp-offset-4{margin-left:33.3333333333%}.anwp-offset-5{margin-left:41.6666666667%}.anwp-offset-6{margin-left:50%}.anwp-offset-7{margin-left:58.3333333333%}.anwp-offset-8{margin-left:66.6666666667%}.anwp-offset-9{margin-left:75%}.anwp-offset-10{margin-left:83.3333333333%}.anwp-offset-11{margin-left:91.6666666667%}@media (min-width:576px){.anwp-col-sm{flex-basis:0;flex-grow:1;max-width:100%}.anwp-row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.anwp-row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.anwp-row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.anwp-row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.anwp-row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.anwp-row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.anwp-col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.anwp-col-sm-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.anwp-col-sm-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.anwp-col-sm-3{flex:0 0 25%;max-width:25%}.anwp-col-sm-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.anwp-col-sm-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.anwp-col-sm-6{flex:0 0 50%;max-width:50%}.anwp-col-sm-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.anwp-col-sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.anwp-col-sm-9{flex:0 0 75%;max-width:75%}.anwp-col-sm-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.anwp-col-sm-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.anwp-col-sm-12{flex:0 0 100%;max-width:100%}.anwp-order-sm-first{order:-1}.anwp-order-sm-last{order:13}.anwp-order-sm-0{order:0}.anwp-order-sm-1{order:1}.anwp-order-sm-2{order:2}.anwp-order-sm-3{order:3}.anwp-order-sm-4{order:4}.anwp-order-sm-5{order:5}.anwp-order-sm-6{order:6}.anwp-order-sm-7{order:7}.anwp-order-sm-8{order:8}.anwp-order-sm-9{order:9}.anwp-order-sm-10{order:10}.anwp-order-sm-11{order:11}.anwp-order-sm-12{order:12}.anwp-offset-sm-0{margin-left:0}.anwp-offset-sm-1{margin-left:8.3333333333%}.anwp-offset-sm-2{margin-left:16.6666666667%}.anwp-offset-sm-3{margin-left:25%}.anwp-offset-sm-4{margin-left:33.3333333333%}.anwp-offset-sm-5{margin-left:41.6666666667%}.anwp-offset-sm-6{margin-left:50%}.anwp-offset-sm-7{margin-left:58.3333333333%}.anwp-offset-sm-8{margin-left:66.6666666667%}.anwp-offset-sm-9{margin-left:75%}.anwp-offset-sm-10{margin-left:83.3333333333%}.anwp-offset-sm-11{margin-left:91.6666666667%}}@media (min-width:768px){.anwp-col-md{flex-basis:0;flex-grow:1;max-width:100%}.anwp-row-cols-md-1>*{flex:0 0 100%;max-width:100%}.anwp-row-cols-md-2>*{flex:0 0 50%;max-width:50%}.anwp-row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.anwp-row-cols-md-4>*{flex:0 0 25%;max-width:25%}.anwp-row-cols-md-5>*{flex:0 0 20%;max-width:20%}.anwp-row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.anwp-col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.anwp-col-md-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.anwp-col-md-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.anwp-col-md-3{flex:0 0 25%;max-width:25%}.anwp-col-md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.anwp-col-md-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.anwp-col-md-6{flex:0 0 50%;max-width:50%}.anwp-col-md-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.anwp-col-md-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.anwp-col-md-9{flex:0 0 75%;max-width:75%}.anwp-col-md-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.anwp-col-md-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.anwp-col-md-12{flex:0 0 100%;max-width:100%}.anwp-order-md-first{order:-1}.anwp-order-md-last{order:13}.anwp-order-md-0{order:0}.anwp-order-md-1{order:1}.anwp-order-md-2{order:2}.anwp-order-md-3{order:3}.anwp-order-md-4{order:4}.anwp-order-md-5{order:5}.anwp-order-md-6{order:6}.anwp-order-md-7{order:7}.anwp-order-md-8{order:8}.anwp-order-md-9{order:9}.anwp-order-md-10{order:10}.anwp-order-md-11{order:11}.anwp-order-md-12{order:12}.anwp-offset-md-0{margin-left:0}.anwp-offset-md-1{margin-left:8.3333333333%}.anwp-offset-md-2{margin-left:16.6666666667%}.anwp-offset-md-3{margin-left:25%}.anwp-offset-md-4{margin-left:33.3333333333%}.anwp-offset-md-5{margin-left:41.6666666667%}.anwp-offset-md-6{margin-left:50%}.anwp-offset-md-7{margin-left:58.3333333333%}.anwp-offset-md-8{margin-left:66.6666666667%}.anwp-offset-md-9{margin-left:75%}.anwp-offset-md-10{margin-left:83.3333333333%}.anwp-offset-md-11{margin-left:91.6666666667%}}@media (min-width:992px){.anwp-col-lg{flex-basis:0;flex-grow:1;max-width:100%}.anwp-row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.anwp-row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.anwp-row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.anwp-row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.anwp-row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.anwp-row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.anwp-col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.anwp-col-lg-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.anwp-col-lg-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.anwp-col-lg-3{flex:0 0 25%;max-width:25%}.anwp-col-lg-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.anwp-col-lg-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.anwp-col-lg-6{flex:0 0 50%;max-width:50%}.anwp-col-lg-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.anwp-col-lg-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.anwp-col-lg-9{flex:0 0 75%;max-width:75%}.anwp-col-lg-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.anwp-col-lg-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.anwp-col-lg-12{flex:0 0 100%;max-width:100%}.anwp-order-lg-first{order:-1}.anwp-order-lg-last{order:13}.anwp-order-lg-0{order:0}.anwp-order-lg-1{order:1}.anwp-order-lg-2{order:2}.anwp-order-lg-3{order:3}.anwp-order-lg-4{order:4}.anwp-order-lg-5{order:5}.anwp-order-lg-6{order:6}.anwp-order-lg-7{order:7}.anwp-order-lg-8{order:8}.anwp-order-lg-9{order:9}.anwp-order-lg-10{order:10}.anwp-order-lg-11{order:11}.anwp-order-lg-12{order:12}.anwp-offset-lg-0{margin-left:0}.anwp-offset-lg-1{margin-left:8.3333333333%}.anwp-offset-lg-2{margin-left:16.6666666667%}.anwp-offset-lg-3{margin-left:25%}.anwp-offset-lg-4{margin-left:33.3333333333%}.anwp-offset-lg-5{margin-left:41.6666666667%}.anwp-offset-lg-6{margin-left:50%}.anwp-offset-lg-7{margin-left:58.3333333333%}.anwp-offset-lg-8{margin-left:66.6666666667%}.anwp-offset-lg-9{margin-left:75%}.anwp-offset-lg-10{margin-left:83.3333333333%}.anwp-offset-lg-11{margin-left:91.6666666667%}}@media (min-width:1200px){.anwp-col-xl{flex-basis:0;flex-grow:1;max-width:100%}.anwp-row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.anwp-row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.anwp-row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.anwp-row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.anwp-row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.anwp-row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.anwp-col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.anwp-col-xl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.anwp-col-xl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.anwp-col-xl-3{flex:0 0 25%;max-width:25%}.anwp-col-xl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.anwp-col-xl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.anwp-col-xl-6{flex:0 0 50%;max-width:50%}.anwp-col-xl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.anwp-col-xl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.anwp-col-xl-9{flex:0 0 75%;max-width:75%}.anwp-col-xl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.anwp-col-xl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.anwp-col-xl-12{flex:0 0 100%;max-width:100%}.anwp-order-xl-first{order:-1}.anwp-order-xl-last{order:13}.anwp-order-xl-0{order:0}.anwp-order-xl-1{order:1}.anwp-order-xl-2{order:2}.anwp-order-xl-3{order:3}.anwp-order-xl-4{order:4}.anwp-order-xl-5{order:5}.anwp-order-xl-6{order:6}.anwp-order-xl-7{order:7}.anwp-order-xl-8{order:8}.anwp-order-xl-9{order:9}.anwp-order-xl-10{order:10}.anwp-order-xl-11{order:11}.anwp-order-xl-12{order:12}.anwp-offset-xl-0{margin-left:0}.anwp-offset-xl-1{margin-left:8.3333333333%}.anwp-offset-xl-2{margin-left:16.6666666667%}.anwp-offset-xl-3{margin-left:25%}.anwp-offset-xl-4{margin-left:33.3333333333%}.anwp-offset-xl-5{margin-left:41.6666666667%}.anwp-offset-xl-6{margin-left:50%}.anwp-offset-xl-7{margin-left:58.3333333333%}.anwp-offset-xl-8{margin-left:66.6666666667%}.anwp-offset-xl-9{margin-left:75%}.anwp-offset-xl-10{margin-left:83.3333333333%}.anwp-offset-xl-11{margin-left:91.6666666667%}}.anwp-box-border{box-sizing:border-box}.anwp-box-content{box-sizing:content-box}.anwp-link-cover,.anwp-position-cover{position:absolute;top:0;bottom:0;left:0;right:0}.anwp-flex-1{flex:1 1 0%}.anwp-flex-auto{flex:1 1 auto}.anwp-flex-initial{flex:0 1 auto}.anwp-flex-none{flex:none}@media (min-width:576px){.anwp-flex-sm-1{flex:1 1 0%}.anwp-flex-sm-auto{flex:1 1 auto}.anwp-flex-sm-initial{flex:0 1 auto}.anwp-flex-sm-none{flex:none}}@media (min-width:768px){.anwp-flex-md-1{flex:1 1 0%}.anwp-flex-md-auto{flex:1 1 auto}.anwp-flex-md-initial{flex:0 1 auto}.anwp-flex-md-none{flex:none}}@media (min-width:992px){.anwp-flex-lg-1{flex:1 1 0%}.anwp-flex-lg-auto{flex:1 1 auto}.anwp-flex-lg-initial{flex:0 1 auto}.anwp-flex-lg-none{flex:none}}@media (min-width:1200px){.anwp-flex-xl-1{flex:1 1 0%}.anwp-flex-xl-auto{flex:1 1 auto}.anwp-flex-xl-initial{flex:0 1 auto}.anwp-flex-xl-none{flex:none}}.anwp-image-background-contain,.anwp-image-background-cover{background-position:50% 50%;background-repeat:no-repeat}.anwp-image-background-cover{background-size:cover}.anwp-image-background-contain{background-size:contain}.anwp-user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.anwp-user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.anwp-user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.anwp-object-contain{-o-object-fit:contain;object-fit:contain}.anwp-object-cover{-o-object-fit:cover;object-fit:cover}.anwp-object-fill{-o-object-fit:fill;object-fit:fill}.anwp-object-none{-o-object-fit:none;object-fit:none}.anwp-object-scale-down{-o-object-fit:scale-down;object-fit:scale-down}.anwp-opacity-0{opacity:0}.anwp-opacity-10{opacity:.1}.anwp-opacity-20{opacity:.2}.anwp-opacity-30{opacity:.3}.anwp-opacity-40{opacity:.4}.anwp-opacity-50{opacity:.5}.anwp-opacity-60{opacity:.6}.anwp-opacity-70{opacity:.7}.anwp-opacity-80{opacity:.8}.anwp-opacity-90{opacity:.9}.anwp-opacity-100{opacity:1}.anwp-overflow-auto{overflow:auto}.anwp-overflow-hidden{overflow:hidden}.anwp-overflow-visible{overflow:visible}.anwp-overflow-scroll{overflow:scroll}.anwp-overflow-x-auto{overflow-x:auto}.anwp-overflow-y-auto{overflow-y:auto}.anwp-overflow-x-hidden{overflow-x:hidden}.anwp-overflow-y-hidden{overflow-y:hidden}.anwp-overflow-x-visible{overflow-x:visible}.anwp-overflow-y-visible{overflow-y:visible}.anwp-overflow-x-scroll{overflow-x:scroll}.anwp-overflow-y-scroll{overflow-y:scroll}.anwp-rounded-none{border-radius:0!important}.anwp-rounded-sm{border-radius:.125rem!important}.anwp-rounded{border-radius:.25rem!important}.anwp-rounded-md{border-radius:.375rem!important}.anwp-rounded-lg{border-radius:.5rem!important}.anwp-max-width-1{max-width:1px}.anwp-max-width-100{max-width:100%}.anwp-min-width-0{min-width:0}.anwp-fill-current{fill:currentColor!important}.anwp-stroke-current{stroke:currentColor!important}.anwp-stroke-0{stroke-width:0}.anwp-stroke-1{stroke-width:1}.anwp-stroke-2{stroke-width:2}.anwp-text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.anwp-text-truncate-multiline{overflow:hidden;text-overflow:ellipsis;overflow-wrap:normal;word-break:normal}.anwp-text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.anwp-text-justify{text-align:justify!important}.anwp-text-wrap{white-space:normal!important}.anwp-text-nowrap{white-space:nowrap!important}.anwp-text-left{text-align:left!important}.anwp-text-right{text-align:right!important}.anwp-text-center{text-align:center!important}@media (min-width:576px){.anwp-text-sm-left{text-align:left!important}.anwp-text-sm-right{text-align:right!important}.anwp-text-sm-center{text-align:center!important}}@media (min-width:768px){.anwp-text-md-left{text-align:left!important}.anwp-text-md-right{text-align:right!important}.anwp-text-md-center{text-align:center!important}}@media (min-width:992px){.anwp-text-lg-left{text-align:left!important}.anwp-text-lg-right{text-align:right!important}.anwp-text-lg-center{text-align:center!important}}@media (min-width:1200px){.anwp-text-xl-left{text-align:left!important}.anwp-text-xl-right{text-align:right!important}.anwp-text-xl-center{text-align:center!important}}.anwp-text-lowercase{text-transform:lowercase!important}.anwp-text-uppercase{text-transform:uppercase!important}.anwp-text-capitalize{text-transform:capitalize!important}.anwp-leading-1{line-height:1}.anwp-leading-1-25{line-height:1.25}.anwp-leading-1-5{line-height:1.5}.anwp-leading-2{line-height:2}.anwp-break-normal{overflow-wrap:normal;word-break:normal}.anwp-break-words{overflow-wrap:break-word;word-break:break-word}.anwp-break-all{word-break:break-all}.anwp-z-0{z-index:0!important}.anwp-z-1{z-index:1!important}.anwp-z-2{z-index:2!important}.anwp-pg-wrap .anwp-max-width-1{max-width:1px}.anwp-pg-wrap .anwp-min-width-0{min-width:0}.anwp-pg-wrap .anwp-hidden{visibility:hidden}.anwp-pg-wrap .anwp-no-select{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.anwp-pg-wrap .anwp-flex-even{flex:1}@media (min-width:576px){.anwp-pg-wrap .anwp-flex-sm-even{flex:1}}.anwp-pg-wrap .anwp-pg-updated:not(.anwp-pg-published){display:none}.anwp-pg-wrap .anwp-bg-light{background-color:#f8f9fa}.anwp-pg-wrap .anwp-bg-white{background-color:#fff}.anwp-pg-wrap .anwp-bg-secondary{background-color:#6c757d}.anwp-pg-wrap .anwp-bg-primary{background-color:#0085ba}.anwp-pg-wrap .anwp-bg-success{background-color:#388e3c}.anwp-pg-wrap .anwp-bg-info{background-color:#17a2b8}.anwp-pg-wrap .anwp-bg-warning{background-color:#fbc02d}.anwp-pg-wrap .anwp-bg-danger{background-color:#dc3545}.anwp-pg-wrap .anwp-bg-dark{background-color:#343a40}.anwp-pg-wrap .anwp-bg-transparent{background-color:transparent}.anwp-pg-wrap .anwp-link,.anwp-pg-wrap .site-content .anwp-link{transition:color .2s ease-in-out 0s}.anwp-pg-wrap .anwp-link:hover,.anwp-pg-wrap .site-content .anwp-link:hover{color:#0085ba}.bg-dark .anwp-pg-wrap .anwp-link:active,.bg-dark .anwp-pg-wrap .anwp-link:focus,.bg-dark .anwp-pg-wrap .anwp-link:hover,.bg-dark .anwp-pg-wrap .site-content .anwp-link:active,.bg-dark .anwp-pg-wrap .site-content .anwp-link:focus,.bg-dark .anwp-pg-wrap .site-content .anwp-link:hover{color:#80c2dd}.anwp-pg-wrap .anwp-pg-wrap+.anwp-pg-wrap{margin-top:1.5rem}.anwp-pg-wrap .anwp-link-without-effects,.anwp-pg-wrap .anwp-link-without-effects:active,.anwp-pg-wrap .anwp-link-without-effects:focus,.anwp-pg-wrap .anwp-link-without-effects:hover{text-decoration:none!important;box-shadow:none!important;border-bottom:none!important}.anwp-pg-wrap .anwp-pg-swiper-wrapper .swiper-wrapper{overflow:visible!important}.anwp-pg-wrap .anwp-link-cover,.anwp-pg-wrap .anwp-position-cover{position:absolute;top:0;bottom:0;left:0;right:0}.anwp-pg-wrap .anwp-image-background-contain,.anwp-pg-wrap .anwp-image-background-cover{background-position:50% 50%;background-repeat:no-repeat}.anwp-pg-wrap .anwp-image-background-cover{background-size:cover}.anwp-pg-wrap .anwp-image-background-contain{background-size:contain}.anwp-pg-wrap .anwp-semi-opacity{opacity:.5}.anwp-pg-wrap .anwp-pg-load-more .anwp-pg-load-more__btn.anwp-pg-load-more--active .anwp-pg-load-more__label,.anwp-pg-wrap .anwp-pg-load-more .anwp-pg-load-more__btn:not(.anwp-pg-load-more--active) .anwp-pg-wave{display:none!important}.anwp-pg-wrap .anwp-pg-wave{margin:0 auto;height:24px;text-align:center;font-size:10px}.anwp-pg-wrap .anwp-pg-wave .anwp-pg-rect{background-color:rgba(41,41,41,.7);height:80%;width:8px;display:inline-block;-webkit-animation:anwpPGWaveStretchDelay 1.2s ease-in-out infinite;animation:anwpPGWaveStretchDelay 1.2s ease-in-out infinite;margin:0 2px}.anwp-pg-wrap .anwp-pg-wave .anwp-pg-rect1{-webkit-animation-delay:-1.2s;animation-delay:-1.2s}.anwp-pg-wrap .anwp-pg-wave .anwp-pg-rect2{-webkit-animation-delay:-1.1s;animation-delay:-1.1s}.anwp-pg-wrap .anwp-pg-wave .anwp-pg-rect3{-webkit-animation-delay:-1s;animation-delay:-1s}.anwp-pg-wrap .anwp-pg-wave .anwp-pg-rect4{-webkit-animation-delay:-.9s;animation-delay:-.9s}.anwp-pg-wrap .anwp-pg-wave .anwp-pg-rect5{-webkit-animation-delay:-.8s;animation-delay:-.8s}@-webkit-keyframes anwpPGWaveStretchDelay{0%,40%,to{-webkit-transform:scaleY(.4);transform:scaleY(.4)}20%{-webkit-transform:scaleY(1);transform:scaleY(1)}}@keyframes anwpPGWaveStretchDelay{0%,40%,to{-webkit-transform:scaleY(.4);transform:scaleY(.4)}20%{-webkit-transform:scaleY(1);transform:scaleY(1)}}.anwp-pg-wrap .anwp-pg-height-150{height:150px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-150{height:300px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-150{height:302px}.anwp-pg-wrap .anwp-pg-height-160{height:160px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-160{height:320px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-160{height:322px}.anwp-pg-wrap .anwp-pg-height-170{height:170px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-170{height:340px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-170{height:342px}.anwp-pg-wrap .anwp-pg-height-180{height:180px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-180{height:360px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-180{height:362px}.anwp-pg-wrap .anwp-pg-height-190{height:190px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-190{height:380px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-190{height:382px}.anwp-pg-wrap .anwp-pg-height-200{height:200px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-200{height:400px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-200{height:402px}.anwp-pg-wrap .anwp-pg-height-210{height:210px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-210{height:420px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-210{height:422px}.anwp-pg-wrap .anwp-pg-height-220{height:220px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-220{height:440px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-220{height:442px}.anwp-pg-wrap .anwp-pg-height-230{height:230px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-230{height:460px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-230{height:462px}.anwp-pg-wrap .anwp-pg-height-240{height:240px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-240{height:480px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-240{height:482px}.anwp-pg-wrap .anwp-pg-height-250{height:250px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-250{height:500px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-250{height:502px}.anwp-pg-wrap .anwp-pg-height-260{height:260px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-260{height:520px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-260{height:522px}.anwp-pg-wrap .anwp-pg-height-270{height:270px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-270{height:540px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-270{height:542px}.anwp-pg-wrap .anwp-pg-height-280{height:280px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-280{height:560px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-280{height:562px}.anwp-pg-wrap .anwp-pg-height-290{height:290px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-290{height:580px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-290{height:582px}.anwp-pg-wrap .anwp-pg-height-300{height:300px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-300{height:600px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-300{height:602px}.anwp-pg-wrap .anwp-pg-height-310{height:310px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-310{height:620px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-310{height:622px}.anwp-pg-wrap .anwp-pg-height-320{height:320px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-320{height:640px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-320{height:642px}.anwp-pg-wrap .anwp-pg-height-330{height:330px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-330{height:660px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-330{height:662px}.anwp-pg-wrap .anwp-pg-height-340{height:340px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-340{height:680px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-340{height:682px}.anwp-pg-wrap .anwp-pg-height-350{height:350px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-350{height:700px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-350{height:702px}.anwp-pg-wrap .anwp-pg-height-360{height:360px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-360{height:720px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-360{height:722px}.anwp-pg-wrap .anwp-pg-height-370{height:370px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-370{height:740px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-370{height:742px}.anwp-pg-wrap .anwp-pg-height-380{height:380px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-380{height:760px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-380{height:762px}.anwp-pg-wrap .anwp-pg-height-390{height:390px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-390{height:780px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-390{height:782px}.anwp-pg-wrap .anwp-pg-height-400{height:400px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-400{height:800px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-400{height:802px}.anwp-pg-wrap .anwp-pg-height-410{height:410px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-410{height:820px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-410{height:822px}.anwp-pg-wrap .anwp-pg-height-420{height:420px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-420{height:840px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-420{height:842px}.anwp-pg-wrap .anwp-pg-height-430{height:430px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-430{height:860px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-430{height:862px}.anwp-pg-wrap .anwp-pg-height-440{height:440px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-440{height:880px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-440{height:882px}.anwp-pg-wrap .anwp-pg-height-450{height:450px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-450{height:900px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-450{height:902px}.anwp-pg-wrap .anwp-pg-height-460{height:460px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-460{height:920px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-460{height:922px}.anwp-pg-wrap .anwp-pg-height-470{height:470px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-470{height:940px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-470{height:942px}.anwp-pg-wrap .anwp-pg-height-480{height:480px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-480{height:960px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-480{height:962px}.anwp-pg-wrap .anwp-pg-height-490{height:490px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-490{height:980px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-490{height:982px}.anwp-pg-wrap .anwp-pg-height-500{height:500px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-500{height:1000px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-500{height:1002px}.anwp-pg-wrap .anwp-pg-height-510{height:510px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-510{height:1020px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-510{height:1022px}.anwp-pg-wrap .anwp-pg-height-520{height:520px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-520{height:1040px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-520{height:1042px}.anwp-pg-wrap .anwp-pg-height-530{height:530px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-530{height:1060px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-530{height:1062px}.anwp-pg-wrap .anwp-pg-height-540{height:540px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-540{height:1080px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-540{height:1082px}.anwp-pg-wrap .anwp-pg-height-550{height:550px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-550{height:1100px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-550{height:1102px}.anwp-pg-wrap .anwp-pg-height-560{height:560px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-560{height:1120px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-560{height:1122px}.anwp-pg-wrap .anwp-pg-height-570{height:570px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-570{height:1140px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-570{height:1142px}.anwp-pg-wrap .anwp-pg-height-580{height:580px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-580{height:1160px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-580{height:1162px}.anwp-pg-wrap .anwp-pg-height-590{height:590px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-590{height:1180px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-590{height:1182px}.anwp-pg-wrap .anwp-pg-height-600{height:600px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-600{height:1200px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-600{height:1202px}.anwp-pg-wrap .anwp-pg-height-610{height:610px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-610{height:1220px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-610{height:1222px}.anwp-pg-wrap .anwp-pg-height-620{height:620px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-620{height:1240px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-620{height:1242px}.anwp-pg-wrap .anwp-pg-height-630{height:630px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-630{height:1260px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-630{height:1262px}.anwp-pg-wrap .anwp-pg-height-640{height:640px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-640{height:1280px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-640{height:1282px}.anwp-pg-wrap .anwp-pg-height-650{height:650px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-650{height:1300px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-650{height:1302px}.anwp-pg-wrap .anwp-pg-height-660{height:660px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-660{height:1320px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-660{height:1322px}.anwp-pg-wrap .anwp-pg-height-670{height:670px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-670{height:1340px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-670{height:1342px}.anwp-pg-wrap .anwp-pg-height-680{height:680px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-680{height:1360px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-680{height:1362px}.anwp-pg-wrap .anwp-pg-height-690{height:690px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-690{height:1380px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-690{height:1382px}.anwp-pg-wrap .anwp-pg-height-700{height:700px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-700{height:1400px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-700{height:1402px}.anwp-pg-wrap .anwp-pg-height-710{height:710px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-710{height:1420px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-710{height:1422px}.anwp-pg-wrap .anwp-pg-height-720{height:720px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-720{height:1440px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-720{height:1442px}.anwp-pg-wrap .anwp-pg-height-730{height:730px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-730{height:1460px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-730{height:1462px}.anwp-pg-wrap .anwp-pg-height-740{height:740px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-740{height:1480px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-740{height:1482px}.anwp-pg-wrap .anwp-pg-height-750{height:750px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-750{height:1500px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-750{height:1502px}.anwp-pg-wrap .anwp-pg-height-760{height:760px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-760{height:1520px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-760{height:1522px}.anwp-pg-wrap .anwp-pg-height-770{height:770px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-770{height:1540px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-770{height:1542px}.anwp-pg-wrap .anwp-pg-height-780{height:780px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-780{height:1560px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-780{height:1562px}.anwp-pg-wrap .anwp-pg-height-790{height:790px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-790{height:1580px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-790{height:1582px}.anwp-pg-wrap .anwp-pg-height-800{height:800px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-height-800{height:1600px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-height-800{height:1602px}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-150{height:150px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-150{height:300px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-150{height:302px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-160{height:160px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-160{height:320px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-160{height:322px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-170{height:170px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-170{height:340px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-170{height:342px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-180{height:180px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-180{height:360px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-180{height:362px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-190{height:190px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-190{height:380px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-190{height:382px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-200{height:200px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-200{height:400px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-200{height:402px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-210{height:210px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-210{height:420px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-210{height:422px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-220{height:220px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-220{height:440px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-220{height:442px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-230{height:230px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-230{height:460px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-230{height:462px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-240{height:240px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-240{height:480px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-240{height:482px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-250{height:250px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-250{height:500px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-250{height:502px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-260{height:260px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-260{height:520px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-260{height:522px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-270{height:270px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-270{height:540px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-270{height:542px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-280{height:280px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-280{height:560px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-280{height:562px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-290{height:290px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-290{height:580px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-290{height:582px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-300{height:300px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-300{height:600px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-300{height:602px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-310{height:310px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-310{height:620px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-310{height:622px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-320{height:320px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-320{height:640px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-320{height:642px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-330{height:330px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-330{height:660px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-330{height:662px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-340{height:340px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-340{height:680px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-340{height:682px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-350{height:350px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-350{height:700px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-350{height:702px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-360{height:360px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-360{height:720px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-360{height:722px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-370{height:370px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-370{height:740px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-370{height:742px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-380{height:380px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-380{height:760px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-380{height:762px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-390{height:390px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-390{height:780px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-390{height:782px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-400{height:400px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-400{height:800px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-400{height:802px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-410{height:410px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-410{height:820px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-410{height:822px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-420{height:420px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-420{height:840px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-420{height:842px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-430{height:430px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-430{height:860px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-430{height:862px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-440{height:440px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-440{height:880px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-440{height:882px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-450{height:450px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-450{height:900px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-450{height:902px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-460{height:460px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-460{height:920px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-460{height:922px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-470{height:470px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-470{height:940px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-470{height:942px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-480{height:480px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-480{height:960px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-480{height:962px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-490{height:490px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-490{height:980px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-490{height:982px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-500{height:500px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-500{height:1000px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-500{height:1002px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-510{height:510px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-510{height:1020px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-510{height:1022px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-520{height:520px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-520{height:1040px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-520{height:1042px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-530{height:530px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-530{height:1060px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-530{height:1062px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-540{height:540px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-540{height:1080px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-540{height:1082px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-550{height:550px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-550{height:1100px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-550{height:1102px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-560{height:560px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-560{height:1120px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-560{height:1122px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-570{height:570px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-570{height:1140px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-570{height:1142px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-580{height:580px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-580{height:1160px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-580{height:1162px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-590{height:590px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-590{height:1180px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-590{height:1182px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-600{height:600px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-600{height:1200px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-600{height:1202px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-610{height:610px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-610{height:1220px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-610{height:1222px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-620{height:620px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-620{height:1240px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-620{height:1242px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-630{height:630px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-630{height:1260px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-630{height:1262px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-640{height:640px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-640{height:1280px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-640{height:1282px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-650{height:650px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-650{height:1300px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-650{height:1302px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-660{height:660px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-660{height:1320px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-660{height:1322px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-670{height:670px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-670{height:1340px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-670{height:1342px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-680{height:680px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-680{height:1360px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-680{height:1362px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-690{height:690px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-690{height:1380px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-690{height:1382px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-700{height:700px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-700{height:1400px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-700{height:1402px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-710{height:710px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-710{height:1420px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-710{height:1422px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-720{height:720px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-720{height:1440px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-720{height:1442px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-730{height:730px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-730{height:1460px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-730{height:1462px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-740{height:740px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-740{height:1480px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-740{height:1482px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-750{height:750px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-750{height:1500px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-750{height:1502px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-760{height:760px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-760{height:1520px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-760{height:1522px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-770{height:770px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-770{height:1540px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-770{height:1542px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-780{height:780px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-780{height:1560px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-780{height:1562px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-790{height:790px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-790{height:1580px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-790{height:1582px}}@media (min-width:576px){.anwp-pg-wrap .anwp-pg-sm-height-800{height:800px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-sm-height-800{height:1600px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-sm-height-800{height:1602px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-150{height:150px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-150{height:300px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-150{height:302px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-160{height:160px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-160{height:320px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-160{height:322px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-170{height:170px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-170{height:340px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-170{height:342px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-180{height:180px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-180{height:360px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-180{height:362px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-190{height:190px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-190{height:380px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-190{height:382px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-200{height:200px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-200{height:400px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-200{height:402px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-210{height:210px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-210{height:420px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-210{height:422px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-220{height:220px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-220{height:440px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-220{height:442px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-230{height:230px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-230{height:460px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-230{height:462px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-240{height:240px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-240{height:480px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-240{height:482px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-250{height:250px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-250{height:500px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-250{height:502px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-260{height:260px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-260{height:520px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-260{height:522px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-270{height:270px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-270{height:540px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-270{height:542px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-280{height:280px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-280{height:560px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-280{height:562px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-290{height:290px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-290{height:580px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-290{height:582px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-300{height:300px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-300{height:600px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-300{height:602px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-310{height:310px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-310{height:620px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-310{height:622px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-320{height:320px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-320{height:640px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-320{height:642px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-330{height:330px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-330{height:660px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-330{height:662px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-340{height:340px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-340{height:680px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-340{height:682px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-350{height:350px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-350{height:700px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-350{height:702px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-360{height:360px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-360{height:720px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-360{height:722px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-370{height:370px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-370{height:740px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-370{height:742px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-380{height:380px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-380{height:760px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-380{height:762px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-390{height:390px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-390{height:780px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-390{height:782px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-400{height:400px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-400{height:800px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-400{height:802px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-410{height:410px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-410{height:820px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-410{height:822px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-420{height:420px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-420{height:840px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-420{height:842px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-430{height:430px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-430{height:860px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-430{height:862px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-440{height:440px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-440{height:880px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-440{height:882px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-450{height:450px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-450{height:900px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-450{height:902px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-460{height:460px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-460{height:920px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-460{height:922px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-470{height:470px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-470{height:940px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-470{height:942px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-480{height:480px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-480{height:960px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-480{height:962px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-490{height:490px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-490{height:980px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-490{height:982px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-500{height:500px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-500{height:1000px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-500{height:1002px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-510{height:510px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-510{height:1020px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-510{height:1022px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-520{height:520px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-520{height:1040px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-520{height:1042px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-530{height:530px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-530{height:1060px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-530{height:1062px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-540{height:540px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-540{height:1080px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-540{height:1082px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-550{height:550px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-550{height:1100px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-550{height:1102px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-560{height:560px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-560{height:1120px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-560{height:1122px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-570{height:570px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-570{height:1140px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-570{height:1142px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-580{height:580px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-580{height:1160px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-580{height:1162px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-590{height:590px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-590{height:1180px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-590{height:1182px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-600{height:600px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-600{height:1200px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-600{height:1202px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-610{height:610px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-610{height:1220px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-610{height:1222px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-620{height:620px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-620{height:1240px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-620{height:1242px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-630{height:630px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-630{height:1260px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-630{height:1262px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-640{height:640px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-640{height:1280px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-640{height:1282px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-650{height:650px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-650{height:1300px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-650{height:1302px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-660{height:660px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-660{height:1320px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-660{height:1322px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-670{height:670px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-670{height:1340px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-670{height:1342px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-680{height:680px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-680{height:1360px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-680{height:1362px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-690{height:690px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-690{height:1380px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-690{height:1382px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-700{height:700px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-700{height:1400px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-700{height:1402px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-710{height:710px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-710{height:1420px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-710{height:1422px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-720{height:720px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-720{height:1440px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-720{height:1442px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-730{height:730px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-730{height:1460px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-730{height:1462px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-740{height:740px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-740{height:1480px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-740{height:1482px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-750{height:750px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-750{height:1500px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-750{height:1502px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-760{height:760px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-760{height:1520px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-760{height:1522px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-770{height:770px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-770{height:1540px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-770{height:1542px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-780{height:780px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-780{height:1560px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-780{height:1562px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-790{height:790px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-790{height:1580px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-790{height:1582px}}@media (min-width:992px){.anwp-pg-wrap .anwp-pg-lg-height-800{height:800px}.anwp-pg-wrap .anwp-pg-height-2x .anwp-pg-lg-height-800{height:1600px}.anwp-pg-wrap .anwp-pg-gutter--thin .anwp-pg-height-2x .anwp-pg-lg-height-800{height:1602px}}.anwp-pg-wrap .anwp-pg-icon{display:inline-block;width:16px;height:16px;stroke-width:0;stroke:none;fill:#595959}.anwp-pg-wrap .anwp-pg-icon--trans{fill:transparent}.anwp-pg-wrap .anwp-pg-icon--feather{stroke:currentColor!important;fill:none;stroke-width:2px}.anwp-pg-wrap .anwp-pg-icon--s1em{width:1em;height:1em}.anwp-pg-wrap .anwp-pg-icon--s28{width:28px;height:28px}.anwp-pg-wrap .anwp-pg-icon--s24{width:24px;height:24px}.anwp-pg-wrap .anwp-pg-icon--s18{width:18px;height:18px}.anwp-pg-wrap .anwp-pg-icon--s14{width:14px;height:14px}.anwp-pg-wrap .anwp-pg-icon--s12{width:12px;height:12px}.anwp-pg-wrap .anwp-pg-icon--s8{width:8px;height:8px}.anwp-pg-wrap .anwp-pg-icon--primary{fill:#0085ba}.anwp-pg-wrap .anwp-pg-icon--white{fill:#fff}.anwp-pg-wrap .anwp-pg-icon--danger{fill:#dc3545}.anwp-pg-wrap .anwp-pg-icon--success{fill:#388e3c}.anwp-pg-wrap .anwp-pg-icon.text-secondary{fill:#6c757d;opacity:.5}.elementor-element.elementor-element-edit-mode.elementor-widget.elementor-widget-empty[class*=elementor-widget-anwp-pg-]{min-height:50px}.anwp-pg-pro-element:before,.anwp-pg-pro-promotion-icon:before{content:"pro";position:absolute;top:5px;left:5px;background-color:#d48a0f;color:#fff;font-size:10px;font-style:normal;padding:3px 5px 2px;opacity:.8;text-transform:uppercase;display:inline-block}.anwp-pg-element:after{content:"AnWP";position:absolute;top:5px;right:5px;color:#848484;border:1px solid #969696;border-radius:2px;font-size:9px;font-style:normal;padding:2px 4px;opacity:.9;display:inline-block}.anwp-pg-pro-news-ticker__admin-icon{display:inline-block;width:1em;height:1em;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTI3LjUgMTguNUguNXYtOGgyN3Y4ek03LjUgMTF2N00xOSAxMy41aDZNMTAgMTMuNWg2TTE5IDE1LjVoNk0xMCAxNS41aDYiIHN0cm9rZT0iIzZENzg4MiIvPjwvc3ZnPg==)}.anwp-pg-simple-grid__admin-icon{display:inline-block;width:1em;height:1em;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTcuNSA3LjVoLTd2LTdoN3Y3ek03LjUgMTcuNWgtN3YtN2g3djd6TTcuNSAyNy41aC03di03aDd2N3pNMTcuNSA3LjVoLTd2LTdoN3Y3ek0xNy41IDE3LjVoLTd2LTdoN3Y3ek0xNy41IDI3LjVoLTd2LTdoN3Y3ek0yNy41IDcuNWgtN3YtN2g3djd6TTI3LjUgMTcuNWgtN3YtN2g3djd6TTI3LjUgMjcuNWgtN3YtN2g3djd6IiBzdHJva2U9IiM2RDc4ODIiLz48L3N2Zz4=)}.anwp-pg-light-grid__admin-icon{display:inline-block;width:1em;height:1em;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTQuNSA2LjVoLTR2LTRoNHY0ek00LjUgMTMuNWgtNHYtNGg0djR6TTQuNSAyMC41aC00di00aDR2NHpNNC41IDI3LjVoLTR2LTRoNHY0ek0xOC41IDYuNWgtNHYtNGg0djR6TTE4LjUgMTMuNWgtNHYtNGg0djR6TTE4LjUgMjAuNWgtNHYtNGg0djR6TTE4LjUgMjcuNWgtNHYtNGg0djR6TTYgMy41aDVNNiAxMC41aDVNNiAxNy41aDVNNiAyNC41aDVNMjAgMy41aDVNMjAgMTAuNWg1TTIwIDE3LjVoNU0yMCAyNC41aDVNNiA1LjVoNk02IDEyLjVoNk02IDE5LjVoNk02IDI2LjVoNk0yMCA1LjVoNk0yMCAxMi41aDZNMjAgMTkuNWg2TTIwIDI2LjVoNiIgc3Ryb2tlPSIjNkQ3ODgyIi8+PC9zdmc+)}.anwp-pg-classic-grid__admin-icon{display:inline-block;width:1em;height:1em;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTI3LjUgNy41aC0xMnYtN2gxMnY3ek0yNy41IDIyLjVoLTEydi03aDEydjd6TTEyLjUgMjIuNUguNXYtN2gxMnY3ek0xMi41IDcuNUguNXYtN2gxMnY3ek0wIDExLjVoMTNNMTUgMTEuNWgxM00wIDkuNWgxM00xNSA5LjVoMTNNMTUgMjQuNWgxM00wIDI0LjVoMTNNMTUgMjYuNWgxM00wIDI2LjVoMTMiIHN0cm9rZT0iIzZENzg4MiIvPjwvc3ZnPg==)}.anwp-pg-classic-blog__admin-icon{display:inline-block;width:1em;height:1em;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExLjUgMjQuNWgtMTB2LTloMTB2OXpNMTEuNSAxMi41aC0xMHYtOWgxMHY5ek0xMyAxOC41aDVNMTMgNi41aDVNMTMgMTYuNWgxME0xMyA0LjVoMTBNMTMgMjEuNWgxNE0xMyA5LjVoMTRNMTMgMjMuNWgxNE0xMyAxMS41aDE0IiBzdHJva2U9IiM2RDc4ODIiLz48L3N2Zz4=)}.anwp-pg-simple-slider__admin-icon{display:inline-block;width:1em;height:1em;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTIyLjUgMjAuNWgtN3YtMTNoN3YxM3pNMTIuNSAyMC41aC03di0xM2g3djEzek0yNSAxMGwyIDQtMiA0TTMgMThsLTItNCAyLTQiIHN0cm9rZT0iIzZENzg4MiIvPjwvc3ZnPg==)}.anwp-pg-classic-slider__admin-icon{display:inline-block;width:1em;height:1em;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTI1IDEwbDIgNC0yIDRNMyAxOGwtMi00IDItNE0xMi41IDE2LjVoLTd2LTloN3Y5ek0yMi41IDE2LjVoLTd2LTloN3Y5ek01IDIwLjVoOE0xNSAyMC41aDhNNSAxOC41aDhNMTUgMTguNWg4IiBzdHJva2U9IiM2RDc4ODIiLz48L3N2Zz4=)}.anwp-pg-hero-block__admin-icon{display:inline-block;width:1em;height:1em;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE5LjUgMTMuNWgtNnYtNmg2djZ6TTI3LjUgMTMuNWgtNnYtNmg2djZ6TTE5LjUgMjEuNWgtNnYtNmg2djZ6TTI3LjUgMjEuNWgtNnYtNmg2djZ6TTExLjUgMjEuNUguNXYtMTRoMTF2MTR6IiBzdHJva2U9IiM2RDc4ODIiLz48L3N2Zz4=)}.anwp-grid_card_bg_effect-darken_only .anwp-pg-post-teaser__thumbnail-img{-webkit-transform:none!important;transform:none!important}.anwp-pg-not-ready{opacity:0;visibility:hidden}.anwp-pg-ready .anwp-pg-not-ready{opacity:1;visibility:visible}body:not(.anwp-pg-ready) .anwp-pg-not-ready-0{display:none!important}.elementor-control-section_anwp_pro_promo_tab .elementor-panel-heading-toggle,.elementor-control-section_anwp_pro_promo_tab .elementor-section-title{color:#d48a0f}.anwp-pg-post-teaser__post-icon--size-24 .anwp-pg-wrap .anwp-pg-post-teaser__format-icon img{width:24px;height:24px}.anwp-pg-post-teaser__post-icon--size-36 .anwp-pg-wrap .anwp-pg-post-teaser__format-icon img{width:36px;height:36px}.anwp-pg-post-teaser__post-icon--position-center .anwp-pg-wrap .anwp-pg-post-teaser__format-icon{top:50%;right:50%;margin-top:-16px;margin-right:-16px}.anwp-pg-post-teaser__post-icon--position-center.anwp-pg-post-teaser__post-icon--size-24 .anwp-pg-wrap .anwp-pg-post-teaser__format-icon{margin-top:-20px;margin-right:-20px}.anwp-pg-post-teaser__post-icon--position-center.anwp-pg-post-teaser__post-icon--size-36 .anwp-pg-wrap .anwp-pg-post-teaser__format-icon{margin-top:-26px;margin-right:-26px}.anwp-pg-post-teaser__post-icon--position-bottom-right .anwp-pg-wrap .anwp-pg-post-teaser__format-icon{top:auto;bottom:10px;right:10px}.anwp-pg-post-teaser__post-icon--position-top-left .anwp-pg-wrap .anwp-pg-post-teaser__format-icon{top:10px;right:auto;left:10px}.anwp-pg-post-teaser__post-icon--position-top-left .anwp-pg-wrap .anwp-pg-post-teaser__format-icon.anwp-pg-post-teaser__format-icon--has-comments{top:30px}.anwp-pg-light-grid .anwp-pg-post-teaser__thumbnail .anwp-pg-post-teaser__format-icon{top:50%;right:50%;margin-top:-16px;margin-right:-16px}.anwp-pg-post-teaser__post-icon--size-24 .anwp-pg-wrap .anwp-pg-light-grid .anwp-pg-post-teaser__format-icon{margin-top:-20px;margin-right:-20px}.anwp-pg-post-teaser__post-icon--size-36 .anwp-pg-wrap .anwp-pg-light-grid .anwp-pg-post-teaser__format-icon{margin-top:-26px;margin-right:-26px}.anwp-pg-post-teaser__post-icon--position-bottom-right .anwp-pg-light-grid .anwp-pg-post-teaser__thumbnail .anwp-pg-post-teaser__format-icon{top:auto;right:5px;bottom:5px;margin-top:0;margin-right:0}.anwp-pg-post-teaser__post-icon--position-top-right .anwp-pg-light-grid .anwp-pg-post-teaser__thumbnail .anwp-pg-post-teaser__format-icon{top:5px;right:5px;bottom:auto;margin-top:0;margin-right:0}.anwp-pg-post-teaser__post-icon--position-top-left .anwp-pg-light-grid .anwp-pg-post-teaser__thumbnail .anwp-pg-post-teaser__format-icon{top:5px;left:5px;right:auto;bottom:auto;margin-top:0;margin-right:0}.anwp-pg-post-teaser--layout-d .anwp-pg-post-teaser__thumbnail .anwp-pg-post-teaser__format-icon{top:10px;right:10px}.anwp-pg-post-teaser__post-icon--position-bottom-right .anwp-pg-post-teaser--layout-d .anwp-pg-post-teaser__thumbnail .anwp-pg-post-teaser__format-icon{top:auto;right:10px;bottom:10px}.anwp-pg-post-teaser__post-icon--position-center .anwp-pg-post-teaser--layout-d .anwp-pg-post-teaser__thumbnail .anwp-pg-post-teaser__format-icon{top:50%;right:50%;margin-top:-16px;margin-right:-16px}.anwp-pg-post-teaser__post-icon--position-center.anwp-pg-post-teaser__post-icon--size-24 .anwp-pg-wrap .anwp-pg-post-teaser--layout-d .anwp-pg-post-teaser__format-icon{margin-top:-20px;margin-right:-20px}.anwp-pg-post-teaser__post-icon--position-center.anwp-pg-post-teaser__post-icon--size-36 .anwp-pg-wrap .anwp-pg-post-teaser--layout-d .anwp-pg-post-teaser__format-icon{margin-top:-26px;margin-right:-26px}.anwp-pg-post-teaser--layout-classic .anwp-pg-post-teaser__thumbnail .anwp-pg-post-teaser__format-icon{top:10px;right:10px}.anwp-pg-post-teaser__post-icon--position-bottom-right .anwp-pg-post-teaser--layout-classic .anwp-pg-post-teaser__thumbnail .anwp-pg-post-teaser__format-icon{top:auto;right:10px;bottom:10px}.anwp-pg-post-teaser__post-icon--position-center .anwp-pg-post-teaser--layout-classic .anwp-pg-post-teaser__thumbnail .anwp-pg-post-teaser__format-icon{top:50%;right:50%;margin-top:-16px;margin-right:-16px}.anwp-pg-post-teaser__post-icon--position-center.anwp-pg-post-teaser__post-icon--size-24 .anwp-pg-wrap .anwp-pg-post-teaser--layout-classic .anwp-pg-post-teaser__format-icon{margin-top:-20px;margin-right:-20px}.anwp-pg-post-teaser__post-icon--position-center.anwp-pg-post-teaser__post-icon--size-36 .anwp-pg-wrap .anwp-pg-post-teaser--layout-classic .anwp-pg-post-teaser__format-icon{margin-top:-26px;margin-right:-26px}.anwp-pg-wrap .anwp-pg-no-transform .anwp-pg-post-teaser:hover .anwp-pg-post-teaser__thumbnail-img{-webkit-transform:none!important;transform:none!important}.anwp-pg-wrap .anwp-pg-post-teaser{font-size:16px}.anwp-pg-wrap .anwp-pg-post-teaser__thumbnail{overflow:hidden}.anwp-pg-wrap .anwp-pg-post-teaser__format-icon{top:10px;position:absolute;background-color:rgba(0,0,0,.5);border:2px solid #fff;border-radius:50%;right:10px;left:auto;padding:6px;z-index:1}.anwp-pg-wrap .anwp-pg-post-teaser__format-icon--has-category{top:30px}.anwp-pg-wrap .anwp-pg-post-teaser__format-icon img{width:16px;height:16px}.anwp-pg-wrap .anwp-pg-post-teaser__thumbnail-bg{transition:all .4s ease-in-out 0s}.anwp-pg-wrap .anwp-pg-post-teaser__thumbnail-img{transition:all .4s ease-in-out 0s;background-position:50% 50%;background-size:cover;background-repeat:no-repeat}.anwp-pg-wrap .anwp-pg-post-teaser:not(.anwp-pg-post-teaser--inner-cover-link):hover .anwp-pg-post-teaser__thumbnail-bg{background:rgba(0,0,0,.4);transition:background-color .4s ease-in-out 0s}.anwp-pg-wrap .anwp-pg-post-teaser:not(.anwp-pg-post-teaser--inner-cover-link):hover .anwp-pg-post-teaser__thumbnail-img{-webkit-transform:scale(1.1);transform:scale(1.1);transition:-webkit-transform .4s ease-in-out 0s;transition:transform .4s ease-in-out 0s;transition:transform .4s ease-in-out 0s,-webkit-transform .4s ease-in-out 0s}.anwp-pg-wrap .anwp-pg-post-teaser.anwp-pg-post-teaser--inner-cover-link .anwp-pg-post-teaser__thumbnail:hover .anwp-pg-post-teaser__thumbnail-bg{background:rgba(0,0,0,.4);transition:background-color .4s ease-in-out 0s}.anwp-pg-wrap .anwp-pg-post-teaser.anwp-pg-post-teaser--inner-cover-link .anwp-pg-post-teaser__thumbnail:hover .anwp-pg-post-teaser__thumbnail-img{-webkit-transform:scale(1.1);transform:scale(1.1);transition:-webkit-transform .4s ease-in-out 0s;transition:transform .4s ease-in-out 0s;transition:transform .4s ease-in-out 0s,-webkit-transform .4s ease-in-out 0s}.anwp-pg-wrap .anwp-pg-post-teaser__top-meta{overflow:hidden;-webkit-transform:translateZ(0);transform:translateZ(0)}.anwp-pg-wrap .anwp-pg-post-teaser__top-meta>span{padding:4px 6px;background-color:rgba(39,52,58,.8);color:#fff;font-size:.75em;line-height:1;text-align:center}.anwp-pg-wrap .anwp-pg-post-teaser__bottom-meta{font-size:.75em;color:#f5f5f5;padding:0 12px}.anwp-pg-wrap .anwp-pg-post-teaser__category-wrapper{color:#fff;font-size:.75em;line-height:1;text-transform:uppercase}.anwp-pg-wrap .anwp-pg-post-teaser__title{font-size:1em;line-height:1.2em;word-spacing:1px;letter-spacing:.5px;text-transform:uppercase;font-weight:500;padding:0 12px;-webkit-transform:translateZ(0);transform:translateZ(0)}.anwp-pg-wrap .anwp-pg-post-teaser--layout-a .anwp-pg-post-teaser__title{color:#fff;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;max-height:2.4em}.anwp-pg-wrap .anwp-pg-post-teaser--layout-a .anwp-pg-post-teaser__muted_bg{position:absolute;bottom:0;left:0;right:0;top:30%;background:linear-gradient(180deg,transparent 0,rgba(0,0,0,.4) 40%,rgba(0,0,0,.8));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000",endColorstr="#b3000000",GradientType=0)}.anwp-pg-wrap .anwp-pg-post-teaser--layout-a .anwp-pg-post-teaser__bottom-meta:before{position:absolute;content:"";width:40px;border-top:1px solid #fff;top:-4px}.anwp-pg-wrap .anwp-pg-post-teaser--layout-a .anwp-pg-post-teaser__bottom-meta{text-shadow:1px 1px 1px rgba(0,0,0,.7)}.anwp-pg-wrap .anwp-pg-post-teaser--layout-b .anwp-pg-post-teaser__muted_bg{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAABS2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxMzggNzkuMTU5ODI0LCAyMDE2LzA5LzE0LTAxOjA5OjAxICAgICAgICAiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIi8+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgo8P3hwYWNrZXQgZW5kPSJyIj8+IEmuOgAAABpJREFUCJljZGBg8GVgYDBmYmBgMGZgYDgLAAg2AYRjQjgZAAAAAElFTkSuQmCC")}.anwp-pg-wrap .anwp-pg-post-teaser--layout-b .anwp-pg-post-teaser__title{color:#fff;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;max-height:2.4em}.anwp-pg-wrap .anwp-pg-post-teaser--layout-b .anwp-pg-post-teaser__bottom-meta:before{position:absolute;content:"";width:40px;border-top:1px solid #fff;top:-4px}.anwp-pg-wrap .anwp-pg-post-teaser--layout-b .anwp-pg-post-teaser__bottom-meta{text-shadow:1px 1px 1px rgba(0,0,0,.7)}.anwp-pg-wrap .anwp-pg-post-teaser--layout-c .anwp-pg-post-teaser__top-meta{min-height:20px}.anwp-pg-wrap .anwp-pg-post-teaser--layout-c .anwp-pg-post-teaser__bottom-block{background-color:rgba(34,34,34,.6);width:75%}.anwp-pg-wrap .anwp-pg-post-teaser--layout-c .anwp-pg-post-teaser__bottom-meta{top:4px;text-shadow:1px 1px 1px rgba(0,0,0,.7)}.anwp-pg-wrap .anwp-pg-post-teaser--layout-c .anwp-pg-post-teaser__bottom-meta+.anwp-pg-post-teaser__title{margin-bottom:-5px;margin-top:3px}.anwp-pg-wrap .anwp-pg-post-teaser--layout-c .anwp-pg-post-teaser__title{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;max-height:2.4em;min-height:2.4em;line-height:1.2em;color:#fff}.anwp-pg-wrap .anwp-pg-post-teaser--layout-d .anwp-pg-post-teaser__thumbnail-img{min-height:150px}.anwp-pg-wrap .anwp-pg-post-teaser--layout-d .anwp-pg-post-teaser__top-meta{position:absolute;top:0;left:0;z-index:2}.anwp-pg-wrap .anwp-pg-post-teaser--layout-d .anwp-pg-post-teaser__bottom-meta{font-size:12px;color:#777;padding:0;overflow:hidden;line-height:1.5}.anwp-pg-wrap .anwp-pg-post-teaser--layout-d .anwp-pg-post-teaser__bottom-meta .anwp-pg-icon{fill:#777}.anwp-pg-wrap .anwp-pg-post-teaser--layout-d .anwp-pg-post-teaser__title{font-size:1.1em;padding:0;font-weight:700;word-spacing:normal;letter-spacing:normal;text-transform:unset}.anwp-pg-wrap .anwp-pg-post-teaser--layout-d .anwp-pg-post-teaser__excerpt{font-size:.9em;line-height:1.2em}.anwp-pg-wrap .anwp-pg-post-teaser--layout-e .anwp-pg-post-teaser__thumbnail-img{height:80px!important;width:80px!important}.anwp-pg-wrap .anwp-pg-post-teaser--layout-e .anwp-pg-post-teaser__thumbnail{min-width:80px;max-height:80px}.anwp-pg-wrap .anwp-pg-post-teaser--layout-e .anwp-pg-post-teaser__title{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;max-height:2.2em;line-height:1em;font-size:.9em;margin-top:2px;padding:0;font-weight:700;word-spacing:normal;letter-spacing:normal;text-transform:unset}.anwp-pg-wrap .anwp-pg-post-teaser--layout-e .anwp-pg-post-teaser__bottom-meta{font-size:12px;color:#777;padding:0;overflow:hidden;max-height:1.5em;line-height:1.5}.anwp-pg-wrap .anwp-pg-post-teaser--layout-e .anwp-pg-post-teaser__bottom-meta .anwp-pg-icon{fill:#777}.anwp-pg-wrap .anwp-pg-post-teaser--layout-e .anwp-pg-post-teaser__bottom-meta>.anwp-pg-post-teaser__bottom-meta-item:first-child>.anwp-pg-icon{margin-left:-2px}.anwp-pg-wrap .anwp-pg-post-teaser--layout-e .anwp-pg-post-teaser__category-wrapper{font-size:10px;line-height:12px;display:inline-block;font-weight:500;letter-spacing:.5px;border-radius:2px;white-space:nowrap;border:1px solid;padding:1px 8px}.anwp-pg-wrap .anwp-pg-post-teaser--layout-e .anwp-pg-post-teaser__content{padding-left:12px}.anwp-pg-wrap .anwp-pg-post-teaser--layout-e:hover .anwp-pg-post-teaser__content{background-color:#fafafa}.anwp-pg-wrap .anwp-pg-post-teaser--layout-f .anwp-pg-post-teaser__thumbnail-img{height:120px!important;width:120px!important}.anwp-pg-wrap .anwp-pg-post-teaser--layout-f .anwp-pg-post-teaser__thumbnail{min-width:120px;max-height:120px}.anwp-pg-wrap .anwp-pg-post-teaser--layout-f .anwp-pg-post-teaser__title{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;max-height:3.3em;line-height:1.1em;font-size:1em;margin-top:2px;padding:0;font-weight:700;word-spacing:normal;letter-spacing:normal;text-transform:unset}.anwp-pg-wrap .anwp-pg-post-teaser--layout-f .anwp-pg-post-teaser__bottom-meta{font-size:12px;color:#777;padding:0;overflow:hidden;max-height:1.5em;line-height:1.5}.anwp-pg-wrap .anwp-pg-post-teaser--layout-f .anwp-pg-post-teaser__bottom-meta .anwp-pg-icon{fill:#777}.anwp-pg-wrap .anwp-pg-post-teaser--layout-f .anwp-pg-post-teaser__bottom-meta>.anwp-pg-post-teaser__bottom-meta-item:first-child>.anwp-pg-icon{margin-left:-2px}.anwp-pg-wrap .anwp-pg-post-teaser--layout-f .anwp-pg-post-teaser__category-wrapper{font-size:10px;line-height:12px;display:inline-block;font-weight:500;letter-spacing:.5px;border-radius:2px;white-space:nowrap;border:1px solid;padding:1px 8px}.anwp-pg-wrap .anwp-pg-post-teaser--layout-f .anwp-pg-post-teaser__content{padding-left:12px}.anwp-pg-wrap .anwp-pg-post-teaser--layout-f:hover .anwp-pg-post-teaser__content{background-color:#fafafa}.anwp-pg-wrap .anwp-pg-post-teaser--layout-classic .anwp-pg-post-teaser__top-meta{position:absolute;top:0;left:0;z-index:2}.anwp-pg-wrap .anwp-pg-post-teaser--layout-classic .anwp-pg-post-teaser__bottom-meta{font-size:12px;color:#777;padding:0;line-height:1.2}.anwp-pg-wrap .anwp-pg-post-teaser--layout-classic .anwp-pg-post-teaser__title{font-size:1.1em;padding:0;font-weight:600;word-spacing:normal;letter-spacing:normal;text-transform:unset}.anwp-pg-wrap .anwp-pg-post-teaser--layout-classic .anwp-pg-post-teaser__excerpt{font-size:.9em;line-height:1.3em}.anwp-pg-wrap .anwp-pg-post-teaser--layout-classic .anwp-pg-post-teaser__thumbnail:hover .anwp-pg-post-teaser__thumbnail-classic-bg{background:rgba(0,0,0,.4);transition:background-color .4s ease-in-out 0s}.anwp-pg-wrap .anwp-pg-post-teaser--layout-classic .anwp-pg-post-teaser__thumbnail-classic-bg{transition:all .4s ease-in-out 0s}.anwp-pg-wrap .anwp-pg-post-teaser--layout-classic .anwp-pg-read-more__btn{font-size:.9em}.anwp-pg-wrap .anwp-pg-post-teaser__category-column{position:absolute;top:0;right:0}.anwp-pg-wrap .anwp-pg-post-teaser__category-column .anwp-pg-category__wrapper-filled{padding-top:4px;padding-bottom:4px}.anwp-pg-wrap .anwp-pg-post-teaser__category-column .anwp-pg-post-teaser__category-wrapper+.anwp-pg-post-teaser__category-wrapper{margin-top:4px}.anwp-pg-wrap .anwp-pg-post-teaser.anwp-pg-post-teaser--has-comments-meta .anwp-pg-post-teaser__category-column,.anwp-pg-wrap .anwp-pg-post-teaser.anwp-pg-post-teaser--has-pvc-meta .anwp-pg-post-teaser__category-column{max-width:calc(100% - 50px)}.anwp-pg-wrap .anwp-pg-post-teaser.anwp-pg-post-teaser--has-comments-meta.anwp-pg-post-teaser--has-pvc-meta .anwp-pg-post-teaser__category-column{max-width:calc(100% - 100px)}.anwp-pg-wrap .anwp-pg-simple-grid__gutter-thick{margin-top:-10px;margin-bottom:-10px}.anwp-pg-wrap .anwp-pg-simple-grid__gutter-thick .anwp-pg-post-teaser{margin-top:10px;margin-bottom:10px}.anwp-pg-wrap .anwp-pg-simple-grid__gutter-thin{margin:-1px}.anwp-pg-wrap .anwp-pg-simple-grid__gutter-thin .anwp-pg-post-teaser{border:1px solid transparent}.anwp-pg-wrap .anwp-pg-classic-blog .anwp-pg-post-teaser+.anwp-pg-post-teaser{margin-top:30px}@media (min-width:768px){.anwp-pg-wrap .anwp-pg-classic-blog .anwp-pg-post-teaser__content{padding-left:20px}}.anwp-pg-wrap .anwp-pg-classic-blog .anwp-pg-post-teaser__bottom-meta{margin-top:15px;margin-bottom:15px}.anwp-pg-wrap .anwp-pg-classic-slider .anwp-pg-post-teaser__bottom-meta{margin-top:10px;margin-bottom:10px}.anwp-pg-wrap .anwp-pg-classic-slider .anwp-pg-post-teaser.anwp-pg-post-teaser--with-read-more{height:auto;padding-bottom:10px}.anwp-pg-wrap .anwp-pg-simple-slider .elementor-swiper-button{transition:background-color .5s}.anwp-pg-wrap .anwp-pg-simple-slider .elementor-swiper-button:hover{background-color:rgba(34,34,34,.4)}.anwp-pg-wrap .anwp-pg-simple-slider .elementor-swiper-button.elementor-swiper-button-prev{left:6px;padding:4px}.anwp-pg-wrap .anwp-pg-simple-slider .elementor-swiper-button.elementor-swiper-button-next{right:6px;padding:4px}.anwp-pg-wrap .anwp-pg-light-grid{margin-bottom:-20px}.anwp-pg-wrap .anwp-pg-light-grid .anwp-pg-post-teaser{margin-bottom:20px}.anwp-pg-wrap .anwp-pg-classic-grid{margin-bottom:-20px}.anwp-pg-wrap .anwp-pg-classic-grid .anwp-pg-post-teaser{margin-bottom:20px}.anwp-pg-wrap .anwp-pg-classic-grid .anwp-pg-post-teaser__content{padding-bottom:20px;border-bottom:1px solid #ddd}.anwp-pg-wrap .anwp-pg-classic-grid .anwp-pg-post-teaser__bottom-meta{margin-top:10px;margin-bottom:10px}.anwp-pg-wrap .anwp-pg-hero-block .anwp-pg-hero-main-block .anwp-pg-post-teaser__title{font-size:1.5em}.anwp-pg-wrap .anwp-pg-hero-block.anwp-pg-gutter--thin .anwp-pg-post-teaser{border:1px solid #fff}.anwp-pg-wrap .anwp-pg-widget-header{border:none}.anwp-pg-wrap .anwp-pg-widget-header__title{margin-top:0!important;margin-bottom:0!important;z-index:1;font-weight:400}.anwp-pg-wrap .anwp-pg-widget-header__secondary-line{z-index:0}.anwp-pg-wrap .anwp-pg-widget-header__icon{margin-right:8px}.anwp-pg-widget-header-style--b .anwp-pg-wrap .anwp-pg-widget-header__secondary-line{position:absolute;width:100%;bottom:0}.anwp-pg-widget-header-style--b .anwp-pg-wrap .anwp-pg-widget-header__title{padding:3px 15px}.anwp-pg-widget-header-style--c .anwp-pg-wrap .anwp-pg-widget-header__secondary-line{position:absolute;width:100%;top:0}.anwp-pg-widget-header-style--c .anwp-pg-wrap .anwp-pg-widget-header__title{padding:3px 15px}.anwp-pg-widget-header-style--d .anwp-pg-wrap .anwp-pg-widget-header__secondary-line{position:absolute;width:100%;bottom:0}.anwp-pg-widget-header-style--d .anwp-pg-wrap .anwp-pg-widget-header__title{padding-bottom:5px}.anwp-pg-widget-header-style--e .anwp-pg-wrap .anwp-pg-widget-header__secondary-line{position:absolute;width:100%;top:0}.anwp-pg-widget-header-style--e .anwp-pg-wrap .anwp-pg-widget-header__title{padding-top:5px}.anwp-pg-widget-header-style--f .anwp-pg-wrap .anwp-pg-widget-header__secondary-line{position:absolute;width:100px;bottom:0}.anwp-pg-widget-header-style--f .anwp-pg-wrap .anwp-pg-widget-header__title{padding-bottom:5px}.anwp-pg-widget-header-style--g .anwp-pg-wrap .anwp-pg-widget-header__secondary-line{position:absolute;left:0;top:0;bottom:0}.anwp-pg-widget-header-style--g .anwp-pg-wrap .anwp-pg-widget-header__title{padding-left:10px}.anwp-pg-wrap .anwp-pg-flex-slider .elementor-swiper-button{transition:background-color .5s}.anwp-pg-wrap .anwp-pg-flex-slider .elementor-swiper-button:hover{background-color:rgba(34,34,34,.4)}

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
/*# sourceURL=wp-emoji-styles-inline-css */
.wp-block-accordion{box-sizing:border-box}.wp-block-accordion-item.is-open>.wp-block-accordion-heading .wp-block-accordion-heading__toggle-icon{transform:rotate(45deg)}@media (prefers-reduced-motion:no-preference){.wp-block-accordion-item{transition:grid-template-rows .3s ease-out}.wp-block-accordion-item>.wp-block-accordion-heading .wp-block-accordion-heading__toggle-icon{transition:transform .2s ease-in-out}}.wp-block-accordion-heading__toggle{align-items:center;background:none;border:none;color:inherit;cursor:pointer;display:flex;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;overflow:hidden;padding:var(--wp--preset--spacing--20,1em) 0;text-align:inherit;text-decoration:inherit;text-transform:inherit;width:100%;word-spacing:inherit}.wp-block-accordion-heading__toggle:not(:focus-visible){outline:none}.wp-block-accordion-heading__toggle:hover .wp-block-accordion-heading__toggle-title{text-decoration:underline}.wp-block-accordion-heading__toggle-title{flex:1}.wp-block-accordion-heading__toggle-icon{align-items:center;display:flex;height:1.2em;justify-content:center;width:1.2em}.wp-block-accordion-panel[hidden]{border:none!important;box-shadow:none!important;margin-block-start:0;padding:0!important}.wp-block-archives{box-sizing:border-box}.wp-block-archives-dropdown label{display:block}.wp-block-avatar{line-height:0}.wp-block-avatar,.wp-block-avatar img{box-sizing:border-box}.wp-block-avatar.aligncenter{text-align:center}.wp-block-audio{box-sizing:border-box}.wp-block-audio :where(figcaption){margin-bottom:1em;margin-top:.5em}.wp-block-audio audio{min-width:300px;width:100%}.wp-block-breadcrumbs{box-sizing:border-box}.wp-block-breadcrumbs ol{flex-wrap:wrap;list-style:none}.wp-block-breadcrumbs li,.wp-block-breadcrumbs ol{align-items:center;display:flex;margin:0;padding:0}.wp-block-breadcrumbs li:not(:last-child):after{content:var(--separator,"/")/"";margin:0 .5em;opacity:.7}.wp-block-breadcrumbs span{color:inherit}.wp-block-button__link{align-content:center;box-sizing:border-box;cursor:pointer;display:inline-block;height:100%;text-align:center;word-break:break-word}.wp-block-button__link.aligncenter{text-align:center}.wp-block-button__link.alignright{text-align:right}:where(.wp-block-button__link){border-radius:9999px;box-shadow:none;padding:calc(.667em + 2px) calc(1.333em + 2px);text-decoration:none}.wp-block-button[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons>.wp-block-button.has-custom-width{max-width:none}.wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link{width:100%}.wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons>.wp-block-button[class*=wp-block-button__width]{width:calc(var(--wp--block-button--width)*1% - var(--wp--style--block-gap, .5em)*(1 - var(--wp--block-button--width)/100))}.wp-block-buttons>.wp-block-button.wp-block-button__width-25{width:calc(25% - var(--wp--style--block-gap, .5em)*.75)}.wp-block-buttons>.wp-block-button.wp-block-button__width-50{width:calc(50% - var(--wp--style--block-gap, .5em)*.5)}.wp-block-buttons>.wp-block-button.wp-block-button__width-75{width:calc(75% - var(--wp--style--block-gap, .5em)*.25)}.wp-block-buttons>.wp-block-button.wp-block-button__width-100{flex-basis:100%;width:100%}.wp-block-buttons.is-vertical>.wp-block-button[class*=wp-block-button__width]{width:calc(var(--wp--block-button--width)*1%)}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25{width:25%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50{width:50%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75{width:75%}.wp-block-button.is-style-squared,.wp-block-button__link.wp-block-button.is-style-squared{border-radius:0}.wp-block-button.no-border-radius,.wp-block-button__link.no-border-radius{border-radius:0!important}:root :where(.wp-block-button .wp-block-button__link.is-style-outline),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link){border:2px solid;padding:.667em 1.333em}:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color)){color:currentColor}:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background)){background-color:transparent;background-image:none}.wp-block-buttons{box-sizing:border-box}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons .wp-block-button__link{width:100%}.wp-block-button.aligncenter,.wp-block-calendar{text-align:center}.wp-block-calendar td,.wp-block-calendar th{border:1px solid;padding:.25em}.wp-block-calendar th{font-weight:400}.wp-block-calendar caption{background-color:inherit}.wp-block-calendar table{border-collapse:collapse;width:100%}.wp-block-calendar table.has-background th{background-color:inherit}.wp-block-calendar table.has-text-color th{color:inherit}.wp-block-calendar :where(table:not(.has-text-color)){color:#40464d}.wp-block-calendar :where(table:not(.has-text-color)) td,.wp-block-calendar :where(table:not(.has-text-color)) th{border-color:#ddd}:where(.wp-block-calendar table:not(.has-background) th){background:#ddd}.wp-block-categories{box-sizing:border-box}.wp-block-categories.alignleft{margin-right:2em}.wp-block-categories.alignright{margin-left:2em}.wp-block-categories.wp-block-categories-dropdown.aligncenter{text-align:center}.wp-block-categories .wp-block-categories__label:not(.screen-reader-text){display:block;width:100%}.wp-block-code{box-sizing:border-box}.wp-block-code code{direction:ltr;display:block;font-family:inherit;overflow-wrap:break-word;text-align:initial;white-space:break-spaces}.wp-block-columns{box-sizing:border-box;display:flex;flex-wrap:wrap!important}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap!important}}.wp-block-columns{align-items:normal!important}.wp-block-columns.are-vertically-aligned-top{align-items:flex-start}.wp-block-columns.are-vertically-aligned-center{align-items:center}.wp-block-columns.are-vertically-aligned-bottom{align-items:flex-end}@media (max-width:781px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:100%!important}}@media (min-width:782px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[style*=flex-basis]{flex-grow:0}}.wp-block-columns.is-not-stacked-on-mobile{flex-wrap:nowrap!important}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[style*=flex-basis]{flex-grow:0}:where(.wp-block-columns){margin-bottom:1.75em}:where(.wp-block-columns.has-background){padding:1.25em 2.375em}.wp-block-column{flex-grow:1;min-width:0;overflow-wrap:break-word;word-break:break-word}.wp-block-column.is-vertically-aligned-top{align-self:flex-start}.wp-block-column.is-vertically-aligned-center{align-self:center}.wp-block-column.is-vertically-aligned-bottom{align-self:flex-end}.wp-block-column.is-vertically-aligned-stretch{align-self:stretch}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}.wp-block-post-comments{box-sizing:border-box}.wp-block-post-comments .alignleft{float:left}.wp-block-post-comments .alignright{float:right}.wp-block-post-comments .navigation:after{clear:both;content:"";display:table}.wp-block-post-comments .commentlist{clear:both;list-style:none;margin:0;padding:0}.wp-block-post-comments .commentlist .comment{min-height:2.25em;padding-left:3.25em}.wp-block-post-comments .commentlist .comment p{font-size:1em;line-height:1.8;margin:1em 0}.wp-block-post-comments .commentlist .children{list-style:none;margin:0;padding:0}.wp-block-post-comments .comment-author{line-height:1.5}.wp-block-post-comments .comment-author .avatar{border-radius:1.5em;display:block;float:left;height:2.5em;margin-right:.75em;margin-top:.5em;width:2.5em}.wp-block-post-comments .comment-author cite{font-style:normal}.wp-block-post-comments .comment-meta{font-size:.875em;line-height:1.5}.wp-block-post-comments .comment-meta b{font-weight:400}.wp-block-post-comments .comment-meta .comment-awaiting-moderation{display:block;margin-bottom:1em;margin-top:1em}.wp-block-post-comments .comment-body .commentmetadata{font-size:.875em}.wp-block-post-comments .comment-form-author label,.wp-block-post-comments .comment-form-comment label,.wp-block-post-comments .comment-form-email label,.wp-block-post-comments .comment-form-url label{display:block;margin-bottom:.25em}.wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments .comment-form textarea{box-sizing:border-box;display:block;width:100%}.wp-block-post-comments .comment-form-cookies-consent{display:flex;gap:.25em}.wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent{margin-top:.35em}.wp-block-post-comments .comment-reply-title{margin-bottom:0}.wp-block-post-comments .comment-reply-title :where(small){font-size:var(--wp--preset--font-size--medium,smaller);margin-left:.5em}.wp-block-post-comments .reply{font-size:.875em;margin-bottom:1.4em}.wp-block-post-comments input:not([type=submit]),.wp-block-post-comments textarea{border:1px solid #949494;font-family:inherit;font-size:1em}.wp-block-post-comments input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments textarea{padding:calc(.667em + 2px)}:where(.wp-block-post-comments input[type=submit]){border:none}.wp-block-comments{box-sizing:border-box}.wp-block-comments-pagination>.wp-block-comments-pagination-next,.wp-block-comments-pagination>.wp-block-comments-pagination-numbers,.wp-block-comments-pagination>.wp-block-comments-pagination-previous{font-size:inherit}.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow{display:inline-block;margin-right:1ch}.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow{display:inline-block;margin-left:1ch}.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-comments-pagination.aligncenter{justify-content:center}.wp-block-comment-template{box-sizing:border-box;list-style:none;margin-bottom:0;max-width:100%;padding:0}.wp-block-comment-template li{clear:both}.wp-block-comment-template ol{list-style:none;margin-bottom:0;max-width:100%;padding-left:2rem}.wp-block-comment-template.alignleft{float:left}.wp-block-comment-template.aligncenter{margin-left:auto;margin-right:auto;width:-moz-fit-content;width:fit-content}.wp-block-comment-template.alignright{float:right}.wp-block-comment-date{box-sizing:border-box}.comment-awaiting-moderation{display:block;font-size:.875em;line-height:1.5}.wp-block-comment-author-name,.wp-block-comment-content,.wp-block-comment-edit-link,.wp-block-comment-reply-link{box-sizing:border-box}.wp-block-cover,.wp-block-cover-image{align-items:center;background-position:50%;box-sizing:border-box;display:flex;justify-content:center;min-height:430px;overflow:hidden;overflow:clip;padding:1em;position:relative}.wp-block-cover .has-background-dim:not([class*=-background-color]),.wp-block-cover-image .has-background-dim:not([class*=-background-color]),.wp-block-cover-image.has-background-dim:not([class*=-background-color]),.wp-block-cover.has-background-dim:not([class*=-background-color]){background-color:#000}.wp-block-cover .has-background-dim.has-background-gradient,.wp-block-cover-image .has-background-dim.has-background-gradient{background-color:transparent}.wp-block-cover-image.has-background-dim:before,.wp-block-cover.has-background-dim:before{background-color:inherit;content:""}.wp-block-cover .wp-block-cover__background,.wp-block-cover .wp-block-cover__gradient-background,.wp-block-cover-image .wp-block-cover__background,.wp-block-cover-image .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,.wp-block-cover.has-background-dim:not(.has-background-gradient):before{bottom:0;left:0;opacity:.5;position:absolute;right:0;top:0}.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before{opacity:1}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0{opacity:0}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10{opacity:.1}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20{opacity:.2}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30{opacity:.3}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40{opacity:.4}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50{opacity:.5}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60{opacity:.6}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70{opacity:.7}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80{opacity:.8}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90{opacity:.9}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100{opacity:1}.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright{max-width:420px;width:100%}.wp-block-cover-image.aligncenter,.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.aligncenter,.wp-block-cover.alignleft,.wp-block-cover.alignright{display:flex}.wp-block-cover .wp-block-cover__inner-container,.wp-block-cover-image .wp-block-cover__inner-container{color:inherit;position:relative;width:100%}.wp-block-cover-image.is-position-top-left,.wp-block-cover.is-position-top-left{align-items:flex-start;justify-content:flex-start}.wp-block-cover-image.is-position-top-center,.wp-block-cover.is-position-top-center{align-items:flex-start;justify-content:center}.wp-block-cover-image.is-position-top-right,.wp-block-cover.is-position-top-right{align-items:flex-start;justify-content:flex-end}.wp-block-cover-image.is-position-center-left,.wp-block-cover.is-position-center-left{align-items:center;justify-content:flex-start}.wp-block-cover-image.is-position-center-center,.wp-block-cover.is-position-center-center{align-items:center;justify-content:center}.wp-block-cover-image.is-position-center-right,.wp-block-cover.is-position-center-right{align-items:center;justify-content:flex-end}.wp-block-cover-image.is-position-bottom-left,.wp-block-cover.is-position-bottom-left{align-items:flex-end;justify-content:flex-start}.wp-block-cover-image.is-position-bottom-center,.wp-block-cover.is-position-bottom-center{align-items:flex-end;justify-content:center}.wp-block-cover-image.is-position-bottom-right,.wp-block-cover.is-position-bottom-right{align-items:flex-end;justify-content:flex-end}.wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container{margin:0}.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container{margin:0;width:auto}.wp-block-cover .wp-block-cover__image-background,.wp-block-cover video.wp-block-cover__video-background,.wp-block-cover-image .wp-block-cover__image-background,.wp-block-cover-image video.wp-block-cover__video-background{border:none;bottom:0;box-shadow:none;height:100%;left:0;margin:0;max-height:none;max-width:none;-o-object-fit:cover;object-fit:cover;outline:none;padding:0;position:absolute;right:0;top:0;width:100%}.wp-block-cover .wp-block-cover__embed-background,.wp-block-cover-image .wp-block-cover__embed-background{border:none;bottom:0;box-shadow:none;height:100%;left:0;margin:0;max-height:none;max-width:none;outline:none;padding:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.wp-block-cover .wp-block-cover__embed-background .wp-block-embed__wrapper,.wp-block-cover-image .wp-block-cover__embed-background .wp-block-embed__wrapper{bottom:0;height:100%;left:0;margin:0;padding:0;position:absolute;right:0;top:0;width:100%}.wp-block-cover .wp-block-cover__embed-background .wp-block-embed__wrapper iframe,.wp-block-cover .wp-block-cover__embed-background iframe,.wp-block-cover-image .wp-block-cover__embed-background .wp-block-embed__wrapper iframe,.wp-block-cover-image .wp-block-cover__embed-background iframe{height:100vh;left:50%;min-height:100%;min-width:100%;pointer-events:none;position:absolute;top:50%;transform:translate(-50%,-50%);width:100vw}.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax,.wp-block-cover__image-background.has-parallax,video.wp-block-cover__video-background.has-parallax{background-attachment:fixed;background-repeat:no-repeat;background-size:cover}@supports (-webkit-touch-callout:inherit){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax,.wp-block-cover__image-background.has-parallax,video.wp-block-cover__video-background.has-parallax{background-attachment:scroll}}@media (prefers-reduced-motion:reduce){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax,.wp-block-cover__image-background.has-parallax,video.wp-block-cover__video-background.has-parallax{background-attachment:scroll}}.wp-block-cover-image.is-repeated,.wp-block-cover.is-repeated,.wp-block-cover__image-background.is-repeated,video.wp-block-cover__video-background.is-repeated{background-repeat:repeat;background-size:auto}.wp-block-cover-image-text,.wp-block-cover-image-text a,.wp-block-cover-image-text a:active,.wp-block-cover-image-text a:focus,.wp-block-cover-image-text a:hover,.wp-block-cover-text,.wp-block-cover-text a,.wp-block-cover-text a:active,.wp-block-cover-text a:focus,.wp-block-cover-text a:hover,section.wp-block-cover-image h2,section.wp-block-cover-image h2 a,section.wp-block-cover-image h2 a:active,section.wp-block-cover-image h2 a:focus,section.wp-block-cover-image h2 a:hover{color:#fff}.wp-block-cover-image .wp-block-cover.has-left-content{justify-content:flex-start}.wp-block-cover-image .wp-block-cover.has-right-content{justify-content:flex-end}.wp-block-cover-image.has-left-content .wp-block-cover-image-text,.wp-block-cover.has-left-content .wp-block-cover-text,section.wp-block-cover-image.has-left-content>h2{margin-left:0;text-align:left}.wp-block-cover-image.has-right-content .wp-block-cover-image-text,.wp-block-cover.has-right-content .wp-block-cover-text,section.wp-block-cover-image.has-right-content>h2{margin-right:0;text-align:right}.wp-block-cover .wp-block-cover-text,.wp-block-cover-image .wp-block-cover-image-text,section.wp-block-cover-image>h2{font-size:2em;line-height:1.25;margin-bottom:0;max-width:840px;padding:.44em;text-align:center;z-index:1}:where(.wp-block-cover-image:not(.has-text-color)),:where(.wp-block-cover:not(.has-text-color)){color:#fff}:where(.wp-block-cover-image.is-light:not(.has-text-color)),:where(.wp-block-cover.is-light:not(.has-text-color)){color:#000}:root :where(.wp-block-cover h1:not(.has-text-color)),:root :where(.wp-block-cover h2:not(.has-text-color)),:root :where(.wp-block-cover h3:not(.has-text-color)),:root :where(.wp-block-cover h4:not(.has-text-color)),:root :where(.wp-block-cover h5:not(.has-text-color)),:root :where(.wp-block-cover h6:not(.has-text-color)),:root :where(.wp-block-cover p:not(.has-text-color)){color:inherit}body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__video-background{z-index:0}body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__embed-background{z-index:0}body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__image-background{z-index:0}body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__background,body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__gradient-background,body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)).has-background-dim:not(.has-background-gradient):before{z-index:1}body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container{z-index:1}.has-modal-open body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container{z-index:auto}.wp-block-details{box-sizing:border-box}.wp-block-details summary{cursor:pointer}.wp-block-embed.alignleft,.wp-block-embed.alignright,.wp-block[data-align=left]>[data-type="core/embed"],.wp-block[data-align=right]>[data-type="core/embed"]{max-width:360px;width:100%}.wp-block-embed.alignleft .wp-block-embed__wrapper,.wp-block-embed.alignright .wp-block-embed__wrapper,.wp-block[data-align=left]>[data-type="core/embed"] .wp-block-embed__wrapper,.wp-block[data-align=right]>[data-type="core/embed"] .wp-block-embed__wrapper{min-width:280px}.wp-block-cover .wp-block-embed{min-height:240px;min-width:320px}.wp-block-group.is-layout-flex .wp-block-embed{flex:1 1 0%;min-width:0}.wp-block-embed{overflow-wrap:break-word}.wp-block-embed :where(figcaption){margin-bottom:1em;margin-top:.5em}.wp-block-embed iframe{max-width:100%}.wp-block-embed__wrapper{position:relative}.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before{content:"";display:block;padding-top:50%}.wp-embed-responsive .wp-has-aspect-ratio iframe{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{padding-top:42.85%}.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{padding-top:50%}.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{padding-top:56.25%}.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{padding-top:75%}.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{padding-top:100%}.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before{padding-top:177.77%}.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before{padding-top:200%}.wp-block-file{box-sizing:border-box}.wp-block-file:not(.wp-element-button){font-size:.8em}.wp-block-file.aligncenter{text-align:center}.wp-block-file.alignright{text-align:right}.wp-block-file *+.wp-block-file__button{margin-left:.75em}:where(.wp-block-file){margin-bottom:1.5em}.wp-block-file__embed{margin-bottom:1em}:where(.wp-block-file__button){border-radius:2em;display:inline-block;padding:.5em 1em}:where(.wp-block-file__button):where(a):active,:where(.wp-block-file__button):where(a):focus,:where(.wp-block-file__button):where(a):hover,:where(.wp-block-file__button):where(a):visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none}.wp-block-form-input__label{display:flex;flex-direction:column;gap:.25em;margin-bottom:.5em;width:100%}.wp-block-form-input__label.is-label-inline{align-items:center;flex-direction:row;gap:.5em}.wp-block-form-input__label.is-label-inline .wp-block-form-input__label-content{margin-bottom:.5em}.wp-block-form-input__label:has(input[type=checkbox]){flex-direction:row;width:-moz-fit-content;width:fit-content}.wp-block-form-input__label:has(input[type=checkbox]) .wp-block-form-input__label-content{margin:0}.wp-block-form-input__label:has(.wp-block-form-input__label-content+input[type=checkbox]){flex-direction:row-reverse}.wp-block-form-input__label-content{width:-moz-fit-content;width:fit-content}:where(.wp-block-form-input__input){font-size:1em;margin-bottom:.5em;padding:0 .5em}:where(.wp-block-form-input__input)[type=date],:where(.wp-block-form-input__input)[type=datetime-local],:where(.wp-block-form-input__input)[type=datetime],:where(.wp-block-form-input__input)[type=email],:where(.wp-block-form-input__input)[type=month],:where(.wp-block-form-input__input)[type=number],:where(.wp-block-form-input__input)[type=password],:where(.wp-block-form-input__input)[type=search],:where(.wp-block-form-input__input)[type=tel],:where(.wp-block-form-input__input)[type=text],:where(.wp-block-form-input__input)[type=time],:where(.wp-block-form-input__input)[type=url],:where(.wp-block-form-input__input)[type=week]{border-style:solid;border-width:1px;line-height:2;min-height:2em}textarea.wp-block-form-input__input{min-height:10em}.blocks-gallery-grid:not(.has-nested-images),.wp-block-gallery:not(.has-nested-images){display:flex;flex-wrap:wrap;list-style-type:none;margin:0;padding:0}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item{display:flex;flex-direction:column;flex-grow:1;justify-content:center;margin:0 1em 1em 0;position:relative;width:calc(50% - 1em)}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n){margin-right:0}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure{align-items:flex-end;display:flex;height:100%;justify-content:flex-start;margin:0}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image img,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item img{display:block;height:auto;max-width:100%;width:auto}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption{background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent);bottom:0;box-sizing:border-box;color:#fff;font-size:.8em;margin:0;max-height:100%;overflow:auto;padding:3em .77em .7em;position:absolute;text-align:center;width:100%;z-index:2}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption img,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption img{display:inline}.blocks-gallery-grid:not(.has-nested-images) figcaption,.wp-block-gallery:not(.has-nested-images) figcaption{flex-grow:1}.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image img,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item img,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image img,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item img{flex:1;height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item{margin-right:0;width:100%}@media (min-width:600px){.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item{margin-right:1em;width:calc(33.33333% - .66667em)}.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item{margin-right:1em;width:calc(25% - .75em)}.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item{margin-right:1em;width:calc(20% - .8em)}.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item{margin-right:1em;width:calc(16.66667% - .83333em)}.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item{margin-right:1em;width:calc(14.28571% - .85714em)}.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item{margin-right:1em;width:calc(12.5% - .875em)}.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),.blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n),.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),.wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n){margin-right:0}}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child{margin-right:0}.blocks-gallery-grid:not(.has-nested-images).alignleft,.blocks-gallery-grid:not(.has-nested-images).alignright,.wp-block-gallery:not(.has-nested-images).alignleft,.wp-block-gallery:not(.has-nested-images).alignright{max-width:420px;width:100%}.blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure,.wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure{justify-content:center}.wp-block-gallery:not(.is-cropped) .blocks-gallery-item{align-self:flex-start}figure.wp-block-gallery.has-nested-images{align-items:normal}.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image){margin:0;width:calc(50% - var(--wp--style--unstable-gallery-gap, 16px)/2)}.wp-block-gallery.has-nested-images figure.wp-block-image{box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;max-width:100%;position:relative}.wp-block-gallery.has-nested-images figure.wp-block-image>a,.wp-block-gallery.has-nested-images figure.wp-block-image>div{flex-direction:column;flex-grow:1;margin:0}.wp-block-gallery.has-nested-images figure.wp-block-image img{display:block;height:auto;max-width:100%!important;width:auto}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption,.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before{bottom:0;left:0;max-height:100%;position:absolute;right:0}.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before{backdrop-filter:blur(3px);content:"";height:100%;-webkit-mask-image:linear-gradient(0deg,#000 20%,transparent);mask-image:linear-gradient(0deg,#000 20%,transparent);max-height:3em;pointer-events:none}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{box-sizing:border-box;color:#fff;font-size:13px;margin:0;overflow:auto;padding:1em;text-align:center;text-shadow:0 0 1.5px #000}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar{height:12px;width:12px}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-track{background-color:transparent}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-thumb{background-clip:padding-box;background-color:transparent;border:3px solid transparent;border-radius:8px}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within::-webkit-scrollbar-thumb,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus::-webkit-scrollbar-thumb,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover::-webkit-scrollbar-thumb{background-color:hsla(0,0%,100%,.8)}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{scrollbar-color:transparent transparent;scrollbar-gutter:stable both-edges;scrollbar-width:thin}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover{scrollbar-color:hsla(0,0%,100%,.8) transparent}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{will-change:transform}@media (hover:none){.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{scrollbar-color:hsla(0,0%,100%,.8) transparent}}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{background:linear-gradient(0deg,rgba(0,0,0,.4),transparent)}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption img{display:inline}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption a{color:inherit}.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border img{box-sizing:border-box}.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>a,.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>div,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>a,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>div{flex:1 1 auto}.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border figcaption,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption{background:none;color:inherit;flex:initial;margin:0;padding:10px 10px 9px;position:relative;text-shadow:none}.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border:before,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded:before{content:none}.wp-block-gallery.has-nested-images figcaption{flex-basis:100%;flex-grow:1;text-align:center}.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image){margin-bottom:auto;margin-top:0}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image){align-self:inherit}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone){display:flex}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img{flex:1 0 0%;height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image){width:100%}@media (min-width:600px){.wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image){width:calc(33.33333% - var(--wp--style--unstable-gallery-gap, 16px)*.66667)}.wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image){width:calc(25% - var(--wp--style--unstable-gallery-gap, 16px)*.75)}.wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image){width:calc(20% - var(--wp--style--unstable-gallery-gap, 16px)*.8)}.wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image){width:calc(16.66667% - var(--wp--style--unstable-gallery-gap, 16px)*.83333)}.wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image){width:calc(14.28571% - var(--wp--style--unstable-gallery-gap, 16px)*.85714)}.wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image){width:calc(12.5% - var(--wp--style--unstable-gallery-gap, 16px)*.875)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image){width:calc(33.33% - var(--wp--style--unstable-gallery-gap, 16px)*.66667)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image){width:calc(50% - var(--wp--style--unstable-gallery-gap, 16px)*.5)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child{width:100%}}.wp-block-gallery.has-nested-images.alignleft,.wp-block-gallery.has-nested-images.alignright{max-width:420px;width:100%}.wp-block-gallery.has-nested-images.aligncenter{justify-content:center}.wp-block-group{box-sizing:border-box}:where(.wp-block-group.wp-block-group-is-layout-constrained){position:relative}h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}.wp-block-icon{line-height:0}.wp-block-icon.aligncenter{display:flex;justify-content:center}.wp-block-icon svg{fill:currentColor;box-sizing:border-box}.wp-block-icon svg.is-flip-horizontal{transform:scaleX(-1)}.wp-block-icon svg.is-flip-vertical{transform:scaleY(-1)}.wp-block-icon svg.is-flip-horizontal.is-flip-vertical{transform:scaleX(-1) scaleY(-1)}:where(.wp-block-icon) svg{height:100%;width:100%}.wp-block-image>a,.wp-block-image>figure>a{display:inline-block}.wp-block-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}@media not (prefers-reduced-motion){.wp-block-image img.hide{visibility:hidden}.wp-block-image img.show{animation:show-content-image .4s}}.wp-block-image[style*=border-radius] img,.wp-block-image[style*=border-radius]>a{border-radius:inherit}.wp-block-image.has-custom-border img{box-sizing:border-box}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull>a,.wp-block-image.alignwide>a{width:100%}.wp-block-image.alignfull img,.wp-block-image.alignwide img{height:auto;width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright,.wp-block-image.aligncenter,.wp-block-image.alignleft,.wp-block-image.alignright{display:table}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption,.wp-block-image.aligncenter>figcaption,.wp-block-image.alignleft>figcaption,.wp-block-image.alignright>figcaption{caption-side:bottom;display:table-caption}.wp-block-image .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-image .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image :where(figcaption){margin-bottom:1em;margin-top:.5em}.wp-block-image.is-style-circle-mask img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.wp-block-image.is-style-circle-mask img{border-radius:0;-webkit-mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-mode:alpha;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain}}:root :where(.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img){border-radius:9999px}.wp-block-image figure{margin:0}.wp-lightbox-container{display:flex;flex-direction:column;position:relative}.wp-lightbox-container img{cursor:zoom-in}.wp-lightbox-container img:hover+button{opacity:1}.wp-lightbox-container button{align-items:center;backdrop-filter:blur(16px) saturate(180%);background-color:rgba(90,90,90,.25);border:none;border-radius:4px;cursor:zoom-in;display:flex;height:20px;justify-content:center;opacity:0;padding:0;position:absolute;right:16px;text-align:center;top:16px;width:20px;z-index:100}@media not (prefers-reduced-motion){.wp-lightbox-container button{transition:opacity .2s ease}}.wp-lightbox-container button:focus-visible{outline:3px auto rgba(90,90,90,.25);outline:3px auto -webkit-focus-ring-color;outline-offset:3px}.wp-lightbox-container button:hover{cursor:pointer;opacity:1}.wp-lightbox-container button:focus{opacity:1}.wp-lightbox-container button:focus,.wp-lightbox-container button:hover,.wp-lightbox-container button:not(:hover):not(:active):not(.has-background){background-color:rgba(90,90,90,.25);border:none}.wp-lightbox-overlay{box-sizing:border-box;cursor:zoom-out;height:100vh;left:0;overflow:hidden;position:fixed;top:0;visibility:hidden;width:100%;z-index:100000}.wp-lightbox-overlay .wp-lightbox-close-button{align-items:center;cursor:pointer;display:flex;font-family:inherit;gap:8px;justify-content:center;line-height:1;min-height:40px;min-width:40px;padding:0 4px;position:absolute;right:calc(env(safe-area-inset-right) + 16px);top:calc(env(safe-area-inset-top) + 16px);z-index:5000000}.wp-lightbox-overlay .wp-lightbox-close-button:focus,.wp-lightbox-overlay .wp-lightbox-close-button:hover,.wp-lightbox-overlay .wp-lightbox-close-button:not(:hover):not(:active):not(.has-background){background:none;border:none}.wp-lightbox-overlay .wp-lightbox-close-button:has(.wp-lightbox-close-text:not([hidden])) .wp-lightbox-close-icon svg{height:1em;width:1em}.wp-lightbox-overlay .wp-lightbox-close-icon svg{display:block}.wp-lightbox-overlay .wp-lightbox-navigation-button-next,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{align-items:center;bottom:16px;cursor:pointer;display:flex;font-family:inherit;gap:4px;justify-content:center;line-height:1;min-height:40px;min-width:40px;padding:0 8px;position:absolute;z-index:2000002}.wp-lightbox-overlay .wp-lightbox-navigation-button-next[hidden],.wp-lightbox-overlay .wp-lightbox-navigation-button-prev[hidden]{display:none}@media (min-width:960px){.wp-lightbox-overlay .wp-lightbox-navigation-button-next,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{bottom:50%;transform:translateY(-50%)}}.wp-lightbox-overlay .wp-lightbox-navigation-button-next:focus,.wp-lightbox-overlay .wp-lightbox-navigation-button-next:hover,.wp-lightbox-overlay .wp-lightbox-navigation-button-next:not(:hover):not(:active):not(.has-background),.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:focus,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:hover,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:not(:hover):not(:active):not(.has-background){background:none;border:none;padding:0 8px}.wp-lightbox-overlay .wp-lightbox-navigation-button-next:has(.wp-lightbox-navigation-text:not([hidden])) .wp-lightbox-navigation-icon svg,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:has(.wp-lightbox-navigation-text:not([hidden])) .wp-lightbox-navigation-icon svg{display:block;height:1.5em;width:1.5em}.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{left:calc(env(safe-area-inset-left) + 16px)}.wp-lightbox-overlay .wp-lightbox-navigation-button-next{right:calc(env(safe-area-inset-right) + 16px)}.wp-lightbox-overlay .wp-lightbox-navigation-icon svg{vertical-align:middle}.wp-lightbox-overlay .lightbox-image-container{height:var(--wp--lightbox-container-height);left:50%;overflow:hidden;position:absolute;top:50%;transform:translate(-50%,-50%);transform-origin:top left;width:var(--wp--lightbox-container-width);z-index:2000001}.wp-lightbox-overlay .wp-block-image{align-items:center;box-sizing:border-box;display:flex;height:100%;justify-content:center;margin:0;position:relative;transform-origin:0 0;width:100%;z-index:3000000}.wp-lightbox-overlay .wp-block-image img{height:var(--wp--lightbox-image-height);min-height:var(--wp--lightbox-image-height);min-width:var(--wp--lightbox-image-width);width:var(--wp--lightbox-image-width)}.wp-lightbox-overlay .wp-block-image figcaption{display:none}.wp-lightbox-overlay button{background:none;border:none}.wp-lightbox-overlay .scrim{background-color:#fff;height:100%;opacity:.9;position:absolute;width:100%;z-index:2000000}.wp-lightbox-overlay.active{visibility:visible}@media not (prefers-reduced-motion){.wp-lightbox-overlay.active{animation:turn-on-visibility .25s both}.wp-lightbox-overlay.active img{animation:turn-on-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active){animation:turn-off-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active) img{animation:turn-off-visibility .25s both}.wp-lightbox-overlay.zoom.active{animation:none;opacity:1;visibility:visible}.wp-lightbox-overlay.zoom.active .lightbox-image-container{animation:lightbox-zoom-in .4s}.wp-lightbox-overlay.zoom.active .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.active .scrim{animation:turn-on-visibility .4s forwards}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active){animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container{animation:lightbox-zoom-out .4s}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim{animation:turn-off-visibility .4s forwards}}@keyframes show-content-image{0%{visibility:hidden}99%{visibility:hidden}to{visibility:visible}}@keyframes turn-on-visibility{0%{opacity:0}to{opacity:1}}@keyframes turn-off-visibility{0%{opacity:1;visibility:visible}99%{opacity:0;visibility:visible}to{opacity:0;visibility:hidden}}@keyframes lightbox-zoom-in{0%{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}to{transform:translate(-50%,-50%) scale(1)}}@keyframes lightbox-zoom-out{0%{transform:translate(-50%,-50%) scale(1);visibility:visible}99%{visibility:visible}to{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}}:where(.wp-block-latest-comments){padding-left:0}ol.wp-block-latest-comments{box-sizing:border-box;margin-left:0}:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment)){line-height:1.1}:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment-excerpt p)){line-height:1.8}.has-dates :where(.wp-block-latest-comments:not([style*=line-height])),.has-excerpts :where(.wp-block-latest-comments:not([style*=line-height])){line-height:1.5}.wp-block-latest-comments__comment{list-style:none;margin-bottom:1em}.has-avatars .wp-block-latest-comments__comment{list-style:none;min-height:2.25em}.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta{margin-left:3.25em}.wp-block-latest-comments__comment-excerpt p{font-size:.875em;margin:.36em 0 1.4em}.wp-block-latest-comments__comment-date{display:block;font-size:.75em}.wp-block-latest-comments .avatar,.wp-block-latest-comments__comment-avatar{border-radius:1.5em;display:block;float:left;height:2.5em;margin-right:.75em;width:2.5em}.wp-block-latest-comments[class*=-font-size] a,.wp-block-latest-comments[style*=font-size] a{font-size:inherit}.wp-block-latest-posts{box-sizing:border-box}.wp-block-latest-posts.alignleft{margin-right:2em}.wp-block-latest-posts.alignright{margin-left:2em}.wp-block-latest-posts.wp-block-latest-posts__list{list-style:none}.wp-block-latest-posts.wp-block-latest-posts__list li{clear:both;overflow-wrap:break-word}.wp-block-latest-posts.is-grid:not(.is-layout-grid){display:flex;flex-wrap:wrap}.wp-block-latest-posts.is-grid:not(.is-layout-grid) li{margin:0 1.25em 1.25em 0;width:100%}@media (min-width:600px){.wp-block-latest-posts.columns-2:not(.is-layout-grid) li{width:calc(50% - .625em)}.wp-block-latest-posts.columns-2:not(.is-layout-grid) li:nth-child(2n){margin-right:0}.wp-block-latest-posts.columns-3:not(.is-layout-grid) li{width:calc(33.33333% - .83333em)}.wp-block-latest-posts.columns-3:not(.is-layout-grid) li:nth-child(3n){margin-right:0}.wp-block-latest-posts.columns-4:not(.is-layout-grid) li{width:calc(25% - .9375em)}.wp-block-latest-posts.columns-4:not(.is-layout-grid) li:nth-child(4n){margin-right:0}.wp-block-latest-posts.columns-5:not(.is-layout-grid) li{width:calc(20% - 1em)}.wp-block-latest-posts.columns-5:not(.is-layout-grid) li:nth-child(5n){margin-right:0}.wp-block-latest-posts.columns-6:not(.is-layout-grid) li{width:calc(16.66667% - 1.04167em)}.wp-block-latest-posts.columns-6:not(.is-layout-grid) li:nth-child(6n){margin-right:0}}@media (max-width:600px){.wp-block-latest-posts-is-layout-grid[class*=columns-]:not(.has-native-responsive-grid){grid-template-columns:1fr}}:root :where(.wp-block-latest-posts.is-grid){padding:0}:root :where(.wp-block-latest-posts.wp-block-latest-posts__list){padding-left:0}.wp-block-latest-posts__post-author,.wp-block-latest-posts__post-date{display:block;font-size:.8125em}.wp-block-latest-posts__post-excerpt,.wp-block-latest-posts__post-full-content{margin-bottom:1em;margin-top:.5em}.wp-block-latest-posts__featured-image a{display:inline-block}.wp-block-latest-posts__featured-image img{height:auto;max-width:100%;width:auto}.wp-block-latest-posts__featured-image.alignleft{float:left;margin-right:1em}.wp-block-latest-posts__featured-image.alignright{float:right;margin-left:1em}.wp-block-latest-posts__featured-image.aligncenter{margin-bottom:1em;text-align:center}ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}.wp-block-loginout{box-sizing:border-box}.wp-block-math{overflow-x:auto;overflow-y:hidden}.wp-block-media-text{box-sizing:border-box;direction:ltr;display:grid;grid-template-columns:50% 1fr;grid-template-rows:auto}.wp-block-media-text.has-media-on-the-right{grid-template-columns:1fr 50%}.wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__media{align-self:start}.wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__media,.wp-block-media-text>.wp-block-media-text__content,.wp-block-media-text>.wp-block-media-text__media{align-self:center}.wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__media{align-self:end}.wp-block-media-text>.wp-block-media-text__media{grid-column:1;grid-row:1;margin:0}.wp-block-media-text>.wp-block-media-text__content{direction:ltr;grid-column:2;grid-row:1;padding:0 8%;word-break:break-word}.wp-block-media-text.has-media-on-the-right>.wp-block-media-text__media{grid-column:2;grid-row:1}.wp-block-media-text.has-media-on-the-right>.wp-block-media-text__content{grid-column:1;grid-row:1}.wp-block-media-text__media a{display:block}.wp-block-media-text__media img,.wp-block-media-text__media video{height:auto;max-width:unset;vertical-align:middle;width:100%}.wp-block-media-text.is-image-fill>.wp-block-media-text__media{background-size:cover;height:100%;min-height:250px}.wp-block-media-text.is-image-fill>.wp-block-media-text__media>a{display:block;height:100%}.wp-block-media-text.is-image-fill>.wp-block-media-text__media img{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.wp-block-media-text.is-image-fill-element>.wp-block-media-text__media{height:100%;min-height:250px;position:relative}.wp-block-media-text.is-image-fill-element>.wp-block-media-text__media>a{display:block;height:100%}.wp-block-media-text.is-image-fill-element>.wp-block-media-text__media img{height:100%;-o-object-fit:cover;object-fit:cover;position:absolute;width:100%}@media (max-width:600px){.wp-block-media-text.is-stacked-on-mobile{grid-template-columns:100%!important}.wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__media{grid-column:1;grid-row:1}.wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content{grid-column:1;grid-row:2}}.wp-block-navigation{position:relative}.wp-block-navigation ul{margin-bottom:0;margin-left:0;margin-top:0;padding-left:0}.wp-block-navigation ul,.wp-block-navigation ul li{list-style:none}.wp-block-navigation .wp-block-navigation-item{align-items:center;display:flex;position:relative}.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty{display:none}.wp-block-navigation .wp-block-navigation-item__content{display:block;z-index:1}.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content{color:inherit}.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content,.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active,.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus{text-decoration:underline}.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content,.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active,.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus{text-decoration:line-through}.wp-block-navigation :where(a),.wp-block-navigation :where(a:active),.wp-block-navigation :where(a:focus){text-decoration:none}.wp-block-navigation .wp-block-navigation__submenu-icon{align-self:center;background-color:inherit;border:none;color:currentColor;display:inline-block;font-size:inherit;height:.6em;line-height:0;margin-left:.25em;padding:0;width:.6em}.wp-block-navigation .wp-block-navigation__submenu-icon svg{stroke:currentColor;display:inline-block;height:inherit;margin-top:.075em;width:inherit}.wp-block-navigation{--navigation-layout-justification-setting:flex-start;--navigation-layout-direction:row;--navigation-layout-wrap:wrap;--navigation-layout-justify:flex-start;--navigation-layout-align:center}.wp-block-navigation.is-vertical{--navigation-layout-direction:column;--navigation-layout-justify:initial;--navigation-layout-align:flex-start}.wp-block-navigation.no-wrap{--navigation-layout-wrap:nowrap}.wp-block-navigation.items-justified-center{--navigation-layout-justification-setting:center;--navigation-layout-justify:center}.wp-block-navigation.items-justified-center.is-vertical{--navigation-layout-align:center}.wp-block-navigation.items-justified-right{--navigation-layout-justification-setting:flex-end;--navigation-layout-justify:flex-end}.wp-block-navigation.items-justified-right.is-vertical{--navigation-layout-align:flex-end}.wp-block-navigation.items-justified-space-between{--navigation-layout-justification-setting:space-between;--navigation-layout-justify:space-between}:where(.wp-block-navigation) ul li{padding:0}.wp-block-navigation .has-child .wp-block-navigation__submenu-container{align-items:normal;background-color:inherit;color:inherit;display:flex;flex-direction:column;opacity:0;position:absolute;z-index:2}@media not (prefers-reduced-motion){.wp-block-navigation .has-child .wp-block-navigation__submenu-container{transition:opacity .1s linear}}.wp-block-navigation .has-child .wp-block-navigation__submenu-container{height:0;overflow:hidden;visibility:hidden;width:0}.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content{display:flex;flex-grow:1;padding:.5em 1em}.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content .wp-block-navigation__submenu-icon{margin-left:auto;margin-right:0}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content{margin:0}.wp-block-navigation .has-child .wp-block-navigation__submenu-container{left:-1px;top:100%}@media (min-width:782px){.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:100%;top:-1px}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before{background:transparent;content:"";display:block;height:100%;position:absolute;right:100%;width:.5em}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon{margin-right:.25em}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon svg{transform:rotate(-90deg)}}@media (hover:hover){.wp-block-navigation .has-child:not(.open-on-click):hover>.wp-block-navigation__submenu-container{height:auto;min-width:200px;opacity:1;overflow:visible;visibility:visible;width:auto}}.wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true]~.wp-block-navigation__submenu-container,.wp-block-navigation .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within>.wp-block-navigation__submenu-container{height:auto;min-width:200px;opacity:1;overflow:visible;visibility:visible;width:auto}.wp-block-navigation .has-child.open-always{align-items:var(--navigation-layout-align,initial);flex-direction:var(--navigation-layout-direction,initial);flex-wrap:var(--navigation-layout-wrap,wrap);gap:var(--wp--style--block-gap,2em)}.wp-block-navigation .has-child.open-always,.wp-block-navigation .has-child.open-always .wp-block-navigation-item{justify-content:var(--navigation-layout-justify,initial)}.wp-block-navigation .has-child.open-always .wp-block-navigation__submenu-container,.wp-block-navigation .has-child.open-always.wp-block-navigation-submenu{gap:var(--wp--style--block-gap,2em)}.wp-block-navigation .has-child.open-always .wp-block-navigation-item,.wp-block-navigation .has-child.open-always .wp-block-navigation__submenu-container,.wp-block-navigation .has-child.open-always.wp-block-navigation-submenu{padding-bottom:0;padding-top:0}.wp-block-navigation .has-child.open-always .wp-block-navigation__submenu-container{padding-left:var(--wp--style--block-gap,2em);padding-right:var(--wp--style--block-gap,2em)}.wp-block-navigation .has-child.open-always .wp-block-navigation__submenu-container .wp-block-navigation-item__content{padding:0}.wp-block-navigation .has-child.open-always .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content,.wp-block-navigation .has-child.open-always>.wp-block-navigation-item__content{flex-grow:0}.wp-block-navigation .has-child.open-always>.wp-block-navigation__submenu-container{background-color:transparent;border:none;color:inherit;flex-basis:100%;height:auto;opacity:1;overflow:visible;position:static;visibility:visible;width:auto}.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container{left:0;top:100%}@media (min-width:782px){.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:100%;top:0}}.wp-block-navigation-submenu{display:flex;position:relative}.wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg{stroke:currentColor}button.wp-block-navigation-item__content{background-color:transparent;border:none;color:currentColor;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-align:left;text-transform:inherit}.wp-block-navigation-submenu__toggle{cursor:pointer}.wp-block-navigation-submenu__toggle[aria-expanded=true]+.wp-block-navigation__submenu-icon>svg,.wp-block-navigation-submenu__toggle[aria-expanded=true]>svg{transform:rotate(180deg)}.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle{padding-left:0;padding-right:.85em}.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle+.wp-block-navigation__submenu-icon{margin-left:-.6em;pointer-events:none}.wp-block-navigation-item.open-on-click button.wp-block-navigation-item__content:not(.wp-block-navigation-submenu__toggle){padding:0}.wp-block-navigation .wp-block-page-list,.wp-block-navigation__container,.wp-block-navigation__responsive-close,.wp-block-navigation__responsive-container,.wp-block-navigation__responsive-container-content,.wp-block-navigation__responsive-dialog{gap:inherit}:where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button)){padding:.5em 1em}:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content){padding:.5em 1em}.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container{left:auto;right:0}.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:-1px;right:-1px}@media (min-width:782px){.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:auto;right:100%}}.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container{background-color:#fff;border:1px solid rgba(0,0,0,.15)}.wp-block-navigation.has-background .wp-block-navigation__submenu-container{background-color:inherit}.wp-block-navigation:not(.has-text-color) .wp-block-navigation__submenu-container{color:#000}.wp-block-navigation__container{align-items:var(--navigation-layout-align,initial);display:flex;flex-direction:var(--navigation-layout-direction,initial);flex-wrap:var(--navigation-layout-wrap,wrap);justify-content:var(--navigation-layout-justify,initial);list-style:none;margin:0;padding-left:0}.wp-block-navigation__container .is-responsive{display:none}.wp-block-navigation__container:only-child,.wp-block-page-list:only-child{flex-grow:1}@keyframes overlay-menu__fade-in-animation{0%{opacity:0;transform:translateY(.5em)}to{opacity:1;transform:translateY(0)}}.wp-block-navigation__responsive-container{bottom:0;display:none;left:0;position:fixed;right:0;top:0}.wp-block-navigation__responsive-container :where(.wp-block-navigation-item a){color:inherit}.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content{align-items:var(--navigation-layout-align,initial);display:flex;flex-direction:var(--navigation-layout-direction,initial);flex-wrap:var(--navigation-layout-wrap,wrap);justify-content:var(--navigation-layout-justify,initial)}.wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open){background-color:inherit!important;color:inherit!important}.wp-block-navigation__responsive-container.is-menu-open{background-color:inherit;display:flex;flex-direction:column}@media not (prefers-reduced-motion){.wp-block-navigation__responsive-container.is-menu-open{animation:overlay-menu__fade-in-animation .1s ease-out;animation-fill-mode:forwards}}.wp-block-navigation__responsive-container.is-menu-open:not(.disable-default-overlay){padding:clamp(1rem,var(--wp--style--root--padding-top),20rem) clamp(1rem,var(--wp--style--root--padding-right),20rem) clamp(1rem,var(--wp--style--root--padding-bottom),20rem) clamp(1rem,var(--wp--style--root--padding-left),20rem)}.wp-block-navigation__responsive-container.is-menu-open{overflow:auto;z-index:100000}.wp-block-navigation__responsive-container.is-menu-open:not(.disable-default-overlay) .wp-block-navigation__responsive-container-content{padding-top:calc(2rem + 24px)}.wp-block-navigation__responsive-container.is-menu-open:where(:not(.disable-default-overlay)) .wp-block-navigation__responsive-container-content{align-items:var(--navigation-layout-justification-setting,inherit);display:flex;flex-direction:column;flex-wrap:nowrap;overflow:visible}.wp-block-navigation__responsive-container.is-menu-open:where(:not(.disable-default-overlay)) .wp-block-navigation__responsive-container-content,.wp-block-navigation__responsive-container.is-menu-open:where(:not(.disable-default-overlay)) .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open:where(:not(.disable-default-overlay)) .wp-block-navigation__responsive-container-content .wp-block-page-list{justify-content:flex-start}.wp-block-navigation__responsive-container.is-menu-open:where(:not(.disable-default-overlay)) .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon{display:none}.wp-block-navigation__responsive-container.is-menu-open:where(:not(.disable-default-overlay)) .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container{border:none;height:auto;min-width:200px;opacity:1;overflow:initial;padding-left:2rem;padding-right:2rem;position:static;visibility:visible;width:auto}.wp-block-navigation__responsive-container.is-menu-open:where(:not(.disable-default-overlay)) .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open:where(:not(.disable-default-overlay)) .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container{gap:inherit}.wp-block-navigation__responsive-container.is-menu-open:where(:not(.disable-default-overlay)) .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container{padding-top:var(--wp--style--block-gap,2em)}.wp-block-navigation__responsive-container.is-menu-open:where(:not(.disable-default-overlay)) .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content{padding:0}.wp-block-navigation__responsive-container.is-menu-open:where(:not(.disable-default-overlay)) .wp-block-navigation__responsive-container-content .wp-block-navigation-item,.wp-block-navigation__responsive-container.is-menu-open:where(:not(.disable-default-overlay)) .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open:where(:not(.disable-default-overlay)) .wp-block-navigation__responsive-container-content .wp-block-page-list{align-items:var(--navigation-layout-justification-setting,initial);display:flex;flex-direction:column}.wp-block-navigation__responsive-container.is-menu-open:where(:not(.disable-default-overlay)) .wp-block-navigation-item,.wp-block-navigation__responsive-container.is-menu-open:where(:not(.disable-default-overlay)) .wp-block-navigation-item .wp-block-navigation__submenu-container,.wp-block-navigation__responsive-container.is-menu-open:where(:not(.disable-default-overlay)) .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open:where(:not(.disable-default-overlay)) .wp-block-page-list{background:transparent!important;color:inherit!important}.wp-block-navigation__responsive-container.is-menu-open:where(:not(.disable-default-overlay)) .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container{left:auto;right:auto}.wp-block-navigation__responsive-container.disable-default-overlay .wp-block-navigation__overlay-container{display:none;width:100%}.wp-block-navigation__responsive-container.disable-default-overlay .wp-block-navigation__responsive-close{max-width:none}.wp-block-navigation__responsive-container.disable-default-overlay.is-menu-open .wp-block-navigation__responsive-container-content>:not(.wp-block-navigation__overlay-container){display:none}.wp-block-navigation__responsive-container.disable-default-overlay.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__overlay-container{display:block}.wp-block-navigation__responsive-container.disable-default-overlay.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__overlay-container .wp-block-navigation__submenu-container{left:0;right:auto}@media (min-width:600px){.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open){background-color:inherit;display:block;position:relative;width:100%;z-index:auto}.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close{display:none}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container{left:0}}.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open:not(.disable-default-overlay){background-color:#fff}.wp-block-navigation:not(.has-text-color) .wp-block-navigation__responsive-container.is-menu-open:not(.disable-default-overlay){color:#000}.wp-block-navigation__toggle_button_label{font-size:1rem;font-weight:700}.wp-block-navigation__responsive-container-close,.wp-block-navigation__responsive-container-open{background:transparent;border:none;color:currentColor;cursor:pointer;margin:0;padding:0;text-transform:inherit;vertical-align:middle}.wp-block-navigation__responsive-container-close svg,.wp-block-navigation__responsive-container-open svg{fill:currentColor;display:block;height:24px;pointer-events:none;width:24px}.wp-block-navigation__responsive-container-open{display:flex}.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open{font-family:inherit;font-size:inherit;font-weight:inherit}@media (min-width:600px){.wp-block-navigation__responsive-container-open:not(.always-shown){display:none}}.wp-block-navigation__responsive-container-close{position:absolute;right:0;top:0;z-index:2}.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close{font-family:inherit;font-size:inherit;font-weight:inherit}.disable-default-overlay .wp-block-navigation__responsive-container-close{right:clamp(1rem,var(--wp--style--root--padding-left),20rem);top:clamp(1rem,var(--wp--style--root--padding-left),20rem)}.wp-block-navigation__responsive-close{width:100%}.has-modal-open .wp-block-navigation__responsive-close{margin-left:auto;margin-right:auto;max-width:var(--wp--style--global--wide-size,100%)}.wp-block-navigation__responsive-close:focus{outline:none}.is-menu-open .wp-block-navigation__responsive-close,.is-menu-open .wp-block-navigation__responsive-container-content,.is-menu-open .wp-block-navigation__responsive-dialog{box-sizing:border-box}.wp-block-navigation__responsive-dialog{position:relative}.has-modal-open .admin-bar .is-menu-open:where(:not(.disable-default-overlay)) .wp-block-navigation__responsive-dialog{margin-top:46px}@media (min-width:782px){.has-modal-open .admin-bar .is-menu-open:where(:not(.disable-default-overlay)) .wp-block-navigation__responsive-dialog{margin-top:32px}}html.has-modal-open{overflow:hidden}.wp-block-navigation .wp-block-navigation-item__label{overflow-wrap:break-word}.wp-block-navigation .wp-block-navigation-item__description{display:none}.link-ui-tools{outline:1px solid #f0f0f0;padding:8px}.link-ui-block-inserter{padding-top:8px}.link-ui-block-inserter__back{margin-left:8px;text-transform:uppercase}.wp-block-navigation-overlay-close{align-items:center;background:transparent;border:none;cursor:pointer;display:inline-flex;gap:.5em;justify-content:center;padding:0;text-decoration:none}.wp-block-navigation-overlay-close:focus{outline-offset:2px}.wp-block-navigation-overlay-close svg{fill:currentColor;display:block;flex-shrink:0;height:24px;width:24px}.wp-block-navigation-overlay-close .wp-block-navigation-overlay-close__text{align-items:center;display:inline-flex}.wp-block-navigation .wp-block-page-list{align-items:var(--navigation-layout-align,initial);background-color:inherit;display:flex;flex-direction:var(--navigation-layout-direction,initial);flex-wrap:var(--navigation-layout-wrap,wrap);justify-content:var(--navigation-layout-justify,initial)}.wp-block-navigation .wp-block-navigation-item{background-color:inherit}.wp-block-page-list{box-sizing:border-box}.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}.waveform-player{--wfp-accent:#71717a;--wfp-button-color:hsla(0,0%,100%,.9);--wfp-text-color:#fff;--wfp-text-secondary-color:hsla(0,0%,100%,.6);--wfp-btn-artwork-color:hsla(0,0%,100%,.9);--wfp-btn-artwork-scrim:rgba(0,0,0,.5);color:inherit;font-family:inherit;line-height:var(--waveform-line-height,1.4)}.waveform-player.waveform-theme-light{--wfp-button-color:rgba(0,0,0,.8);--wfp-text-color:#333;--wfp-text-secondary-color:rgba(0,0,0,.6)}.waveform-player *{box-sizing:border-box}.waveform-body{display:flex;flex-direction:column;gap:var(--waveform-body-gap,8px)}.waveform-track{gap:var(--waveform-track-gap,12px);position:relative}.waveform-btn,.waveform-track{align-items:center;display:flex}.waveform-btn{background:transparent;border:2px solid;border-radius:var(--wfp-btn-radius,50%);color:var(--wfp-button-color,inherit);cursor:pointer;flex-shrink:0;height:var(--wfp-btn-size,36px);justify-content:center;min-width:var(--wfp-btn-size,36px);opacity:.9;padding:0;transition:all .2s ease;width:var(--wfp-btn-size,36px)}.waveform-btn:hover:not(:disabled){opacity:1;transform:scale(1.05)}.waveform-btn-minimal{border:none;border-radius:0;height:calc(var(--wfp-btn-size, 36px)*1.1);min-width:calc(var(--wfp-btn-size, 36px)*1.1);opacity:.7;width:calc(var(--wfp-btn-size, 36px)*1.1)}.waveform-btn-minimal:hover:not(:disabled){opacity:1;transform:none}.waveform-btn.waveform-btn-minimal svg{height:calc(var(--wfp-btn-size, 36px)*.94);width:calc(var(--wfp-btn-size, 36px)*.94)}.waveform-btn:disabled{cursor:not-allowed;opacity:.3}.waveform-btn>*{align-items:center;display:flex;height:100%;justify-content:center;width:100%}.waveform-btn svg{fill:currentColor;display:block;height:calc(var(--wfp-btn-size, 36px)*.45);width:calc(var(--wfp-btn-size, 36px)*.45)}.waveform-btn-has-artwork{--wfp-btn-size:64px;--wfp-btn-radius:8px;border:none;color:var(--wfp-btn-artwork-color);overflow:hidden;position:relative}.waveform-btn>.waveform-btn-artwork{display:block;height:100%;inset:0;-o-object-fit:cover;object-fit:cover;pointer-events:none;position:absolute;width:100%;z-index:0}.waveform-btn-has-artwork:after{background:var(--wfp-btn-artwork-scrim);content:"";inset:0;pointer-events:none;position:absolute;z-index:1}.waveform-btn-has-artwork>:not(.waveform-btn-artwork){position:relative;z-index:2}.waveform-icon-play svg{margin-left:1px}.waveform-container{cursor:pointer;flex:1;min-height:60px;min-width:0;position:relative;width:100%}.waveform-container:focus-visible{outline:2px solid currentColor}.waveform-container canvas{display:block;height:100%;max-width:100%;position:relative;transition:opacity .3s ease;width:100%;z-index:1}.waveform-info{align-items:center;display:flex;font-size:13px;gap:8px;min-height:20px}.waveform-text{display:flex;flex:1;flex-direction:column;gap:2px;min-width:0}.waveform-title{color:var(--wfp-text-color);font-weight:500}.waveform-artist,.waveform-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.waveform-artist{color:var(--wfp-text-secondary-color);font-size:11px}.waveform-bpm,.waveform-time{color:var(--wfp-text-secondary-color);flex-shrink:0;font-size:11px;white-space:nowrap}.waveform-bpm{align-items:center;display:inline-flex;gap:4px}.waveform-loading{background:rgba(0,0,0,.102)}.waveform-error,.waveform-loading{inset:0;position:absolute;z-index:10}.waveform-error{align-items:center;background:rgba(0,0,0,.2);display:flex;justify-content:center}.waveform-error-text{font-size:12px;opacity:.7;padding:0 20px;text-align:center}.waveform-markers{inset:0;pointer-events:none;position:absolute;z-index:5}.waveform-marker{background:hsla(0,0%,100%,.502);border:none;cursor:pointer;height:100%;padding:0;pointer-events:all;position:absolute;top:0;transition:all .2s;width:2px}.waveform-marker:hover{width:4px;z-index:20}.waveform-marker.active{background:currentColor;width:4px;z-index:10}.waveform-marker-tooltip{background:rgba(0,0,0,.902);border-radius:4px;bottom:calc(100% + 4px);color:#fff;font-size:11px;left:50%;opacity:0;padding:4px 8px;pointer-events:none;position:absolute;transform:translate(-50%);transition:opacity .2s;white-space:nowrap;z-index:1000}.waveform-marker.show-label .waveform-marker-tooltip,.waveform-marker:hover .waveform-marker-tooltip{opacity:1}.waveform-hover-time{background:rgba(0,0,0,.902);border-radius:4px;bottom:calc(100% + 4px);color:#fff;font-size:11px;font-variant-numeric:tabular-nums;padding:3px 7px;transform:translate(-50%);transition:opacity .15s;white-space:nowrap;z-index:1000}.waveform-hover-time,.waveform-seek-handle{opacity:0;pointer-events:none;position:absolute}.waveform-seek-handle{background:#fff;border-radius:50%;box-shadow:0 1px 4px rgba(0,0,0,.349);height:11px;left:0;top:50%;transform:translate(-50%,-50%) scale(0);transition:opacity .12s ease,transform .12s ease;width:11px;z-index:6}.waveform-seek-handle.is-visible{opacity:1;transform:translate(-50%,-50%) scale(1)}.waveform-seek-handle.is-active{transform:translate(-50%,-50%) scale(1.25)}.waveform-btn:focus-visible{outline:2px solid currentColor;outline-offset:2px}.waveform-marker:focus-visible{outline:2px solid currentColor;outline-offset:1px;width:4px}.waveform-speed{flex-shrink:0;position:relative}.speed-btn{background:transparent;border:1px solid hsla(0,0%,100%,.2);border-radius:4px;color:inherit;cursor:pointer;font-size:11px;min-width:40px;padding:4px 8px;transition:all .2s}.speed-btn:hover{background:hsla(0,0%,100%,.051);border-color:hsla(0,0%,100%,.302)}.speed-value{font-weight:600}.speed-menu{background:rgba(0,0,0,.949);border:1px solid hsla(0,0%,100%,.2);border-radius:6px;bottom:100%;margin-bottom:4px;min-width:60px;padding:4px;position:absolute;right:0;z-index:100}.speed-option{background:transparent;border:none;border-radius:4px;color:hsla(0,0%,100%,.702);cursor:pointer;display:block;font-size:12px;padding:6px 12px;text-align:left;transition:all .2s;width:100%}.speed-option:hover{background:hsla(0,0%,100%,.102);color:#fff}.speed-option.active{background:hsla(0,0%,100%,.161);color:#fff;font-weight:600}.waveform-player.waveform-focused{border-radius:4px;outline:2px solid var(--wfp-accent);outline-offset:2px}.waveform-player:focus{outline:none}.waveform-player:focus-visible{outline:1px solid var(--wfp-accent);outline-offset:1px}.waveform-layout-preview .waveform-meta{display:none!important}.waveform-layout-preview .waveform-info{justify-content:center}.waveform-layout-preview .waveform-text{align-items:center;flex:0 1 auto;text-align:center}.waveform-player.waveform-focused{outline:none}.waveform-track.waveform-align-top{align-items:flex-start}.waveform-track.waveform-align-top .waveform-btn{margin-top:5px}.waveform-track.waveform-align-center{align-items:center}.waveform-track.waveform-align-bottom{align-items:flex-end}.waveform-track.waveform-align-bottom .waveform-btn{margin-bottom:5px}@media (max-width:480px){.waveform-btn{height:var(--wfp-btn-size,32px);min-width:var(--wfp-btn-size,32px);width:var(--wfp-btn-size,32px)}.waveform-container{min-height:50px}.waveform-info{font-size:12px}.waveform-artist,.waveform-bpm,.waveform-time{font-size:10px}}@media (prefers-reduced-motion:reduce){.waveform-player *,.waveform-player :after,.waveform-player :before{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}.wp-block-playlist{box-sizing:border-box}.wp-block-playlist .wp-block-playlist__waveform-player{margin:var(--wp--preset--spacing--20,.625em) 0;position:relative;width:100%}.wp-block-playlist .wp-block-playlist__waveform-player:focus-visible{outline:revert;outline-offset:revert}.wp-block-playlist .waveform-track{gap:0;height:100px}.wp-block-playlist .waveform-btn{background:currentColor;border:none;border-end-start-radius:.125rem;border-radius:0;border-start-start-radius:.125rem;height:100px;margin:0;min-width:100px;width:100px}.wp-block-playlist .waveform-btn:hover:not(:disabled){transform:none}.wp-block-playlist .waveform-btn svg{height:3rem;width:3rem}.wp-block-playlist .waveform-btn .waveform-icon-pause svg{height:2.625rem;width:2.625rem}.wp-block-playlist .waveform-player.has-play-button-artwork .waveform-btn{background-image:var(--wp--playlist--play-button-artwork);background-position:50%;background-size:cover;color:#fff}.wp-block-playlist .waveform-player.has-play-button-artwork .waveform-btn svg{filter:drop-shadow(0 1px 2px rgba(0,0,0,.45))}.wp-block-playlist .waveform-player.has-play-button-artwork .waveform-btn svg path{fill:#fff!important}.wp-block-playlist .waveform-track.waveform-align-bottom .waveform-btn{margin-bottom:0}.wp-block-playlist .waveform-btn:focus-visible,.wp-block-playlist .waveform-container:focus-visible{outline:revert;outline-offset:revert}.wp-block-playlist .waveform-artist{opacity:.7}.wp-block-playlist .waveform-artist,.wp-block-playlist .waveform-info,.wp-block-playlist .waveform-time,.wp-block-playlist .waveform-title{font-size:inherit}.wp-block-playlist .wp-block-playlist__tracklist{list-style:none;margin:0;padding-left:0}.wp-block-playlist .wp-block-playlist__tracklist.wp-block-playlist__tracklist-artist-is-hidden .wp-block-playlist-track__artist,.wp-block-playlist .wp-block-playlist__tracklist.wp-block-playlist__tracklist-is-hidden,.wp-block-playlist .wp-block-playlist__tracklist.wp-block-playlist__tracklist-length-is-hidden .wp-block-playlist-track__length{display:none}.wp-block-playlist .wp-block-playlist__tracklist.wp-block-playlist__tracklist-show-numbers{counter-reset:playlist-track}.wp-block-playlist-track:has([aria-current=true]){background-color:color-mix(in srgb,currentColor 10%,transparent)}.wp-block-playlist-track:hover{background-color:color-mix(in srgb,currentColor 15%,transparent)}.wp-block-playlist__tracklist-show-numbers .wp-block-playlist-track{counter-increment:playlist-track}.wp-block-playlist-track .wp-block-playlist-track__button{align-items:center;background-color:transparent;border:0;color:inherit;cursor:pointer;display:flex;font-family:inherit;font-size:inherit;outline-offset:2px;padding:var(--wp--preset--spacing--20,.5em);text-align:left;width:100%}.wp-block-playlist__tracklist-show-numbers .wp-block-playlist-track .wp-block-playlist-track__button:before{content:counter(playlist-track);font-size:.85em;margin-right:var(--wp--preset--spacing--20,.5em);opacity:.7;width:2ch}.wp-block-playlist-track .wp-block-playlist-track__button .wp-block-playlist-track__image{border:1px solid rgba(0,0,0,.08);box-sizing:border-box;flex:0 0 50px;height:50px;margin-right:var(--wp--preset--spacing--20,.5em);-o-object-fit:cover;object-fit:cover;width:50px}.wp-block-playlist-track .wp-block-playlist-track__button .wp-block-playlist-track__content{flex:1 1 0;min-width:0}.wp-block-playlist-track .wp-block-playlist-track__button .wp-block-playlist-track__title{display:block}.wp-block-playlist-track .wp-block-playlist-track__button .wp-block-playlist-track__artist{display:block;font-size:.85em;margin-top:.125em;opacity:.7}.wp-block-playlist-track .wp-block-playlist-track__button .wp-block-playlist-track__length{font-size:.85em;margin-left:auto;opacity:.7}.wp-block-post-author{box-sizing:border-box;display:flex;flex-wrap:wrap}.wp-block-post-author__byline{font-size:.5em;margin-bottom:0;margin-top:0;width:100%}.wp-block-post-author__avatar{margin-right:1em}.wp-block-post-author__bio{font-size:.7em;margin-bottom:.7em}.wp-block-post-author__content{flex-basis:0;flex-grow:1}.wp-block-post-author__name{margin:0}.wp-block-post-author-biography{box-sizing:border-box;white-space:pre-wrap}:where(.wp-block-post-comments-form input:not([type=submit])),:where(.wp-block-post-comments-form textarea){border:1px solid #949494;font-family:inherit;font-size:1em}:where(.wp-block-post-comments-form input:where(:not([type=submit]):not([type=checkbox]))),:where(.wp-block-post-comments-form textarea){padding:calc(.667em + 2px)}.wp-block-post-comments-form{box-sizing:border-box}.wp-block-post-comments-form[style*=font-weight] :where(.comment-reply-title){font-weight:inherit}.wp-block-post-comments-form[style*=font-family] :where(.comment-reply-title){font-family:inherit}.wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title),.wp-block-post-comments-form[style*=font-size] :where(.comment-reply-title){font-size:inherit}.wp-block-post-comments-form[style*=line-height] :where(.comment-reply-title){line-height:inherit}.wp-block-post-comments-form[style*=font-style] :where(.comment-reply-title){font-style:inherit}.wp-block-post-comments-form[style*=letter-spacing] :where(.comment-reply-title){letter-spacing:inherit}.wp-block-post-comments-form :where(input[type=submit]){box-shadow:none;cursor:pointer;display:inline-block;overflow-wrap:break-word;text-align:center}.wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]):not([type=hidden]),.wp-block-post-comments-form .comment-form textarea{box-sizing:border-box;display:block;width:100%}.wp-block-post-comments-form .comment-form-author label,.wp-block-post-comments-form .comment-form-email label,.wp-block-post-comments-form .comment-form-url label{display:block;margin-bottom:.25em}.wp-block-post-comments-form .comment-form-cookies-consent{display:flex;gap:.25em}.wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent{margin-top:.35em}.wp-block-post-comments-form .comment-reply-title{margin-bottom:0}.wp-block-post-comments-form .comment-reply-title :where(small){font-size:var(--wp--preset--font-size--medium,smaller);margin-left:.5em}.wp-block-post-comments-count{box-sizing:border-box}.wp-block-post-content{display:flow-root}.wp-block-post-comments-link,.wp-block-post-date{box-sizing:border-box}:where(.wp-block-post-excerpt){box-sizing:border-box;margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}.wp-block-post-excerpt__excerpt{margin-bottom:0;margin-top:0}.wp-block-post-excerpt__more-text{margin-bottom:0;margin-top:var(--wp--style--block-gap)}.wp-block-post-excerpt__more-link{display:inline-block}.wp-block-post-featured-image{margin-left:0;margin-right:0}.wp-block-post-featured-image a{display:block;height:100%}.wp-block-post-featured-image :where(img){box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom;width:100%}.wp-block-post-featured-image.alignfull img,.wp-block-post-featured-image.alignwide img{width:100%}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim{background-color:#000;inset:0;position:absolute}.wp-block-post-featured-image{position:relative}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-gradient{background-color:transparent}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-0{opacity:0}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-10{opacity:.1}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-20{opacity:.2}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-30{opacity:.3}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-40{opacity:.4}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-50{opacity:.5}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-60{opacity:.6}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-70{opacity:.7}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-80{opacity:.8}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-90{opacity:.9}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-100{opacity:1}.wp-block-post-featured-image:where(.alignleft,.alignright){width:100%}.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous{display:inline-block;margin-right:1ch}.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next{display:inline-block;margin-left:1ch}.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-post-navigation-link.has-text-align-left[style*="writing-mode: vertical-lr"],.wp-block-post-navigation-link.has-text-align-right[style*="writing-mode: vertical-rl"]{rotate:180deg}.wp-block-post-terms{box-sizing:border-box}.wp-block-post-terms .wp-block-post-terms__separator{white-space:pre-wrap}.wp-block-post-time-to-read,.wp-block-post-title{box-sizing:border-box}.wp-block-post-title{word-break:break-word}.wp-block-post-title :where(a){display:inline-block;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-decoration:inherit}.wp-block-post-author-name{box-sizing:border-box}.wp-block-preformatted{box-sizing:border-box;white-space:pre-wrap}:where(.wp-block-preformatted.has-background){padding:1.25em 2.375em}.wp-block-pullquote{box-sizing:border-box;margin:0 0 1em;overflow-wrap:break-word;padding:4em 0;text-align:center}.wp-block-pullquote blockquote,.wp-block-pullquote p{color:inherit}.wp-block-pullquote blockquote{margin:0}.wp-block-pullquote p{margin-top:0}.wp-block-pullquote p:last-child{margin-bottom:0}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{max-width:420px}.wp-block-pullquote cite,.wp-block-pullquote footer{position:relative}.wp-block-pullquote .has-text-color a{color:inherit}.wp-block-pullquote.has-text-align-left blockquote{text-align:left}.wp-block-pullquote.has-text-align-right blockquote{text-align:right}.wp-block-pullquote.has-text-align-center blockquote{text-align:center}.wp-block-pullquote.is-style-solid-color{border:none}.wp-block-pullquote.is-style-solid-color blockquote{margin-left:auto;margin-right:auto;max-width:60%}.wp-block-pullquote.is-style-solid-color blockquote p{font-size:2em;margin-bottom:0;margin-top:0}.wp-block-pullquote.is-style-solid-color blockquote cite{font-style:normal;text-transform:none}.wp-block-pullquote :where(cite){color:inherit;display:block}.wp-block-post-template{box-sizing:border-box;list-style:none;margin-bottom:0;margin-top:0;max-width:100%;padding:0}.wp-block-post-template.is-flex-container{display:flex;flex-direction:row;flex-wrap:wrap;gap:1.25em}.wp-block-post-template.is-flex-container>li{margin:0;width:100%}@media (min-width:600px){.wp-block-post-template.is-flex-container.is-flex-container.columns-2>li{width:calc(50% - .625em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-3>li{width:calc(33.33333% - .83333em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-4>li{width:calc(25% - .9375em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-5>li{width:calc(20% - 1em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-6>li{width:calc(16.66667% - 1.04167em)}}@media (max-width:600px){.wp-block-post-template-is-layout-grid[class*=columns-]:not(.has-native-responsive-grid){grid-template-columns:1fr}}.wp-block-post-template-is-layout-constrained>li>.alignright,.wp-block-post-template-is-layout-flow>li>.alignright{float:right;margin-inline-end:0;margin-inline-start:2em}.wp-block-post-template-is-layout-constrained>li>.alignleft,.wp-block-post-template-is-layout-flow>li>.alignleft{float:left;margin-inline-end:2em;margin-inline-start:0}.wp-block-post-template-is-layout-constrained>li>.aligncenter,.wp-block-post-template-is-layout-flow>li>.aligncenter{margin-inline-end:auto;margin-inline-start:auto}.wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-next:last-of-type{margin-inline-start:auto}.wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-previous:first-child{margin-inline-end:auto}.wp-block-query-pagination .wp-block-query-pagination-previous-arrow{display:inline-block;margin-right:1ch}.wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-query-pagination .wp-block-query-pagination-next-arrow{display:inline-block;margin-left:1ch}.wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-query-pagination.aligncenter{justify-content:center}.wp-block-query-title,.wp-block-query-total,.wp-block-quote{box-sizing:border-box}.wp-block-quote{overflow-wrap:break-word}.wp-block-quote.is-large:where(:not(.is-style-plain)),.wp-block-quote.is-style-large:where(:not(.is-style-plain)){margin-bottom:1em;padding:0 1em}.wp-block-quote.is-large:where(:not(.is-style-plain)) p,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) p{font-size:1.5em;font-style:italic;line-height:1.6}.wp-block-quote.is-large:where(:not(.is-style-plain)) cite,.wp-block-quote.is-large:where(:not(.is-style-plain)) footer,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer{font-size:1.125em;text-align:right}.wp-block-quote>cite{display:block}.wp-block-read-more{display:block;width:-moz-fit-content;width:fit-content}.wp-block-read-more:where(:not([style*=text-decoration])){text-decoration:none}.wp-block-read-more:where(:not([style*=text-decoration])):active,.wp-block-read-more:where(:not([style*=text-decoration])):focus{text-decoration:none}ul.wp-block-rss.alignleft{margin-right:2em}ul.wp-block-rss.alignright{margin-left:2em}ul.wp-block-rss.is-grid{display:flex;flex-wrap:wrap;padding:0}ul.wp-block-rss.is-grid li{margin:0 1em 1em 0;width:100%}@media (min-width:600px){ul.wp-block-rss.columns-2 li{width:calc(50% - 1em)}ul.wp-block-rss.columns-3 li{width:calc(33.33333% - 1em)}ul.wp-block-rss.columns-4 li{width:calc(25% - 1em)}ul.wp-block-rss.columns-5 li{width:calc(20% - 1em)}ul.wp-block-rss.columns-6 li{width:calc(16.66667% - 1em)}}.wp-block-rss__item-author,.wp-block-rss__item-publish-date{display:block;font-size:.8125em}.wp-block-rss{box-sizing:border-box;list-style:none;padding:0}.wp-block-search__button{margin-left:10px;word-break:normal}.wp-block-search__button.has-icon{line-height:0}.wp-block-search__button svg{fill:currentColor;height:1.25em;min-height:24px;min-width:24px;vertical-align:text-bottom;width:1.25em}:where(.wp-block-search__button){border:1px solid #ccc;padding:6px 10px}.wp-block-search__inside-wrapper{display:flex;flex:auto;flex-wrap:nowrap;max-width:100%}.wp-block-search__label{width:100%}.wp-block-search.wp-block-search__button-only .wp-block-search__button{box-sizing:border-box;display:flex;flex-shrink:0;justify-content:center;margin-left:0;max-width:100%}.wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper{min-width:0!important;transition-property:width}.wp-block-search.wp-block-search__button-only .wp-block-search__input{flex-basis:100%;transition-duration:.3s}.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden,.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__inside-wrapper{overflow:hidden}.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input{border-left-width:0!important;border-right-width:0!important;flex-basis:0;flex-grow:0;margin:0;min-width:0!important;padding-left:0!important;padding-right:0!important;width:0!important}:where(.wp-block-search__input){-webkit-appearance:initial;-moz-appearance:initial;appearance:none;border:1px solid #949494;flex-grow:1;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin-left:0;margin-right:0;min-width:3rem;padding:8px;text-decoration:unset!important;text-transform:inherit}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper){background-color:#fff;border:1px solid #949494;box-sizing:border-box;padding:4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input{border:none;border-radius:0;padding:0 4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus{outline:none}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button){padding:4px 8px}.wp-block-search.aligncenter .wp-block-search__inside-wrapper{margin:auto}.wp-block[data-align=right] .wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper{float:right}.wp-block-separator{border:none;border-top:2px solid}:root :where(.wp-block-separator.is-style-dots){height:auto;line-height:1;text-align:center}:root :where(.wp-block-separator.is-style-dots):before{color:currentColor;content:"···";font-family:serif;font-size:1.5em;letter-spacing:2em;padding-left:2em}.wp-block-separator.is-style-dots{background:none!important;border:none!important}.wp-block-site-logo{box-sizing:border-box;line-height:0}.wp-block-site-logo a{display:inline-block;line-height:0}.wp-block-site-logo.is-default-size img{height:auto;width:120px}.wp-block-site-logo img{height:auto;max-width:100%}.wp-block-site-logo a,.wp-block-site-logo img{border-radius:inherit}.wp-block-site-logo.aligncenter{margin-left:auto;margin-right:auto;text-align:center}:root :where(.wp-block-site-logo.is-style-rounded){border-radius:9999px}.wp-block-site-tagline,.wp-block-site-title{box-sizing:border-box}.wp-block-site-title :where(a){color:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-decoration:inherit}.wp-block-social-links{background:none;box-sizing:border-box;margin-left:0;padding-left:0;padding-right:0;text-indent:0}.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover{border-bottom:0;box-shadow:none;text-decoration:none}.wp-block-social-links .wp-social-link svg{height:1em;width:1em}.wp-block-social-links .wp-social-link span:not(.screen-reader-text){font-size:.65em;margin-left:.5em;margin-right:.5em}.wp-block-social-links.has-small-icon-size{font-size:16px}.wp-block-social-links,.wp-block-social-links.has-normal-icon-size{font-size:24px}.wp-block-social-links.has-large-icon-size{font-size:36px}.wp-block-social-links.has-huge-icon-size{font-size:48px}.wp-block-social-links.aligncenter{display:flex;justify-content:center}.wp-block-social-links.alignright{justify-content:flex-end}.wp-block-social-link{border-radius:9999px;display:block}@media not (prefers-reduced-motion){.wp-block-social-link{transition:transform .1s ease}}.wp-block-social-link{height:auto}.wp-block-social-link a{align-items:center;display:flex;line-height:0}.wp-block-social-link:hover{transform:scale(1.1)}.wp-block-social-links .wp-block-social-link.wp-social-link{display:inline-block;margin:0;padding:0}.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited{fill:currentColor;color:currentColor}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link{background-color:#f0f0f0;color:#444}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon{background-color:#f90;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance{background-color:#0757fe;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky{background-color:#0a7aff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-discord{background-color:#5865f2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy{background-color:#f45800;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook{background-color:#0866ff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr{background-color:#0461dd;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare{background-color:#e65678;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github{background-color:#24292d;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google{background-color:#ea4434;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar{background-color:#1d4fc4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram{background-color:#f00075;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin{background-color:#0d66c2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup{background-color:#f6405f;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest{background-color:#e60122;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket{background-color:#ef4155;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit{background-color:#ff4500;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype{background-color:#0478d7;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat{stroke:#000;background-color:#fefc00;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify{background-color:#1bd760;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram{background-color:#2aabee;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr{background-color:#011835;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch{background-color:#6440a4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk{background-color:#4680c2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp{background-color:#25d366;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp{background-color:#d32422;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube{background-color:red;color:#fff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link{background:none}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg{height:1.25em;width:1.25em}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon{color:#f90}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp{color:#1ea0c3}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance{color:#0757fe}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky{color:#0a7aff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen{color:#1e1f26}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart{color:#02e49b}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-discord{color:#5865f2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble{color:#e94c89}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox{color:#4280ff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy{color:#f45800}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook{color:#0866ff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr{color:#0461dd}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare{color:#e65678}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github{color:#24292d}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads{color:#382110}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google{color:#ea4434}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar{color:#1d4fc4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram{color:#f00075}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm{color:#e21b24}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin{color:#0d66c2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon{color:#3288d4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup{color:#f6405f}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest{color:#e60122}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket{color:#ef4155}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit{color:#ff4500}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype{color:#0478d7}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat{stroke:#000;color:#fff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud{color:#ff5600}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify{color:#1bd760}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram{color:#2aabee}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr{color:#011835}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch{color:#6440a4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter{color:#1da1f2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo{color:#1eb7ea}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk{color:#4680c2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp{color:#25d366}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress{color:#3499cd}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp{color:#d32422}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube{color:red}.wp-block-social-links.is-style-pill-shape .wp-social-link{width:auto}:root :where(.wp-block-social-links .wp-social-link a){padding:.25em}:root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a){padding:0}:root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a){padding-left:.6666666667em;padding-right:.6666666667em}.wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label{color:#000}.wp-block-spacer{clear:both}.wp-block-tag-cloud{box-sizing:border-box}.wp-block-tag-cloud.aligncenter{justify-content:center;text-align:center}.wp-block-tag-cloud a{display:inline-block;margin-right:5px}.wp-block-tag-cloud span{display:inline-block;margin-left:5px;text-decoration:none}:root :where(.wp-block-tag-cloud.is-style-outline){display:flex;flex-wrap:wrap;gap:1ch}:root :where(.wp-block-tag-cloud.is-style-outline a){border:1px solid;font-size:unset!important;margin-right:0;padding:1ch 2ch;text-decoration:none!important}:where(.wp-block-tab-list button){-moz-appearance:none;appearance:none;-webkit-appearance:none;background:none;border:none;box-sizing:border-box;color:inherit;cursor:pointer;display:block;flex-basis:inherit!important;flex-grow:inherit!important;font-family:inherit;font-size:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;padding:var(--wp--preset--spacing--20,.5em) var(--wp--preset--spacing--30,1em);position:relative;text-align:inherit;text-decoration:none;text-transform:inherit;width:-moz-max-content;width:max-content}:where(.wp-block-tab-list button)[aria-selected=true]:before{border-bottom:2px solid;bottom:0;content:"";left:0;pointer-events:none;position:absolute;width:100%}.wp-block-tab-panel:empty,.wp-block-tab-panel[hidden]{display:none!important}.wp-block-table{overflow-x:auto}.wp-block-table table{border-collapse:collapse;width:100%}.wp-block-table thead{border-bottom:3px solid}.wp-block-table tfoot{border-top:3px solid}.wp-block-table td,.wp-block-table th{border:1px solid;padding:.5em}.wp-block-table .has-fixed-layout{table-layout:fixed;width:100%}.wp-block-table .has-fixed-layout td,.wp-block-table .has-fixed-layout th{word-break:break-word}.wp-block-table.aligncenter,.wp-block-table.alignleft,.wp-block-table.alignright{display:table;width:auto}.wp-block-table.aligncenter td,.wp-block-table.aligncenter th,.wp-block-table.alignleft td,.wp-block-table.alignleft th,.wp-block-table.alignright td,.wp-block-table.alignright th{word-break:break-word}.wp-block-table .has-subtle-light-gray-background-color{background-color:#f3f4f5}.wp-block-table .has-subtle-pale-green-background-color{background-color:#e9fbe5}.wp-block-table .has-subtle-pale-blue-background-color{background-color:#e7f5fe}.wp-block-table .has-subtle-pale-pink-background-color{background-color:#fcf0ef}.wp-block-table.is-style-stripes{background-color:transparent;border-collapse:inherit;border-spacing:0}.wp-block-table.is-style-stripes tbody tr:nth-child(odd){background-color:#f0f0f0}.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd){background-color:#f3f4f5}.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd){background-color:#e9fbe5}.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd){background-color:#e7f5fe}.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd){background-color:#fcf0ef}.wp-block-table.is-style-stripes td,.wp-block-table.is-style-stripes th{border-color:transparent}.wp-block-table.is-style-stripes{border-bottom:1px solid #f0f0f0}.wp-block-table .has-border-color td,.wp-block-table .has-border-color th,.wp-block-table .has-border-color tr,.wp-block-table .has-border-color>*{border-color:inherit}.wp-block-table table[style*=border-top-color] tr:first-child,.wp-block-table table[style*=border-top-color] tr:first-child td,.wp-block-table table[style*=border-top-color] tr:first-child th,.wp-block-table table[style*=border-top-color]>*,.wp-block-table table[style*=border-top-color]>* td,.wp-block-table table[style*=border-top-color]>* th{border-top-color:inherit}.wp-block-table table[style*=border-top-color] tr:not(:first-child){border-top-color:currentColor}.wp-block-table table[style*=border-right-color] td:last-child,.wp-block-table table[style*=border-right-color] th,.wp-block-table table[style*=border-right-color] tr,.wp-block-table table[style*=border-right-color]>*{border-right-color:inherit}.wp-block-table table[style*=border-bottom-color] tr:last-child,.wp-block-table table[style*=border-bottom-color] tr:last-child td,.wp-block-table table[style*=border-bottom-color] tr:last-child th,.wp-block-table table[style*=border-bottom-color]>*,.wp-block-table table[style*=border-bottom-color]>* td,.wp-block-table table[style*=border-bottom-color]>* th{border-bottom-color:inherit}.wp-block-table table[style*=border-bottom-color] tr:not(:last-child){border-bottom-color:currentColor}.wp-block-table table[style*=border-left-color] td:first-child,.wp-block-table table[style*=border-left-color] th,.wp-block-table table[style*=border-left-color] tr,.wp-block-table table[style*=border-left-color]>*{border-left-color:inherit}.wp-block-table table[style*=border-style] td,.wp-block-table table[style*=border-style] th,.wp-block-table table[style*=border-style] tr,.wp-block-table table[style*=border-style]>*{border-style:inherit}.wp-block-table table[style*=border-width] td,.wp-block-table table[style*=border-width] th,.wp-block-table table[style*=border-width] tr,.wp-block-table table[style*=border-width]>*{border-style:inherit;border-width:inherit}:root :where(.wp-block-table-of-contents){box-sizing:border-box}.wp-block-tabs,.wp-block-term-count{box-sizing:border-box}:where(.wp-block-term-description){box-sizing:border-box;margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}.wp-block-term-description p{margin-bottom:0;margin-top:0}.wp-block-term-name{box-sizing:border-box}.wp-block-term-template{box-sizing:border-box;list-style:none;margin-bottom:0;margin-top:0;max-width:100%;padding:0}.wp-block-text-columns,.wp-block-text-columns.aligncenter{display:flex}.wp-block-text-columns .wp-block-column{margin:0 1em;padding:0}.wp-block-text-columns .wp-block-column:first-child{margin-left:0}.wp-block-text-columns .wp-block-column:last-child{margin-right:0}.wp-block-text-columns.columns-2 .wp-block-column{width:50%}.wp-block-text-columns.columns-3 .wp-block-column{width:33.3333333333%}.wp-block-text-columns.columns-4 .wp-block-column{width:25%}pre.wp-block-verse{box-sizing:border-box;min-width:1em;overflow:auto;white-space:pre-wrap;word-break:break-word}:where(pre.wp-block-verse){font-family:inherit}.wp-block-video{box-sizing:border-box}.wp-block-video video{height:auto;vertical-align:middle;width:100%}@supports (position:sticky){.wp-block-video [poster]{-o-object-fit:cover;object-fit:cover}}.wp-block-video.aligncenter{text-align:center}.wp-block-video :where(figcaption){margin-bottom:1em;margin-top:.5em}.editor-styles-wrapper,.entry-content{counter-reset:footnotes}a[data-fn].fn{counter-increment:footnotes;display:inline-flex;font-size:smaller;text-decoration:none;text-indent:-9999999px;vertical-align:super}a[data-fn].fn:after{content:"[" counter(footnotes) "]";float:left;text-indent:0}:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-break:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style^=border-color],[style*=";border-color"],[style*="; border-color"]){border-style:solid}html :where([style^=border-top-color],[style*=";border-top-color"],[style*="; border-top-color"]){border-top-style:solid}html :where([style^=border-right-color],[style*=";border-right-color"],[style*="; border-right-color"]){border-right-style:solid}html :where([style^=border-bottom-color],[style*=";border-bottom-color"],[style*="; border-bottom-color"]){border-bottom-style:solid}html :where([style^=border-left-color],[style*=";border-left-color"],[style*="; border-left-color"]){border-left-style:solid}html :where([style^=border-width],[style*=";border-width"],[style*="; border-width"]){border-style:solid}html :where([style^=border-top-width],[style*=";border-top-width"],[style*="; border-top-width"]){border-top-style:solid}html :where([style^=border-right-width],[style*=";border-right-width"],[style*="; border-right-width"]){border-right-style:solid}html :where([style^=border-bottom-width],[style*=";border-bottom-width"],[style*="; border-bottom-width"]){border-bottom-style:solid}html :where([style^=border-left-width],[style*=";border-left-width"],[style*="; border-left-width"]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
/*# sourceURL=/wp-includes/css/classic-themes.min.css */
table.dataTable td.dt-control{text-align:center;cursor:pointer}table.dataTable td.dt-control:before{height:1em;width:1em;margin-top:-9px;display:inline-block;color:white;border:.15em solid white;border-radius:1em;box-shadow:0 0 .2em #444;box-sizing:content-box;text-align:center;text-indent:0 !important;font-family:"Courier New",Courier,monospace;line-height:1em;content:"+";background-color:#31b131}table.dataTable tr.dt-hasChild td.dt-control:before{content:"-";background-color:#d33333}table.dataTable thead>tr>th.sorting,table.dataTable thead>tr>th.sorting_asc,table.dataTable thead>tr>th.sorting_desc,table.dataTable thead>tr>th.sorting_asc_disabled,table.dataTable thead>tr>th.sorting_desc_disabled,table.dataTable thead>tr>td.sorting,table.dataTable thead>tr>td.sorting_asc,table.dataTable thead>tr>td.sorting_desc,table.dataTable thead>tr>td.sorting_asc_disabled,table.dataTable thead>tr>td.sorting_desc_disabled{cursor:pointer;position:relative;padding-right:26px}table.dataTable thead>tr>th.sorting:before,table.dataTable thead>tr>th.sorting:after,table.dataTable thead>tr>th.sorting_asc:before,table.dataTable thead>tr>th.sorting_asc:after,table.dataTable thead>tr>th.sorting_desc:before,table.dataTable thead>tr>th.sorting_desc:after,table.dataTable thead>tr>th.sorting_asc_disabled:before,table.dataTable thead>tr>th.sorting_asc_disabled:after,table.dataTable thead>tr>th.sorting_desc_disabled:before,table.dataTable thead>tr>th.sorting_desc_disabled:after,table.dataTable thead>tr>td.sorting:before,table.dataTable thead>tr>td.sorting:after,table.dataTable thead>tr>td.sorting_asc:before,table.dataTable thead>tr>td.sorting_asc:after,table.dataTable thead>tr>td.sorting_desc:before,table.dataTable thead>tr>td.sorting_desc:after,table.dataTable thead>tr>td.sorting_asc_disabled:before,table.dataTable thead>tr>td.sorting_asc_disabled:after,table.dataTable thead>tr>td.sorting_desc_disabled:before,table.dataTable thead>tr>td.sorting_desc_disabled:after{position:absolute;display:block;opacity:.125;right:10px;line-height:9px;font-size:.9em}table.dataTable thead>tr>th.sorting:before,table.dataTable thead>tr>th.sorting_asc:before,table.dataTable thead>tr>th.sorting_desc:before,table.dataTable thead>tr>th.sorting_asc_disabled:before,table.dataTable thead>tr>th.sorting_desc_disabled:before,table.dataTable thead>tr>td.sorting:before,table.dataTable thead>tr>td.sorting_asc:before,table.dataTable thead>tr>td.sorting_desc:before,table.dataTable thead>tr>td.sorting_asc_disabled:before,table.dataTable thead>tr>td.sorting_desc_disabled:before{bottom:50%;content:"▴"}table.dataTable thead>tr>th.sorting:after,table.dataTable thead>tr>th.sorting_asc:after,table.dataTable thead>tr>th.sorting_desc:after,table.dataTable thead>tr>th.sorting_asc_disabled:after,table.dataTable thead>tr>th.sorting_desc_disabled:after,table.dataTable thead>tr>td.sorting:after,table.dataTable thead>tr>td.sorting_asc:after,table.dataTable thead>tr>td.sorting_desc:after,table.dataTable thead>tr>td.sorting_asc_disabled:after,table.dataTable thead>tr>td.sorting_desc_disabled:after{top:50%;content:"▾"}table.dataTable thead>tr>th.sorting_asc:before,table.dataTable thead>tr>th.sorting_desc:after,table.dataTable thead>tr>td.sorting_asc:before,table.dataTable thead>tr>td.sorting_desc:after{opacity:.6}table.dataTable thead>tr>th.sorting_desc_disabled:after,table.dataTable thead>tr>th.sorting_asc_disabled:before,table.dataTable thead>tr>td.sorting_desc_disabled:after,table.dataTable thead>tr>td.sorting_asc_disabled:before{display:none}table.dataTable thead>tr>th:active,table.dataTable thead>tr>td:active{outline:none}div.dataTables_scrollBody table.dataTable thead>tr>th:before,div.dataTables_scrollBody table.dataTable thead>tr>th:after,div.dataTables_scrollBody table.dataTable thead>tr>td:before,div.dataTables_scrollBody table.dataTable thead>tr>td:after{display:none}div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;margin-left:-100px;margin-top:-26px;text-align:center;padding:2px}div.dataTables_processing>div:last-child{position:relative;width:80px;height:15px;margin:1em auto}div.dataTables_processing>div:last-child>div{position:absolute;top:0;width:13px;height:13px;border-radius:50%;background:rgba(13, 110, 253, 0.9);animation-timing-function:cubic-bezier(0, 1, 1, 0)}div.dataTables_processing>div:last-child>div:nth-child(1){left:8px;animation:datatables-loader-1 .6s infinite}div.dataTables_processing>div:last-child>div:nth-child(2){left:8px;animation:datatables-loader-2 .6s infinite}div.dataTables_processing>div:last-child>div:nth-child(3){left:32px;animation:datatables-loader-2 .6s infinite}div.dataTables_processing>div:last-child>div:nth-child(4){left:56px;animation:datatables-loader-3 .6s infinite}@keyframes datatables-loader-1{0%{transform:scale(0)}100%{transform:scale(1)}}@keyframes datatables-loader-3{0%{transform:scale(1)}100%{transform:scale(0)}}@keyframes datatables-loader-2{0%{transform:translate(0, 0)}100%{transform:translate(24px, 0)}}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}table.dataTable th.dt-left,table.dataTable td.dt-left{text-align:left}table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty{text-align:center}table.dataTable th.dt-right,table.dataTable td.dt-right{text-align:right}table.dataTable th.dt-justify,table.dataTable td.dt-justify{text-align:justify}table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap{white-space:nowrap}table.dataTable thead th,table.dataTable thead td,table.dataTable tfoot th,table.dataTable tfoot td{text-align:left}table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left{text-align:left}table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center{text-align:center}table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right{text-align:right}table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify{text-align:justify}table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap{white-space:nowrap}table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left{text-align:left}table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center{text-align:center}table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right{text-align:right}table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify{text-align:justify}table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap{white-space:nowrap}table.dataTable{width:100%;margin:0 auto;clear:both;border-collapse:separate;border-spacing:0}table.dataTable thead th,table.dataTable tfoot th{font-weight:bold}table.dataTable thead th,table.dataTable thead td{padding:10px;border-bottom:1px solid rgba(0, 0, 0, 0.3)}table.dataTable thead th:active,table.dataTable thead td:active{outline:none}table.dataTable tfoot th,table.dataTable tfoot td{padding:10px 10px 6px 10px;border-top:1px solid rgba(0, 0, 0, 0.3)}table.dataTable tbody tr{background-color:transparent}table.dataTable tbody tr.selected>*{box-shadow:inset 0 0 0 9999px rgba(13, 110, 253, 0.9);color:white}table.dataTable tbody th,table.dataTable tbody td{padding:8px 10px}table.dataTable.row-border tbody th,table.dataTable.row-border tbody td,table.dataTable.display tbody th,table.dataTable.display tbody td{border-top:1px solid rgba(0, 0, 0, 0.15)}table.dataTable.row-border tbody tr:first-child th,table.dataTable.row-border tbody tr:first-child td,table.dataTable.display tbody tr:first-child th,table.dataTable.display tbody tr:first-child td{border-top:none}table.dataTable.cell-border tbody th,table.dataTable.cell-border tbody td{border-top:1px solid rgba(0, 0, 0, 0.15);border-right:1px solid rgba(0, 0, 0, 0.15)}table.dataTable.cell-border tbody tr th:first-child,table.dataTable.cell-border tbody tr td:first-child{border-left:1px solid rgba(0, 0, 0, 0.15)}table.dataTable.cell-border tbody tr:first-child th,table.dataTable.cell-border tbody tr:first-child td{border-top:none}table.dataTable.stripe>tbody>tr.odd>*,table.dataTable.display>tbody>tr.odd>*{box-shadow:inset 0 0 0 9999px rgba(0, 0, 0, 0.023)}table.dataTable.stripe>tbody>tr.odd.selected>*,table.dataTable.display>tbody>tr.odd.selected>*{box-shadow:inset 0 0 0 9999px rgba(13, 110, 253, 0.923)}table.dataTable.hover>tbody>tr:hover>*,table.dataTable.display>tbody>tr:hover>*{box-shadow:inset 0 0 0 9999px rgba(0, 0, 0, 0.035)}table.dataTable.hover>tbody>tr.selected:hover>*,table.dataTable.display>tbody>tr.selected:hover>*{box-shadow:inset 0 0 0 9999px rgba(13, 110, 253, 0.935)}table.dataTable.order-column>tbody tr>.sorting_1,table.dataTable.order-column>tbody tr>.sorting_2,table.dataTable.order-column>tbody tr>.sorting_3,table.dataTable.display>tbody tr>.sorting_1,table.dataTable.display>tbody tr>.sorting_2,table.dataTable.display>tbody tr>.sorting_3{box-shadow:inset 0 0 0 9999px rgba(0, 0, 0, 0.019)}table.dataTable.order-column>tbody tr.selected>.sorting_1,table.dataTable.order-column>tbody tr.selected>.sorting_2,table.dataTable.order-column>tbody tr.selected>.sorting_3,table.dataTable.display>tbody tr.selected>.sorting_1,table.dataTable.display>tbody tr.selected>.sorting_2,table.dataTable.display>tbody tr.selected>.sorting_3{box-shadow:inset 0 0 0 9999px rgba(13, 110, 253, 0.919)}table.dataTable.display>tbody>tr.odd>.sorting_1,table.dataTable.order-column.stripe>tbody>tr.odd>.sorting_1{box-shadow:inset 0 0 0 9999px rgba(0, 0, 0, 0.054)}table.dataTable.display>tbody>tr.odd>.sorting_2,table.dataTable.order-column.stripe>tbody>tr.odd>.sorting_2{box-shadow:inset 0 0 0 9999px rgba(0, 0, 0, 0.047)}table.dataTable.display>tbody>tr.odd>.sorting_3,table.dataTable.order-column.stripe>tbody>tr.odd>.sorting_3{box-shadow:inset 0 0 0 9999px rgba(0, 0, 0, 0.039)}table.dataTable.display>tbody>tr.odd.selected>.sorting_1,table.dataTable.order-column.stripe>tbody>tr.odd.selected>.sorting_1{box-shadow:inset 0 0 0 9999px rgba(13, 110, 253, 0.954)}table.dataTable.display>tbody>tr.odd.selected>.sorting_2,table.dataTable.order-column.stripe>tbody>tr.odd.selected>.sorting_2{box-shadow:inset 0 0 0 9999px rgba(13, 110, 253, 0.947)}table.dataTable.display>tbody>tr.odd.selected>.sorting_3,table.dataTable.order-column.stripe>tbody>tr.odd.selected>.sorting_3{box-shadow:inset 0 0 0 9999px rgba(13, 110, 253, 0.939)}table.dataTable.display>tbody>tr.even>.sorting_1,table.dataTable.order-column.stripe>tbody>tr.even>.sorting_1{box-shadow:inset 0 0 0 9999px rgba(0, 0, 0, 0.019)}table.dataTable.display>tbody>tr.even>.sorting_2,table.dataTable.order-column.stripe>tbody>tr.even>.sorting_2{box-shadow:inset 0 0 0 9999px rgba(0, 0, 0, 0.011)}table.dataTable.display>tbody>tr.even>.sorting_3,table.dataTable.order-column.stripe>tbody>tr.even>.sorting_3{box-shadow:inset 0 0 0 9999px rgba(0, 0, 0, 0.003)}table.dataTable.display>tbody>tr.even.selected>.sorting_1,table.dataTable.order-column.stripe>tbody>tr.even.selected>.sorting_1{box-shadow:inset 0 0 0 9999px rgba(13, 110, 253, 0.919)}table.dataTable.display>tbody>tr.even.selected>.sorting_2,table.dataTable.order-column.stripe>tbody>tr.even.selected>.sorting_2{box-shadow:inset 0 0 0 9999px rgba(13, 110, 253, 0.911)}table.dataTable.display>tbody>tr.even.selected>.sorting_3,table.dataTable.order-column.stripe>tbody>tr.even.selected>.sorting_3{box-shadow:inset 0 0 0 9999px rgba(13, 110, 253, 0.903)}table.dataTable.display tbody tr:hover>.sorting_1,table.dataTable.order-column.hover tbody tr:hover>.sorting_1{box-shadow:inset 0 0 0 9999px rgba(0, 0, 0, 0.082)}table.dataTable.display tbody tr:hover>.sorting_2,table.dataTable.order-column.hover tbody tr:hover>.sorting_2{box-shadow:inset 0 0 0 9999px rgba(0, 0, 0, 0.074)}table.dataTable.display tbody tr:hover>.sorting_3,table.dataTable.order-column.hover tbody tr:hover>.sorting_3{box-shadow:inset 0 0 0 9999px rgba(0, 0, 0, 0.062)}table.dataTable.display tbody tr:hover.selected>.sorting_1,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1{box-shadow:inset 0 0 0 9999px rgba(13, 110, 253, 0.982)}table.dataTable.display tbody tr:hover.selected>.sorting_2,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2{box-shadow:inset 0 0 0 9999px rgba(13, 110, 253, 0.974)}table.dataTable.display tbody tr:hover.selected>.sorting_3,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3{box-shadow:inset 0 0 0 9999px rgba(13, 110, 253, 0.962)}table.dataTable.no-footer{border-bottom:1px solid rgba(0, 0, 0, 0.3)}table.dataTable.compact thead th,table.dataTable.compact thead td{padding:4px 17px}table.dataTable.compact tfoot th,table.dataTable.compact tfoot td{padding:4px}table.dataTable.compact tbody th,table.dataTable.compact tbody td{padding:4px}table.dataTable th,table.dataTable td{box-sizing:content-box}.dataTables_wrapper{position:relative;clear:both}.dataTables_wrapper .dataTables_length{float:left}.dataTables_wrapper .dataTables_length select{border:1px solid #aaa;border-radius:3px;padding:5px;background-color:transparent;padding:4px}.dataTables_wrapper .dataTables_filter{float:right;text-align:right}.dataTables_wrapper .dataTables_filter input{border:1px solid #aaa;border-radius:3px;padding:5px;background-color:transparent;margin-left:3px}.dataTables_wrapper .dataTables_info{clear:both;float:left;padding-top:.755em}.dataTables_wrapper .dataTables_paginate{float:right;text-align:right;padding-top:.25em}.dataTables_wrapper .dataTables_paginate .paginate_button{box-sizing:border-box;display:inline-block;min-width:1.5em;padding:.5em 1em;margin-left:2px;text-align:center;text-decoration:none !important;cursor:pointer;color:#333 !important;border:1px solid transparent;border-radius:2px}.dataTables_wrapper .dataTables_paginate .paginate_button.current,.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{color:#333 !important;border:1px solid rgba(0, 0, 0, 0.3);background-color:rgba(230, 230, 230, 0.1);background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(230, 230, 230, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));background:-webkit-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);background:-moz-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);background:-ms-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);background:-o-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);background:linear-gradient(to bottom, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{cursor:default;color:#666 !important;border:1px solid transparent;background:transparent;box-shadow:none}.dataTables_wrapper .dataTables_paginate .paginate_button:hover{color:white !important;border:1px solid #111;background-color:#585858;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));background:-webkit-linear-gradient(top, #585858 0%, #111 100%);background:-moz-linear-gradient(top, #585858 0%, #111 100%);background:-ms-linear-gradient(top, #585858 0%, #111 100%);background:-o-linear-gradient(top, #585858 0%, #111 100%);background:linear-gradient(to bottom, #585858 0%, #111 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button:active{outline:none;background-color:#2b2b2b;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));background:-webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);box-shadow:inset 0 0 3px #111}.dataTables_wrapper .dataTables_paginate .ellipsis{padding:0 1em}.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter,.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_processing,.dataTables_wrapper .dataTables_paginate{color:#333}.dataTables_wrapper .dataTables_scroll{clear:both}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody{-webkit-overflow-scrolling:touch}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td{vertical-align:middle}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing{height:0;overflow:hidden;margin:0 !important;padding:0 !important}.dataTables_wrapper.no-footer .dataTables_scrollBody{border-bottom:1px solid rgba(0, 0, 0, 0.3)}.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,.dataTables_wrapper.no-footer div.dataTables_scrollBody>table{border-bottom:none}.dataTables_wrapper:after{visibility:hidden;display:block;content:"";clear:both;height:0}@media screen and (max-width: 767px){.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_paginate{float:none;text-align:center}.dataTables_wrapper .dataTables_paginate{margin-top:.5em}}@media screen and (max-width: 640px){.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter{float:none;text-align:center}.dataTables_wrapper .dataTables_filter{margin-top:.5em}}
table.dataTable.dtr-inline.collapsed>tbody>tr>td.child,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty{cursor:default !important}table.dataTable.dtr-inline.collapsed>tbody>tr>td.child:before,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child:before,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty:before{display:none !important}table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control,table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control{position:relative;padding-left:30px;cursor:pointer}table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before,table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before{top:50%;left:5px;height:1em;width:1em;margin-top:-9px;display:block;position:absolute;color:white;border:.15em solid white;border-radius:1em;box-shadow:0 0 .2em #444;box-sizing:content-box;text-align:center;text-indent:0 !important;font-family:"Courier New",Courier,monospace;line-height:1em;content:"+";background-color:#31b131}table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td.dtr-control:before,table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th.dtr-control:before{content:"-";background-color:#d33333}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td.dtr-control,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th.dtr-control{padding-left:27px}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td.dtr-control:before,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th.dtr-control:before{left:4px;height:14px;width:14px;border-radius:14px;line-height:14px;text-indent:3px}table.dataTable.dtr-column>tbody>tr>td.dtr-control,table.dataTable.dtr-column>tbody>tr>th.dtr-control,table.dataTable.dtr-column>tbody>tr>td.control,table.dataTable.dtr-column>tbody>tr>th.control{position:relative;cursor:pointer}table.dataTable.dtr-column>tbody>tr>td.dtr-control:before,table.dataTable.dtr-column>tbody>tr>th.dtr-control:before,table.dataTable.dtr-column>tbody>tr>td.control:before,table.dataTable.dtr-column>tbody>tr>th.control:before{top:50%;left:50%;height:.8em;width:.8em;margin-top:-0.5em;margin-left:-0.5em;display:block;position:absolute;color:white;border:.15em solid white;border-radius:1em;box-shadow:0 0 .2em #444;box-sizing:content-box;text-align:center;text-indent:0 !important;font-family:"Courier New",Courier,monospace;line-height:1em;content:"+";background-color:#31b131}table.dataTable.dtr-column>tbody>tr.parent td.dtr-control:before,table.dataTable.dtr-column>tbody>tr.parent th.dtr-control:before,table.dataTable.dtr-column>tbody>tr.parent td.control:before,table.dataTable.dtr-column>tbody>tr.parent th.control:before{content:"-";background-color:#d33333}table.dataTable>tbody>tr.child{padding:.5em 1em}table.dataTable>tbody>tr.child:hover{background:transparent !important}table.dataTable>tbody>tr.child ul.dtr-details{display:inline-block;list-style-type:none;margin:0;padding:0}table.dataTable>tbody>tr.child ul.dtr-details>li{border-bottom:1px solid #efefef;padding:.5em 0}table.dataTable>tbody>tr.child ul.dtr-details>li:first-child{padding-top:0}table.dataTable>tbody>tr.child ul.dtr-details>li:last-child{border-bottom:none}table.dataTable>tbody>tr.child span.dtr-title{display:inline-block;min-width:75px;font-weight:bold}div.dtr-modal{position:fixed;box-sizing:border-box;top:0;left:0;height:100%;width:100%;z-index:100;padding:10em 1em}div.dtr-modal div.dtr-modal-display{position:absolute;top:0;left:0;bottom:0;right:0;width:50%;height:50%;overflow:auto;margin:auto;z-index:102;overflow:auto;background-color:#f5f5f7;border:1px solid black;border-radius:.5em;box-shadow:0 12px 30px rgba(0, 0, 0, 0.6)}div.dtr-modal div.dtr-modal-content{position:relative;padding:1em}div.dtr-modal div.dtr-modal-close{position:absolute;top:6px;right:6px;width:22px;height:22px;border:1px solid #eaeaea;background-color:#f9f9f9;text-align:center;border-radius:3px;cursor:pointer;z-index:12}div.dtr-modal div.dtr-modal-close:hover{background-color:#eaeaea}div.dtr-modal div.dtr-modal-background{position:fixed;top:0;left:0;right:0;bottom:0;z-index:101;background:rgba(0, 0, 0, 0.6)}@media screen and (max-width: 767px){div.dtr-modal div.dtr-modal-display{width:95%}}

:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--: #444;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}.wp-block-button{--wp--preset--dimension--25: 25%;--wp--preset--dimension--50: 50%;--wp--preset--dimension--75: 75%;--wp--preset--dimension--100: 100%;}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has--color{color: var(--wp--preset--color--) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has--background-color{background-color: var(--wp--preset--color--) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has--border-color{border-color: var(--wp--preset--color--) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:root :where(.wp-block-icon svg){width: 24px;}
:where(.wp-block-gallery.is-layout-flex){gap: var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}:where(.wp-block-gallery.is-layout-grid){gap: var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}
:where(.wp-block-latest-posts.is-layout-flex){gap: 1.25em;}:where(.wp-block-latest-posts.is-layout-grid){gap: 1.25em;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
/*# sourceURL=global-styles-inline-css */
.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
	word-break: normal !important;
}

.wpcf7 .hidden-fields-container {
	display: none;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 [inert] {
	opacity: 0.5;
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection > output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection > output[hidden] {
	display: none;
}
@font-face{ font-display:swap;
    font-family: "flaticon_the_post_grid";
    src: url("/wp-content/plugins/the-post-grid/assets/vendor/flaticon/flaticon_the_post_grid.ttf?dd949169929eab44f4d2133b01c9e438") format("truetype"),
url("/wp-content/plugins/the-post-grid/assets/vendor/flaticon/flaticon_the_post_grid.woff?dd949169929eab44f4d2133b01c9e438") format("woff"),
url("/wp-content/plugins/the-post-grid/assets/vendor/flaticon/flaticon_the_post_grid.woff2?dd949169929eab44f4d2133b01c9e438") format("woff2"),
url("/wp-content/plugins/the-post-grid/assets/vendor/flaticon/flaticon_the_post_grid.eot?dd949169929eab44f4d2133b01c9e438#iefix") format("embedded-opentype"),
url("/wp-content/plugins/the-post-grid/assets/vendor/flaticon/flaticon_the_post_grid.svg?dd949169929eab44f4d2133b01c9e438#flaticon_the_post_grid") format("svg");
 }

[class^="tpg-flaticon-"]:before,
[class*=" tpg-flaticon-"]:before {
    font-family: flaticon_the_post_grid !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tpg-flaticon-user:before {
    content: "\f101";
}
.tpg-flaticon-calendar:before {
    content: "\f102";
}
.tpg-flaticon-tag:before {
    content: "\f103";
}
.tpg-flaticon-folder:before {
    content: "\f104";
}
.tpg-flaticon-message:before {
    content: "\f105";
}
.tpg-flaticon-chat:before {
    content: "\f106";
}
.tpg-flaticon-visible:before {
    content: "\f107";
}
.tpg-flaticon-left:before {
    content: "\f108";
}
.tpg-flaticon-right:before {
    content: "\f109";
}
.tpg-flaticon-right-arrow:before {
    content: "\f10a";
}
.tpg-flaticon-right-1:before {
    content: "\f10b";
}
.tpg-flaticon-left-arrow:before {
    content: "\f10c";
}
.tpg-flaticon-pinterest:before {
    content: "\f10d";
}
.tpg-flaticon-mail:before {
    content: "\f10e";
}
.tpg-flaticon-email:before {
    content: "\f10f";
}
.tpg-flaticon-add:before {
    content: "\f110";
}
.tpg-flaticon-plus:before {
    content: "\f111";
}
.tpg-flaticon-facebook:before {
    content: "\f112";
}
.tpg-flaticon-twitter-x:before {
    content: "\f113";
}
.tpg-flaticon-instagram:before {
    content: "\f114";
}
.tpg-flaticon-youtube:before {
    content: "\f115";
}
.tpg-flaticon-google-plus:before {
    content: "\f116";
}
.tpg-flaticon-reddit:before {
    content: "\f117";
}
.tpg-flaticon-linkedin:before {
    content: "\f118";
}
#tpg-MyAccount-wrap{background-color:#eff3f4;border-radius:10px;display:flex;margin:50px auto;max-width:1400px;overflow:hidden;width:96%}@media (max-width:767px){#tpg-MyAccount-wrap{display:block}#tpg-MyAccount-wrap .myaccount-title-wrapper{margin-top:45px}}#tpg-MyAccount-wrap .myaccount-title-wrapper .title{margin-bottom:0}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation{flex:0 0 300px}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation .myaccount-navbar{background:#fff;border-radius:10px;height:100%;padding:20px}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul{list-style:none;margin:0;padding:0}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul li{border-radius:6px;margin-bottom:10px;overflow:hidden;position:relative}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul li:before{background:transparent;border-radius:30px;content:"";height:35px;left:-6px;position:absolute;top:50%;transform:translateY(-50%);transition:.4s;width:5px}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul li.is-active:before,#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul li:hover:before{background:var(--tpg-primary-color);left:-2.5px}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul li.is-active svg path,#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul li:hover svg path{fill:var(--tpg-primary-color)}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul li.is-active a,#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul li:hover a{background:#e4f1ff}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul li.my-post.is-active svg path:first-child,#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul li.my-post:hover svg path:first-child{opacity:.5}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul li.submit-post-button{box-shadow:0 1px 10px rgba(10,39,73,.26)}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul li.submit-post-button a{align-items:center;background:var(--tpg-primary-color);color:#fff;display:flex;justify-content:center;position:relative;z-index:1}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul li.submit-post-button a:before{background:rgba(0,0,0,.1);content:"";height:100%;left:auto;position:absolute;right:0;top:0;transition:.4s;width:0;z-index:-1}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul li.submit-post-button a:hover:before{left:0;right:auto;width:100%}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul li.submit-post-button a:hover{box-shadow:0 1px 10px rgba(10,39,73,.5)}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul li.submit-post-button a:hover svg path{fill:#fff}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul li.submit-post-button a svg{font-size:16px}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul li a{align-items:center;background:#f2f7fd;border-radius:6px;color:#212121;display:flex;font-size:15px;gap:8px;padding:10px 17px}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation ul li a svg{font-size:20px}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation .user-info{align-items:center;border-radius:10px;display:flex;flex-direction:row;gap:16px;margin-bottom:15px;padding:20px 10px}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation .user-info .user-avatar{flex:0 0 60px}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation .user-info .user-bio{flex:1}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation .user-info .user-name{font-size:18px;line-height:1;margin-bottom:0;margin-top:-3px}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation .user-info .user-email{display:block;font-size:14px}#tpg-MyAccount-wrap .rtcl-MyAccount-navigation .user-info .user-avatar img{border-radius:50%;height:60px;-o-object-fit:cover;object-fit:cover;width:60px}#tpg-MyAccount-wrap .tpg-MyAccount-content{flex:1}@media (min-width:768px){#tpg-MyAccount-wrap .tpg-MyAccount-content{padding:30px}}#tpg-MyAccount-wrap .tpg-MyAccount-content #tpg-postbox{background:#fff;border-radius:10px;padding:30px}#tpg-MyAccount-wrap .tpg-MyAccount-content .user-info-action{display:flex;gap:20px;margin-top:20px}#tpg-MyAccount-wrap .tpg-MyAccount-content .user-info-action .action{align-items:center;background:hsla(0,0%,100%,.659);border-radius:10px;display:flex;flex:1;gap:15px;padding:28px}#tpg-MyAccount-wrap .tpg-MyAccount-content .user-info-action .action .info{display:flex;flex-direction:column}#tpg-MyAccount-wrap .tpg-MyAccount-content .user-info-action .action .label{color:#5e6c7e;font-size:15px;margin-bottom:5px}#tpg-MyAccount-wrap .tpg-MyAccount-content .user-info-action .action .count{color:#0c1827;font-size:30px;font-weight:900}#tpg-MyAccount-wrap .tpg-MyAccount-content .user-info-action .action svg{font-size:46px}#tpg-MyAccount-wrap .latest-post-wrapper{margin-top:20px}#tpg-MyAccount-wrap .latest-post-wrapper .post-item{background:#fff;border-radius:10px;display:flex;gap:15px;margin-bottom:30px;padding:20px}@media (max-width:991px){#tpg-MyAccount-wrap .latest-post-wrapper .post-item{flex-direction:column}}#tpg-MyAccount-wrap .latest-post-wrapper .post-image{background:#999;border-radius:5px;flex:0 0 250px;height:190px;overflow:hidden;position:relative}#tpg-MyAccount-wrap .latest-post-wrapper .post-image img{height:100%;-o-object-fit:cover;object-fit:cover;width:100%}#tpg-MyAccount-wrap .latest-post-wrapper .post-content{display:flex;flex:1;flex-direction:column;justify-content:center;position:relative}@media (min-width:992px){#tpg-MyAccount-wrap .latest-post-wrapper .post-content{padding-right:120px}}#tpg-MyAccount-wrap .latest-post-wrapper .post-meta{-moz-column-gap:30px;column-gap:30px;display:flex;flex-wrap:wrap;margin-bottom:15px;padding-top:15px}#tpg-MyAccount-wrap .latest-post-wrapper .post-meta span{align-items:center;display:inline-flex;gap:5px}#tpg-MyAccount-wrap .latest-post-wrapper .post-meta span a{color:inherit}#tpg-MyAccount-wrap .latest-post-wrapper .post-meta span a:hover{color:var(--tpg-primary-color)}#tpg-MyAccount-wrap .latest-post-wrapper .status{align-items:center;background-color:#cfebf5;border-radius:3px;color:#09c;display:inline-flex;font-size:12px;font-weight:500;height:26px;justify-content:center;left:5px;line-height:1;padding:0 10px;position:absolute;text-transform:uppercase;top:5px;z-index:15}#tpg-MyAccount-wrap .latest-post-wrapper .status.publish{background-color:var(--tpg-primary-color);color:#fff}#tpg-MyAccount-wrap .latest-post-wrapper .status.draft{background-color:#13b1f5;color:#fff}#tpg-MyAccount-wrap .latest-post-wrapper .status.pending{background-color:#f7a300;color:#fff}#tpg-MyAccount-wrap .latest-post-wrapper .post-item .post-content .post-title{font-size:20px;line-height:30px;margin-bottom:5px;margin-top:-4px}#tpg-MyAccount-wrap .latest-post-wrapper .post-item .post-content .post-title a{color:#212121}#tpg-MyAccount-wrap .latest-post-wrapper .post-item .post-content .post-title a:hover{color:var(--tpg-primary-color)}#tpg-MyAccount-wrap .post-btn-action{-moz-column-gap:10px;column-gap:10px;display:flex;flex-direction:row}@media (min-width:992px){#tpg-MyAccount-wrap .post-btn-action.right-align{align-items:flex-end;flex-direction:column;position:absolute;right:20px;text-align:right;top:50%;transform:translateY(-50%)}}#tpg-MyAccount-wrap .post-btn-action svg path{transition:.4s}#tpg-MyAccount-wrap .post-btn-action .btn{align-items:center;background:#e6ecf3;border-radius:4px;color:#212121;display:inline-flex;font-size:14px;gap:6px;height:32px;line-height:32px;margin:5px 0;padding:0 15px}#tpg-MyAccount-wrap .post-btn-action .edit-btn:hover{background:var(--tpg-primary-color);color:#fff}#tpg-MyAccount-wrap .post-btn-action .edit-btn:hover svg path{fill:#fff}#tpg-MyAccount-wrap .post-btn-action .delete-btn{background:#f9e8e8;color:#f11212}#tpg-MyAccount-wrap .post-btn-action .delete-btn:hover{background:#f11212;color:#fff}#tpg-MyAccount-wrap .post-btn-action .delete-btn:hover svg path{fill:#fff}#tpg-MyAccount-wrap .post-view-box .featured-image-container{margin-bottom:30px}#tpg-MyAccount-wrap .post-view-box .post-meta{-moz-column-gap:10px;column-gap:10px;display:flex;margin-bottom:15px}#tpg-MyAccount-wrap .post-view-box .post-meta a{align-items:center;border:1px solid #ddd;border-radius:4px;color:#222;display:inline-flex;font-size:15px;justify-content:center;line-height:1;padding:0 10px}#tpg-MyAccount-wrap .post-view-box .post-meta .label{font-weight:700}#tpg-MyAccount-wrap .post-view-box .post-excerpt{border:1px solid #ddd;border-radius:5px;padding:15px 26px}#tpg-MyAccount-wrap .post-view-box .label-title{border-bottom:1px solid #ddd;font-size:16px;margin-bottom:5px}#tpg-MyAccount-wrap .post-view-box .post-content,#tpg-MyAccount-wrap .post-view-box .post-excerpt{margin-bottom:30px}#tpg-MyAccount-wrap svg{height:1em;transition:.4s;width:1em}#tpg-MyAccount-wrap .select2-container--default .select2-selection--multiple .select2-selection__choice__remove{border-right:none;left:2px}#tpg-MyAccount-wrap .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{background:none;color:red}#tpg-MyAccount-wrap .select2-container--default .select2-selection--multiple .select2-selection__rendered li{padding-right:6px!important}.tpg-postbox{max-width:100%!important}.tpg-postbox .new-post input{font-size:16px}.tpg-postbox .new-post input[type=text],.tpg-postbox .new-post select,.tpg-postbox .new-post textarea{background:#f5f9fe;border:1px solid #dfe8f3;border-radius:5px;box-shadow:none;color:#495057;display:block;font-size:16px;height:50px;outline:none;padding:10px 15px;width:100%}.tpg-postbox .new-post select[multiple]{height:130px}.select2-container .select2-search--inline .select2-search__field{min-height:40px}.tpg-postbox .new-post textarea{height:70px}.tpg-postbox .new-post input[type=text]:focus{border-color:rgba(0,0,0,.2)}.tpg-postbox .new-post label{align-items:center;color:#495057;display:inline-flex;font-size:16px;font-weight:700;gap:8px;justify-content:center;margin-bottom:.5rem}.tpg-postbox .new-post .wp-editor-area{font-family:ZCOOL XiaoWei,serif!important;font-size:16px!important}.tpg-postbox .new-post .mce-edit-area.mce-container.mce-panel.mce-stack-layout-item{font-size:16px}.tpg-postbox .new-post .mce-btn button{border-radius:0}.tpg-postbox .new-post .mce-btn button:hover{background:#ccc}.tpg-postbox .new-post .mce-toolbar .mce-btn-group .mce-btn:focus,.tpg-postbox .new-post .mce-toolbar .mce-btn-group .mce-btn:hover,.tpg-postbox .new-post .qt-dfw:focus,.tpg-postbox .new-post .qt-dfw:hover{border-color:transparent}.tpg-postbox .new-post .wp-core-ui .quicktags-toolbar input.button.button-small{margin:1px}.tpg-postbox .new-post .wp-core-ui .button.button-small{padding:0 7px 1px}.tpg-postbox .new-post .wp-core-ui .wp-media-buttons .insert-media{background:#f7f7f7;border-color:rgba(0,0,0,.08);box-shadow:0 1px 0 rgba(0,0,0,.08);color:#495057;font-weight:400;height:36px;margin-bottom:5px;padding-left:7px}.tpg-postbox .new-post .wp-core-ui .wp-editor-tabs .wp-switch-editor{background:#f7f7f7;border:1px solid rgba(0,0,0,.08);color:#495057;cursor:pointer;font-weight:400;height:28px;margin:5px 0 0 5px;padding:3px 12px 4px}.tpg-postbox .new-post .wp-core-ui .wp-editor-tabs .html-active .switch-html,.tpg-postbox .new-post .wp-core-ui .wp-editor-tabs .tmce-active .switch-tmce{background:#f5f5f5;border-bottom-color:#f5f5f5;color:#555}.tpg-postbox .new-post .wp-core-ui .wp-editor-tabs .wp-switch-editor:active{background-color:#f5f5f5;box-shadow:none}.tpg-postbox .new-post .wp-core-ui .wp-editor-tabs .html-active .switch-html:focus,.tpg-postbox .new-post .wp-core-ui .wp-editor-tabs .tmce-active .switch-tmce:focus,.tpg-postbox .new-post .wp-core-ui .wp-editor-tabs .wp-switch-editor:active{box-shadow:none}.tpg-postbox .new-post .wp-core-ui .quicktags-toolbar .ed_button{background:#f7f7f7;color:#495057;font-weight:400}.tpg-postbox .new-post .wp-core-ui .quicktags-toolbar .ed_button:active,.tpg-postbox .new-post .wp-core-ui .quicktags-toolbar .ed_button:focus{box-shadow:none}.tpg-postbox .new-post input[type=submit]{background:var(--tpg-primary-color,#0d6efd);border-radius:5px;color:#fff;font-size:18px;font-weight:600;letter-spacing:.05em;padding:13px 30px;transition:.4s}.tpg-postbox .new-post input[type=submit]:hover{background:var(--tpg-secondary-color)}.tpg-postbox p{margin-bottom:0;margin-top:0}.form-content-area iframe{height:400px!important}.wp-editor-container textarea.wp-editor-area{height:300px!important}#tpg-featured-image .custom-file-upload{background:#f5f9fd;border:1px solid #dfe8f3;border-radius:5px;color:#495057;cursor:pointer;font-weight:400;height:50px;margin-top:15px;padding:0 20px}#tpg-featured-image .custom-file-upload input[type=file]{display:none}.tpg-form-container .grid-item>div{margin-bottom:20px}.tpg-postbox .tpg-right-content #tpg-category,.tpgMyAccount .select2-container--default .select2-selection--multiple{background:#f5f9fe;border:1px solid #dfe8f3!important;color:#495057;min-height:48.5px;width:100%}.tpgMyAccount .select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e8edee!important;border:1px solid #c8d2d4!important;color:#6f6f6f!important}.tpgMyAccount .select2-container--default .select2-selection--multiple .select2-selection__rendered li{font-size:16px}.tpgMyAccount .select2-container--default .select2-selection--multiple .select2-selection__rendered li:first-child{display:none}.tpgMyAccount .select2-container{min-width:100%}.tpgMyAccount .form-item{margin-bottom:15px}@media (max-width:1199px) and (min-width:768px){.entry .entry-header{margin-left:0!important;margin-right:0!important;max-width:100%!important;padding:0 15px!important}.entry .entry-content,.entry .entry-summary{margin:0!important;max-width:100%!important;padding:0 15px!important}.entry .entry-footer{margin-left:0!important;margin-right:0!important;max-width:100%!important;padding:0 15px!important}}.media-router .media-menu-item{color:#646464}.wp-message.error{color:red}.tpg-post-submit-status{border:1px solid #ddd;margin:15px 0;padding:15px}.tpg-post-submit-status.error{background:#ffecec;border-color:red;color:red}.tpg-post-submit-status.success{background:#def6e5;border-color:#28a745;color:#28a745}.invalid-feedback{color:#dc3545;display:none;font-size:.875em;margin-top:.25rem;width:100%}.invalid-feedback.error{color:red;display:block}.new_tpg_tags{position:relative}.new_tpg_tags .tpg-tags-input{align-items:center;background:#f5f9fe;border:1px solid #dfe8f3!important;border-radius:5px;color:#495057;display:flex;flex-wrap:wrap;gap:4px;min-height:48px;padding:10px}.new_tpg_tags .tpg-tags-input div{background-color:#e8edee!important;border:1px solid #c8d2d4!important;border-radius:3px;color:#6f6f6f!important;display:inline-block;line-height:1;padding:5px 10px}.new_tpg_tags .tpg-tags-input div span.remove{cursor:pointer;margin-right:5px}.new_tpg_tags .tpg-tags-input div span.remove:hover{color:red}.new_tpg_tags .tpg-tags-input input{background:none!important;border:none!important;box-shadow:none!important;display:inline-block!important;flex-grow:1!important;height:auto!important;padding:0!important;width:auto!important}.new_tpg_tags .tpg-tags-input input:active,.new_tpg_tags .tpg-tags-input input:focus{box-shadow:none}.new_tpg_tags ul{background:#fff;border-radius:3px;border:1px solid #ddd;border-top:none;box-shadow:0 0 20px #f0f0f0;left:0;margin:0;max-height:240px;overflow:scroll;padding:0;position:absolute;top:100%;transition:all .3s ease-in-out;width:100%;z-index:9999999}.new_tpg_tags ul li{cursor:pointer;line-height:1;list-style:none;padding:12px 15px}.new_tpg_tags ul li.active{background:#ddd}.new_tpg_tags ul li:hover,.new_tpg_tags ul li[active]{background:var(--tpg-primary-color,#0d6efd)!important;color:#fff}.tpg-myaccount-page,.tpg-myaccount-page #page,.tpg-myaccount-page .site{background:#f0f4f9}.tpgMyAccount .tpg-login-form{background:#e8edf1;border-radius:10px;margin:100px auto;max-width:94%;padding:40px;width:500px}.tpgMyAccount .tpg-login-form #loginform{width:100%}.tpgMyAccount .tpg-login-form #loginform>p{display:flex;flex-direction:column}.tpgMyAccount .tpg-login-form .tpg-register a{border:1px solid #d0c7c7;border-radius:4px;color:#212121;display:block;font-size:16px;padding:4px;text-align:center}.tpgMyAccount .tpg-login-form .tpg-register a:hover{background:var(--tpg-primary-color);border-color:var(--tpg-primary-color);color:#fff}.tpgMyAccount .tpg-login-form label{color:#666;display:inline-block;font-size:16px;font-weight:700;line-height:1;margin-bottom:10px}.tpgMyAccount .tpg-login-form input[type=email],.tpgMyAccount .tpg-login-form input[type=password],.tpgMyAccount .tpg-login-form input[type=text]{background-color:#fff;border:1px solid #c8d2d4;border-radius:5px;color:#666;height:50px;padding:5px 15px}.tpgMyAccount .tpg-login-form input[type=submit]{background:var(--tpg-primary-color);border:none;border-radius:5px;color:#fff;font-weight:700;height:50px}.tpgMyAccount .tpg-login-form input[type=submit]:hover{background:var(--tpg-secondary-color)}.select2-dropdown{z-index:999999!important}body .tpg-el-main-wrapper .rt-grid-item{background:none!important;padding:0 15px}body .tpg-el-main-wrapper .offset-left,body .tpg-el-main-wrapper .offset-right{padding-bottom:0!important}.rt-tpg-container div a{text-decoration:none}.ast-single-post .entry-content .rt-tpg-container a{text-decoration:inherit}.rt-model-open,body.rt-model-open,html.rt-model-open{overflow:hidden}.rt-tpg-container img{height:auto;max-width:100%;-o-object-fit:cover;object-fit:cover}.rt-tpg-container *{box-sizing:border-box}.entry .rt-tpg-container .entry-title:before{content:none}.rt-tpg-container .entry{margin-top:0}.rt-tpg-container :after,.rt-tpg-container :before{box-sizing:border-box}.rt-container,.rt-container-fluid{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}.rt-container-fluid.slider-layout13-main{padding:0 0 15px}.rt-tpg-container ul{margin:0}.rttpg-container .rttpg-block-wrapper{margin-left:0;margin-right:0}.rttpg-container .rt-container-fluid{padding-left:0;padding-right:0}img,svg{vertical-align:middle}a:link,a:visited{transition:all .31s ease}.clearfix:after,.clearfix:before,.rt-container-fluid:after,.rt-container-fluid:before{content:" ";display:table}.clearfix:after,.rt-container-fluid:after,.rt-container:after,.rt-row:after{clear:both}.rt-row{margin-left:-15px;margin-right:-15px}.grid-layout2.rt-row{margin-left:0;margin-right:0}.rt-row>.rt-row{padding-left:15px;padding-right:15px}.grid_hover6.rt-row{margin-left:-2px;margin-right:-2px}.rt-col-lg-1,.rt-col-lg-2,.rt-col-lg-3,.rt-col-lg-4,.rt-col-lg-5,.rt-col-lg-6,.rt-col-lg-7,.rt-col-lg-8,.rt-col-lg-9,.rt-col-lg-10,.rt-col-lg-11,.rt-col-lg-12,.rt-col-lg-24,.rt-col-md-1,.rt-col-md-2,.rt-col-md-3,.rt-col-md-4,.rt-col-md-5,.rt-col-md-6,.rt-col-md-7,.rt-col-md-8,.rt-col-md-9,.rt-col-md-10,.rt-col-md-11,.rt-col-md-12,.rt-col-md-24,.rt-col-sm-1,.rt-col-sm-2,.rt-col-sm-3,.rt-col-sm-4,.rt-col-sm-5,.rt-col-sm-6,.rt-col-sm-7,.rt-col-sm-8,.rt-col-sm-9,.rt-col-sm-10,.rt-col-sm-11,.rt-col-sm-12,.rt-col-sm-24,.rt-col-xs-1,.rt-col-xs-2,.rt-col-xs-3,.rt-col-xs-4,.rt-col-xs-5,.rt-col-xs-6,.rt-col-xs-7,.rt-col-xs-8,.rt-col-xs-9,.rt-col-xs-10,.rt-col-xs-11,.rt-col-xs-12,.rt-col-xs-24{min-height:1px;padding-left:15px;padding-right:15px;position:relative}.rt-col-xs-1,.rt-col-xs-2,.rt-col-xs-3,.rt-col-xs-4,.rt-col-xs-5,.rt-col-xs-6,.rt-col-xs-7,.rt-col-xs-8,.rt-col-xs-9,.rt-col-xs-10,.rt-col-xs-11,.rt-col-xs-12,.rt-col-xs-24{float:left}.rt-col-xs-24{width:20%}.rt-col-xs-12{width:100%}.rt-col-xs-11{width:91.66666667%}.rt-col-xs-10{width:83.33333333%}.rt-col-xs-9{width:75%}.rt-col-xs-8{width:66.66666667%}.rt-col-xs-7{width:58.33333333%}.rt-col-xs-6{width:50%}.rt-col-xs-5{width:41.66666667%}.rt-col-xs-4{width:33.33333333%}.rt-col-xs-3{width:25%}.rt-col-xs-2{width:16.66666667%}.rt-col-xs-1{width:8.33333333%}#rt-main{margin:35px auto}.rt-tpg-container h3.entry-title{line-height:1.25;margin:0 0 12px}.rt-tpg-container .offset-small-wrap .rt-holder .overlay{min-height:60px!important}.rt-tpg-container .offset-small-wrap .rt-holder .rt-img-responsive{height:auto;-o-object-fit:cover;object-fit:cover;width:100%}.rt-tpg-container .offset-small-wrap .rt-col-md-6 .rt-holder .rt-img-responsive{height:auto}.rt-tpg-container .offset-small-wrap .rt-holder .overlay h3 a{-webkit-line-clamp:1!important;-webkit-box-orient:vertical;display:-webkit-box!important;overflow:hidden!important;text-overflow:ellipsis!important}.rt-tpg-container .offset-big .post-meta-user.above_title{margin-top:15px}.rt-tpg-container .offset-big .post-meta-user.above_title+h3.entry-title{margin-top:0}.rt-tpg-container .offset-big h3.entry-title{margin:20px 0 15px}.rt-tpg-container .offset-big .cat-above-title{margin-bottom:-15px;padding-top:10px}.rt-tpg-container .owl-controls .owl-dots{margin-top:15px}@media (min-width:992px){.rt-container{width:970px}}@media (min-width:1200px){.rt-container{width:1170px}}@media (max-width:767px){.hidden-xs{display:none!important}}@media screen and (max-width:768px){.rt-member-description-container,.rt-member-feature-img{float:none;width:100%}}@media (min-width:768px){.rt-col-sm-1,.rt-col-sm-2,.rt-col-sm-3,.rt-col-sm-4,.rt-col-sm-5,.rt-col-sm-6,.rt-col-sm-7,.rt-col-sm-8,.rt-col-sm-9,.rt-col-sm-10,.rt-col-sm-11,.rt-col-sm-12,.rt-col-sm-24{float:left}.rt-col-sm-24{width:20%}.rt-col-sm-12{width:100%}.rt-col-sm-11{width:91.66666667%}.rt-col-sm-10{width:83.33333333%}.rt-col-sm-9{width:75%}.rt-col-sm-8{width:66.66666667%}.rt-col-sm-7{width:58.33333333%}.rt-col-sm-6{width:50%}.rt-col-sm-5{width:41.66666667%}.rt-col-sm-4{width:33.33333333%}.rt-col-sm-3{width:25%}.rt-col-sm-2{width:16.66666667%}.rt-col-sm-1{width:8.33333333%}}@media (min-width:992px){.rt-col-md-1,.rt-col-md-2,.rt-col-md-3,.rt-col-md-4,.rt-col-md-5,.rt-col-md-6,.rt-col-md-7,.rt-col-md-8,.rt-col-md-9,.rt-col-md-10,.rt-col-md-11,.rt-col-md-12,.rt-col-md-24{float:left}.rt-col-md-24{width:20%}.rt-col-md-12{width:100%}.rt-col-md-11{width:91.66666667%}.rt-col-md-10{width:83.33333333%}.rt-col-md-9{width:75%}.rt-col-md-8{width:66.66666667%}.rt-col-md-7{width:58.33333333%}.rt-col-md-6{width:50%}.rt-col-md-5{width:41.66666667%}.rt-col-md-4{width:33.33333333%}.rt-col-md-3{width:25%}.rt-col-md-2{width:16.66666667%}.rt-col-md-1{width:8.33333333%}}@media (min-width:1200px){.rt-col-lg-1,.rt-col-lg-2,.rt-col-lg-3,.rt-col-lg-4,.rt-col-lg-5,.rt-col-lg-6,.rt-col-lg-7,.rt-col-lg-8,.rt-col-lg-9,.rt-col-lg-10,.rt-col-lg-11,.rt-col-lg-12{float:left}.rt-col-lg-24{width:20%}.rt-col-lg-12{width:100%}.rt-col-lg-11{width:91.66666667%}.rt-col-lg-10{width:83.33333333%}.rt-col-lg-9{width:75%}.rt-col-lg-8{width:66.66666667%}.rt-col-lg-7{width:58.33333333%}.rt-col-lg-6{width:50%}.rt-col-lg-5{width:41.66666667%}.rt-col-lg-4{width:33.33333333%}.rt-col-lg-3{width:25%}.rt-col-lg-2{width:16.66666667%}.rt-col-lg-1{width:8.33333333%}}.paginationjs{box-sizing:initial;font-family:Marmelad,Lucida Grande,Arial,Hiragino Sans GB,Georgia,sans-serif;font-size:14px;line-height:1.6}.paginationjs:after{clear:both;content:" ";display:table}.paginationjs .paginationjs-pages{float:left}.paginationjs .paginationjs-pages ul{float:left;margin:0;padding:0}.paginationjs .paginationjs-go-button,.paginationjs .paginationjs-go-input,.paginationjs .paginationjs-nav{float:left;font-size:14px;margin-left:10px}.paginationjs .paginationjs-pages li{border:1px solid #aaa;border-right:none;float:left;list-style:none}.paginationjs .paginationjs-pages li>a{background:#fff;color:#333;display:block;font-size:14px;line-height:28px;min-height:28px;min-width:30px;text-align:center;text-decoration:none}.paginationjs .paginationjs-pages li:hover>a{background:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd)!important;color:#fff!important}.paginationjs .paginationjs-pages li.active{border:none}.paginationjs .paginationjs-pages li.active>a{background:#aaa;color:#fff;height:30px;line-height:30px}.paginationjs .paginationjs-pages li.disabled>a{opacity:.3}.paginationjs .paginationjs-pages li.disabled>a:hover{background:0 0}.paginationjs .paginationjs-pages li:first-child,.paginationjs .paginationjs-pages li:first-child>a{border-radius:3px 0 0 3px}.paginationjs .paginationjs-pages li:last-child{border-radius:0 3px 3px 0;border-right:1px solid #aaa}.paginationjs .paginationjs-pages li:last-child>a{border-radius:0 3px 3px 0}.paginationjs .paginationjs-go-input>input[type=text]{box-sizing:initial;height:28px;padding:0;width:30px}.paginationjs .paginationjs-go-button>input[type=button],.paginationjs .paginationjs-go-input>input[type=text]{background:#fff;border:1px solid #aaa;border-radius:3px;box-shadow:none;font-size:14px;outline:0;text-align:center;vertical-align:baseline}.paginationjs .paginationjs-go-button>input[type=button]{color:#333;cursor:pointer;height:30px;line-height:28px;min-width:40px;padding:0 8px;vertical-align:middle\9}.paginationjs.paginationjs-theme-blue .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-blue .paginationjs-pages li{border-color:var(--tpg-primary-color,#2962ff)}.paginationjs .paginationjs-go-button>input[type=button]:hover{background-color:#f8f8f8}.paginationjs .paginationjs-nav{height:30px;line-height:30px}.paginationjs .paginationjs-go-button,.paginationjs .paginationjs-go-input{margin-left:5px\9}.paginationjs.paginationjs-small{font-size:12px}.paginationjs.paginationjs-small .paginationjs-pages li>a{font-size:12px;height:24px;line-height:24px;min-width:26px}.paginationjs.paginationjs-small .paginationjs-pages li.active>a{height:26px;line-height:26px}.paginationjs.paginationjs-small .paginationjs-go-input{font-size:12px}.paginationjs.paginationjs-small .paginationjs-go-input>input[type=text]{font-size:12px;height:24px;width:26px}.paginationjs.paginationjs-small .paginationjs-go-button{font-size:12px}.paginationjs.paginationjs-small .paginationjs-go-button>input[type=button]{font-size:12px;height:26px;line-height:24px;min-width:30px;padding:0 6px}.paginationjs.paginationjs-small .paginationjs-nav{font-size:12px;height:26px;line-height:26px}.paginationjs.paginationjs-big{font-size:16px}.paginationjs.paginationjs-big .paginationjs-pages li>a{font-size:16px;height:34px;line-height:34px;min-width:36px}.paginationjs.paginationjs-big .paginationjs-pages li.active>a{height:36px;line-height:36px}.paginationjs.paginationjs-big .paginationjs-go-input{font-size:16px}.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text]{font-size:16px;height:34px;width:36px}.paginationjs.paginationjs-big .paginationjs-go-button{font-size:16px}.paginationjs.paginationjs-big .paginationjs-go-button>input[type=button]{font-size:16px;height:36px;line-height:34px;min-width:50px;padding:0 12px}.paginationjs.paginationjs-big .paginationjs-nav{font-size:16px;height:36px;line-height:36px}.paginationjs.paginationjs-theme-blue .paginationjs-pages li>a{color:var(--tpg-primary-color,#2962ff)}.paginationjs.paginationjs-theme-blue .paginationjs-pages li:hover>a{background:#e9f4fc}.paginationjs.paginationjs-theme-blue .paginationjs-pages li.active>a{background:var(--tpg-primary-color,#2962ff);color:#fff}.paginationjs.paginationjs-theme-blue .paginationjs-pages li.disabled:hover>a{background:0 0}.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button]{background:var(--tpg-primary-color,#2962ff);border-color:var(--tpg-primary-color,#2962ff);color:#fff}.paginationjs.paginationjs-theme-green .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-green .paginationjs-pages li{border-color:#449d44}.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button]:hover{background-color:var(--tpg-primary-color,#2962ff)}.paginationjs.paginationjs-theme-green .paginationjs-pages li>a{color:#449d44}.paginationjs.paginationjs-theme-green .paginationjs-pages li:hover>a{background:#ebf4eb}.paginationjs.paginationjs-theme-green .paginationjs-pages li.active>a{background:#449d44;color:#fff}.paginationjs.paginationjs-theme-green .paginationjs-pages li.disabled:hover>a{background:0 0}.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button]{background:#449d44;border-color:#449d44;color:#fff}.paginationjs.paginationjs-theme-yellow .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-yellow .paginationjs-pages li{border-color:#ec971f}.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button]:hover{background-color:#55a555}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li>a{color:#ec971f}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li:hover>a{background:#fdf5e9}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.active>a{background:#ec971f;color:#fff}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.disabled:hover>a{background:0 0}.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button]{background:#ec971f;border-color:#ec971f;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-red .paginationjs-pages li{border-color:#c9302c}.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button]:hover{background-color:#eea135}.paginationjs.paginationjs-theme-red .paginationjs-pages li>a{color:#c9302c}.paginationjs.paginationjs-theme-red .paginationjs-pages li:hover>a{background:#faeaea}.paginationjs.paginationjs-theme-red .paginationjs-pages li.active>a{background:#c9302c;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-pages li.disabled:hover>a{background:0 0}.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button]{background:#c9302c;border-color:#c9302c;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button]:hover{background-color:#ce4541}.paginationjs .paginationjs-pages li.paginationjs-next{border-right:1px solid\9}.paginationjs .paginationjs-go-input>input[type=text]{line-height:28px\9;vertical-align:middle\9}.paginationjs.paginationjs-big .paginationjs-pages li>a{line-height:36px\9}.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text]{height:36px\9;line-height:36px\9}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li:not(.paginationjs-next):not(.paginationjs-prev){display:none}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li{color:#fff}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li>a{background-color:var(--tpg-primary-color,#0d6efd);color:#fff}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li:hover a{background-color:var(--tpg-secondary-color,#0654c4)}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2){display:inline-block;pointer-events:none;position:relative}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2) a{pointer-events:none;text-indent:-99999px}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2):before{content:"\f100";font-family:Font Awesome\ 5 Free;font-weight:900;left:50%;opacity:.5;position:absolute;top:50%;transform:translate(-50%,-50%);z-index:99}.rttpg-flaticon .ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2):before{content:"\f118";font-family:flaticon_tpg!important}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-prev+li{display:none!important}.rt-tpg-container button{border:none;padding:10px 15px}.rt-tpg-container .rt-tgp-load-more button{background:#8e8e8e;border-radius:4px}.rt-tpg-container .tpg-wc-product-filter{margin-bottom:15px;padding-right:15px;text-align:right}.rt-img-holder>a{display:block;text-align:center}.rt-img-responsive{display:block;height:auto;max-width:100%;transition:.4s ease-in-out}@media (max-width:991px){.rt-img-holder>a,.rt-img-responsive{width:100%}}.rt-tpg-container .no-margin{margin:0!important;padding:0!important}span.more-loading{background:url(/wp-content/plugins/the-post-grid/assets/images/loading.gif) 100% no-repeat;display:inline-block;padding-right:20px}.rt-tgp-load-more,.rt-tgp-scroll-load-more{display:block;margin:30px 0 20px;text-align:center}.post-meta-tags,.post-meta-user{font-size:95%;line-height:1;margin-bottom:15px;padding:0}.post-meta-tags>span,.post-meta-user>span{align-items:center;display:inline-flex;flex-wrap:wrap;margin-bottom:3px;padding-right:10px}.post-meta-user,.post-meta-user a{color:#646464}.post-meta-user a:hover{color:#000}.post-meta-tags span.rt-separator,.post-meta-user span.rt-separator{display:inline-block;padding-right:5px}.post-meta-user span.comment-link{float:right;padding-right:0;text-align:right}.rt-holder .entry-title a{color:#000}.rt-tpg-container .rt-holder .post-meta.center .read-more{float:none}.rt-tpg-container .rt-holder .post-meta .rt-tpg-social-share{display:block;float:none;margin-bottom:15px;text-align:left;width:100%}.rt-tpg-container .post-tags-links .fa-tags{font-size:12px!important;font-weight:900!important}.rt-tpg-container .rt-holder .post-meta.center .rt-tpg-social-share,.rt-tpg-container .rt-holder .post-meta.right .rt-tpg-social-share{text-align:left}.rt-tpg-container .rt-holder .read-more a{display:inline-block;font-size:15px;line-height:1.5}.rt-tpg-container .rt-holder .tpg-excerpt{margin-bottom:10px}.rt-tpg-container .rt-holder .tpg-excerpt iframe{max-height:250px;width:100%}.rt-tpg-container .tpg-iso-filter{margin:15px 0 45px;text-align:center}.rt-tpg-container .tpg-iso-filter input[type=text],.rt-tpg-container .tpg-iso-filter select.isotope-dropdown-filter{border-radius:3px;display:inline-block;margin-left:4px;padding:12px 10px}.rt-tpg-container .tpg-iso-filter select.isotope-dropdown-filter{padding-bottom:11px;padding-top:11px}.rt-tpg-container .tpg-iso-filter>div{display:inline-block}.rt-tpg-container .rt-tpg-isotope-buttons .selected{background:var(--tpg-primary-color,#0d6efd)}.rt-tpg-container .rt-tpg-isotope-buttons button{background:#8e8e8e;border:none;border-radius:3px;box-shadow:none!important;color:#fff;font-size:15px;font-weight:400;line-height:1.8;margin:4px;outline:0;padding:8px 20px;text-shadow:none!important;text-transform:none}.rt-tpg-container .tpg-pre-loader{overflow:hidden;position:relative}.rt-tpg-container .rt-loading-overlay{background-color:#fff;height:100%;left:0;opacity:0;position:absolute;top:0;visibility:hidden;width:100%;z-index:10}.rt-tpg-container .rt-loading{color:var(--tpg-primary-color,#0d6efd);left:50%;margin-left:-16px;opacity:0;position:absolute;top:120px;transform:scale(1.5);visibility:hidden;z-index:2}.rt-tpg-container .tpg-pre-loader .rt-loading-overlay{opacity:0;visibility:hidden}.filter-preloader-on .rt-tpg-container .tpg-pre-loader :not(.rt-loading){opacity:.7}.tpg-carousel-main .tpg-pre-loader .rt-loading-overlay{opacity:1}.rt-tpg-container .tpg-pre-loader .rt-loading{opacity:1;visibility:visible}.rt-tpg-container .tpg-pre-loader .rt-loading *{opacity:1!important}.filter-preloader-off .rt-tpg-container .rt-loading,.filter-preloader-off .rt-tpg-container .rt-loading-overlay{display:none}.rt-ball-clip-rotate{color:#fff;display:block;font-size:0;height:32px;width:32px}.rt-ball-clip-rotate,.rt-ball-clip-rotate>div{box-sizing:border-box;position:relative}.rt-ball-clip-rotate>div{animation:ball-clip-rotate .75s linear infinite;background-color:currentColor;background:transparent;border-radius:100%;border:2px solid;border-bottom:2px solid transparent;display:inline-block;float:none;height:32px;width:32px}.rt-layout-filter-container.rt-clear:after{clear:both;content:"";display:block}.rt-clear::-ms-ticks-after,.rt-clear:after{clear:both;content:"";display:block}.rt-layout-filter-container{font-size:0;line-height:0;margin:-5px -5px 30px;padding:0}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item{border:1px solid;display:inline-block;margin:4px;padding:8px 10px;transition:.4s}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected,.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover{background:#222;color:#b4b4b4}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap{padding-right:82px}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{margin-right:0;position:static;width:100%}.tpg-header-wrapper.carousel{align-items:center;display:flex;margin-bottom:30px;overflow:hidden}.section-title-style-default .tpg-header-wrapper.carousel,.section-title-style-style1 .tpg-header-wrapper.carousel{min-height:36px}.tpg-header-wrapper.carousel .swiper{overflow:hidden}.section-title-style-style2 .tpg-header-wrapper.carousel .swiper,.section-title-style-style3 .tpg-header-wrapper.carousel .swiper{height:51px;margin-bottom:-.5px}.tpg-header-wrapper.carousel .swiper .swiper-navigation{position:absolute;right:0;top:50%;transform:translateY(-50%);z-index:9}.tpg-header-wrapper.carousel .swiper .swiper-button-next,.tpg-header-wrapper.carousel .swiper .swiper-button-prev{margin-top:0;top:0}.tpg-header-wrapper.carousel .tpg-widget-heading-wrapper{flex:1;margin:0;padding-right:10px}.tpg-header-wrapper.carousel .rt-layout-filter-container{flex:0 0 60%;margin:0;max-width:60%}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.swiper-wrapper{box-sizing:content-box;display:flex;flex-wrap:nowrap;height:100%;margin:0;position:relative;transition-property:transform;width:100%;z-index:1}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide{align-items:center;border:none;color:#212121;display:flex;font-size:15px;height:auto;justify-content:center;margin:0;padding:0 10px;position:relative;text-align:center;text-transform:none;white-space:nowrap;width:auto}.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:before{border-bottom:7px solid var(--tpg-primary-color,#0d6efd);border-left:7px solid transparent;border-right:7px solid transparent;border-top:0 solid transparent;bottom:0;content:"";height:0;left:50%;opacity:0;position:absolute;transform:translateX(-50%);transition:all .3s ease;visibility:hidden;width:0}.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected:before,.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover:before{opacity:1;visibility:visible}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected,.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover{color:var(--tpg-primary-color,#0d6efd)}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper,.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .rt-author-filter{display:none}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.swiper-wrapper{letter-spacing:0}.tpg-header-wrapper.carousel .swiper-button-next.swiper-button-disabled,.tpg-header-wrapper.carousel .swiper-button-prev.swiper-button-disabled{opacity:1}.tpg-header-wrapper.carousel .swiper-button-next.swiper-button-disabled:after,.tpg-header-wrapper.carousel .swiper-button-prev.swiper-button-disabled:after{opacity:.35}.filter-button-border-enable .tpg-header-wrapper.carousel .rt-layout-filter-container{border:1px solid #ddd;border-radius:3px}.filter-button-border-enable .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide{padding:6px 15px;white-space:nowrap}.filter-button-border-enable .tpg-header-wrapper.carousel .swiper .swiper-navigation{right:3px}.filter-nex-prev-btn-hidden .tpg-header-wrapper.carousel .swiper .swiper-navigation{display:none}.filter-nex-prev-btn-hidden .tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap{margin-right:0;padding-right:0}@media (max-width:767px){.tpg-header-wrapper.carousel{display:block}.tpg-header-wrapper.carousel .rt-layout-filter-container{margin-bottom:8px;margin-left:-9px;margin-top:10px;max-width:100%;position:relative}}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected,.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover{background:none;color:#000}.rt-filter-item-wrap.rt-order-by-action,.rt-filter-item-wrap.rt-sort-order-action{float:right}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap{color:#666;cursor:pointer;display:inline-block;font-size:13px;line-height:1.55;margin:4px;padding:7px 10px;position:relative;transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-ms-transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;user-select:none;-webkit-user-select:none;-moz-user-select:none;vertical-align:top}.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-wrap{margin-left:0;margin-top:0;padding:0}.tpg-term-search-wrap{display:block;padding:6px 8px}.tpg-term-search-wrap .tpg-term-search{border:1px solid #ddd;border-radius:3px;box-sizing:border-box;font-size:13px;height:34px;outline:none;padding:5px 8px;width:100%}.tpg-term-search-wrap .tpg-term-search:focus{border-color:#aaa}.tpg-term-search-wrap.tpg-term-search-button{display:inline-block;margin:4px;padding:0;vertical-align:middle}.tpg-term-search-wrap.tpg-term-search-button .tpg-term-search{padding:8px 10px}.rt-filter-dropdown-wrap .rt-filter-dropdown{max-height:500px;overflow-y:auto}@media (max-width:767px){.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-wrap{display:inline}}.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-item .rt-filter-sub-tax{display:none}.rt-layout-filter-container .rt-filter-sub-tax.sub-button-group{margin:0 4px}.rt-layout-filter-container .rt-filter-sub-tax.sub-button-group .rt-filter-button-item{cursor:pointer}.rt-layout-filter-container>.rt-filter-sub-tax.sub-button-group>span{border:1px solid;display:inline-block;font-size:13px;letter-spacing:.1em;line-height:1.55;margin:4px;padding:8px 10px;text-transform:uppercase;vertical-align:top}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap{border:1px solid;color:#666;overflow:inherit!important;padding-right:20px;position:relative}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover{border-color:#222;color:#222}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action:hover{border-color:#222}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap>.rt-filter-dropdown-default{display:block;letter-spacing:.5px;max-width:135px;min-width:135px;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap}.rt-layout-filter-container .rt-filter-dropdown-clear{color:currentColor;cursor:pointer;font-size:16px;line-height:1;margin-top:-1.5px;padding:2px 4px;position:absolute;right:22px;top:50%;transform:translateY(-50%);z-index:2}.rt-layout-filter-container .rt-filter-dropdown-clear:hover{color:red}.rt-layout-filter-container .rt-filter-dropdown-clear.rt-hidden{display:none}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown{background-color:#222;border:none;border-top:1px solid transparent;display:block;left:-1px;margin-top:1px;opacity:0;position:absolute;right:-1px;top:100%;transition:opacity .3s ease-in-out,visibility .3s ease-in-out;-webkit-transition:opacity .3s ease-in-out,visibility .3s ease-in-out;-ms-transition:opacity .3s ease-in-out,visibility .3s ease-in-out;visibility:hidden;z-index:20}.rt-layout-filter-container.filter-clear-enable .rt-filter-wrap .rt-filter-item-wrap.rt-tax-filter{padding-right:32px}.rt-layout-filter-container.filter-clear-enable .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap>.rt-filter-dropdown-default{max-width:120px!important;min-width:120px!important}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover .rt-filter-dropdown{border-top-color:#000}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item.selected{background:#000}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap.active-dropdown .rt-filter-dropdown{opacity:1;visibility:visible}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap.active-dropdown .rt-arrow-angle:before{display:block;transform:rotate(180deg);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg)}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item .rt-text{-ms-word-wrap:break-word;word-wrap:break-word;display:block}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item{border-bottom:1px solid rgba(0,0,0,.2);color:#b4b4b4;display:block;padding:10px 15px 9px;position:relative;text-align:center;z-index:1}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item:before{background-color:rgba(0,0,0,.3);content:"";height:100%;left:0;opacity:0;position:absolute;top:0;transition:.4s;width:100%;z-index:-1}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item:hover:before{opacity:1}.rt-filter-dropdown-default .sub-dropdown-wrap,.rt-filter-dropdown-item .sub-dropdown-wrap{display:none!important}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-arrow-angle{backface-visibility:hidden;-webkit-backface-visibility:hidden;letter-spacing:0;position:absolute;right:10px;top:50%;transform:translateY(-50%);transition:transform .2s ease-in-out;-webkit-transition:transform .2s ease-in-out;-ms-transition:transform .2s ease-in-out}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action{border:1px solid #666;color:#666;min-width:38px;position:relative}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow{position:static}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span{backface-visibility:hidden;-webkit-backface-visibility:hidden;display:block;height:8px;left:50%;margin-left:-7px;margin-top:-4px;position:absolute;top:50%;transition:transform .2s ease-in-out;-webkit-transition:transform .2s ease-in-out;-ms-transition:transform .2s ease-in-out;width:14px}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow[data-sort-order=ASC]>span{transform:rotate(180deg);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg)}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:before{left:3px;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg)}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:after,.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:before{background-color:#666;content:"";display:block;height:9px;position:absolute;top:0;transition:background-color .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out;-ms-transition:background-color .2s ease-in-out;width:2px}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:after{left:9px;transform:rotate(45deg);-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg)}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-search-filter-wrap{float:right;padding:0;position:relative}.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:1px solid #666;border-radius:0;color:#666;font-family:Dosis,sans-serif;font-size:12px;font-weight:600;height:39px;padding:11px}.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input:focus{box-shadow:none;outline:none}.rt-filter-item-wrap.rt-search-filter-wrap span.rt-action{cursor:pointer;display:inline-block;font-size:15px;position:absolute;right:5px;top:6px}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input::-webkit-input-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input::-moz-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input:-ms-input-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input:-moz-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}@media (max-width:600px){.rt-filter-item-wrap.rt-tax-filter.rt-filter-dropdown-wrap{display:block;margin-bottom:10px}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap>.rt-filter-dropdown-default{margin:0 auto}}.rt-tpg-social-share.a{position:relative}body>.rt-tooltip{background:#666;border-radius:3px;border-width:2px;-o-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa;color:#fff;font-size:100%;opacity:0;padding:5px 10px;pointer-events:none;position:absolute;transition:opacity 1s ease-in-out;z-index:9999}body>.rt-tooltip .rt-tooltip-content{font-size:90%}body>.rt-tooltip,body>.rt-tooltip .rt-tooltip-bottom:after{background:#000;border-radius:2px}body>.rt-tooltip .rt-tooltip-bottom{bottom:-16px;height:18px;left:50%;margin-left:-32px;overflow:hidden;position:absolute;width:70px}body>.rt-tooltip .rt-tooltip-bottom:after{tranform:rotate(45deg);content:"";height:25px;left:20px;position:absolute;top:-20px;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);width:25px}.rt-tpg-container .rt-holder .rt-img-holder{overflow:hidden;position:relative}.rt-tpg-container .rt-holder .tpg-el-image-wrap{margin:-15px -16px 15px}.rt-tpg-container .list-behaviour .rt-holder .tpg-el-image-wrap{margin:0}.rt-tpg-container .img_zoom_out .rt-holder .rt-img-holder img:not(.avatar),.rt-tpg-container .rt-holder:hover .rt-img-holder img:not(.avatar){transform:scale(1.1)}.rt-tpg-container .img_no_effect .rt-holder:hover .rt-img-holder img,.rt-tpg-container .img_zoom_out .rt-holder:hover .rt-img-holder img{transform:scale(1)}.rt-tpg-container .rt-holder .rt-detail{padding:15px 15px 0}.rt-tpg-container .layout2 .rt-holder .rt-detail,.rt-tpg-container .layout3 .rt-holder .rt-detail,.rt-tpg-container .offset01 .rt-detail,.rt-tpg-container .offset02 .rt-holder .rt-detail{padding:0}.rt-tpg-container .offset01 .rt-detail,.rt-tpg-container .offset02 .rt-holder .rt-detail{padding-left:5px}.rt-tpg-container .entry-title-wrapper .entry-title{font-size:22px;font-weight:600;line-height:1.3;margin:0 0 18px;padding-bottom:2px}@media (max-width:767px){.rt-tpg-container .entry-title-wrapper .entry-title{font-size:20px;margin:0 0 15px}}.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper{margin-bottom:15px}.rt-tpg-container .rt-detail .tpg-excerpt-inner .acf-custom-field-wrap{padding-top:15px}.rt-tpg-container .list-layout2 .rt-detail .tpg-excerpt-inner,.rt-tpg-container .list-layout3 .rt-detail .tpg-excerpt-inner{margin-bottom:0}.rt-tpg-container .rt-holder .rt-detail .post-meta{line-height:25px;overflow:hidden}.rt-tpg-container .rt-holder .rt-detail .read-more a{align-items:center;background-color:hsla(0,0%,100%,.7);border:1px solid #e5e5e5;color:#646464;display:inline-flex;flex-direction:row;flex-wrap:wrap;font-size:15px;justify-content:left;line-height:1.8;overflow:hidden;padding:6px 20px}.rt-tpg-container .rt-holder .rt-detail .read-more a:hover{background-color:#fff;border-color:var(--tpg-primary-color,#0d6efd);color:var(--tpg-primary-color,#0d6efd)}.rt-tpg-container .rt-grid-hover-item .rt-detail .read-more a{border-color:hsla(0,0%,100%,.7)}.rt-tpg-container .rt-grid-hover-item .rt-detail .read-more a:hover{border-color:#fff}.rt-tpg-container .rt-holder .rt-detail .read-more a{color:#1a1a1a}.rt-tpg-container .rt-holder .rt-detail .post-meta.right{text-align:right}.rt-tpg-container .rt-holder .rt-detail .post-meta.center{text-align:center}.tpg-img-circle .rt-img-holder img{border-radius:50%!important}@keyframes ball-scale-multiple{0%{opacity:0;transform:scale(0)}5%{opacity:.75}to{opacity:0;transform:scale(1)}}@keyframes ball-clip-rotate{0%{transform:rotate(0deg)}50%{transform:rotate(180deg)}to{transform:rotate(1turn)}}.rt-container-fluid{position:relative}#bottom-script-loader{background:hsla(0,0%,100%,.95);height:calc(100% + 60px);margin:-30px;position:absolute;width:calc(100% + 60px);z-index:999}#bottom-script-loader .rt-ball-clip-rotate{color:var(--tpg-primary-color,#0d6efd);margin-right:-16px;position:absolute;right:50%;top:80px;z-index:2}.tpg-widget-heading-wrapper{display:flex;margin-bottom:30px;position:relative}.tpg-widget-heading-wrapper .tpg-widget-heading{font-size:28px;line-height:1;margin-bottom:-1px!important;margin-top:0;padding-right:15px;padding-top:0;position:relative}.search .tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1.5}@meia (max-width: 767px){.tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1.2}}.tpg-widget-heading-wrapper.center .tpg-widget-heading{margin:0;padding:0}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading:before{background-color:var(--tpg-primary-color,#0d6efd);border-radius:50%;content:"";display:inline-block;height:8px;margin-right:7px;margin-top:-4px;position:absolute;right:-7.5px;top:50%;width:8px}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left,.tpg-widget-heading-wrapper.heading-style1.center .tpg-widget-heading:before{display:none}.tpg-widget-heading-wrapper.heading-style1.center .tpg-widget-heading-line.line-left{display:block;margin-left:0;margin-right:15px}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line,.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line-left{-webkit-box-flex:1;align-self:center;border-color:#e5e5e5;border-style:solid;border-width:1px 0;flex-grow:1;height:4px;margin-left:15px}.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading,.tpg-widget-heading-wrapper.heading-style3 .tpg-widget-heading{background-color:var(--tpg-primary-color,#0d6efd);color:#fff;line-height:1.4;margin-bottom:-.5px;padding:5px 15px}.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading a,.tpg-widget-heading-wrapper.heading-style3 .tpg-widget-heading a{color:inherit}.tpg-widget-heading-wrapper.heading-style4{margin-bottom:40px}.tpg-widget-heading-wrapper.heading-style4:after,.tpg-widget-heading-wrapper.heading-style4:before{content:"";position:absolute}.tpg-widget-heading-wrapper.heading-style4:before{background-color:var(--tpg-primary-color,#0d6efd);bottom:-17px;height:6px;left:0;transform:skewX(-25deg);width:45px}.tpg-widget-heading-wrapper.heading-style4:after{background-color:#dcdcdc;bottom:-15px;height:1px;margin-left:10px;right:0;width:calc(100% - 55px)}.tpg-widget-heading-wrapper.center{justify-content:center}.tpg-widget-heading-wrapper.right{flex-direction:row-reverse}.tpg-widget-heading-wrapper.right .tpg-widget-heading{padding-left:15px;padding-right:0}.tpg-widget-heading-wrapper.right .tpg-widget-heading:before{left:0;right:auto}.tpg-widget-heading-wrapper.right .tpg-widget-heading-line{margin-left:0;margin-right:15px}.tpg-el-main-wrapper .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before,.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:after{border-bottom-color:transparent!important;border-right-color:transparent!important;border-color:var(--tpg-primary-color,#0d6efd);border-style:solid;border-width:12px 12px 0 0;content:"";position:absolute;right:-11px;top:0}.section-title-align-right .tpg-el-main-wrapper .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before,.section-title-align-right .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:after{left:-3px;right:auto;transform:skewX(225deg)}.section-title-align-center .tpg-el-main-wrapper .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before,.tpg-widget-heading-wrapper.heading-style2.right .tpg-widget-heading:after{border-width:12px 0 0 12px;left:-11px;right:auto}.tpg-widget-heading-wrapper.heading-style2.center .tpg-widget-heading:after{content:none}.section-title-style-style2 .tpg-header-wrapper.carousel,.section-title-style-style2 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper,.section-title-style-style3 .tpg-header-wrapper.carousel,.section-title-style-style3 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper{border-bottom:2px solid var(--tpg-primary-color,#0d6efd)}.tpg-even,.tpg-full-height{display:flex;flex-wrap:wrap}@media (max-width:767px){.rt-content-loader .rt-holder,.tpg-even .rt-holder{flex-direction:column}}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>*{background-color:#bcbcbc;bottom:auto;color:#fff;cursor:pointer;display:inline-block;font-size:18px;height:30px;line-height:30px;margin-left:1px;margin-right:1px;text-align:center;transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;-ms-transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;width:30px}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>* i{line-height:1}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>.rt-disabled{opacity:.5;pointer-events:none}.rt-cb-page-prev-next{text-align:left}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style .rt-loadmore-loading{color:#fff;left:50%;margin-left:-32px;margin-top:-32px;opacity:0;position:absolute;top:50%;visibility:hidden}.rt-ball-scale-multiple.rt-2x,.rt-ball-scale-multiple.rt-2x>div{height:64px;width:64px}.rt-ball-scale-multiple,.rt-ball-scale-multiple>div{box-sizing:border-box;position:relative}.rt-ball-scale-multiple>div{background-color:currentColor;border:0 solid;display:inline-block;float:none}.rt-ball-scale-multiple>div:nth-child(2){animation-delay:.2s}.rt-ball-scale-multiple>div{animation:ball-scale-multiple 1s linear 0s infinite;border-radius:100%;height:32px;left:0;opacity:0;position:absolute;top:0;width:32px}.rt-tpg-container .rt-pagination-wrap{display:inline-block;margin-top:10px;text-align:center;width:100%}.rt-tpg-container.grid_hover-layout4-2-main .rt-pagination-wrap{width:calc(100% - 23px)!important}.rt-tpg-container.grid_hover-layout4-main .rt-pagination-wrap{width:calc(100% - 15px)!important}.rt-tpg-container.grid_hover-layout8-main .rt-pagination-wrap{width:calc(100% + 10px)!important}.tpg-el-main-wrapper .rt-pagination-wrap{display:flex;flex-direction:row;justify-content:center;margin-top:30px}.tpg-el-main-wrapper .rt-pagination-wrap .rt-pagination{margin:0}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style{cursor:pointer;position:relative;-moz-user-select:none;user-select:none;-webkit-user-select:none}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-infinite-action.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-page-numbers.rt-hidden-elm{display:none!important}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-lm-loading .rt-loadmore-text{opacity:0;visibility:hidden}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-lm-loading .rt-loadmore-loading{opacity:1;visibility:visible}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-btn{background-color:var(--tpg-primary-color,#0d6efd);color:#fff;display:inline-block;font-size:13px;letter-spacing:.1em;margin-top:30px;padding:9px 20px;text-decoration:none;text-transform:uppercase;transition:color .2s ease-in-out,background-color .2s ease-in-out;-webkit-transition:color .2s ease-in-out,background-color .2s ease-in-out;-ms-transition:color .2s ease-in-out,background-color .2s ease-in-out}.rt-tpg-container .rt-loadmore-btn:hover{background-color:var(--tpg-secondary-color,#0654c4)}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages{float:none;padding-bottom:.1px;padding-top:.1px}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers.rt-lm-loading{opacity:.5;pointer-events:none}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul{float:none;font-size:0;line-height:0;margin:-2px;text-align:center}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li{border:none;display:inline-block;float:none;font-size:16px;padding:2px}.rt-tpg-container .rt-pagination-wrap i[class*=tpg-flaticon-]{position:relative;top:3px}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li>a{border:1px solid #dee2e6;border-radius:3px;box-sizing:content-box;color:#212121;display:block;font-size:16px;font-weight:400;letter-spacing:0;line-height:45px;min-height:45px;min-width:45px;text-align:center;text-decoration:none}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.active>a{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.paginationjs-ellipsis{min-width:auto;padding:0}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.paginationjs-ellipsis a{background:none!important;border:none!important;color:#000!important;font-size:18px;min-width:auto;opacity:1;pointer-events:none!important}.rt-pagination{margin:30px 0;text-align:center}.rt-pagination .pagination-list{background:transparent;border-radius:4px;border-top:0;display:inline-block;padding-left:0}.rt-pagination .pagination-list a{box-shadow:none}.rt-pagination .pagination-list>li{display:inline-block;margin:2px}.rt-pagination .pagination-list>li:after,.rt-pagination .pagination-list>li:before{content:none}.rt-pagination .pagination-list>li>a,.rt-pagination .pagination-list>li>span{background-color:#fff;border:1px solid #ddd;border-radius:3px;box-sizing:content-box;color:#212121;display:block;line-height:45px;margin-left:-1px;min-height:45px;min-width:45px;position:relative;text-align:center;text-decoration:none;transition:.4s ease-in-out}.rt-pagination .pagination-list>li>a:focus,.rt-pagination .pagination-list>li>a:hover,.rt-pagination .pagination-list>li>span:focus,.rt-pagination .pagination-list>li>span:hover{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff;z-index:2}.rt-pagination .pagination-list>.active>a,.rt-pagination .pagination-list>.active>a:focus,.rt-pagination .pagination-list>.active>a:hover,.rt-pagination .pagination-list>.active>span,.rt-pagination .pagination-list>.active>span:focus,.rt-pagination .pagination-list>.active>span:hover{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff;cursor:default;z-index:3}.rt-pagination .pagination-list>.disabled>a,.rt-pagination .pagination-list>.disabled>a:focus,.rt-pagination .pagination-list>.disabled>a:hover,.rt-pagination .pagination-list>.disabled>span,.rt-pagination .pagination-list>.disabled>span:focus,.rt-pagination .pagination-list>.disabled>span:hover{background-color:#fff;border-color:#ddd;color:#212121;cursor:not-allowed}.rt-tpg-container .swiper-pagination-bullet{background:#d6d6d6;height:10px;opacity:1;width:10px}.rt-tpg-container .swiper-wrapper{padding-bottom:45px}.rt-tpg-container.slider-layout13-main .swiper-wrapper{padding-bottom:0}.rt-tpg-container .swiper-pagination-bullets.swiper-pagination-horizontal{bottom:0}.rt-tpg-container .swiper-pagination-bullet.swiper-pagination-bullet-active-main{background:#007bff}.rt-tpg-container>div{position:relative}.rt-tpg-container .slider-main-wrapper{opacity:0;position:relative}.rt-tpg-container .swiper-navigation .slider-btn{align-items:center;background-color:#fff;background-image:none;border:1px solid #e5e5e5;border-radius:3px;color:var(--tpg-primary-color);display:inline-flex;font-size:14px;height:32px;justify-content:center;position:absolute;transition:all .3s ease;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;width:34px}.rt-tpg-container .tpg-header-wrapper .swiper-navigation .slider-btn,.slider-arrow-position-top-left .rt-tpg-container .swiper-navigation .slider-btn,.slider-arrow-position-top-right .rt-tpg-container .swiper-navigation .slider-btn{position:static}.rt-tpg-container .swiper-navigation .slider-btn:hover{background-color:var(--tpg-primary-color);border-color:var(--tpg-primary-color);color:#fff}.rt-tpg-container .swiper-navigation .slider-btn:focus{box-shadow:none;outline:0}.rt-tpg-container .swiper-navigation .slider-btn.swiper-button-next{margin-left:3px}.rt-tpg-container .swiper-navigation .swiper-button-next:after,.rt-tpg-container .swiper-navigation .swiper-button-prev:after{font-size:inherit}.rt-tpg-container .tpg-cf-group-title{font-size:16px;margin-bottom:0!important}.rt-tpg-container .tpg-cf-fields{font-size:95%;line-height:1.6;margin-top:0}.tpg-el-main-wrapper .tpg-cf-wrap{margin:10px 0 0}.rt-tpg-container .tpg-cf-wrap:empty{margin:0}.act-label-style-inline .tgp-cf-field-label{margin-right:8px;min-width:inherit}.act-label-style-inline .tgp-cf-field-label:after{content:":"}.act-label-style-block .tgp-cf-field-label{display:block!important;float:none;margin-right:0;min-width:inherit}.act-label-style-block .tpg-cf-fields{display:block;margin-bottom:5px}.rt-tpg-container .rt-holder .tgp-cf-field-value *{color:inherit;display:inline;margin:0;transition:none}.isotope-term-no-post{min-height:30px}.isotope-term-no-post p{display:none;margin-bottom:0}.tpg-el-main-wrapper.loading{min-height:300px;transition:.4s}.tpg-el-main-wrapper.loading:before{animation:ball-clip-rotate .75s linear infinite;background:transparent;border:2px solid;border-bottom:2px solid transparent;border-radius:100%;color:red;display:inline-block;float:none;height:32px;left:50%;position:absolute;top:50%;width:32px;z-index:9999999999}.tpg-el-main-wrapper .rt-content-loader .offset-left [class*=rt-col]{padding-left:0;padding-right:0}.mfp-fade.mfp-bg{opacity:0;transition:all .15s ease-out}.mfp-fade.mfp-bg.mfp-ready{opacity:.8}.mfp-fade.mfp-bg.mfp-removing{opacity:0}.mfp-fade.mfp-wrap .mfp-content{opacity:0;transition:all .15s ease-out}.mfp-fade.mfp-wrap.mfp-ready .mfp-content{opacity:1}.mfp-fade.mfp-wrap .mfp-content figure{transform:scale(0);transition:all .15s ease-out}.mfp-fade.mfp-wrap.mfp-ready .mfp-content figure{transform:scale(1)}.mfp-fade.mfp-wrap.mfp-removing .mfp-content{opacity:0}.mfp-fade.mfp-wrap .mfp-content .mfp-figure:after{background:none;box-shadow:none}.tpg-single-post-share .rt-tpg-social-share{display:flex;width:100%}i[class*=" flaticon-"]:before,i[class^=flaticon-]:before{font-size:inherit!important}i[class^=tpg-flaticon-]{font-size:16px}.rttpg-block-postgrid{width:100%}.post-meta-tags.tpg-single-post-meta{align-items:center;display:flex}.post-meta-tags.tpg-single-post-meta .author-prefix{margin-right:7px}.z20{z-index:20}.z20,.z50{position:relative}.z50{z-index:50}.z999{position:relative;z-index:999}@media (min-width:1200px){.rt-tpg-isotope .rt-col-lg-4{width:33.3%}}@media (min-width:992px){.rt-tpg-isotope .rt-col-md-4{width:33.3%}}@media (min-width:768px){.rt-tpg-isotope .rt-col-sm-4{width:33.3%}}.rt-tpg-container .rt-holder.rt-sticky{background:#f1fbf6}.md-content .elementor-invisible,.rt-popup-content .elementor-invisible{visibility:visible!important}.text-cetner{text-align:center}.slider-arrow-position-default .slider-layout10-main .swiper-navigation .slider-btn.swiper-button-prev{left:10px}.slider-arrow-position-default .slider-layout10-main .swiper-navigation .slider-btn.swiper-button-next{right:10px}.rtBgOverlay,.rttpg-row-wrap.rttpg-overlay:before,.rttpg-row-wrap .rttpg-row .rttpg-column.rttpg-overlay:before{backface-visibility:hidden;border-radius:inherit;content:"";inset:0;position:absolute;transition:all .3s ease-in-out;z-index:-1}.rttpg-container{margin-left:auto;margin-right:auto;max-width:1200px!important;padding-left:15px;padding-right:15px}.rttpg-container .rttpg-container{padding-left:0;padding-right:0}.rttpg-container .wp-block-image{margin-bottom:30px;margin-top:0}.rttpg-row-wrap.rttpg-overlay{z-index:var(--row-overlay-z-index,1)}.rttpg-row-wrap .rttpg-row-wrap{margin-left:auto!important;margin-right:auto!important}.rttpg-row-wrap{--tpg-d-gap:calc(var(--d-gap-x, 30px)/2);--tpg-t-gap:calc(var(--t-gap-x, 30px)/2);--tpg-m-gap:calc(var(--m-gap-x, 30px)/2)}.rttpg-row-wrap .rttpg-row{--rt-gutter-x:var(--tpg-d-gap);--rt-gutter-y:var(--tpg-d-gap)}.rttpg-row-wrap .rttpg-row .rttpg-column.rttpg-overlay{z-index:var(--column-overlay-z-index,1)}.rttpg-row-wrap.rttpg-block-frontend{width:100%}.rttpg-row-wrap.rttpg-block-frontend .rttpg-row{display:flex;flex-wrap:wrap;margin-left:calc(var(--tpg-d-gap)*-1);margin-right:calc(var(--tpg-d-gap)*-1)}@media (max-width:1023px){.rttpg-row-wrap.rttpg-block-frontend .rttpg-row{margin-left:calc(var(--tpg-t-gap)*-1);margin-right:calc(var(--tpg-t-gap)*-1)}}@media (max-width:767px){.rttpg-row-wrap.rttpg-block-frontend .rttpg-row{margin-left:calc(var(--x-gap-x)*-1);margin-right:calc(var(--x-gap-x)*-1)}}.rttpg-row-wrap.rttpg-block-frontend .rttpg-row>.rttpg-column{padding-left:var(--tpg-d-gap);padding-right:var(--tpg-d-gap)}@media (max-width:1023px){.rttpg-row-wrap.rttpg-block-frontend .rttpg-row>.rttpg-column{padding-left:var(--tpg-t-gap);padding-right:var(--tpg-t-gap)}}@media (max-width:767px){.rttpg-row-wrap.rttpg-block-frontend .rttpg-row>.rttpg-column{padding-left:var(--x-gap-x);padding-right:var(--x-gap-x)}}.rttpg-row-wrap.rttpg-block-editor{margin-left:auto!important;margin-right:auto!important}@media (max-width:1023px){.rttpg-row-wrap.rttpg-block-editor{max-width:984px}}@media (max-width:767px){.rttpg-row-wrap.rttpg-block-editor{max-width:564px}}.rttpg-row-wrap.rttpg-block-editor>.rttpg-container>.rttpg-row>.block-editor-inner-blocks>.block-editor-block-list__layout{display:flex;flex-wrap:wrap;margin-left:calc(var(--tpg-d-gap)*-1);margin-right:calc(var(--tpg-d-gap)*-1)}@media (max-width:1023px){.rttpg-row-wrap.rttpg-block-editor>.rttpg-container>.rttpg-row>.block-editor-inner-blocks>.block-editor-block-list__layout{margin-left:calc(var(--tpg-t-gap)*-1);margin-right:calc(var(--tpg-t-gap)*-1)}}@media (max-width:767px){.rttpg-row-wrap.rttpg-block-editor>.rttpg-container>.rttpg-row>.block-editor-inner-blocks>.block-editor-block-list__layout{margin-left:calc(var(--x-gap-x)*-1);margin-right:calc(var(--x-gap-x)*-1)}}.rttpg-row-wrap.rttpg-block-editor>.rttpg-container>.rttpg-row>.block-editor-inner-blocks>.block-editor-block-list__layout>*>div{padding-left:var(--tpg-d-gap);padding-right:var(--tpg-d-gap)}@media (max-width:1023px){.rttpg-row-wrap.rttpg-block-editor>.rttpg-container>.rttpg-row>.block-editor-inner-blocks>.block-editor-block-list__layout>*>div{padding-left:var(--tpg-t-gap);padding-right:var(--tpg-t-gap)}}@media (max-width:767px){.rttpg-row-wrap.rttpg-block-editor>.rttpg-container>.rttpg-row>.block-editor-inner-blocks>.block-editor-block-list__layout>*>div{padding-left:var(--x-gap-x);padding-right:var(--x-gap-x)}}.rttpg-row-wrap.rttpg-block-editor .block-editor-inner-blocks{width:100%}.rttpg-row-wrap.rttpg-block-editor .block-editor-inner-blocks .block-editor-block-list__layout .rttpg-column>.block-editor-inner-blocks>.block-list-appender{max-width:100%;width:100%}.rttpg-row-wrap.rttpg-block-editor .block-editor-inner-blocks .block-editor-block-list__layout .rttpg-column>.block-editor-inner-blocks>.block-editor-block-list__layout>.block-list-appender.wp-block{max-width:none}.rttpg-row-wrap>.rttpg-row>.block-editor-inner-blocks{margin-left:auto!important;margin-right:auto!important}.rttpg-body-wrap.rttpg-row-editor .rttpg-row-wrap.alignfull,.rttpg-body-wrap.rttpg-row-frontend .rttpg-row-wrap.alignfull{margin-left:auto!important;margin-right:auto!important;width:100%}@media (min-width:1024px){body .rttpg-column.rttpg-block-frontend.rttpg-hide-desktop,body .rttpg-row-wrap.rttpg-block-frontend.rttpg-hide-desktop{display:none!important}}@media (min-width:768px) and (max-width:1023px){body .rttpg-column.rttpg-block-frontend.rttpg-hide-tablet,body .rttpg-row-wrap.rttpg-block-frontend.rttpg-hide-tablet{display:none!important}}@media (max-width:767px){body .rttpg-column.rttpg-block-frontend.rttpg-hide-mobile,body .rttpg-row-wrap.rttpg-block-frontend.rttpg-hide-mobile{display:none!important}}.rttpg-row{margin-left:auto;margin-right:auto}.wp-block-rttpg-row{margin:0}.rttpg-block-postgrid .rttpg-row>.block-editor-inner-blocks>.block-editor-block-list__layout>.block-editor-block-list__block{border:1px dotted transparent;box-sizing:border-box}.rttpg-block-postgrid .rttpg-row>.block-editor-inner-blocks>.block-editor-block-list__layout>.block-editor-block-list__block:hover{border:1px dotted #565656}@media (min-width:992px){.rttpg-block-postgrid .rttpg-row>.block-editor-inner-blocks>.block-editor-block-list__layout>.block-editor-block-list__block:not(:first-child){border-left:none}}.rttpg-container .rttpg-container,.wp-block-rttpg-row .rttpg-block-postgrid .rttpg-block-postgrid{max-width:100%!important;width:100%!important}.elementor-container .rt-container,.elementor-container .rt-container-fluid{padding-left:0;padding-right:0}.tpg-even.grid-behaviour{align-items:flex-start}.grid-layout2.tpg-even,.grid-layout6 .tpg-even.grid-behaviour,.tpg-full-height{align-items:inherit}.tpg-el-main-wrapper .tpg-post-holder{height:100%}.grid_hover-layout9-2-main .tpg-even .rt-holder,.grid_hover-layout9-main .tpg-even .rt-holder,.list-layout1-main .tpg-even .rt-holder,.tpg-el-main-wrapper .tpg-even .rt-holder{display:block}.rt-el-post-meta span.author{margin-bottom:2px}.rt-tpg-container .rt-detail .tpg-excerpt{margin-top:-5px}.tpg-el-main-wrapper .slider_layout_wrapper .tpg-post-holder{margin-top:1px}.tpg-el-main-wrapper .grid-layout5 .tpg-post-holder,.tpg-el-main-wrapper .grid-layout6 .tpg-post-holder,.tpg-el-main-wrapper .slider_layout_wrapper .tpg-post-holder{height:auto}.rt-tpg-container .rt-el-content-wrapper{transition:background-color .4s ease-in-out}.rt-tpg-container .slider-layout13 .rt-el-content-wrapper{padding-bottom:30px}.rt-tpg-container .tpg-post-holder .read-more a,.rt-tpg-social-share a i,.tpg-el-main-wrapper .post-meta-tags a,.tpg-el-main-wrapper .post-meta-tags img,.tpg-el-main-wrapper .post-meta-tags span,.tpg-el-main-wrapper .rt-holder:hover .post-meta-tags i,.tpg-el-main-wrapper .tpg-el-excerpt *,.tpg-el-main-wrapper .tpg-el-image-wrap .overlay,.tpg-el-main-wrapper .tpg-el-image-wrap img,.tpg-el-main-wrapper .tpg-post-holder,.tpg-separate-category .categories-links,.tpg-separate-category .categories-links i{transition:.4s ease-in-out}.tpg-cat-style4 .tpg-el-main-wrapper .categories-links a{color:var(--tpg-primary-color,#4f4c5e)!important}.tpg-el-main-wrapper .rt-content-loader [class*=rt-col]{margin-top:0;padding-bottom:30px}.tpg-el-main-wrapper .entry-title a{color:inherit!important;font-size:inherit!important;font-weight:inherit!important;text-decoration:none;transition:none!important}.tpg-el-main-wrapper .entry-title a:focus{border:none;box-shadow:none}.tpg-el-main-wrapper .entry-title:hover{color:var(--tpg-primary-color,#0d6efd)}.tpg-widget-heading-wrapper .tpg-widget-heading a{color:inherit}.section-title-align-center .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left,.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left{display:block;margin-left:0;margin-right:15px}.section-title-align-center .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading:before{display:none}.section-title-align-center .tpg-widget-heading-wrapper .tpg-widget-heading{margin:0;padding:0}.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-right{display:none}.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading{padding-left:15px;padding-right:0}.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading:before{left:0;right:auto}.section-title-align-left .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before{display:none}.section-title-align-left .tpg-widget-heading-wrapper.heading-default,.section-title-align-left .tpg-widget-heading-wrapper.heading-style2,.section-title-align-left .tpg-widget-heading-wrapper.heading-style3{justify-content:flex-start}.section-title-align-center .tpg-widget-heading-wrapper.heading-default,.section-title-align-center .tpg-widget-heading-wrapper.heading-style2,.section-title-align-center .tpg-widget-heading-wrapper.heading-style3{justify-content:center}.section-title-align-right .tpg-widget-heading-wrapper.heading-default,.section-title-align-right .tpg-widget-heading-wrapper.heading-style2,.section-title-align-right .tpg-widget-heading-wrapper.heading-style3{justify-content:flex-end}.section-title-align-right .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:after{display:none}.tpg-widget-heading-wrapper .external-link{align-items:center;color:#646464;display:flex;gap:11px;justify-content:center;position:absolute;right:0;top:2px}.tpg-widget-heading-wrapper .external-link:hover{color:var(--tpg-primary-color,#0d6efd)}.tpg-widget-heading-wrapper .external-link i{color:inherit;font-size:115%}[dir=rtl] .tpg-widget-heading-wrapper .external-link i{display:block;transform:rotate(-180deg)}.has-external-link .tpg-widget-heading-wrapper{padding-right:115px}.title-one-line .entry-title,.title-three-line .entry-title,.title-two-line .entry-title{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis}.title-one-line .entry-title{-webkit-line-clamp:1}.title-two-line .entry-title{-webkit-line-clamp:2}.title-three-line .entry-title{-webkit-line-clamp:3}.rt-tpg-container .rt-el-post-meta{align-content:baseline;color:#646464;display:inline-flex;flex-wrap:wrap;font-size:15px;margin-bottom:13px}.rt-el-post-meta a,.rt-el-post-meta a:active,.rt-el-post-meta a:focus{color:inherit}.rt-el-post-meta a:hover{color:var(--tpg-primary-color,#0d6efd)}.rt-tpg-container .rt-el-post-meta i{line-height:1;margin-right:8px;margin-top:-1px}.rt-tpg-container .offset-right .rt-el-post-meta{margin-top:-6px}.tpg-el-main-wrapper .tpg-el-image-wrap img{height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.editor-styles-wrapper .wp-block-freeform .tpg-el-image-wrap img,.editor-styles-wrapper .wp-block .tpg-el-image-wrap img{border-radius:0}@media (max-width:767px){.tpg-el-main-wrapper .tpg-el-image-wrap img{width:100%!important}}.tpg-el-main-wrapper .tpg-el-image-wrap a.tpg-post-link{height:100%;width:100%}.tpg-el-main-wrapper .tpg-el-image-wrap .overlay{height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%}.tpg-el-main-wrapper .rt-grid-hover-item .tpg-el-image-wrap .overlay.grid-hover-content{display:none!important;opacity:0;visibility:hidden}.tpg-el-main-wrapper .tpg-post-holder .tpg-el-image-wrap .overlay.show-on-hover,.tpg-el-main-wrapper .tpg-post-holder:hover .tpg-el-image-wrap .overlay.hide-on-hover{opacity:0!important}.tpg-el-main-wrapper .tpg-post-holder:hover .tpg-el-image-wrap .overlay.show-on-hover{opacity:1!important}.tpg-el-main-wrapper .post-meta-tags span{align-items:center;display:inline-flex;flex-wrap:wrap;font-weight:300}.tpg-el-main-wrapper .post-meta-tags a{margin-bottom:0}.tpg-el-main-wrapper .post-meta-tags span img+span.author-prefix{padding-left:3px}.tpg-el-main-wrapper .post-meta-tags span.author-prefix{padding-right:5px}.tpg-el-main-wrapper .post-meta-tags span img{border-radius:50%;display:inline-block;height:25px;margin-right:14px;margin-top:-2%;-o-object-fit:contain;object-fit:contain;width:25px}.post-meta-tags span.separator:last-of-type{display:none}body .readmore-btn-only-text .rt-tpg-container .tpg-post-holder .read-more a,body .readmore-btn-only-text .rt-tpg-container .tpg-post-holder .read-more a:hover{background:none!important;border:none!important;padding:0!important}.rt-tpg-container .tpg-post-holder .read-more a i{transition:margin .4s ease-in-out}.rt-tpg-container .tpg-post-holder .read-more a i[class*=flaticon]{line-height:1;padding-top:2px}.rt-tpg-container .tpg-post-holder .read-more a i.left-icon{margin-right:5px}.rt-tpg-container .tpg-post-holder .read-more a i.right-icon{margin-left:5px}.tpg-el-box-border-disable .rt-tpg-container .rt-holder{border:none;box-shadow:none!important}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{display:flex;justify-content:space-between}.tpg-filter-alignment-left .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{align-items:flex-start}.tpg-filter-alignment-center .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{align-items:center}.tpg-filter-alignment-right .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{align-items:flex-end}.tpg-filter-h-alignment-left .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:flex-start}.tpg-filter-h-alignment-center .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:center}.tpg-filter-h-alignment-right .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:flex-end}.tpg-filter-h-alignment-space-between .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:space-between}.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input{min-width:202px}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{margin-right:15px}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap div:last-child{margin-right:0}@media (max-width:1023px){.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{text-align:center}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper{align-items:center;display:flex;flex-wrap:wrap;justify-content:center}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper .rt-order-by-action{order:-1}}@media (max-width:991px){.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{flex-direction:column}}@media (max-width:600px){.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{margin-right:0}.tpg-filter-type-dropdown .rt-filter-wrap .filter-left-wrapper{display:flex;justify-content:center}.tpg-el-main-wrapper .rt-filter-item-wrap.rt-tax-filter.rt-filter-dropdown-wrap{margin-bottom:4px}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{flex-direction:column}}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap{min-height:38px}.tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper{display:flex;flex-direction:column;overflow:hidden}.tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper-flex{display:flex;flex-direction:row}.title_position_above_image .tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper .tpg-el-image-wrap{margin:0 -15px 15px}.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper .entry-title{margin-bottom:0;transition:.4s}.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper .tpg-separate-category,.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper .tpg-separate-category.above_title a{margin-bottom:5px}.tpg-el-main-wrapper .rt-holder .tpg-el-excerpt{order:5}.tpg-el-main-wrapper .rt-holder .tpg-event-date{margin-bottom:10px;order:7}.tpg-el-main-wrapper .rt-holder .tpg-event-date h4{font-size:1.2em;line-height:1;margin-bottom:10px}.tpg-el-main-wrapper .rt-holder .rt-tpg-social-share{order:10}.tpg-el-main-wrapper .rt-tpg-social-share a{margin-right:10px}.tpg-el-main-wrapper .rt-holder .post-footer{margin-bottom:15px;order:11}.title_position_above_image .tpg-el-main-wrapper .rt-holder .entry-title-wrapper{order:-5}.title_position_below_image .tpg-el-main-wrapper .rt-holder .tpg-el-image-wrap{order:-8}.title_position_below_image .tpg-el-main-wrapper .rt-holder .entry-title-wrapper{order:2}.title_position_above_image.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:-6}.title_position_above_image.meta_position_below_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:-4}.title_position_below_image.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:1}.title_position_below_image.meta_position_below_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:3}.meta_position_below_excerpt .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:6}.meta_position_above_excerpt .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:4}.title_position_default.meta_position_above_title .tpg-el-main-wrapper .rt-holder .tpg-el-image-wrap{order:-2}.title_position_default.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:-1}.title_hover_border_enable .rt-tpg-container .entry-title-wrapper .entry-title a{background:linear-gradient(180deg,var(--tpg-primary-color,#0d6efd) 0,var(--tpg-primary-color,#0d6efd) 98%);background-position:left 100%;background-repeat:no-repeat;background-size:0 2px;transition:background .4s!important}.title_hover_border_enable .rt-tpg-container .entry-title-wrapper .entry-title:hover a{background-size:100% 2px}.title_hover_border_disable .rt-tpg-container .entry-title-wrapper .entry-title a{background:none!important}.rt-tpg-container .post-right-content{display:flex;flex-direction:column}.rt-tpg-container .list-layout-wrapper .post-right-content{flex:1}.rt-tpg-container .list-layout-wrapper .post-right-content>div:last-child{margin-bottom:0}.tpg-separate-category.style1 .rt-separator{margin-right:4px}.tpg-category-position-default .grid-layout4 .rt-detail .entry-title-wrapper .tpg-separate-category,.tpg-category-position-default .grid_hover-layout11 .rt-detail .entry-title-wrapper .tpg-separate-category,.tpg-is-author-icon-hide .post-meta-tags span.author i,.tpg-is-author-icon-hide .post-meta-tags span.author img{display:none}.rt-tpg-container .rt-holder .rt-img-holder .tpg-zoom{left:50%;opacity:0;position:absolute;top:60%;transform:translate(-50%,-50%);visibility:hidden;z-index:99}.rt-tpg-container .rt-holder:hover .rt-img-holder .tpg-zoom{opacity:1;top:50%;visibility:visible}.rt-tpg-container .rt-holder .rt-img-holder .tpg-zoom i{align-items:center;background:hsla(0,0%,100%,.8);border:0 solid;border-radius:50%;box-sizing:border-box;color:var(--tpg-primary-color,#0d6efd);display:inline-flex;font-size:20px;height:50px;justify-content:center;line-height:40px;margin-right:0;padding:5px;text-align:center;transition:.4s;width:50px}.rt-tpg-container .rt-holder .rt-img-holder .tpg-zoom i:hover{background:var(--tpg-primary-color,#0d6efd);color:#fff}@media (min-width:992px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+7) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+8) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}@media (min-width:1200px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}@media (min-width:768px) and (max-width:991px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+7) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+8) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}@media (max-width:768px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+7) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+8) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}.rt-tpg-container .grid-layout4 .rt-holder .tpg-el-image-wrap,.rt-tpg-container .grid-layout5 .rt-holder .tpg-el-image-wrap,.rt-tpg-container .grid-layout6 .rt-holder .tpg-el-image-wrap{margin:0 0 15px}.rt-tpg-container .grid-layout4 .cat-over-image a,.rt-tpg-container .grid-layout5 .tpg-separate-category a,.rt-tpg-container .list-layout4 .tpg-separate-category a{align-items:center;background-color:var(--tpg-primary-color,#0d6efd);color:#fff;display:inline-flex;font-size:12px;justify-content:center;line-height:1;margin-bottom:0;margin-right:5px;min-height:24px;padding:0 8px}.rt-tpg-container .grid-layout4 .cat-over-image a:hover,.rt-tpg-container .grid-layout5 .tpg-separate-category a:hover,.rt-tpg-container .list-layout4 .tpg-separate-category a:hover{background:var(--tpg-secondary-color,#0654c4)}.rt-tpg-container .grid-layout4 .cat-over-image a:hover:after,.rt-tpg-container .grid-layout5 .tpg-separate-category.style3 a:hover:after,.rt-tpg-container .list-layout4 .tpg-separate-category.style3 a:hover:after{border-top-color:var(--tpg-secondary-color,#0654c4)}.rt-tpg-container .grid-layout4 .cat-over-image .rt-separator,.rt-tpg-container .grid-layout5 .tpg-separate-category .rt-separator{display:none}.rt-tpg-container .grid-layout1 .rt-holder,.rt-tpg-container .grid-layout3 .rt-holder{background:#fff;box-shadow:0 0 2px 0 rgba(0,0,0,.3);-webkit-box-shadow:0 0 2px 0 rgba(0,0,0,.3);-moz-box-shadow:0 0 2px 0 rgba(0,0,0,.3)}.tpg-el-main-wrapper .grid-layout2 .rt-holder .rt-el-content-wrapper-flex{height:100%;padding:0}.rt-tpg-container .grid-layout2 .rt-holder .tpg-el-image-wrap{flex:0 0 50%;margin:0;max-width:50%}.rt-tpg-container .grid-layout2 .rt-holder .post-right-content{flex-grow:1;flex:0 0 50%;max-width:50%;padding:15px}.tpg-el-main-wrapper .grid-layout2 [class*=rt-col]{padding:0}@media (max-width:500px){.tpg-el-main-wrapper .grid-layout2 .rt-el-content-wrapper-flex,.tpg-post-order-reverse .rt-tpg-container .rt-row .rt-col-xs-12:nth-child(2n) .rt-el-content-wrapper-flex{display:block}.rt-tpg-container .grid-layout2 .rt-holder .post-right-content,.rt-tpg-container .grid-layout2 .rt-holder .tpg-el-image-wrap{flex:inherit;margin:0;max-width:100%}.tpg-el-main-wrapper .grid-layout2 [class*=rt-col]{margin-bottom:15px}}.rt-tpg-container .grid-layout3 .rt-holder{border-radius:4px;overflow:hidden}.meta_position_default .tpg-el-main-wrapper .grid-layout3 .rt-holder .rt-el-post-meta{order:12;padding-bottom:5px;padding-top:20px;position:relative}.meta_position_default .tpg-el-main-wrapper .grid-layout3 .rt-holder .rt-el-post-meta:before{background:#ddd;content:"";height:1px;left:-50px;position:absolute;right:-50px;top:0;width:calc(100% + 100px)}.rt-tpg-container .grid-layout4 .entry-title-wrapper .entry-title{font-size:22px;font-weight:500;line-height:32px}.tpg-el-main-wrapper .grid-layout4 .tpg-el-image-wrap img{height:230px;width:100%}.rt-tpg-container .grid-layout4 .rt-holder .rt-detail{padding:0}.tpg-el-main-wrapper .list-layout-wrapper .rt-holder .rt-el-content-wrapper{display:flex;flex-direction:row;height:100%;padding:0}.tpg-el-main-wrapper.list-layout1-main .list-layout-wrapper .rt-holder .rt-el-content-wrapper{align-items:flex-start}.tpg-el-main-wrapper.list-layout1-2-main .list-layout1 .rt-holder .rt-el-content-wrapper{flex-direction:row-reverse}.rt-tpg-container .list-layout1 .rt-holder .tpg-el-image-wrap{flex:0 0 260px;margin:0 30px 0 0}@media (max-width:991px){.rt-tpg-container .list-layout1 .rt-holder .tpg-el-image-wrap{flex:0 0 120px}}.tpg-el-main-wrapper.list-layout1-2-main .list-layout1 .rt-holder .tpg-el-image-wrap{margin:0 0 0 30px}.rt-tpg-container .list-layout1 .rt-detail .read-more a,.rt-tpg-container .list-layout2 .rt-detail .read-more a,.rt-tpg-container .list-layout3 .rt-detail .read-more a{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff}.rt-tpg-container .list-layout1 .rt-detail .read-more a:hover,.rt-tpg-container .list-layout2 .rt-detail .read-more a:hover,.rt-tpg-container .list-layout3 .rt-detail .read-more a:hover,.rt-tpg-container .list-layout4 .rt-detail .read-more a:hover{background-color:var(--tpg-secondary-color,#0654c4);border-color:var(--tpg-secondary-color,#0654c4);color:#fff}.tags-visibility-default .list-layout1 .post-tags-links,.tags-visibility-default .list-layout1 .post-tags-links+.separator{display:none}.rt-tpg-container .list-layout-wrapper .offset-right .rt-row{display:flex;flex-wrap:wrap;max-width:100%;overflow:hidden;width:100%}.rt-tpg-container .list-layout-wrapper.list-layout3 .offset-right .rt-row .rt-list-item{margin-bottom:15px}.tpg-el-main-wrapper .list-layout2 .offset-left .tpg-el-image-wrap{height:300px}.tpg-el-main-wrapper .list-layout-wrapper .offset-left .rt-holder .rt-el-content-wrapper{flex-direction:column}.rt-tpg-container .list-layout-wrapper .offset-left .rt-holder .tpg-el-image-wrap{flex:inherit;margin:0 0 15px}.tpg-el-main-wrapper .list-layout-wrapper .offset-right .tpg-el-image-wrap{height:100px}.rt-tpg-container .list-layout-wrapper .offset-left .entry-title-wrapper .entry-title{font-size:24px}.rt-tpg-container .list-layout-wrapper .offset-right .entry-title-wrapper .entry-title{font-size:18px}.tpg-el-main-wrapper.list-layout2-2-main .list-layout2,.tpg-el-main-wrapper.list-layout3-2-main .list-layout3,.tpg-el-main-wrapper.list-layout5-2-main .list-layout5 .rt-holder .rt-el-content-wrapper{flex-direction:row-reverse}.tpg-el-main-wrapper .list-layout-wrapper.list-layout2 .rt-holder .rt-el-content-wrapper,.tpg-el-main-wrapper .list-layout-wrapper.list-layout2-2 .rt-holder .rt-el-content-wrapper,.tpg-el-main-wrapper .list-layout-wrapper.list-layout2-3 .rt-holder .rt-el-content-wrapper,.tpg-el-main-wrapper .list-layout-wrapper.list-layout3 .rt-holder .rt-el-content-wrapper{align-items:flex-start!important}.tags-visibility-default .list-layout2 .post-tags-links,.tags-visibility-default .list-layout2 .post-tags-links+.separator{display:none}.rt-tpg-container .list-layout2 .offset-right .rt-holder .tpg-el-image-wrap{flex:0 0 107px;margin:0 15px 0 0;max-width:107px}.tpg-el-main-wrapper .list-layout3 .offset-right .rt-holder .tpg-el-excerpt{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis}.tpg-el-main-wrapper .list-layout3 [class*=rt-col]{padding-bottom:15px}.tpg-el-main-wrapper .list-layout3 .offset-left .tpg-el-image-wrap{height:390px}.rt-tpg-container .list-layout3 .offset-right .rt-holder .tpg-el-image-wrap{flex:0 0 140px;height:110px;margin:0 15px 0 0;max-width:140px}.tpg-el-main-wrapper .list-layout-wrapper.list-layout4 .rt-el-content-wrapper{align-items:inherit!important}.rt-tpg-container .list-layout4 .post-right-content,.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{flex:0 0 50%;margin:0}@media (min-width:768px){.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{height:400px}}.rt-tpg-container .list-layout4 .post-right-content{display:flex;justify-content:center;margin:0;padding:30px 50px;text-align:center}.rt-tpg-container .list-layout4 .entry-title-wrapper .categories-links .rt-separator{display:none}.tpg-el-main-wrapper .list-layout4 [class*=rt-col]{padding-bottom:0}@media (min-width:768px){.tpg-el-main-wrapper .list-layout4 [class*=rt-col]:nth-child(2n) .rt-holder .rt-el-content-wrapper{flex-direction:row-reverse}}@media (max-width:768px){.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{flex:0 0 150px;height:120px}.rt-tpg-container .list-layout4 .post-right-content{flex:inherit;flex-grow:1;padding:0 0 0 20px;text-align:left}.tpg-el-main-wrapper .list-layout-wrapper.list-layout4 .rt-holder .rt-el-content-wrapper{align-items:flex-start!important}.tpg-el-main-wrapper .list-layout4 [class*=rt-col]{margin-bottom:30px}}@media (max-width:500px){.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{flex:0 0 100px;height:100px}}.rt-tpg-container .list-layout5 .post-right-content{display:block;overflow:hidden;padding-left:20px}.tpg-el-main-wrapper.list-layout5-2-main .list-layout5 .post-right-content{padding-left:0;padding-right:20px}.rt-tpg-container .list-layout5 .rt-holder .rt-img-holder{border-radius:50%;flex:0 0 100px;height:100px;margin-top:8px}.rt-tpg-container .list-layout5 .entry-title-wrapper .entry-title{font-size:18px}.tags-visibility-default .list-layout5 .rt-el-post-meta{color:#a5a6aa;font-size:14px}.list-layout5 .entry-title-wrapper .tpg-separate-category .categories-links{color:#7a7e83;font-size:14px;font-weight:500}.list-layout5 .entry-title-wrapper .tpg-separate-category .categories-links a{color:inherit}.tpg-el-main-wrapper .list-layout5 [class*=rt-col]{padding-bottom:30px}.rt-tpg-container .list-layout5 .post-right-content{flex:1}.grid_hover_layout_wrapper .rt-row-inner{display:flex;flex-wrap:wrap}.rt-tpg-container .rt-grid-hover-item .entry-title-wrapper .entry-title{font-size:20px;line-height:1.4}.tpg-el-main-wrapper .rt-grid-hover-item .rt-holder .rt-el-content-wrapper{height:100%;overflow:hidden;padding:0;position:relative;width:100%}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content{bottom:0;display:flex;flex-direction:column;justify-content:flex-end;left:0;min-height:56px;padding:30px 30px 15px;position:absolute;right:0;transition:1.2s;width:100%;z-index:1}.rt-tpg-container.slider-layout8-main .rt-grid-hover-item .rt-holder .grid-hover-content{border:20px solid transparent;max-height:100%;padding:5px 20px}.rt-tpg-container.slider-layout8-main .rt-grid-hover-item .rt-holder:hover .grid-hover-content{border-color:hsla(0,0%,100%,.5)}.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content{padding-bottom:15px}.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content>div:last-of-type{margin-bottom:0}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before{background:rgba(0,0,0,.7);bottom:0;content:"";height:100%;left:0;position:absolute;right:0;transition:.4s ease-in-out;width:100%;z-index:-1}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after{background:rgba(0,0,0,.5)}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content:before{opacity:0;visibility:hidden}.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content:after{opacity:1;visibility:visible}.rt-tpg-container .rt-grid-hover-item .entry-title-wrapper .entry-title,.rt-tpg-container .rt-grid-hover-item .rt-el-post-meta,.rt-tpg-container .rt-grid-hover-item .rt-el-post-meta a,.rt-tpg-container .rt-grid-hover-item .rt-holder .tpg-el-excerpt{color:#fff}.grid_hover-layout11-main .rt-grid-hover-item .entry-title-wrapper .entry-title,.grid_hover-layout11-main .rt-grid-hover-item .rt-el-post-meta,.grid_hover-layout11-main .rt-grid-hover-item .rt-el-post-meta a,.grid_hover-layout11-main .rt-grid-hover-item .rt-holder .tpg-el-excerpt,.slider-layout9-main .rt-grid-hover-item .entry-title-wrapper .entry-title,.slider-layout9-main .rt-grid-hover-item .rt-el-post-meta,.slider-layout9-main .rt-grid-hover-item .rt-el-post-meta a,.slider-layout9-main .rt-grid-hover-item .rt-holder .tpg-el-excerpt{color:#000}.grid_hover-layout11-main .rt-grid-hover-item .entry-title-wrapper .entry-title:hover,.rt-tpg-container .rt-grid-hover-item a:hover{color:var(--tpg-primary-color,#0d6efd)}.rt-tpg-container .rt-grid-hover-item .rt-holder .tpg-el-image-wrap{margin:0}.rt-grid-hover-item .tpg-el-image-wrap{height:100%}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder .grid-hover-content .entry-title-wrapper .entry-title:before{transition:.5s ease-in-out;width:0}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content .entry-title-wrapper .entry-title:before{width:50%}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder .grid-hover-content{opacity:0;transition:.5s ease-in-out}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:1}.grid-hover-overlay-type-fadeout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:0}.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-holder .grid-hover-content{left:-100%;transition:.5s ease-in-out}.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{left:0}.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{left:100%}.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before{transition:.5s ease-in-out}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before{background:var(--tpg-primary-color,#0d6efd);opacity:1;visibility:visible}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after{content:none}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content{height:100%}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .tpg-el-image-wrap,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .rt-img-holder{transition:all .5s}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder img{transform:none!important}.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder .grid-hover-content,.grid-hover-overlay-type-zoomout-on-hover .rt-tpg-container .rt-holder .grid-hover-content{transition:.5s ease-in-out}.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder .grid-hover-content,.grid-hover-overlay-type-zoomout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:0;transform:scale(0)}.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:1;transform:scale(1)}.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder .grid-hover-content *,.grid-hover-overlay-type-zoomoutall-on-hover .rt-tpg-container .rt-holder .grid-hover-content *{transition:.4s ease-in-out!important}.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder .grid-hover-content *,.grid-hover-overlay-type-zoomoutall-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content *{opacity:0;transform:scale(0)}.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content *{opacity:1;transform:scale(1)}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content{backface-visibility:hidden;opacity:0;transform:rotateY(-180deg)}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .grid-hover-content{backface-visibility:visible;opacity:1;transform:rotateY(0deg)}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .grid-hover-content{opacity:0;transform:rotateY(180deg);visibility:hidden}.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .rt-img-holder{backface-visibility:hidden;opacity:0;transform:rotateY(-180deg)}.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder{backface-visibility:visible;opacity:1;transform:rotateY(0deg)}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .post-footer,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-el-post-meta,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-tpg-social-share,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .tpg-el-excerpt{margin-bottom:0;max-height:0;opacity:0;transition:.6s;visibility:hidden}.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .grid-hover-content>div,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .post-footer,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-el-post-meta,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-tpg-social-share,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .tpg-el-excerpt{margin-bottom:15px}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-el-post-meta{transition:all .6s,opacity .6s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .tpg-el-excerpt{transition:all .6s,opacity .5s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .post-footer{transition:all .6s,opacity .4s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-tpg-social-share{transition:all .6s,opacity .3s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-el-post-meta{margin-bottom:15px;max-height:var(--tpg-meta-height,80px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .grid-hover-content>div:last-child{margin-bottom:0!important}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .tpg-el-excerpt{max-height:var(--tpg-excerpt-height,140px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper .rt-holder:hover .rt-tpg-social-share{margin-bottom:15px;max-height:var(--tpg-share-height,50px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .post-footer{max-height:var(--tpg-footer-height,50px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .post-footer,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .rt-el-post-meta,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .rt-tpg-social-share,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .tpg-el-excerpt,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout5 .rt-grid-hover-item .rt-holder .rt-el-post-meta{max-height:inherit;opacity:1;visibility:visible}.meta-visibility-default .rt-tpg-container .grid_hover-layout1 .rt-grid-hover-item .rt-holder .rt-el-post-meta{max-height:inherit}.rt-tpg-container .grid_hover-layout1 .rt-holder .tpg-el-image-wrap{height:300px}.grid-hover-overlay-height-full .rt-tpg-container .rt-content-loader .rt-grid-hover-item .rt-holder .grid-hover-content{min-height:100%}.grid-hover-overlay-height-full .rt-tpg-container.grid_hover-layout2-main .rt-content-loader .rt-grid-hover-item .rt-holder .grid-hover-content{min-height:calc(100% - 30px)}.hover-overlay-height-default .rt-tpg-container .grid_hover-layout1 .rt-grid-hover-item .rt-holder:hover .grid-hover-content,.hover-overlay-height-full .rt-tpg-container .rt-content-loader .rt-grid-hover-item .rt-holder:hover .grid-hover-content{min-height:100%;transition:.5s}.rt-tpg-container .grid_hover-layout1 .entry-title-wrapper .entry-title{font-size:20px;line-height:1.4}.meta-visibility-default .rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .rt-el-post-meta{margin-bottom:7px;max-height:inherit}.rt-tpg-container .grid_hover-layout2 .rt-holder .tpg-el-image-wrap img{height:300px}.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .post-footer,.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .tpg-el-excerpt,.tpg-el-main-wrapper .grid_hover-layout2 .rt-holder .rt-tpg-social-share{margin-bottom:0;max-height:0;overflow:hidden;transition:.6s}.tpg-el-main-wrapper .grid_hover-layout2 .rt-holder:hover .rt-tpg-social-share{margin-bottom:15px;max-height:50px}.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder:hover .post-footer{max-height:50px}.hover-overlay-height-full .rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder:hover .grid-hover-content{min-height:100%}.hover-overlay-height-full .rt-tpg-container.grid_hover-layout2-main .grid_hover-layout2 .rt-grid-hover-item .rt-holder:hover .grid-hover-content{min-height:calc(100% - 30px)}.rt-tpg-container .grid_hover-layout2 .rt-holder .grid-hover-content{justify-content:center;margin:15px;padding:20px;text-align:center;width:calc(100% - 30px)}.rt-tpg-container .grid_hover-layout3 .tpg-el-image-wrap{height:300px}.rt-tpg-container .grid_hover-layout3 .rt-grid-hover-item .rt-holder .grid-hover-content{justify-content:center;min-height:100%;padding:20px 30px;text-align:center}.tpg-title-border-show .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title{margin-bottom:20px;position:relative}.tpg-title-border-show .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before{background-color:#fff;bottom:-16px;content:"";height:2px;left:50%;position:absolute;transform:translateX(-50%);transition:.4s;width:50%}.tpg-title-border-show.title-alignment-justify .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before,.tpg-title-border-show.title-alignment-left .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before,.tpg-title-border-show.tpg-wrapper-align-left .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before{left:0;transform:none}.tpg-title-border-show.title-alignment-right .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before,.tpg-title-border-show.tpg-wrapper-align-right .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before{right:0;transform:none}.elementor-template-full-width .site-content .ast-container,.page-template-rttpg_full_width .site-content .ast-container{max-width:100%;padding:0;width:100%}.tpg-el-main-wrapper .tgp-cf-field-label{display:inline-block;float:none}.tpg-el-main-wrapper .tpg-cf-fields{display:block}.tpg-el-main-wrapper .tgp-cf-field-value{display:inline}.tpg-el-main-wrapper .tpg-cf-group-title{color:inherit}.tpg-acf-align-left .rt-tpg-container .acf-custom-field-wrap{text-align:left}.grid-layout6 .acf-custom-field-wrap,.list-layout4 .acf-custom-field-wrap,.tpg-acf-align-center .rt-tpg-container .acf-custom-field-wrap{text-align:center}.tpg-acf-align-right .rt-tpg-container .acf-custom-field-wrap{text-align:right}.tpg-el-main-wrapper .rt-content-loader .tpg-reset-margin{padding:0!important}.rttpg-block-wrapper{margin-left:-15px;margin-right:-15px}.edit-post-visual-editor .rttpg-block-wrapper{margin-left:0;margin-right:0}.page-template-rttpg_canvas,.page-template-rttpg_full_width{overflow-x:hidden}@media (max-width:991px){.tpg-el-main-wrapper .offset-left{margin-bottom:15px}}@media (max-width:767px){.tpg-el-main-wrapper.slider-layout11-main .rt-holder .tpg-el-excerpt,.tpg-el-main-wrapper.slider-layout12-main .rt-holder .tpg-el-excerpt{display:none}}.page-template-rttpg_canvas .rttpg-block-wrapper,.page-template-rttpg_full_width .rttpg-block-wrapper{margin-left:0;margin-right:0}.rttpg-fullwidth-page{width:100vw}@media (min-width:1200px){.rttpg-block-postgrid.alignfull{margin-left:auto;margin-right:auto;max-width:100%;width:100%}.rttpg-block-postgrid.alignwide{margin-left:auto;margin-right:auto;max-width:100%;width:80%}html :where(.wp-block)[data-align=full]{max-width:none!important}}.tpg-prev-next-space-between .rt-pagination-wrap div,.tpg-prev-next-space-between .rt-pagination-wrap ul{width:100%}.tpg-prev-next-space-between .rt-pagination-wrap .rt-pagination .pagination-list,.tpg-prev-next-space-between .rt-pagination-wrap ul{display:flex;justify-content:space-between}.tpg-prev-next-absolute .rt-pagination-wrap{pointer-events:none}.tpg-prev-next-absolute .rt-pagination-wrap a,.tpg-prev-next-absolute .rt-pagination-wrap li{pointer-events:all}.tpg-border-bottom-enable .tpg-el-main-wrapper .tpg-post-holder{border-bottom:1px solid #ddd;padding-bottom:30px}.tpg-border-bottom-enable .tpg-el-main-wrapper [class*=rt-col]:last-child .tpg-post-holder{border-bottom:none!important;padding-bottom:0!important}.swiper{overflow:hidden}.tpg-img-230 .tpg-el-main-wrapper .tpg-el-image-wrap,.tpg-img-230 .tpg-el-main-wrapper .tpg-el-image-wrap img{height:230px!important}.tpg-img-160 .tpg-el-main-wrapper .tpg-el-image-wrap,.tpg-img-160 .tpg-el-main-wrapper .tpg-el-image-wrap img{height:160px!important}.tpg-img-180 .tpg-el-main-wrapper .tpg-el-image-wrap,.tpg-img-180 .tpg-el-main-wrapper .tpg-el-image-wrap img{height:180px!important}.tpg-img-240 .tpg-el-main-wrapper .tpg-el-image-wrap,.tpg-img-240 .tpg-el-main-wrapper .tpg-el-image-wrap img{height:240px!important}.tpg-img-260 .tpg-el-main-wrapper .tpg-el-image-wrap,.tpg-img-260 .tpg-el-main-wrapper .tpg-el-image-wrap img{height:260px!important}.tpg-img-400 .tpg-el-main-wrapper .tpg-el-image-wrap,.tpg-img-400 .tpg-el-main-wrapper .tpg-el-image-wrap img{height:400px!important}.tpg-img-500 .tpg-el-main-wrapper .tpg-el-image-wrap,.tpg-img-500 .tpg-el-main-wrapper .tpg-el-image-wrap img{height:500px!important}.tpg-img-650 .tpg-el-main-wrapper .tpg-el-image-wrap,.tpg-img-650 .tpg-el-main-wrapper .tpg-el-image-wrap img{height:650px!important}@media (min-width:992px){.tpg-img-500 .tpg-el-main-wrapper .tpg-el-image-wrap,.tpg-img-500 .tpg-el-main-wrapper .tpg-el-image-wrap img{height:500px!important}}@media (min-width:1201px){.tpg-list-260 .tpg-el-main-wrapper .tpg-el-image-wrap img{height:260px;width:260px}}.tpg-m-15{margin-bottom:15px!important;margin-top:15px!important}.tpg-m-10{margin-bottom:10px!important;margin-top:10px!important}.tpg-style-1 .rt-tpg-container .rt-holder{border:10px solid #fff;border-radius:7px;box-shadow:0 15px 40px 0 rgba(0,0,0,.25)}.img-radius-4 .rt-tpg-container .rt-holder .rt-img-holder,.tpg-style-1 .rt-tpg-container .rt-holder .rt-img-holder{border-radius:4px}.tpg-reverse .offset-right .rt-holder .rt-el-content-wrapper{flex-direction:row-reverse!important}.tpg-reverse .offset-right .rt-holder .tpg-el-image-wrap{margin:0 0 0 15px!important}.thumb-border-bottom .rt-holder .tpg-el-image-wrap{border-bottom:1px solid #ededed}.offset-image-right .rt-tpg-container .offset-right .rt-holder .rt-el-content-wrapper{flex-direction:row-reverse!important}.offset-image-right .tpg-el-main-wrapper .offset-right .tpg-el-image-wrap{margin:0 0 0 15px!important}.tpg-radius-5{border-radius:5px;overflow:hidden}.tpg-social.elementor-widget-social-icons .elementor-grid{justify-content:stretch;width:100%}.tpg-social .elementor-grid .elementor-grid-item{min-width:0;width:100%}.tpg-social .elementor-icon.elementor-social-icon{width:100%}.tpg-img-160 .tpg-el-main-wrapper .tpg-separate-category .categories-links a{border-radius:3px}.mb-none-all div{margin-bottom:0!important}.tpg-mxa-720 .grid-hover-content>div{margin-left:auto;margin-right:auto;max-width:720px}.z-index{position:relative;z-index:999}@media (min-width:1300px){.tpg-big-1 .tpg-el-main-wrapper .rt-grid-item:nth-child(2),.tpg-big-1 .tpg-el-main-wrapper .rt-grid-item:nth-child(3){width:25%}.tpg-big-1 .tpg-el-main-wrapper .rt-grid-item:first-child{width:50%}.tpg-big-1 .tpg-el-main-wrapper .rt-grid-item:first-child .entry-title a{font-size:130%}.tpg-big-2 .tpg-el-main-wrapper .rt-grid-item:first-child,.tpg-big-2 .tpg-el-main-wrapper .rt-grid-item:nth-child(3){width:25%}.tpg-big-2 .tpg-el-main-wrapper .rt-grid-item:nth-child(2){width:50%}.tpg-big-2 .tpg-el-main-wrapper .rt-grid-item:nth-child(2) .entry-title a{font-size:130%}.tpg-big-3 .tpg-el-main-wrapper .rt-grid-item:first-child,.tpg-big-3 .tpg-el-main-wrapper .rt-grid-item:nth-child(2){width:25%}.tpg-big-3 .tpg-el-main-wrapper .rt-grid-item:nth-child(3){width:50%}.tpg-big-3 .tpg-el-main-wrapper .rt-grid-item:nth-child(3) .entry-title a{font-size:130%}}/*! jQuery UI - v1.12.1 - 2016-09-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
* Copyright jQuery Foundation and other contributors; Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
	pointer-events: none;
}


/* Icons
----------------------------------*/
.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block;
}

/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	font-size: 100%;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: 0;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	margin: 0;
	cursor: pointer;
	/* support: IE10, see #8844 */
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-item-wrapper {
	position: relative;
	padding: 3px 1em 3px .4em;
}
.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item-wrapper {
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}
.ui-button {
	padding: .4em 1em;
	display: inline-block;
	position: relative;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	/* Support: IE <= 11 */
	overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2em;
	box-sizing: border-box;
	text-indent: -9999px;
	white-space: nowrap;
}

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
	text-indent: 0;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
	padding: 0;
	width: 2.1em;
	height: 2.1em;
	text-indent: -9999px;
	white-space: nowrap;

}

input.ui-button.ui-icon-notext .ui-icon {
	width: auto;
	height: auto;
	text-indent: 0;
	white-space: normal;
	padding: .4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.ui-controlgroup {
	vertical-align: middle;
	display: inline-block;
}
.ui-controlgroup > .ui-controlgroup-item {
	float: left;
	margin-left: 0;
	margin-right: 0;
}
.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
	z-index: 9999;
}
.ui-controlgroup-vertical > .ui-controlgroup-item {
	display: block;
	float: none;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	text-align: left;
}
.ui-controlgroup-vertical .ui-controlgroup-item {
	box-sizing: border-box;
}
.ui-controlgroup .ui-controlgroup-label {
	padding: .4em 1em;
}
.ui-controlgroup .ui-controlgroup-label span {
	font-size: 80%;
}
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
	border-left: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
	border-top: none;
}
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
	border-right: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
	border-bottom: none;
}

/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {

	/* Support: IE8 only, Android < 4.4 only */
	width: 75%;
	width: calc( 100% - 2.4em );
}
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
	border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
	box-shadow: inset 1px 1px 1px #ccc;
	border-radius: .12em;
	border: none;
}
.ui-checkboxradio-radio-label .ui-icon-background {
	width: 16px;
	height: 16px;
	border-radius: 1em;
	overflow: visible;
	border: none;
}
.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
	background-image: none;
	width: 8px;
	height: 8px;
	border-width: 4px;
	border-style: solid;
}
.ui-checkboxradio-disabled {
	pointer-events: none;
}
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	left: .5em;
	top: .3em;
}
.ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-n {
	height: 2px;
	top: 0;
}
.ui-dialog .ui-resizable-e {
	width: 2px;
	right: 0;
}
.ui-dialog .ui-resizable-s {
	height: 2px;
	bottom: 0;
}
.ui-dialog .ui-resizable-w {
	width: 2px;
	left: 0;
}
.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
	width: 7px;
	height: 7px;
}
.ui-dialog .ui-resizable-se {
	right: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-sw {
	left: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-ne {
	right: 0;
	top: 0;
}
.ui-dialog .ui-resizable-nw {
	left: 0;
	top: 0;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
	background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
	height: 100%;
	filter: alpha(opacity=25); /* support: IE8 */
	opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
.ui-selectable {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	overflow-x: hidden;
	padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	padding: 2px 0.4em;
	margin: 0.5em 0 0 0;
	height: auto;
	border: 0;
}
.ui-selectmenu-open {
	display: block;
}
.ui-selectmenu-text {
	display: block;
	margin-right: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-selectmenu-button.ui-button {
	text-align: left;
	white-space: nowrap;
	width: 14em;
}
.ui-selectmenu-icon.ui-icon {
	float: right;
	margin-top: 0;
}
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: .222em 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 2em;
}
.ui-spinner-button {
	width: 1.6em;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
	border-top-style: none;
	border-bottom-style: none;
	border-right-style: none;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
}
body .ui-tooltip {
	border-width: 2px;
}
/* Component containers
----------------------------------*/
.ui-widget {
	font-family: Verdana,Arial,sans-serif;
	font-size: 1.1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Verdana,Arial,sans-serif;
	font-size: 1em;
}
.ui-widget.ui-widget-content {
	border: 1px solid #d3d3d3;
}
.ui-widget-content {
	border: 1px solid #aaaaaa;
	background: #ffffff;
	color: #222222;
}
.ui-widget-content a {
	color: #222222;
}
.ui-widget-header {
	border: 1px solid #aaaaaa;
	background: #cccccc url("https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
	color: #222222;
	font-weight: bold;
}
.ui-widget-header a {
	color: #222222;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,

/* We use html here because we need a greater specificity to make sure disabled
works properly when clicked or hovered */
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	border: 1px solid #d3d3d3;
	background: #e6e6e6 url("https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
	font-weight: normal;
	color: #555555;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
	color: #555555;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
	border: 1px solid #999999;
	background: #dadada url("https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;
	font-weight: normal;
	color: #212121;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
	color: #212121;
	text-decoration: none;
}

.ui-visual-focus {
	box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	border: 1px solid #aaaaaa;
	background: #ffffff url("https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
	font-weight: normal;
	color: #212121;
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
	border: #aaaaaa;
	background-color: #212121;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #212121;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #fcefa1;
	background: #fbf9ee url("https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;
	color: #363636;
}
.ui-state-checked {
	border: 1px solid #fcefa1;
	background: #fbf9ee;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #cd0a0a;
	background: #fef1ec url("https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
	color: #cd0a0a;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #cd0a0a;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #cd0a0a;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter:Alpha(Opacity=70); /* support: IE8 */
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter:Alpha(Opacity=35); /* support: IE8 */
	background-image: none;
}
.ui-state-disabled .ui-icon {
	filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url("https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/images/ui-icons_222222_256x240.png");
}
.ui-widget-header .ui-icon {
	background-image: url("https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/images/ui-icons_222222_256x240.png");
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
	background-image: url("https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/images/ui-icons_454545_256x240.png");
}
.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
	background-image: url("https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/images/ui-icons_454545_256x240.png");
}
.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
	background-image: url("https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/images/ui-icons_2e83ff_256x240.png");
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url("https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/images/ui-icons_cd0a0a_256x240.png");
}
.ui-button .ui-icon {
	background-image: url("https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/images/ui-icons_888888_256x240.png");
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-caret-1-n { background-position: 0 0; }
.ui-icon-caret-1-ne { background-position: -16px 0; }
.ui-icon-caret-1-e { background-position: -32px 0; }
.ui-icon-caret-1-se { background-position: -48px 0; }
.ui-icon-caret-1-s { background-position: -65px 0; }
.ui-icon-caret-1-sw { background-position: -80px 0; }
.ui-icon-caret-1-w { background-position: -96px 0; }
.ui-icon-caret-1-nw { background-position: -112px 0; }
.ui-icon-caret-2-n-s { background-position: -128px 0; }
.ui-icon-caret-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -65px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -65px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 1px -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 4px;
}

/* Overlays */
.ui-widget-overlay {
	background: #aaaaaa;
	opacity: .3;
	filter: Alpha(Opacity=30); /* support: IE8 */
}
.ui-widget-shadow {
	-webkit-box-shadow: -8px -8px 8px #aaaaaa;
	box-shadow: -8px -8px 8px #aaaaaa;
}
/*
Theme Name: ZoxPress
Description: ZoxPress is the culmination of 8+ years of WordPress theme development and customer input. With a host of new features combined with a slew of requested features over the years, ZoxPress gives you every tool and design you desire to publish the most professional news site possible. With 100 different homepage combinations, all-new Night Mode, Parallax Inline Article Ads, Auto Loaded Posts, One-Click Demo Install, and a host of other features, ZoxPress might just be the last news theme you ever purchase!
Author: MVP Themes
Author URI: https://themeforest.net/user/mvpthemes/portfolio
Theme URI: http://themeforest.net/user/mvpthemes
Version: 2.08.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Tags: two-columns, custom-background, custom-colors, custom-menu, featured-images, theme-options, threaded-comments, translation-ready
Text Domain: zoxpress
*/

/************************************************
	Table of Contents

1. Body
2. Hyperlinks
3. Layout
4. Header
5. Navigation
6. Fly-Out Navigation
7. Featured Posts
8. Homepage
9. Sidebar
10. Posts
11. Auto Load Posts
12. Comments
13. Archives
14. WooCommerce
15. Footer
16. Pagination
17. SportsPress

************************************************/

/************************************************
	1. Body
************************************************/

*, ::after, ::before {
	box-sizing: border-box;
	word-break: break-word;
	word-wrap: break-word;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html {
	overflow-x: hidden;
 	}

body {
	background: #f0f0f0;
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	-webkit-font-smoothing: antialiased;
	font-weight: 400;
	line-height: 100%;
	margin: 0px auto;
	padding: 0px;
	}

h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	-webkit-backface-visibility: hidden;
	color: #000;
	}

img {
	max-width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
	}

iframe,
embed,
object,
video {
	max-width: 100%;
	}

#truethemes_container #main {
float: left;
}

#zox-home-widget-wrap .lazy-load {
	-webkit-transition: opacity .25s, transform .5s ease-in;
	   -moz-transition: opacity .25s, transform .5s ease-in;
	    -ms-transition: opacity .25s, transform .5s ease-in;
	     -o-transition: opacity .25s, transform .5s ease-in;
		transition: opacity .25s, transform .5s ease-in;
    	opacity: 0;
}

#zox-home-widget-wrap .lazy-load.is-loaded {
    	opacity: 1;
}

/************************************************
	2. Hyperlinks
************************************************/

a,
a:visited {
	color: #ec2b8c;
	opacity: 1;
	text-decoration: none;
	-webkit-transition: color .25s, background .25s, opacity .25s;
	   -moz-transition: color .25s, background .25s, opacity .25s;
	    -ms-transition: color .25s, background .25s, opacity .25s;
	     -o-transition: color .25s, background .25s, opacity .25s;
		transition: color .25s, background .25s, opacity .25s;
	-webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
	}

a:hover {
	text-decoration: none;
	}

a:active,
a:focus {
	outline: none;
	}

#zox-side-wrap a {
	color: #000;
	font-weight: 700;
	}

#zox-side-wrap a:hover {
	color: #ec2b8c;
}

.zox-fly-but-wrap span,
span.zox-nav-search-but,
h2.zox-s-title1,
h2.zox-s-title1-feat,
h2.zox-s-title2,
h2.zox-s-title3,
.zox-feat-tech2-main .zox-art-text p.zox-s-graph,
ul.zox-post-soc-list li,
.zox-fly-fade,
#zox-site-main,
.zox-art-img,
.zox-art-img img,
ul.zox-post-soc-stat-list li,
h2.zox-authors-latest,
ul.zox-alp-soc-list li,
ul.zox-soc-more-list li,
ul.zox-post-soc-stat-list li ul.zox-soc-more-list li,
ul.zox-post-soc-list li ul.zox-soc-more-list li {
	-webkit-transition: all .25s;
	   -moz-transition: all .25s;
	    -ms-transition: all .25s;
	     -o-transition: all .25s;
			transition: all .25s;
	}

#zox-lead-top-wrap {
	-webkit-transition: all 1.5s;
	   -moz-transition: all 1.5s;
	    -ms-transition: all 1.5s;
	     -o-transition: all 1.5s;
		transition: all 1.5s;
	}

#zox-fly-wrap,
#zox-search-wrap,
#zox-lead-top {
	-webkit-transition: -webkit-transform 0.25s ease;
	   -moz-transition: -moz-transform 0.25s ease;
	    -ms-transition: -ms-transform 0.25s ease;
	     -o-transition: -o-transform 0.25s ease;
		transition: transform 0.25s ease;
	}

/************************************************
	3. Layout
************************************************/

.relative,
.zoxrel {
	position: relative;
	}

.zox100 {
	width: 100%;
	}

.zox-p24 {
	padding: 24px;
}

.zox-lh0,
.zoxlh0 {
	line-height: 0;
}

.right,
.alignright {
	float: right;
	}

.alignright {
	margin: 20px 0 20px 20px;
	}

.left,
.alignleft {
	float: left;
	}

.alignleft {
	margin: 30px 30px 30px 0;
	}

.aligncenter {
	display: block;
	margin: 0 auto;
	}

.zox-mob-img {
	display: none !important;
	}

#zox-site,
#zox-site-wall {
	overflow: hidden;
	width: 100%;
}

#zox-wallpaper {
	display: block;
	position: fixed;
		left: 0;
		top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	}

.zox-wall-link {
	margin: 0 auto;
	position: fixed;
		top: 0;
	width: 100%;
	height: 100%;
	}

#zox-site-main {
	-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	width: 100%;
	z-index: 9999;
}

#zox-site-grid {
	display: grid;
	grid-template-columns: 100%;
	width: 100%;
}

.single #zox-site-grid {
	background: #f0f0f0;
}

#zox-main-body-wrap {
	padding: 20px 0 40px;
	width: 100%;
	min-height: 600px;
}

#zox-feat-ent2-wrap {
	margin: 4px 0 0;
}

.woocommerce #zox-main-body-wrap {
	margin: 20px 0 0;
	padding: 0;
}

.zox-sport3 #zox-main-body-wrap {
	padding: 15px 0;
}

.zox-title-width,
.zox-body-width {
	display: grid;
	grid-template-columns: 100%;
	margin: 0 auto;
	padding: 0 30px;
	width: 100%;
	max-width: 1320px;
}

.zox-title-width {
	padding: 0;
}

.zox-sport3 .zox-body-width {
	padding: 0 15px;
}

.zox-sport3 .zox-title-width,
.zox-sport3 .zox-widget-home .zox-body-width,
.zox-tech2 .zox-title-width {
	padding: 0;
}

.zox-sport3 .zox_feat_list_widget .zox-title-width {
	margin: 0 0 0 20px;
}

#zox-home-main-wrap {
	display: grid;
	grid-gap: 40px;
	grid-template-columns: 100%;
}

.zox-net3 #zox-home-main-wrap,
.zox-net3 #zox-home-widget-wrap,
.zox-sport2 #zox-home-main-wrap,
.zox-sport2 #zox-home-widget-wrap,
.zox-fash1 #zox-home-main-wrap,
.zox-fash1 #zox-home-widget-wrap {
	grid-row-gap: 60px;
}

.home.zox-fash3 #zox-home-main-wrap #zox-feat-wrap {
	display: none;
}

.search #zox-home-main-wrap {
	background: #fff;
	padding: 30px 0 60px;
	min-height: 700px;
}

/************************************************
	4. Header
************************************************/

#zox-lead-top-wrap {
	overflow: hidden;
	position: relative;
	width: 100%;
}

#zox-lead-top-in {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}

#zox-lead-top {
	background-color: #f0f0f0;
	line-height: 0;
	text-align: center;
	width: 100%;
}

#zox-main-head-wrap {
	width: 100%;
	z-index: 99999;
}

#zox-top-head-wrap,
#zox-bot-head-wrap {
	width: 100%;
}

#zox-top-head-wrap {
	overflow: hidden;
}

.zox-head-bg {
	margin: 0 auto;
	position: absolute;
		left: -9999px;
		right: -9999px;
		top: 0;
	width: 100%;
}

#zox-bot-head-wrap,
.zox-bot-head-menu,
#zox-bot-head,
#zox-bot-head-left,
#zox-bot-head-right,
.zox-bot-head-logo {
	height: 80px;
}

#zox-bot-head-wrap {
	background: #fff;
}

.zox-head-width {
	display: grid;
	margin: 0 auto;
	padding: 0 30px;
	width: 100%;
	max-width: 1320px;
}

#zox-top-head {
	display: grid;
	float: left;
	grid-column-gap: 50px;
	grid-template-columns: 250px auto 250px;
	justify-content: space-between;
	width: 100%;
}

#zox-top-head-left,
#zox-top-head-right {
	position: relative;
	width: 250px;
}

#zox-top-head-right {
	display: grid;
	align-content: center;
	justify-content: end;
}

.zox-top-soc-wrap {
	display: grid;
	grid-gap: 25px;
	grid-template-columns: auto auto auto auto;
	margin-top: -9px;
	overflow: hidden;
	position: absolute;
		top: 50%;
		left: 0;
	height: 18px;
}

#zox-top-head-right .zox-top-soc-wrap {
	left: auto;
	right: 0;
}

.zox-top-soc-wrap a {
	overflow: hidden;
	height: 18px;
}

span.mvp-top-soc-but {
	color: #000;
	display: grid;
	float: left;
	font-size: 18px;
}

.zox-woo-cart-wrap {
	display: inline-block;
	overflow: hidden;
	height: 16px;
}

span.zox-woo-cart-icon {
	float: right;
	font-size: 16px;
	margin: 0 10px 0 0;
	}

span.zox-woo-cart-num {
	color: #fff;
	border-radius: 50%;
	float: right;
	font-size: 10px;
	line-height: 1;
	padding-top: 3px;
	text-align: center;
	width: 16px;
	height: 16px;
	}

#zox-top-head-mid {
	display: grid;
	align-content: center;
	line-height: 0;
	text-align: center;
	width: 100%;
}

#zox-bot-head {
	display: grid;
	grid-column-gap: 30px;
	grid-template-columns: auto 60px;
}

#zox-bot-head-left,
#zox-bot-head-right {
	display: grid;
	align-content: center;
}

#zox-bot-head-left {
	display: none;
	width: 24px;
}

#zox-bot-head-right {
	grid-gap: 10px;
	grid-template-columns: 1fr 1fr;
	justify-content: end;
	width: 60px;
}

#zox-bot-head-mid {
	width: 100%;
}

.zox-bot-head-logo {
	line-height: 0;
	overflow: hidden;
	position: absolute;
		top: 0;
		left: 0;
	text-align: center;
	width: auto;
	z-index: 1;
}

.zox-bot-head-logo,
.zox-bot-head-logo-main {
	display: grid;
	align-content: center;
}

.zox-bot-head-menu {
	display: grid;
	grid-template-columns: 100%;
	padding: 0 0 0 90px;
	text-align: center;
	width: 100%;
}

span.zox-nav-search-but {
	align-self: center;
	color: #000;
	cursor: pointer;
	font-size: 16px;
	text-align: center;
	width: 24px;
	height: 16px;
}

h1.zox-logo-title,
h2.zox-logo-title {
	display: block;
	font-size: 0;
}

#zox-lead-bot {
	line-height: 0;
	padding: 20px 0 0;
	overflow: hidden;
	text-align: center;
	width: 100%;
}

.zox-trans-head:before {
	content: '';
	background-image: -moz-linear-gradient(to top,rgba(0,0,0,0) 0, rgba(0,0,0,0.3) 50%, rgba(0,0,0,.6) 100%);
	background-image: -ms-linear-gradient(to top,rgba(0,0,0,0) 0, rgba(0,0,0,0.3) 50%, rgba(0,0,0,.6) 100%);
	background-image: -o-linear-gradient(to top,rgba(0,0,0,0) 0, rgba(0,0,0,0.3) 50%, rgba(0,0,0,.6) 100%);
	background-image: -webkit-linear-gradient(to top,rgba(0,0,0,0) 0, rgba(0,0,0,0.3) 50%, rgba(0,0,0,.6) 100%);
	background-image: -webkit-gradient(linear, center bottom, center top, from(rgba(0,0,0,0)), to(rgba(0,0,0,0.6)));
	background-image: linear-gradient(to top,rgba(0,0,0,0) 0, rgba(0,0,0,0.2) 50%, rgba(0,0,0,.4) 100%);
	position: absolute;
		left: 0;
		top: 0;
	width: 100%;
	height: 100%;
}

/************************************************
	5. Navigation
************************************************/

.zox-fix-up {
	-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	position: fixed !important;
		top: -80px !important;
	-webkit-transform: translate3d(0,-80px,0) !important;
	   -moz-transform: translate3d(0,-80px,0) !important;
	    -ms-transform: translate3d(0,-80px,0) !important;
	     -o-transform: translate3d(0,-80px,0) !important;
		transform: translate3d(0,-80px,0) !important;
	-webkit-transition: -webkit-transform 0.4s ease;
	   -moz-transition: -moz-transform 0.4s ease;
	    -ms-transition: -ms-transform 0.4s ease;
	     -o-transition: -o-transform 0.4s ease;
		transition: transform 0.4s ease;
	z-index: 9999;
	}

.zox-fix {
	position: fixed !important;
		top: -80px;
	-webkit-transform: translate3d(0,80px,0) !important;
	   -moz-transform: translate3d(0,80px,0) !important;
	    -ms-transform: translate3d(0,80px,0) !important;
	     -o-transform: translate3d(0,80px,0) !important;
		transform: translate3d(0,80px,0) !important;
	}

#zox-bot-head-wrap.zox-fix-up,
.zox-fix-up .zox-bot-head-menu,
.zox-fix-up #zox-bot-head,
.zox-fix-up #zox-bot-head-left,
.zox-fix-up #zox-bot-head-right,
.zox-fix-up #zox-bot-head-mid,
.zox-fix-up .zox-bot-head-logo,
.zox-fix-up .zox-bot-head-logo-main,
.zox-fix-up .zox-nav-menu,
.zox-fix-up .zox-nav-menu ul {
	height: 60px;
}

.zox-fix-up .zox-bot-head-logo img,
.zox-fix-up .zox-bot-head-logo-main img {
	max-height: 40px;
	width: auto;
}

#zox-bot-head-wrap.zox-trans-bot {
	background-color: transparent;
	background-image: -moz-linear-gradient(to top,rgba(0,0,0,0) 0, rgba(0,0,0,0.6) 50%, rgba(0,0,0,.95) 100%);
	background-image: -ms-linear-gradient(to top,rgba(0,0,0,0) 0, rgba(0,0,0,0.6) 50%, rgba(0,0,0,.95) 100%);
	background-image: -o-linear-gradient(to top,rgba(0,0,0,0) 0, rgba(0,0,0,0.6) 50%, rgba(0,0,0,.95) 100%);
	background-image: -webkit-linear-gradient(to top,rgba(0,0,0,0) 0, rgba(0,0,0,0.6) 50%, rgba(0,0,0,.95) 100%);
	background-image: -webkit-gradient(linear, center bottom, center top, from(rgba(0,0,0,0)), to(rgba(0,0,0,0.95)));
	background-image: linear-gradient(to top,rgba(0,0,0,0) 0, rgba(0,0,0,0.6) 50%, rgba(0,0,0,.95) 100%);
	-webkit-transition: background .25s, transform 0.25s ease;
	   -moz-transition: background .25s, transform 0.25s ease;
	    -ms-transition: background .25s, transform 0.25s ease;
	     -o-transition: background .25s, transform 0.25s ease;
		transition: background .25s, transform 0.25s ease;
}

.zox-nav-menu {
	width: 100%;
	height: 80px;
}

.zox-nav-menu ul,
.zox-top-nav-menu ul {
	float: left;
	text-align: center;
	width: 100%;
	}

.zox-top-nav-menu ul {
	display: flex;
	align-items: center;
}

#zox-top-head-right .zox-top-nav-menu ul {
	float: right;
	width: auto;
}

.zox-nav-menu ul li,
.zox-top-nav-menu ul li {
	display: inline-block;
	position: relative;
	}

.zox-nav-menu ul li.menu-item-object-category.zox-mega-drop {
	position: static;
	}

.zox-nav-menu ul li a,
.zox-top-nav-menu ul li a {
	color: #000;
	float: left;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 22px;
	font-weight: 300;
	line-height: 1;
	padding: 29px 10px;
	position: relative;
	text-transform: capitalize;
}

.zox-top-nav-menu ul li ul {
	display: none;
}

#zox-top-head-left .zox-top-nav-menu ul {
	left: -10px;
	text-align: left;
}

#zox-top-head-right .zox-top-nav-menu ul {
	right: -10px;
	text-align: right;
}

.zox-nav-menu ul li.zox-mega-drop ul li a:after,
.zox-nav-menu ul li.menu-item-has-children ul.sub-menu li a:after,
.zox-nav-menu ul li.menu-item-has-children ul.sub-menu li ul.sub-menu li a:after,
.zox-nav-menu ul li.menu-item-has-children ul.sub-menu li ul.sub-menu li ul.sub-menu li a:after,
.zox-nav-menu ul li.menu-item-has-children ul.mvp-mega-list li a:after {
	content: '';
	display: inline-block;
	border: none;
	margin: 0;
	position: absolute;
		top: auto;
		right: auto;
	transform: none;
	width: auto;
	height: auto;
	}

.zox-nav-menu ul li.menu-item-has-children a:after,
.zox-nav-menu ul li.zox-mega-drop a:after,
.zox-nav-menu ul li:hover ul.sub-menu li.menu-item-has-children a:after,
.zox-nav-menu ul li:hover ul.sub-menu li ul.sub-menu li.menu-item-has-children a:after {
	content: '';
	display: inline-block;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	margin: -4px 0 0 0;
	position: absolute;
		top: 50%;
		right: -5px;
	transform: rotate(45deg);
	width: 6px;
	height: 6px;
	}

.zox-nav-menu ul li.menu-item-has-children a,
.zox-nav-menu ul li.zox-mega-drop a {
	margin-right: 15px;
}

.zox-nav-menu ul li.zox-mega-drop ul li a {
	margin: 0;
}

.zox-nav-menu ul li ul.sub-menu {
	background: #fff;
	-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	-webkit-box-shadow: 0 5px 5px 0 rgba(0,0,0,0.15);
	   -moz-box-shadow: 0 5px 5px 0 rgba(0,0,0,0.15);
	    -ms-box-shadow: 0 5px 5px 0 rgba(0,0,0,0.15);
	     -o-box-shadow: 0 5px 5px 0 rgba(0,0,0,0.15);
		box-shadow: 0 5px 5px 0 rgba(0,0,0,0.15);
	color: #000;
	position: absolute;
		top: 80px;
		left: -7px;
	max-width: 200px;
	opacity: 0;
	overflow: hidden;
	text-align: left;
	-webkit-transition: opacity .2s;
	   -moz-transition: opacity .2s;
	    -ms-transition: opacity .2s;
	     -o-transition: opacity .2s;
		transition: opacity .2s;
	-webkit-transform: translateY(-999px);
	   -moz-transform: translateY(-999px);
	    -ms-transform: translateY(-999px);
	     -o-transform: translateY(-999px);
		transform: translateY(-999px);
	width: auto;
	height: 0;
	z-index: 1;
	}

.zox-nav-menu ul li ul.sub-menu:after {
	content: ''; 
  	border-left: 11px solid transparent;
 	border-right: 11px solid transparent;
  	border-bottom: 11px solid #fff;
	position: absolute;
		top: -10px;
		left: 30px;
	width: 0; 
  	height: 0;
}

.zox-nav-menu ul li.menu-item-has-children:hover a:before {
	opacity: 1;
}

.zox-nav-menu ul li ul li ul.sub-menu:after {
	display: none;
}

.zox-fix-up .zox-nav-menu ul li ul.sub-menu {
	top: 60px;
}

.zox-nav-menu ul li.zox-mega-drop ul.sub-menu {
	display: none;
	}

.zox-nav-menu ul li:hover ul.sub-menu {
	opacity: 1;
	overflow: visible;
	-webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
	    -ms-transform: translateY(0);
	     -o-transform: translateY(0);
		transform: translateY(0);
	height: auto;
	}

.zox-nav-menu ul li ul.sub-menu li {
	display: block;
	float: left;
	position: relative;
	width: 100%;
	}

.zox-nav-menu ul li ul.sub-menu li a {
	color: #444 !important;
	float: left;
	font-size: .875rem;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.1;
	padding: 13px 20px !important;
	text-transform: none;
	width: 200px;
	}

.zox-nav-menu ul li ul.sub-menu li a:hover {
	background: rgba(0,0,0,.05);
	border-bottom: none;
	padding: 12px 20px;
	}

.zox-nav-menu ul li ul.sub-menu ul.sub-menu li ul,
.zox-nav-menu ul li ul.sub-menu li ul,
.zox-fix-up .zox-nav-menu ul li ul.sub-menu ul.sub-menu li ul,
.zox-fix-up .zox-nav-menu ul li ul.sub-menu li ul {
	display: none;
	position: absolute;
		top: 0;
		left: 200px;
	z-index: 10;
	}

.zox-nav-menu ul li ul.sub-menu ul.sub-menu li:hover ul,
.zox-nav-menu ul li ul.sub-menu li:hover ul {
	display: block;
	}

.zox-nav-menu ul li ul.sub-menu li .zox-mega-dropdown {
	display: none;
	}

.zox-nav-menu ul li:hover ul.sub-menu li.menu-item-has-children a {
	position: relative;
	}

.zox-nav-menu ul li:hover ul.sub-menu li.menu-item-has-children a:after,
.zox-nav-menu ul li:hover ul.sub-menu li ul.sub-menu li.menu-item-has-children a:after {
	right: 10px;
	transform: rotate(-45deg);
	}

.zox-nav-menu ul li.zox-mega-drop .zox-mega-dropdown {
	background: #fff;
	-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	-webkit-box-shadow: 0 5px 5px 0 rgba(0,0,0,.08);
	   -moz-box-shadow: 0 5px 5px 0 rgba(0,0,0,.08);
	    -ms-box-shadow: 0 5px 5px 0 rgba(0,0,0,.08);
	     -o-box-shadow: 0 5px 5px 0 rgba(0,0,0,.08);
		box-shadow: 0 5px 5px 0 rgba(0,0,0,.08);
	opacity: 0;
	overflow: hidden;
	padding: 20px 0;
	position: absolute;
		top: 80px;
	-webkit-transition: opacity .2s;
	   -moz-transition: opacity .2s;
	    -ms-transition: opacity .2s;
	     -o-transition: opacity .2s;
		transition: opacity .2s;
	-webkit-transform: translateY(-9999px);
	   -moz-transform: translateY(-9999px);
	    -ms-transform: translateY(-9999px);
	     -o-transform: translateY(-9999px);
		transform: translateY(-9999px);
	width: 100vw;
	height: 0;
	z-index: 1;
	}

.zox-fix-up .zox-nav-menu ul li.zox-mega-drop .zox-mega-dropdown {
	top: 60px;
}

.zox-nav-menu ul li.zox-mega-drop:hover .zox-mega-dropdown {
	opacity: 1;
	overflow: visible;
	-webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
	    -ms-transform: translateY(0);
	     -o-transform: translateY(0);
		transform: translateY(0);
	height: auto;
	}

.zox-nav-menu ul li.zox-mega-drop:hover .zox-mega-dropdown .zox-mega-img img {
	display: block;
	}

.zox-nav-menu ul li ul.zox-mega-list li a,
.zox-nav-menu ul li ul.zox-mega-list li a p {
	background: none !important;
	border-bottom: none;
	color: #000;
	float: left;
	font-size: .875rem;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.25;
	padding: 0 !important;
	text-align: left;
	text-transform: capitalize;
	}

.zox-nav-menu ul li ul.zox-mega-list li a p {
	padding: 0 10px !important;
}

.zox-nav-menu ul li ul.zox-mega-list li .zox-mega-img a {
	line-height: 0;
	}

.zox-nav-menu ul.zox-mega-list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-column-gap: 20px;
	float: left;
	left: auto;
	width: 100% !important;
	max-width: none !important;
	height: auto;
	}

ul.zox-mega-list li {
	float: left;
	overflow: hidden;
	}

.zox-mega-img {
	background: #fff;
	float: left;
	line-height: 0;
	margin-bottom: 10px;
	overflow: hidden;
	position: relative;
	width: 100%;
	max-height: 130px;
	}

.zox-mega-img img {
	display: none;
	width: 100%;
	}

.zox-mega-img a {
	padding: 0;
	}

#zox-search-wrap {
	-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	background: rgba(0,0,0,.75);
	opacity: 0;
	position: fixed;
		top: 0;
		left: 0;
	-webkit-transform: translate3d(0,-100%,0);
	   -moz-transform: translate3d(0,-100%,0);
	    -ms-transform: translate3d(0,-100%,0);
	     -o-transform: translate3d(0,-100%,0);
		transform: translate3d(0,-100%,0);
	width: 100%;
	height: 100%;
	z-index: 999999;
	}

.zox-search-but-wrap {
	cursor: pointer;
	position: absolute;
		top: 60px;
		right: 80px;
	width: 60px;
	height: 60px;
}

#zox-search-wrap .zox-search-but-wrap span {
	background: #fff;
	top: 27px;
	}

.zox-search-cont {
	margin: -12vh 0 0 -25%;
	position: absolute;
		top: 50%;
		left: 50%;
	width: 50%;
	min-width: 200px;
}

p.zox-search-p {
	color: #fff;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 2.5vw;
	font-weight: 700;
	margin: 0 0 30px;
	text-align: center;
	width: 100%;
}

.zox-search-box {
	background: rgba(255,255,255,.15);
	border: 1px solid #fff;
	border-radius: 10px;
	display: flex;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 80px;
}

#zox-main-body-wrap .zox-search-box {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 0;
	height: 36px;
}

.search .zox-body-width {
	max-width: 1200px;
}

.search #zox-home-cont-wrap {
	align-content: start;
	grid-gap: 40px;
}

.zox-side-widget #zox-search-form,
.zox-widget-home #zox-search-form,
#zox-search-form2 {
	border: 1px solid #ddd;
	float: left;
	position: relative;
	width: 100%;
	height: 36px;
}

#zox-search-input,
#zox-search-input2 {
	background: none;
	border: none;
	color: #fff;
	float: left;
	font-size: 38px;
	font-weight: 300;
	line-height: 1;
	padding: 20px;
	position: relative;
	text-transform: uppercase;
	width: 75%;
	height: 100%;
	}

#zox-main-body-wrap #zox-search-input,
#zox-main-body-wrap #zox-search-input2 {
	color: #aaa;
	font-size: 16px;
	font-weight: 400;
	padding: 10px;
	text-transform: none;
	width: calc(100% - 80px);
}

#zox-search-form #zox-search-submit,
#zox-search-form2 #zox-search-submit2 {
	background: #ec2b8c;
	border: none;
	color: #fff;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	position: absolute;
		top: 0;
		right: 0;
	text-align: center;
	text-transform: uppercase;
	width: 25%;
	height: 100%;
	}

#zox-main-body-wrap #zox-search-form #zox-search-submit,
#zox-main-body-wrap #zox-search-form2 #zox-search-submit2 {
	font-size: 13px;
	text-transform: capitalize;
	width: 80px;
}

#zox-search-form #zox-search-input:focus,
#zox-search-form2 #zox-search-input2:focus {
	outline: none;
	}

.zox-search-toggle {
	opacity: 1 !important;
	-webkit-transform: translate3d(0,0,0) !important;
	   -moz-transform: translate3d(0,0,0) !important;
	    -ms-transform: translate3d(0,0,0) !important;
	     -o-transform: translate3d(0,0,0) !important;
		transform: translate3d(0,0,0) !important;
	}

.zox-fly-top {
	color: #aaa;
	cursor: pointer;
	opacity: 0;
	overflow: hidden;
	position: fixed;
		right: 0;
		bottom: 10px;
	text-align: center;
	-webkit-transition: opacity .25s linear, color .25s linear;
	   -moz-transition: opacity .25s linear, color .25s linear;
	    -ms-transition: opacity .25s linear, color .25s linear;
	     -o-transition: opacity .25s linear, color .25s linear;
		transition: opacity .25s linear, color .25s linear;
	width: 70px;
	height: 0;
	z-index: 99999;
	}

.zox-to-top {
	opacity: 1;
	height: 40px;
	}

.zox-fly-top span {
	font-size: 40px;
	line-height: 1;
	}

span.zox-night {
	color: #000;
	cursor: pointer;
	font-size: 16px;
}

.zox-dark {
	background: #111;
	background-color: #111 !important;
}

.zox-dark .zox-art-wrap,
.zox-dark .zox-art-grid,
.zox-dark .zox-article-wrap,
.zox-dark .zox-side-widget,
.zox-dark.zox-ent1 .zox-feat-left-wrap,
.zox-dark.zox-sport3 .zox-widget-home,
.zox-dark.zox-sport3 #zox-main-blog-wrap,
.zox-dark .zox-feat-sports3-main-wrap,
.zox-dark .zox-feat-sports3-sub .zox-art-wrap,
.zox-dark .zox-feat-left-wrap,
.zox-dark .zox-widget-bgb,
.zox-dark .zox-widget-bgw,
.zox-dark .zox-widget-bgg,
.zox-dark .zox-widget-bgp,
.zox-dark .zox-widget-bgs,
.zox-dark .zox-s8 span.zox-s-cat,
.zox-s8 .zox-dark span.zox-s-cat,
.zox-dark .zox-s4 span.zox-s-cat,
.zox-s4 .zox-dark span.zox-s-cat,
.zox-o3 .zox-dark h3.zox-s-cat,
.zox-dark .zox-o3 .zox-art-text,
.zox-sport3 .zox-dark .zox-widget-home,
.zox-sport3 .zox-dark #zox-main-blog-wrap,
.zox-s7 .zox-dark .zox-art-text,
.zox-dark .zox-o6 span.zox-s-cat,
.zox-s2 .zox-dark span.zox-s-cat,
.zox-dark .zox-s2 span.zox-s-cat,
.zox-dark .alp-related-posts-wrapper .alp-related-post,
.zox-dark .alp-related-posts-wrapper .alp-related-posts .current,
.zox-dark #zox-author-page-top,
.zox-dark .zox-woo-wrap,
.woocommerce .zox-dark div.product .woocommerce-tabs ul.tabs li.active,
.zox-dark #add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart .zox-dark table.cart td.actions .coupon .input-text,
.woocommerce-checkout .zox-dark table.cart td.actions .coupon .input-text,
.zox-dark input,
.woocommerce .zox-dark #woo-content select,
.woocommerce .zox-dark #zox-side-wrap select,
.woocommerce .zox-dark #woo-content div.product form.cart .variations select,
.woocommerce-page .zox-dark #woo-content div.product form.cart .variations select,
.woocommerce .zox-dark #woo-content div.product form.cart .variations select,
.woocommerce-page .zox-dark #woo-content div.product form.cart .variations select,
.woocommerce .zox-dark #woo-content .woocommerce-ordering select,
.woocommerce-page .zox-dark #woo-content .woocommerce-ordering select,
.woocommerce .zox-dark #woo-content form .form-row select,
.woocommerce-page .zox-dark #woo-content form .form-row select,
.zox-dark .widget_product_categories select#dropdown_product_cat,
.zox-dark .zox-side-widget select {
	background: #181818 !important;
	color: #efefef;
}

.zox-dark #zox-top-head-wrap {
	background: #000;
}

.zox-dark .zox-feat-ent3-main-wrap .zox-art-wrap,
.zox-dark .zox-feat-ent3-main-wrap .zox-art-grid,
.zox-s8 .zox-dark #zox-main-blog-wrap .zox-art-wrap,
.zox-s8 .zox-dark #zox-main-blog-wrap .zox-art-grid,
.zox-s8 .zox-dark #zox-home-widget-wrap .zox-art-wrap,
.zox-s8 .zox-dark #zox-home-widget-wrap .zox-art-grid,
.zox-s8 .zox-dark .zox-feat-ent3-sub-wrap .zox-art-wrap,
.zox-s8 .zox-dark .zox-feat-ent3-sub-wrap .zox-art-grid,
.zox-s8 .zox-dark .zox-post-more .zox-art-wrap,
.zox-s8 .zox-dark .zox-post-more .zox-art-grid,
.zox-dark #zox-feat-net1-wrap,
.zox-dark .zox-s5.zox-div1 .zox-art-wrap,
.zox-dark .zox-s5 .zox-art-wrap,
.zox-s5 .zox-dark .zox-art-wrap,
.zox-dark .zox-s5 .zox-art-grid,
.zox-s5 .zox-dark .zox-art-grid,
.zox-dark .zox-o3 h3.zox-s-cat,
.zox-dark #zox-lead-bot,
.single .zox-dark #zox-site-grid,
.zox-dark .zox-post-more-wrap span.zox-post-main-title,
.zox-dark .alp-related-posts-wrapper .alp-advert,
.zox-sport3 .zox-dark #zox-site-main,
.search .zox-dark #zox-home-main-wrap,
.zox-dark #zox-main-body-wrap .zox-search-box,
.woocommerce-page .zox-dark .zox-page-wrap,
.zox-dark #zox-bot-head-wrap,
.zox-dark .zox-nav-menu ul li ul.sub-menu,
.zox-dark .zox-nav-menu ul li.zox-mega-drop .zox-mega-dropdown,
.zox-dark #zox-fly-wrap,
.zox-dark #zox-bot-head-wrap.zox-trans-bot:hover {
	background: #111 !important;
	background-color: #111 !important;
}

.zox-dark #zox-bot-head-wrap,
.zox-dark .zox-nav-menu ul li.zox-mega-drop .zox-mega-dropdown {
	border-bottom: 1px solid #222;
}

.zox-dark .zox-s5 .zox-widget-side-trend-wrap .zox-art-wrap,
.zox-s5 .zox-dark .zox-widget-side-trend-wrap .zox-art-wrap,
.zox-dark .zox-s5 .zox-widget-side-trend-wrap .zox-art-grid,
.zox-s5 .zox-dark .zox-widget-side-trend-wrap .zox-art-grid,
.zox-dark .zox-widget-side-trend-wrap .zox-art-text:before {
	background: #181818 !important;
}

.woocommerce .zox-dark div.product .woocommerce-tabs ul.tabs li.active {
	border-bottom-color: #181818 !important;
}

.zox-dark.zox-sport3 .zox-divr .zox-art-wrap,
.zox-dark.zox-sport3 .zox-div3 .zox-art-wrap,
.zox-dark.zox-sport3 .zox-div4 .zox-art-wrap,
.zox-dark.zox-sport3 .zox-widget-featl-sub .zox-art-wrap,
.zox-dark.zox-sport3 .zox-widget-altimg-wrap .zox-art-wrap,
.zox-ent1 .zox-dark .zox-feat-left-wrap,
.single .zox-dark .zox-side-widget,
.page .zox-dark .zox-side-widget,
.zox-ent1 .zox-dark .zox-divr .zox-art-wrap,
.zox-dark #zox-main-body-wrap .zox-search-box,
.woocommerce .zox-dark nav.woocommerce-pagination ul,
.woocommerce .zox-dark div.product .woocommerce-tabs ul.tabs li,
.woocommerce .zox-dark #reviews #comments ol.commentlist li .comment-text,
.zox-dark .woocommerce table.shop_table,
.zox-dark #add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart .zox-dark table.cart td.actions .coupon .input-text,
.woocommerce-checkout .zox-dark table.cart td.actions .coupon .input-text,
.zox-dark input,
.woocommerce .zox-dark #woo-content select,
.woocommerce .zox-dark #zox-side-wrap select,
.woocommerce .zox-dark #woo-content div.product form.cart .variations select,
.woocommerce-page .zox-dark #woo-content div.product form.cart .variations select,
.woocommerce .zox-dark #woo-content div.product form.cart .variations select,
.woocommerce-page .zox-dark #woo-content div.product form.cart .variations select,
.woocommerce .zox-dark #woo-content .woocommerce-ordering select,
.woocommerce-page .zox-dark #woo-content .woocommerce-ordering select,
.woocommerce .zox-dark #woo-content form .form-row select,
.woocommerce-page .zox-dark #woo-content form .form-row select,
.zox-dark .widget_product_categories select#dropdown_product_cat,
.zox-dark .zox-side-widget select {
	border: 1px solid #333;
}

.woocommerce .zox-dark div.product .woocommerce-tabs ul.tabs::before,
.woocommerce .zox-dark #content div.product .woocommerce-tabs,
.woocommerce .zox-dark div.product .woocommerce-tabs,
.woocommerce-page .zox-dark #content div.product .woocommerce-tabs,
.woocommerce-page .zox-dark div.product .woocommerce-tabs,
.woocommerce .zox-dark .woocommerce-breadcrumb,
.zox-dark .zox-post-body tbody tr,
.zox-dark .zox-post-body thead {
	border-bottom: 1px solid #333;
}

.woocommerce .zox-dark .widget_top_rated_products ul.product_list_widget li,
.zox-dark .woocommerce table.shop_table td {
	border-top: 1px solid #333;
}

.zox-dark .zox-feat-net3-sub-wrap,
.zox-dark .zox-post-info-wrap,
.zox-dark nav.zox-fly-nav-menu ul li ul.sub-menu {
	border-top: 1px solid #333;
}

.zox-dark ul.zox-post-soc-stat-list li,
.zox-dark ul.zox-alp-soc-list li {
	border: 1px solid #333;
}

.zox-dark .zox-feat-ent1-left,
.zox-ent1 .zox-dark .zox-side-widget {
	border-top: 2px solid #333;
}

.zox-dark .zox-nav-menu ul li ul.sub-menu:after {
	border-bottom: 11px solid #111;
}

.zox-s6 .zox-dark .zox-widget-side-trend-wrap .zox-art-wrap,
.zox-s5 .zox-dark .zox-widget-side-trend-wrap .zox-art-wrap,
.zox-dark .alp-related-posts-wrapper .alp-related-post,
.zox-dark .zox-authors-cont,
.zox-dark .zox-widget-tab-head-wrap {
	border-bottom: 1px solid #333;
}

.zox-dark .zox-feat-net3-sub-wrap .zox-art-wrap {
	border-left: 1px solid #333;
}

.woocommerce .zox-dark nav.woocommerce-pagination ul li {
	border-right: 1px solid #333;
}

.zox-dark .zox-author-thumb {
	border: 3px solid #333;
}

.zox-dark ul.zox-widget-tab-head li.active a {
	border-bottom: 3px solid #333;
}

.zox-dark.zox-s2 span.zox-s-cat,
.zox-dark .zox-s2 span.zox-s-cat {
	background: #181818 !important;
}

.zox-dark .zox-o1 h2.zox-s-title1,
.zox-dark .zox-o1 h2.zox-s-title1-feat,
.zox-dark .zox-o1 h2.zox-s-title2,
.zox-dark .zox-s8 h2.zox-s-title2,
.zox-dark .zox-s8 a:hover h2.zox-s-title2,
.zox-s8 .zox-dark h2.zox-s-title2,
.zox-s8 .zox-dark a:hover h2.zox-s-title2 {
	background-color: #111;
	box-shadow: 15px 0 0 #111, -10px 0 0 #111;
	color: #fff;
}

.zox-dark .zox-post-ad {
	background-color: #181818 !important;
}

.zox-dark .zox-o2 .zox-art-text,
.zox-dark .zox-o4 .zox-art-text,
.zox-dark .zox-o5 .zox-art-text {
	background-image: linear-gradient(to bottom,rgba(0,0,0,0) 0, rgba(0,0,0,0.6) 50%, rgba(0,0,0,.9) 100%) !important;
	background-color: transparent !important;
}

@media screen and (min-width: 479px) {
.zox-dark .zox-div2 .zox-art-text,
.zox-dark .zox-div23 .zox-art-text,
.zox-dark .zox-div3 .zox-art-text,
.zox-dark .zox-div4 .zox-art-text {
	padding-bottom: 20px !important;
}
}

.zox-dark .zox-s4.zox-blog-grid.zox-divr .zox-art-wrap,
.zox-dark .zox-s5.zox-blog-grid.zox-divr .zox-art-wrap {
	border-top: none;
	padding: 0;
}

.zox-dark span.zox-post-main-title,
.zox-dark span.zox-widget-main-title,
.zox-dark span.zox-widget-side-title {
	background: #181818 !important;
	background-color: #181818 !important;
	color: #999 !important;
}

.zox-dark h1.zox-post-title,
.zox-dark h2.zox-s-title1,
.zox-dark h2.zox-s-title1-feat,
.zox-dark h2.zox-s-title2,
.zox-dark h2.zox-s-title3,
.zox-dark .zox-post-body p,
.zox-dark #woo-content p,
.zox-dark .zox-post-body a,
.zox-dark span.zox-author-name a,
.zox-dark ul.zox-post-soc-stat-list li,
.zox-dark #zox-side-wrap a,
.zox-dark .widget_product_categories ul.product-categories li a,
.zox-dark .woocommerce ul.product_list_widget span.product-title,
.zox-dark .woocommerce ul.product_list_widget li a,
.zox-sport3 .zox-dark .zox_feat_widget span.zox-widget-main-title,
.zox-dark .alp-related-posts-wrapper .alp-related-post .post-title,
.zox-dark span.zox-author-page-desc,
.zox-dark p.zox-authors-desc,
.zox-dark h2.zox-authors-latest,
.zox-dark ul.zox-alp-soc-list li span,
.zox-dark a.woocommerce-review-link,
.woocommerce .zox-dark div.product .woocommerce-tabs ul.tabs li a,
.zox-dark ul.zox-widget-tab-head li a,
.zox-dark #respond textarea,
.zox-dark #comments .c p,
.zox-dark .zox-nav-menu ul li a,
.zox-dark span.zox-night,
.zox-dark span.zox-nav-search-but,
.zox-dark .zox-nav-menu ul li ul.zox-mega-list li a,
.zox-dark .zox-nav-menu ul li ul.zox-mega-list li a p,
.zox-dark .zox-nav-menu ul li ul.sub-menu li a,
.zox-dark span.zox-top-soc-but,
.zox-dark .zox-top-nav-menu ul li a,
.zox-dark span.zox-woo-cart-icon,
.zox-dark nav.zox-fly-nav-menu ul li a,
.zox-dark span.zox-fly-soc-head,
.zox-dark nav.zox-fly-nav-menu ul li.menu-item-has-children:after,
.zox-dark ul.zox-fly-soc-list li a {
	color: #efefef !important;
}

.zox-dark .zox-fly-but-wrap span,
.zox-dark .zox-trans-bot.zox-fix-up .zox-fly-but-wrap span,
.zox-dark .zox-fly-but-wrap span {
	background: #efefef;
}

.zox-dark ul.zox-fly-soc-list li a {
	background: rgba(255,255,255,.15)
}

.zox-dark .zox-nav-menu ul li.menu-item-has-children a:after,
.zox-dark .zox-nav-menu ul li.zox-mega-drop a:after {
	border-right: 1px solid #efefef;
	border-bottom: 1px solid #efefef;
}

.zox-dark .zox-nav-menu ul li.menu-item-has-children a:after,
.zox-dark .zox-nav-menu ul li.zox-mega-drop a:after,
.zox-dark .zox-nav-menu ul li:hover ul.sub-menu li.menu-item-has-children a:after,
.zox-dark .zox-nav-menu ul li:hover ul.sub-menu li ul.sub-menu li.menu-item-has-children a:after {
	border-right: 1px solid #efefef;
	border-bottom: 1px solid #efefef;
}

.woocommerce .zox-dark nav.woocommerce-pagination ul li a {
	color: #8a7e88 !important;
}

.woocommerce .zox-dark nav.woocommerce-pagination ul li a:focus,
.woocommerce .zox-dark nav.woocommerce-pagination ul li a:hover,
.woocommerce .zox-dark nav.woocommerce-pagination ul li span.current,
.woocommerce #respond input#submit,
.zox-dark .woocommerce a.button,
.zox-dark .woocommerce button.button,
.zox-dark .woocommerce input.button,
.zox-dark .woocommerce .widget_price_filter .price_slider_amount .button {
	background: #333 !important;
	background-color: #333 !important;
	color: #8a7e88 !important;
}

.zox-dark #respond textarea,
.woocommerce .zox-dark div.product .woocommerce-tabs ul.tabs li,
.zox-dark #comments .text {
	background: #333 !important;
}

.zox-dark #respond #submit {
	background: #000 !important;
}

.zox-dark .comment-reply a {
	border-top: 5px solid #181818;
	border-left: 5px solid #181818;
}

.zox-dark .zox-post-body p a {
	box-shadow: inset 0 -1px 0 0 #181818, inset 0 -2px 0 0 #fff;
}

.zox-dark span.zox-s-cat,
.zox-dark span.zox-post-excerpt p,
.zox-dark .zox-author-info-wrap,
.zox-dark p.zox-s-graph,
.zox-dark.zox-s3 .zox-art-small span.zox-s-cat,
.zox-dark .zox-post-body h1,
.zox-dark .zox-post-body h2,
.zox-dark .zox-post-body h3,
.zox-dark .zox-post-body h4,
.zox-dark .zox-post-body h5,
.zox-dark .zox-post-body h6,
.zox-dark .zox-post-body h1 a,
.zox-dark .zox-post-body h2 a,
.zox-dark .zox-post-body h3 a,
.zox-dark .zox-post-body h4 a,
.zox-dark .zox-post-body h5 a,
.zox-dark .zox-post-body h6 a,
.zox-dark .zox-woo-wrap h1,
.zox-dark .zox-woo-wrap h2,
.zox-dark .zox-woo-wrap h3,
.zox-dark .zox-woo-wrap h4,
.zox-dark .zox-woo-wrap h5,
.zox-dark .zox-woo-wrap h6,
.zox-dark .zox-woo-wrap h1 a,
.zox-dark .zox-woo-wrap h2 a,
.zox-dark .zox-woo-wrap h3 a,
.zox-dark .zox-woo-wrap h4 a,
.zox-dark .zox-woo-wrap h5 a,
.zox-dark .zox-woo-wrap h6 a,
.zox-dark .zox-post-tags-header,
.zox-dark h3.zox-post-cat a,
.zox-dark .zox-byline-wrap span,
.zox-dark .zox-byline-wrap span a,
.zox-s6 .zox-dark span.zox-s-cat,
.zox-s7 .zox-dark span.zox-s-cat,
.zox-fash2 .zox-dark span.zox-s-cat,
.zox-dark h1.zox-author-top-head,
.zox-dark span.zox-authors-name a,
.zox-dark #comments a {
	color: #999 !important;
}

.zox-sport3 .zox-dark .zox_feat_widget span.zox-widget-main-title {
	background-color: transparent !important;
}

.zox-dark .zox-widget-side-trend-wrap .zox-art-text:before {
	border: 1px solid #999;
	color: #999;
}

.zox-dark .zox-post-type {
	border: 3px solid #999;
}

.zox-dark .zox-widget-featl-sub .zox-post-type {
	border: 2px solid #999;
}

.zox-ent1 .zox-dark .zox-side-widget.zox_ad_widget,
.zox-dark .zox-side-widget.zox_ad_widget,
.zox-sport3 .zox-dark .zox_ad_widget,
.zox-fash3 .zox-dark .zox_ad_widget,
.zox-tech1 .zox-dark .zox-side-widget.zox_ad_widget {
	background: none !important;
}

.zox-logo-dark {
	display: none;
}

.zox-dark .zox-logo-stand {
	display: none;
}

.zox-dark .zox-logo-dark {
	display: inline;
	width: auto;
}

/************************************************
	6. Fly-Out Navigation
************************************************/

.zox-fly-but-wrap {
	display: grid;
	align-content: center;
	justify-content: center;
	cursor: pointer;
	margin: 28px 0;
	width: 24px;
	height: 14px;
}

#zox-fly-wrap {
	overflow: hidden;
	position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
	-webkit-transform: translate3d(-400px,0,0);
	   -moz-transform: translate3d(-400px,0,0);
	    -ms-transform: translate3d(-400px,0,0);
	     -o-transform: translate3d(-400px,0,0);
		transform: translate3d(-400px,0,0);
	width: 400px;
	height: 100%;
	z-index: 999999;
	}

.zox-fly-but-cont {
	cursor: pointer;
	margin: 31px 25px;
	position: relative;
	width: 24px;
	height: 14px;
	}

#zox-fly-menu-top {
	display: grid;
	grid-template-columns: calc(100% - 50px) 50px;
	align-content: center;
	justify-content: space-between;
	margin: 10px 0 0;
	padding: 0 30px;
	width: 100%;
	height: 60px;
	}

#zox-fly-logo {
	display: grid;
	align-content: center;
	padding: 0 0 0 50px;
	text-align: center;
	height: 60px;
	}

#zox-fly-logo img {
	width: auto;
	max-height: 50px;
}

#zox-fly-wrap .zox-fly-but-wrap {
	display: grid;
	align-content: center;
	justify-content: center;
	margin: 17px 0 17px 24px;
	width: 26px;
	height: 26px;
}

.zox-fly-but-wrap span,
.zox-search-but-wrap span {
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
	    -ms-border-radius: 2px;
	     -o-border-radius: 2px;
		border-radius: 2px;
	background: #000;
	display: block;
	position: absolute;
		right: 0;
	-webkit-transform: rotate(0deg);
	   -moz-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	     -o-transform: rotate(0deg);
		transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	   -moz-transition: .25s ease-in-out;
	    -ms-transition: .25s ease-in-out;
	     -o-transition: .25s ease-in-out;
		transition: .25s ease-in-out;
	height: 2px;
	}

.zox-fly-but-wrap span:nth-child(1) {
	top: 0;
	width: 24px;
	}

.zox-fly-but-wrap span:nth-child(2),
.zox-fly-but-wrap span:nth-child(3) {
	top: 12px;
	width: 20px;
	}

.zox-fly-but-wrap span:nth-child(4) {
	top: 6px;
	width: 16px;
	}

.zox-fly-but-wrap.zox-fly-open span:nth-child(1),
.zox-fly-but-wrap.zox-fly-open span:nth-child(4) {
	top: .5px;
	left: 50%;
	width: 0%;
	}

.zox-fly-but-wrap.zox-fly-open span:nth-child(2),
.zox-search-but-wrap span:nth-child(1) {
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
		transform: rotate(45deg);
	width: 30px;
	}

.zox-fly-but-wrap.zox-fly-open span:nth-child(3),
.zox-search-but-wrap span:nth-child(2) {
	-webkit-transform: rotate(-45deg);
	   -moz-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	     -o-transform: rotate(-45deg);
		transform: rotate(-45deg);
	width: 30px;
	}

.zox-search-but-wrap span:nth-child(1),
.zox-search-but-wrap span:nth-child(2) {
	width: 60px;
	}

.zox-fly-but-menu {
	float: left;
	margin-left: 15px;
	position: relative;
	}

.zox-fly-menu {
	-webkit-transform: translate3d(0,0,0) !important;
	   -moz-transform: translate3d(0,0,0) !important;
	    -ms-transform: translate3d(0,0,0) !important;
	     -o-transform: translate3d(0,0,0) !important;
		transform: translate3d(0,0,0) !important;
	}

.zox-fly-content,
.zox-nav-over {
	-webkit-transform: translate3d(100%,0,0) !important;
	   -moz-transform: translate3d(100%,0,0) !important;
	    -ms-transform: translate3d(100%,0,0) !important;
	     -o-transform: translate3d(100%,0,0) !important;
		transform: translate3d(100%,0,0) !important;
	}

#zox-fly-menu-wrap {
	overflow: hidden;
	position: absolute;
		top: 70px;
		left: 0;
	width: 100%;
	height: calc(100% - 142px);
	}

nav.zox-fly-nav-menu {
	-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	display: grid;
	overflow: hidden;
	padding: 30px 30px 0;
	position: absolute !important;
	width: 100%;
	max-height: calc(100vh - 170px);
	}

nav.zox-fly-nav-menu ul {
	float: left;
	position: relative;
	width: 100%;
	}

nav.zox-fly-nav-menu ul div.zox-mega-dropdown {
	display: none;
	}

nav.zox-fly-nav-menu ul li {
	cursor: pointer;
	float: left;
	position: relative;
	width: 100%;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	}

nav.zox-fly-nav-menu ul li:first-child {
	margin-top: -14px;
	}

nav.zox-fly-nav-menu ul li ul li:first-child {
	margin-top: 0;
	}

nav.zox-fly-nav-menu ul li a {
	display: inline-block;
	font-size: 24px;
	line-height: 1;
	padding: 14px 0;
	text-transform: uppercase;
	}

nav.zox-fly-nav-menu ul li.menu-item-has-children:after {
	content: '+';
	font-family: 'Open Sans', sans-serif;
	font-size: 38px;
	font-weight: 700;
	position: absolute;
		right: 0;
		top: 10px;
	}

nav.zox-fly-nav-menu ul li.menu-item-has-children.tog-minus:after {
	content: '_';
	right: 4px;
	top: -9px;
	}

nav.zox-fly-nav-menu ul li ul.sub-menu {
	border-top: 1px solid rgba(0,0,0,.1);
	display: none;
	float: left;
	padding-left: 20px;
	width: 100%;
	}

.zox-fly-fade {
	background: rgba(0,0,0,.5);
	cursor: pointer;
	opacity: 0;
	width: 100%;
	position: fixed;
		top: 0;
		left: 0;
	transform: scale(2);
	z-index: 99999;
	}

.zox-fly-fade-trans {
	opacity: .7;
	height: 100%;
	}

.zox-body-blur {
	-webkit-filter: blur(3px);
	   -moz-filter: blur(3px);
	    -ms-filter: blur(3px);
	     -o-filter: blur(3px);
		filter: blur(3px);
}

.zox-fly-shadow {
	box-shadow: 0 0 16px 0 rgba(0,0,0,0.7);
	}

#zox-fly-soc-wrap {
	margin: 0 5.40540540541%; /* 20px / 370px */
	position: absolute;
		bottom: 20px;
		left: 0;
	text-align: center;
	width: 89.1891891892%; /* 330px / 370px */
	}

span.zox-fly-soc-head {
	color: #000;
	display: inline-block;
	font-size: .7rem;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 15px;
	text-transform: uppercase;
	}

ul.zox-fly-soc-list {
	text-align: center;
	width: 100%;
	}

ul.zox-fly-soc-list li {
	display: inline-block;
	}

ul.zox-fly-soc-list li a {
	background: rgba(0,0,0,.15);
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	    -ms-border-radius: 50%;
	     -o-border-radius: 50%;
		border-radius: 50%;
	color: #000;
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	margin-left: 2px;
	padding-top: 9px;
	text-align: center;
	width: 32px;
	height: 32px;
	}

ul.zox-fly-soc-list li:first-child a {
	margin-left: 0;
	}

ul.zox-fly-soc-list li a:hover {
	font-size: 16px;
	padding-top: 7px;
	height: 32px;
	}

/************************************************
	7. Featured Posts
************************************************/

.zox-art-grid {
	display: grid;
	grid-template-areas:
		'zox-img'
		'zox-text';
}

.zox-art-img {
	-webkit-backface-visibility: hidden;
	overflow: hidden;
	grid-area: zox-img;
}

.zox-art-img img {
	-webkit-transition: -webkit-transform .5s ease-in;
	   -moz-transition: -moz-transform .5s ease-in;
	    -ms-transition: -ms-transform .5s ease-in;
	     -o-transition: -o-transform .5s ease-in;
		transition: transform .5s ease-in;
}

.zox-post-type {
	background: rgba(0,0,0,.8);
	border: 3px solid #ec2b8c;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	    -ms-border-radius: 50%;
	     -o-border-radius: 50%;
			border-radius: 50%;
	color: #fff;
	display: grid;
	align-content: center;
	justify-content: center;
	font-size: 16px;
	margin: 0;
	position: absolute;
		top: 30px;
		left: 30px;
	width: 50px;
	height: 50px;
}

.zox-post-type span {
	margin: 0 0 0 2px;
	opacity: 1;
}

.zox-widget-featl-main .zox-post-type,
.zox-widget-featl-sub .zox-post-type  {
	display: grid;
}

.zox-widget-featl-sub .zox-post-type {
	border: 2px solid #ec2b8c;
	font-size: 10px;
	margin: -15px 0 0 -15px !important;
	top: 50% !important;
	left: 50% !important;
	width: 30px;
	height: 30px;
}

.zox-widget-featl-sub .zox-post-type span {
	margin: 0 0 0 1px;
}

.zox-widget-feat-wrap .zox-post-type {
display: none;
}

.zox-ent2 .zox-post-type,
.zox-ent3 .zox-post-type,
.zox-sport2 .zox-post-type,
.zox-sport3 .zox-post-type,
.zox-tech1 .zox-post-type,
.zox-tech2 .zox-post-type,
.zox-tech3 .zox-post-type {
	margin: -25px 0 0 -25px;
	left: 50%;
	top: 50%;
}

.zox-ent3 .zox-post-type {
	margin: -35px 0 0 -25px;
}

.zox-ent3 #zox-main-blog-wrap .zox-post-type {
	margin: -25px 0 0 -25px;
}

.zox-ent2 .zox-feat-ent2-main-grid .zox-post-type,
.zox-ent2 .zox-feat-ent2-sub-wrap .zox-post-type {
	margin: 0;
	left: 20px;
	top: 20px;
}

.zox-feat-left-wrap .zox-post-type {
margin: -25px 0 0 -25px;
left: 50%;
top: 50%;
}

.zox-net1 .zox-post-type,
.zox-net2 .zox-post-type {
	border: none;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	    -ms-border-radius: 0;
	     -o-border-radius: 0;
			border-radius: 0;
	font-size: 10px;
	margin: 0;
	top: auto;
	left: auto;
	right: 0;
	bottom: 0;
	height: 30px;
	width: 30px;
	z-index: 5;
}

.zox-net2 .zox-widget-featl-over .zox-post-type {
	display: none;
}

#zox-feat-net1-wrap .zox-feat-net1-sub.zox-div4 .zox-art-img img {
	object-fit: fill;
}

.zox-net3 .zox-post-type {
	left: 20px;
	top: 20px;
}

#zox-home-widget-wrap .zox-art-img:hover img,
#zox-main-blog-wrap  .zox-art-img:hover img{
	transform: scale(1.06);
}

#zox-home-widget-wrap .zox-divs .zox-art-img:hover img {
	transform: none;
}

.zox-art-text-cont {
	width: 100%;
}

.zox-art-text {
	display: grid;
	grid-area: zox-text;
}

.zox-art-text2 {
	padding: 30px;
}

h3.zox-s-cat {
	float: left;
	position: relative;
	width: 100%;
	margin: 0 0 10px;
}

.zox-sport3 h3.zox-s-cat {
	margin: 0 0 7px;
}

span.zox-s-cat {
	color: #ec2b8c;
	float: left;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	position: relative;
	text-transform: uppercase;
}

.zox-sport3 span.zox-s-cat {
	font-size: 12px;
}

h2.zox-s-title1,
h2.zox-s-title1-feat,
h2.zox-s-title2,
h2.zox-s-title3,
.zox-s8 .zox-art-small a:hover h2.zox-s-title3 {
	box-shadow: none;
}

h2.zox-s-title1,
h2.zox-s-title1-feat {
	color: #111;
	display: inline;
	font-family: 'Heebo', sans-serif;
	font-size: 2.75rem;
	font-weight: 900;
	letter-spacing: -.02em;
	line-height: 1.1;
	position: relative;
	width: 100%;
}

h2.zox-s-title1-feat {
	font-size: 3.25rem;
}

h2.zox-s-title2 {
	color: #000;
	display: inline;
	font-family: 'Heebo', sans-serif;
	font-size: 1.375rem;
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.125;
	position: relative;
	text-transform: capitalize;
	width: 100%;
}

h2.zox-s-title3 {
	color: #111;
	display: inline;
	font-family: 'Heebo', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.25;
	position: relative;
	text-transform: capitalize;
	width: 100%;
}

p.zox-s-graph {
	color: #555;
	float: left;
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	margin: 5px 0 0;
	position: relative;
	width: 100%;
}

.zox-byline-wrap {
	float: left;
	margin: 8px 0 0;
	position: relative;
	width: 100%;
}

.zox-sport3 .zox-byline-wrap {
	margin: 5px 0 0;
}

.zox-byline-wrap span,
.zox-byline-wrap span a {
	color: #999;
	font-size: .75rem;
	font-weight: 400;
	text-transform: none;
}

span.zox-byline-date {
	margin: 0 0 0 7px;
}

span.zox-byline-date i {
	margin: 0 5px 0 0;
}

.zox-div1 h2.zox-s-title1-feat,
.zox-div1t h2.zox-s-title1-feat {
	font-size: 3.25rem;
}

.zox-div2 h2.zox-s-title1-feat,
.zox-div23 h2.zox-s-title1-feat,
.zox-div1 h2.zox-s-title1,
.zox-div1 h2.zox-s-title2,
.zox-div1t h2.zox-s-title1,
.zox-div1t h2.zox-s-title2 {
	font-size: 2.125rem;
}

.zox-sport3 .zox-div23 h2.zox-s-title1-feat,
.zox-sport3 .zox-div23 h2.zox-s-title1,
.zox-sport3 .zox-div1 h2.zox-s-title1 {
	font-size: 1.75rem;
}

.zox-s8 .zox-div1 h2.zox-s-title1,
.zox-div2 h2.zox-s-title1,
.zox-div2 h2.zox-s-title2,
.zox-div23 h2.zox-s-title1,
.zox-div23 h2.zox-s-title2 {
	font-size: 2.125rem;
}

.zox-div3 h2.zox-s-title2,
.zox-div4t h2.zox-s-title2 {
	font-size: 1.5rem;
}

.zox-side-widget .zox-div3 h2.zox-s-title2,
.zox-side-widget .zox-div4t h2.zox-s-title2 {
	font-size: 1.125rem;
}

.zox-sport2 .zox-div3 h2.zox-s-title2 {
	font-size: 1.875rem;
}

.zox-sport2 .zox-div4 h2.zox-s-title2 {
	font-size: 1.5rem;
}

.zox-sport3 .zox-div3 h2.zox-s-title2,
.zox-sport3 .zox-div4 h2.zox-s-title2 {
	font-size: 1rem;
}

.zox-divr h2.zox-s-title2 {
	font-size: 1.75rem;
}

.zox-sport2 .zox-divr h2.zox-s-title2 {
	font-size: 2.125rem;
}

.zox-fash2 .zox-div3 h2.zox-s-title2,
.zox-fash2 .zox-div4 h2.zox-s-title2 {
	font-size: 1.5rem;
	line-height: 1.35;
}

.zox-div5 h2.zox-s-title2,
.zox-div5 h2.zox-s-title3,
.zox-sport3 .zox-divr h2.zox-s-title2,
.zox-sport3 .zox-divr h2.zox-s-title3,
.zox-sport3 .zox-widget-altimg-wrap h2.zox-s-title2 {
	font-size: 1rem;
}

.zox-div6 h2.zox-s-title2,
.zox-div6 h2.zox-s-title3 {
	font-size: .875rem;
}

.zox-div4 p.zox-s-graph,
.zox-sport2 .zox-divr p.zox-s-graph {
	display: none;
}

.zox-div4 span.zox-s-cat {
	font-size: .75rem;
}

.zox-divr .zox-art-grid {
	grid-gap: 40px;
	grid-template-areas: 'zox-img zox-text';
	grid-template-columns: minmax(auto, 600px) minmax(300px, calc(100% - 600px));
}

.zox-side-widget .zox-divr .zox-widget-flex1-cont {
	grid-gap: 20px;
}

.zox-side-widget .zox-divr .zox-art-main .zox-art-grid {
	grid-gap: 0;
	grid-template-columns: 100%;
	grid-template-areas:
		'zox-img'
		'zox-text';
}

.zox-s1 .zox-side-widget .zox-divr .zox-art-main .zox-art-text,
.zox-s1 .zox-side-widget .zox-div3 .zox-art-text,
.zox-s1 .zox-side-widget .zox-div4 .zox-art-text {
	padding: 10px 10px 20px;
	text-align: center;
}

.zox-side-widget .zox-divr .zox-art-main h2.zox-s-title2 {
	font-size: 1.125rem;
}

.zox-side-widget .zox-divr .zox-art-mid .zox-art-grid {
	grid-gap: 15px;
	grid-template-columns: 80px auto;
}

.zox-side-widget .zox-divr .zox-art-mid .zox-reg-img,
.zox-side-widget .zox-divr .zox-art-mid .zox-byline-wrap {
	display: none;
}

.zox-side-widget .zox-divr .zox-art-mid .zox-mob-img {
	display: inline !important;
}

.zox-side-widget .zox-divr .zox-art-mid .zox-art-text {
	padding: 0;
}

.zox-side-widget .zox-divr .zox-art-mid h3.zox-s-cat {
	margin: 0 0 5px;
}

.zox-side-widget .zox-divr .zox-art-mid h2.zox-s-title2 {
	font-size: .875rem;
}

.zox-tech2 .zox-divr .zox-art-grid,
.zox-tech3 .zox-divr .zox-art-grid {
	grid-template-columns: 240px auto;
}

.zox-tech2 .zox-divr h2.zox-s-title2,
.zox-tech3 .zox-divr h2.zox-s-title2 {
	font-size: 1.375rem;
}

.zox-divr .zox-art-text,
.zox-s4 .zox-divr .zox-art-text,
.zox-s5 .zox-divr .zox-art-text {
	display: grid;
	align-content: center;
	padding: 0 30px;
	text-align: left;
	width: 100%;
}

.zox-s1 .zox-art-wrap,
.zox-s2 .zox-art-wrap {
	background: #fff;
}

.zox-s1.zox-div1 .zox-art-wrap,
.zox-s2.zox-div1 .zox-art-wrap,
.zox-s3.zox-div1 .zox-art-wrap,
.zox-s4.zox-div1 .zox-art-wrap,
.zox-s5.zox-div1 .zox-art-wrap,
.zox-s6.zox-div1 .zox-art-wrap,
.zox-s1.zox-div23 .zox-art-grid,
.zox-s2.zox-div23 .zox-art-grid,
.zox-s3.zox-div23 .zox-art-grid,
.zox-s4.zox-div23 .zox-art-grid,
.zox-s5.zox-div23 .zox-art-grid,
.zox-o3.zox-div2 .zox-art-wrap {
	display: grid;
	grid-template-areas: 'zox-img zox-text';
	grid-template-columns: 3fr 2fr;
}

.zox-s1 .zox-art-text {
	padding: 15px 30px 30px;
	text-align: center;
}

.zox-s1 .zox-divr .zox-art-text {
	text-align: left;
}

.zox-s1.zox-div1 .zox-art-text,
.zox-s2.zox-div1 .zox-art-text,
.zox-s3.zox-div1 .zox-art-text,
.zox-s4.zox-div1 .zox-art-text,
.zox-s5.zox-div1 .zox-art-text,
.zox-s6.zox-div1 .zox-art-text,
.zox-s1.zox-div23 .zox-art-text,
.zox-s2.zox-div23 .zox-art-text,
.zox-s3.zox-div23 .zox-art-text,
.zox-s4.zox-div23 .zox-art-text,
.zox-s5.zox-div23 .zox-art-text {
	align-content: center;
	padding: 0;
}

.zox-s1 span.zox-s-cat,
.zox-s2 span.zox-s-cat {
	float: none;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.zox-s1 .zox-byline-wrap span,
.zox-s1 .zox-byline-wrap span a,
.zox-s2 .zox-byline-wrap span,
.zox-s2 .zox-byline-wrap span a {
	color: #999;
	font-size: .75rem;
	font-weight: 400;
	text-transform: none;
}

.zox-s2 .zox-art-text {
	padding: 15px 30px 40px;
	position: relative;
	text-align: center;
}

.zox-s2.zox-div1 .zox-art-text,
.zox-s2.zox-div2 .zox-art-text {
	padding: 15px 60px 30px;
}

.zox-s2.zox-div23 .zox-art-text,
.zox-s3.zox-div23 .zox-art-text {
	padding: 0 30px;
	text-align: left;
}

.zox-s2 .zox-widget-altimg-wrap .zox-art-text {
	text-align: left;
}

.zox-s2 h3.zox-s-cat {
	text-align: center;
	position: absolute;
		top: -14px;
		left: 0;
	width: 100%;
}


.zox-s2 .zox-div1 h3.zox-s-cat,
.zox-s2 .zox-div23 h3.zox-s-cat,
.zox-s2 .zox-divr h3.zox-s-cat,
.zox-s2 .zox-divs h3.zox-s-cat,
.zox-s2 .zox-widget-altimg-wrap h3.zox-s-cat {
	position: relative;
		top: auto;
		left: auto;
		right: auto;
		bottom: auto;
	text-align: left;
}

.zox-s2 span.zox-s-cat {
	background: #fff;
	line-height: 1;
	padding: 10px 25px 1px;
}

.zox-s2 .zox-div1 span.zox-s-cat,
.zox-s2 .zox-div23 span.zox-s-cat,
.zox-s2 .zox-divr span.zox-s-cat,
.zox-s2 .zox-divs span.zox-s-cat,
.zox-s2 .zox-widget-altimg-wrap span.zox-s-cat {
	padding: 0;
}

.zox-s2 .zox-divs span.zox-s-cat {
	font-size: .625rem;
}

.zox-s2 .zox-widget-featl-sub.zox-divs span.zox-s-cat {
	background: none;
}

.zox-s2 .zox-div23 p.zox-s-graph,
.zox-s2 .zox-div3 p.zox-s-graph,
.zox-s2 .zox-div4 p.zox-s-graph,
.zox-s3 .zox-div23 p.zox-s-graph,
.zox-s3 .zox-div3 p.zox-s-graph,
.zox-s3 .zox-div4 p.zox-s-graph {
	display: none;
} 

.zox-s3 .zox-art-wrap {
	background: #fff;
}

.zox-s3 .zox-art-text {
	padding: 15px 30px 30px;
	text-align: left;
}

.zox-s3 h3.zox-s-cat {
	display: flex;
	margin: 0;
	position: absolute;
		left: 0;
		top: 0;
}

.zox-s3 .zox-art-small h3.zox-s-cat {
	margin: 0 0 4px;
	position: relative;
		left: auto;
		top: auto;
}
.zox-s3 .zox-art-small span.zox-s-cat {
	background: none;
	color: #000;
	padding: 0;
}

.zox-s3 span.zox-s-cat,
.zox-o1 span.zox-s-cat {
	background: #111;
	color: #fff;
	float: left;
	font-size: .875rem;
	font-weight: 400;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.zox-s3.zox-div4 span.zox-s-cat,
.zox-o1.zox-div4 span.zox-s-cat {
	font-size: .75rem;
}

.zox-s3 span.zox-s-cat {
	padding: 7px 14px 6px;
}

.zox-s3 .zox-byline-wrap span,
.zox-s3 .zox-byline-wrap span a {
	font-weight: 500;
}

.zox-s4 .zox-art-text {
	padding: 12px 20px 20px;
	position: relative;
	text-align: left;
}

.zox-s4.zox-main .zox-art-text {
	padding: 15px 20px 0;
}

.zox-s4 h3.zox-s-cat {
	display: flex;
	margin: 0;
	position: absolute;
		top: -29px;
		left: 0;
}

.zox-s4 .zox-widget-altimg-wrap h3.zox-s-cat {
	margin: 0 0 10px;
	position: relative;
		top: auto;
		left: auto;
}

.zox-s4 .zox-widget-altimg-wrap span.zox-s-cat {
	background: none;
	padding: 0;
}

.zox-s4 .zox-div1 h3.zox-s-cat,
.zox-s4 .zox-divr h3.zox-s-cat,
.zox-s4 .zox-art-small h3.zox-s-cat {
	margin: 0 0 10px;
	position: relative;
		top: auto;
		left: auto;
}

.zox-s4 span.zox-s-cat {
	background: #fff;
	color: #333;
	float: left;
	font-size: 12px;
	padding: 15px 20px 4px;
	text-transform: uppercase;
}

.zox-s4.zox-div1 span.zox-s-cat,
.zox-s4 .zox-divr span.zox-s-cat,
.zox-s4 .zox-art-small span.zox-s-cat {
	background: none;
	padding: 0;
}

.zox-s4 .zox-byline-wrap {
	margin: 15px 0 0;
}

.zox-s4 .zox-byline-wrap span,
.zox-s4 .zox-byline-wrap span a {
	color: #333;
	font-weight: 500;
}

.zox-s5.zox-div1 .zox-art-wrap,
.zox-s5.zox-div23 .zox-art-wrap {
	display: grid;
	grid-area: feat-main;
	grid-template-areas: 'zox-text zox-img';
}

.zox-s5.zox-div1 .zox-art-wrap {
	grid-gap: 40px;
	grid-template-columns: 1fr 2fr;
}

.zox-s5.zox-div23 .zox-art-wrap {
	grid-gap: 30px;
	grid-template-columns: 1fr 1fr;
}

.zox-s5 .zox-art-text {
	align-content: center;
	padding: 20px 0 0;
	text-align: center;
}

.zox-s5 .zox-post-more .zox-art-text {
	padding: 20px 30px 30px;
}

.zox-post-more p.zox-s-graph {
	display: none !important;
}

.zox-s5.zox-div1 .zox-art-text {
	margin: 0;
	padding: 0;
}

.zox-s5 span.zox-s-cat {
	color: #bbb;
	float: none;
	font-size: .75rem;
}

.zox-s5.zox-main span.zox-s-cat {
	font-size: 1rem;
}

.zox-s5 p.zox-s-graph {
	color: #000;
	font-size: 1.125rem;
	line-height: 1.45;
}

.zox-s5.zox-div1 p.zox-s-graph {
	font-size: 1.5rem;
}

.zox-s5 .zox-divr p.zox-s-graph {
	margin: 0;
}

.zox-s5 .zox-byline-wrap {
	margin: 20px 0 0;
}

.zox-s5 .zox-divr .zox-byline-wrap {
	margin: 10px 0 0;
}

.zox-s5 .zox-byline-wrap span,
.zox-s5 .zox-byline-wrap span a {
	color: #bbb;
	font-size: .875rem;
}

.zox-s6 .zox-art-wrap {
	background: #fff;
	float: left;
	width: 100%;
}

.zox-s6 .zox-art-text {
	padding: 20px 40px 50px;
	text-align: left;
}

.zox-s6 .zox-widget-txtw .zox-widget-featl-sub .zox-art-text {
	padding: 0 15px 0 0;
}

.zox-s6 .zox-widget-txtw span.zox-s-cat {
	color: #fff;
}

.zox-tech2.zox-s6 .zox-div3 .zox-art-text,
.zox-tech2.zox-s6 .zox-div4 .zox-art-text {
	padding: 20px 20px 30px;
}

.zox-s6 .zox-div4 .zox-art-text {
	padding: 20px 20px 30px;
}

.zox-s6 span.zox-s-cat,
.zox-s7 span.zox-s-cat {
	color: #000;
}

.zox-s6 #zox-home-widget-wrap span.zox-s-cat,
.zox-s6 #zox-main-blog-wrap span.zox-s-cat {
	font-size: .75rem;
}

.zox-s6 .zox-div3 p.zox-s-graph {
	display: none;
}

.zox-sport3 .zox-div3 .zox-art-text,
.zox-sport3 .zox-div4 .zox-art-text {
	padding: 10px 20px 20px;
}

.zox-s7 .zox-art-wrap {
	background: #fff;
}

.zox-s7.zox-div1 .zox-art-wrap,
.zox-s7.zox-div23 .zox-art-wrap {
	display: grid;
	grid-gap: 30px;
	grid-template-areas: 'zox-text zox-img';
	grid-template-columns: 1fr 1fr;
}

.zox-s7 .zox-art-text {
	background: #fff;
	float: none;
	padding: 20px 20px 0;
	position: relative;
		top: -40px;
		left: 20px;
	width: calc(100% - 20px);
}

.zox-s7 .zox-divr .zox-art-text,
.zox-s7 .zox-widget-altimg-wrap .zox-art-text,
.zox-s7 .zox-divs .zox-art-text {
	background: none;
	float: none;
	align-content: center;
	padding: 0;
	top: auto;
	left: auto;
	right: auto;
	width: 100%;
}

.zox-s7 .zox-divs .zox-art-text {
	padding: 0 15px;
}

.zox-s7 .zox-divr .zox-art-text,
.zox-s7 .zox-widget-altimg-wrap .zox-art-text {
	padding: 0 40px;
}

.zox-s7 h2.zox-s-title2 {
	line-height: 1.3;
}

.zox-fash3 .zox-widget-altimg-wrap h2.zox-s-title2 {
	line-height: 1.15;
}

.zox-s7 span.zox-s-cat,
.zox-s7 .zox-divs span.zox-s-cat {
	font-size: .6875rem;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.zox-s7 .zox-byline-wrap {
	margin: 25px 0 0;
	padding: 15px 0 0;
}

.zox-s7 .zox-byline-wrap:before {
	content: '';
	background: rgb(184, 154, 106);
	position: absolute;
		top: 0;
		left: 0;
		width: 40px;
		height: 4px;
}

.zox-s7 .zox-byline-wrap span,
.zox-s7 .zox-byline-wrap span a {
	color: #000;
	letter-spacing: .15em;
}

.zox-s8.zox-div1 .zox-art-grid {
	display: grid;
	grid-template-areas: 'zox-text zox-img';
	grid-template-columns: 1fr 2fr;
}

.zox-s8 .zox-divr .zox-art-grid {
	grid-gap: 0;
	grid-template-areas: 'zox-text zox-img';
	grid-template-columns: 2fr 3fr;
}

.zox-s8 .zox-art-text {
	padding: 0 30px;
}

.zox-s8 .zox-blog-grid.zox-divr .zox-art-text {
	padding: 0;
}

.zox-s8 .zox-div4 .zox-art-text {
	padding: 0 20px 0 15px;
}

.zox-s8.zox-div1 .zox-art-text {
	align-content: center;
	padding: 0;
}

.zox-s8 h3.zox-s-cat {
	display: flex;
	position: absolute;
		top: 0;
		left: 0;
}

.zox-s8.zox-div1 h3.zox-s-cat,
.zox-s8 .zox-divr h3.zox-s-cat,
.zox-s8 .zox-widget-altimg-wrap h3.zox-s-cat {
	position: relative;
		top: auto;
		left: auto;
}

.zox-s8 .zox-widget-altimg-wrap h3.zox-s-cat {
	margin: 0;
}

.zox-s8 .zox-divr h3.zox-s-cat {
	margin: 0 0 5px 10px;
}

.zox-s8 span.zox-s-cat {
	background: #fff;
	font-size: 1rem;
	padding: 3px 8px 3px 0;
}



.zox-s8.zox-div1 span.zox-s-cat {
	background: none;
	padding: 0;
}

.zox-s8 .zox-widget-altimg-wrap span.zox-s-cat {
	background: #fff;
	padding: 3px 10px;
}

.zox-s8 .zox-art-title {
	float: left;
	margin: 0 0 0 10px !important;
	-webkit-transform: translateY(-30px);
	   -moz-transform: translateY(-30px);
	    -ms-transform: translateY(-30px);
	     -o-transform: translateY(-30px);
		transform: translateY(-30px);
	width: 90%;
}

.zox-s8 .zox-div1 .zox-art-title,
.zox-s8 .zox-divr .zox-art-title,
.zox-s8 .zox-widget-altimg-wrap .zox-art-title,
.zox-o4 .zox-art-title {
	width: 140%;
	-webkit-transform: none;
	   -moz-transform: none;
	    -ms-transform: none;
	     -o-transform: none;
		transform: none;
}

.zox-s8 .zox-divs .zox-art-title,
.zox-s8 .zox-divr .zox-art-title,
.zox-s8 .zox-widget-featl-sub .zox-art-title,
.zox-s8 .zox-widget-featl-main .zox-art-title {
	-webkit-transform: none;
	   -moz-transform: none;
	    -ms-transform: none;
	     -o-transform: none;
		transform: none;
}

.zox-s8 .zox-widget-featl-sub .zox-art-title {
	margin: 0;
}

.zox-s8 h2.zox-s-title1,
.zox-s8 h2.zox-s-title1-feat,
.zox-s8 h2.zox-s-title2 {
	background-color: #fff;
	box-decoration-break: clone;
	box-shadow: 15px 0 0 #fff, -10px 0 0 #fff;
	color: #000;
	display: inline;
	float: none;
	line-height: 1.25;
	padding: 2px;
}

.zox-s8.zox-div1 h2.zox-s-title2 {
	color: #fff;
	font-size: 2.125rem;
	padding: 3px;
}

.zox-s8 .zox-div3 h2.zox-s-title2 {
	font-size: 1.125rem;
}

.zox-s8 .zox-div4 h2.zox-s-title2 {
	font-size: 1rem;
}

.zox-s8 p.zox-s-graph,
.zox-s8 .zox-byline-wrap {
	display: none;
}

.zox-o1 .zox-art-text {
	padding: 0 24px 24px;
	position: absolute;
		bottom: 0;
		left: 0;
	text-align: left;
	width: 100%;
}

.zox-o1 .zox-art-title,
.zox-o1.zox-div1 .zox-art-title {
	float: left;
	margin: 0 0 0 10px;
	width: 90%;
}

.zox-o1 h3.zox-s-cat{
	margin: 0 0 5px;
	position: relative;
		left: auto;
		top: auto;
}

.zox-s8 .zox-o1 h3.zox-s-cat {
	margin: 0;
}

.zox-o1 span.zox-s-cat {
	color: #fff;
	padding: 7px 14px 6px;
}

.zox-o1 h2.zox-s-title1,
.zox-o1 h2.zox-s-title1-feat,
.zox-o1 h2.zox-s-title2 {
	background-color: #fff;
	box-decoration-break: clone;
	box-shadow: 15px 0 0 #fff, -10px 0 0 #fff;
	display: inline;
	float: none;
	line-height: 1.22;
	padding: 2px;
}

.zox-o1 .zox-art-wrap:hover h2.zox-s-title1,
.zox-o1 .zox-art-wrap:hover h2.zox-s-title1-feat,
.zox-o1 .zox-art-wrap:hover h2.zox-s-title2 {
	background-color: #111;
	box-shadow: 15px 0 0 #111, -10px 0 0 #111;
	color: #fff;
}

.zox-o1 .zox-feat-ent2-sub1 h2.zox-s-title2 {
	font-size: 1.875rem;
}

.zox-o1 .zox-feat-ent2-sub2 h2.zox-s-title2 {
	font-size: 1.625rem;
}

.zox-o1.zox-feat-ent2-main .zox-art-text h2.zox-s-title1,
.zox-o1.zox-feat-ent2-main .zox-art-text h2.zox-s-title1-feat,
.zox-o1.zox-feat-ent2-sub1 .zox-art-text h2.zox-s-title2,
.zox-o1.zox-feat-ent2-sub2 .zox-art-text h2.zox-s-title2,
.zox-o1 h2.zox-s-title1,
.zox-o1 h2.zox-s-title1-feat {
	text-transform: uppercase;
}

.zox-o1 .zox-art-text p.zox-s-graph,
.zox-o1 .zox-art-text .zox-byline-wrap {
	display: none;
}

.zox-o1 .zox-widget-ad,
.zox-s3 .zox-widget-ad {
	padding: 17px 0 0;
}

.zox-blog-grid.zox-s8.zox-divr {
	grid-gap: 60px;
}

.zox-o3 .zox-art-text {
	background: #fff;
	padding: 0 30px 30px;
	text-align: left;
	width: 100%;
}

.zox-o3.zox-div1 .zox-art-text,
.zox-o3.zox-div23 .zox-art-text {
	position: absolute;
		left: 4%;
		bottom: 6%;
	min-width: 340px;
	width: 30%;
}

.zox-o3.zox-widget-feat-main .zox-art-text,
.zox-o3.zox-widget-featl-wrap .zox-art-text {
	min-width: 0;
	width: 375px;
}

.zox-o3 h3.zox-s-cat {
	margin: 0 0 20px -30px;
	padding: 15px 60px 15px 30px;
	position: relative;
	width: calc(100% + 60px);
}

.zox-o3 span.zox-s-cat {
	background: none !important;
	color: #000 !important;
	font-size: .75rem;
	letter-spacing: .2em;
	padding: 0;
}

.zox-o3 h2.zox-s-title1,
.zox-o3 h2.zox-s-title1-feat {
	line-height: 1.1;
}

.zox-o3.zox-div1 h2.zox-s-title1,
.zox-o3.zox-div23 h2.zox-s-title1-feat {
	font-size: 1.875rem;
}

.zox-o3 .zox-byline-wrap {
	margin: 10px 0 0;
}

.zox-o3 .zox-byline-wrap span,
.zox-o3 .zox-byline-wrap span a {
	color: #000;
	font-size: .6875rem;
}

.zox-o4 .zox-art-text,
.zox-o5 .zox-art-text,
.zox-o2 .zox-art-text,
.zox-o6 .zox-art-text {
	background-color: transparent;
	background-image: -moz-linear-gradient(to bottom,rgba(0,0,0,0) 0, rgba(0,0,0,0.6) 50%, rgba(0,0,0,.9) 100%);
	background-image: -ms-linear-gradient(to bottom,rgba(0,0,0,0) 0, rgba(0,0,0,0.6) 50%, rgba(0,0,0,.9) 100%);
	background-image: -o-linear-gradient(to bottom,rgba(0,0,0,0) 0, rgba(0,0,0,0.6) 50%, rgba(0,0,0,.9) 100%);
	background-image: -webkit-linear-gradient(to bottom,rgba(0,0,0,0) 0, rgba(0,0,0,0.6) 50%, rgba(0,0,0,.9) 100%);
	background-image: -webkit-gradient(linear, center top, center bottom, from(rgba(0,0,0,0)), to(rgba(0,0,0,0.9)));
	background-image: linear-gradient(to bottom,rgba(0,0,0,0) 0, rgba(0,0,0,0.6) 50%, rgba(0,0,0,.9) 100%);
	float: left;
	position: absolute;
		top: auto;
		bottom: 0;
		left: 0;
	width: 100%;
}

.zox-o6 .zox-art-text1 {
	position: relative;
}

.zox-o4 .zox-art-text {
	padding: 60px 30px 30px;
	text-align: left;
}

.zox-sport3 .zox-o4 .zox-art-text,
.zox-sport3 .zox-o4.zox-div1 .zox-art-text {
	padding: 60px 20px 20px;
}

.zox-o4.zox-div1 .zox-art-text {
	padding: 100px 50px 50px;
}

.zox-o4 h3.zox-s-cat {
	margin: 0 0 10px;
	position: relative;
	left: auto;
	top: auto;
}

.zox-o4 span.zox-s-cat {
	background: none !important;
	color: #ccc !important;
	float: none;
	padding: 0;
	text-transform: uppercase;
}

.zox-o4 .zox-art-title {
	margin: 0;
	width: 100% !important;
}

.zox-widget-feat-main.zox-o1 .zox-art-title,
.zox-widget-feat-main.zox-o4 .zox-art-title {
	max-width: 600px;
}

.zox-o4 h2.zox-s-title1,
.zox-o4 h2.zox-s-title1-feat,
.zox-o4 h2.zox-s-title2,
.zox-o4 p.zox-s-graph {
	background: none;
	box-shadow: none;
	color: #fff;
	padding: 0;
}

.zox-o4 a:hover h2.zox-s-title1,
.zox-o4 a:hover h2.zox-s-title1-feat,
.zox-o4 a:hover h2.zox-s-title2 {
	background: none;
	color: #fff !important;
}

.zox-o4.zox-feat-sports3-main p.zox-s-graph {
	display: none;
}

.zox-o4 .zox-byline-wrap span,
.zox-o4 .zox-byline-wrap span a {
	color: #ccc;
}

.zox-o5 .zox-art-text {
	background-color: transparent;
	padding: 20px;
	text-align: center;
	top: auto;
	right: auto;
}

.zox-o5.zox-div1 .zox-art-text,
.zox-o5.zox-div1t .zox-art-text {
	padding: 40px;
}

.zox-o5 span.zox-s-cat,
.zox-o5 .zox-byline-wrap span,
.zox-o5 .zox-byline-wrap span a {
	color: #fff;
	font-weight: 700;
	letter-spacing: .15em;
}

.zox-o5 span.zox-s-cat {
	float: none;
	font-size: .6875rem;
	margin: 0 0 5px;
	text-transform: uppercase;
}

.zox-o5 h2.zox-s-title1,
.zox-o5 h2.zox-s-title1-feat,
.zox-o5 h2.zox-s-title2 {
	color: #fff;
}

.zox-o5 p.zox-s-graph  {
	color: #fff;
}

.zox-o5 .zox-byline-wrap {
	margin: 30px 0 0;
	padding: 25px 0 0;
}

.zox-o5 .zox-byline-wrap:before {
	content: '';
	background: #fff;
	margin: 0 0 0 -40px;
	position: absolute;
		top: 0;
		left: 50%;
	width: 80px;
	height: 6px;
}

.zox-o5 .zox-byline-wrap span,
.zox-o5 .zox-byline-wrap span a {
	font-size: .75rem;
}

.zox-o2 .zox-art-wrap {
	grid-template-columns: 100%;
}

.zox-o2 .zox-art-text {
	background-color: transparent;
	padding: 100px 30px 40px;
	top: auto;
	right: auto;
	text-align: center;
	width: 100%;
}

.zox-o2 h3.zox-s-cat {
	margin: 0 0 15px;
}

.zox-o2 span.zox-s-cat {
	color: #fff;
	float: none;
	font-size: 1.125rem;
	letter-spacing: 0;
	text-transform: uppercase;
}

.zox-o2 .zox-byline-wrap {
	display: none;
}

.zox-o2 h2.zox-s-title1,
.zox-o2 h2.zox-s-title1-feat,
.zox-o2 h2.zox-s-title2,
.zox-o2 p.zox-s-graph {
	color: #fff;
	display: inline-block;
	float: none;
	margin: 0 auto;
	max-width: 800px;
}

.zox-feat-ent1-grid {
	display: grid;
	grid-gap: 20px;
	grid-template-areas: 'feat-contw feat-right';
	grid-template-columns: auto 300px;
	width: 100%;
}

.zox-feat-ent1-cont-wrap {
	display: grid;
	grid-area: feat-contw;
	grid-gap: 20px;
	grid-template-areas: 'feat-left feat-cont';
	grid-template-columns: 300px auto;
}

.zox-feat-ent1-cont {
	display: grid;
	align-content: start;
	grid-area: feat-cont;
	grid-gap: 20px;
	grid-template-areas: 'feat-main' 'feat-sub';
}

.zox-feat-ent1-main-wrap {
	box-shadow: 0 0 2px 1px rgba(0,0,0,.06);
	background: #fff;
	display: grid;
	grid-area: feat-main;
	width: 100%;
}

.zox-feat-ent1-main-wrap .zox-art-img {
	height: 576px;
}

.zox-feat-ent1-main-wrap .zox-art-img img {
	object-fit: cover;
	position: absolute;
		top: 0;
	width: 1024px;
	height: 576px;
}

.zox-o6 .zox-art-text {
	padding: 60px 30px 30px;
	text-align: left;
}

.zox-o6 span.zox-s-cat {
	background: #ec2b8c;
	color: #fff;
	font-size: 11px;
	letter-spacing: .2em;
	padding: 3px 10px;
}

.zox-o6 h2.zox-s-title1,
.zox-o6 h2.zox-s-title2,
.zox-o6 h2.zox-s-title1-feat,
.zox-o6 p.zox-s-graph {
	color: #fff;
}

.zox-o6 a:hover h2.zox-s-title1,
.zox-o6 a:hover h2.zox-s-title2,
.zox-o6 a:hover h2.zox-s-title1-feat {
	color: #ccc;
}

.zox-o6 p.zox-s-graph {
	font-size: .875rem;
}

.zox-feat-ent1-sub-wrap {
	display: grid;
	grid-area: feat-sub;
	grid-gap: 20px;
	grid-template-columns: repeat(2, 1fr);
	width: 100%;
}

.zox-feat-ent1-sub-wrap .zox-art-img {
	padding-top: 100%;
}

.zox-feat-ent1-sub-wrap .zox-art-img img {
	margin: 0 auto;
	position: absolute;
		left: -9999px;
		right: -9999px;
		bottom: 0;
		top: 0;
	width: 100%;
	min-width: 178%;
}

.zox-feat-ent1-sub-wrap p.zox-s-graph {
	display: none;
}

.zox-feat-right-wrap {
	grid-area: feat-right;
	grid-gap: 20px;
	grid-template-columns: 100%;
	width: 100%;
}

.zox-ent1 .zox-feat-right-wrap {
	width: 300px;
}

.zox-feat-left-wrap {
	background: #fff;
	grid-area: feat-left;
	grid-template-columns: 100%;
}

.single .zox-side-widget.zox_ad_widget,
.page .zox-side-widget.zox_ad_widget,
.single #zox-woo-side-wrap .zox-side-widget,
.page #zox-woo-side-wrap .zox-side-widget {
	border: none;
	box-shadow: none;
}

.zox-feat-ent1-left {
	border-top: 2px solid #ec2b8c;
	display: grid;
	padding: 20px;
}

.zox-ent1 .zox-side-widget {
	border-top: 2px solid #ec2b8c;
}

.zox-ent1 .zox-side-widget.zox_ad_widget,
.zox-ent1 #zox-woo-side-wrap .zox-side-widget {
	border-top: none;
}

.zox-feat-ent1-left p.zox-s-graph,
.zox-feat-ent1-left .zox-byline-wrap {
	display: none;
}

.zox-feat-ent1-left .zox-art-small .zox-art-grid {
	grid-template-areas: 'zox-text';
}

.zox-feat-ent1-left .zox-art-main,
.zox-feat-ent1-left .zox-art-small {
	margin: 0 0 20px;
}

.zox-feat-ent1-left article:last-child {
	margin: 0;
}

.zox-feat-ent1-left .zox-art-small .zox-art-img {
	display: none;
}

.zox-feat-ent1-left .zox-art-text {
	padding: 0;
	text-align: left;
}

.zox-feat-ent1-left .zox-art-main .zox-art-text {
	padding: 7px 0 0;
}

.zox-feat-ent1-left .zox-art-text h3.zox-s-cat {
	margin: 0 0 3px;
}

.zox-feat-ent1-left .zox-art-text span.zox-s-cat,
.zox-feat-ent1-right .zox-art-text span.zox-s-cat {
	font-size: .6875rem;
}

.zox-feat-ent1-left .zox-art-main h2.zox-s-title2 {
	font-size: 1rem;
}

.zox-feat-ent1-left .zox-art-small h2.zox-s-title3 {
	font-weight: 400;
}

.zox-ent1 .zox-blog-grid.zox-div3,
.zox-ent1 .zox-blog-grid.zox-div4 {
	grid-column-gap: 20px;
}

.zox-feat-ent2-grid {
	display: grid;
	grid-gap: 24px;
	grid-template-areas: 'feat-main' 'feat-bot';
}

.zox-feat-ent2-main-wrap {
	display: grid;
	grid-area: feat-main;
}

.zox-feat-ent2-main-grid {
	display: grid;
	grid-gap: 24px;
	grid-template-columns: repeat(2, 1fr);
}

.zox-feat-ent2-main .zox-art-img,
.zox-feat-ent2-sub2 .zox-art-img {
	padding-top: 100%;
}

.zox-feat-ent2-main .zox-art-img img,
.zox-feat-ent2-sub2 .zox-art-img img {
	object-fit: cover;
	position: absolute;
		top: 0;
	width: 100%;
	height: 100%;
}

.zox-feat-ent2-bot {
	display: grid;
	grid-area: feat-bot;
	grid-gap: 24px;
	grid-template-areas: 'feat-sub feat-right';
	grid-template-columns: auto 376px;
}

.zox-feat-ent2-sub-wrap {
	display: grid;
	align-content: start;
	grid-area: feat-sub;
	grid-gap: 24px;
}

.zox-feat-ent2-sub2 {
	display: grid;
	grid-gap: 24px;
	grid-template-columns: repeat(2, 1fr);
	width: 100%;
}

.zox-feat-ent1-side .zox-widget-ad {
	padding: 10px 0 0;
}

.zox-feat-ent3-grid {
	display: grid;
	grid-gap: 40px;
}

.zox-feat-ent3-sub-wrap {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(3, 1fr);
}

.zox-feat-ent3-main-wrap a:hover h2.zox-s-title2 {
	background-color: #fff;
	box-shadow: 15px 0 0 #fff, -10px 0 0 #fff;
	color: #000;
}

#zox-feat-net1-wrap {
	background: #fff;
}

.zox-feat-net1-grid {
	display: grid;
	grid-gap: 20px;
	grid-template-areas: 'feat-cont feat-right';
	grid-template-columns: auto 300px;
}

.zox-feat-net1-cont {
	display: grid;
	grid-area: feat-cont;
	grid-gap: 20px;
	grid-template-areas: 'feat-left feat-main';
	grid-template-columns: 265px auto;
}

.zox-feat-net1-main-wrap {
	display: grid;
	align-content: start;
	grid-area: feat-main;
}

.zox-feat-net1-main h2.zox-s-title2 {
	font-size: 2.5rem;
}

.zox-feat-net1-main p.zox-s-graph {
	color: #000;
}

.zox-feat-net1-main .zox-byline-wrap {
	margin: 15px 0 0;
}

.zox-feat-net1-sub {
	display: grid;
	align-content: start;
	grid-area: feat-left;
	grid-gap: 40px;
}

.zox-feat-net1-sub h2.zox-s-title2 {
	font-size: 1.125rem;
}

.zox-feat-net1-sub p.zox-s-graph,
.zox-feat-net1-sub .zox-byline-wrap {
	display: none;
}

.zox-feat-net1-right-wrap {
	display: grid;
	align-content: start;
	grid-area: feat-right;
}

.zox-feat-net2-grid {
	display: grid;
	grid-gap: 2px;
	grid-template-areas: 'feat-main feat-sub';
	grid-template-columns: repeat(2, 1fr);
}

.zox-feat-net2-main-wrap {
	display: grid;
	grid-area: feat-main;
}

.zox-feat-net2-main-wrap .zox-art-img {
	padding-top: 49.82%;
}

.zox-feat-net2-sub-wrap .zox-art-img {
	padding-top: 100%;
}

.zox-feat-net2-main-wrap .zox-art-img img,
.zox-feat-net2-sub-wrap .zox-art-img img {
	margin: 0 auto;
	position: absolute;
		left: -9999px;
		right: -9999px;
		top: 0;
		bottom: 0;
}

.zox-feat-net2-main-wrap .zox-art-img img {
	min-width: 100%;
}

.zox-feat-net2-sub-wrap .zox-art-img img {
	min-width: 178%;
}

.zox-feat-net2-grid p.zox-s-graph {
	display: none;
}

.zox-feat-net2-main-wrap h2.zox-s-title2 {
	font-size: 2.5rem;
	line-height: 1.1;
}

.zox-feat-net2-sub-wrap.zox-div4 h2.zox-s-title2 {
	font-size: 1.5rem;
	line-height: 1.2;
}

.zox-feat-net2-sub-wrap {
	display: grid;
	grid-area: feat-sub;
	grid-gap: 2px;
	grid-template-columns: repeat(2, 1fr);
}

.zox-feat-net3-grid {
	display: grid;
	grid-gap: 40px;
	grid-template-areas:
		'feat-main'
		'feat-sub';
}

.zox-feat-net3-main-wrap .zox-art-text span.zox-s-cat {
	font-size: 1rem;
}

.zox-feat-net3-main-wrap .zox-art-text h2.zox-s-title1,
.zox-feat-net3-main-wrap .zox-art-text h2.zox-s-title1-feat,
.zox-feat-net3-sub-wrap .zox-art-text h2.zox-s-title2 {
	line-height: 1.1;
}

.zox-feat-net3-sub-wrap {
	border-top: 1px solid #ddd;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 40px 0 0;
}

.zox-feat-net3-sub-wrap .zox-art-wrap {
	border-left: 1px solid #ddd;
	padding: 0 40px;
}

.zox-feat-net3-sub-wrap .zox-art-wrap:first-child {
	border-left: 0;
}

.zox-feat-sport1-grid {
	display: grid;
	grid-gap: 24px;
	grid-template-areas:
		'feat-main feat-right'
		'feat-sub feat-sub';
	grid-template-columns: auto 340px;
}

.zox-feat-sport1-main-wrap {
	display: grid;
	grid-area: feat-main;
}

.zox-feat-sport1-sub-wrap {
	display: grid;
	grid-area: feat-sub;
	grid-gap: 24px;
	grid-template-columns: repeat(3, 1fr);
}

.zox-feat-right-wrap {
	display: grid;
	align-content: start;
	grid-area: feat-right;
}

.zox-feat-sport1-side-wrap .zox-widget-tab-wrap h3.zox-s-cat,
.zox-feat-sport1-side-wrap .zox-art-img {
	display: none;
}

.zox-feat-sport1-side-wrap .zox-widget-tab-wrap {
	background: #fff;
}

.zox-feat-sport1-side-wrap .zox-widget-tab-head-wrap {
	border-bottom: 1px solid #ddd;
}

.zox-feat-sport1-side-wrap ul.zox-widget-tab-head {
	padding: 0 24px;
}

.zox-feat-sport1-side-wrap ul.zox-widget-tab-head li a {
	display: flex;
	justify-content: center;
	padding: 18px 24px 14px;
}

.zox-feat-sport1-side-wrap ul.zox-widget-tab-head li.active a {
	border-bottom: 3px solid #000;
}

.zox-feat-sport1-side-wrap .zox-side-list-wrap {
	padding: 10px 24px;
	width: 100%;
}

.zox-feat-sport1-side-wrap .zox-widget-tab-wrap .zox-art-wrap {
	border-top: 1px solid #ddd;
	margin: 0;
	padding: 12px 0 0;
}

.zox-feat-sport1-side-wrap .zox-widget-tab-wrap .zox-art-grid {
	grid-template-columns: auto;
}

.zox-feat-sport1-side-wrap .zox-widget-tab-wrap .zox-art-wrap:first-child {
	border-top: none;
	padding: 0;
}

.zox-feat-sport1-side-wrap .zox-widget-tab-wrap h2.zox-s-title3 {
	font-size: 1rem;
	line-height: 1.15;
}

.zox-feat-sport2-grid {
	display: grid;
	grid-gap: 60px;
}

.zox-o3 h3.zox-s-cat {
	background: #03fc96;
}

.zox-feat-sports3-main-wrap .zox-art-img {
	overflow: hidden;
	max-height: 400px;
}

.zox-feat-sports3-main-wrap,
.zox-feat-sports3-sub .zox-art-wrap {
	box-shadow: 0 0 2px 1px rgba(0,0,0,.06);
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.zox-sport3 .zox-divr .zox-art-wrap,
.zox-sport3 .zox-div3 .zox-art-wrap,
.zox-sport3 .zox-div4 .zox-art-wrap,
.zox-sport3 .zox-widget-featl-sub .zox-art-wrap,
.zox-sport3 .zox-widget-altimg-wrap .zox-art-wrap {
	border-radius: 10px;
	box-shadow: 0 1px 3px 1px rgba(0,0,0,.1);
	overflow: hidden;
}

.zox-feat-sports3-sub {
	display: grid;
	grid-gap: 15px;
	grid-template-columns: repeat(3, 1fr);
	padding: 20px;
}

.zox-feat-sports3-sub .zox-art-wrap {
	box-shadow: 0 2px 2px 1px rgba(0,0,0,.06);
}

.zox-feat-sports3-sub .zox-art-text {
	float: left;
	padding: 10px 20px 20px;
}

.zox-feat-sports3-sub .zox-art-text h2.zox-s-title2 {
	font-size: 1rem;
}

.zox-fash1 .zox-top-soc-wrap {
	grid-gap: 10px;
	margin-top: -20px;
	height: 40px;
}

.zox-fash1 .zox-top-soc-wrap a {
	height: 40px;
}

.zox-fash1 span.zox-top-soc-but {
	border: 1px solid #aaa;
	border-radius: 50%;
	font-size: 16px;
	display: grid;
	align-content: center;
	text-align: center;
	width: 40px;
	height: 40px;
}

.zox-feat-fash1-grid {
	display: grid;
	grid-gap: 40px;
	grid-template-columns: repeat(2, 1fr);
}

.zox-feat-fash1-main .zox-art-img {
	padding-top: 109%;
}

.zox-feat-fash1-main .zox-art-img img {
	margin: 0 auto;
	position: absolute;
		left: -9999px;
		right: -9999px;
		top: 0;
	width: 100%;
	min-width: 195%;
}

.zox-feat-fash1-sub-wrap {
	display: flex;
	align-items: flex-start;
	flex-flow: column wrap;
	max-height: 1800px;
}

.zox-feat-fash1-sub-wrap .zox-art-wrap {
	width: calc(50% - 20px);
}

.zox-feat-fash1-sub-wrap .zox-art-wrap:nth-child(odd) {
	margin: 0 40px 0 0;
}

.zox-feat-fash1-sub-wrap .zox-art-wrap:nth-child(2n+1) {
	order: 1;
}

.zox-feat-fash1-sub-wrap .zox-art-wrap:nth-child(2n) {
	order: 2;
}

.zox-feat-fash1-right-wrap .zox-div4 .zox-art-img {
	padding-top: 140%;
}

.zox-feat-fash1-right-wrap .zox-div4 .zox-art-img img {
	position: absolute;
		top: 0;
	min-width: 0;
}

.zox-feat-fash1-sub-wrap .zox-art-wrap:nth-child(1) .zox-art-img,
.zox-feat-fash1-sub-wrap .zox-art-wrap:nth-child(6) .zox-art-img {
	padding-top: 100%;
}


.home #zox-feat-fash2-wrap {
	margin: -30px 0 0;
}

.zox-feat-fash2-grid {
	display: grid;
	align-content: start;
	grid-gap: 0;
	grid-template-columns: repeat(4, 1fr);
}

.zox-feat-fash2-grid .zox-art-img {
	padding-top: 100%;
}

.zox-feat-fash2-grid .zox-art-img img {
	margin: 0 auto;
	position: absolute;
		left: -9999px;
		right: -9999px;
		top: 0;
		bottom: 0;
	min-width: 178%;
}

.zox-feat-fash2-grid h3.zox-s-cat,
.zox-fash2 .zox-widget-flex1-col .zox-art-text h3.zox-s-cat {
	margin: 0;
	position: absolute;
		left: 0;
		top: -15px;
	text-align: center;
}

.zox-feat-fash2-grid h2.zox-s-title2 {
	font-size: 1.5rem;
	line-height: 1.35;
}

.zox-feat-fash2-grid p.zox-s-graph {
	display: none;
}

.zox-fash2 .zox-byline-wrap span,
.zox-fash2 .zox-byline-wrap span a {
	color: #2f3846;
}

.zox-fash2 .zox-widget-feat-wrap .zox-byline-wrap span,
.zox-fash2 .zox-widget-feat-wrap .zox-byline-wrap span a {
	color: #ccc;
}

.zox-fash2 .zox-byline-wrap span.zox-byline-date {
	text-transform: capitalize;
}

#zox-feat-fash3-wrap {
	overflow: hidden;
	max-height: 780px;
}

#zox-feat-fash3-wrap .zox-art-img {
	max-height: 680px;
}

#zox-feat-fash3-wrap .zox-art-img img {
	width: 100%;
}

.zox-feat-fash3-grid,
.zox-feat-fash3-grid .zox-art-wrap {
	height: 100%;
}

#zox-feat-tech1-wrap {
	margin: -20px 0 0;
}

.category #zox-feat-tech1-wrap {
	margin: 0;
}

.zox-feat-tech1-grid,
.zox-feat-tech1-sub {
	display: grid;
	grid-gap: 0;
	grid-template-columns: 1fr 1fr;
}

.zox-feat-tech1-main .zox-art-img,
.zox-feat-tech1-sub .zox-art-img {
	overflow: hidden;
	height: 560px;
}

.zox-feat-tech1-main .zox-art-img img,
.zox-feat-tech1-sub .zox-art-img img {
	object-fit: cover;
	position: absolute;
		top: 0;
}

.zox-feat-tech1-main .zox-art-img img {
	width: 100%;
	height: 100%;
}

.zox-feat-tech1-sub .zox-art-img img {
	width: 100%;
	height: 100%;
}

.zox-feat-tech1-sub .zox-art-text p.zox-s-graph {
	display: none;
}

.zox-feat-tech1-main .zox-art-text .zox-art-text-cont {
	margin: 0 auto;
	max-width: 600px;
}

.zox-feat-tech1-main .zox-art-text .zox-art-title,
.zox-feat-tech1-main .zox-art-text h2.zox-s-title1,
.zox-feat-tech1-main .zox-art-text h2.zox-s-title1-feat {
	margin: 0 auto;
}

.zox-feat-tech1-main .zox-art-text h3.zox-s-cat {
	margin: 0 auto 10px;
}

.zox-feat-tech1-main .zox-art-text p.zox-s-graph {
	font-size: 1.125rem;
	margin: 10px auto 0;
}

.zox-feat-tech1-main .zox-art-text .zox-byline-wrap {
	margin: 15px auto 0;
}

.zox-feat-tech1-sub .zox-art-text .zox-byline-wrap {
	margin: 15px 0 0;
}

.zox-feat-tech2-grid {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: 100%;
}

.zox-feat-tech2-main {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: 5fr 3fr;
}

.zox-tech2 .zox-art-img,
.zox-feat-tech2-main .zox-art-wrap {
	border-radius: 5px;
	overflow: hidden;
}

.zox-feat-tech2-main .zox-art-wrap:nth-child(1) .zox-art-img {
	padding-top: 60%;
}

.zox-feat-tech2-main .zox-art-wrap:nth-child(1) .zox-art-img img {
	min-width: 107%;
}

.zox-feat-tech2-main .zox-art-img img {
	margin: 0 auto;
	position: absolute;
		top: 0;
		left: -9999px;
		bottom: 0;
		right: -9999px;
}

.zox-feat-tech2-main .zox-art-wrap:nth-child(2) .zox-art-img {
	padding-top: 100%;
}

.zox-feat-tech2-main .zox-art-wrap:nth-child(2) .zox-art-img img {
	min-width: 178%;
}

.zox-feat-tech2-main .zox-art-text p.zox-s-graph,
.zox-feat-tech2-main .zox-art-text .zox-byline-wrap,
.zox-feat-tech2-sub .zox-art-text h3.zox-s-cat,
.zox-feat-tech2-sub .zox-art-text p.zox-s-graph,
.zox-feat-tech2-sub .zox-art-text .zox-byline-wrap {
	display: none;
}

.zox-feat-tech2-sub {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(4, 1fr);
}

#zox-feat-tech3-wrap {
	margin: -12px 0 0;
	padding: 0 8px;
}

.zox-feat-tech3-grid,
.zox-feat-tech3-sub-wrap {
	display: grid;
	grid-gap: 8px;
	grid-template-columns: 1fr 1fr;
}


.zox-feat-tech3-main .zox-art-wrap {
	overflow: hidden;
}

.zox-feat-tech3-main .zox-art-img {
	padding-top: 56.76%;
}

.zox-feat-tech3-main .zox-art-img img {
	object-fit: cover;
	position: absolute;
		top: 0;
	height: 100%;
}

.zox-feat-tech3-sub-right .zox-art-wrap {
	overflow: hidden;
}

.zox-feat-tech3-sub-left.zox-div4 .zox-art-img {
	padding-top: 114.7%;
}

.zox-feat-tech3-sub-left.zox-div4 .zox-art-img img {
	width: 600px;
}

.zox-feat-tech3-sub-right {
	display: grid;
	grid-gap: 8px;
	grid-template-columns: 100%;
}

.zox-feat-tech3-sub-right.zox-div4 .zox-art-img {
	padding: 0;
}

.zox-feat-tech3-sub-right.zox-div4 .zox-art-img img {
	margin: 0;
	position: relative;
		left: auto;
		right: auto;
		top: auto;
	min-width: 0;
}

.zox-o4.zox-div4 .zox-art-text {
	padding: 60px 30px 30px;
}

.zox-feat-tech3-sub-wrap .zox-div4 h2.zox-s-title2 {
	font-size: 1.25rem;
}

#zox-feat-tech3-wrap p.zox-s-graph {
	display: none;
}

/************************************************
	8. Homepage
************************************************/

#zox-home-body-wrap {
	display: grid;
	grid-gap: 40px;
	grid-template-columns: auto 300px;
}

#zox-home-cont-wrap {
	display: grid;
	grid-gap: 24px;
	grid-template-columns: 100%;
}

.zox-sport3 #zox-home-body-wrap,
.zox-sport3 #zox-home-cont-wrap {
	grid-gap: 20px;
}

#zox-home-widget-wrap {
	display: grid;
	grid-row-gap: 40px;
	grid-template-columns: 100%;
}

.zox-sport3 #zox-home-widget-wrap {
	grid-gap: 20px;
	margin: 0;
}

.zox-widget-home {
	width: 100%;
}

.zox-sport3 .zox-widget-home,
.zox-sport3 #zox-main-blog-wrap {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	padding: 20px;
}

.zox-sport3 .zox_feat_widget {
	padding: 0;
}

.zox-sport3 .zox_feat_widget .zox-art-img {
	background: #000;
	max-height: 400px;
}

.zox-sport3 .zox_feat_widget .zox-art-img img {
	opacity: .7;
}

.zox-sport3 .zox_feat_widget .zox-widget-main-head {
	position: absolute;
		top: 20px;
		left: 20px;
	z-index: 10;
}

.zox-sport3 .zox_feat_widget span.zox-widget-main-title {
	color: #fff;
}

.zox-widget-bgw .zox-widget-home,
.zox-widget-bgg .zox-widget-home,
.zox-widget-bgb .zox-widget-home,
.zox-widget-bgp .zox-widget-home,
.zox-widget-bgs .zox-widget-home {
	margin: 40px 0;
}

.zox-sport3 .zox-widget-bgw .zox-widget-home,
.zox-sport3 .zox-widget-bgg .zox-widget-home,
.zox-sport3 .zox-widget-bgb .zox-widget-home,
.zox-sport3 .zox-widget-bgp .zox-widget-home,
.zox-sport3 .zox-widget-bgs .zox-widget-home {
	padding: 20px 0;
}

.zox-widget-main-head {
	float: left;
	margin: 20px 0;
	position: relative;
	width: 100%;
}

h4.zox-widget-main-title {
	text-align: center;
	width: 100%;
}

span.zox-widget-main-title {
	color: #111;
	display: inline-block;
	font-family: 'IM Fell French Canon', sans-serif;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1;
}

span.zox-widget-home-title {
	font-size: 2.125rem;
}

.zox-tech3 h4.zox-widget-home-title {
	margin: 0 0 15px;
}

.zox-tech3 span.zox-widget-home-title {
	color: #f42;
	font-size: 1.625rem;
}

.zox-widget-txtw .zox-widget-main-head {
	margin: 0 0 20px;
}

.zox-widget-txtw h4.zox-widget-main-title {
	border: none;
	text-align: left;
}

.zox-widget-txtw h4.zox-widget-main-title:after,
.zox-widget-txtw span.zox-widget-main-title:after {
	display: none;
}

.zox-widget-txtw span.zox-widget-main-title {
	background: none;
	border: none;
	color: #fff;
	font-size: 1.625rem;
	font-style: normal;
	font-weight: 800;
	padding: 0;
	top: auto;
}

.zox-widget-flex1-cont {
	display: grid;
	grid-gap: 30px;
}

.zox-widget-flex1-wrap {
	display: grid;
	grid-gap: 30px;
	grid-template-columns: 100%;
}

.zox-ent1 .zox-widget-flex1-cont,
.zox-ent3 .zox-widget-flex1-cont,
.zox-net1 .zox-widget-flex1-cont,
.zox-tech2 .zox-widget-flex1-cont {
	grid-column-gap: 20px;
}

.zox-ent2 .zox-widget-flex1-cont,
.zox-sport1 .zox-widget-flex1-cont {
	grid-column-gap: 24px;
}

.zox-net2 .zox-widget-flex1-cont {
	grid-column-gap: 2px;
}

.zox-net3 .zox-widget-flex1-cont {
	grid-column-gap: 80px;
}

.zox-net3 .zox-div4 .zox-widget-flex1-cont,
.zox-fash1 .zox-div4 .zox-widget-flex1-cont {
	grid-column-gap: 40px;
}

.zox-sport3 .zox-widget-flex1-cont {
	grid-gap: 15px;
}

.zox-widget-flex1-ad {
	grid-template-columns: auto 300px;
}

.zox-widget-flex1-wrap .zox-art-wrap {
	background: #fff;
}

.zox-div4 .zox-art-img {
	overflow: hidden;
	padding-top: 100%;
	position: relative;
}

#zox-feat-net1-wrap .zox-div4 .zox-art-img,
.zox-sport3 .zox-div4 .zox-art-img,
.zox-tech2 .zox-div4 .zox-art-img {
	padding: 0;
}

.zox-div4 .zox-art-img img {
	object-fit: cover;
	position: absolute;
		top: 0;
	height: 100%;
}

#zox-feat-net1-wrap .zox-div4 .zox-art-img img,
.zox-sport3 .zox-div4 .zox-art-img img,
.zox-tech2 .zox-div4 .zox-art-img img {
	margin: 0;
	position: relative;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
	min-width: 0;
}

.zox-div3 .zox-widget-flex1-cont,
.zox-div4.zox-widget-flex1-ad .zox-widget-flex1-cont,
.zox-sport3 .zox-div4 .zox-widget-flex1-cont {
	grid-template-columns: repeat(3, 1fr);
}

.zox-side-widget .zox-widget-flex1-adr {
	float: left;
	width: 100%;
}

.zox-side-widget .zox-div3 .zox-widget-flex1-cont,
.zox-side-widget .zox-div4 .zox-widget-flex1-cont,
.zox-side-widget .zox-div4.zox-widget-flex1-ad .zox-widget-flex1-cont,
.zox-sport3 .zox-side-widget .zox-div4 .zox-widget-flex1-cont {
	grid-gap: 20px;
	grid-template-columns: 100%;
}

.zox-sport3 .zox-side-widget .zox-div3 .zox-art-wrap,
.zox-sport3 .zox-side-widget .zox-div4 .zox-art-wrap,
.zox-sport3 .zox-side-widget .zox-divr .zox-art-wrap {
	border-radius: 0;
	box-shadow: none;
	overflow: visible
}

.zox-sport3 .zox-side-widget .zox-div3 .zox-art-img,
.zox-sport3 .zox-side-widget .zox-div4 .zox-art-img {
	margin: 0 0 0 -15px;
	width: calc(100% + 30px);
}

.zox-side-widget .zox-byline-wrap {
	display: none;
}

.zox-sport3 .zox-side-widget .zox-div3 .zox-art-text,
.zox-sport3 .zox-side-widget .zox-div4 .zox-art-text,
.zox-sport3 .zox-side-widget .zox-divr .zox-art-main .zox-art-text {
	padding: 10px 0 0;
}

.zox-sport3 .zox-side-widget .zox-div3 h2.zox-s-title2,
.zox-sport3 .zox-side-widget .zox-div4 h2.zox-s-title2 {
	font-size: .875rem;
}

.zox-sport3 .zox-side-widget .zox-div3 p.zox-s-graph,
.zox-sport3 .zox-side-widget .zox-div4 p.zox-s-graph,
.zox-sport3 .zox-side-widget .zox-divr .zox-art-main p.zox-s-graph {
	color: #888;
	display: inline;
	font-size: .8125rem;
	line-height: 1.25;
}

.zox-sport3 .zox-side-widget .zox-divr .zox-art-mid p.zox-s-graph {
	display: none;
}

.zox-div4 .zox-widget-flex1-cont {
	grid-template-columns: repeat(4, 1fr);
}

.zox-div3.zox-widget-flex1-ad .zox-widget-flex1-cont {
	grid-template-columns: repeat(2, 1fr);
}

.zox-widget-flex1-col span.zox-s-cat {
	float: none;
}

.zox-net2 .zox-div3 p.zox-s-graph,
.zox-net2 .zox-divr p.zox-s-graph {
	display: none;
}

.zox-div4 h2.zox-s-title2 {
	font-size: 1.125rem;
}

.zox-div4 p.zox-s-graph,
.zox-sport1 .zox-divr p.zox-s-graph {
	display: none;
}

.zox-net1 .zox-divr .zox-art-grid,
.zox-net2 .zox-divr .zox-art-grid {
	grid-gap: 30px;
	grid-template-columns: minmax(auto, 250px) minmax(250px, calc(100% - 250px));
}

.zox-sport1 .zox-divr .zox-art-grid {
	grid-gap: 30px;
	grid-template-columns: 340px auto;
}

.zox-sport3 .zox-divr .zox-art-grid {
	grid-gap: 20px;
	grid-template-columns: 240px auto;
}

.zox-net1 .zox-divr h3.zox-s-cat,
.zox-net2 .zox-divr h3.zox-s-cat,
.zox-sport1 .zox-divr h3.zox-s-cat {
	margin: 0 0 8px;
}

.zox-sport1 .zox-divr span.zox-s-cat,
.zox-sport1 .zox-div4 span.zox-s-cat,
.zox-sport1 .zox-widget-featl-sub span.zox-s-cat {
	font-size: .75rem;
}

.zox-net1 .zox-divr h2.zox-s-title2,
.zox-net2 .zox-divr h2.zox-s-title2,
.zox-sport1 .zox-divr h2.zox-s-title2 {
	font-size: 1.625rem;
}

.zox-net1 .zox-divr .zox-byline-wrap,
.zox-net2 .zox-divr .zox-byline-wrap {
	margin: 8px 0 0;
}

.zox-sport1 .zox-divr .zox-byline-wrap {
	margin: 3px 0 0;
}

.zox-net3 .zox-divr .zox-art-grid {
	grid-gap: 30px;
	grid-template-columns: minmax(auto, 340px) minmax(320px, calc(100% - 340px));
}

.zox-net3 .zox-div4 h2.zox-s-title2 {
	font-size: 1.5rem;
}

.zox-sport3 .zox-divr p.zox-s-graph {
	color: #888;
	display: inline;
	font-size: .8125rem;
	line-height: 1.25;
}

.zox-net3 .zox-div4 p.zox-s-graph,
.zox-net3 .zox-divr p.zox-s-graph {
	display: inline;
}

.zox-widget-flex1-adl .zox-widget-flex1-ad {
	grid-template-areas: 'widget-ad widget-cont';
	grid-template-columns: 300px auto;
}

.zox-widget-flex1-adl .zox-widget-flex1-ad .zox-widget-flex1-cont {
	grid-area: widget-cont;
}

.zox-widget-flex1-adl .zox-widget-flex1-ad .zox-widget-side-ad {
	grid-area: widget-ad;
}

.zox-widget-flex1-adl .zox-widget-flex1-ad {
	grid-gap: 40px;
}

.zox-widget-flex1-adl .zox-widget-flex1-ad .zox-widget-flex1-cont {
	border-left: 1px solid #ddd;
	padding: 0 0 0 40px;
}

.zox-widget-altimg-over .zox-widget-altimg-cont {
	display: grid;
	padding: 0 40px;
	width: 100%;
}

.zox-sport3 .zox-widget-altimg-over .zox-widget-altimg-cont {
	padding: 0;
}

.zox-widget-altimg-stand .zox-widget-altimg-grid {
	display: grid;
	grid-gap: 0;
}

.zox-widget-altimg-over .zox-widget-altimg-grid {
	display: grid;
	grid-gap: 30px;
}

.zox-sport3 .zox-widget-altimg-wrap .zox-widget-altimg-grid {
	grid-gap: 15px;
	grid-template-columns: 1fr 1fr;
}

.zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-grid {
	background: #fff;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.zox-tech2 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-grid {
	background: none;
}

.zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-grid {
	grid-template-areas: 'zox-img zox-text';
}

.zox-widget-altimg-over .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-grid {
	grid-template-columns: auto 440px;
}

.zox-sport3 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-grid,
.zox-sport3 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-wrap:nth-child(even) .zox-art-grid {
	grid-template-areas:
		'zox-img'
		'zox-text';
	grid-template-columns: 100%;
}

.zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-wrap:nth-child(even) .zox-art-grid {
	grid-template-areas: 'zox-text zox-img';
}

.zox-s3 .zox-widget-altimg-wrap .zox-widget-altimg-grid h3.zox-s-cat {
		margin: 0 0 10px;
		position: relative;
		left: auto;
		top: auto;
}

.zox-s3 .zox-widget-altimg-wrap .zox-widget-altimg-grid span.zox-s-cat {
	background: none;
	color: #000;
	padding: 0;
}

.zox-widget-altimg-over .zox-widget-altimg-grid .zox-art-wrap:nth-child(even) .zox-art-grid {
	grid-template-columns: 440px auto;
}

.zox-widget-altimg-stand .zox-art-img {
	min-height: 563px;
}

.zox-sport3 .zox-widget-altimg-wrap .zox-art-img {
	min-height: 0;
	padding: 0;
}

.zox-widget-altimg-stand .zox-art-img img {
	margin: 0 auto;
	position: absolute;
		left: -9999px;
		right: -9999px;
		top: 0;
		bottom: 0;
	min-width: 1000px;
}

.zox-sport3 .zox-widget-altimg-wrap .zox-art-img img {
	position: relative;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
	min-width: 100%;
}

.zox-widget-altimg-wrap .zox-art-text {
	display: grid;
	align-content: center;
	margin: 0 auto;
	padding: 0 40px;
	max-width: 500px;
}

.zox-sport3 .zox-widget-altimg-wrap .zox-art-text {
	padding: 10px 20px 20px;
}

.zox-s8 .zox-widget-altimg-over .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-text-cont {
	margin-left: -20%;
}

.zox-s8 .zox-widget-altimg-over .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-title {
	width: 120%;
}

.zox-widget-altimg-wrap h2.zox-s-title2 {
	font-size: 2.375rem;
}

.zox-ent1 .zox-widget-altimg-wrap h2.zox-s-title2 {
	font-size: 2rem;
}

.zox-s7 .zox-widget-altimg-wrap h2.zox-s-title2,
.zox-s8 .zox-widget-altimg-wrap h2.zox-s-title2 {
	font-size: 2.125rem;
}

.zox-sport3 .zox-widget-altimg-wrap p.zox-s-graph {
	display: none;
}

.zox-widget-altimg-over .zox-art-img {
	overflow: hidden;
	position: relative;
	height: 450px;
}

.zox-sport3 .zox-widget-altimg-over .zox-art-img {
	height: auto;
}

.zox-widget-altimg-over .zox-art-img img {
	margin: 0 auto;
	position: absolute;
		left: -9999px;
		right: -9999px;
		top: 0;
		bottom: 0;
	min-width: 800px;
}

.zox-widget-bg {
	float: left;
	width: 100%;
}

.zox-side-widget .zox-widget-bg {
	margin: 20px 0 0;
}

.zox-widget-bgw,
.zox-widget-bgw.zox-widget-txtw .zox-art-wrap,
.zox-widget-bgw.zox-widget-txtw .zox-widget-featl-sub .zox-art-wrap {
	background: #fff;
}

.zox-widget-bgg,
.zox-widget-bgg.zox-widget-txtw .zox-art-wrap,
.zox-widget-bgg.zox-widget-txtw .zox-widget-featl-sub .zox-art-wrap {
	background: #f0f0f0;
}

.zox-widget-bgb,
.zox-widget-bgb.zox-widget-txtw .zox-art-wrap,
.zox-widget-bgb.zox-widget-txtw .zox-widget-featl-sub .zox-art-wrap {
	background: #000;
}

.zox-widget-featl-grid {
	display: grid;
	grid-template-columns: minmax(auto,1000px) minmax(400px,calc(100% - 1000px));
}

.zox-sport3 .zox-widget-featl-grid {
	grid-template-columns: 100%;
}

.zox-widget-featl-over .zox-widget-featl-grid {
	grid-gap: 0;
}

.zox-widget-featl-main .zox-art-img {
	height: 500px;
}

.zox-widget-featl-main .zox-post-type,
.zox-widget-featl-sub .zox-post-type  {
	display: grid;
}

.zox-tech2 .zox-widget-featl-main {
	border-radius: 10px;
	overflow: hidden;
}

.zox-widget-featl-main .zox-art-img img {
	margin: 0 auto;
	position: absolute;
		left: -9999px;
		right: -9999px;
	min-width: 890px;
}

.zox-widget-txtw .zox-widget-featl-main {
	background: none;
}

.zox-widget-featl-main p.zox-s-graph {
	display: none;
}

.zox-widget-featl-sub {
	display: grid;
	grid-gap: 15px;
	align-content: start;
	margin: 0 0 0 15px;
}

.zox-sport3 .zox-widget-featl-sub {
	padding: 15px 0 0;
}

.zox-widget-txtw .zox-widget-featl-sub {
	background: none;
}

.zox-widget-txtw .zox-widget-featl-sub .zox-art-text {
	background: none;
}

.zox-widget-featl-sub .zox-art-grid {
	grid-template-areas: 'zox-img zox-text';
	grid-gap: 15px;
	grid-template-columns: 88px auto;
}

.zox-widget-featl-sub .zox-art-text {
	display: grid;
	align-content: center;
	padding: 0 15px 0 0;
	text-align: left;
}

.zox-widget-featl-sub h3.zox-s-cat {
	margin: 0 0 4px;
}

.zox-widget-featl-sub span.zox-s-cat {
	font-size: 12px;
}

.zox-s8 .zox-widget-featl-sub span.zox-s-cat {
	display: none;
}

.zox-widget-featl-sub h2.zox-s-title3 {
	font-size: 1rem;
}

.zox-fash3 .zox-widget-featl-sub h2.zox-s-title3 {
	font-weight: 400;
}

.zox-widget-featl-over .zox-widget-featl-main .zox-art-img {
	min-height: 506px;
}

.zox-widget-featl-over .zox-widget-featl-main .zox-art-img img {
	margin: 0 auto;
	position: absolute;
		left: -9999px;
		right: -9999px;
	min-width: 900px;
}

.zox-widget-txtw .zox-widget-featl-wrap span.zox-s-cat,
.zox-widget-txtw .zox-widget-featl-wrap .zox-byline-wrap span,
.zox-widget-txtw .zox-widget-featl-wrap .zox-byline-wrap span a {
	color: #ccc;
}

.zox-widget-txtw .zox-widget-featl-wrap .zox-o1 span.zox-s-cat,
.zox-widget-txtw .zox-widget-featl-wrap .zox-o6 span.zox-s-cat {
	color: #fff;
}

.zox-widget-txtw span.zox-s-cat,
.zox-widget-txtw h2.zox-s-title1,
.zox-widget-txtw h2.zox-s-title2,
.zox-widget-txtw h2.zox-s-title3,
.zox-widget-txtw p.zox-s-graph,
.zox-widget-txtw .zox-byline-wrap span,
.zox-widget-txtw .zox-byline-wrap span a {
	color: #fff;
}

.zox-widget-txtw .zox-o1 h2.zox-s-title1 {
	color: #000;
}

.zox-widget-widthw .zox-body-width {
	margin: 0;
	max-width: none;
	padding: 0;
}

.zox-widget-widthw .zox-art-text-cont {
	margin: 0 auto;
	max-width: 900px;
}

.zox-widget-widthw .zox-o3 .zox-art-text {
	padding: 0 30px 30px;
	width: 30%;
}

.zox-widget-feat-wrap .zox-art-img {
	max-height: 670px;
}

.zox-widget-feat-wrap.zox-o1 .zox-art-text-cont,
.zox-widget-feat-wrap.zox-o4 .zox-art-text-cont,
.zox-widget-feat-main.zox-o1 .zox-art-text-cont,
.zox-widget-feat-main.zox-o4 .zox-art-text-cont {
	margin: 0 auto;
	max-width: 1220px;
	padding: 0 30px;
}

.zox-widget-feat-main .zox-art-img img {
	width: 100%;
}

.zox-widget-feat-wrap .zox-art-text span.zox-s-cat {
	float: none;
}

.zox-widget-feat-wrap .zox-art-text p.zox-s-graph {
	display: none;
}

.zox-widget-feat-over .zox-art-text {
	background-image: -moz-linear-gradient(to bottom,rgba(0,0,0,0) 0, rgba(0,0,0,0.3) 50%, rgba(0,0,0,.6) 100%);
	background-image: -ms-linear-gradient(to bottom,rgba(0,0,0,0) 0, rgba(0,0,0,0.3) 50%, rgba(0,0,0,.6) 100%);
	background-image: -o-linear-gradient(to bottom,rgba(0,0,0,0) 0, rgba(0,0,0,0.3) 50%, rgba(0,0,0,.6) 100%);
	background-image: -webkit-linear-gradient(to bottom,rgba(0,0,0,0) 0, rgba(0,0,0,0.3) 50%, rgba(0,0,0,.6) 100%);
	background-image: -webkit-gradient(linear, center top, center bottom, from(rgba(0,0,0,0)), to(rgba(0,0,0,0.6)));
	background-image: linear-gradient(to bottom,rgba(0,0,0,0) 0, rgba(0,0,0,0.3) 50%, rgba(0,0,0,.6) 100%);
	padding: 100px calc(50% - 450px) 40px;
	position: absolute;
		bottom: 0;
		left: 0;
	text-align: center;
	width: 100%;
}

.zox-blog-grid {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: 100%;
}

.zox-sport3 .zox-blog-grid {
	grid-gap: 15px;
}

.zox-blog-grid.zox-div3 {
	grid-template-columns: 1fr 1fr;
}

.zox-blog-grid.zox-div4 {
	grid-template-columns: 1fr 1fr 1fr;
}

.zox-blog-grid.zox-divr.zox-s2 .zox-art-grid {
	grid-template-columns: 1fr 1fr;
}

.zox-blog-grid.zox-div4 .zox-art-img {
	padding-top: 100%;
}

.zox-blog-grid.zox-div4 .zox-art-img img {
	margin: 0 auto;
	object-fit: cover;
	position: absolute;
		top: 0;
}

.zox-blog-grid.zox-divr .zox-art-text,
.zox-s6 .zox-divr .zox-art-text,
.zox-s2 .zox-divr .zox-art-text {
	align-content: center;
	background: none;
	padding: 0 40px 0 0;
	position: static;
		top: auto;
		bottom: auto;
		left: auto;
		right: auto;
	text-align: left;
	width: 100%;
}

.zox-blog-grid.zox-divr .zox-art-text2 {
	padding: 30px;
}

.zox-blog-grid p.zox-s-graph,
.zox-tech2 .zox-divr p.zox-s-graph {
	display: none;
}

.zox-s4.zox-blog-grid.zox-divr .zox-art-wrap,
.zox-s5.zox-blog-grid.zox-divr .zox-art-wrap {
	border-top: 1px solid #ddd;
	padding: 20px 0 0;
}

.zox-s4.zox-blog-grid.zox-divr .zox-art-wrap:first-child,
.zox-s5.zox-blog-grid.zox-divr .zox-art-wrap:first-child {
	border-top: none;
	padding: 0;
}

.zox-widget-flex1-wrap.zox-divr .zox-art-text {
	padding: 0 30px 0 0;
}

/************************************************
	9. Sidebar
************************************************/

#zox-side-wrap,
.zox-side-wrap {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: 100%;
}

.zox-widget-side-head {
	float: left;
	margin: 0 0 20px;
	width: 100%;
}

h4.zox-widget-side-title {
	float: left;
	text-align: center;
	width: 100%;
}

span.zox-widget-side-title {
	color: #111;
	display: inline-block;
	font-family: 'IM Fell French Canon', sans-serif;
	font-size: 2.125rem;
	font-weight: 400;
	line-height: 1;
}

.zox-side-widget {
	background: #fff;
	float: left;
	padding: 20px 20px 30px;
	width: 100%;
}

.single .zox-side-widget {
	padding: 20px 0 30px;
}

.zox-ent2 .zox-side-widget {
	margin: 24px 0 0;
	padding: 20px;
}

.zox-sport3 .zox-side-widget {
	padding: 15px;
}

.zox-side-widget:first-child {
	margin: 0;
}

.zox-widget-ad {
	float: left;
	line-height: 0;
	padding: 13px 0 0;
	text-align: center;
	width: 100%;
}

.zox-ent1 .zox-side-widget.zox_ad_widget,
.zox-side-widget.zox_ad_widget,
.zox-sport3 .zox_ad_widget,
.zox-fash3 .zox_ad_widget,
.zox-tech1 .zox-side-widget.zox_ad_widget {
	background: none;
	border: none;
	padding: 0;
}

.zox-widget-ad span.zox-ad-label,
.alp-advert span.zox-ad-label,
.zox-post-ad-wrap span.zox-ad-label,
.zox-post-bot-ad span.zox-ad-label {
	color: #aaa;
	float: left;
	font-size: 10px;
	letter-spacing: 1.5px;
	line-height: 1;
	margin: -13px 0 0;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}

.zox-post-ad-wrap span.zox-ad-label {
	margin: -20px 0 0;
	position: absolute;
		left: 0;
		top: 0;
}

ul.zox-widget-tab-head {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 0 20px;
}

ul.zox-widget-tab-head li {
	float: left;
	text-align: center;
}

ul.zox-widget-tab-head li a {
	color: #000;
	float: left;
	font-size: .75rem;
	font-weight: 700;
	padding: 0 0 10px;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}

ul.zox-widget-tab-head li.active a {
	border-bottom: 3px solid #000;
}

.zox-side-list-wrap {
	display: grid;
	float: left;
	grid-gap: 15px;
	overflow: hidden;
	width: 100%;
}

.zox-sport3 .zox-side-widget {
	border-radius: 10px;
	overflow: hidden;
}

.zox-sport3 .zox_ad_widget {
	border-radius: 0;
}

.zox-widget-tab-head-wrap {
	border-bottom: 1px solid #ddd;
	margin: 0 0 15px -20px;
	width: calc(100% + 40px);
}

.zox-widget-tab-wrap {
	width: 100%;
}

.zox-widget-tab-wrap .zox-art-wrap {
	overflow: hidden;
	width: 100%;
}

.zox-widget-tab-wrap .zox-art-grid {
	display: grid;
	grid-gap: 10px;
	grid-template-areas: 'zox-img zox-text';
	grid-template-columns: 50px auto;
}

.zox-widget-tab-wrap .zox-art-text {
	display: grid;
	align-content: center;
	overflow: hidden;
	padding: 0;
	width: 100%;
}

.zox-widget-tab-wrap h2.zox-s-title3 {
	float: left;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25;
	overflow: hidden;
	width: 100%;
}

.zox-tab-noimg h2.zox-s-title3 {
	line-height: 1.25;
	height: 16px;
}

.zox-widget-tab-wrap h3.zox-s-cat {
	display: none;
}

.zox-sport3 .zox-widget-tab-wrap .zox-art-img {
	border-radius: 5px;
	overflow: hidden;
}

.zox-ent1 .zox-side-widget {
	background: #fff;
	padding: 20px 20px 30px;
}

.zox-ent1 .zox-side-widget.zox_ad_widget,
.zox-net1 .zox-side-widget.zox_ad_widget {
	padding: 0;
}

.zox-widget-side-trend-wrap {
	display: grid;
	grid-gap: 20px;
}

.zox-widget-side-trend-wrap .zox-art-wrap {
	counter-increment: zox-trend;
}

.zox-widget-side-trend-wrap .zox-art-grid {
	grid-template-areas: 'zox-text';
}

.zox-widget-side-trend-wrap .zox-art-img,
.zox-widget-side-trend-wrap h3.zox-s-cat {
	display: none;
}

.zox-widget-side-trend-wrap .zox-art-text,
.zox-divs .zox-widget-side-trend-wrap .zox-art-text,
.zox-s1 .zox-widget-side-trend-wrap .zox-art-text,
.zox-s7 .zox-divs .zox-widget-side-trend-wrap .zox-art-text {
	padding: 0 0 0 41px;
	text-align: left;
}

.zox-widget-side-trend-wrap .zox-art-text:before {
	content: counter(zox-trend);
	border: 1px solid #ec2b8c;
	border-radius: 50%;
	color: #ec2b8c;
	display: grid;
	align-content: center;
	justify-content: center;
	font-family: 'Roboto', sans-serif;
	font-size: .875rem;
	font-weight: 700;
	margin: -13px 0 0;
	position: absolute;
		left: 0;
		top: 50%;
	width: 26px;
	height: 26px;
}

.zox-widget-side-trend-wrap h2.zox-s-title3 {
	font-size: .875rem;
	font-weight: 700;
}

.zox-s3 .zox-widget-side-trend-wrap {
	display: grid;
	grid-gap: 15px;
}

.zox-s3 .zox-widget-side-trend-wrap .zox-art-grid {
	grid-gap: 15px;
	grid-template-areas: 'zox-img zox-text';
	grid-template-columns: 100px auto;
}

.zox-s3 .zox-widget-side-trend-wrap .zox-art-img {
	display: block;
}

.zox-s3 .zox-widget-side-trend-wrap .zox-art-text {
	align-content: center;
	padding: 0;
	text-align: left;
}

.zox-s3 .zox-widget-side-trend-wrap .zox-art-text:before {
	content: counter(zox-trend);
	background: #111;
	border: none;
	border-radius: 0;
	color: #fff;
	display: grid;
	font-size: .875rem;
	font-weight: 700;
	margin: 0;
	position: absolute;
		left: 0;
		bottom: 0;
		top: auto;
	width: 26px;
	height: 26px;
}

.zox-s3 .zox-widget-side-trend-wrap h2.zox-s-title3 {
	font-size: 1.125rem;
	font-weight: 700;
}

.zox-s4 .zox-widget-side-trend-wrap .zox-art-text,
.zox-s4 .zox-divs .zox-widget-side-trend-wrap .zox-art-text {
	padding: 0 0 0 32px;
}

.zox-s4 .zox-widget-side-trend-wrap .zox-art-text:before {
	content: counter(zox-trend);
	border: none;
	border-radius: 0;
	display: grid;
	font-size: 30px;
	font-weight: 700;
	margin: -15px 0 0;
	width: auto;
	height: auto;
	vertical-align: text-top;
}

.zox-s4 .zox-widget-side-trend-wrap h2.zox-s-title3 {
	font-weight: 700;
}

.zox-s5 .zox-widget-side-trend-wrap .zox-art-wrap {
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
}

.zox-s5 .zox-widget-side-trend-wrap .zox-art-wrap:last-child {
	border-bottom: none;
	padding: 0;
}

.zox-s5 .zox-divs .zox-widget-side-trend-wrap .zox-art-text {
	padding: 0 0 0 46px;
}

.zox-s5 .zox-widget-side-trend-wrap .zox-art-text:before {
	content: counter(zox-trend);
	border: none;
	border-radius: 0;
	display: grid;
	font-size: 46px;
	font-weight: 700;
	margin:  -23px 0 0;
	top: 50%;
	width: auto;
	height: auto;
	vertical-align: text-top;
}

.zox-s5 .zox-widget-side-trend-wrap h2.zox-s-title3 {
	font-size: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;
}

.zox-s6 .zox-widget-side-trend-wrap {
	grid-gap: 15px;
}

.zox-s6 .zox-widget-side-trend-wrap .zox-art-wrap {
	border-bottom: 1px solid #ddd;
	padding-bottom: 15px;
}

.zox-s6 .zox-widget-side-trend-wrap .zox-art-wrap:last-child,
.zox-tech2.zox-s6 .zox-widget-side-trend-wrap .zox-art-wrap {
	border-bottom: none;
	padding: 0;
}

.zox-s6 .zox-divs .zox-widget-side-trend-wrap .zox-art-text,
.zox-s6 .zox-widget-side-trend-wrap .zox-art-small .zox-art-text {
	padding: 0 0 0 30px;
}

.zox-s6 .zox-widget-side-trend-wrap .zox-art-text:before {
	content: counter(zox-trend);
	border: none;
	border-radius: 0;
	display: grid;
	font-size: 24px;
	font-weight: 700;
	margin: -12px 0 0;
	width: auto;
	height: auto;
	vertical-align: text-top;
}

.zox-s6 .zox-widget-side-trend-wrap h2.zox-s-title3 {
	font-size: 1.125rem;
	font-weight: 700;
}

.zox-s6.zox-sport2 .zox-widget-side-trend-wrap h2.zox-s-title3 {
	font-size: 1rem;
}

.zox-sport3 .zox-widget-side-trend-wrap h2.zox-s-title3 {
	font-size: .875rem;
	font-weight: 400;
}

.zox-s8 .zox-divs .zox-widget-side-trend-wrap .zox-art-text {
	padding: 0 0 0 24px;
}

.zox-s8 .zox-widget-side-trend-wrap .zox-art-text:before {
	content: counter(zox-trend);
	border: none;
	border-radius: 0;
	display: grid;
	align-content: center;
	justify-content: start;
	font-size: 24px;
	font-weight: 700;
	margin: -12px 0 0;
	width: auto;
	height: auto;
}

.zox_facebook_widget {
	text-align: center;
	}

.widget_calendar {
	float: left;
	}

#wp-calendar {
	width: 100%;
	}

#wp-calendar caption {
	text-align: right;
	color: #333;
	font-size: 12px;
	margin-bottom: 15px;
	}

#wp-calendar thead {
	font-size: 10px;
	}

#wp-calendar thead th {
	padding-bottom: 10px;
	}

#wp-calendar tbody {
	color: #aaa;
	}

#wp-calendar tbody td {
	background: #f5f5f5;
	border: 1px solid #fff;
	text-align: center;
	padding:8px;
	}

#wp-calendar tbody td:hover {
	background: #fff;
	}

#wp-calendar tbody .pad {
	background: none;
	}

#wp-calendar tfoot #next {
	font-size: 10px;
	text-transform: uppercase;
	text-align: right;
	}

#wp-calendar tfoot #prev {
	font-size: 10px;
	text-transform: uppercase;
	padding-top: 10px;
	}

.widget_rss ul,
.widget_rss ul li {
	float: left;
	width: 100%;
	}

.widget_rss ul li a {
	float: left;
	font-weight: 700;
	line-height: 123%;
	margin-bottom: 5px;
	width: 100%;
	}

.widget_rss ul li span.rss-date {
	float: left;
	font-size: .75rem;
	margin-bottom: 5px;
	width: 100%;
	}

.widget_rss ul li .rssSummary {
	float: left;
	margin-bottom: 8px;
	width: 100%;
	}

.widget_rss ul li cite {
	float: left;
	font-size: .8rem;
	width: 100%;
	}

.widget_recent_entries li {
	float: left;
	margin-bottom: 10px;
	width: 100%;
	}

.widget_categories ul,
.widget_categories ul li,
.widget_archive ul,
.widget_archive ul li,
.widget_recent_comments ul,
.widget_recent_comments ul li,
.widget_pages ul,
.widget_pages ul li {
	float: left;
	width: 100%;
	}

.widget_categories ul li,
.widget_archive ul li,
.widget_pages ul li,
.widget_meta ul li,
.widget_nav_menu ul li {
	float: left;
	padding: 10px 0 0;
	width: 100%;
	}

.widget_categories ul li ul,
.widget_pages ul li ul,
.widget_nav_menu ul li ul {
	padding: 0 0 0 10px;
}

.widget_recent_comments ul li,
.widget_recent_entries ul li {
	border-top: 1px solid #ddd;
	line-height: 1.4;
	margin-top: 10px;
	padding-top: 10px;
	}

.widget_rss ul li {
	border-top: 1px solid #ddd;
	line-height: 1.4;
	margin-top: 15px;
	padding-top: 15px;
	}

.widget_recent_comments ul li:first-child,
.widget_recent_entries ul li:first-child,
.widget_rss ul li:first-child {
	border-top: none;
	margin-top: 0;
	padding-top: 0;
	}

.widget_rss {
	line-height: 1.4;
	}

#zox-side-wrap #searchform input,
#zox-home-widget-wrap #searchform input {
	background: #fff;
	border: 1px solid #ddd;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
	    -ms-border-radius: 3px;
	     -o-border-radius: 3px;
		border-radius: 3px;
	color: #999;
	font-size: 16px;
	margin: 0;
	padding: 10px;
	height: auto;
	width: 100%;
	}

.textwidget p,
.textwidget div {
	float: left;
	line-height: 1.4;
	}

.textwidget p {
	margin-bottom: 15px;
	}

.tagcloud {
	display: flex;
	float: left;
	flex-wrap: wrap;
	align-items: center;
}

#zox-side-wrap .tagcloud a {
	background: #eee;
	color: #999;
	display: inline-block;
	float: left;
	margin: 2px;
	padding: 5px;
}

#zox-side-wrap .tagcloud a:hover {
	background: #ccc;
	color: #000;
}

/************************************************
	10. Posts
************************************************/

.zox-post-top-wrap,
.zox-post-bot-wrap {
	display: grid;
	grid-gap: 40px;
	grid-template-columns: 100%;
}

.zox-auto-post-grid .zox-post-top-wrap .zox-post-img-wrap .zox-post-width {
	padding: 0;
}

.zox-auto-post-grid .zox-post-bot-wrap .zox-post-img-wrap {
	margin: 0 0 0 -30px;
	width: calc(100% + 60px);
}

.zox-post-head-min,
.zox-auto-post-grid .zox-post-title-wrap {
	padding: 0 30px;
}

.zox-post-head-min .zox-post-width,
.zox-auto-post-grid .zox-post-title-wrap {
	margin: 0 auto;
	padding: 0;
	max-width: 660px;
}

.zox-alp-img-full {
	margin: -30px 0 0;
}

.page .zox-post-top-wrap {
	margin: 0 0 30px;
}

.page-template-page-latest .zox-post-top-wrap {
	margin: 20px 0 0;
}

.zox-post-width {
	margin: 0 auto;
	padding: 0 30px;
	max-width: 1320px;
}

.zox-post-main {
	float: left;
	width: 100%;
}

.zox-post-video1-wrap {
	background: #000;
	padding: 60px 0;
}

.zox-post-video1-img {
	overflow: hidden;
	position: absolute;
		top: 0;
		left: 0;
	width: 100%;
	height: 100%;
}

.zox-post-video1-img .zox-post-img {
	height: 100%;
}

.zox-post-video1-img img {
	object-fit: cover;
	opacity: .15;
	width: 100%;
	height: 100%;
	max-width: none;
}

.zox-post-video1-cont .zox-post-width {
	display: grid;
	grid-row-gap: 30px;
	grid-template-columns: 100%;
}

.zox-post-video1-title {
	margin: 0 auto;
	text-align: center;
	width: 100%;
	max-width: 800px;
}

.zox-post-video1-right h1.zox-post-title,
.zox-post-video1-right span.zox-post-excerpt p {
	color: #fff;
	text-align: left;
}

.zox-post-video1-right h1.zox-post-title {
	font-size: 2rem;
}

.zox-post-video1-right a.zox-post-cat-link,
.zox-post-video1-right span.zox-author-name a  {
	color: #aaa;
}

.zox-post-video1-right span.zox-post-date {
	float: left;
}

.zox-post-video1-grid {
	display: grid;
	grid-gap: 30px;
	grid-template-columns: auto 300px;
}

.zox-post-video1-left .zox-video-embed-wrap {
	margin: 0;
}

.zox-post-video1-right span.zox-post-excerpt p {
	font-size: 1rem;
}

.zox-post-video1-right .zox-post-info-wrap {
	border-top: 1px solid #999;
	grid-gap: 30px;
	grid-template-columns: 100%;
}

.zox-post-video1-right .zox-author-info-wrap {
	color: #fff;
	display: grid;
	grid-gap: 5px;
}

.zox-post-video1-right ul.zox-post-soc-stat-list {
	justify-content: start;
}

.zox-post-video1-right ul.zox-post-soc-stat-list li {
	border: 1px solid #999;
	color: #999;
	background: none !important;
}

.zox-post-video1-right ul.zox-post-soc-stat-list li:hover {
	border: 1px solid #fff;
	color: #fff;
}

.zox-auto-post-grid .zox-post-video1-grid {
	grid-template-areas:
		'zox-title'
		'zox-video';
	grid-template-columns: 100%;
}
	
.zox-auto-post-grid .zox-post-video1-left {
	display: grid;
	grid-area: zox-video;
}

.zox-auto-post-grid .zox-post-video1-right {
	display: grid;
	grid-area: zox-title;
	margin: 0 auto;
	max-width: 600px;
	text-align: center;
}
	
.zox-auto-post-grid .zox-post-video1-right .zox-post-info-wrap {
	grid-template-columns: auto auto;
}
	
.zox-auto-post-grid .zox-post-video1-right .zox-post-byline-wrap {
	justify-content: start;
}
	
.zox-auto-post-grid .zox-post-video1-right ul.zox-post-soc-stat-list {
	justify-content: end;
}

.zox-article-wrap {
	background: #fff;
	display: grid;
	align-content: start;
	grid-gap: 40px;
	grid-template-columns: 100%;
	grid-template-rows: auto;
	padding: 40px 0;
	min-height: 700px;
}

.zox-auto-post-grid .zox-article-wrap,
.single .zox-auto-post-grid .zox-article-wrap {
	padding-top: 30px;
}

h3.zox-post-cat {
	float: left;
	margin: 0 0 15px;
	width: 100%;
}

span.zox-post-cat {
	font-size: 1.125rem;
	text-transform: uppercase;
}

h1.zox-post-title {
	color: #000;
	float: left;
	Font-family: 'Roboto Condensed', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.125;
	word-wrap: break-word;
	text-transform: capitalize;
	width: 100%;
}

.page h1.zox-post-title {
	text-align: center;
}

.zox-auto-post-main h1.zox-post-title {
	font-size: 2.5rem;
}

span.zox-post-excerpt {
	float: left;
	margin: 20px 0 0;
	width: 100%;
}

span.zox-post-excerpt p {
	color: #555;
	font-size: 1.25rem;
	line-height: 1.375;
}

.zox-post-info-wrap {
	border-top: 1px solid #ddd;
	display: grid;
	align-content: center;
	float: left;
	grid-gap: 50px;
	grid-template-columns: auto auto;
	margin: 25px 0 0;
	padding: 15px 0 0;
	width: 100%;
}

.zox-post-byline-wrap {
	display: grid;
	align-items: center;
	grid-gap: 14px;
	grid-template-columns: 40px auto;
	width: 100%;
}

.zox-post-byline-date {
	grid-template-columns: auto;
}

.zox-author-thumb {
	border: 3px solid #eee;
	border-radius: 50%;
	overflow: hidden;
	width: 40px;
	height: 40px;
}

.zox-author-info-wrap {
	color: #555;
	font-size: .875rem;
	line-height: 1;
}

.zox-author-name-wrap,
.zox-author-name-wrap p,
.zox-post-date-wrap p {
	margin: 0 5px 0 0;
}

.zox-auto-post-grid .zox-author-name-wrap {
	margin: 0 0 5px 0;
	width: 100%;
}

.zox-author-info-wrap,
.zox-author-name-wrap,
.zox-author-name-wrap p,
.zox-author-name,
.zox-post-date-wrap,
.zox-post-date-wrap p {
	display: inline-block;
	float: left;
}

.zox-post-img {
	text-align: center;
	width: 100%;
}

span.zox-post-img-cap {
	color: #888;
	float: right;
	font-size: .75rem;
	line-height: 1;
	padding: 8px 30px 0;
	text-align: right;
	width: 100%;
}

.zox-post-img-hide {
	display: none;
}

.zox-video-embed-wrap {
	margin-bottom: 30px;
	width: 100%;
	}

.zox-video-embed-cont {
	width: 100%;
	}

span.zox-video-close {
	background: #000;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	    -ms-border-radius: 50%;
	     -o-border-radius: 50%;
		border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: none;
	font-size: 14px;
	line-height: 1;
	padding-top: 5px;
	position: absolute;
		top: -10px;
		left: -10px;
	text-align: center;
	width: 24px;
	height: 24px;
	z-index: 5;
	}

.zox-video-embed {
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
	text-align: center;
	width: 100%;
	height: 0;
	}

.zox-vid-fixed {
	-webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
	   -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
	    -ms-box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
	     -o-box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
		box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
	margin-top: -102px;
	padding-bottom: 0 !important;
	position: fixed !important;
		right: 80px;
		bottom: 20px;
	width: 360px !important;
	height: 203px !important;
	z-index: 9999;
	}

.zox-video-embed iframe,
.zox-video-embed object,
.zox-video-embed embed,
span.embed-youtube iframe,
span.embed-youtube object,
span.embed-youtube embed,
.wp-block-embed-youtube iframe,
.wp-block-embed-youtube object,
.wp-block-embed-youtube embed {
	position: absolute;
		top: 0;
		left: 0;
	width: 100%;
	height: 100%;
	}

.zox-post-main-wrap {
	display: grid;
	grid-gap: 60px;
	grid-template-columns: calc(100% - 360px) 300px;
}

.zox-auto-post-grid .zox-post-main-wrap {
	display: block;
	grid-gap: 0;
	grid-template-columns: 100%;
}

.zox-post-main-wide {
	float: left;
	width: 100%;
}

.zox-post-bot-wrap {
	float: left;
	margin: 0 0 40px;
	width: 100%;
}

.zox-post-body-wrap {
	width: 100%;
}

ul.zox-post-soc-stat-list {
	display: grid;
	grid-gap: 5px;
	grid-template-columns: auto auto auto auto auto;
	justify-content: end;
	width: 100%;
	}

ul.zox-post-soc-stat-list li {
	border: 1px solid #ddd;
	color: #000;
	display: grid;
	float: left;
	font-size: 16px;
	align-content: center;
	justify-content: center;
	line-height: 1;
	position: relative;
	text-align: center;
	width: 36px;
	height: 36px;
	}

ul.zox-post-soc-stat-list li:hover,
ul.zox-alp-soc-list li:hover {
	background: #000;
	border: 1px solid #000;
	color: #fff;
}

ul.zox-post-soc-stat-list li.zox-post-soc-fb:hover,
ul.zox-alp-soc-list li.zox-alp-soc-fb:hover {
	background: #3b5998;
	border: 1px solid #3b5998;
}

ul.zox-post-soc-stat-list li.zox-post-soc-twit:hover,
ul.zox-alp-soc-list li.zox-alp-soc-twit:hover {
	background: #55acee;
	border: 1px solid #55acee;
}

ul.zox-post-soc-stat-list li.zox-post-soc-flip:hover,
ul.zox-alp-soc-list li.zox-alp-soc-flip:hover {
	background: #f52828;
	border: 1px solid #f52828;
}

.zox-post-soc-scroll {
	margin: -125px 0 0;
	opacity: 0;
	position: fixed;
		left: -50px;
		top: 50%;
	-webkit-transition: opacity .25s;
	   -moz-transition: opacity .25s;
	    -ms-transition: opacity .25s;
	     -o-transition: opacity .25s;
		transition: opacity .25s;
	width: 50px;
	z-index: 10;
}

.zox-post-soc-scroll-out {
	left: 0;
	opacity: 1;
}

.zox-auto-post-grid .zox-post-soc-scroll {
	display: none;
}

ul.zox-post-soc-list {
	width: 100%;
	}

ul.zox-post-soc-list li {
	background: #000;
	border-top: 1px solid rgba(255,255,255,.15);
	color: #fff;
	display: grid;
	float: left;
	font-size: 16px;
	align-content: center;
	justify-content: center;
	line-height: 1;
	position: relative;
	text-align: center;
	width: 50px;
	height: 50px;
	}

ul.zox-post-soc-list a:first-child li {
	border-top: none;
}

ul.zox-post-soc-list li.zox-post-soc-fb:hover {
	background: #3b5998;
	}

ul.zox-post-soc-list li.zox-post-soc-twit:hover {
	background: #55acee;
	}

ul.zox-post-soc-list li.zox-post-soc-flip:hover {
	background: #f52828;
	}

ul.zox-post-soc-list li.zox-post-soc-email:hover {
	background: #555;
	}

ul.zox-post-soc-list li.zox-post-soc-com:hover {
	background: #555;
	}

ul.zox-post-soc-list li.zox-post-soc-more,
ul.zox-post-soc-stat-list li.zox-post-soc-more,
ul.zox-post-soc-list li.zox-post-soc-copy,
ul.zox-post-soc-stat-list li.zox-post-soc-copy {
	cursor: pointer;
}

.zox-soc-more-stat,
.zox-soc-more-scroll {
	background: #000;
	opacity: 0;
	padding: 20px;
	position: absolute;
	transition: max-height 0s .25s, top 0s .25s, bottom 0s .25s, opacity .25s;
	z-index: 9999;
	width: 150px;
	max-height: 0;
}

.zox-soc-more-open {
	opacity: 1;
	transition: opacity .25s;
	max-height: 200px;
}

.zox-soc-more-stat {
	top: -9999px;
	right: 15px;
}

.zox-soc-more-open.zox-soc-more-stat {
	top: 53px;
}

.zox-soc-more-scroll {
	bottom: -9999px;
	left: 65px;
}

.zox-soc-more-open.zox-soc-more-scroll {
	bottom: 20px;
}

.zox-soc-more-stat:before {
	content: '';
	border-left: 10px solid transparent;
	border-bottom: 10px solid black;
	position: absolute;
		top: -10px;
		right: 0;
	width: 0;
	height: 0;
}

.zox-soc-more-scroll:before {
	content: '';
	border-top: 10px solid transparent;
	border-right: 10px solid black;
	position: absolute;
		left: -10px;
		bottom: 0;
	width: 0;
	height: 0;
}

ul.zox-soc-more-list {
	display: grid;
	grid-gap: 15px;
}

ul.zox-soc-more-list li {
	background: none !important;
	border: none !important;
	color: #fff;
	grid-template-columns: auto auto;
	float: left;
	font-size: 16px;
	justify-content: space-between;
	line-height: 1;
	padding: 0;
	position: relative;
	width: 100% !important;
	height: auto !important;
}

ul.zox-soc-more-list li p {
	font-size: 14px;
	font-weight: 700;
}

ul.zox-post-soc-list li ul.zox-soc-more-list li:hover,
ul.zox-post-soc-stat-list li ul.zox-soc-more-list li:hover,
ul.zox-post-soc-scroll-list li ul.zox-soc-more-list li:hover,
ul.zox-soc-more-list li:hover {
	border: none;
	color: #888;
	font-size: 16px;
}

.zox-whats-mob {
	display: none;
}

.zox-soc-mob-wrap {
	display: none;
}

.zox-post-body p {
	color: #000;
	display: block;
	font-size: 1.125rem;
	line-height: 1.55;
	margin: 0 auto 20px;
	max-width: 660px;
}

.zox-post-body p a {
	box-shadow: inset 0 -1px 0 0 #fff, inset 0 -2px 0 0 #ec2b8c;
	color: #000;
}

.zox-post-body p a:hover {
	color: #ec2b8c;
}

.zox-post-body pre,
.comment-inner pre {
	border: 1px solid #ddd;
	margin: 0 auto 20px;
	overflow: auto;
	padding: 30px;
	max-width: 660px;
}

em,
i,
q,
dfn,
var {
	font-style: italic;
}

.zox-post-body q,
.comment-inner q {
	quotes: "\0022" "\0022";
}

.zox-post-body q:before,
.comment-inner q:before {
	content: open-quote;
}

.zox-post-body q:after,
.comment-inner q:after {
	content: close-quote;
}

.zox-post-body small,,
.comment-inner small {
	font-size: .75em;
}

.wp-audio-shortcode {
	padding: 0 20px;
	max-width: 740px;
}

.page .zox-post-body p {
	max-width: none;
}

.zox-post-body .twitter-tweet {
	margin: 0 auto 20px;
	padding: 20px 0;
}

.zox-post-body iframe.instagram-media {
	margin: 0 auto 20px !important;
}

.zox-post-body ul,
.comment-inner ul {
	list-style: disc outside;
	padding: 0 0 20px;
	}

.zox-post-body ol,
.comment-inner ol {
	list-style: decimal outside;
	padding: 0 0 20px;
	}

.zox-post-body ul li,
.zox-post-body ol li,
.comment-inner ul li,
.comment-inner ol li {
	font-size: 1.125rem;
	line-height: 1.55;
	margin-left: 50px;
	}

.zox-post-body ul li ul,
.zox-post-body ul li ol,
.zox-post-body ol li ul,
.zox-post-body ol li ol,
.comment-inner ul li ul,
.comment-inner ul li ol,
.comment-inner ol li ul,
.comment-inner ol li ol {
	padding: 0;
}

.zox-post-body h1,
.zox-post-body h2,
.zox-post-body h3,
.zox-post-body h4,
.zox-post-body h5,
.zox-post-body h6,
.comment-inner h1,
.comment-inner h2,
.comment-inner h3,
.comment-inner h4,
.comment-inner h5,
.comment-inner h6 {
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.2;
	padding: 1rem 0 2rem;
	overflow: hidden;
	width: 100%;
	text-transform: none !important;
	}

.zox-post-body h1,
.comment-inner h1 {
	font-size: 3rem;
	}

.zox-post-body h2,
.comment-inner h2 {
	font-size: 2.75rem;
	}

.zox-post-body h3,
.comment-inner h3 {
	font-size: 2.25rem;
	}

.zox-post-body h4,
.comment-inner h4 {
	font-size: 2rem;
	}

.zox-post-body h5,
.comment-inner h5 {
	font-size: 1.625rem;
	}

.zox-post-body h6,
.comment-inner h6 {
	font-size: 1.325rem;
	text-transform: uppercase !important;
	}

.single .zox-post-body ul,
.single .zox-post-body ol,
.single .zox-post-body h1,
.single .zox-post-body h2,
.single .zox-post-body h3,
.single .zox-post-body h4,
.single .zox-post-body h5,
.single .zox-post-body h6 {
	margin: 0 auto;
	max-width: 660px;
}

.zox-post-body > * {
	font-size: 1.125rem;
	line-height: 1.55;
	margin: 0 auto 20px;
}

.zox-post-body blockquote,
.comment-inner blockquote {
	border-left: 3px solid #ccc;
	clear: both;
	margin: 40px auto;
	padding: 10px 0 10px 30px;
	max-width: 660px;
	width: 100%;
}

.zox-post-body blockquote.is-style-large,
.comment-inner blockquote.is-style-large {
	border: none;
	margin: 30px auto;
	padding: 0;
	max-width: 660px;
}

.zox-post-body blockquote.is-style-large p,
.comment-inner blockquote.is-style-large p {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.55;
}

.zox-post-body blockquote.has-text-align-right,
.comment-inner blockquote.has-text-align-right {
	border-left: none;
	border-right: 3px solid #ccc;
	padding: 10px 30px 10px 0;
}

.zox-post-body .gallery-item img {
	border: none !important;
}

cite em {
	font-weight: 700;
}

.zox-post-body .has-drop-cap:not(:focus)::first-letter {
	font-size: 6rem;
	font-weight: 800;
}

.zox-post-body .has-small-font-size,
.comment-inner .has-small-font-size {
	font-size: .875rem;
}

.zox-post-body .wp-block-pullquote {
	clear: both;
	margin: 40px auto;
	max-width: 660px;
	width: 100%;
}

.zox-post-body .wp-block-pullquote blockquote {
	border: none;
	margin: 0 auto;
	padding: 0;
	text-align: center;
	max-width: 500px;
}

.zox-post-body .wp-block-pullquote.alignfull {
	max-width: none;
	padding: 0 30px;
}

.zox-post-body .wp-block-pullquote.alignfull blockquote {
	max-width: none;
}

.zox-post-body .wp-block-pullquote.alignleft {
	margin: 30px 30px 30px 40px;
	padding: 0;
	text-align: left;
	max-width: 330px;
}

.zox-post-body .wp-block-pullquote.alignleft blockquote {
	text-align: left;
}

.zox-post-body .wp-block-pullquote.alignright {
	margin: 30px 40px 30px 30px;
	padding: 0;
	text-align: right;
	max-width: 330px;
}

.zox-post-body .wp-block-pullquote.alignright blockquote {
	text-align: right;
}

.zox-post-body .wp-block-pullquote blockquote p {
	font-size: 2.25rem;
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.125;
	max-width: none;
}

.zox-post-body blockquote p {
	color: #000;
	font-family: 'Roboto';
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.55;
	margin: 0;
	padding: 0;
	text-transform: none !important;
	}

.zox-post-body blockquote p cite,
.zox-post-body blockquote cite {
	color: #777;
	display: inline-block;
	font-size: .875rem;
	font-weight: 600;
	margin: 20px 0 0;
	width: 100%;
	}

.zox-post-body blockquote p a {
	box-shadow: none;
}

.zox-post-body .wp-block-column blockquote {
	margin: 0 0 30px;
	width: 100%;
}

.zox-post-body .has-large-font-size,
.comment-inner .has-large-font-size {
	font-size: 1.5rem;
}

.wp-block-audio {
	margin: 0 0 30px;
}

.zox-post-body .wp-block-archives-dropdown,
.zox-post-body .wp-block-categories-dropdown {
	margin: 0 auto 20px;
	text-align: right;
	max-width: 740px;
}

.zox-post-body .wp-block-search {
	margin: 0 auto 20px;
	text-align: left;
	max-width: 660px;
}

.wp-block-group,
.wp-block-media-text {
	margin: 0 0 20px;
}

.wp-block-group.has-background {
	padding: 30px 0;
}

.zox-post-body cite,
.comment-inner cite {
	color: #777;
	font-size: .875rem;
	font-weight: 600;
}

.zox-post-body dl,
.zox-post-body address,
.comment-inner dl,
.comment-inner address {
	line-height: 1.55;
	margin: 0 auto 20px;
	max-width: 660px;
}

.zox-post-body dt,
.comment-inner dt {
	font-weight: bold;
	margin: 1.5rem 0 0;
	}

.zox-post-body dd,
.comment-inner dd {
	line-height: 1.55;
	margin: .5rem 0 0 40px;
	}

.zox-post-body abbr,
.zox-post-body acronym,
.comment-inner abbr,
.comment-inner acronym {
	cursor: help;
	}

.zox-post-body code,
.zox-post-body kbd,
.comment-inner code,
.comment-inner kbd {
	background: #ddd;
	font-size: .875rem;
	line-height: 1.5;
	padding: 4px 6px;
}

.zox-post-body pre code,
.zox-post-body pre kbd,
.comment-inner pre code,
.comment-inner pre kbd {
	background: none;
}

.zox-post-body hr,
.comment-inner hr {
	border: none;
	background: #777;
	margin: 30px auto;
	max-width: 660px;
	height: 1px;
}

.zox-post-body ul ul,
.comment-inner ul ul {
	list-style: circle;
}

.zox-post-body ul ul ul,
.comment-inner ul ul ul {
	list-style: square;
}

.zox-post-body ol ol,
.comment-inner ol ol {
	list-style: lower-alpha;
}

.zox-post-body ol ol ol,
.comment-inner ol ol ol {
	list-style: lower-roman;
}

.zox-post-body sub,
.comment-inner sub {
	font-size: smaller;
	vertical-align: sub;
	}

.zox-post-body sup,
.comment-inner sup {
	font-size: smaller;
	vertical-align: super;
	}

.zox-post-body table,
.comment-inner table {
	font-size: .875rem;
	margin: 0 auto 20px;
	padding: 0 20px;
	max-width: 740px;
	width: 100%;
	}
.zox-post-body thead {
	border-bottom: 1px solid #aaa;
	}

.comment-inner thead {
	border-bottom: #777;
}

.zox-post-body tbody tr {
	border-bottom: 1px solid #ddd;
	}

.comment-inner tbody tr {
	border-bottom: 1px solid #bbb;
}

.zox-post-body td,
.zox-post-body th,
.comment-inner td,
.comment-inner th {
	padding: 12px 5px;
	}

.wp-block-image {
	margin: 30px 0 30px;
}

.wp-block-image .alignleft {
	margin: 30px 30px 30px 0;
}

.wp-block-image .alignright {
	margin: 30px 0 30px 30px;
}

.wp-caption {
	display: inline-block;
	line-height: 0;
	margin: 15px 0 0;
	width: 100%;
}

.wp-caption.alignleft,
.wp-caption.alignright {
	margin: 30px;
}

.wp-caption.aligncenter {
	display: block;
	margin: 0 auto;
}

.wp-caption.alignleft p.wp-caption-text,
.wp-caption.alignright p.wp-caption-text {
	padding: 8px 0 0;
}

.wp-caption,
.gallery-caption {
	margin-bottom: 20px;
	max-width: 100%;
	text-align: center;
	}

.wp-block-button.aligncenter,
.wp-block-button {
	margin: 0 auto 20px;
	text-align: center;
	width: 100%;
	max-width: 660px;
}

.wp-block-button {
	text-align: left;
}

.wp-block-button.aligncenter {
	text-align: center;
}

.wp-block-button.alignleft {
	margin: 0 20px 20px 0;
	text-align: left;
	width: auto;
}

.wp-block-button.alignright {
	margin: 0 0 20px 20px;
	text-align: right;
	width: auto;
}

.wp-block-group__inner-container {
	padding: 0 30px;
}

.blocks-gallery-caption {
	color: #777;
	font-size: .875rem;
	margin: -15px 0 30px;
	text-align: left;
	width: 100%;
}

.wp-block-video figcaption {
	color: #777;
	font-size: .875rem;
	margin: 0 0 30px;
	text-align: left;
	width: 100%;
}

.wp-block-gallery.alignleft {
	margin: 0 30px 0 0;
}

.wp-block-gallery.alignright {
	margin: 0 0 0 30px;
}

.single .zox-post-body .wp-block-gallery.alignwide ul {
	max-width: 120rem;
}

.zox-post-body .wp-block-file {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.zox-post-body p.wp-block-cover-text {
	color: #fff;
}

.zox-post-body p.wp-block-cover-text a {
	box-shadow: none;
	color: #fff;
}

.zox-post-body p.wp-block-cover-text a:hover {
	color: #ddd;
}

.wp-block-cover,
.wp-block-cover-image {
	margin: 0 0 30px;
}

.wp-block-cover.alignleft {
	margin: 0 30px 30px 0;
}

.wp-block-cover.alignright {
	margin: 0 0 30px 30px;
}

.zox-post-body p.wp-caption-text,
.zox-post-body .wp-block-image figcaption {
	color: #888;
	font-size: .75rem;
	line-height: 1;
	margin: 0 0 20px;
	padding: 8px 20px 0;
	text-align: right;
	max-width: none;
	width: 100%;
}

.zox-post-body .gallery {
	padding: 0 60px;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	}

.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;
	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. */
	}

.sticky {
	font-weight: 700;
	}

.posts-nav-link {
	display: none;
	}

.zox-org-wrap {
	display: none;
	}

.theiaPostSlider_nav {
	margin: 0 auto;
	width: 100%;
	max-width: 660px;
	}

.post-password-form label {
	font-size: 1rem;
	font-weight: 700;
	}

.post-password-form p {
	font-size: 1rem !important;
	}

.post-password-form {
	float: left;
	margin: 100px 0;
	text-align: center;
	width: 100%;
	}

.post-password-form input {
   	background: #000;
	border: none;
	color: #fff;
    	cursor: pointer;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	padding: 5px 10px;
	text-transform: uppercase;
	height: 26px;
	}

.post-password-form label input {
	background: #fff;
	border: 1px solid #ddd;
	color: #000;
	margin: 0 10px;
	}

.zox-post-body-bot {
	margin: 30px 0 0;
}

.zox-post-body-width {
	margin: 0 auto;
	max-width: 660px;
}

.zox-post-tags {
	color: #999;
	font-size: 1rem;
	line-height: 1;
	width: 100%;
	}

.zox-post-tags a,
.zox-post-tags a:visited {
	color: #999;
	display: inline-block;
	margin: 0 0 5px;
	position: relative;
	}

.zox-post-tags a:hover {
	color: #333;
	}

.zox-post-tags-header {
	color: #333;
	float: left;
	font-weight: 700 !important;
	margin-right: 5px;
	}

.zox-posts-nav-link,
.zox-prev-next-wrap,
.zox-org-wrap {
	display: none;
}

.zox-author-box-wrap {
	border-top: 1px solid #ddd;
	display: grid;
	grid-template-columns: auto auto;
	grid-column-gap: 30px;
	justify-content: start;
	margin: 40px 0 0;
	padding: 40px 0 0;
	width: 100%;
	}

.zox-author-box-right {
	display: grid;
	align-content: center;
	grid-template-rows: auto auto;
	grid-row-gap: 10px;
}

.zox-author-box-img {
	display: grid;
	align-content: center;
	line-height: 0;
	width: 125px;
	}

.zox-author-box-img img {
	border: 2px solid #ddd;
	border-radius: 50%;
	}

.zox-author-box-head,
.zox-author-box-text {
	width: 100%;
	}

.zox-author-box-head {
	display: grid;
	grid-template-columns: auto auto;
	justify-content: space-between;
}

.zox-author-box-name-wrap {
	display: grid;
	align-content: center;
	grid-row-gap: 5px;
}

span.zox-author-box-name-head {
	color: #aaa;
	font-size: .875rem;
	line-height: 1;
	text-transform: uppercase;
}

span.zox-author-box-name {
	font-size: 1.5rem;
	line-height: 1;
	}

span.zox-author-box-name a {
	color: #777;
	font-weight: 700;
	}

span.zox-author-box-name a:hover {
	color: #555;
}

.zox-author-box-text p {
	color: #aaa;
	float: left;
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 0;
	width: 100%;
	}

.zox-author-box-soc-wrap {
	margin-top: 10px;
	width: 100%;
	}

span.zox-author-box-soc {
	border: 1px solid #ddd;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
	    -ms-border-radius: 3px;
	     -o-border-radius: 3px;
		border-radius: 3px;
	color: #aaa;
	display: inline-block;
	font-size: 18px;
	line-height: 1;
	margin-left: 3px;
	padding: 9px 0 0;
	text-align: center;
	width: 36px;
	height: 36px;
	}

span.zox-author-box-soc:hover {
	border: 1px solid #777;
	color: #777;
	}

.zox-post-body .zox-post-ad-wrap {
	line-height: 0;
	margin: 60px auto 50px;
	position: relative;
	text-align: center;
	width: 100%;
}

.zox-post-ad {
	background: none !important;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.zox-post-ad-in1 {
	position: relative;
	width: 100%;
}

.zox-post-ad-in2 {
	line-height: 0;
	position: relative;
	text-align: center;
	width: 100%;
}

.zox-post-ad-in2 img {
	max-height: 100vh;
}

.editor-post-title__block .editor-post-title__input,
.editor-styles-wrapper p.has-large-font-size,
.wp-block-pullquote blockquote>.block-editor-rich-text p {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	text-transform: capitalize;
}
	
.editor-styles-wrapper p,
.editor-styles-wrapper ul li,
.editor-styles-wrapper ol li,
.wp-block-image figcaption,
.editor-styles-wrapper .wp-block-button__link,
.editor-styles-wrapper .wp-block-quote__citation,
.wp-block-pullquote__citation,
.wp-block-pullquote cite,
.wp-block-pullquote footer,
.wp-block-audio figcaption,
.wp-block-video figcaption,
.wp-block-embed figcaption,
.wp-block-verse pre,
pre.wp-block-verse,
.editor-styles-wrapper .wp-block-quote p,
.wp-block-freeform.block-library-rich-text__tinymce blockquote p {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	text-transform: none;
}
	
.block-editor-rich-text__editable a,
.wp-block-freeform.block-library-rich-text__tinymce a {
	box-shadow: inset 0 -4px 0 #ed1c24;
}
	
.wp-block-freeform.block-library-rich-text__tinymce h1,
.wp-block-freeform.block-library-rich-text__tinymce h2,
.wp-block-freeform.block-library-rich-text__tinymce h3,
.wp-block-freeform.block-library-rich-text__tinymce h4,
.wp-block-freeform.block-library-rich-text__tinymce h5,
.wp-block-freeform.block-library-rich-text__tinymce h6,
.wp-block-heading h1,
.wp-block-heading h2,
.wp-block-heading h3,
.wp-block-heading h4,
.wp-block-heading h5,
.wp-block-heading h6 {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}

.zox-post-more-wrap {
	margin: 30px 0 0;
}

.zox-auto-post-grid .zox-post-more-wrap {
	margin: 20px 0 0;
}

.zox-auto-post-grid .zox-post-more-wrap .zox-post-width {
	padding: 0 20px;
}

.zox-post-more-wrap .zox-art-wrap {
	background: #fff;
}

.zox-post-main-head {
	margin: 0 0 20px;
}

h4.zox-post-main-title {
	text-align: left;
}

span.zox-post-main-title {
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	text-transform: capitalize;
}

.zox-post-more-grid {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	width: 100%;
}

.zox-post-more-wrap h3.zox-s-cat {
	display: none;
}

.zox-auto-post-main .zox-post-more-grid {
	grid-gap: 20px;
	grid-template-columns: 1fr 1fr 1fr;
}

.zox-auto-post-main .zox-post-more-grid .zox-art-wrap:last-of-type {
	display: none;
}

.zox-auto-post-main .zox-div4 .zox-art-img {
	padding: 0;
}

.zox-auto-post-main .zox-div4 .zox-art-img img {
	margin: 0;
	position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
	min-width: 0;
}

.zox-post-bot-ad {
	padding: 40px 0 0;
	text-align: center;
}

.zox-auto-post-grid .zox-post-bot-ad {
	padding: 33px 0 0;
}

/************************************************
	11. Auto Load Posts
************************************************/

.zox-alp-width {
	margin: 0 auto;
	padding: 0 30px;
	max-width: 1400px;
	width: 100%;
}

.zox-auto-post-main {
	display: grid;
	grid-template-columns: 100%;
	grid-row-gap: 20px;
	width: 100%;
}

.zox-auto-post-main article::after {
	clear: both;
	display: block;
	content: "";
	visibility: hidden;
	opacity: 0;
}

.zox-auto-post-grid {
	display: grid;
	grid-column-gap: 20px;
	grid-template-columns: auto 300px;
	margin: 0;
	width: 100%;
}

.zox-auto-post-grid .zox-post-side-noalp {
	display: none;
}

.zox-alp-side {
	position: relative;
	width: 300px;
}

.zox-alp-side-in {
	width: 100%;
	height: calc(100vh - 100px);
	overflow: hidden;
}

.zox-alp-side-in:hover {
	overflow-y: scroll !important;
}

.alp-related-posts {
	display: grid;
	grid-row-gap: 0;
	grid-template-columns: 100%;
}

.zox-alp-soc-wrap {
	display: none;
	float: left;
	margin: 20px 0 0;
	width: 100%;
}

ul.zox-alp-soc-list {
	display: grid;
	grid-column-gap: 5px;
	grid-template-columns: repeat(4, 1fr);
	width: 100%;
}

ul.zox-alp-soc-list li {
	color: #000;
	border: 1px solid #ddd;
	display: grid;
	align-content: center;
	font-size: 16px;
	text-align: center;
	height: 32px;
}

ul.zox-alp-soc-list li.mvp-alp-soc-fb {
	background: #3b5998;
}

ul.zox-alp-soc-list li.mvp-alp-soc-twit {
	background: #55acee;
}

ul.zox-alp-soc-list li.mvp-alp-soc-pin {
	background: #bd081c;
}

.alp-related-posts-wrapper .alp-related-post::after {
	content: "";
	display: block;
	clear: both;
	visibility: hidden;
	opacity: 0;
}

.alp-related-posts-wrapper .alp-related-post .featured-image-link {
	float: left;
	width: 80px;
	height: 80px;
	display: block;
	position: relative;
}

.alp-related-posts-wrapper .alp-related-post .featured-image-link .featured-image {
	width: 80px;
	height: 80px;
	max-width: 100%;	
	display: block;
}

.alp-related-posts-wrapper .alp-related-post .post-details {
	float: left;
	width: 100%;
}

.alp-related-posts-wrapper .alp-related-post .post-details p.post-meta {
	margin-bottom: 0;
}

.alp-related-posts-wrapper .alp-related-post .post-details p.post-meta,
.alp-related-posts-wrapper .alp-related-post .post-details p.post-meta a {
	color: #555;
	font-size: .7rem;
	line-height: 1;
	margin: 0 0 7px;
	text-transform: uppercase !important;
}

.alp-related-posts-wrapper .alp-related-post.current .post-details p.post-meta a {
	display: none;
}

.alp-related-posts-wrapper .alp-related-post p.post-meta .post-category {
	text-transform: uppercase;
}

.alp-related-posts-wrapper .alp-related-post .post-title {
	display: inline-block;
	color: #111;
	font-size: 1rem;
	letter-spacing: -.02em;
	line-height: 1.15;
	-ms-word-wrap: break-word;
		word-wrap: break-word;
	max-width: 260px;
}

.alp-related-posts .current .zox-alp-soc-wrap {
	display: grid;
}

.alp-related-posts .current .featured-image-link {
	display: none;
}

.alp-related-posts .current .post-details {
	margin: 0;
	width: 100%;
}

.alp-related-posts .current .post-title {
	font-size: 1.25rem;
	line-height: 1.15;
}

.alp-related-posts-wrapper,
.alp-related-posts-wrapper * {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	     -o-box-sizing: border-box;
		box-sizing: border-box;
}

.alp-related-posts-wrapper {
	padding: 0 0 20px;
}
.alp-related-posts-wrapper .alp-related-post {
	background: #fff;
	border-bottom: 1px solid #ddd;
	padding: 15px 20px;
}

.alp-related-posts-wrapper .alp-advert {
	line-height: 0;
	padding: 25px 0 20px;
	text-align: center;
	width: 100%;
}

.alp-related-posts-wrapper .alp-related-posts .current {
	background: #fff;
	border-bottom: none;
	padding: 30px;
}

.alp-related-posts-wrapper .alp-related-post:last-of-type {
	border-bottom: none;
	padding-bottom: 20px;
}

.alp-related-posts .current {
	margin: 0;
}

.zox-auto-post-grid li.zox-post-soc-com,
.zox-auto-post-grid #zox-comments-button {
	display: none;
}

.zox-auto-post-grid #comments {
	display: block;
}

/************************************************
	12. Comments
************************************************/

#zox-comments-button {
	margin-top: 70px;
	text-align: center;
	width: 100%;
	}

.zox-disqus-comm-wrap {
	display: none;
	float: left;
	width: 100%;
}

#zox-comments-button a,
#zox-comments-button span.zox-comment-but-text {
	background: #000;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 1rem;
	line-height: 100%;
	padding: 15px 0;
	width: 100%;
	}

#zox-comments-button span.zox-comment-but-text i {
	margin: 0 5px 0 0;
}

#zox-comments-button span.zox-comment-but-text:hover {
	background: #222;
	}

#comments {
	display: none;
	float: left;
	font-size: 1rem;
	line-height: 1.35;
	margin: 60px 0 0;
	overflow: hidden;
	width: 100%;
	}

#comments a {
	color: #000;
}

.woocommerce #comments {
	display: block;
	margin-top: 0;
	}

#disqus_thread {
	display: none;
	float: left;
	margin-top: 30px;
	width: 100%;
	}

.comment-inner {
	float: left;
	margin-bottom: 20px;
	padding: 15px 0 0;
	width: 100%;
	}

ol.commentlist li.bypostauthor > .comment-wrapper > .comment-inner {
	border: 1px solid #ddd;
	padding: 20px 20px 0;
	}

#comments .comment-inner:after {
	content: '';
	display: block;
	clear: both;
	}

#comments .comment-avatar,
#tab3 .comment-avatar {
	float: left;
	width: 46px;
	}
	
#comments .avatar {
	display: block;
	background-color: #fff;
	}

.comment-avatar img {
	-webkit-border-radius: 23px;
	   -moz-border-radius: 23px;
	    -ms-border-radius: 23px;
	     -o-border-radius: 23px;
		border-radius: 23px;
	overflow: hidden;
	}

#comments .commentmeta {
	display: block;
	float: left;
	margin: 0 10px 10px;
	width: 75%;
	}

.comment-reply a,
#cancel-comment-reply-link {
	clear: both;
	color: #fff !important;
	font-size: 10px;
	line-height: 1;
	padding: 5px 10px;
	position: relative;
	}

.comment-reply a {
	background: #000;
	border-top: 5px solid #fff;
	border-left: 5px solid #fff;
	float: right;
	top: -15px;
	}

#cancel-comment-reply-link {
	background: #999;
	float: left;
	margin: 0 0 20px;
	}

.comment-reply a:hover,
#cancel-comment-reply-link:hover {
	background: #222;
	color: #fff !important;
	text-decoration: none;
	}

#content-main ol.commentlist {
	float: left;
	list-style: none;
	margin: 0;
	width: 100%;
	}

#content-main ol.commentlist li {
	margin: 0;
	padding: 0;
	}

ol.commentlist h3.comment-header {
	display: none;
	}

ol.commentlist #respond {
	border-top: none;
	}

#comments .comment-meta-1 {
	display: block;
	float: left;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 5px;
	width: 100%;
	}
		
#comments .comment-meta-1 .fn {
	float: left;
	font-size: 1.2rem;
	font-style: normal;
	font-weight: bold;
	line-height: 1;
	width: auto;
	}
		
#comments .comment-meta-1 .reply {
	display: inline-block;
	float: right;
	font-size: 11px;
	line-height: 11px;
	padding-top: 2px;
	}
		
#comments .comment-meta-1 .reply a {
	color: #555;
	}
		
#comments .comment-meta-2  {
	display: block;
	float: left;
	font-size: .9rem;
	line-height: 1;
	margin: 0;
	}

#comments .text {
	background: #f5f5f5;
	border-radius: 5px;
	clear: both;
	display: block;
	float: left;
	margin-top: 10px;
	padding: 20px 20px 35px;
	width: 100%;
	}

#comments .text .waiting_approval {
	font-size: 14px;
	font-style: italic;
	font-weight: bold;
	}

#comments .c {
	line-height: 20px;
	}

#comments .c p,
#comments .c code,
#comments .c blockquote,
#comments .c ul,
#comments .c ol {
	display: block;
	margin: 15px 0;
	}

#comments .c p {
	color: #444;
	font-size: 1.1rem;
	line-height: 1.35;
	}

#comments .c a {
	text-decoration: underline;
	}

#comments .c a:hover {
	text-decoration: none;
	}
	
#comments .depth-2 .comment-wrapper {
	padding-left: 40px;
	}

#comments .depth-2 .commentmeta {
	width: 75%;
	}
	
#comments .depth-3 .comment-wrapper {
	padding-left: 80px;
	}

#comments .depth-3 .commentmeta {
	width: 75%;
	}
	
#comments .depth-4 .comment-wrapper {
	padding-left: 120px;
	}

#comments .depth-4 .commentmeta {
	width: 75%;
	}

#comments .depth-5 .comment-wrapper {
	padding-left: 160px;
	}

#comments .depth-5 .commentmeta {
	width: 75%;
	}

#respond {
	clear: both;
	position: relative;
	}

#respond form {
	float: left;
	padding-bottom: 20px;
	width: 100%;
	}

#respond p {
	font-size: 1rem;
	margin: 0;
	}

#respond .logged-in-as {
	margin-bottom: 10px;
	}

#respond .comment-notes {
	margin-bottom: 1rem;
	}

.children #respond {
	margin: 0 48px 0 0;
	}

#zox-comments-list #respond {
	margin: 0 0 18px 0;
	}

#zox-comments-list ul #respond {
	margin: 0;
	}

#respond .required {
	color: #ff4b33;
	font-weight: bold;
	}

#respond label {
	color: #888;
	display: inline-block;
	font-size: 1rem;
	margin-bottom: 5px;
	width: 100%;
	}
	
#respond input {
	background: #f5f5f5;
	border: none;
	display: inline-block;
	font-size: 1rem;
	margin: 0 0 10px 1px;
	padding: 15px;
	width: auto;
	}

#respond textarea {
	background: #f5f5f5;
	border: none;
	display: inline-block;
	font-size: 1rem;
	margin: 0 0 20px;
	padding: 15px;
	width: 100%;
	}
	
#respond #submit {
	background: #000;
	border: 0;
	box-shadow: none;
	color: #fff;
	cursor:pointer;
	font-size: 12px;
	line-height: 1;
	margin-top:10px;
	padding: 7px 20px;
	}

#respond #submit:hover {
	background: #555;
	}

h3#reply-title,
h2.comments {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
	padding: 5px 10px;
	text-shadow: 1px 1px 0 #000;
	text-transform: uppercase;
	}

h3#reply-title {
	display: none;
	}

span.comments {
	background: #fff;
	color: #aaa;
	float: left;
	font-size: 20px;
	line-height: 100%;
	padding-right: 15px;
	text-transform: uppercase;
	}

span.comments a {
	color: #666;
	}

span.comments a:hover {
	color: #f00;
	text-decoration: none;
	}

#comment-input label {
	margin-bottom: 10px;
	}

p.cancel-comment-reply {
	clear: both;
	}

#respond p.comment-form-cookies-consent {
	display: grid;
	align-content: center;
	grid-gap: 10px;
	grid-template-columns: auto auto;
	justify-content: start;
	padding: 5px 0;
}

#respond input#wp-comment-cookies-consent,
#respond p.comment-form-cookies-consent label {
	margin: 0;
}

#respond p.comment-form-cookies-consent label {
	color: #aaa;
	font-size: .75rem;
}

p.form-allowed-tags {
	display: none !important;
	}

.fb-comments,
.fb-comments span {
	width: 100% !important;
	}

.post.pingback {
	margin: 0 0 20px;
	width: 100%;
}

#comments .post.pingback a {
	clear: both;
	font-weight: 700;
}

#comments .post.pingback a.comment-edit-link {
	color: #999;
	font-size: .75rem;
}

/************************************************
	13. Archives
************************************************/

#zox-author-page-top {
	background: #fff;
	margin: 0 0 30px;
	padding: 60px 5%;
	width: 100%;
	}

.zox-author-top {
	display: grid;
	grid-template-columns: auto auto;
	grid-column-gap: 50px;
	width: 100%;
	}

#zox-author-top-left {
	display: grid;
	align-content: center;
	width: 200px;
	}

#zox-author-top-left img {
	border: 8px solid #ddd;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	    -ms-border-radius: 50%;
	     -o-border-radius: 50%;
		border-radius: 50%;
	line-height: 0;
	margin-top: -8px;
	}

h1.zox-author-top-head {
	color: #222;
	font-family: 'Roboto', sans-serif;
	font-size: 3.25rem;
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1;
	margin-bottom: 15px;
	width: 100%;
	}

span.zox-author-page-desc {
	color: #444;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.5;
	width: 100%;
	}

ul.zox-author-page-list {
	margin-top: 20px;
	width: 100%;
	}

ul.zox-author-page-list li {
	background: #444;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	    -ms-border-radius: 50%;
	     -o-border-radius: 50%;
		border-radius: 50%;
	color: #fff;
	display: inline-block;
	font-size: 20px;
	line-height: 1;
	margin: 0 0 0 8px;
	padding-top: 10px;
	text-align: center;
	width: 40px;
	height: 40px;
	}

ul.zox-author-page-list a:first-child li {
	margin: 0;
	}

ul.zox-author-page-list .fa-facebook:hover {
	background: #3b5997;
	}

ul.zox-author-page-list .fa-twitter:hover {
	background: #00aced;
	}

ul.zox-author-page-list .fa-pinterest-p:hover {
	background: #cb2027;
	}

ul.zox-author-page-list .fa-instagram:hover {
	background: url(/wp-content/themes/zoxpress/images/insta-bg.gif) no-repeat;
	}

ul.zox-author-page-list .fa-google-plus:hover {
	background: #cd3627;
	}

ul.zox-author-page-list .fa-linkedin:hover {
	background: #069;
	}

.zox-authors-wrap {
	display: grid;
	grid-template-columns: 100%;
	margin: 30px auto 60px;
	padding: 0 30px;
	max-width: 900px;
}

.zox-authors-grid {
	display: grid;
	grid-row-gap: 40px;
	width: 100%;
}

.zox-authors-cont {
	display: grid;
	border-bottom: 1px solid #ddd;
	grid-template-columns: auto auto;
	grid-column-gap: 40px;
	padding: 0 0 40px;
	width: 100%;
}

.zox-authors-cont:last-child {
	border-bottom: none;
	padding: 0;
}

.zox-authors-left {
	display: grid;
	align-content: center;
	width: 200px;
}

.zox-authors-left img {
	border: 5px solid #ddd;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	    -ms-border-radius: 50%;
	     -o-border-radius: 50%;
		border-radius: 50%;
	overflow: hidden;
}

.zox-authors-right {
	display: grid;
	align-content: center;
}

.zox-authors-text {
	display: grid;
	grid-row-gap: 20px;
	width: 100%;
}

span.zox-authors-name a {
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1;
}

span.zox-authors-name a:hover {
	color: #ec2b8c;
}

p.zox-authors-desc {
	color: #444;
	font-size: 1.125rem;
	line-height: 1.35;
}

h2.zox-authors-latest {
	color: #000;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.15;
}

a:hover h2.zox-authors-latest {
	color: #ec2b8c;
}

.error404 #zox-main-body-wrap {
	background: #fff;
}

#zox-404 {
	margin: 200px 0 200px;
	text-align: center;
	width: 100%;
	height: 200px;
	}

#zox-404 h1 {
	color: #000;
	font-size: 6rem;
	letter-spacing: -.02em;
	line-height: 1;
	margin-bottom: 20px;
	}

#zox-404 p {
	color: #999;
	font-size: 1rem;
	line-height: 130%;
	}

.archive .zox-post-title-wrap,
.search .zox-post-title-wrap {
	text-align: center;
	width: 100%;
}

.archive #zox-home-main-wrap,
.search #zox-home-main-wrap {
	grid-row-gap: 40px;
}

#bbpress-forums ol,
#bbpress-forums ul {
	list-style: none;
	margin: 0;
	}

#bbpress-forums ul li,
#bbpress-forums ol li {
	margin-left: 0;
	padding: 0;
	}

div.bbp-breadcrumb,
div.bbp-topic-tags,
div.bbp-breadcrumb a,
div.bbp-breadcrumb span {
	font-size: .75rem;
	}

#subscription-toggle {
	float: left;
	margin: 5px 0 15px;
	width: 100%;
	}

.rwp-review-wrap {
	border-bottom: 1px solid #ddd;
	margin: 30px auto;
	padding-bottom: 30px;
	max-width: 740px;
	}

.rwp-summary,
.rwp-u-review__comment,
.rwp-review-wrap .rwp-review .rwp-pros-wrap .rwp-pros,
.rwp-review-wrap .rwp-review .rwp-cons-wrap .rwp-cons {
	font-size: 1rem;
	line-height: 1.55;
	}

.rwp-review-wrap .rwp-review .rwp-title em {
	text-transform: none !important;
}

/************************************************
	14. WooCommerce
************************************************/

.zox-woo-wrap {
	background: #fff;
	display: grid;
	grid-gap: 40px;
	grid-template-rows: auto;
	align-content: start;
	padding: 30px 40px 40px;
	min-height: 600px;
}

.zox-woo-grid {
	display: grid;
	grid-template-columns: 210px auto;
	grid-gap: 60px;
	width: 100%;
}

#woo-content {
	float: left;
	position: relative;
	width: 100%;
	}

.woocommerce-page .zox-page-wrap {
	background: #fff;
	padding: 40px 0;
	width: 100%;
}

.woocommerce-page h1.zox-post-title {
	font-size: 1.75rem;
	margin: 0 0 20px;
}

.woocommerce-page .zox-post-body h2 {
	font-size: 1.25rem;
}

.product-name a,
.product-name a:visited {
	color: #000;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
	min-width: 120px;
}

.woocommerce-page .zox-post-body table {
	padding: 0;
	max-width: none;
}

.zox-woo-main-grid {
	background: #fff;
	display: grid;
	grid-template-columns: 210px auto;
	grid-column-gap: 35px;
	padding: 60px;
	width: 100%;
}

#zox-woo-side-wrap .zox-side-widget,
.zox-woo-main-grid .zox-post-main {
	padding: 0;
}

#zox-woo-side-wrap .zox-side-widget {
	margin: 50px 0 0;
}

#zox-woo-side-wrap .zox-widget-side-head {
	margin: 0 0 20px;
}

#zox-woo-side-wrap .zox-side-widget:first-child {
	margin: 0;
}

#zox-woo-side-wrap h4.zox-widget-side-title {
	text-align: left;
}

#zox-woo-side-wrap span.zox-widget-side-title {
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	font-style: normal;
	font-weight: 800;
	text-transform: capitalize;
}

.woocommerce .zox-post-content {
	grid-template-columns: auto;
	grid-column-gap: 0;
}

#zox-woo-side-wrap {
	width: 210px;
	}

#woo-content h1.page-title {
	color: #222;
	font-size: 2.9rem;
	line-height: 100%;
	margin-bottom: 30px;
	text-align: center;
	width: 100%;
	}

#woo-content p {
	color: #111;
	display: block;
	font-size: 1rem;
	line-height: 1.55;
	margin-bottom: 20px;
	}

#woo-content .summary p.price {
	color: #222;
	}

.woocommerce div.product .woocommerce-product-rating {
	margin-bottom: 15px;
	}

.woocommerce div.product form.cart {
	margin-top: 15px;
	}

.woocommerce .woocommerce-breadcrumb {
	border-bottom: 1px solid #ddd;
	font-size: .75rem;
	line-height: 100%;
	margin: 20px 0 30px;
	padding-bottom: 15px;
	}

.woocommerce .woocommerce-breadcrumb a {
	font-weight: 700;
}

.woocommerce div.product .product_title {
	font-size: 1.7rem;
	line-height: 1.3;
	margin-bottom: 15px;
	}

.woocommerce div.product p.price {
	margin-bottom: 15px;
	}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del,
.woocommerce ul.products li.product .price del {
	display: inline-block;
	margin-right: 10px;
	}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins,
.woocommerce ul.products li.product .price ins,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price {
	color: #222;
	text-decoration: none;
	}

.woocommerce div.product p.price,
.woocommerce div.product p.price ins,
.woocommerce div.product p.price del {
	font-size: 1rem;
	}

.woocommerce ul.products li.product .price del,
.woocommerce ul.products li.product .price ins,
.woocommerce ul.products li.product .price {
	font-size: .9rem;
	}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price {
	font-weight: 700;
	}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	background-color: #000;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
	background-color: #222;
}

.woocommerce div.product {
	overflow: hidden;
	}

.woocommerce .quantity .qty {
	height: 29px;
	}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
	color: #fff !important;
	opacity: .8;
	}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .widget_price_filter .price_slider_amount .button {
	background: #ccc;
	font-size: .75rem;
	font-weight: 700;
	line-height: 100%;
	padding: 9px 25px;
	text-transform: uppercase;
	transition: all .25s;
	}

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
	font-size: 1.125rem;
}

.woocommerce div.product form.cart div.quantity {
	margin-right: 10px;
	}

.woocommerce .product_meta {
	font-size: .875rem;
	}

.woocommerce span.onsale {
	border-radius: 0;
	font-weight: 700;
	line-height: 100%;
	padding: 30px 35px 8px;
	-webkit-transform: rotate(-45deg);
	   -moz-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	     -o-transform: rotate(-45deg);
		transform: rotate(-45deg);
	top: -10px;
	left: -35px;
	min-width: 0;
	min-height: 0;
	}

.woocommerce ul.products li.product .onsale {
	top: -5px;
	left: -35px;
	right: auto;
	}

.woocommerce ul.products li.product h3 {
	font-size: 1.1rem;
	font-weight: 400;
	line-height: 120%;
	}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
	overflow: hidden;
	}

.woocommerce ul.products li.product .add_to_cart_button {
	display: none;
	}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content,
.woocommerce-page .widget_price_filter .price_slider_wrapper .ui-widget-content {
	float: left;
	margin: 10px 5% 20px;
	width: 90%;
	}

.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img {
	margin-left: 10px;
	width: 60px;
	}

.woocommerce ul.product_list_widget span.product-title,
.woocommerce ul.product_list_widget li a {
	color: #000;
	font-size: .75rem;
	font-weight: 500 !important;
	line-height: 1.25;
	margin-bottom: 5px;
	}

.woocommerce ul.product_list_widget li a.remove {
	font-size: 1.5rem;
	}

.woocommerce ul.product_list_widget span.quantity,
.woocommerce ul.product_list_widget span.amount {
	font-size: .8rem;
	text-decoration: none !important;
	}

.woocommerce ul.product_list_widget del {
	margin-right: 5px;
	}

.woocommerce .widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .total {
	border-top: 1px solid #ddd;
	font-size: .9em;
	line-height: 100%;
	margin-top: 10px;
	padding: 10px 0;
	text-align: center;
	}

.woocommerce .sidebar-widget a {
	color: #222;
	}

.woocommerce .sidebar-widget p.buttons a,
.woocommerce .sidebar-widget p.buttons a:hover {
	color: #222;
	}

.widget_shopping_cart_content {
	float: left;
	font-size: .9rem;
	}

.woocommerce .sidebar-widget select,
.zox-side-widget select {
	width: 100%;
	}

.woocommerce #woo-content select,
.woocommerce #zox-side-wrap select,
.woocommerce #woo-content div.product form.cart .variations select,
.woocommerce-page #woo-content div.product form.cart .variations select,
.woocommerce #woo-content div.product form.cart .variations select,
.woocommerce-page #woo-content div.product form.cart .variations select,
.woocommerce #woo-content .woocommerce-ordering select,
.woocommerce-page #woo-content .woocommerce-ordering select,
.woocommerce #woo-content form .form-row select,
.woocommerce-page #woo-content form .form-row select,
.widget_product_categories select#dropdown_product_cat,.zox-side-widget select {
	padding: 5px;
	background: #fff;
	border: 1px solid #ddd;
	color: #888;
	font-size: 12px;
	text-transform: uppercase;
	}

.woocommerce #zox-side-wrap select,
.zox-side-widget select {
	padding: 5px 2%;
	width: 95.6%;
	}

.woocommerce .related h2,
.woocommerce div.product .woocommerce-tabs .panel h2 {
	color: #000;
	font-size: 1.1rem;
	line-height: 100%;
	margin-bottom: 15px;
	position: relative;
	}

.woocommerce .related h2 {
	margin-bottom: 30px;
	}

.woocommerce-review-link {
	font-size: .75rem;
	font-weight: 400;
	}

.woocommerce .star-rating {
	margin-bottom: 5px;
	}

.woocommerce .widget_top_rated_products ul.product_list_widget li {
	border-top: 1px solid #ddd;
	margin: 15px 0 0 0;
	padding: 15px 0 0 0;
	}

.woocommerce .widget_top_rated_products ul.product_list_widget li:first-child {
	border-top: none;
	margin: 0;
	padding: 0;
	}

#woo-content p.woocommerce-result-count {
	font-size: .8rem;
	font-weight: 400;
	}

.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce #content div.product .woocommerce-tabs ul.tabs li,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	box-shadow: none;
	}

.woocommerce div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce #content div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce #content div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active:after,
.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active:after,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active:after,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active:after,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active:before,
.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active:before,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active:before,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active:before {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-width: 0;
	box-shadow: none;
	}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	font-size: .8rem;
	font-weight: 400;
	}

.woocommerce #content div.product .woocommerce-tabs,
.woocommerce div.product .woocommerce-tabs,
.woocommerce-page #content div.product .woocommerce-tabs,
.woocommerce-page div.product .woocommerce-tabs {
	border-bottom: 1px solid #ddd;
	margin-bottom: 30px;
	}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
	background: none;
	border: none;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	    -ms-border-radius: 50%;
	     -o-border-radius: 50%;
		border-radius: 50%;
	overflow: hidden;
	}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
	font-size: .8rem;
	font-weight: 400;
	}

.woocommerce div.product .woocommerce-tabs .panel {
	margin-bottom: 30px;
	}

.widget_top_rated_products .star-rating {
	display: none;
	}

.widget_product_categories ul.product-categories li {
	font-size: .9rem;
	margin-bottom: 5px;
	}


.widget_product_categories ul.product-categories li a {
	color: #000;
	}

#zox-woo-side-wrap a {
	opacity: 1;
	}

#zox-woo-side-wrap a:hover {
	opacity: .6;
	}

li.product:hover .woocommerce-LoopProduct-link .woocommerce-loop-product__title {
	opacity: .6;
	}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
	background-color: #ddd;
	}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
	background-color: #555;
	}

.woocommerce-page .zox-post-soc-out,
.woocommerce-page .zox-post-soc-in {
	margin-left: 0;
	}

.woocommerce-page .zox-post-soc-wrap {
	display: none;
	}

.woocommerce nav.woocommerce-pagination ul li a,
a.woocommerce-review-link {
	color: #000;
	}

.pswp {
	z-index: 9999;
	}

.woocommerce-page .zox-post-content {
	grid-template-columns: 100%;
}

.woocommerce-page .zox-content-main table {
	border: none;
	max-width: none;
	padding: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
	font-size: .875rem;
}

/************************************************
	15. Footer
************************************************/

#zox-foot-wrap {
	background: #fff;
	padding: 80px 30px 40px;
}

#zox-foot-wrap:before {
	content: '';
	background: rgba(0,0,0,.03);
	position: absolute;
		left: 0;
		top: -3px;
	width: 100%;
	height: 3px;
}

#zox-foot-wrap p {
	color: #aaa;
	font-size: .75rem;
	line-height: 1.25;
}

#zox-foot-wrap a {
	color: #aaa;
}

.zox-foot-grid {
	display: grid;
	align-content: center;
	grid-gap: 40px;
	grid-template-columns: auto auto;
	justify-content: space-between;
	width: 100%;
}

.zox-foot-left-wrap {
	display: grid;
	align-content: center;
	grid-gap: 20px;
	grid-template-columns: auto auto;
	justify-content: start;
}

.zox-foot-logo {
	display: grid;
	align-content: center;
	justify-content: center;
}

.zox-foot-left {
	display: grid;
	align-content: center;
	grid-gap: 6px;
	grid-template-rows: auto auto;
}

.zox-foot-menu ul li {
	display: inline-block;
	float: left;
	margin: 0 0 0 10px;
	}

.zox-foot-menu ul li:first-child {
	margin: 0;
}

.zox-foot-menu ul li a {
	font-size: .75rem;
	font-weight: 700;
	line-height: 1;
}

.zox-foot-menu ul li ul {
	display: none;
}

.zox-foot-right-wrap {
	display: grid;
	align-content: center;
}

ul.zox-foot-soc-list li {
	float: left;
	margin: 0 0 0 7px;
}

ul.zox-foot-soc-list li a {
	border: 1px solid #aaa;
	border-radius: 50%;
	display: grid;
	font-size: 14px;
	align-content: center;
	justify-content: center;
	width: 36px;
	height: 36px;
}

/************************************************
	16. Pagination
************************************************/

.zox-nav-links {
	float: left;
	margin-top: 20px;
	position: relative;
	width: 100%;
	}

.zox-inf-more-wrap .zox-nav-links {
	margin: 0;
}

.pagination {
	clear: both;
	display: inline-block;
	position: relative;
	font-size: .8rem;
	font-weight: 700;
	line-height: 100%;
	padding: 0;
	text-transform: uppercase;
	}
 
.pagination span, .pagination a {
	background: #fff;
	border: 1px solid #ddd;
	color: #aaa;
	display: block;
	float: left;
	font-size: .8rem;
	font-weight: 400;
	margin: 2px 5px 2px 0;
	padding: 9px 12px 8px;
	text-decoration: none;
	width: auto;
	}
 
.pagination .current,
.pagination a:hover {
	background: #ec2b8c;
	border: 1px solid #ec2b8c;
	color: #fff !important;
	}

.pagination a,
.pagination a:visited {
	color: #aaa;
	}

.zox-inf-more-wrap {
	margin-top: 20px;
	text-align: center;
	width: 100%;
	}

.zox-sport3 .zox-inf-more-wrap {
	margin-top: 20px;
}

a.zox-inf-more-but {
	background: #000;
	border-radius: 5px;
	color: #ffff !important;
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: .02em;
	line-height: 1;
	padding: 20px 0;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
	}

a.zox-inf-more-but:hover {
	background: #333;
	}

#infscr-loading,
#infscr-loading img {
	display: none !important;
	}

#infscr-loading em {
	float: left;
	width: 100%;
	}

.paginate-links {
	display: none;
	}

/************************************************
	17. SportsPress
************************************************/

.sportspress .zox-article-wrap {
	grid-gap: 20px;
	padding: 40px 0;
}

.sportspress h1.zox-post-title {
	font-size: 2.125rem;
}

.sp-template-event-logos .sp-team-name,
.sp-template-event-logos .sp-team-result {
	line-height: 1.2;
	}

.sportspress .zox-post-body h4,
.sp-table-caption {
	color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1;
	padding: 15px;
	text-align: center;
	text-transform: uppercase !important;
	}

.sp-event-logos {
	font-size: 40px;
	}

.sp-event-logos .sp-team-logo .sp-team-result {
	background: #fff;
	border: 1px solid #ddd;
	margin: 15px !important;
	padding: 5px 10px !important;
	min-width: 1.5em;
	text-align: center;
	}

.sp-template-event-logos .sp-team-result {
	font-size: 40px !important;
	font-weight: 700 !important;
	}

.sportspress table {
	border-top: 0 !important;
	font-size: .9rem;
	margin: 0 auto 20px;
	padding: 0 20px;
	max-width: 740px;
	width: 100%;
	}
.sportspress thead {
	background: #ccc;
	}

.sportspress tbody tr {
	background: #eee;
	}

.sportspress tbody tr:nth-child(2n+2) {
	background: none;
	}

.sportspress  td,
.sportspress  th {
	padding: 5px 1.5%;
	}

.sportspress  tr.odd {
	background: #eee;
	}

.sportspress table,
.sportspress td,
.sportspress th,
.sportspress table:before,
.sportspress td:before,
.sportspress th:before,
.sportspress table:after,
.sportspress td:after,
.sportspress th:after  {
	box-sizing: content-box;
}

.sportspress td,
.sportspress th,
.sp-data-table .data-rank  {
	padding: 8px 1.5%;
	text-align: center;
}

.sp-data-table .data-rank {
	min-width: 50px;
}

.sportspress table,
.sportspress td,
.sportspress th {
	border: 1px solid #c0c0c0;
}

.sportspress td,
.sportspress th {
	border-top-width: 0;
	border-bottom-width: 0;
}

.sportspress tr {
	border: 0;
}

.sportspress th,
.sportspress table thead {
	border-color: #000;
	background-color: #000;
	color: #fff;
}

.sp-data-table tr td.data-w,
.sp-data-table tr td.data-l,
.sp-data-table tr td.data-gb,
.sp-data-table tr th.data-w,
.sp-data-table tr th.data-l,
.sp-data-table tr th.data-gb {
	text-align: right;
	}

.sp-scoreboard-wrapper {
	float:left
	}

.sportspress .zox-post-body p,
.sportspress .zox-post-body table,
.sportspress.single .zox-post-body h3,
.sportspress.single .zox-post-body h4 {
	max-width: none;
}

.sportspress #wp-calendar caption {
	color: #fff;
	font-size: 1.125rem;
	margin: 0;
	text-align: center;
}
.sportspress #wp-calendar tbody td {
	border-top: 0;
}


	a,
	a:visited,
	a:hover h2.zox-s-title1,
	a:hover h2.zox-s-title1-feat,
	a:hover h2.zox-s-title2,
	a:hover h2.zox-s-title3,
	.zox-post-body p a,
	h3.zox-post-cat a,
	.sp-template a,
	.sp-data-table a,
	span.zox-author-name a,
	a:hover h2.zox-authors-latest,
	span.zox-authors-name a:hover,
	#zox-side-wrap a:hover {
		color: #00b51c;
	}

	.zox-s8 a:hover h2.zox-s-title1,
	.zox-s8 a:hover h2.zox-s-title1-feat,
	.zox-s8 a:hover h2.zox-s-title2,
	.zox-s8 a:hover h2.zox-s-title3 {
		box-shadow: 15px 0 0 #fff, -10px 0 0 #fff;
		color: #00b51c;
	}

	.woocommerce-message:before,
	.woocommerce-info:before,
	.woocommerce-message:before,
	.woocommerce .star-rating span:before,
	span.zox-s-cat,
	h3.zox-post-cat a,
	.zox-s6 span.zox-s-cat,
	.zox-s8 span.zox-s-cat,
	.zox-widget-side-trend-wrap .zox-art-text:before {
		color: #008013;
	}

	.zox-widget-bgp,
	.zox-widget-bgp.zox-widget-txtw .zox-art-wrap,
	.zox-widget-bgp.zox-widget-txtw .zox-widget-featl-sub .zox-art-wrap,
	.zox-s4 .zox-widget-bgp span.zox-s-cat,
	.woocommerce span.onsale,
	.zox-s7 .zox-byline-wrap:before,
	.zox-s3 span.zox-s-cat,
	.zox-o1 span.zox-s-cat,
	.zox-s3 .zox-widget-side-trend-wrap .zox-art-text:before,
	.sp-table-caption,
	#zox-search-form #zox-search-submit,
	#zox-search-form2 #zox-search-submit2,
	.pagination .current,
	.pagination a:hover,
	.zox-o6 span.zox-s-cat {
		background: #008013;
	}

	.woocommerce .widget_price_filter .ui-slider .ui-slider-handle,
	.woocommerce #respond input#submit.alt,
	.woocommerce a.button.alt,
	.woocommerce button.button.alt,
	.woocommerce input.button.alt,
	.woocommerce #respond input#submit.alt:hover,
	.woocommerce a.button.alt:hover,
	.woocommerce button.button.alt:hover,
	.woocommerce input.button.alt:hover {
		background-color: #008013;
	}

	.woocommerce-error,
	.woocommerce-info,
	.woocommerce-message {
		border-top-color: #008013;
	}

	.zox-feat-ent1-left,
	.zox-ent1 .zox-side-widget {
		border-top: 2px solid #008013;
	}

	.zox-feat-ent3-main-wrap h2.zox-s-title2 {
		background-color: #008013;
		box-shadow: 15px 0 0 #008013, -10px 0 0 #008013;
	}

	.zox-widget-side-trend-wrap .zox-art-text:before,
	.pagination .current,
	.pagination a:hover {
		border: 1px solid #008013;
	}

	.zox-post-type {
		border: 3px solid #008013;
	}
	.zox-net1 .zox-post-type,
	.zox-net2 .zox-post-type {
		background: #008013;
	}
	.zox-widget-featl-sub .zox-post-type {
		border: 2px solid #008013;
	}

	@media screen and (max-width: 479px) {
	.zox-net1.zox-s4 .zox-widget-bgp .zox-art-main span.zox-s-cat {
		background: #008013 !important;
	}
	}

	.zox-o3 h3.zox-s-cat {
		background: #f2f2f2;
	}

	.zox-widget-bgs,
	.zox-widget-bgs.zox-widget-txtw .zox-art-wrap,
	.zox-widget-bgs.zox-widget-txtw .zox-widget-featl-sub .zox-art-wrap,
	.zox-s4 .zox-widget-bgs span.zox-s-cat {
		background: #f2f2f2;
	}

	#zox-top-head-wrap {
		background: #ffffff;
	}

	span.zox-top-soc-but,
	.zox-top-nav-menu ul li a,
	span.zox-woo-cart-icon {
		color: #cccccc;
	}

	span.zox-woo-cart-num {
		background: #cccccc;
	}

	.zox-top-nav-menu ul li:hover a {
		color: #008013;
	}

	#zox-top-head-wrap,
	#zox-top-head,
	#zox-top-head-left,
	#zox-top-head-mid,
	#zox-top-head-right,
	.zox-top-nav-menu ul {
		height: 140px;
	}

	#zox-top-head-mid img {
		max-height: calc(140px - 20px);
	}

	.zox-top-nav-menu ul li a {
		font-size: 23px;
	}

	#zox-bot-head-wrap,
	#zox-bot-head-wrap.zox-trans-bot.zox-fix-up,
	#zox-fly-wrap,
	#zox-bot-head-wrap.zox-trans-bot:hover {
		background-color: #ffffff;
		background-image: none;
	}

	.zox-nav-menu ul li a,
	span.zox-nav-search-but,
	span.zox-night,
	.zox-trans-bot.zox-fix-up .zox-nav-menu ul li a,
	.zox-trans-bot.zox-fix-up span.zox-nav-search-but,
	nav.zox-fly-nav-menu ul li a,
	span.zox-fly-soc-head,
	ul.zox-fly-soc-list li a,
	nav.zox-fly-nav-menu ul li.menu-item-has-children:after {
		color: #000000;
	}

	.zox-nav-menu ul li.menu-item-has-children a:after,
	.zox-nav-menu ul li.zox-mega-drop a:after {
		border-right: 1px solid #000000;
		border-bottom: 1px solid #000000;
	}

	.zox-fly-but-wrap span,
	.zox-trans-bot.zox-fix-up .zox-fly-but-wrap span {
		background: #000000;
	}

	.zox-nav-menu ul li:hover a,
	span.zox-nav-search-but:hover,
	span.zox-night:hover {
		color: #008013;
	}

	.zox-fly-but-wrap:hover span {
		background: #008013;
	}

	span.zox-widget-main-title {
		color: #111;
	}

	#zox-foot-wrap {
		background: #fff;
	}

	#zox-foot-wrap p {
		color: #aaa;
	}

	#zox-foot-wrap a {
		color: #aaa;
	}

	ul.zox-foot-soc-list li a {
		border: 1px solid #aaa;
	}

	span.zox-widget-side-title {
		color: #111;
	}

	span.zox-post-main-title {
		color: #111;
	}

	.zox-top-nav-menu ul li a {
		padding-top: calc((140px - 23px) / 2);
		padding-bottom: calc((140px - 23px) / 2);
	}

	#zox-bot-head-wrap,
	.zox-bot-head-menu,
	#zox-bot-head,
	#zox-bot-head-left,
	#zox-bot-head-right,
	#zox-bot-head-mid,
	.zox-bot-head-logo,
	.zox-bot-head-logo-main,
	.zox-nav-menu,
	.zox-nav-menu ul {
		height: 70px;
	}

	.zox-bot-head-logo img,
	.zox-bot-head-logo-main img {
		max-height: calc(70px - 20px);
	}

	.zox-nav-menu ul li ul.sub-menu,
	.zox-nav-menu ul li.menu-item-object-category .zox-mega-dropdown {
		top: 70px;
	}

	.zox-nav-menu ul li a {
		font-size: 20px;
	}

	.zox-nav-menu ul li a {
		padding-top: calc((70px - 20px) / 2);
		padding-bottom: calc((70px - 20px) / 2);
	}

	.zox-fix-up {
		top: -70px !important;
		-webkit-transform: translate3d(0,-70px,0) !important;
	   	   -moz-transform: translate3d(0,-70px,0) !important;
	    	-ms-transform: translate3d(0,-70px,0) !important;
	     	 -o-transform: translate3d(0,-70px,0) !important;
				transform: translate3d(0,-70px,0) !important;
	}

	.zox-fix {
		top: -70px;
		-webkit-transform: translate3d(0,70px,0) !important;
	   	   -moz-transform: translate3d(0,70px,0) !important;
	    	-ms-transform: translate3d(0,70px,0) !important;
	     	 -o-transform: translate3d(0,70px,0) !important;
				transform: translate3d(0,70px,0) !important;
	}

	.zox-fix-up .zox-nav-menu ul li a {
		padding-top: calc((60px - 20px) / 2);
		padding-bottom: calc((60px - 20px) / 2);
	}

	.zox-feat-ent1-grid,
	.zox-feat-ent2-bot,
	.zox-feat-net1-grid {
		grid-template-columns: auto 300px;
	}

	body,
	span.zox-s-cat,
	span.zox-ad-label,
	.woocommerce ul.product_list_widget li a,
	.woocommerce ul.product_list_widget span.product-title,
	.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta,
	.woocommerce div.product p.price,
	.woocommerce div.product p.price ins,
	.woocommerce div.product p.price del,
	.woocommerce ul.products li.product .price del,
	.woocommerce ul.products li.product .price ins,
	.woocommerce ul.products li.product .price,
	.woocommerce #respond input#submit,
	.woocommerce a.button,
	.woocommerce button.button,
	.woocommerce input.button,
	.woocommerce .widget_price_filter .price_slider_amount .button,
	.woocommerce span.onsale,
	.woocommerce-review-link,
	#woo-content p.woocommerce-result-count,
	.woocommerce div.product .woocommerce-tabs ul.tabs li a,
	.woocommerce .woocommerce-breadcrumb,
	.woocommerce #respond input#submit.alt,
	.woocommerce a.button.alt,
	.woocommerce button.button.alt,
	.woocommerce input.button.alt,
	.zox-post-tags-header,
	.zox-post-tags a {
		font-family: 'Roboto', sans-serif;
		font-weight: 400;
		text-transform: None;
	}

	#zox-woo-side-wrap span.zox-widget-side-title,
	span.zox-authors-name a,
	h1.zox-author-top-head {
		font-family: 'Roboto', sans-serif;
	}

	p.zox-s-graph,
	span.zox-post-excerpt p,
	.zox-post-body p,
	#woo-content p,
	#zox-404 p,
	.zox-post-body ul li,
	.zox-post-body ol li,
	.zox-author-box-text p {
		font-family: 'Roboto', sans-serif;
		font-weight: 400;
		text-transform: None;
	}

	.zox-nav-menu ul li a,
	.zox-top-nav-menu ul li a,
	nav.zox-fly-nav-menu ul li a {
		font-family: 'Roboto', sans-serif;
		font-weight: 500;
		text-transform: Capitalize;
	}

	.zox-nav-menu ul li ul.zox-mega-list li a,
	.zox-nav-menu ul li ul.zox-mega-list li a p {
		font-family: 'Roboto', sans-serif;
	}

	h2.zox-s-title1,
	h2.zox-s-title1-feat,
	.woocommerce div.product .product_title,
	.woocommerce .related h2,
	#woo-content .summary p.price,
	.woocommerce div.product .woocommerce-tabs .panel h2,
	#zox-404 h1,
	h1.zox-post-title,
	.zox-widget-side-trend-wrap .zox-art-text:before,
	.zox-post-body blockquote p,
	.zox-post-body .wp-block-pullquote blockquote p,
	.zox-post-body h1,
	.zox-post-body h2,
	.zox-post-body h3,
	.zox-post-body h4,
	.zox-post-body h5,
	.zox-post-body h6,
	.comment-inner h1,
	.comment-inner h2,
	.comment-inner h3,
	.comment-inner h4,
	.comment-inner h5,
	.comment-inner h6,
	span.zox-author-box-name a {
		font-family: 'Roboto Condensed', sans-serif;
		font-weight: 700;
		text-transform: Capitalize;
	}

	span.zox-widget-main-title {
		font-family: 'Roboto Condensed', sans-serif;
		font-weight: 400;
		text-transform: Capitalize;
	}

	span.zox-widget-side-title {
		font-family: 'Roboto Condensed', sans-serif;
		font-weight: 400;
		text-transform: Capitalize;
	}

	span.zox-post-main-title {
		font-family: 'Roboto Condensed', sans-serif;
		font-weight: 900;
		text-transform: Capitalize;
	}

	h2.zox-s-title2,
	h2.zox-s-title3,
	span.zox-woo-cart-num,
	p.zox-search-p,
	.alp-related-posts .current .post-title,
	.alp-related-posts-wrapper .alp-related-post .post-title,
	.zox-widget-txtw span.zox-widget-main-title {
		font-family: 'Roboto Condensed', sans-serif;
		font-weight: 700;
		text-transform: Capitalize;
	}

	.zox-post-width {
		margin: 0 auto;
		max-width: calc(1240px + 60px);
	}


	

		.zox-post-width {
			max-width: 1320px;
		}
			

			.zox-head-width {
				margin: 0 auto;
				max-width: none;
			}
			.zox-nav-menu ul li.zox-mega-drop .zox-mega-dropdown {
				left: calc(((100vw - 100%) /2) * -1);
			}
				

			#zox-home-main-wrap {
				margin: 0 auto;
				padding: 0 30px;
				max-width: calc(1320px + 60px);
			}
			.zox-body-width,
			.zox-widget-feat-wrap.zox-o1 .zox-art-text-cont,
			.zox-widget-feat-wrap.zox-o4 .zox-art-text-cont,
			.zox-widget-feat-main.zox-o1 .zox-art-text-cont,
			.zox-widget-feat-main.zox-o4 .zox-art-text-cont {
				margin: 0 auto;
				max-width: none;
			}
				

			@media screen and (min-width: 1024px) {
				#zox-bot-head-left {
					display: none;
				}
				#zox-bot-head {
					grid-template-columns: auto 60px;
				}
				.zox-bot-head-menu {
					display: grid;
					padding: 0 0 0 90px;
				}
			}
			@media screen and (max-width: 1023px) {
				#zox-bot-head-left {
					display: grid;
				}
			}
				

		.zox-bot-head-logo {
			top: -9999px;
			opacity: 0;
		}
		.zox-fix-up .zox-bot-head-logo {
			top: 0;
			opacity: 1;
		}
		@media screen and (max-width: 1250px) and (min-width: 1024px) {
			.zox-fix-up #zox-bot-head-mid {
				display: grid;
				grid-gap: 20px;
				grid-template-columns: auto;
				justify-content: end;
			}
			.zox-fix-up .zox-bot-head-logo {
				position: absolute;
					left: 0;
					top: 0;
			}
		}
			

	#zox-bot-head-wrap {
		border-bottom: 1px solid #ddd;
	}
		

	.zox-fix-up {
		-webkit-box-shadow: 0 0.5rem 1rem 0 rgba(21,21,30,0.08);
		   -moz-box-shadow: 0 0.5rem 1rem 0 rgba(21,21,30,0.08);
			-ms-box-shadow: 0 0.5rem 1rem 0 rgba(21,21,30,0.08);
			 -o-box-shadow: 0 0.5rem 1rem 0 rgba(21,21,30,0.08);
				box-shadow: 0 0.5rem 1rem 0 rgba(21,21,30,0.08);
	}
		

.zox-nav-links {
	display: none;
	}
	

				.zox-feat-ent1-grid,
				.zox-feat-net1-grid {
					grid-template-columns: calc(100% - 320px) 300px;
					}
				.zox-post-main-wrap {
					grid-template-columns: calc(100% - 360px) 300px;
				}
				#zox-home-body-wrap {
					grid-template-columns: calc(100% - 360px) 300px;
					}
					

	span.zox-byline-name {
		display: none;
		}
	span.zox-byline-date {
		margin: 0;
	}
	

	.zox-post-body p a {
		box-shadow: inset 0 -1px 0 0 #fff, inset 0 -2px 0 0 #00b51c;
		color: #000;
	}
	.zox-post-body p a:hover {
		color: #00b51c;
	}
	

			span.zox-widget-main-title {
				font-size: 3rem;
				font-style: italic;
			}
			@media screen and (max-width: 599px) {
				.zox-widget-main-head {
					margin: 0 0 15px;
				}
				span.zox-widget-main-title {
					font-size: 2.125rem;
				}
			}
			

			span.zox-widget-side-title {
				font-size: 2.125rem;
				font-style: italic;
			}
			#zox-side-wrap .zox-widget-side-head a.rsswidget {
				font-weight: 400;
			}
			

		span.zox-post-main-title {
			font-size: 3rem;
			font-style: italic;
		}
		


		

	#zox-bot-head-right {
		grid-template-columns: 100%;
		justify-items: end;
	}
		
/*# sourceURL=zox-custom-style-inline-css */
/*!
 * Font Awesome Free 5.15.4 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-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("/wp-content/themes/zoxpress/font-awesome/webfonts/fa-brands-400.eot");
  src: url("/wp-content/themes/zoxpress/font-awesome/webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/zoxpress/font-awesome/webfonts/fa-brands-400.woff2") format("woff2"), url("/wp-content/themes/zoxpress/font-awesome/webfonts/fa-brands-400.woff") format("woff"), url("/wp-content/themes/zoxpress/font-awesome/webfonts/fa-brands-400.ttf") format("truetype"), url("/wp-content/themes/zoxpress/font-awesome/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("/wp-content/themes/zoxpress/font-awesome/webfonts/fa-regular-400.eot");
  src: url("/wp-content/themes/zoxpress/font-awesome/webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/zoxpress/font-awesome/webfonts/fa-regular-400.woff2") format("woff2"), url("/wp-content/themes/zoxpress/font-awesome/webfonts/fa-regular-400.woff") format("woff"), url("/wp-content/themes/zoxpress/font-awesome/webfonts/fa-regular-400.ttf") format("truetype"), url("/wp-content/themes/zoxpress/font-awesome/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("/wp-content/themes/zoxpress/font-awesome/webfonts/fa-solid-900.eot");
  src: url("/wp-content/themes/zoxpress/font-awesome/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/zoxpress/font-awesome/webfonts/fa-solid-900.woff2") format("woff2"), url("/wp-content/themes/zoxpress/font-awesome/webfonts/fa-solid-900.woff") format("woff"), url("/wp-content/themes/zoxpress/font-awesome/webfonts/fa-solid-900.ttf") format("truetype"), url("/wp-content/themes/zoxpress/font-awesome/webfonts/fa-solid-900.svg#fontawesome") format("svg");  }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; }
@font-face{ font-display:swap;
  font-family: 'Alegreya';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/alegreya/v41/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hU4-6qm.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Alegreya';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/alegreya/v41/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGxBU4-6qm.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Alegreya';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/alegreya/v41/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGERI4-6qm.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Alegreya';
  font-style: normal;
  font-weight: 800;
  src: url(https://fonts.gstatic.com/s/alegreya/v41/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGdhI4-6qm.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Alegreya';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/alegreya/v41/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGXxI4-6qm.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Amiri';
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/amiri/v30/J7afnpd8CGxBHpUrhLEY7g.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Amiri';
  font-style: italic;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/amiri/v30/J7aanpd8CGxBHpUrjAo9_pxqGg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Amiri';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/amiri/v30/J7aRnpd8CGxBHpUutLY.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Amiri';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/amiri/v30/J7acnpd8CGxBHp2VkaY_zps.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/anton/v27/1Ptgg87LROyAm3Kz-Co.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Barlow Semi Condensed';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/barlowsemicondensed/v16/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-_B2sg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Barlow Semi Condensed';
  font-style: normal;
  font-weight: 800;
  src: url(https://fonts.gstatic.com/s/barlowsemicondensed/v16/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36y_B2sg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Barlow Semi Condensed';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/barlowsemicondensed/v16/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62_B2sg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Frank Ruhl Libre';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/frankruhllibre/v23/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw6bYWqXNRA.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Frank Ruhl Libre';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/frankruhllibre/v23/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw7FYWqXNRA.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Frank Ruhl Libre';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/frankruhllibre/v23/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw73YWqXNRA.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Frank Ruhl Libre';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/frankruhllibre/v23/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4iZmqXNRA.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Frank Ruhl Libre';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/frankruhllibre/v23/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5sZmqXNRA.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Heebo';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yysdUmj.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Heebo';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSysdUmj.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Heebo';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EuyysdUmj.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Heebo';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EbiusdUmj.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Heebo';
  font-style: normal;
  font-weight: 800;
  src: url(https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSusdUmj.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Heebo';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EICusdUmj.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'IM Fell French Canon';
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXBN5Azw.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'IM Fell French Canon';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6foSNNk.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/josefinsans/v34/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_GbQbMZhKg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/josefinsans/v34/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQbMZhKg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/josefinsans/v34/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ObXbMZhKg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/josefinsans/v34/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_N_XbMZhKg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/librefranklin/v20/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhcMWkANDM.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/librefranklin/v20/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWkANDM.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/librefranklin/v20/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhHMWkANDM.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/librefranklin/v20/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduh8MKkANDM.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/librefranklin/v20/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhycKkANDM.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 800;
  src: url(https://fonts.gstatic.com/s/librefranklin/v20/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsKkANDM.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/librefranklin/v20/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhh8KkANDM.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Hw5aX8.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aX8.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw5aX8.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu173w5aX8.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM73w5aX8.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr73w5aX8.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w5aX8.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/notoserif/v33/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZqFCTx8cP.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/notoserif/v33/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZT1eTx8cP.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhdTQ3ig.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshdTQ3ig.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmdTQ3ig.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmdTQ3ig.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmdTQ3ig.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImdTQ3ig.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GiClXs1Ug.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G1ilXs1Ug.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GCC5Xs1Ug.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GMS5Xs1Ug.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 800;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVi5Xs1Ug.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 900;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4Gfy5Xs1Ug.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4gaVc.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/opensanscondensed/v24/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff1GhDuXMQg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/opensanscondensed/v24/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff0GmDuXMQg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs169vsUZiYA.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUZiYA.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvsUZiYA.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9osUZiYA.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZosUZiYA.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'PT Serif';
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/ptserif/v19/EJRTQgYoZZY2vCFuvAFT_r21dw.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'PT Serif';
  font-style: italic;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/ptserif/v19/EJRQQgYoZZY2vCFuvAFT9gaQZynfpQ.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'PT Serif';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/ptserif/v19/EJRVQgYoZZY2vCFuvAFWzro.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'PT Serif';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/ptserif/v19/EJRSQgYoZZY2vCFuvAnt66qSVy4.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDz8Z1xlEA.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJfedw.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLGT9Z1xlEA.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6Z1xlEA.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLCz7Z1xlEA.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDD4Z1xlEA.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLBT5Z1xlEA.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/rajdhani/v17/LDI2apCSOBg7S-QT7pasEfOreeI.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/rajdhani/v17/LDIxapCSOBg7S-QT7p4HM-M.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/rajdhani/v17/LDI2apCSOBg7S-QT7pb0EPOreeI.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/rajdhani/v17/LDI2apCSOBg7S-QT7pbYF_OreeI.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/rajdhani/v17/LDI2apCSOBg7S-QT7pa8FvOreeI.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHRuAj-lg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLt_QuAj-lg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHQuAj-lg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLrPQuAj-lg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLl_XuAj-lg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLmbXuAj-lg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLgHXuAj-lg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLijXuAj-lg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbFmUiA8.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuZEbVmUiA8.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuaabVmUiA8.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmUiA8.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWub2bVmUiA8.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYaalmUiA8.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjalmUiA8.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuZEalmUiA8.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuZtalmUiA8.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 100;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64RgL1X5pKQ.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64UYK1X5pKQ.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64RgK1X5pKQ.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64SoK1X5pKQ.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64cYN1X5pKQ.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64f8N1X5pKQ.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 800;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64ZgN1X5pKQ.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64bEN1X5pKQ.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 100;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyo8BO5Xk.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 200;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyUyosBO5Xk.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsosBO5Xk.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBO5Xk.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWAosBO5Xk.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVspcBO5Xk.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBO5Xk.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 800;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyUypcBO5Xk.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyUbpcBO5Xk.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/robotomono/v31/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_ROW9.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/robotomono/v31/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_Of2_ROW9.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Source Serif Pro';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/sourceserifpro/v18/neIQzD-0qpwxpaWvjeD0X88SAOeauXQ-pQ.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Source Serif Pro';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/sourceserifpro/v18/neIXzD-0qpwxpaWvjeD0X88SAOeasasatSyqwQ.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Source Serif Pro';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/sourceserifpro/v18/neIXzD-0qpwxpaWvjeD0X88SAOeasc8btSyqwQ.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v19/NaPDcZTIAOhVxoMyOr9n_E7ffGjEGItzZg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v19/NaPecZTIAOhVxoMyOr9n_E7fdMPmCA.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v19/NaPDcZTIAOhVxoMyOr9n_E7ffBzCGItzZg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v19/NaPDcZTIAOhVxoMyOr9n_E7ffHjDGItzZg.ttf) format('truetype');
 }
@font-face{ font-display:swap;
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v19/NaPDcZTIAOhVxoMyOr9n_E7ffEDBGItzZg.ttf) format('truetype');
 }
@media screen and (max-width: 1499px) and (min-width: 1400px) {

	#zox-feat-sport2-wrap .zox-body-width {
		margin: -30px 0;
		padding: 0;
		max-width: none;
	}
	
	#zox-feat-fash2-wrap .zox-body-width {
		padding: 0;
		max-width: none;
	}
	
	.zox-feat-tech3-sub-wrap .zox-div4 h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
}

@media screen and (max-width: 1399px) and (min-width: 1300px) {
	
	#zox-feat-sport2-wrap .zox-body-width {
		margin: -30px 0;
		padding: 0;
		max-width: none;
	}
	
	
	#zox-feat-fash2-wrap .zox-body-width {
		padding: 0;
		max-width: none;
	}
	
	.zox-fash2 .zox-div4 h2.zox-s-title2 {
		font-size: 1.375rem;
	}
	
	.zox-feat-tech3-sub-wrap .zox-div4 h2.zox-s-title2 {
		font-size: 1rem;
	}
	
	.zox-post-soc-scroll {
		margin: 0;
		top: auto;
		bottom: 0;
		width: auto;
		height: 50px;
	}
	
	ul.zox-post-soc-list li {
		border-left: 1px solid rgba(255,255,255,.15);
		border-top: none;
	}
	
	ul.zox-post-soc-list a:first-child li {
		border-left: none;
	}

	.zox-soc-more-open.zox-soc-more-scroll {
		bottom: 70px;
	}

	.zox-soc-more-scroll {
		left: auto;
		right: 20px;
	}

	.zox-soc-more-scroll:before {
		border-top: 10px solid #000;
		border-left: 10px solid transparent;
		border-right: none;
		bottom: -10px;
		left: auto;
		right: 0;
	}
	
}

@media screen and (max-width: 1299px) and (min-width: 1200px) {

	.zox-widget-flex1-wrap.zox-divr .zox-art-text p.zox-s-graph {
		display: none;
	}

	#zox-bot-head {
		grid-gap: 20px;
	}
	
	.zox-feat-ent1-cont-wrap {
		grid-template-columns: 240px auto;
	}
	
	.zox-feat-ent1-left span.zox-widget-side-title {
		font-size: 1.625rem;
	}
	
	.zox-o3.zox-div1 h2.zox-s-title1-feat,
	.zox-o3.zox-div1t h2.zox-s-title1-feat {
		font-size: 2.75rem;
	}
	
	#zox-feat-sport2-wrap .zox-body-width {
		margin: -30px 0;
		padding: 0;
		max-width: none;
	}
	
	#zox-feat-fash2-wrap .zox-body-width {
		padding: 0;
		max-width: none;
	}
	
	.zox-fash2 .zox-div4 h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	.zox-feat-tech1-main .zox-art-img,
	.zox-feat-tech1-sub .zox-art-img {
		height: 460px;
	}
	
	.zox-feat-tech2-main h2.zox-s-title2 {
		font-size: 1.875rem;
	}
	
	.zox-feat-tech3-main.zox-div2 h2.zox-s-title1-feat {
		font-size: 1.875rem;
	}
	
	.zox-feat-tech3-sub-wrap .zox-div4 h2.zox-s-title2 {
		font-size: 1rem;
	}
	
	.zox-blog-grid.zox-div4,
	.home .zox-blog-grid.zox-div4 {
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-blog-grid.zox-div4 .zox-art-img {
		padding-top: 56.25%;
	}
	
	.zox-post-soc-scroll {
		margin: 0;
		top: auto;
		bottom: 0;
		width: auto;
		height: 50px;
	}
	
	ul.zox-post-soc-list li {
		border-left: 1px solid rgba(255,255,255,.15);
		border-top: none;
	}
	
	ul.zox-post-soc-list a:first-child li {
		border-left: none;
	}

	.zox-soc-more-open.zox-soc-more-scroll {
		bottom: 70px;
	}

	.zox-soc-more-scroll {
		left: auto;
		right: 20px;
	}

	.zox-soc-more-scroll:before {
		border-top: 10px solid #000;
		border-left: 10px solid transparent;
		border-right: none;
		bottom: -10px;
		left: auto;
		right: 0;
	}

}

@media screen and (max-width: 1199px) and (min-width: 1100px) {

	.zox-widget-flex1-wrap.zox-divr .zox-art-text p.zox-s-graph {
		display: none;
	}
	
	#zox-bot-head {
		grid-gap: 20px;
	}
	
	.zox-nav-menu ul li a {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.zox-feat-ent1-cont-wrap {
		grid-template-columns: 200px auto;
	}
	
	.zox-feat-ent1-left span.zox-widget-side-title {
		font-size: 1.625rem;
	}
	
	.zox-feat-net1-cont {
		grid-template-columns: 220px auto;
	}
	
	.zox-o3.zox-div1 h2.zox-s-title1-feat,
	.zox-o3.zox-div1t h2.zox-s-title1-feat {
		font-size: 2.75rem;
	}
	
	#zox-feat-sport2-wrap .zox-body-width {
		margin: -30px 0;
		padding: 0;
		max-width: none;
	}
	
	.zox-sport2 .zox-divr h2.zox-s-title2 {
		font-size: 1.75rem;
	}
	
	#zox-feat-fash2-wrap .zox-body-width {
		padding: 0;
		max-width: none;
	}
	
	.zox-fash2 .zox-div4 h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-feat-tech3-main.zox-div2 h2.zox-s-title1-feat {
		font-size: 1.5rem;
	}
	
	.zox-o4.zox-div4 .zox-art-text {
		padding: 40px 20px 20px;
	}
	
	.zox-feat-tech3-sub-wrap .zox-div4 h2.zox-s-title2 {
		font-size: .75rem;
	}
	
	.zox-o6 .zox-art-text {
		padding: 60px 20px 20px;
	}

	.zox-div2 h2.zox-s-title1-feat,
	.zox-div23 h2.zox-s-title1-feat,
	.zox-div1 h2.zox-s-title1,
	.zox-div1 h2.zox-s-title2,
	.zox-div1t h2.zox-s-title1,
	.zox-div1t h2.zox-s-title2 {
		font-size: 1.75rem;
	}
	
	.zox-div1 h2.zox-s-title1-feat,
	.zox-div1t h2.zox-s-title1-feat {
		font-size: 2.75rem;
	}
	
	.zox-s5.zox-div1 p.zox-s-graph {
		font-size: 1.25rem;
	}
	
	.zox-widget-altimg-over .zox-widget-altimg-cont {
		padding: 0;
	}
	
	.zox-widget-altimg-over .zox-art-img {
		height: 400px;
	}
		
	.zox-widget-altimg-wrap h2.zox-s-title2 {
		font-size: 2.125rem;
	}
	
	.zox-feat-tech1-main .zox-art-img,
	.zox-feat-tech1-sub .zox-art-img {
		height: 460px;
	}
	
	.zox-feat-tech2-main h2.zox-s-title2 {
		font-size: 1.75rem;
	}
	
	#zox-foot-wrap {
		padding: 40px 30px;
	}
	
	.zox-foot-grid {
		grid-gap: 30px;
		grid-template-columns: 100%;
		grid-template-areas:
			'foot-right'
			'foot-left';
		justify-content: center;
	}
	
	.zox-foot-left-wrap {
		display: grid;
		grid-area: foot-left;
		justify-content: center;
	}
	
	.zox-foot-right-wrap {
		display: grid;
		grid-area: foot-right;
		justify-content: center;
	}
	
	.zox-blog-grid.zox-div4,
	.home .zox-blog-grid.zox-div4 {
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-blog-grid.zox-div4 .zox-art-img {
		padding-top: 56.25%;
	}
	
	.zox-post-soc-scroll {
		margin: 0;
		top: auto;
		bottom: 0;
		width: auto;
		height: 50px;
	}
	
	ul.zox-post-soc-list li {
		border-left: 1px solid rgba(255,255,255,.15);
		border-top: none;
	}
	
	ul.zox-post-soc-list a:first-child li {
		border-left: none;
	}

	.zox-soc-more-open.zox-soc-more-scroll {
		bottom: 70px;
	}

	.zox-soc-more-scroll {
		left: auto;
		right: 20px;
	}

	.zox-soc-more-scroll:before {
		border-top: 10px solid #000;
		border-left: 10px solid transparent;
		border-right: none;
		bottom: -10px;
		left: auto;
		right: 0;
	}

}

@media screen and (max-width: 1099px) and (min-width: 1024px) {

	.zox-widget-flex1-wrap.zox-divr .zox-art-text p.zox-s-graph {
		display: none;
	}
	
	#zox-bot-head {
		grid-gap: 20px;
	}
	
	.zox-nav-menu ul li a {
		padding-left: 7px;
		padding-right: 7px;
	}
	
	.zox-feat-ent1-cont-wrap {
		grid-template-columns: 180px auto;
	}
	
	.zox-feat-ent1-left span.zox-widget-side-title {
		font-size: 1.625rem;
	}
	
	.zox-feat-ent2-sub2.zox-div3 h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-feat-net1-cont {
		grid-template-columns: 200px auto;
	}
	
	.zox-feat-net2-main-wrap h2.zox-s-title2 {
		font-size: 2.125rem;
	}
	
	.zox-div1 h2.zox-s-title1-feat,
	.zox-div1t h2.zox-s-title1-feat {
		font-size: 2.75rem;
	}
	
	.zox-s5.zox-div1 p.zox-s-graph {
		font-size: 1.25rem;
	}
	
	.zox-s6 .zox-div3 .zox-art-text,
	.zox-s6 .zox-div4 .zox-art-text { 
		padding: 20px 30px 40px;
	}
	
	.zox-s8 .zox-div1 h2.zox-s-title2,
	.zox-s8 .zox-div1 h2.zox-s-title1,
	.zox-s8 .zox-div23 h2.zox-s-title1-feat,
	.zox-s8 .zox-widget-altimg-wrap h2.zox-s-title2 {
		font-size: 1.875rem;
	}
	
	#zox-feat-sport2-wrap .zox-body-width {
		margin: -30px 0;
		padding: 0;
		max-width: none;
	}
	
	.zox-sport2 .zox-divr h2.zox-s-title2 {
		font-size: 1.5rem;
	}
	
	.zox-sport3 .zox-div3 .zox-art-text,
	.zox-sport3 .zox-div4 .zox-art-text {
		padding: 10px 20px 20px;
	}
	
	.zox-sport3 .zox-o4.zox-div1 .zox-art-text {
		padding: 40px 20px 20px;
	}
	
	.zox-div23 h2.zox-s-title1-feat,
	.zox-div1 h2.zox-s-title1 {
		font-size: 1.875rem;
	}
	
	.zox-feat-fash1-grid {
		grid-gap: 30px;
	}
	
	.zox-feat-fash1-sub-wrap {
		max-height: 1700px;
	}
	
	.zox-feat-fash1-sub-wrap .zox-art-wrap {
		width: calc(50% - 15px);
	}
	
	.zox-feat-fash1-sub-wrap .zox-art-wrap:nth-child(odd) {
		margin: 0 30px 0 0;
	}
	
	#zox-feat-fash2-wrap .zox-body-width {
		padding: 0;
		max-width: none;
	}
	
	.zox-fash2 .zox-div4 h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-feat-tech1-main .zox-art-img,
	.zox-feat-tech1-sub .zox-art-img {
		height: 460px;
	}
	
	.zox-feat-tech2-main h2.zox-s-title2 {
		font-size: 1.5rem;
	}
	
	.zox-feat-tech3-main.zox-div2 h2.zox-s-title1-feat {
		font-size: 1.375rem;
	}
	
	.zox-o4.zox-div4 .zox-art-text {
		padding: 40px 20px 20px;
	}
	
	.zox-feat-tech3-sub-wrap .zox-div4 h2.zox-s-title2 {
		font-size: .75rem;
	}
	
	.zox-feat-tech3-sub-left.zox-div4 .zox-art-img {
		padding-top: 115.6%;
	}
	
	.zox-o6 .zox-art-text {
		padding: 60px 20px 20px;
	}
	
	.zox-div2 h2.zox-s-title1-feat,
	.zox-div23 h2.zox-s-title1-feat,
	.zox-div1 h2.zox-s-title1,
	.zox-div1 h2.zox-s-title2,
	.zox-div1t h2.zox-s-title1,
	.zox-div1t h2.zox-s-title2 {
		font-size: 1.75rem;
	}
	
	.zox-div3 h2.zox-s-title2,
	.zox-div4t h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-widget-altimg-over .zox-widget-altimg-cont {
		padding: 0;
	}
	
	.zox-widget-altimg-over .zox-art-img {
		height: 400px;
	}
		
	.zox-widget-altimg-wrap h2.zox-s-title2 {
		font-size: 2.125rem;
	}
	
	.zox-divr h2.zox-s-title2 {
		font-size: 1.375rem;
	}
	
	.zox-post-soc-scroll {
		margin: 0;
		top: auto;
		bottom: 0;
		width: auto;
		height: 50px;
	}
	
	ul.zox-post-soc-list li {
		border-left: 1px solid rgba(255,255,255,.15);
		border-top: none;
	}
	
	ul.zox-post-soc-list a:first-child li {
		border-left: none;
	}

	#zox-foot-wrap {
		padding: 40px 30px;
	}
	
	.zox-foot-grid {
		grid-gap: 30px;
		grid-template-columns: 100%;
		grid-template-areas:
			'foot-right'
			'foot-left';
		justify-content: center;
	}
	
	.zox-foot-left-wrap {
		display: grid;
		grid-area: foot-left;
		justify-content: center;
	}
	
	.zox-foot-right-wrap {
		display: grid;
		grid-area: foot-right;
		justify-content: center;
	}
	
	.zox-blog-grid.zox-div4,
	.home .zox-blog-grid.zox-div4 {
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-blog-grid.zox-div4 .zox-art-img {
		padding-top: 56.25%;
	}

	.zox-soc-more-open.zox-soc-more-scroll {
		bottom: 70px;
	}

	.zox-soc-more-scroll {
		left: auto;
		right: 20px;
	}

	.zox-soc-more-scroll:before {
		border-top: 10px solid #000;
		border-left: 10px solid transparent;
		border-right: none;
		bottom: -10px;
		left: auto;
		right: 0;
	}

}

@media screen and (max-width: 1023px) and (min-width: 900px) {

	.zox-widget-flex1-wrap.zox-divr .zox-art-text p.zox-s-graph,
	.zox-bot-head-menu,
	#zox-top-head-wrap {
		display: none;
	}
	
	#zox-bot-head {
		grid-template-columns: 60px auto 60px;
	}
	
	#zox-bot-head-mid {
		grid-template-columns: 100%;
	}
	
	.zox-bot-head-logo {
		opacity: 1;
		position: relative;
			left: auto;
			top: auto;
		width: 100%;
	}
	
	.zox-feat-ent1-cont-wrap {
		grid-template-columns: 240px;
	}
	
	.zox-feat-ent1-grid,
	.zox-feat-net1-grid,
	.zox-post-main-wrap,
	#zox-home-body-wrap {
		grid-template-columns: 100%;
	}
	
	.zox-feat-ent1-grid {
		grid-template-areas:
			'feat-contw'
			'feat-right';
	}
	
	.zox-feat-ent1-main-wrap .zox-art-img {
		padding-top: 100%;
		height: auto;
	}
	
	.zox-feat-ent1-main-wrap .zox-art-img img {
		height: auto;
		width: 178%;
		height: 100%;
	}
	
	.zox-o6 .zox-art-text {
		padding: 60px 20px 20px;
	}
	
	.zox-feat-ent1-left span.zox-widget-side-title {
		font-size: 1.625rem;
	}
	
	.zox-feat-right-wrap {
		margin: 0 auto;	
	}
	
	.zox-feat-ent2-bot {
		grid-template-areas:
			'feat-sub'
			'feat-right';
		grid-template-columns: 100%;
	}
	
	.zox-feat-net1-grid {
		grid-gap: 60px;
		grid-template-areas:
			'feat-cont'
			'feat-right';
	}
	
	.zox-feat-net1-cont {
		grid-template-columns: 220px auto;
	}
	
	.zox-feat-net2-sub-wrap.zox-div4 h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-feat-net3-grid {
		grid-gap: 0;
	}
	
	.zox-s5.zox-div1 .zox-art-wrap {
		grid-gap: 0;
		grid-template-areas: 
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-s5.zox-div1 .zox-art-text {
		padding: 15px 30px 30px;
	}
	
	.zox-div1 h2.zox-s-title1-feat,
	.zox-div1t h2.zox-s-title1-feat {
		font-size: 2.5rem;
	}
	
	.zox-s5.zox-div1 p.zox-s-graph {
		font-size: 1.25rem;
	}
	
	.zox-feat-net3-sub-wrap {
		padding: 30px 0 0;
	}
	
	.zox-feat-net3-sub-wrap .zox-art-wrap {
		padding: 0 30px;
	}
	
	.zox-s5 p.zox-s-graph {
		font-size: 1rem;
	}
	
	.zox-s5 .zox-divr p.zox-s-graph {
		margin: 5px 0 0;
	}
	
	.zox-net3 #zox-home-main-wrap,
	.zox-net3 #zox-home-widget-wrap,
	.zox-sport2 #zox-home-main-wrap,
	.zox-sport2 #zox-home-widget-wrap,
	.zox-fash1 #zox-home-main-wrap,
	.zox-fash1 #zox-home-widget-wrap {
		grid-row-gap: 60px;
	}
	
	.zox-feat-sport1-grid {
		grid-template-areas:
			'feat-main'
			'feat-sub'
			'feat-right';
		grid-template-columns: 100%;
	}
	
	#zox-feat-sport2-wrap .zox-body-width {
		margin: -30px 0;
		padding: 0;
		max-width: none;
	}
	
	.zox-o3.zox-feat-sport2-main-wrap .zox-art-text,
	.zox-o3.zox-widget-feat-main .zox-art-text,
	.zox-o3.zox-widget-featl-main .zox-art-text {
		position: relative;
			left: auto;
			bottom: auto;
		width: 100%;
	}
	
	.zox-widget-feat-wrap .zox-o3 .zox-art-text-cont,
	.zox-widget-featl-wrap .zox-o3 .zox-art-text-cont {
		max-width: none;
	}
	
	.zox-sport2 .zox-divr h2.zox-s-title2 {
		font-size: 1.5rem;
	}
	
	.zox-sport3 .zox-div3 .zox-art-text,
	.zox-sport3 .zox-div4 .zox-art-text {
		padding: 10px 20px 20px;
	}
	
	.zox-sport3 .zox-o4.zox-div1 .zox-art-text {
		padding: 40px 20px 20px;
	}
	
	.zox-sport3 .zox-widget-feat-wrap .zox-art-text-cont,
	.zox-sport3 .zox-widget-featl-main .zox-art-text-cont {
		max-width: none;
	}
	
	.zox-sport3 .zox-widget-featl-sub {
		margin: 0;
		padding: 20px;
	}
	
	#zox-feat-fash1-wrap {
		margin: -30px 0 0;
	}
	
	#zox-feat-fash1-wrap .zox-body-width {
		padding: 0;
	}
	
	.zox-feat-fash1-grid {
		grid-gap: 30px;
		grid-template-columns: 100%;
	}
	
	.zox-feat-fash1-main .zox-art-img {
		padding: 0;
	}
	
	.zox-feat-fash1-main .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
		min-width: 0;
	}
	
	.zox-feat-fash1-sub-wrap {
		padding: 0 30px;
		max-height: 2000px;
	}
	
	.zox-feat-fash1-sub-wrap .zox-art-wrap {
		width: calc(50% - 15px)
	}
	
	.zox-feat-fash1-sub-wrap .zox-art-wrap:nth-child(odd) {
		margin: 0 30px 0 0;
	}
	
	.zox-s7 .zox-widget-altimg-wrap .zox-art-text {
		background: #fff;
		padding: 20px 20px 0;
		top: -40px;
		left: 20px;
		width: calc(100% - 20px);
	}
	
	.zox-s7 .zox-widget-altimg-wrap .zox-art-text-cont {
		margin: 0;
		max-width: none;
	}
	
	#zox-feat-fash2-wrap .zox-body-width {
		padding: 0;
		max-width: none;
	}
	
	.zox-feat-fash2-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-feat-fash2-grid.zox-div4 .zox-art-img {
		padding: 0;
	}
	
	.zox-feat-fash2-grid.zox-div4 .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
		min-width: 0;
	}
	
	.zox-fash2 .zox-div4 h2.zox-s-title2 {
		font-size: 1.5rem;
	}
	
	.zox-s2 .zox-art-text {
		padding: 15px 20px 30px;
	}
	
	.zox-fash2 .zox-div3 h2.zox-s-title2,
	.zox-fash2 .zox-div4 h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-s2 .zox-widget-altimg-wrap .zox-art-text {
		text-align: center;
	}
	
	.zox-s2 .zox-widget-altimg-wrap h3.zox-s-cat {
		margin: 0;
		position: absolute;
			top: -14px;
			left: 0;
		text-align: center;
	}
	
	.zox-s2 .zox-widget-altimg-wrap span.zox-s-cat {
		padding: 10px 25px 1px;
	}
	
	.zox-widget-featl-sub .zox-art-text {
		padding: 0 20px 0 0;
	}
	
	.zox-feat-tech1-main .zox-art-img,
	.zox-feat-tech1-sub .zox-art-img {
		height: 460px;
	}
	
	.zox-feat-tech1-main .zox-art-text p.zox-s-graph {
		font-size: 1rem;
	}
	
	.zox-div3 h2.zox-s-title2,
	.zox-div4t h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-tech2.zox-s6 .zox-div4 .zox-art-text {
		padding: 15px 15px 20px;
	}
	
	.zox-feat-tech2-main.zox-div2 h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	.zox-feat-tech2-sub.zox-div4 h2.zox-s-title2 {
		font-size: .875rem;
	}
	
	.zox-feat-tech3-grid {
		grid-template-columns: 100%;
	}
	
	.zox-feat-tech3-main .zox-art-grid {
		max-height: 400px;
	}
	
	.zox-o4.zox-div2 .zox-art-text,
	.zox-o4.zox-div4 .zox-art-text {
		padding: 40px 20px 20px;
	}
	
	.zox-feat-tech3-sub-left.zox-div4 .zox-art-img {
		padding-top: 115.6%;
	}
	
	.zox-s6 .zox-art-text {
		padding: 20px 20px 30px;
	}
	
	.zox-o3 .zox-art-text {
			padding: 0 30px 30px;
	}
	
	.zox-div3 h2.zox-s-title2,
	.zox-div4t h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-s6 .zox-widget-featl-sub .zox-art-text {
		padding: 0 20px 0 0;
	}

	.zox-widget-flex1-col.zox-div3.zox-widget-flex1-ad {
		grid-template-columns: 100%;
	}
	
	.zox-div3.zox-widget-flex1-ad .zox-widget-flex1-cont {
		grid-template-columns: 1fr 1fr 1fr;
	}
	
	.zox-widget-flex1-col.zox-div3 {
		padding: 0;
	}
	
	.zox-feat-right-wrap,
	.zox-home-right-wrap {
		width: 100%;
		max-width: none;
	}
	
	.zox-widget-side-trend-wrap h2.zox-s-title3 {
		font-size: 1.5rem;
	}
	
	.zox-s8 .zox-div1 h2.zox-s-title2,
	.zox-s8 .zox-divr h2.zox-s-title2 {
		font-size: 1.675rem;
	}
	
	.zox-s8 .zox-div3 .zox-art-text {
		padding: 0 20px;
	}
	
	.zox-s8 .zox-div3 h2.zox-s-title2 {
		font-size: 1rem;
	}
	
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid {
		grid-gap: 0;
	}
	
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-text {
		margin-bottom: -40px;
	}
	
	.zox-s8 .zox-widget-altimg-over .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-text-cont,
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-text-cont {
		margin: 0 auto;
		-webkit-transform: translateY(-60px);
		   -moz-transform: translateY(-60px);
		    -ms-transform: translateY(-60px);
		     -o-transform: translateY(-60px);
			transform: translateY(-60px);
		max-width: 670px;
	}
	
	.zox-s8 .zox-widget-altimg-over .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-title,
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-title {
		width: 90%;
	}
	



	.zox-s3 span.zox-s-cat,
	.zox-o1 span.zox-s-cat {
		font-size: .75rem;
		padding: 6px 12px 5px
	}
	
	.zox-o4 span.zox-s-cat {
		padding: 0;
	}
	
	.zox-widget-altimg-wrap .zox-widget-altimg-cont {
		padding: 0;
	}
	
	.zox-widget-altimg-wrap .zox-widget-altimg-grid {
		grid-gap: 30px;
	}
	
	.zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-grid,
	.zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-wrap:nth-child(even) .zox-art-grid {
		grid-template-areas:
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-widget-altimg-wrap .zox-art-img {
		padding-top: 0;
		height: auto;
		min-height: 0;
		max-height: 400px;
	}
	
	.zox-widget-altimg-wrap .zox-art-img img {
		position: relative;
			left: auto;
			right: auto;
			top: auto;
			bottom: auto;
		min-width: 0;
	}
	
	.zox-widget-altimg-wrap .zox-art-text-cont {
		max-width: none;
	}
	.zox-widget-feat-wrap .zox-art-text-cont,
	.zox-widget-featl-main .zox-art-text-cont {
		margin: 0 auto;
		max-width: 560px;
	}
	
	.zox-widget-altimg-wrap .zox-art-text {
		padding: 15px 30px 40px;
	}
		
	.zox-widget-altimg-wrap h2.zox-s-title2 {
		font-size: 2.125rem;
	}
	
	.zox-s3 .zox-widget-altimg-wrap .zox-widget-altimg-grid h3.zox-s-cat {
		margin: 0;
		position: absolute;
			left: 0;
			top: 0;
	}
	
	.zox-s4 .zox-widget-altimg-wrap .zox-art-text {
		padding: 15px 20px 40px;
	}
	
	.zox-s4 .zox-widget-altimg-wrap .zox-art-text-cont {
		max-width: none;
	}
	
	.zox-s4 .zox-widget-altimg-wrap h3.zox-s-cat {
		margin: 0;
		position: absolute;
			left: 0;
			top: -29px;
	}
	
	.zox-s4 .zox-widget-altimg-wrap span.zox-s-cat {
		background: #fff;
		padding: 15px 20px 4px;
	}
	
	.zox-div4 .zox-byline-wrap span {
		display: inline-block;
		width: 100%;
	}
	
	.zox-div4 span.zox-byline-date {
		margin: 0;
	}
	
	.zox-div2 h2.zox-s-title1,
	.zox-div2 h2.zox-s-title2,
	.zox-div23 h2.zox-s-title1,
	.zox-div23 h2.zox-s-title2,
	.zox-s8 .zox-div1 h2.zox-s-title1
	.zox-div2 h2.zox-s-title1-feat,
	.zox-div23 h2.zox-s-title1-feat,
	.zox-div1 h2.zox-s-title1,
	.zox-div1 h2.zox-s-title2,
	.zox-div1t h2.zox-s-title1,
	.zox-div1t h2.zox-s-title2,
	.zox-s8 .zox-div23 h2.zox-s-title1-feat {
		font-size: 1.875rem;
	}
	
	.zox-o4.zox-div1 .zox-art-text {
		padding: 60px 30px 30px;
	}
	
	.zox-widget-featl-grid {
		grid-template-columns: 100%;
	}
	
	.zox-widget-featl-main .zox-art-img {
		padding: 0;
		height: auto;
	}
	
	.zox-widget-featl-main .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
			bottom: auto;
		min-width: 0;
	}
	
	.zox-widget-featl-sub {
		margin: 15px 0 0;
	}
	
	.zox-widget-featl-sub h2.zox-s-title3 {
		font-size: 1.5rem;
	}
	
	.zox-divr .zox-art-grid {
		grid-template-columns: 1fr 2fr;
	}
	
	.zox-s1 .zox-divr .zox-art-text {
		align-content: center;
		padding: 0 30px;
	}
	
	.zox-divr h2.zox-s-title2 {
		font-size: 1.375rem;
	}
	
	.zox-widget-main-head {
		margin: 0 0 15px;
	}
	
	.zox-post-soc-scroll {
		margin: 0;
		top: auto;
		bottom: 0;
		width: auto;
		height: 50px;
	}
	
	ul.zox-post-soc-list li {
		border-left: 1px solid rgba(255,255,255,.15);
		border-top: none;
	}
	
	ul.zox-post-soc-list a:first-child li {
		border-left: none;
	}
	
	.zox-vid-fixed {
		-webkit-box-shadow: none;
		   -moz-box-shadow: none;
		    -ms-box-shadow: none;
		     -o-box-shadow: none;
			box-shadow: none;
		margin-top: 0;
		position: relative !important;
			right: auto;
			bottom: auto;
		width: 100% !important;
		height: auto !important;
		z-index: auto;
	}
	
	.zox-post-ad {
		background-position: center center !important;
	}
	
	.zox-search-but-wrap {
		top: 30px;
		right: 30px;
	}
	
	.zox-search-cont {
		margin: -12vh 0 0 -30%;
		width: 60%;
	}
	
	p.zox-search-p {
		font-size: 3.5vw;
	}
	
	.zox-search-box {
		height: 60px;
	}
	
	#zox-search-input {
		font-size: 30px;
		padding: 15px;
	}
	
	#zox-foot-wrap {
		padding: 40px 30px;
	}
	
	.zox-foot-grid {
		grid-gap: 30px;
		grid-template-columns: 100%;
		grid-template-areas:
			'foot-right'
			'foot-left';
		justify-content: center;
	}
	
	.zox-foot-left-wrap {
		display: grid;
		grid-area: foot-left;
		justify-content: center;
	}
	
	.zox-foot-right-wrap {
		display: grid;
		grid-area: foot-right;
		justify-content: center;
	}
	
	.zox-post-video1-wrap {
		padding: 30px 0;
	}
	
	.zox-post-video1-grid {
		grid-template-areas:
			'zox-title'
			'zox-video';
		grid-template-columns: 100%;
	}
	
	.zox-post-video1-left {
		display: grid;
		grid-area: zox-video;
	}

	.zox-post-video1-right {
		display: grid;
		grid-area: zox-title;
		margin: 0 auto;
		max-width: 600px;
		text-align: center;
	}
	
	.zox-post-video1-right .zox-post-info-wrap {
		grid-template-columns: auto auto;
	}
	
	.zox-post-video1-right .zox-post-byline-wrap {
		justify-content: start;
	}
	
	.zox-post-video1-right ul.zox-post-soc-stat-list {
		justify-content: end;
	}
	
	.zox-post-more-grid {
		grid-gap: 20px;
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-post-more-grid.zox-div4 .zox-art-img {
		padding-top: 56.25%;
	}
	
	.zox-widget-altimg-wrap .zox-art-text {
		max-width: none;
	}
	
	.zox-auto-post-grid {
		grid-template-columns: 100%;
	}
	
	.zox-alp-side {
		display: none;
	}
	
	.zox-auto-post-main .zox-post-more .zox-div4 .zox-art-img img {
		position: absolute;
			top: 0;
	}
	
	.zox-s6 .zox-widget-tab-wrap .zox-art-text {
		padding: 0;
	}
	
	.zox-alp-width {
		padding: 0;
	}
	
	#zox-lead-bot {
		padding: 15px 0 0;
	}
	
	.zox-blog-grid.zox-div4,
	.home .zox-blog-grid.zox-div4 {
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-blog-grid.zox-div4 .zox-art-img {
		padding-top: 56.25%;
	}

	.zox-woo-wrap {
		padding: 30px 0;
	}

	.zox-woo-grid {
		grid-gap: 0;
		grid-template-columns: 100%;
	}

	#zox-woo-side-wrap {
		display: none;
	}

	.zox-soc-more-open.zox-soc-more-scroll {
		bottom: 70px;
	}

	.zox-soc-more-scroll {
		left: auto;
		right: 20px;
	}

	.zox-soc-more-scroll:before {
		border-top: 10px solid #000;
		border-left: 10px solid transparent;
		border-right: none;
		bottom: -10px;
		left: auto;
		right: 0;
	}

	.zox-whats-mob {
		display: block;
	}

	.zox-whats-main {
		display: none;
	}

}

@media screen and (max-width: 899px) and (min-width: 768px) {

	.zox-widget-flex1-wrap.zox-divr .zox-art-text p.zox-s-graph,
	.zox-bot-head-menu,
	#zox-top-head-wrap,
	#zox-home-widget-wrap p.zox-s-graph,
	.zox-net3 .zox-div4 p.zox-s-graph,
	.zox-net3 .zox-divr p.zox-s-graph,
	.zox-sport3 .zox-divr p.zox-s-graph {
		display: none;
	}
	
	#zox-bot-head {
		grid-template-columns: 60px auto 60px;
	}
	
	.zox-bot-head-logo {
		opacity: 1;
		top: auto;
		width: 100%;
	}
	
	.zox-feat-ent1-cont-wrap {
		grid-template-columns: 180px;
	}
	
	#zox-bot-head-mid,
	.zox-feat-ent1-grid,
	.zox-feat-net1-grid,
	.zox-post-main-wrap,
	#zox-home-body-wrap {
		grid-template-columns: 100%;
	}
	
	.zox-feat-ent1-grid {
		grid-template-areas:
			'feat-contw'
			'feat-right';
	}
	
	.zox-feat-ent1-main-wrap .zox-art-img {
		padding-top: 100%;
		height: auto;
	}
	
	.zox-feat-ent1-main-wrap .zox-art-img img {
		height: auto;
		width: 178%;
		height: 100%;
	}
	
	.zox-o6 .zox-art-text {
		padding: 60px 20px 20px;
	}
	
	.zox-feat-ent1-left span.zox-widget-side-title {
		font-size: 1.625rem;
	}
	
	.zox-feat-ent2-bot {
		grid-template-areas:
			'feat-sub'
			'feat-right';
		grid-template-columns: 100%;
	}
	
	.zox-feat-net1-grid {
		grid-gap: 60px;
		grid-template-areas:
			'feat-cont'
			'feat-right';
	}
	
	.zox-feat-net1-cont {
		grid-template-columns: 200px auto;
	}
	
	.zox-feat-net2-grid {
		grid-row-gap: 40px;
		grid-template-areas:
			'feat-main'
			'feat-sub';
		grid-template-columns: 100%;
	}
	
	.zox-feat-net2-main-wrap.zox-div2 h2.zox-s-title2 {
		font-size: 2.125rem;
	}

	.zox-feat-net2-sub-wrap.zox-div4 .zox-art-img {
		padding-top: 0;
	}
	
	.zox-feat-net2-sub-wrap.zox-div4 .zox-art-img img {
		position: relative;
			top: auto;
			bottom: auto;
			left: auto;
			right: auto;
		min-width: 0;
	}
	
	.zox-feat-net2-sub-wrap.zox-div4 h2.zox-s-title2 {
		font-size: 1.375rem;
	}
	
	.zox-feat-net3-grid {
		grid-gap: 0;
	}
	
	.zox-s5.zox-div1 .zox-art-wrap {
		grid-gap: 0;
		grid-template-areas: 
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-s5.zox-div1 .zox-art-text {
		padding: 15px 30px 30px;
	}
	
	.zox-div1 h2.zox-s-title1-feat,
	.zox-div1t h2.zox-s-title1-feat {
		font-size: 2.5rem;
	}
	
	.zox-s5.zox-div1 p.zox-s-graph {
		font-size: 1.25rem;
	}
	
	.zox-feat-net3-sub-wrap {
		grid-gap: 30px;
		grid-template-columns: 100%;
		padding: 30px 0 0;
	}
	
	.zox-feat-net3-sub-wrap .zox-art-wrap {
		border: none;
		padding: 0;
	}
	
	.zox-feat-net3-sub-wrap .zox-art-grid {
		grid-gap: 30px;
		grid-template-areas: 'zox-text zox-img';
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-feat-net3-sub-wrap .zox-art-text {
		align-content: center;
		padding: 0;
	}
	
	.zox-feat-net3-sub-wrap p.zox-s-graph {
		display: none;
	}
	
	.zox-net3 #zox-home-main-wrap,
	.zox-net3 #zox-home-widget-wrap,
	.zox-sport2 #zox-home-main-wrap,
	.zox-sport2 #zox-home-widget-wrap,
	.zox-fash1 #zox-home-main-wrap,
	.zox-fash1 #zox-home-widget-wrap {
		grid-row-gap: 60px;
	}
	
	.zox-feat-sport1-grid {
		grid-template-areas:
			'feat-main'
			'feat-sub'
			'feat-right';
		grid-template-columns: 100%;
	}
	
	.zox-s6 .zox-div3 .zox-art-text {
		padding: 15px 20px 40px;
	}
	
	.zox-s6 .zox-div3 h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	#zox-feat-sport2-wrap .zox-body-width {
		margin: -30px 0;
		padding: 0;
		max-width: none;
	}
	
	.zox-o3.zox-feat-sport2-main-wrap .zox-art-text,
	.zox-o3.zox-widget-feat-main .zox-art-text,
	.zox-o3.zox-widget-featl-main .zox-art-text {
		position: relative;
			left: auto;
			bottom: auto;
		width: 100%;
	}
	
	.zox-widget-feat-wrap .zox-o3 .zox-art-text-cont,
	.zox-widget-featl-wrap .zox-o3 .zox-art-text-cont {
		max-width: none;
	}
	
	.zox-sport2 .zox-divr h2.zox-s-title2 {
		font-size: 1.5rem;
	}
	
	.zox-sport3 .zox-div3 .zox-art-text,
	.zox-sport3 .zox-div4 .zox-art-text {
		padding: 10px 20px 20px;
	}
	
	.zox-sport3 .zox-o4.zox-div1 .zox-art-text {
		padding: 40px 20px 20px;
	}
	
	.zox-sport3 .zox-widget-feat-wrap .zox-art-text-cont,
	.zox-sport3 .zox-widget-featl-main .zox-art-text-cont {
		max-width: none;
	}
	
	.zox-sport3 .zox-widget-featl-sub {
		margin: 0;
		padding: 20px;
	}
	
	.zox-sport3 #zox-home-widget-wrap .zox-div4 h2.zox-s-title2,
	.zox-sport3 #zox-blog-main-wrap .zox-div4 h2.zox-s-title2 {
		font-size: 1rem;
	}
	
	.zox-sport1 .zox-divr .zox-art-grid,
	.zox-sport3 .zox-divr .zox-art-grid,
	.zox-sport3 .zox-div3 .zox-widget-flex1-cont .zox-art-grid {
		grid-template-columns: 200px auto;
	}
	
	#zox-feat-fash1-wrap {
		margin: -30px 0 0;
	}
	
	#zox-feat-fash1-wrap .zox-body-width {
		padding: 0;
	}
	
	.zox-feat-fash1-grid {
		grid-gap: 30px;
		grid-template-columns: 100%;
	}
	
	.zox-feat-fash1-main .zox-art-img {
		padding: 0;
	}
	
	.zox-feat-fash1-main .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
		min-width: 0;
	}
	
	.zox-feat-fash1-sub-wrap {
		padding: 0 30px;
		max-height: 2000px;
	}
	
	.zox-feat-fash1-sub-wrap .zox-art-wrap {
		width: calc(50% - 15px)
	}
	
	.zox-feat-fash1-sub-wrap .zox-art-wrap:nth-child(odd) {
		margin: 0 30px 0 0;
	}
	
	.zox-s7 .zox-widget-altimg-wrap .zox-art-text {
		background: #fff;
		padding: 20px 20px 0;
		top: -40px;
		left: 20px;
		width: calc(100% - 20px);
	}
	
	.zox-s7 .zox-widget-altimg-wrap .zox-art-text-cont {
		margin: 0;
		max-width: none;
	}
	
	#zox-feat-fash2-wrap .zox-body-width {
		padding: 0;
		max-width: none;
	}
	
	.zox-feat-fash2-grid {
		grid-template-columns: 100%;
	}
	
	.zox-feat-fash2-grid.zox-div4 .zox-art-img {
		padding: 0;
		max-height: 337px;
	}
	
	.zox-feat-fash2-grid.zox-div4 .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
		min-width: 0;
	}
	
	.zox-fash2 .zox-div4 h2.zox-s-title2 {
		font-size: 1.5rem;
	}
	
	.zox-s2 .zox-art-text {
		padding: 15px 20px 30px;
	}
	
	.zox-fash2 .zox-div3 h2.zox-s-title2,
	.zox-fash2 .zox-div4 h2.zox-s-title2 {
		font-size: 1.375rem;
	}
	
	.zox-s2 .zox-widget-altimg-wrap .zox-art-text {
		text-align: center;
	}
	
	.zox-s2 .zox-widget-altimg-wrap h3.zox-s-cat {
		margin: 0;
		position: absolute;
			top: -14px;
			left: 0;
		text-align: center;
	}
	
	.zox-s2 .zox-widget-altimg-wrap span.zox-s-cat {
		padding: 10px 25px 1px;
	}
	
	.zox-widget-featl-sub .zox-art-text {
		padding: 0 20px 0 0;
	}
	
	.zox-fash2 .zox-widget-flex1-wrap.zox-div3 .zox-art-text h3.zox-s-cat {
		margin: 0 0 5px;
		position: relative;
			left: auto;
			top: auto;
	}
	
	.zox-feat-tech1-grid {
		grid-template-columns: 100%;
	}
	
	.zox-feat-tech1-main .zox-art-text p.zox-s-graph {
		font-size: 1rem;
	}
	
	.zox-feat-tech1-sub .zox-art-img {
		height: 460px;
	}
	
	.zox-feat-tech1-sub .zox-art-img img {
		min-width: 370px;
	}
	
	.zox-feat-tech2-main {
		grid-template-columns: 100%;
	}
	
	.zox-feat-tech2-main .zox-art-wrap:nth-child(2) .zox-art-img,
	.zox-feat-tech2-main .zox-art-wrap:nth-child(1) .zox-art-img {
		padding: 0;
	}
	
	.zox-feat-tech2-main .zox-art-wrap:nth-child(1) .zox-art-img img,
	.zox-feat-tech2-main .zox-art-wrap:nth-child(2) .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
		min-width: 0;
	}
	
	.zox-tech2.zox-s6 .zox-div4 .zox-art-text {
		padding: 15px 15px 20px;
	}
	
	.zox-feat-tech2-main.zox-div2 h2.zox-s-title2 {
		font-size: 1.75rem;
	}
	
	.zox-feat-tech2-sub {
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-feat-tech3-grid {
		grid-template-columns: 100%;
	}
	
	.zox-feat-tech3-main .zox-art-grid {
		max-height: 400px;
	}
	
	.zox-feat-tech3-main.zox-div2 h2.zox-s-title1-feat {
		font-size: 1.875rem;
	}
	
	.zox-o4.zox-div2 .zox-art-text,
	.zox-o4.zox-div4 .zox-art-text {
		padding: 40px 20px 20px;
	}
	
	.zox-feat-tech3-sub-left.zox-div4 .zox-art-img {
		padding-top: 115.6%;
	}
	
	.zox-s6 .zox-art-text {
		padding: 20px 20px 30px;
	}
	
	.zox-div3 h2.zox-s-title2,
	.zox-div4t h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-s6 .zox-widget-featl-sub .zox-art-text {
		padding: 0 20px 0 0;
	}
	
	.zox-tech3 .zox-divr h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	
	
	
	

	.zox-widget-flex1-col.zox-div3.zox-widget-flex1-ad {
		grid-template-columns: 100%;
	}
	
	.zox-div3.zox-widget-flex1-ad .zox-widget-flex1-cont {
		grid-template-columns: 100%;
	}

	.zox-widget-flex1-col.zox-div3 {
		padding: 0;
	}
	
	.zox-div2 h2.zox-s-title1,
	.zox-div2 h2.zox-s-title2,
	.zox-div23 h2.zox-s-title1,
	.zox-div23 h2.zox-s-title2 {
		font-size: 1.675rem;
	}
	
	.zox-feat-right-wrap,
	.zox-home-right-wrap {
		width: 100%;
		max-width: none;
	}
	
	.zox-widget-side-trend-wrap h2.zox-s-title3 {
		font-size: 1.25rem;
	}
	
	.zox-ent3 #zox-home-widget-wrap {
		grid-gap: 60px;
	}
	
	.zox-feat-ent3-grid {
		grid-gap: 0;
	}
	
	.zox-s4 .zox-div3 h3.zox-s-cat {
		margin: 0 0 8px;
		position: relative;
			top: auto;
			left: auto;
	}
	
	.zox-s4 .zox-div3 span.zox-s-cat {
		padding: 0;
	}
	
	.zox-s4 .zox-byline-wrap {
		margin: 8px 0 0;
	}
	
	.zox-s8 .zox-div1 .zox-art-grid {
		grid-template-areas:
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-s8 .zox-div1 .zox-art-text {
		padding: 0 30px;
	}
	
	.zox-s8 .zox-div1 h3.zox-s-cat {
		position: absolute;
			left: 0;
			top: 0;
	}
	
	.zox-s8 .zox-div1 span.zox-s-cat {
		background: #fff;
		padding: 3px 8px 3px 0;
	}
	
	.zox-s8 .zox-div1 .zox-art-title {
		-webkit-transform: translateY(-60px);
		   -moz-transform: translateY(-60px);
		    -ms-transform: translateY(-60px);
		     -o-transform: translateY(-60px);
			transform: translateY(-60px);
		width: 90%;
	}
	
	.zox-s8 .zox-div1 h2.zox-s-title2 {
		font-size: 2.125rem;
	}
	
	.zox-s8 .zox-div3 .zox-art-text,
	.zox-s8 .zox-div3 .zox-widget-flex1-cont .zox-art-text,
	.zox-s8 .zox-blog-grid.zox-divr .zox-art-text {
		align-content: center;
		padding: 0;
	}
	
	.zox-feat-ent3-sub-wrap {
		grid-gap: 30px;
		grid-template-columns: 100%;
	}
	
	.zox-s8 .zox-div3 .zox-art-grid,
	.zox-s8 .zox-div3 .zox-widget-flex1-cont .zox-art-grid {
		grid-template-areas: 'zox-text zox-img';
		grid-template-columns: 2fr 3fr;
	}
	
	.zox-s8 .zox-div3 h3.zox-s-cat {
		margin: 0 0 5px;
		position: relative;
			top: auto;
			left: auto;
	}
	
	.zox-s8 .zox-div3 span.zox-s-cat {
		background: none;
		padding: 0;
	}
	
	.zox-s8 .zox-div3 .zox-art-title {
		margin: 0;
		-webkit-transform: none;
		   -moz-transform: none;
		    -ms-transform: none;
		     -o-transform: none;
			transform: none;
		width: 140%;
	}
	
	.zox-s8 .zox-div3 h2.zox-s-title2 {
		font-size: 1.375rem;
	}
	
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid {
		grid-gap: 0;
	}
	
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-text {
		margin-bottom: -40px;
	}
	
	.zox-s8 .zox-widget-altimg-over .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-text-cont,
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-text-cont {
		margin: 0 auto;
		-webkit-transform: translateY(-60px);
		   -moz-transform: translateY(-60px);
		    -ms-transform: translateY(-60px);
		     -o-transform: translateY(-60px);
			transform: translateY(-60px);
		max-width: 670px;
	}
	
	.zox-s8 .zox-widget-altimg-over .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-title,
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-title {
		width: 90%;
	}
	
	.zox-s8 .zox-div1 h2.zox-s-title1,
	.zox-s8 .zox-div1 h2.zox-s-title2,
	.zox-s8 .zox-widget-altimg-wrap h2.zox-s-title2,
	.zox-div2 h2.zox-s-title1,
	.zox-div2 h2.zox-s-title2,
	.zox-div23 h2.zox-s-title1,
	.zox-div23 h2.zox-s-title2,
	.zox-s8 .zox-div23 h2.zox-s-title1-feat {
		font-size: 1.875rem;
	}
	
	.zox-o1.zox-div1 .zox-art-text {
		padding: 0 20px 20px;
	}
	
	.zox-o1.zox-div1 h3.zox-s-cat {
		position: relative;
			left: auto;
			top: auto;
	}
	
	.zox-o1.zox-div1 span.zox-s-cat {
		padding: 3px 10px;
	}
	
	.zox-o1.zox-div1 .zox-art-title {
		-webkit-transform: none;
		   -moz-transform: none;
		    -ms-transform: none;
		     -o-transform: none;
			transform: none;
		width: 90%;
	}
	
	.zox-o3 .zox-art-text {
		padding: 0 30px 30px;
	}
	
	.zox-s3 span.zox-s-cat,
	.zox-o1 span.zox-s-cat {
		font-size: .75rem;
		padding: 6px 12px 5px
	}
	
	.zox-o4 span.zox-s-cat {
		padding: 0;
	}
	
	.zox-feat-right-wrap {
		margin: 0 auto;	
	}
	
	.zox-widget-side-trend-wrap h2.zox-s-title3 {
		font-size: 1.25rem;
	}
	
	.zox-widget-side-trend-wrap h2.zox-s-title3 {
		font-size: 1.25rem;
	}
	
	.zox-widget-altimg-wrap .zox-widget-altimg-cont {
		padding: 0;
	}
	
	.zox-widget-altimg-wrap .zox-widget-altimg-grid {
		grid-gap: 30px;
	}
	
	.zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-grid,
	.zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-wrap:nth-child(even) .zox-art-grid {
		grid-template-areas:
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-widget-altimg-wrap .zox-art-img {
		padding-top: 0;
		height: auto;
		min-height: 0;
		max-height: 400px;
	}
	
	.zox-widget-altimg-wrap .zox-art-img img {
		position: relative;
			left: auto;
			right: auto;
			top: auto;
			bottom: auto;
		min-width: 0;
	}
	
	.zox-widget-altimg-wrap .zox-art-text-cont {
		max-width: none;
	}
	.zox-widget-feat-wrap .zox-art-text-cont,
	.zox-widget-featl-main .zox-art-text-cont {
		margin: 0 auto;
		max-width: 560px;
	}
	
	.zox-widget-altimg-wrap .zox-art-text {
		padding: 15px 30px 40px;
	}
		
	.zox-widget-altimg-wrap h2.zox-s-title2 {
		font-size: 2.125rem;
	}
	
	.zox-s3 .zox-widget-altimg-wrap .zox-widget-altimg-grid h3.zox-s-cat {
		margin: 0;
		position: absolute;
			left: 0;
			top: 0;
	}
	
	.zox-s4 .zox-widget-altimg-wrap .zox-art-text {
		padding: 15px 20px;
	}
	
	.zox-s4 .zox-widget-altimg-wrap .zox-art-text-cont {
		max-width: none;
	}
	
	.zox-s4 .zox-widget-altimg-wrap h3.zox-s-cat {
		margin: 0;
		position: absolute;
			left: 0;
			top: -29px;
	}
	
	.zox-s4 .zox-widget-altimg-wrap span.zox-s-cat {
		background: #fff;
		padding: 15px 20px 4px;
	}
	
	.zox-div3 .zox-widget-flex1-cont {
		grid-template-columns: 100%;
	}
	
	.zox-div3 .zox-widget-flex1-cont .zox-art-grid {
		grid-template-areas: 'zox-img zox-text';
	}
	
	.zox-div4 .zox-widget-flex1-cont,
	.zox-div3 .zox-widget-flex1-cont .zox-art-grid {
		grid-gap: 20px;
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-div3 .zox-widget-flex1-cont .zox-art-text {
		align-content: center;
		padding: 0 20px 0 0;
	}
	
	.zox-div2 h2.zox-s-title1-feat,
	.zox-div23 h2.zox-s-title1-feat,
	.zox-div1 h2.zox-s-title1,
	.zox-div1 h2.zox-s-title2,
	.zox-div1t h2.zox-s-title1,
	.zox-div1t h2.zox-s-title2 {
		font-size: 1.875rem;
	}
	
	.zox-o4.zox-div1 .zox-art-text {
		padding: 60px 30px 30px;
	}
	
	.zox-widget-main-head {
		margin: 0 0 15px;
	}
	
	#zox-home-widget-wrap .zox-div4 .zox-art-img,
	#zox-blog-main-wrap  .zox-art-img {
		padding: 0;
	}
	
	#zox-home-widget-wrap .zox-div4 .zox-art-img img,
	#zox-blog-main-wrap  .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
			bottom: auto;
		min-width: 0;
	}
	
	#zox-home-widget-wrap .zox-div4 h2.zox-s-title2,
	#zox-blog-main-wrap .zox-div4 h2.zox-s-title2 {
		font-size: 1.5rem;
	}
	
	.zox-s8 #zox-home-widget-wrap .zox-div4 h2.zox-s-title2,
	.zox-s8 #zox-blog-main-wrap .zox-div4 h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	.zox-widget-featl-grid {
		grid-template-columns: 100%;
	}
	
	.zox-widget-featl-main .zox-art-img {
		padding: 0;
		height: auto;
	}
	
	.zox-widget-featl-main .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
			bottom: auto;
		min-width: 0;
	}
	
	.zox-widget-featl-sub {
		margin: 15px 0 0;
	}
	
	.zox-widget-featl-sub h2.zox-s-title3 {
		font-size: 1.25rem;
	}
	
	.zox-widget-bgw .zox-widget-home,
	.zox-widget-bgg .zox-widget-home,
	.zox-widget-bgb .zox-widget-home,
	.zox-widget-bgp .zox-widget-home,
	.zox-widget-bgs .zox-widget-home {
		padding: 30px 0;
	}
	
	.zox-divr .zox-art-grid {
		grid-template-columns: 1fr 2fr;
	}
	
	.zox-s1 .zox-divr .zox-art-text {
		align-content: center;
		padding: 0 30px 0 0;
	}
	
	.zox-divr h2.zox-s-title2 {
		font-size: 1.375rem;
	}
	
	.zox-post-soc-scroll {
		margin: 0;
		top: auto;
		bottom: 0;
		width: auto;
		height: 50px;
	}
	
	ul.zox-post-soc-list li {
		border-left: 1px solid rgba(255,255,255,.15);
		border-top: none;
	}
	
	ul.zox-post-soc-list a:first-child li {
		border-left: none;
	}
	
	.zox-post-ad {
		background-position: center center !important;
	}
	
	.zox-search-but-wrap {
		top: 30px;
		right: 30px;
	}
	
	.zox-search-cont {
		margin: -12vh 0 0 -35%;
		width: 70%;
	}
	
	p.zox-search-p {
		font-size: 3.5vw;
	}
	
	.zox-search-box {
		height: 60px;
	}
	
	#zox-search-input {
		font-size: 30px;
		padding: 15px;
	}

	#zox-foot-wrap {
		padding: 30px 20px;
	}
	
	.zox-foot-grid {
		grid-gap: 20px;
		grid-template-columns: 100%;
		grid-template-areas:
			'foot-right'
			'foot-left';
		justify-content: center;
	}
	
	.zox-foot-left-wrap {
		display: grid;
		grid-area: foot-left;
		justify-content: center;
	}
	
	.zox-foot-right-wrap {
		display: grid;
		grid-area: foot-right;
		justify-content: center;
	}
	
	.zox-vid-fixed {
		-webkit-box-shadow: none;
		   -moz-box-shadow: none;
		    -ms-box-shadow: none;
		     -o-box-shadow: none;
			box-shadow: none;
		margin-top: 0;
		position: relative !important;
			right: auto;
			bottom: auto;
		width: 100% !important;
		height: auto !important;
		z-index: auto;
	}
	
	.zox-post-video1-wrap {
		padding: 30px 0;
	}
	
	.zox-post-video1-grid {
		grid-template-areas:
			'zox-title'
			'zox-video';
		grid-template-columns: 100%;
	}
	
	.zox-post-video1-left {
		display: grid;
		grid-area: zox-video;
	}

	.zox-post-video1-right {
		display: grid;
		grid-area: zox-title;
		margin: 0 auto;
		max-width: 600px;
		text-align: center;
	}
	
	.zox-post-video1-right .zox-post-info-wrap {
		grid-template-columns: auto auto;
	}
	
	.zox-post-video1-right .zox-post-byline-wrap {
		justify-content: start;
	}
	
	.zox-post-video1-right ul.zox-post-soc-stat-list {
		justify-content: end;
	}
	
	.zox-post-more-grid {
		grid-gap: 20px;
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-post-more-grid.zox-div4 .zox-art-img {
		padding-top: 56.25%;
	}
	
	.zox-widget-altimg-wrap .zox-art-text {
		max-width: none;
	}
	
	.zox-auto-post-grid {
		grid-template-columns: 100%;
	}
	
	.zox-alp-side {
		display: none;
	}
	
	.zox-auto-post-main .zox-post-more .zox-div4 .zox-art-img img {
		position: absolute;
			top: 0;
	}
	
	.zox-s6 .zox-widget-tab-wrap .zox-art-text {
		padding: 0;
	}
	
	.zox-alp-width {
		padding: 0;
	}
	
	#zox-lead-bot {
		padding: 15px 0 0;
	}
	
	.zox-feat-ent2-main-grid {
		grid-template-columns: 100%;
	}
	
	.zox-feat-ent2-main .zox-art-img,
	.zox-feat-ent2-sub2 .zox-art-img {
		padding-top: 56.25%;
	}
	
	#zox-author-page-top {
		padding: 30px;
	}
	
	.zox-author-top {
		grid-gap: 20px;
		grid-template-columns: 100%
	}
	
	#zox-author-top-left,
	#zox-author-top-right {
		justify-content: center;
		text-align: center;
		width: 100%;
	}
	
	#zox-author-top-left img {
		border: 5px solid #ddd;
		width: 150px;
	}
	
	h1.zox-author-top-head {
		font-size: 2.5rem;
	}
	
	span.zox-author-page-desc {
		font-size: 1rem;
	}
	
	ul.zox-author-page-list li {
		margin: 0 0 0 3px;
	}
	
	.zox-divr .zox-art-grid {
		grid-gap: 20px;
	}
	
	.zox-blog-grid.zox-div4,
	.home .zox-blog-grid.zox-div4 {
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-blog-grid.zox-div4 .zox-art-img {
		padding-top: 56.25%;
	}
	
	.wp-block-embed-youtube {
		margin: 0 0 20px -20px;
		width: calc(100% + 40px);
	}

	.zox-woo-wrap {
		padding: 30px 0;
	}

	.zox-woo-grid {
		grid-gap: 0;
		grid-template-columns: 100%;
	}

	#zox-woo-side-wrap {
		display: none;
	}

	.zox-widget-flex1-wrap.zox-widget-flex1-ad {
		grid-template-columns: 100%;
	}

	.zox-widget-flex1-wrap.zox-divr .zox-art-grid {
		grid-template-columns: 1fr 1fr;
	}

	.zox-soc-more-open.zox-soc-more-scroll {
		bottom: 70px;
	}

	.zox-soc-more-scroll {
		left: auto;
		right: 20px;
	}

	.zox-soc-more-scroll:before {
		border-top: 10px solid #000;
		border-left: 10px solid transparent;
		border-right: none;
		bottom: -10px;
		left: auto;
		right: 0;
	}

	.zox-whats-mob {
		display: block;
	}

	.zox-whats-main {
		display: none;
	}
	
	.zox-post-type {
		left: 20px;
		top: 20px;
	}
	
	.zox-feat-left-wrap .zox-art-small .zox-post-type {
		font-size: 10px;
		margin: -15px 0 0 -15px;
		width: 30px;
		height: 30px;
	}

}

@media screen and (max-width: 767px) and (min-width: 660px) {

	.zox-widget-flex1-wrap.zox-divr .zox-art-text p.zox-s-graph,
	.zox-bot-head-menu,
	#zox-top-head-wrap,
	.zox-widget-altimg-wrap p.zox-s-graph,
	#zox-home-widget-wrap p.zox-s-graph,
	.zox-net3 .zox-div4 p.zox-s-graph,
	.zox-net3 .zox-divr p.zox-s-graph,
	.zox-sport3 .zox-divr p.zox-s-graph {
		display: none;
	}
	
	#zox-bot-head {
		grid-template-columns: 60px auto 60px;
	}
	
	.zox-bot-head-logo {
		opacity: 1;
		top: auto;
		width: 100%;
	}
	
	.zox-head-width,
	.zox-post-width,
	.zox-body-width {
		padding: 0 20px;
	}
	
	#zox-main-body-wrap {
		padding: 20px 0 40px;
	}
	
	.zox-feat-ent1-cont-wrap {
		grid-template-columns: 180px;
	}
	
	#zox-bot-head-mid,
	.zox-feat-ent1-grid,
	.zox-feat-net1-grid,
	.zox-post-main-wrap,
	#zox-home-body-wrap {
		grid-template-columns: 100%;
	}
	
	.zox-feat-ent1-grid {
		grid-template-areas:
			'feat-contw'
			'feat-right';
	}
	
	.zox-feat-right-wrap {
		margin: 0 auto;	
	}
	
	.zox-widget-side-trend-wrap h2.zox-s-title3 {
		font-size: 1.25rem;
	}
	
	.zox-feat-ent1-cont-wrap {
		grid-template-areas:
			'feat-cont'
			'feat-left';
		grid-template-columns: 100%;
	}
	
	.zox-feat-left-wrap,
	.zox-feat-right-wrap {
		margin: 0 auto;
		width: 100%;
		max-width: 600px;
	}
	
	.zox-feat-ent1-left .zox-art-small .zox-art-img {
		display: block;
	}
	
	.zox-feat-ent1-left .zox-art-text {
		align-content: center;
	}
	
	.zox-feat-ent1-left .zox-art-main .zox-art-text-cont {
		margin: 0 auto;
		max-width: 480px;
	}

	.zox-feat-ent1-left .zox-art-main .zox-art-text {
		text-align: center;
	}
	
	.zox-feat-ent1-left .zox-art-main h2.zox-s-title2 {
		font-size: 2.125rem;
	}
	
	.zox-feat-ent1-left .zox-art-small .zox-art-grid {
		display: grid;
		align-content: center;
		grid-gap: 15px;
		grid-template-areas: 'zox-img zox-text';
		grid-template-columns: 100px auto;
	}
	
	.zox-feat-ent2-main-grid {
		grid-template-columns: 100%;
	}
	
	.zox-feat-ent2-main-grid,
	.zox-feat-ent2-sub2,
	.zox-feat-ent2-sub-wrap,
	.zox-feat-ent2-grid {
		grid-gap: 20px;
	}
	
	.zox-feat-ent2-bot {
		grid-template-areas:
			'feat-sub'
			'feat-right';
		grid-template-columns: 100%;
	}
	
	.zox-div2 h2.zox-s-title1,
	.zox-div2 h2.zox-s-title2,
	.zox-div23 h2.zox-s-title1,
	.zox-div23 h2.zox-s-title2 {
		font-size: 2.125rem;
	}
	
	.zox-feat-right-wrap,
	.zox-home-right-wrap {
		margin: 0 auto;
		width: 100%;
		max-width: none;
	}

	.zox-ent3 #zox-home-widget-wrap {
		grid-gap: 60px;
	}
	
	.zox-feat-ent3-grid {
		grid-gap: 0;
	}
	
	.zox-feat-net1-grid {
		grid-gap: 60px;
		grid-template-areas:
			'feat-cont'
			'feat-right';
	}
	
	.zox-feat-net1-cont {
		grid-gap: 30px;
		grid-template-areas:
			'feat-main'
			'feat-left';
		grid-template-columns: 100%;
	}
	
	.zox-feat-net1-sub {
		grid-gap: 20px;
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-feat-net2-grid {
		grid-row-gap: 40px;
		grid-template-areas:
			'feat-main'
			'feat-sub';
		grid-template-columns: 100%;
	}
	
	.zox-feat-net2-main-wrap.zox-div2 h2.zox-s-title2 {
		font-size: 1.875rem;
	}

	.zox-feat-net2-sub-wrap.zox-div4 .zox-art-img {
		padding-top: 0;
	}
	
	.zox-feat-net2-sub-wrap.zox-div4 .zox-art-img img {
		position: relative;
			top: auto;
			bottom: auto;
			left: auto;
			right: auto;
		min-width: 0;
	}
	
	.zox-feat-net2-sub-wrap.zox-div4 h2.zox-s-title2 {
		font-size: 1.375rem;
	}
	
	.zox-feat-net3-grid {
		grid-gap: 0;
	}
	
	.zox-s5.zox-div1 .zox-art-wrap {
		grid-gap: 0;
		grid-template-areas: 
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-s5.zox-div1 .zox-art-text {
		padding: 15px 30px 30px;
	}
	
	.zox-div1 h2.zox-s-title1-feat,
	.zox-div1t h2.zox-s-title1-feat {
		font-size: 2.25rem;
	}
	
	.zox-s5.zox-div1 p.zox-s-graph {
		font-size: 1.125rem;
	}
	
	.zox-feat-net3-sub-wrap {
		grid-gap: 30px;
		grid-template-columns: 100%;
		padding: 30px 0 0;
	}
	
	.zox-feat-net3-sub-wrap .zox-art-wrap {
		border: none;
		padding: 0;
	}
	
	.zox-feat-net3-sub-wrap .zox-art-grid {
		grid-gap: 30px;
		grid-template-areas: 'zox-text zox-img';
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-feat-net3-sub-wrap .zox-art-text {
		align-content: center;
		padding: 0;
	}
	
	.zox-feat-net3-sub-wrap p.zox-s-graph {
		display: none;
	}
	
	.zox-s5 .zox-byline-wrap {
		margin: 10px 0 0;
	}
	
	.zox-net3 #zox-home-main-wrap,
	.zox-net3 #zox-home-widget-wrap,
	.zox-sport2 #zox-home-main-wrap,
	.zox-sport2 #zox-home-widget-wrap,
	.zox-fash1 #zox-home-main-wrap,
	.zox-fash1 #zox-home-widget-wrap {
		grid-row-gap: 40px;
	}
	
	.zox-net3 .zox-divr .zox-art-grid {
		grid-gap: 15px;
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-net3 .zox-blog-grid.zox-divr .zox-art-text {
		text-align: center;
	}
	
	.zox-net3 .zox-divr h2.zox-s-title2 {
		font-size: 1.375rem;
	}
	
	.zox-feat-sport1-grid {
		grid-gap: 20px;
		grid-template-areas:
			'feat-main'
			'feat-sub'
			'feat-right';
		grid-template-columns: 100%;
	}
	
	.zox-s6 .zox-feat-sport1-main-wrap .zox-art-text {
		padding: 20px 30px 40px;
	}
	
	.zox-feat-sport1-sub-wrap {
		grid-gap: 20px;
		grid-template-columns: 100%;
	}
	
	.zox-s6 .zox-div3  .zox-art-grid {
		grid-gap: 20px;
		grid-template-areas: 'zox-img zox-text';
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-s6 .zox-div3 .zox-art-text {
		align-content: center;
		padding: 0 20px 0 0;
	}
	
	.zox-s6 .zox-byline-wrap {
		margin: 5px 0 0;
	}
	
	.zox-sport1 .zox-divr .zox-art-grid,
	.zox-sport3 .zox-divr .zox-art-grid {
		grid-gap: 20px;
	}
	
	.zox-sport1 .zox-divr .zox-art-grid,
	.zox-sport3 .zox-divr .zox-art-grid {
		grid-gap: 20px;
		grid-template-columns: 1fr 1fr;
	}
	
	#zox-feat-sport2-wrap .zox-body-width {
		margin: -30px 0;
		padding: 0;
		max-width: none;
	}
	
	.zox-o3.zox-feat-sport2-main-wrap .zox-art-text,
	.zox-o3.zox-widget-feat-main .zox-art-text,
	.zox-o3.zox-widget-featl-main .zox-art-text {
		position: relative;
			left: auto;
			bottom: auto;
		width: 100%;
	}
	
	.zox-widget-feat-wrap .zox-o3 .zox-art-text-cont,
	.zox-widget-featl-wrap .zox-o3 .zox-art-text-cont {
		max-width: none;
	}
	
	.zox-divr .zox-art-grid {
		grid-gap: 20px;
	}
	
	.zox-sport2 .zox-divr h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	.zox-sport3 .zox-body-width {
		padding: 0;
	}
	
	.zox-sport3 #zox-home-cont-wrap {
		grid-gap: 15px;
	}
	
	.zox-feat-sports3-sub {
		grid-template-columns: 100%;
	}
	
	.zox-feat-sports3-sub .zox-art-grid {
		grid-gap: 15px;
		grid-template-areas: 'zox-img zox-text';
		grid-template-columns: 200px auto;
	}
	
	.zox-sport3 .zox-feat-sports3-sub.zox-div4 .zox-art-text {
		align-content: center;
		padding: 0 20px 0 0;
	}
	
	.zox-sport3 .zox-div3 .zox-art-text,
	.zox-sport3 .zox-div4 .zox-art-text {
		padding: 10px 20px 20px;
	}
	
	.zox-sport3 .zox-o4.zox-div1 .zox-art-text {
		padding: 40px 20px 20px;
	}
	
	.zox-sport3 .zox-widget-feat-wrap .zox-art-text-cont,
	.zox-sport3 .zox-widget-featl-main .zox-art-text-cont {
		max-width: none;
	}
	
	.zox-sport3 .zox-widget-featl-sub {
		margin: 0;
		padding: 20px;
	}
	
	.zox-sport3 #zox-home-widget-wrap .zox-div4 h2.zox-s-title2,
	.zox-sport3 #zox-blog-main-wrap .zox-div4 h2.zox-s-title2,
	.zox-sport3 #zox-home-widget-wrap .zox-div3 h2.zox-s-title2,
	.zox-sport3 #zox-blog-main-wrap .zox-div3 h2.zox-s-title2 {
		font-size: 1rem;
	}
	
	.zox-sport1 .zox-divr .zox-art-grid,
	.zox-sport3 .zox-divr .zox-art-grid,
	.zox-sport3 .zox-div3 .zox-widget-flex1-cont .zox-art-grid {
		grid-template-columns: 200px auto;
	}
	
	.zox-sport3 .zox-div4 .zox-widget-flex1-cont {
		grid-template-columns: 1fr 1fr;
	}
	
	#zox-feat-fash1-wrap {
		margin: -20px 0 0;
	}
	
	#zox-feat-fash1-wrap .zox-body-width {
		padding: 0;
	}
	
	.zox-feat-fash1-grid {
		grid-gap: 20px;
		grid-template-columns: 100%;
	}
	
	.zox-feat-fash1-main .zox-art-img {
		padding: 0;
	}
	
	.zox-feat-fash1-main .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
		min-width: 0;
	}
	
	.zox-feat-fash1-sub-wrap {
		padding: 0 20px;
		max-height: 1600px;
	}
	
	.zox-feat-fash1-sub-wrap .zox-art-wrap {
		width: calc(50% - 10px)
	}
	
	.zox-feat-fash1-sub-wrap .zox-art-wrap:nth-child(odd) {
		margin: 0 20px 0 0;
	}
	
	.zox-s7 .zox-widget-altimg-wrap .zox-art-text {
		background: #fff;
		padding: 20px 20px 0;
		top: -40px;
		left: 20px;
		width: calc(100% - 20px);
	}
	
	.zox-s7 .zox-widget-altimg-wrap .zox-art-text-cont {
		margin: 0;
		max-width: none;
	}
	
	.zox-s7 .zox-div3.zox-widget-flex1-wrap .zox-art-text {
		background: none;
		top: auto;
		left: auto;
		padding: 0 20px 0 0;
		width: 100%;
	}
	
	#zox-feat-fash2-wrap .zox-body-width {
		padding: 0;
		max-width: none;
	}
	
	.zox-feat-fash2-grid {
		grid-template-columns: 100%;
	}
	
	.zox-feat-fash2-grid.zox-div4 .zox-art-img {
		padding: 0;
		max-height: 337px;
	}
	
	.zox-feat-fash2-grid.zox-div4 .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
		min-width: 0;
	}
	
	.zox-fash2 .zox-div3 h2.zox-s-title2,
	.zox-fash2 .zox-div4 h2.zox-s-title2 {
		font-size: 1.5rem;
	}
	
	.zox-s2 .zox-widget-altimg-wrap .zox-art-text {
		text-align: center;
	}
	
	.zox-s2 .zox-widget-altimg-wrap h3.zox-s-cat {
		margin: 0;
		position: absolute;
			top: -14px;
			left: 0;
		text-align: center;
	}
	
	.zox-s2 .zox-widget-altimg-wrap span.zox-s-cat {
		padding: 10px 25px 1px;
	}
	
	.zox-widget-featl-sub .zox-art-text {
		padding: 0 20px 0 0;
	}
	
	.zox-fash2 .zox-widget-flex1-wrap.zox-div3 .zox-art-text h3.zox-s-cat {
		margin: 0 0 5px;
		position: relative;
			left: auto;
			top: auto;
	}
	
	.zox-feat-tech1-grid {
		grid-template-columns: 100%;
	}
	
	.zox-feat-tech1-main .zox-art-text p.zox-s-graph {
		font-size: 1rem;
	}
	
	.zox-feat-tech1-sub .zox-art-img {
		height: 360px;
	}
	
	.zox-feat-tech1-sub .zox-art-img img {
		min-width: 290px;
	}
	
	.zox-feat-tech2-main {
		grid-template-columns: 100%;
	}
	
	.zox-feat-tech2-main .zox-art-wrap:nth-child(2) .zox-art-img,
	.zox-feat-tech2-main .zox-art-wrap:nth-child(1) .zox-art-img {
		padding: 0;
	}
	
	.zox-feat-tech2-main .zox-art-wrap:nth-child(1) .zox-art-img img,
	.zox-feat-tech2-main .zox-art-wrap:nth-child(2) .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
		min-width: 0;
	}
	
	.zox-tech2.zox-s6 .zox-div4 .zox-art-text {
		padding: 15px 15px 20px;
	}
	
	.zox-feat-tech2-main.zox-div2 h2.zox-s-title2 {
		font-size: 1.75rem;
	}
	
	.zox-feat-tech2-sub {
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-feat-tech3-grid {
		grid-template-columns: 100%;
	}
	
	.zox-feat-tech3-main .zox-art-grid {
		max-height: 337px;
	}
	
	.zox-feat-tech3-main.zox-div2 h2.zox-s-title1-feat {
		font-size: 1.75rem;
	}
	
	.zox-o4.zox-div2 .zox-art-text,
	.zox-o4.zox-div4 .zox-art-text {
		padding: 40px 20px 20px;
	}
	
	.zox-feat-tech3-sub-left.zox-div4 .zox-art-img {
		padding-top: 115.6%;
	}
	
	.zox-s6 .zox-art-text {
		padding: 20px 20px 30px;
	}
	
	.zox-div3 h2.zox-s-title2,
	.zox-div4t h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-feat-tech3-sub-wrap .zox-div4 h2.zox-s-title2 {
		font-size: 1rem;
	}
	
	.zox-s6 .zox-widget-featl-sub .zox-art-text {
		padding: 0 20px 0 0;
	}
	
	.zox-tech3 .zox-divr h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	
	
	
	


	.zox-widget-flex1-col.zox-div3.zox-widget-flex1-ad {
		grid-template-columns: 100%;
	}
	
	.zox-div3.zox-widget-flex1-ad .zox-widget-flex1-cont {
		grid-template-columns: 100%;
	}

	.zox-widget-flex1-col.zox-div3 {
		padding: 0;
	}
	
	.zox-s4 .zox-div3 h3.zox-s-cat {
		margin: 0 0 8px;
		position: relative;
			top: auto;
			left: auto;
	}
	
	.zox-s4 .zox-div3 span.zox-s-cat {
		padding: 0;
	}
	
	.zox-s4 .zox-byline-wrap {
		margin: 8px 0 0;
	}
	
	.zox-s8 .zox-div1 .zox-art-grid {
		grid-template-areas:
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-s8 .zox-div1 .zox-art-text {
		padding: 0 20px;
	}
	
	.zox-s8 .zox-div1 h3.zox-s-cat {
		position: absolute;
			left: 0;
			top: 0;
	}
	
	.zox-s8 .zox-div1 span.zox-s-cat {
		background: #fff;
		padding: 3px 8px 3px 0;
	}
	
	.zox-s8 .zox-div1 .zox-art-title {
		-webkit-transform: translateY(-50px);
		   -moz-transform: translateY(-50px);
		    -ms-transform: translateY(-50px);
		     -o-transform: translateY(-50px);
			transform: translateY(-50px);
		width: 90%;
	}
	
	.zox-s8 .zox-div1 h2.zox-s-title2 {
		font-size: 1.875rem;
	}
	
	.zox-s8 .zox-div3 .zox-art-text,
	.zox-s8 .zox-div3 .zox-widget-flex1-cont .zox-art-text,
	.zox-s8 .zox-blog-grid.zox-divr .zox-art-text {
		align-content: center;
		padding: 0;
	}
	
	.zox-feat-ent3-sub-wrap {
		grid-gap: 30px;
		grid-template-columns: 100%;
	}
	
	.zox-s8 .zox-div3 .zox-art-grid,
	.zox-s8 .zox-div3 .zox-widget-flex1-cont .zox-art-grid {
		grid-template-areas: 'zox-text zox-img';
		grid-template-columns: 2fr 3fr;
	}
	
	.zox-s8 .zox-div3 h3.zox-s-cat {
		margin: 0 0 5px;
		position: relative;
			top: auto;
			left: auto;
	}
	
	.zox-s8 .zox-div3 span.zox-s-cat {
		background: none;
		padding: 0;
	}
	
	.zox-s8 .zox-div3 .zox-art-title {
		margin: 0;
		-webkit-transform: none;
		   -moz-transform: none;
		    -ms-transform: none;
		     -o-transform: none;
			transform: none;
		width: 140%;
	}
	
	.zox-s8 .zox-div3 h2.zox-s-title2,
	.zox-s8 .zox-divr h2.zox-s-title2,
	.zox-s8 #zox-home-widget-wrap .zox-div3 h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	.zox-s8 #zox-home-widget-wrap .zox-div4 h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid {
		grid-gap: 0;
	}
	
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-text {
		margin-bottom: -40px;
	}
	
	.zox-s8 .zox-widget-altimg-over .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-text-cont,
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-text-cont {
		margin: 0 auto;
		-webkit-transform: translateY(-60px);
		   -moz-transform: translateY(-60px);
		    -ms-transform: translateY(-60px);
		     -o-transform: translateY(-60px);
			transform: translateY(-60px);
		max-width: 670px;
	}
	
	.zox-s8 .zox-widget-altimg-over .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-title,
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-title {
		width: 90%;
	}
	
	.zox-s8 .zox-div1 h2.zox-s-title1,
	.zox-s8 .zox-div1 h2.zox-s-title2,
	.zox-s8 .zox-widget-altimg-wrap h2.zox-s-title2,
	.zox-div2 h2.zox-s-title1,
	.zox-div2 h2.zox-s-title2,
	.zox-div23 h2.zox-s-title1,
	.zox-div23 h2.zox-s-title2,
	.zox-s8 .zox-div23 h2.zox-s-title1-feat {
		font-size: 1.75rem;
	}
	
	.zox-o1.zox-div1 .zox-art-text {
		padding: 0 20px 20px;
	}
	
	.zox-o1.zox-div1 h3.zox-s-cat {
		position: relative;
			left: auto;
			top: auto;
	}
	
	.zox-o1.zox-div1 span.zox-s-cat {
		padding: 3px 10px;
	}
	
	.zox-o1.zox-div1 .zox-art-title {
		-webkit-transform: none;
		   -moz-transform: none;
		    -ms-transform: none;
		     -o-transform: none;
			transform: none;
		width: 90%;
	}
	
	.zox-o3 .zox-art-text {
		padding: 0 20px 20px;
	}
	
	
	
	
	
	
	
	.zox-net1 .zox-divr .zox-art-grid,
	.zox-net2 .zox-divr .zox-art-grid {
		grid-gap: 20px;
	}
	
	.zox-s4.zox-blog-grid.zox-divr .zox-art-wrap,
	.zox-s5.zox-blog-grid.zox-divr .zox-art-wrap {
		padding: 20px 0 0;
	}

	.zox-net1 .zox-divr h2.zox-s-title2,
	.zox-net2 .zox-divr h2.zox-s-title2,
	.zox-sport1 .zox-divr h2.zox-s-title2 {
		font-size: 1.375rem;
	}
	
	.zox-s3 span.zox-s-cat,
	.zox-o1 span.zox-s-cat {
		font-size: .75rem;
		padding: 6px 12px 5px
	}
	
	.zox-o4 span.zox-s-cat {
		padding: 0;
	}
	
	#zox-home-main-wrap,
	#zox-home-widget-wrap {
		grid-gap: 40px;
	}
	
	.zox-widget-main-head {
		margin: 0 0 15px;
	}
	
	.zox-widget-altimg-wrap .zox-widget-altimg-cont {
		padding: 0;
	}
	
	.zox-widget-altimg-wrap .zox-widget-altimg-grid {
		grid-gap: 20px;
	}
	
	.zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-grid,
	.zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-wrap:nth-child(even) .zox-art-grid {
		grid-template-areas:
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-widget-altimg-wrap .zox-art-img {
		padding-top: 0;
		height: auto;
		min-height: 0;
		max-height: 400px;
	}
	
	.zox-widget-altimg-wrap .zox-art-img img {
		position: relative;
			left: auto;
			right: auto;
			top: auto;
			bottom: auto;
		min-width: 0;
	}
	
	.zox-widget-altimg-wrap .zox-art-text-cont {
		max-width: none;
	}
	.zox-widget-feat-wrap .zox-art-text-cont {
		margin: 0 auto;
		max-width: 560px;
	}
	
	.zox-widget-altimg-wrap .zox-art-text {
		padding: 15px 30px 40px;
	}
		
	.zox-widget-altimg-wrap h2.zox-s-title2 {
		font-size: 2.125rem;
	}
	
	.zox-s3 .zox-widget-altimg-wrap .zox-widget-altimg-grid h3.zox-s-cat {
		margin: 0;
		position: absolute;
			left: 0;
			top: 0;
	}
	
	.zox-s4 .zox-widget-altimg-wrap .zox-art-text {
		padding: 15px 20px;
	}
	
	.zox-s4 .zox-widget-altimg-wrap .zox-art-text-cont {
		max-width: none;
	}
	
	.zox-s4 .zox-widget-altimg-wrap h3.zox-s-cat {
		margin: 0;
		position: absolute;
			left: 0;
			top: -29px;
	}
	
	.zox-s4 .zox-widget-altimg-wrap span.zox-s-cat {
		background: #fff;
		padding: 15px 20px 4px;
	}
	
	.zox-div3 .zox-widget-flex1-cont {
		grid-row-gap: 20px;
		grid-template-columns: 100%;
	}
	
	.zox-div3 .zox-widget-flex1-cont .zox-art-grid {
		grid-template-areas: 'zox-img zox-text';
	}
	
	.zox-div4 .zox-widget-flex1-cont,
	.zox-div3 .zox-widget-flex1-cont .zox-art-grid {
		grid-gap: 20px;
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-div3 .zox-widget-flex1-cont .zox-art-text {
		align-content: center;
		padding: 0 20px 0 0;
	}
	
	.zox-div2 h2.zox-s-title1-feat,
	.zox-div23 h2.zox-s-title1-feat,
	.zox-div1 h2.zox-s-title1,
	.zox-div1 h2.zox-s-title2,
	.zox-div1t h2.zox-s-title1,
	.zox-div1t h2.zox-s-title2 {
		font-size: 2.125rem;
	}
	
	.zox-o4.zox-div1 .zox-art-text {
		padding: 40px 20px 20px;
	}
	
	#zox-home-widget-wrap .zox-div4 .zox-art-img,
	#zox-blog-main-wrap  .zox-art-img {
		padding: 0;
	}
	
	#zox-home-widget-wrap .zox-div4 .zox-art-img img,
	#zox-blog-main-wrap  .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
			bottom: auto;
		min-width: 0;
	}
	
	#zox-home-widget-wrap .zox-div3 h2.zox-s-title2,
	#zox-blog-main-wrap .zox-div3 h2.zox-s-title2,
	#zox-home-widget-wrap .zox-div4 h2.zox-s-title2,
	#zox-blog-main-wrap .zox-div4 h2.zox-s-title2 {
		font-size: 1.375rem;
	}
	
	.zox-widget-featl-grid {
		grid-template-columns: 100%;
	}
	
	.zox-widget-featl-main .zox-art-img {
		padding: 0;
		height: auto;
	}
	
	.zox-widget-featl-main .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
			bottom: auto;
		min-width: 0;
	}
	
	.zox-widget-featl-sub {
		margin: 15px 0 0;
	}
	
	.zox-widget-featl-sub h2.zox-s-title3 {
		font-size: 1.25rem;
	}
	
	.zox-widget-bgw .zox-widget-home,
	.zox-widget-bgg .zox-widget-home,
	.zox-widget-bgb .zox-widget-home,
	.zox-widget-bgp .zox-widget-home,
	.zox-widget-bgs .zox-widget-home {
		padding: 20px 0;
	}
	
	.zox-div2 h2.zox-s-title1-feat,
	.zox-div23 h2.zox-s-title1-feat,
	.zox-div1 h2.zox-s-title1,
	.zox-div1 h2.zox-s-title2,
	.zox-div1t h2.zox-s-title1,
	.zox-div1t h2.zox-s-title2 {
		font-size: 2.125rem;
	}
	
	.zox-blog-grid {
		grid-gap: 20px;
	}
	
	.zox-divr .zox-art-grid {
		grid-template-columns: 1fr 2fr;
	}
	
	.zox-divr h3.zox-s-cat {
		margin: 0 0 5px;
	}
	
	.zox-s1 .zox-divr .zox-art-text {
		align-content: center;
		padding: 0 20px 0 0;
	}
	
	.zox-divr h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-divr .zox-byline-wrap {
		margin: 5px 0 0;
	}
	
	.zox-post-soc-scroll {
		margin: 0;
		top: auto;
		bottom: 0;
		width: auto;
		height: 50px;
	}
	
	ul.zox-post-soc-list li {
		border-left: 1px solid rgba(255,255,255,.15);
		border-top: none;
	}
	
	ul.zox-post-soc-list a:first-child li {
		border-left: none;
	}
	
	.zox-post-ad {
		background-position: center center !important;
	}
	
	h1.zox-post-title {
		font-size: 6vw;
	}
	
	.zox-search-but-wrap {
		top: 20px;
		right: 20px;
	}
	
	.zox-search-cont {
		margin: -12vh 0 0 -35%;
		width: 70%;
	}
	
	p.zox-search-p {
		font-size: 4vw;
	}
	
	.zox-search-box {
		height: 50px;
	}
	
	#zox-search-input {
		font-size: 30px;
		padding: 10px;
	}
	
	#zox-foot-wrap {
		padding: 30px 20px;
	}
	
	.zox-foot-grid {
		grid-gap: 20px;
		grid-template-columns: 100%;
		grid-template-areas:
			'foot-right'
			'foot-left';
		justify-content: center;
	}
	
	.zox-foot-left-wrap {
		display: grid;
		grid-area: foot-left;
		justify-content: center;
	}
	
	.zox-foot-right-wrap {
		display: grid;
		grid-area: foot-right;
		justify-content: center;
	}
	
	.zox-vid-fixed {
		-webkit-box-shadow: none;
		   -moz-box-shadow: none;
		    -ms-box-shadow: none;
		     -o-box-shadow: none;
			box-shadow: none;
		margin-top: 0;
		position: relative !important;
			right: auto;
			bottom: auto;
		width: 100% !important;
		height: auto !important;
		z-index: auto;
	}
	
	.zox-post-video1-wrap {
		margin: -20px 0 0;
		padding: 20px 0;
	}
	
	.zox-post-video1-grid {
		grid-template-areas:
			'zox-title'
			'zox-video';
		grid-template-columns: 100%;
	}
	
	.zox-post-video1-left {
		display: grid;
		grid-area: zox-video;
	}

	.zox-post-video1-right {
		display: grid;
		grid-area: zox-title;
		margin: 0 auto;
		max-width: 600px;
		text-align: center;
	}
	
	.zox-post-video1-right .zox-post-info-wrap {
		grid-template-columns: auto auto;
	}
	
	.zox-post-video1-right .zox-post-byline-wrap {
		justify-content: start;
	}
	
	.zox-post-video1-right ul.zox-post-soc-stat-list {
		justify-content: end;
	}
	
	.zox-post-more-grid {
		grid-gap: 20px;
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-post-more-grid.zox-div4 .zox-art-img {
		padding-top: 56.25%;
	}
	
	span.zox-widget-main-title {
		font-size: 1.875rem;
	}
	
	.zox-widget-altimg-wrap .zox-art-text {
		max-width: none;
	}
	
	.zox-auto-post-grid {
		grid-template-columns: 100%;
	}
	
	.zox-alp-side {
		display: none;
	}
	
	.zox-auto-post-main .zox-post-more .zox-div4 .zox-art-img img {
		position: absolute;
			top: 0;
	}
	
	.zox-authors-cont {
		grid-gap: 30px;
		grid-template-columns: 100%;
		justify-content: center;
		text-align: center;
	}
	
	.zox-authors-left {
		justify-content: center;
		width: 100%;
	}
	
	.zox-s6 .zox-widget-tab-wrap .zox-art-text {
		padding: 0;
	}
	
	.zox-alp-width {
		padding: 0;
	}
	
	#zox-lead-bot {
		padding: 15px 0 0;
	}
	
	.zox-post-title-wrap {
		padding: 0 20px;
	}
	
	#zox-feat-ent2-wrap {
		margin: 0;
	}
	
	#zox-author-page-top {
		padding: 30px;
	}
	
	.zox-author-top {
		grid-gap: 20px;
		grid-template-columns: 100%
	}
	
	#zox-author-top-left,
	#zox-author-top-right {
		justify-content: center;
		text-align: center;
		width: 100%;
	}
	
	#zox-author-top-left img {
		border: 5px solid #ddd;
		width: 150px;
	}
	
	h1.zox-author-top-head {
		font-size: 2.5rem;
	}
	
	span.zox-author-page-desc {
		font-size: 1rem;
	}
	
	ul.zox-author-page-list li {
		margin: 0 0 0 3px;
	}
	
	.zox-divr .zox-art-grid {
		grid-gap: 20px;
	}
	
	.zox-blog-grid.zox-div4,
	.home .zox-blog-grid.zox-div4 {
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-blog-grid.zox-div4 .zox-art-img {
		padding-top: 56.25%;
	}
	
	.zox-blog-grid.zox-div3 .zox-art-grid,
	.zox-s6 .zox-blog-grid.zox-div3 .zox-art-grid {
		grid-gap: 0;
		grid-template-areas:
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-blog-grid.zox-div3 .zox-art-text,
	.zox-s6 .zox-blog-grid.zox-div3 .zox-art-text {
		padding: 20px;
	}
	
	.wp-block-embed-youtube {
		margin: 0 0 20px -20px;
		width: calc(100% + 40px);
	}

	.zox-woo-wrap {
		padding: 0;
	}

	.zox-woo-grid {
		grid-gap: 0;
		grid-template-columns: 100%;
	}

	#zox-woo-side-wrap {
		display: none;
	}

	.zox-widget-flex1-wrap.zox-widget-flex1-ad {
		grid-template-columns: 100%;
	}

	.zox-widget-flex1-wrap.zox-divr .zox-art-grid {
		grid-template-columns: 1fr 1fr;
	}

	.zox-soc-more-open.zox-soc-more-scroll {
		bottom: 70px;
	}

	.zox-soc-more-scroll {
		left: auto;
		right: 20px;
	}

	.zox-soc-more-scroll:before {
		border-top: 10px solid #000;
		border-left: 10px solid transparent;
		border-right: none;
		bottom: -10px;
		left: auto;
		right: 0;
	}

	.zox-whats-mob {
		display: block;
	}

	.zox-whats-main {
		display: none;
	}
	
	.zox-post-type,
	.zox-feat-left-wrap .zox-art-main .zox-post-type {
		margin: 0;
		left: 20px;
		top: 20px;
	}
	
	.zox-feat-left-wrap .zox-art-small .zox-post-type {
		font-size: 10px;
		margin: -15px 0 0 -15px;
		width: 30px;
		height: 30px;
	}
	
	.zox-ent3 .zox-post-type {
		margin: -25px 0 0 -25px;
	}
	
	.zox-ent3 #zox-main-blog-wrap .zox-post-type {
		font-size: 16px;
		width: 50px;
		height: 50px;
	}

}

@media screen and (max-width: 659px) and (min-width: 600px) {

	.zox-widget-flex1-wrap.zox-divr .zox-art-text p.zox-s-graph,
	.zox-bot-head-menu,
	#zox-top-head-wrap,
	.zox-widget-altimg-wrap p.zox-s-graph,
	#zox-home-widget-wrap p.zox-s-graph,
	.zox-net3 .zox-div4 p.zox-s-graph,
	.zox-net3 .zox-divr p.zox-s-graph,
	.zox-sport3 .zox-divr p.zox-s-graph {
		display: none;
	}
	
	#zox-bot-head {
		grid-template-columns: 60px auto 60px;
	}
	
	.zox-bot-head-logo {
		opacity: 1;
		top: auto;
		width: 100%;
	}
	
	.zox-head-width,
	.zox-post-width,
	.zox-body-width {
		padding: 0 20px;
	}
	
	#zox-main-body-wrap {
		padding: 20px 0 40px;
	}
	
	.zox-feat-ent1-cont-wrap {
		grid-template-columns: 180px;
	}
	
	#zox-bot-head-mid,
	.zox-feat-ent1-grid,
	.zox-feat-net1-grid,
	.zox-post-main-wrap,
	#zox-home-body-wrap {
		grid-template-columns: 100%;
	}
	
	.zox-feat-ent1-grid {
		grid-template-areas:
			'feat-contw'
			'feat-right';
	}
	
	.zox-feat-left-wrap,
	.zox-feat-right-wrap,
	.zox-ent1 .zox-feat-right-wrap {
		margin: 0 auto;
		width: 100%;
		max-width: 600px;
	}
	
	.zox-widget-side-trend-wrap h2.zox-s-title3 {
		font-size: 1.25rem;
	}
	
	.zox-feat-ent1-cont-wrap {
		grid-template-areas:
			'feat-cont'
			'feat-left';
		grid-template-columns: 100%;
	}
	
	.zox-feat-ent1-left .zox-art-small .zox-art-img {
		display: block;
	}
	
	.zox-feat-ent1-left .zox-art-text {
		align-content: center;
	}
	
	.zox-feat-ent1-left .zox-art-main .zox-art-text-cont {
		margin: 0 auto;
		max-width: 480px;
	}
	
	.zox-feat-ent1-left .zox-art-main .zox-art-text {
		text-align: center;
	}
	
	.zox-feat-ent1-left .zox-art-main h2.zox-s-title2 {
		font-size: 1.875rem;
	}
	
	.zox-feat-ent1-left .zox-art-small .zox-art-grid {
		display: grid;
		align-content: center;
		grid-gap: 15px;
		grid-template-areas: 'zox-img zox-text';
		grid-template-columns: 100px auto;
	}
	
	.zox-feat-ent2-main-grid {
		grid-template-columns: 100%;
	}
	
	.zox-feat-ent2-main-grid,
	.zox-feat-ent2-sub2,
	.zox-feat-ent2-sub-wrap,
	.zox-feat-ent2-grid {
		grid-gap: 20px;
	}
	
	.zox-feat-ent2-bot {
		grid-template-areas:
			'feat-sub'
			'feat-right';
		grid-template-columns: 100%;
	}
	
	.zox-feat-net1-grid {
		grid-gap: 60px;
		grid-template-areas:
			'feat-cont'
			'feat-right';
	}
	
	.zox-feat-net1-cont {
		grid-gap: 30px;
		grid-template-areas:
			'feat-main'
			'feat-left';
		grid-template-columns: 100%;
	}
	
	.zox-feat-net1-sub {
		grid-gap: 20px;
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-feat-net2-grid {
		grid-row-gap: 40px;
		grid-template-areas:
			'feat-main'
			'feat-sub';
		grid-template-columns: 100%;
	}
	
	.zox-feat-net2-main-wrap.zox-div2 h2.zox-s-title2 {
		font-size: 1.75rem;
	}

	.zox-feat-net2-sub-wrap.zox-div4 .zox-art-img {
		padding-top: 0;
	}
	
	.zox-feat-net2-sub-wrap.zox-div4 .zox-art-img img {
		position: relative;
			top: auto;
			bottom: auto;
			left: auto;
			right: auto;
		min-width: 0;
	}
	
	.zox-feat-net2-sub-wrap.zox-div4 h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	.zox-feat-net3-grid {
		grid-gap: 0;
	}
	
	.zox-s5.zox-div1 .zox-art-wrap {
		grid-gap: 0;
		grid-template-areas: 
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-s5.zox-div1 .zox-art-text {
		padding: 15px 20px 20px;
	}
	
	.zox-div1 h2.zox-s-title1-feat,
	.zox-div1t h2.zox-s-title1-feat {
		font-size: 2rem;
	}
	
	.zox-s5.zox-div1 p.zox-s-graph {
		font-size: 1rem;
	}
	
	.zox-feat-net3-sub-wrap {
		grid-gap: 20px;
		grid-template-columns: 100%;
		padding: 20px 0 0;
	}
	
	.zox-feat-net3-sub-wrap .zox-art-wrap {
		border: none;
		padding: 0;
	}
	
	.zox-feat-net3-sub-wrap .zox-art-grid {
		grid-gap: 30px;
		grid-template-areas: 'zox-text zox-img';
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-feat-net3-sub-wrap .zox-art-text {
		align-content: center;
		padding: 0;
	}
	
	.zox-feat-net3-sub-wrap p.zox-s-graph {
		display: none;
	}
	
	.zox-s5 .zox-byline-wrap {
		margin: 10px 0 0;
	}
	
	.zox-net3 .zox-divr .zox-art-grid {
		grid-gap: 15px;
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-net3 .zox-blog-grid.zox-divr .zox-art-text {
		text-align: center;
	}
	
	.zox-feat-sport1-grid {
		grid-gap: 20px;
		grid-template-areas:
			'feat-main'
			'feat-sub'
			'feat-right';
		grid-template-columns: 100%;
	}
	
	.zox-s6 .zox-feat-sport1-main-wrap .zox-art-text {
		padding: 20px 30px 40px;
	}
	
	.zox-s6 .zox-feat-sport1-main-wrap p.zox-s-graph {
		font-size: 1rem;
	}
	
	.zox-feat-sport1-sub-wrap {
		grid-gap: 20px;
		grid-template-columns: 100%;
	}
	
	.zox-s6 .zox-div3  .zox-art-grid {
		grid-gap: 20px;
		grid-template-areas: 'zox-img zox-text';
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-s6 .zox-div3 .zox-art-text {
		align-content: center;
		padding: 0 20px 0 0;
	}
	
	.zox-s6 .zox-byline-wrap {
		margin: 5px 0 0;
	}
	
	.zox-sport1 .zox-divr .zox-art-grid,
	.zox-sport3 .zox-divr .zox-art-grid {
		grid-gap: 20px;
	}
	
	.zox-sport1 .zox-divr .zox-art-grid,
	.zox-sport3 .zox-divr .zox-art-grid {
		grid-gap: 20px;
		grid-template-columns: 1fr 1fr;
	}
	
	#zox-feat-sport2-wrap .zox-body-width {
		margin: -30px 0;
		padding: 0;
		max-width: none;
	}
	
	.zox-o3.zox-feat-sport2-main-wrap .zox-art-text,
	.zox-o3.zox-widget-feat-main .zox-art-text,
	.zox-o3.zox-widget-featl-main .zox-art-text {
		position: relative;
			left: auto;
			bottom: auto;
		width: 100%;
	}
	
	.zox-widget-feat-wrap .zox-o3 .zox-art-text-cont,
	.zox-widget-featl-wrap .zox-o3 .zox-art-text-cont {
		max-width: none;
	}
	
	.zox-o3.zox-div1 h2.zox-s-title1,
	.zox-o3.zox-div23 h2.zox-s-title1-feat {
		font-size: 1.75rem;
	}
	
	.zox-divr .zox-art-grid {
		grid-gap: 20px;
	}
	
	.zox-sport2 .zox-divr h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	#zox-feat-fash1-wrap {
		margin: -20px 0 0;
	}
	
	#zox-feat-fash1-wrap .zox-body-width {
		padding: 0;
	}
	
	.zox-feat-fash1-grid {
		grid-gap: 20px;
		grid-template-columns: 100%;
	}
	
	.zox-feat-fash1-main .zox-art-img {
		padding: 0;
	}
	
	.zox-feat-fash1-main .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
		min-width: 0;
	}
	
	.zox-o5 .zox-byline-wrap {
		margin: 15px 0 0;
		padding: 15px 0 0;
	}
	
	.zox-o5 .zox-byline-wrap:before {
		margin: 0 0 0 -25px;
		width: 50px;
		height: 4px;
	}
	
	.zox-feat-fash1-sub-wrap {
		padding: 0 20px;
		max-height: 1600px;
	}
	
	.zox-feat-fash1-sub-wrap .zox-art-wrap {
		width: calc(50% - 10px)
	}
	
	.zox-feat-fash1-sub-wrap .zox-art-wrap:nth-child(odd) {
		margin: 0 20px 0 0;
	}
	
	.zox-s7 .zox-widget-altimg-wrap .zox-art-text {
		background: #fff;
		padding: 20px 20px 0;
		top: -40px;
		left: 20px;
		width: calc(100% - 20px);
	}
	
	.zox-s7 .zox-widget-altimg-wrap .zox-art-text-cont {
		margin: 0;
		max-width: none;
	}
	
	.zox-s7 .zox-div3.zox-widget-flex1-wrap .zox-art-text {
		background: none;
		top: auto;
		left: auto;
		padding: 0 20px 0 0;
		width: 100%;
	}
	
	#zox-feat-fash2-wrap .zox-body-width {
		padding: 0;
		max-width: none;
	}
	
	.zox-feat-fash2-grid {
		grid-template-columns: 100%;
	}
	
	.zox-feat-fash2-grid.zox-div4 .zox-art-img {
		padding: 0;
		max-height: 337px;
	}
	
	.zox-feat-fash2-grid.zox-div4 .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
		min-width: 0;
	}
	
	.zox-fash2 .zox-div3 h2.zox-s-title2,
	.zox-fash2 .zox-div4 h2.zox-s-title2 {
		font-size: 1.5rem;
	}
	
	.zox-s2 .zox-widget-altimg-wrap .zox-art-text {
		text-align: center;
	}
	
	.zox-s2 .zox-widget-altimg-wrap h3.zox-s-cat {
		margin: 0;
		position: absolute;
			top: -14px;
			left: 0;
		text-align: center;
	}
	
	.zox-s2 .zox-widget-altimg-wrap span.zox-s-cat {
		padding: 10px 25px 1px;
	}
	
	.zox-widget-featl-sub .zox-art-text {
		padding: 0 20px 0 0;
	}
	
	.zox-fash2 .zox-widget-flex1-wrap.zox-div3 .zox-art-text h3.zox-s-cat {
		margin: 0 0 5px;
		position: relative;
			left: auto;
			top: auto;
		text-align: left;
	}
	
	.zox-fash2 .zox-widget-flex1-wrap.zox-div3 span.zox-s-cat {
		background: none;
		padding: 0;
	}
	
	.zox-feat-tech1-grid {
		grid-template-columns: 100%;
	}
	
	.zox-feat-tech1-main .zox-art-text p.zox-s-graph {
		font-size: 1rem;
	}
	
	.zox-feat-tech1-sub .zox-art-img {
		height: 360px;
	}
	
	.zox-feat-tech1-sub .zox-art-img img {
		min-width: 290px;
	}
	
	.zox-feat-tech2-main {
		grid-template-columns: 100%;
	}
	
	.zox-feat-tech2-main .zox-art-wrap:nth-child(2) .zox-art-img,
	.zox-feat-tech2-main .zox-art-wrap:nth-child(1) .zox-art-img {
		padding: 0;
	}
	
	.zox-feat-tech2-main .zox-art-wrap:nth-child(1) .zox-art-img img,
	.zox-feat-tech2-main .zox-art-wrap:nth-child(2) .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
		min-width: 0;
	}
	
	.zox-tech2.zox-s6 .zox-div4 .zox-art-text {
		padding: 15px 15px 20px;
	}
	
	.zox-feat-tech2-main.zox-div2 h2.zox-s-title2 {
		font-size: 1.5rem;
	}
	
	.zox-feat-tech2-sub {
		grid-template-columns: 1fr 1fr;
	}
	
	#zox-feat-tech3-wrap {
		margin: -12px 0 0;
	}
	
	.zox-feat-tech3-grid {
		grid-template-columns: 100%;
	}
	
	.zox-feat-tech3-main .zox-art-grid {
		max-height: 337px;
	}
	
	.zox-feat-tech3-main.zox-div2 h2.zox-s-title1-feat {
		font-size: 1.5rem;
	}
	
	.zox-o4.zox-div2 .zox-art-text,
	.zox-o4.zox-div4 .zox-art-text {
		padding: 40px 20px 20px;
	}
	
	.zox-feat-tech3-sub-left.zox-div4 .zox-art-img {
		padding-top: 115.6%;
	}
	
	.zox-s6 .zox-art-text {
		padding: 20px 20px 30px;
	}
	
	.zox-div3 h2.zox-s-title2,
	.zox-div4t h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-feat-tech3-sub-wrap .zox-div4 h2.zox-s-title2 {
		font-size: .875rem;
	}
	
	.zox-s6 .zox-widget-featl-sub .zox-art-text {
		padding: 0 20px 0 0;
	}
	
	.zox-tech3 .zox-divr .zox-art-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-tech3 .zox-divr h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	
	
	
	


	.zox-widget-flex1-col.zox-div3.zox-widget-flex1-ad {
		grid-template-columns: 100%;
	}
	
	.zox-div3.zox-widget-flex1-ad .zox-widget-flex1-cont {
		grid-template-columns: 100%;
	}
	
	.zox-div2 h2.zox-s-title1,
	.zox-div2 h2.zox-s-title2,
	.zox-div23 h2.zox-s-title1,
	.zox-div23 h2.zox-s-title2 {
		font-size: 2rem;
	}
	
	.zox-div3 h2.zox-s-title2,
	.zox-div4t h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	.zox-feat-right-wrap,
	.zox-home-right-wrap {
		margin: 0 auto;
		width: 100%;
		max-width: none;
	}
	
	.zox-widget-side-trend-wrap h2.zox-s-title3 {
		font-size: 1.25rem;
	}
	
	.zox-ent3 #zox-home-widget-wrap {
		grid-gap: 40px;
	}
	
	.zox-feat-ent3-grid {
		grid-gap: 0;
	}
	
	.zox-net3 #zox-home-main-wrap,
	.zox-net3 #zox-home-widget-wrap,
	.zox-sport2 #zox-home-main-wrap,
	.zox-sport2 #zox-home-widget-wrap,
	.zox-fash1 #zox-home-main-wrap,
	.zox-fash1 #zox-home-widget-wrap {
		grid-row-gap: 40px;
	}
	
	.zox-sport3 .zox-body-width {
		padding: 0;
	}
	
	.zox-sport3 #zox-home-cont-wrap {
		grid-gap: 15px;
	}
	
	.zox-feat-sports3-sub {
		grid-template-columns: 100%;
	}
	
	.zox-feat-sports3-sub .zox-art-grid {
		grid-gap: 15px;
		grid-template-areas: 'zox-img zox-text';
		grid-template-columns: 150px auto;
	}
	
	.zox-sport3 .zox-feat-sports3-sub.zox-div4 .zox-art-text {
		align-content: center;
		padding: 0 20px 0 0;
	}
	
	.zox-sport3 .zox-div3 .zox-art-text,
	.zox-sport3 .zox-div4 .zox-art-text {
		padding: 10px 20px 20px;
	}
	
	.zox-sport3 .zox-o4.zox-div1 .zox-art-text {
		padding: 40px 20px 20px;
	}
	
	.zox-sport3 .zox-widget-feat-wrap .zox-art-text-cont,
	.zox-sport3 .zox-widget-featl-main .zox-art-text-cont {
		max-width: none;
	}
	
	.zox-sport3 .zox-widget-featl-sub {
		margin: 0;
		padding: 20px;
	}
	
	.zox-sport3 #zox-home-widget-wrap .zox-div4 h2.zox-s-title2,
	.zox-sport3 #zox-blog-main-wrap .zox-div4 h2.zox-s-title2,
	.zox-sport3 #zox-home-widget-wrap .zox-div3 h2.zox-s-title2,
	.zox-sport3 #zox-blog-main-wrap .zox-div3 h2.zox-s-title2 {
		font-size: 1rem;
	}
	
	.zox-sport1 .zox-divr .zox-art-grid,
	.zox-sport3 .zox-divr .zox-art-grid,
	.zox-sport3 .zox-div3 .zox-widget-flex1-cont .zox-art-grid {
		grid-gap: 15px;
		grid-template-columns: 150px auto;
	}
	
	.zox-sport3 .zox-div3 .zox-widget-flex1-cont .zox-art-text {
		padding: 0 20px 0 0;
	}
	
	.zox-sport3 .zox-div4 .zox-widget-flex1-cont {
		grid-template-columns: 1fr 1fr;
	}

	.zox-s7 .zox-widget-altimg-wrap h2.zox-s-title2 {
		font-size: 1.875rem;
	}
	




	.zox-s4 .zox-div3 h3.zox-s-cat {
		margin: 0 0 8px;
		position: relative;
			top: auto;
			left: auto;
	}
	
	.zox-s4 .zox-div3 span.zox-s-cat {
		padding: 0;
	}
	
	.zox-s4 .zox-byline-wrap {
		margin: 8px 0 0;
	}
	
	.zox-s8 .zox-div1 .zox-art-grid {
		grid-template-areas:
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-s8 .zox-div1 .zox-art-text {
		padding: 0 20px;
	}
	
	.zox-s8 .zox-div1 h3.zox-s-cat {
		position: absolute;
			left: 0;
			top: 0;
	}
	
	.zox-s8 .zox-div1 span.zox-s-cat {
		background: #fff;
		padding: 3px 8px 3px 0;
	}
	
	.zox-s8 .zox-div1 .zox-art-title {
		-webkit-transform: translateY(-50px);
		   -moz-transform: translateY(-50px);
		    -ms-transform: translateY(-50px);
		     -o-transform: translateY(-50px);
			transform: translateY(-50px);
		width: 90%;
	}
	
	.zox-s8 .zox-div3 .zox-art-text,
	.zox-s8 .zox-div3 .zox-widget-flex1-cont .zox-art-text,
	.zox-s8 .zox-blog-grid.zox-divr .zox-art-text {
		align-content: center;
		padding: 0;
	}
	
	.zox-feat-ent3-sub-wrap {
		grid-gap: 30px;
		grid-template-columns: 100%;
	}
	
	.zox-s8 .zox-div3 .zox-art-grid,
	.zox-s8 .zox-div3 .zox-widget-flex1-cont .zox-art-grid {
		grid-template-areas: 'zox-text zox-img';
		grid-template-columns: 2fr 3fr;
	}
	
	.zox-s8 .zox-div3 h3.zox-s-cat {
		margin: 0 0 5px;
		position: relative;
			top: auto;
			left: auto;
	}
	
	.zox-s8 .zox-div3 span.zox-s-cat {
		background: none;
		padding: 0;
	}
	
	.zox-s8 .zox-div3 .zox-art-title {
		margin: 0;
		-webkit-transform: none;
		   -moz-transform: none;
		    -ms-transform: none;
		     -o-transform: none;
			transform: none;
		width: 140%;
	}
	
	.zox-s8 .zox-div3 h2.zox-s-title2,
	.zox-s8 #zox-home-widget-wrap .zox-div3 h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-s8 #zox-home-widget-wrap .zox-div4 h2.zox-s-title2 {
		font-size: 1rem;
	}
	
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid {
		grid-gap: 0;
	}
	
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-text {
		margin-bottom: -40px;
	}
	
	.zox-s8 .zox-widget-altimg-over .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-text-cont,
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-text-cont {
		margin: 0 auto;
		-webkit-transform: translateY(-60px);
		   -moz-transform: translateY(-60px);
		    -ms-transform: translateY(-60px);
		     -o-transform: translateY(-60px);
			transform: translateY(-60px);
		max-width: 670px;
	}
	
	.zox-s8 .zox-widget-altimg-over .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-title,
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-title {
		width: 90%;
	}
	
	.zox-s8 .zox-div1 h2.zox-s-title1,
	.zox-s8 .zox-div1 h2.zox-s-title2,
	.zox-s8 .zox-widget-altimg-wrap h2.zox-s-title2,
	.zox-div2 h2.zox-s-title1,
	.zox-div2 h2.zox-s-title2,
	.zox-div23 h2.zox-s-title1,
	.zox-div23 h2.zox-s-title2,
	.zox-s8 .zox-div23 h2.zox-s-title1-feat {
		font-size: 1.675rem;
	}
	
	.zox-o1.zox-div1 .zox-art-text {
		padding: 0 20px 20px;
	}
	
	.zox-o1.zox-div1 h3.zox-s-cat {
		position: relative;
			left: auto;
			top: auto;
	}
	
	.zox-o1.zox-div1 span.zox-s-cat {
		padding: 3px 10px;
	}
	
	.zox-o1.zox-div1 .zox-art-title {
		-webkit-transform: none;
		   -moz-transform: none;
		    -ms-transform: none;
		     -o-transform: none;
			transform: none;
		width: 90%;
	}
	
	.zox-o3 .zox-art-text {
		padding: 0 20px 20px;
	}
	
	
	
	
	
	.zox-net1 .zox-divr .zox-art-grid,
	.zox-net2 .zox-divr .zox-art-grid {
		grid-gap: 20px;
	}
	
	.zox-s4.zox-blog-grid.zox-divr .zox-art-wrap,
	.zox-s5.zox-blog-grid.zox-divr .zox-art-wrap {
		padding: 20px 0 0;
	}

	.zox-net1 .zox-divr h2.zox-s-title2,
	.zox-net2 .zox-divr h2.zox-s-title2,
	.zox-sport1 .zox-divr h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	.zox-s1 .zox-art-text,
	.zox-s2.zox-div1 .zox-art-text,
	.zox-s2.zox-div2 .zox-art-text {
		padding: 15px 20px 20px;
	}
	
	.zox-widget-altimg-wrap .zox-s1 .zox-art-text,
	.zox-widget-altimg-wrap .zox-s2.zox-div1 .zox-art-text,
	.zox-widget-altimg-wrap .zox-s2.zox-div2 .zox-art-text {
		padding: 0 20px;
	}
	
	.zox-s1 .zox-art-small .zox-art-text {
		padding: 0 15px 0 0;
	}
	
	.zox-s1 .zox-widget-side-trend-wrap .zox-art-text {
		padding: 0 0 0 41px;
	}
	
	.zox-div2 h2.zox-s-title2,
	.zox-div2 h2.zox-s-title1-feat,
	.zox-div23 h2.zox-s-title1-feat {
		font-size: 1.875rem;
	}
	
	.zox-div1 h2.zox-s-title1,
	.zox-div1 h2.zox-s-title2,
	.zox-div1t h2.zox-s-title1,
	.zox-div1t h2.zox-s-title2 {
		font-size: 1.75rem;
	}
	
	.zox-o1 .zox-art-text {
		padding: 0 20px 20px;
	}
	
	.zox-o4.zox-div1 .zox-art-text {
		padding: 40px 20px 20px;
	}
	
	.zox-s3 .zox-divr h3.zox-s-cat {
		margin: 0 0 4px;
		position: relative;
			top: auto;
			left: auto;
	}
	
	.zox-s3 .zox-divr  span.zox-s-cat {
		background: none;
		color: #000;
		font-size: .75rem;
		padding: 0;
	}

	.zox-o1 span.zox-s-cat {
		font-size: .75rem;
		padding: 6px 12px 5px
	}
	
	.zox-o4 span.zox-s-cat {
		padding: 0;
	}
	
	
	
	
	

	
	#zox-home-main-wrap,
	#zox-home-widget-wrap {
		grid-gap: 40px;
	}
	
	.zox-widget-main-head {
		margin: 0 0 15px;
	}
	
	.zox-widget-altimg-wrap .zox-widget-altimg-cont {
		padding: 0;
	}
	
	.zox-widget-altimg-wrap .zox-widget-altimg-grid {
		grid-gap: 20px;
	}
	
	.zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-grid,
	.zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-wrap:nth-child(even) .zox-art-grid {
		grid-template-areas:
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-widget-altimg-wrap .zox-art-img {
		padding-top: 0;
		height: auto;
		min-height: 0;
		max-height: 400px;
	}
	
	.zox-widget-altimg-wrap .zox-art-img img {
		position: relative;
			left: auto;
			right: auto;
			top: auto;
			bottom: auto;
		min-width: 0;
	}
	
	.zox-widget-altimg-wrap .zox-art-text-cont {
		max-width: none;
	}
	.zox-widget-feat-wrap .zox-art-text-cont {
		margin: 0 auto;
		max-width: 560px;
	}
	
	.zox-widget-altimg-wrap .zox-art-text {
		padding: 15px 20px 20px;
	}
		
	.zox-widget-altimg-wrap h2.zox-s-title2 {
		font-size: 1.875rem;
	}
	
	.zox-s3 .zox-widget-altimg-wrap .zox-widget-altimg-grid h3.zox-s-cat {
		margin: 0;
		position: absolute;
			left: 0;
			top: 0;
	}
	
	.zox-s4 .zox-widget-altimg-wrap .zox-art-text {
		padding: 15px 20px;
	}
	
	.zox-s4 .zox-widget-altimg-wrap .zox-art-text-cont {
		max-width: none;
	}
	
	.zox-s4 .zox-widget-altimg-wrap h3.zox-s-cat {
		margin: 0;
		position: absolute;
			left: 0;
			top: -29px;
	}
	
	.zox-s4 .zox-widget-altimg-wrap span.zox-s-cat {
		background: #fff;
		padding: 15px 20px 4px;
	}
	
	.zox-div3 .zox-widget-flex1-cont {
		grid-row-gap: 20px;
		grid-template-columns: 100%;
	}
	
	.zox-div3 .zox-widget-flex1-cont .zox-art-grid {
		grid-template-areas: 'zox-img zox-text';
	}
	
	.zox-div4 .zox-widget-flex1-cont,
	.zox-div3 .zox-widget-flex1-cont .zox-art-grid {
		grid-gap: 20px;
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-div3 .zox-widget-flex1-cont .zox-art-text {
		align-content: center;
		padding: 0 20px 0 0;
		text-align: left
	}
	
	#zox-home-widget-wrap .zox-div4 .zox-art-img,
	#zox-blog-main-wrap  .zox-art-img {
		padding: 0;
	}
	
	#zox-home-widget-wrap .zox-div4 .zox-art-img img,
	#zox-blog-main-wrap  .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
			bottom: auto;
		min-width: 0;
	}
	
	#zox-home-widget-wrap .zox-div3 h2.zox-s-title2,
	#zox-blog-main-wrap .zox-div3 h2.zox-s-title2,
	#zox-home-widget-wrap .zox-div4 h2.zox-s-title2,
	#zox-blog-main-wrap .zox-div4 h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	.zox-widget-featl-grid {
		grid-template-columns: 100%;
	}
	
	.zox-widget-featl-main .zox-art-img {
		padding: 0;
		height: auto;
	}
	
	.zox-widget-featl-main .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
			bottom: auto;
		min-width: 0;
	}
	
	.zox-widget-featl-sub {
		margin: 15px 0 0;
	}
	
	.zox-widget-featl-sub h2.zox-s-title3 {
		font-size: 1.25rem;
	}
	
	.zox-widget-bgw .zox-widget-home,
	.zox-widget-bgg .zox-widget-home,
	.zox-widget-bgb .zox-widget-home,
	.zox-widget-bgp .zox-widget-home,
	.zox-widget-bgs .zox-widget-home {
		padding: 20px 0;
	}
	
	.zox-blog-grid {
		grid-gap: 20px;
	}
	
	.zox-divr .zox-art-grid {
		grid-template-columns: 1fr 2fr;
	}
	
	.zox-divr h3.zox-s-cat {
		margin: 0 0 5px;
	}
	
	.zox-s1 .zox-divr .zox-art-text {
		align-content: center;
		padding: 0 20px 0 0;
	}
	
	.zox-divr h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	.zox-divr .zox-byline-wrap {
		margin: 5px 0 0;
	}
	
	.zox-post-soc-scroll {
		margin: 0;
		top: auto;
		bottom: 0;
		width: auto;
		height: 50px;
	}
	
	ul.zox-post-soc-list li {
		border-left: 1px solid rgba(255,255,255,.15);
		border-top: none;
	}
	
	ul.zox-post-soc-list a:first-child li {
		border-left: none;
	}
	
	.zox-post-ad {
		background-position: center center !important;
	}
	
	.zox-article-wrap {
		grid-gap: 20px;
		padding: 20px 0;
	}
	
	.zox-post-head-wrap {
		padding: 0 20px;
	}
	
	.zox-post-title-wrap .zox-post-width {
		padding: 0;
	}
	
	h1.zox-post-title {
		font-size: 6vw;
	}
	
	span.zox-post-excerpt p {
		font-size: 1.125rem;
	}
	
	.zox-post-ad-wrap {
		margin: 50px 0 40px;
	}
	
	.zox-search-but-wrap {
		top: 20px;
		right: 20px;
	}
	
	.zox-search-cont {
		margin: -15vh 0 0 -40%;
		width: 80%;
	}
	
	p.zox-search-p {
		font-size: 4vw;
	}
	
	.zox-search-box {
		height: 50px;
	}
	
	#zox-search-input {
		font-size: 30px;
		padding: 10px;
	}
	
	#zox-foot-wrap {
		padding: 30px 20px;
	}
	
	.zox-foot-grid {
		grid-gap: 20px;
		grid-template-columns: 100%;
		grid-template-areas:
			'foot-right'
			'foot-left';
		justify-content: center;
	}
	
	.zox-foot-left-wrap {
		display: grid;
		grid-area: foot-left;
		justify-content: center;
	}
	
	.zox-foot-right-wrap {
		display: grid;
		grid-area: foot-right;
		justify-content: center;
	}
	
	.zox-vid-fixed {
		-webkit-box-shadow: none;
		   -moz-box-shadow: none;
		    -ms-box-shadow: none;
		     -o-box-shadow: none;
			box-shadow: none;
		margin-top: 0;
		position: relative !important;
			right: auto;
			bottom: auto;
		width: 100% !important;
		height: auto !important;
		z-index: auto;
	}
	
	.zox-post-video1-wrap {
		margin: -20px 0 0;
		padding: 20px 0;
	}
	
	.zox-post-video1-grid {
		grid-template-areas:
			'zox-title'
			'zox-video';
		grid-template-columns: 100%;
	}
	
	.zox-post-video1-left {
		display: grid;
		grid-area: zox-video;
	}

	.zox-post-video1-right {
		display: grid;
		grid-area: zox-title;
		margin: 0 auto;
		max-width: 600px;
		text-align: center;
	}
	
	.zox-post-video1-right .zox-post-info-wrap {
		grid-template-columns: auto auto;
	}
	
	.zox-post-video1-right .zox-post-byline-wrap {
		justify-content: start;
	}
	
	.zox-post-video1-right ul.zox-post-soc-stat-list {
		justify-content: end;
	}
	
	.zox-post-more-grid {
		grid-gap: 20px;
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-post-more-grid.zox-div4 .zox-art-img {
		padding-top: 56.25%;
	}
	
	span.zox-widget-main-title {
		font-size: 1.875rem;
	}
	
	.zox-widget-altimg-wrap .zox-art-text {
		max-width: none;
	}
	
	.zox-auto-post-grid {
		grid-template-columns: 100%;
	}
	
	.zox-alp-side {
		display: none;
	}
	
	.zox-auto-post-main .zox-post-more .zox-div4 .zox-art-img img {
		position: absolute;
			top: 0;
	}
	
	.single #zox-main-body-wrap {
		padding: 0 0 40px;
	}
	
	.zox-auto-post-main h1.zox-post-title {
		font-size: 6vw;
	}
	
	.zox-authors-cont {
		grid-gap: 30px;
		grid-template-columns: 100%;
		justify-content: center;
		text-align: center;
	}
	
	.zox-authors-left {
		justify-content: center;
		width: 100%;
	}
	
	.zox-s6 .zox-widget-tab-wrap .zox-art-text,
	.zox-alp-width,
	#zox-lead-bot,
	.zox-post-title-wrap {
		padding: 0;
	}
	
	.zox-author-name-wrap {
		margin: 0 0 5px;
		width: 100%;
	}
	
	#zox-feat-ent2-wrap {
		margin: 0;
	}
	
	#zox-author-page-top {
		padding: 30px;
	}
	
	.zox-author-top {
		grid-gap: 20px;
		grid-template-columns: 100%
	}
	
	#zox-author-top-left,
	#zox-author-top-right {
		justify-content: center;
		text-align: center;
		width: 100%;
	}
	
	#zox-author-top-left img {
		border: 5px solid #ddd;
		width: 150px;
	}
	
	h1.zox-author-top-head {
		font-size: 2.5rem;
	}
	
	span.zox-author-page-desc {
		font-size: 1rem;
	}
	
	ul.zox-author-page-list li {
		margin: 0 0 0 3px;
	}
	
	.zox-divr .zox-art-grid {
		grid-gap: 20px;
	}
	
	.zox-blog-grid.zox-div4,
	.home .zox-blog-grid.zox-div4 {
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-blog-grid.zox-div4 .zox-art-img {
		padding-top: 56.25%;
	}
	
	.zox-blog-grid.zox-div3 .zox-art-grid,
	.zox-s6 .zox-blog-grid.zox-div3 .zox-art-grid {
		grid-gap: 0;
		grid-template-areas:
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-blog-grid.zox-div3 .zox-art-text,
	.zox-s6 .zox-blog-grid.zox-div3 .zox-art-text {
		padding: 20px;
	}
	
	.wp-block-embed-youtube {
		margin: 0 0 20px -20px;
		width: calc(100% + 40px);
	}

	.zox-woo-wrap {
		padding: 0;
	}

	.zox-woo-grid {
		grid-gap: 0;
		grid-template-columns: 100%;
	}

	#zox-woo-side-wrap {
		display: none;
	}

	.zox-widget-flex1-wrap.zox-widget-flex1-ad {
		grid-template-columns: 100%;
	}

	.zox-widget-flex1-wrap.zox-divr .zox-art-grid {
		grid-template-columns: 1fr 1fr;
	}

	.zox-widget-flex1-wrap.zox-widget-flex1-ad {
		grid-template-columns: 100%;
	}

	.zox-widget-flex1-wrap.zox-divr .zox-art-grid {
		grid-template-columns: 1fr 1fr;
	}

	.zox-soc-more-open.zox-soc-more-scroll {
		bottom: 70px;
	}

	.zox-soc-more-scroll {
		left: auto;
		right: 20px;
	}

	.zox-soc-more-scroll:before {
		border-top: 10px solid #000;
		border-left: 10px solid transparent;
		border-right: none;
		bottom: -10px;
		left: auto;
		right: 0;
	}

	.zox-whats-mob {
		display: block;
	}

	.zox-whats-main {
		display: none;
	}
	
	.zox-post-type,
	.zox-feat-left-wrap .zox-art-main .zox-post-type {
		margin: 0;
		left: 20px;
		top: 20px;
	}
	
	.zox-feat-left-wrap .zox-art-small .zox-post-type,
	.zox-art-small .zox-post-type,
	.zox-main-blog .zox-post-type {
		font-size: 10px;
		margin: -15px 0 0 -15px;
		width: 30px;
		height: 30px;
		left: 50%;
		top: 50%;
	}
	
	.zox-ent3 .zox-post-type {
		margin: -25px 0 0 -25px;
	}
	
	.zox-ent3 #zox-main-blog-wrap .zox-post-type {
		font-size: 16px;
		width: 50px;
		height: 50px;
	}
	
	.zox-net1 .zox-art-mid .zox-post-type,
	.zox-net2 .zox-art-mid .zox-post-type,
	.zox-net2 .zox-art-small .zox-post-type,
	.zox-net2 .zox-main-blog .zox-post-type {
		margin: 0;
		left: auto;
		top: auto;
		right: 0;
		bottom: 0;
	}

}

@media screen and (max-width: 599px) and (min-width: 480px) {

	.zox-widget-flex1-wrap.zox-divr .zox-art-text p.zox-s-graph,
	.zox-bot-head-menu,
	#zox-top-head-wrap,
	.zox-widget-altimg-wrap p.zox-s-graph,
	.zox-byline-wrap,
	#zox-home-widget-wrap p.zox-s-graph,
	.zox-net3 .zox-div4 p.zox-s-graph,
	.zox-net3 .zox-divr p.zox-s-graph,
	.zox-sport3 .zox-divr p.zox-s-graph {
		display: none;
	}
	
	#zox-bot-head-wrap,
	.zox-bot-head-menu,
	#zox-bot-head,
	#zox-bot-head-left,
	#zox-bot-head-right,
	#zox-bot-head-mid,
	.zox-bot-head-logo,
	.zox-bot-head-logo-main,
	.zox-nav-menu,
	.zox-nav-menu ul {
		height: 60px;
	}
	
	#zox-bot-head {
		grid-template-columns: 60px auto 60px;
	}
	
	.zox-bot-head-logo {
		opacity: 1;
		top: auto;
		width: 100%;
	}
	
	.zox-bot-head-logo img,
	.zox-bot-head-logo-main img {
		max-height: 40px;
	}

	#zox-fly-wrap {
		width: 400px;
	}
	
	.zox-fly-menu {
		width: 400px !important;
	}
	
	.zox-head-width,
	.zox-feat-ent1-sub-wrap {
		padding: 0 20px;
	}
	
	.zox-body-width {
		padding: 0;
	}

	.zox-title-width {
		padding: 0 20px;
	}
	
	#zox-main-body-wrap {
		padding: 0 0 20px;
	}
	
	.zox-feat-ent1-cont-wrap {
		grid-template-columns: 180px;
	}
	
	#zox-bot-head-mid,
	.zox-feat-ent1-grid,
	.zox-feat-net1-grid,
	.zox-post-main-wrap,
	#zox-home-body-wrap {
		grid-template-columns: 100%;
	}
	
	.zox-feat-ent1-grid {
		grid-template-areas:
			'feat-contw'
			'feat-right';
	}
	
	.zox-feat-left-wrap,
	.zox-feat-right-wrap,
	.zox-ent1 .zox-feat-right-wrap {
		margin: 0 auto;
		padding: 0 20px;
		width: 100%;
		max-width: 600px;
	}
	
	.zox-feat-ent1-cont-wrap {
		grid-template-areas:
			'feat-cont'
			'feat-left';
		grid-template-columns: 100%;
	}
	
	.zox-feat-ent1-main-wrap .zox-art-img {
		padding-top: 100%;
		height: auto;
	}
	
	.zox-feat-ent1-main-wrap .zox-art-img img {
		height: auto;
		width: 178%;
		height: 100%;
	}
	
	.zox-o6 .zox-art-text {
		padding: 60px 20px 20px;
	}
	
	.zox-ent1 .zox-feat-left-wrap {
		background: none;
		box-shadow: none;
		padding: 0 20px;
	}
	
	.zox-feat-ent1-left {
		background: #fff;
	}
	
	.zox-feat-ent1-left .zox-art-mid,
	.zox-feat-ent1-left .zox-art-small {
		margin: 0 0 20px;
	}
	
	.zox-feat-ent1-left .zox-art-small .zox-art-img {
		display: block;
	}
	
	.zox-feat-ent1-left .zox-art-text {
		align-content: center;
	}
	
	.zox-feat-ent1-left .zox-art-main .zox-art-text {
		text-align: center;
	}
	
	.zox-feat-ent1-left .zox-art-main h2.zox-s-title2 {
		font-size: 1.75rem;
	}
	
	.zox-feat-ent1-left .zox-art-small .zox-art-grid {
		display: grid;
		align-content: center;
		grid-gap: 15px;
		grid-template-areas: 'zox-img zox-text';
		grid-template-columns: 100px auto;
	}
	
	.zox-feat-ent2-main-grid {
		grid-template-columns: 100%;
	}
	
	.zox-feat-ent2-main-grid,
	.zox-feat-ent2-sub2,
	.zox-feat-ent2-sub-wrap,
	.zox-feat-ent2-grid {
		grid-gap: 20px;
	}
	
	.zox-feat-ent2-bot {
		grid-template-areas:
			'feat-sub'
			'feat-right';
		grid-template-columns: 100%;
	}
	
	.zox-feat-ent2-sub2 {
		grid-template-columns: 100%;
	}
	
	.zox-feat-ent2-sub2 .zox-art-img {
		padding: 0;
	}
	
	.zox-feat-ent2-sub2 .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
			bottom: auto;
		min-width: 0;
	}
	
	.zox-feat-net1-grid {
		grid-gap: 30px;
		grid-template-areas:
			'feat-cont'
			'feat-right';
	}
	
	.zox-feat-net1-cont {
		grid-gap: 20px;
		grid-template-areas:
			'feat-main'
			'feat-left';
		grid-template-columns: 100%;
	}
	
	.zox-feat-net1-sub {
		grid-gap: 20px;
		grid-template-columns: 1fr 1fr;
		padding: 0 20px;
	}
	
	.zox-feat-net2-grid {
		grid-row-gap: 30px;
		grid-template-areas:
			'feat-main'
			'feat-sub';
		grid-template-columns: 100%;
	}
	
	.zox-feat-net2-main-wrap.zox-div2 h2.zox-s-title2 {
		font-size: 1.75rem;
	}
	
	.zox-feat-net2-sub-wrap {
		padding: 0 20px;
	}

	.zox-feat-net2-sub-wrap.zox-div4 .zox-art-img {
		padding-top: 0;
	}
	
	.zox-feat-net2-sub-wrap.zox-div4 .zox-art-img img {
		position: relative;
			top: auto;
			bottom: auto;
			left: auto;
			right: auto;
		min-width: 0;
	}
	
	.zox-feat-net2-sub-wrap.zox-div4 h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-feat-net3-grid {
		grid-gap: 0;
	}
	
	.zox-s5.zox-div1 .zox-art-wrap {
		grid-gap: 0;
		grid-template-areas: 
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-s5.zox-div1 .zox-art-text {
		padding: 15px 20px 20px;
	}
	
	.zox-div1 h2.zox-s-title1-feat,
	.zox-div1t h2.zox-s-title1-feat {
		font-size: 1.75rem;
	}
	
	.zox-s5.zox-div1 p.zox-s-graph {
		font-size: 1rem;
	}
	
	.zox-feat-net3-sub-wrap {
		grid-gap: 20px;
		grid-template-columns: 100%;
		padding: 20px 20px 0;
	}
	
	.zox-feat-net3-sub-wrap .zox-art-wrap {
		border: none;
		padding: 0;
	}
	
	.zox-feat-net3-sub-wrap .zox-art-grid {
		grid-gap: 30px;
		grid-template-areas: 'zox-text zox-img';
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-feat-net3-sub-wrap .zox-art-text {
		align-content: center;
		padding: 0;
	}
	
	.zox-feat-net3-sub-wrap p.zox-s-graph {
		display: none;
	}
	
	.zox-s5 .zox-byline-wrap {
		margin: 10px 0 0;
	}
	
	.zox-net3 .zox-blog-grid.zox-divr .zox-art-text {
		text-align: center;
	}
	
	.zox-feat-sport1-grid {
		grid-gap: 20px;
		grid-template-areas:
			'feat-main'
			'feat-sub'
			'feat-right';
		grid-template-columns: 100%;
	}
	
	.zox-s6 .zox-feat-sport1-main-wrap .zox-art-text {
		padding: 20px 30px 40px;
	}
	
	.zox-s6 .zox-feat-sport1-main-wrap p.zox-s-graph {
		font-size: 1rem;
	}
	
	.zox-feat-sport1-sub-wrap {
		grid-gap: 20px;
		grid-template-columns: 100%;
		padding: 0 20px;
	}
	
	.zox-s6 .zox-div3  .zox-art-grid {
		grid-gap: 20px;
		grid-template-areas: 'zox-img zox-text';
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-s6 .zox-div3 .zox-art-text {
		align-content: center;
		padding: 0 20px 0 0;
	}
	
	.zox-s6 h3.zox-s-cat {
		margin: 0 0 5px;
	}
	
	.zox-s6 .zox-byline-wrap {
		margin: 5px 0 0;
	}
	
	.zox-sport1 .zox-divr .zox-art-grid,
	.zox-sport3 .zox-divr .zox-art-grid {
		grid-gap: 20px;
	}
	
	.zox-feat-sport1-main-wrap .zox-art-img {
		padding: 0;
		height: 337px;
	}
	
	.zox-feat-sport1-main-wrap .zox-art-img img {
		margin: 0 auto;
		position: absolute;
			left: -9999px;
			right: -9999px;
			top: auto;
			bottom: auto;
		min-width: 600px;
	}
	
	.zox-sport1 .zox-divr .zox-art-grid,
	.zox-sport3 .zox-divr .zox-art-grid {
		grid-gap: 20px;
		grid-template-columns: 1fr 1fr;
	}
	
	#zox-feat-sport2-wrap .zox-body-width {
		margin: 0;
		padding: 0;
		max-width: none;
	}
	
	.zox-o3.zox-feat-sport2-main-wrap .zox-art-text,
	.zox-o3.zox-widget-feat-main .zox-art-text,
	.zox-o3.zox-widget-featl-main .zox-art-text {
		padding: 0 20px 20px;
		position: relative;
			left: auto;
			bottom: auto;
		width: 100%;
	}
	
	.zox-widget-feat-wrap .zox-o3 .zox-art-text-cont,
	.zox-widget-featl-wrap .zox-o3 .zox-art-text-cont {
		max-width: none;
	}
	
	.zox-o3.zox-div1 h2.zox-s-title1,
	.zox-o3.zox-div23 h2.zox-s-title1-feat {
		font-size: 1.75rem;
	}
	
	.zox-o3.zox-feat-sport2-main-wrap h3.zox-s-cat,
	.zox-o3.zox-widget-feat-main h3.zox-s-cat,
	.zox-o3.zox-widget-featl-main h3.zox-s-cat {
		margin: 0 0 15px -20px;
		padding: 10px 40px 10px 20px;
		width: calc(100% + 40px)
	}
	
	.zox-divr .zox-art-grid {
		grid-gap: 20px;
	}
	
	.zox-sport2 .zox-divr h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-sport3 .zox-body-width {
		padding: 0;
	}
	
	.zox-sport3 #zox-home-cont-wrap {
		grid-gap: 15px;
	}
	
	.zox-feat-sports3-sub {
		grid-template-columns: 100%;
	}
	
	.zox-feat-sports3-sub .zox-art-grid {
		grid-gap: 15px;
		grid-template-areas: 'zox-img zox-text';
		grid-template-columns: 150px auto;
	}
	
	.zox-sport3 .zox-feat-sports3-sub.zox-div4 .zox-art-text {
		align-content: center;
		padding: 0 20px 0 0;
	}
	
	.zox-sport3 .zox-div3 .zox-art-text,
	.zox-sport3 .zox-div4 .zox-art-text {
		padding: 10px 20px 20px;
	}
	
	.zox-sport3 .zox-o4.zox-div1 .zox-art-text {
		padding: 40px 20px 20px;
	}
	
	.zox-sport3 .zox-widget-feat-wrap .zox-art-text-cont,
	.zox-sport3 .zox-widget-featl-main .zox-art-text-cont {
		max-width: none;
	}
	
	.zox-sport3 .zox-widget-featl-sub {
		margin: 0;
		padding: 20px;
	}
	
	.zox-sport3 #zox-home-widget-wrap .zox-div4 h2.zox-s-title2,
	.zox-sport3 #zox-blog-main-wrap .zox-div4 h2.zox-s-title2,
	.zox-sport3 #zox-home-widget-wrap .zox-div3 h2.zox-s-title2,
	.zox-sport3 #zox-blog-main-wrap .zox-div3 h2.zox-s-title2 {
		font-size: 1rem;
	}
	
	.zox-sport1 .zox-divr .zox-art-grid,
	.zox-sport3 .zox-divr .zox-art-grid,
	.zox-sport3 .zox-div3 .zox-widget-flex1-cont .zox-art-grid {
		grid-gap: 15px;
		grid-template-columns: 150px auto;
	}
	
	.zox-sport3 .zox-div3 .zox-widget-flex1-cont .zox-art-text {
		padding: 0 20px 0 0;
	}
	
	.zox-sport3 .zox-div4 .zox-widget-flex1-cont {
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-sport3 .zox-widget-flex1-wrap,
	.zox-sport3 .zox-widget-altimg-wrap,
	.zox-sport3 .zox-widget-flex1-wrap.zox-div4 {
		padding: 0;
	}
	
	#zox-feat-fash1-wrap .zox-body-width {
		padding: 0;
	}
	
	.zox-feat-fash1-grid {
		grid-gap: 20px;
		grid-template-columns: 100%;
	}
	
	.zox-feat-fash1-main .zox-art-img {
		padding: 0;
		height: 337px
	}
	
	.zox-feat-fash1-main .zox-art-img img {
		top: auto;
		min-width: 600px;
	}
	
	.zox-o5 .zox-byline-wrap {
		margin: 15px 0 0;
		padding: 15px 0 0;
	}
	
	.zox-o5 .zox-byline-wrap:before {
		margin: 0 0 0 -25px;
		width: 50px;
		height: 4px;
	}
	
	.zox-feat-fash1-sub-wrap {
		padding: 0 20px;
		max-height: 1300px;
	}
	
	.zox-feat-fash1-sub-wrap .zox-art-wrap {
		width: calc(50% - 10px)
	}
	
	.zox-feat-fash1-sub-wrap .zox-art-wrap:nth-child(odd) {
		margin: 0 20px 0 0;
	}
	
	.zox-s7 .zox-widget-altimg-wrap .zox-art-text {
		background: #fff;
		padding: 20px 20px 0;
		top: -40px;
		left: 20px;
		width: calc(100% - 20px);
	}
	
	.zox-s7 .zox-widget-altimg-wrap .zox-art-text-cont {
		margin: 0;
		max-width: none;
	}

	.zox-s7 .zox-widget-altimg-wrap h2.zox-s-title2 {
		font-size: 1.75rem;
	}
	
	.zox-s7 .zox-div3.zox-widget-flex1-wrap .zox-art-text {
		background: none;
		top: auto;
		left: auto;
		padding: 0 20px 0 0;
		width: 100%;
	}
	
	#zox-feat-fash2-wrap {
		margin: 0;
	}
	
	#zox-feat-fash2-wrap .zox-body-width {
		padding: 0;
		max-width: none;
	}
	
	.zox-feat-fash2-grid {
		grid-template-columns: 100%;
	}
	
	.zox-feat-fash2-grid.zox-div4 .zox-art-img {
		padding: 0;
		max-height: 337px;
	}
	
	.zox-feat-fash2-grid.zox-div4 .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
		min-width: 0;
	}
	
	.zox-fash2 .zox-div3 h2.zox-s-title2,
	.zox-fash2 .zox-div4 h2.zox-s-title2 {
		font-size: 1.5rem;
	}
	
	.zox-s2 .zox-widget-altimg-wrap .zox-art-text {
		text-align: center;
	}
	
	.zox-s2 .zox-widget-altimg-wrap h3.zox-s-cat {
		margin: 0;
		position: absolute;
			top: -14px;
			left: 0;
		text-align: center;
	}
	
	.zox-s2 .zox-widget-altimg-wrap span.zox-s-cat {
		padding: 10px 25px 1px;
	}
	
	.zox-widget-featl-sub .zox-art-text {
		padding: 0 20px 0 0;
	}
	
	.zox-fash2 .zox-widget-flex1-wrap.zox-div3 .zox-art-text h3.zox-s-cat {
		margin: 0 0 5px;
		position: relative;
			left: auto;
			top: auto;
		text-align: left;
	}
	
	.zox-fash2 .zox-widget-flex1-wrap.zox-div3 span.zox-s-cat {
		background: none;
		padding: 0;
	}
	
	#zox-feat-tech1-wrap {
		margin: 0;
	}
	
	.zox-feat-tech1-grid {
		grid-template-columns: 100%;
	}
	
	.zox-feat-tech1-main .zox-art-text p.zox-s-graph {
		font-size: 1rem;
	}
	
	.zox-feat-tech1-sub .zox-art-img {
		height: 360px;
	}
	
	.zox-feat-tech1-sub .zox-art-img img {
		min-width: 290px;
	}
	
	.zox-o4 .zox-art-text {
		padding: 40px 20px 20px;
	}
	
	.zox-feat-tech2-main {
		grid-template-columns: 100%;
	}
	
	.zox-feat-tech2-main .zox-art-wrap:nth-child(2) .zox-art-img,
	.zox-feat-tech2-main .zox-art-wrap:nth-child(1) .zox-art-img {
		padding: 0;
	}
	
	.zox-feat-tech2-main .zox-art-wrap:nth-child(1) .zox-art-img img,
	.zox-feat-tech2-main .zox-art-wrap:nth-child(2) .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
		min-width: 0;
	}
	
	.zox-tech2.zox-s6 .zox-div4 .zox-art-text {
		padding: 15px 15px 20px;
	}
	
	.zox-feat-tech2-main.zox-div2 h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	.zox-feat-tech2-sub {
		grid-template-columns: 1fr 1fr;
		padding: 0 20px;
	}
	
	.zox-feat-tech2-sub.zox-div4 h2.zox-s-title2 {
		font-size: .875rem;
	}
	
	#zox-feat-tech3-wrap {
		margin: 8px 0 0;
	}
	
	.zox-feat-tech3-grid {
		grid-template-columns: 100%;
	}
	
	.zox-feat-tech3-main .zox-art-grid {
		max-height: 337px;
	}
	
	.zox-feat-tech3-main.zox-div2 h2.zox-s-title1-feat {
		font-size: 1.125rem;
	}
	
	.zox-o4 span.zox-s-cat {
		font-size: .625rem;
	}
	
	.zox-o4.zox-div2 .zox-art-text,
	.zox-o4.zox-div4 .zox-art-text {
		padding: 30px 15px 15px;
	}
	
	.zox-feat-tech3-sub-left.zox-div4 .zox-art-img {
		padding-top: 115.6%;
	}
	
	.zox-s6 .zox-art-text {
		padding: 20px 20px 30px;
	}
	
	.zox-div3 h2.zox-s-title2,
	.zox-div4t h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-feat-tech3-sub-wrap .zox-div4 h2.zox-s-title2 {
		font-size: .875rem;
	}
	
	.zox-s6 .zox-widget-featl-sub .zox-art-text {
		padding: 0 20px 0 0;
	}
	
	.zox-tech3 .zox-divr .zox-art-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-tech3 .zox-divr h2.zox-s-title2 {
		font-size: 1rem;
	}
	
	
	
	
	
	
	
	
	

	.zox-widget-flex1-col.zox-div3.zox-widget-flex1-ad {
		grid-template-columns: 100%;
	}
	
	.zox-div3.zox-widget-flex1-ad .zox-widget-flex1-cont {
		grid-template-columns: 100%;
	}
	
	.zox-div2 h2.zox-s-title1,
	.zox-div2 h2.zox-s-title2 {
		font-size: 1.875rem;
	}
	
	.zox-div23 h2.zox-s-title1,
	.zox-div23 h2.zox-s-title2,
	.zox-feat-ent2-sub2.zox-div3 h2.zox-s-title2 {
		font-size: 1.5rem;
	}
	
	.zox-feat-right-wrap,
	.zox-home-right-wrap {
		margin: 0 auto;
		width: 100%;
		max-width: none;
	}
	
	.zox-widget-side-trend-wrap h2.zox-s-title3 {
		font-size: 1.25rem;
	}
	
	.zox-div3 h2.zox-s-title2,
	.zox-div4t h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	.zox-feat-ent3-grid {
		grid-gap: 0;
	}
	
	.zox-s8 .zox-div1 .zox-art-grid {
		grid-template-areas:
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-ent3 #zox-home-widget-wrap {
		grid-gap: 40px;
	}
	
	.zox-feat-ent3-main-wrap .zox-art-img {
		height: 337px;
	}
	
	.zox-feat-ent3-main-wrap .zox-art-img img {
		margin: 0 auto;
		position: absolute;
			left: -9999px;
			right: -9999px;
		min-width: 600px;
	}
	
	.zox-net3 #zox-home-main-wrap,
	.zox-net3 #zox-home-widget-wrap,
	.zox-sport2 #zox-home-main-wrap,
	.zox-sport2 #zox-home-widget-wrap,
	.zox-fash1 #zox-home-main-wrap,
	.zox-fash1 #zox-home-widget-wrap {
		grid-row-gap: 40px;
	}
	
	.zox-net3 .zox-divr .zox-art-grid {
		grid-gap: 15px;
		grid-template-columns: 1fr 1fr;
	}
	
	
	




	.zox-net1 .zox-divr .zox-art-grid,
	.zox-net2 .zox-divr .zox-art-grid {
		grid-gap: 20px;
	}
	
	.zox-s4.zox-blog-grid.zox-divr .zox-art-wrap,
	.zox-s5.zox-blog-grid.zox-divr .zox-art-wrap {
		padding: 20px 0 0;
	}

	.zox-net1 .zox-divr h2.zox-s-title2,
	.zox-net2 .zox-divr h2.zox-s-title2,
	.zox-sport1 .zox-divr h2.zox-s-title2 {
		font-size: 1.125rem;
	}	
	
	.zox-s4 .zox-div3 h3.zox-s-cat {
		margin: 0 0 8px;
		position: relative;
			top: auto;
			left: auto;
	}
	
	.zox-s4 .zox-div3 span.zox-s-cat {
		padding: 0;
	}
	
	.zox-s4 .zox-byline-wrap {
		margin: 8px 0 0;
	}
	
	.zox-s8 .zox-div1 .zox-art-text-cont {
		-webkit-transform: translateY(-60px);
		   -moz-transform: translateY(-60px);
		    -ms-transform: translateY(-60px);
		     -o-transform: translateY(-60px);
			transform: translateY(-60px);
	}
	
	.zox-s8 .zox-div1 .zox-art-text {
		padding: 0 20px;
	}
	
	.zox-s8 .zox-div1 h3.zox-s-cat {
		margin: 0 0 3px;
	}
	
	.zox-s8 .zox-div1 span.zox-s-cat {
		background: #fff;
		padding: 3px 10px 3px;
	}
	
	.zox-s8 .zox-div1 .zox-art-title {
		-webkit-transform: none;
		   -moz-transform: none;
		    -ms-transform: none;
		     -o-transform: none;
			transform: none;
		width: 90%;
	}
	
	.zox-widget-flex1-cont {
		grid-gap: 20px;
	}
	
	.zox-s8 .zox-div3 .zox-art-text,
	.zox-s8 .zox-div3 .zox-widget-flex1-cont .zox-art-text,
	.zox-s8 .zox-div4 .zox-art-text,
	.zox-s8 .zox-div4 .zox-widget-flex1-cont .zox-art-text,
	.zox-s8 .zox-blog-grid.zox-divr .zox-art-text {
		align-content: center;
		padding: 0;
	}
	
	.zox-feat-ent3-sub-wrap {
		padding: 0 20px;
	}
	
	.zox-feat-ent3-sub-wrap,
	.zox-s8 .zox-div4 .zox-widget-flex1-cont {
		grid-gap: 20px;
		grid-template-columns: 100%;
	}
	
	.zox-s8 .zox-div3 .zox-art-grid,
	.zox-s8 .zox-div3 .zox-widget-flex1-cont .zox-art-grid,
	.zox-s8 .zox-div4 .zox-art-grid,
	.zox-s8 .zox-div4 .zox-widget-flex1-cont .zox-art-grid {
		grid-template-areas: 'zox-text zox-img';
		grid-template-columns: 2fr 3fr;
	}
	
	.zox-s8 .zox-div3 h3.zox-s-cat,
	.zox-s8 .zox-div4 h3.zox-s-cat {
		margin: 0 0 5px;
		position: relative;
			top: auto;
			left: auto;
	}
	
	.zox-s8 span.zox-s-cat {
		font-size: .875rem;
	}
	
	.zox-s8 .zox-div3 span.zox-s-cat,
	.zox-s8 .zox-div4 span.zox-s-cat {
		background: none;
		padding: 0;
	}
	
	.zox-s8 .zox-div3 .zox-art-title,
	.zox-s8 .zox-div4 .zox-art-title {
		margin: 0;
		-webkit-transform: none;
		   -moz-transform: none;
		    -ms-transform: none;
		     -o-transform: none;
			transform: none;
		width: 140%;
	}
	
	.zox-s8 .zox-div3 h2.zox-s-title2,
	.zox-s8 #zox-home-widget-wrap .zox-div3 h2.zox-s-title2,
	.zox-s8 .zox-div4 h2.zox-s-title2,
	.zox-s8 #zox-home-widget-wrap .zox-div4 h2.zox-s-title2 {
		font-size: 1rem;
	}
	
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid {
		grid-gap: 0;
	}
	
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-text {
		margin-bottom: -50px;
	}
	
	.zox-s8 .zox-widget-altimg-over .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-text-cont,
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-text-cont {
		margin: 0 auto;
		-webkit-transform: translateY(-60px);
		   -moz-transform: translateY(-60px);
		    -ms-transform: translateY(-60px);
		     -o-transform: translateY(-60px);
			transform: translateY(-60px);
		max-width: 670px;
	}
	
	.zox-s8 .zox-widget-altimg-over .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-title,
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-title {
		width: 90%;
	}
	
	.zox-s8 .zox-div1 h2.zox-s-title1,
	.zox-s8 .zox-div1 h2.zox-s-title2,
	.zox-s8 .zox-widget-altimg-wrap h2.zox-s-title2,
	.zox-div2 h2.zox-s-title1,
	.zox-div2 h2.zox-s-title2,
	.zox-div23 h2.zox-s-title1,
	.zox-div23 h2.zox-s-title2,
	.zox-s8 .zox-div23 h2.zox-s-title1-feat {
		font-size: 1.5rem;
	}
	
	.zox-o1.zox-div1 .zox-art-text {
		padding: 0 20px 20px;
	}
	
	.zox-o1.zox-div1 h3.zox-s-cat {
		position: relative;
			left: auto;
			top: auto;
	}
	
	.zox-o1.zox-div1 span.zox-s-cat {
		padding: 3px 10px;
	}
	
	.zox-o1.zox-div1 .zox-art-title {
		width: 90%;
	}
	
	.zox-o1.zox-div1 .zox-art-title,
	.zox-o1.zox-div1 .zox-art-text-cont {
		-webkit-transform: none;
		   -moz-transform: none;
		    -ms-transform: none;
		     -o-transform: none;
			transform: none;
	}
	
	
	
	
	
	
	


	
	.zox-widget-bgb .zox-widget-flex1-col.zox-div3,
	.zox-widget-bgg .zox-widget-flex1-col.zox-div3,
	.zox-widget-bgw .zox-widget-flex1-col.zox-div3,
	.zox-widget-bgp .zox-widget-flex1-col.zox-div3,
	.zox-widget-bgs .zox-widget-flex1-col.zox-div3 {
		padding: 0 20px;
	}
	
	.zox-widget-bgw.zox-widget-txtw .zox-widget-home:before,
	.zox-widget-bgg.zox-widget-txtw .zox-widget-home:before,
	.zox-widget-bgb.zox-widget-txtw .zox-widget-home:before,
	.zox-widget-bgp.zox-widget-txtw .zox-widget-home:before,
	.zox-widget-bgs.zox-widget-txtw .zox-widget-home:before {
		bottom: -10px;
		height: calc(100% - 70px);
	}
	
	.zox-s1 .zox-art-text,
	.zox-s2.zox-div1 .zox-art-text,
	.zox-s2.zox-div2 .zox-art-text {
		padding: 15px 20px 20px;
	}
	
	.zox-widget-altimg-wrap .zox-s1 .zox-art-text,
	.zox-widget-altimg-wrap .zox-s2.zox-div1 .zox-art-text,
	.zox-widget-altimg-wrap .zox-s2.zox-div2 .zox-art-text {
		padding: 0 20px;
	}
	
	.zox-s3 .zox-widget-altimg-wrap .zox-widget-altimg-grid h3.zox-s-cat {
		margin: 0;
		position: absolute;
			left: 0;
			top: 0;
	}
	
	.zox-s1 .zox-art-small .zox-art-text {
		padding: 0 15px 0 0;
	}
	
	.zox-s1 .zox-widget-side-trend-wrap .zox-art-text {
		padding: 0 0 0 41px;
	}
	
	.zox-div2 h2.zox-s-title1-feat,
	.zox-div23 h2.zox-s-title1-feat {
		font-size: 1.875rem;
	}
	
	.zox-div1 h2.zox-s-title1,
	.zox-div1 h2.zox-s-title2,
	.zox-div1t h2.zox-s-title1,
	.zox-div1t h2.zox-s-title2 {
		font-size: 1.5rem;
	}
	
	.zox-o1 .zox-art-text {
		padding: 0 20px 20px;
	}
	
	.zox-o4.zox-div1 .zox-art-text {
		padding: 40px 20px 20px;
	}
	
	.zox-s3 .zox-divr h3.zox-s-cat {
		margin: 0 0 4px;
		position: relative;
			top: auto;
			left: auto;
	}
	
	.zox-s3 .zox-divr  span.zox-s-cat {
		background: none;
		color: #000;
		font-size: .75rem;
		padding: 0;
	}

	.zox-o1 span.zox-s-cat {
		font-size: .75rem;
		padding: 6px 12px 5px
	}
	
	.zox-o4 span.zox-s-cat {
		padding: 0;
	}
	
	#zox-home-main-wrap,
	#zox-home-widget-wrap {
		grid-gap: 40px;
	}
	
	.zox-widget-main-head {
		margin: 0 0 15px;
	}
	
	.zox-widget-altimg-wrap .zox-widget-altimg-cont {
		padding: 0;
	}
	
	.zox-widget-altimg-wrap .zox-widget-altimg-grid {
		grid-gap: 20px;
	}
	
	.zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-grid,
	.zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-wrap:nth-child(even) .zox-art-grid {
		grid-template-areas:
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-widget-altimg-wrap .zox-art-img {
		padding-top: 0;
		height: auto;
		min-height: 0;
		max-height: 400px;
	}
	
	.zox-widget-altimg-wrap .zox-art-img img {
		position: relative;
			left: auto;
			right: auto;
			top: auto;
			bottom: auto;
		min-width: 0;
	}
	
	.zox-widget-altimg-wrap .zox-art-text-cont {
		max-width: none;
	}
	.zox-widget-feat-wrap .zox-art-text-cont {
		margin: 0 auto;
		max-width: 560px;
	}
	
	.zox-widget-altimg-wrap .zox-art-text {
		padding: 15px 20px 20px;
	}
		
	.zox-widget-altimg-wrap h2.zox-s-title2 {
		font-size: 1.75rem;
	}
	
	.zox-s4 .zox-widget-altimg-wrap .zox-art-text {
		padding: 15px 20px;
	}
	
	.zox-s4 .zox-widget-altimg-wrap .zox-art-text-cont {
		max-width: none;
	}
	
	.zox-s4 .zox-widget-altimg-wrap h3.zox-s-cat {
		margin: 0;
		position: absolute;
			left: 0;
			top: -29px;
	}
	
	.zox-s4 .zox-widget-altimg-wrap span.zox-s-cat {
		background: #fff;
		padding: 15px 20px 4px;
	}
	
	.zox-widget-flex1-wrap,
	.zox-widget-altimg-wrap,
	.zox-widget-flex1-wrap.zox-div4,
	#zox-main-blog-wrap {
		padding: 0 20px;
	}
	
	.zox-div3 .zox-widget-flex1-cont {
		grid-row-gap: 20px;
		grid-template-columns: 100%;
	}
	
	.zox-div3 .zox-widget-flex1-cont .zox-art-grid {
		grid-template-areas: 'zox-img zox-text';
	}
	
	.zox-div4 .zox-widget-flex1-cont,
	.zox-div3 .zox-widget-flex1-cont .zox-art-grid {
		grid-gap: 20px;
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-div3 .zox-widget-flex1-cont .zox-art-text {
		align-content: center;
		padding: 0 20px 0 0;
	}
	
	#zox-home-widget-wrap .zox-div4 .zox-art-img,
	#zox-blog-main-wrap  .zox-art-img {
		padding: 0;
	}
	
	#zox-home-widget-wrap .zox-div4 .zox-art-img img,
	#zox-blog-main-wrap  .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
			bottom: auto;
		min-width: 0;
	}
	
	#zox-home-widget-wrap .zox-div3 h2.zox-s-title2,
	#zox-blog-main-wrap .zox-div3 h2.zox-s-title2,
	#zox-home-widget-wrap .zox-div4 h2.zox-s-title2,
	#zox-blog-main-wrap .zox-div4 h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-widget-featl-grid {
		grid-template-columns: 100%;
	}
	
	.zox-widget-featl-sub {
		margin: 20px 0 0;
		padding: 0 20px;
	}
	
	.zox-widget-featl-main .zox-art-img,
	.zox-widget-feat-wrap .zox-art-img {
		padding: 0;
		height: 337px;
	}
	
	.zox-widget-featl-main .zox-art-img img,
	.zox-widget-feat-wrap .zox-art-img img {
		margin: 0 auto;
		position: absolute;
			left: -9999px;
			right: -9999px;
			top: auto;
			bottom: auto;
		min-width: 600px;
	}
	
	.zox-widget-bgw .zox-widget-home,
	.zox-widget-bgg .zox-widget-home,
	.zox-widget-bgb .zox-widget-home,
	.zox-widget-bgp .zox-widget-home,
	.zox-widget-bgs .zox-widget-home {
		padding: 20px 0;
	}
	
	.zox-blog-grid {
		grid-gap: 20px;
	}
	
	.zox-divr .zox-art-grid {
		grid-template-columns: 1fr 2fr;
	}
	
	.zox-divr h3.zox-s-cat {
		margin: 0 0 5px;
	}
	
	.zox-s1 .zox-divr .zox-art-text {
		align-content: center;
		padding: 0 20px 0 0;
	}
	
	.zox-divr h2.zox-s-title2 {
		font-size: 1rem;
	}
	
	.zox-divr .zox-byline-wrap {
		margin: 5px 0 0;
	}
	
	.zox-post-soc-scroll {
		margin: 0;
		top: auto;
		bottom: 0;
		width: auto;
		height: 50px;
	}
	
	ul.zox-post-soc-list li {
		border-left: 1px solid rgba(255,255,255,.15);
		border-top: none;
	}
	
	ul.zox-post-soc-list a:first-child li {
		border-left: none;
	}
	
	.zox-post-ad {
		background-position: center center !important;
	}
	
	.zox-article-wrap {
		grid-gap: 20px;
		padding: 20px 0;
	}
	
	.zox-post-head-wrap,
	.zox-post-width {
		padding: 0 20px;
	}
	
	.zox-post-title-wrap .zox-post-width {
		padding: 0;
	}
	
	h1.zox-post-title {
		font-size: 7vw;
	}
	
	span.zox-post-excerpt {
		margin: 10px 0 0;
	}
	
	span.zox-post-excerpt p {
		font-size: 1rem;
	}
	
	.zox-post-info-wrap {
		grid-gap: 15px;
		grid-template-columns: 100%;
		justify-content: center;
		margin: 20px 0 0;
	}
	
	.zox-post-byline-wrap {
		justify-content: center;
	}
	
	ul.zox-post-soc-stat-list {
		justify-content: center;
	}
	
	ul.zox-post-soc-stat-list li {
		float: none;
	}
	
	.zox-post-body .zox-post-ad-wrap {
		margin: 50px 0 40px -20px;
		width: calc(100% + 40px);
	}
	
	.zox-post-ad-wrap span.zox-ad-label {
		background: #000;
		padding: 5px 0;
	}
	
	.zox-search-but-wrap {
		top: 20px;
		right: 20px;
	}
	
	.zox-search-cont {
		margin: -15vh 0 0 -40%;
		width: 80%;
	}
	
	p.zox-search-p {
		font-size: 4.5vw;
	}
	
	.zox-search-box {
		height: 50px;
	}
	
	#zox-search-input {
		font-size: 20px;
		padding: 15px;
	}
	
	#zox-foot-wrap {
		padding: 30px 20px;
	}
	
	.zox-foot-grid {
		grid-gap: 20px;
		grid-template-columns: 100%;
		grid-template-areas:
			'foot-right'
			'foot-left';
		justify-content: center;
	}
	
	.zox-foot-left-wrap {
		display: grid;
		grid-area: foot-left;
		justify-content: center;
	}
	
	.zox-foot-right-wrap {
		display: grid;
		grid-area: foot-right;
		justify-content: center;
	}
	
	.zox-vid-fixed {
		-webkit-box-shadow: none;
		   -moz-box-shadow: none;
		    -ms-box-shadow: none;
		     -o-box-shadow: none;
			box-shadow: none;
		margin-top: 0;
		position: relative !important;
			right: auto;
			bottom: auto;
		width: 100% !important;
		height: auto !important;
		z-index: auto;
	}
	
	.zox-post-video1-wrap {
		margin: 0;
		padding: 20px 0;
	}
	
	.zox-post-video1-grid {
		grid-gap: 20px;
		grid-template-areas:
			'zox-title'
			'zox-video';
		grid-template-columns: 100%;
	}
	
	.zox-post-video1-left {
		display: grid;
		grid-area: zox-video;
	}

	.zox-post-video1-right {
		display: grid;
		grid-area: zox-title;
		margin: 0 auto;
		max-width: 600px;
		text-align: center;
	}
	
	.zox-post-video1-right h1.zox-post-title {
		font-size: 1.875rem;
	}
	
	.zox-post-video1-right .zox-post-byline-wrap,
	.zox-post-video1-right ul.zox-post-soc-stat-list {
		justify-content: center;
	}
	
	.zox-post-video1-right .zox-post-info-wrap {
		grid-gap: 20px;
	}
	
	.zox-post-more-grid {
		grid-gap: 20px;
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-post-more-grid.zox-div4 .zox-art-img {
		padding-top: 56.25%;
	}
	
	span.zox-widget-main-title {
		font-size: 1.125rem;
	}
	
	.zox-auto-post-grid {
		grid-template-columns: 100%;
	}
	
	.zox-alp-side {
		display: none;
	}
	
	.zox-auto-post-main .zox-post-more .zox-div4 .zox-art-img img {
		position: absolute;
			top: 0;
	}
	
	.single #zox-main-body-wrap {
		padding: 0 0 40px;
	}
	
	.zox-auto-post-main h1.zox-post-title {
		font-size: 6vw;
	}
	
	#zox-lead-bot {
		padding: 0;
	}
	
	.zox-authors-grid {
		grid-gap: 20px;
	}
	
	.zox-authors-cont {
		grid-gap: 20px;
		grid-template-columns: 100%;
		justify-content: center;
		padding: 0 0 20px;
		text-align: center;
	}
	
	.zox-authors-left {
		justify-content: center;
		width: 100%;
	}
	
	.zox-authors-left img {
		width: 150px;
		height: 150px;
	}
	
	span.zox-authors-name a {
		font-size: 2rem;
	}
	
	.zox-s6 .zox-widget-tab-wrap .zox-art-text {
		padding: 0;
	}
	
	.zox-alp-width,
	#zox-lead-bot,
	.zox-post-title-wrap{
		padding: 0;
	}
	
	.zox-post-body h1,
	.zox-post-body h2,
	.zox-post-body h3,
	.zox-post-body h4,
	.zox-post-body h5,
	.zox-post-body h6,
	.comment-inner h1,
	.comment-inner h2,
	.comment-inner h3,
	.comment-inner h4,
	.comment-inner h5,
	.comment-inner h6 {
		padding: 1.5rem 0 1rem;
	}
	
	#zox-feat-ent2-wrap {
		margin: 0;
	}
	
	#zox-author-page-top {
		padding: 30px;
	}
	
	.zox-author-top {
		grid-gap: 20px;
		grid-template-columns: 100%
	}
	
	#zox-author-top-left,
	#zox-author-top-right {
		justify-content: center;
		text-align: center;
		width: 100%;
	}
	
	#zox-author-top-left img {
		border: 3px solid #ddd;
		width: 100px;
	}
	
	h1.zox-author-top-head {
		font-size: 2rem;
	}
	
	span.zox-author-page-desc {
		font-size: 1rem;
	}
	
	ul.zox-author-page-list li {
		font-size: 14px;
		margin: 0 0 0 3px;
		padding-top: 8px;
		width: 30px;
		height: 30px;
	}
	
	.zox-divr .zox-art-grid {
		grid-gap: 20px;
	}
	
	.zox-blog-grid.zox-div4,
	.home .zox-blog-grid.zox-div4 {
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-blog-grid.zox-div4 .zox-art-img {
		padding-top: 56.25%;
	}
	
	.zox-blog-grid.zox-div3 .zox-art-grid,
	.zox-s6 .zox-blog-grid.zox-div3 .zox-art-grid {
		grid-gap: 0;
		grid-template-areas:
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-blog-grid.zox-div3 .zox-art-text,
	.zox-s6 .zox-blog-grid.zox-div3 .zox-art-text {
		padding: 20px;
	}
	
	.wp-block-embed-youtube {
		margin: 0 0 20px -20px;
		width: calc(100% + 40px);
	}

	.zox-woo-wrap {
		padding: 0 20px;
	}

	.zox-woo-grid {
		grid-gap: 0;
		grid-template-columns: 100%;
	}

	#zox-woo-side-wrap {
		display: none;
	}

	.zox-widget-flex1-wrap.zox-widget-flex1-ad {
		grid-template-columns: 100%;
	}

	.zox-widget-flex1-wrap.zox-divr .zox-art-grid {
		grid-template-columns: 1fr 1fr;
	}

	.zox-soc-more-open.zox-soc-more-scroll {
		bottom: 70px;
	}

	.zox-soc-more-scroll {
		left: auto;
		right: 20px;
	}

	.zox-soc-more-scroll:before {
		border-top: 10px solid #000;
		border-left: 10px solid transparent;
		border-right: none;
		bottom: -10px;
		left: auto;
		right: 0;
	}

	.zox-whats-mob {
		display: block;
	}

	.zox-whats-main {
		display: none;
	}
	
	.zox-post-type,
	.zox-feat-left-wrap .zox-art-main .zox-post-type {
		margin: 0;
		left: 20px;
		top: 20px;
	}
	
	.zox-feat-left-wrap .zox-art-small .zox-post-type,
	.zox-art-small .zox-post-type,
	.zox-main-blog .zox-post-type {
		font-size: 10px;
		margin: -15px 0 0 -15px;
		width: 30px;
		height: 30px;
		left: 50%;
		top: 50%;
	}
	
	.zox-ent3 .zox-post-type {
		margin: -25px 0 0 -25px;
	}
	
	.zox-ent3 #zox-main-blog-wrap .zox-post-type {
		font-size: 16px;
		width: 50px;
		height: 50px;
	}

	.zox-net1 .zox-art-mid .zox-post-type,
	.zox-net2 .zox-art-mid .zox-post-type,
	.zox-net2 .zox-art-small .zox-post-type,
	.zox-net2 .zox-main-blog .zox-post-type {
		margin: 0;
		left: auto;
		top: auto;
		right: 0;
		bottom: 0;
	}

}

@media screen and (max-width: 479px) {

	.zox-widget-flex1-wrap.zox-divr .zox-art-text p.zox-s-graph,
	.zox-bot-head-menu,
	#zox-top-head-wrap,
	.zox-reg-img,
	.zox-byline-wrap,
	p.zox-s-graph,
	.zox-fly-top,
	#zox-home-widget-wrap p.zox-s-graph,
	.zox-net3 .zox-div4 p.zox-s-graph,
	.zox-net3 .zox-divr p.zox-s-graph {
		display: none;
	}
	
	.zox-mob-img {
		display: inline !important;
	}
	
	.zox-trans-head {
		position: relative;
			top: auto;
			left: auto;
	}
	
	#zox-bot-head-wrap,
	.zox-bot-head-menu,
	#zox-bot-head,
	#zox-bot-head-left,
	#zox-bot-head-right,
	#zox-bot-head-mid,
	.zox-bot-head-logo,
	.zox-bot-head-logo-main,
	.zox-nav-menu,
	.zox-nav-menu ul {
		height: 60px;
	}
	
	#zox-bot-head {
		grid-template-columns: 60px auto 60px;
	}
	
	.zox-bot-head-logo {
		opacity: 1;
		position: relative;
		top: auto;
		width: 100%;
	}
	
	.zox-bot-head-logo img,
	.zox-bot-head-logo-main img {
		max-height: 40px;
	}
	
	#zox-fly-wrap {
		width: 400px;
	}
	
	.zox-fly-menu {
		width: 100% !important;
	}
	
	.zox-head-width,
	.zox-title-width {
		padding: 0 15px;
	}
	
	.zox-post-width,
	.zox-body-width {
		padding: 0;
	}
	
	.zox-widget-side-head {
		margin: 0 0 15px;
	}
	
	#zox-main-body-wrap {
		padding: 0 0 15px;
	}
	
	.zox-feat-ent1-cont-wrap {
		grid-template-columns: 180px;
	}
	
	#zox-bot-head-mid,
	.zox-feat-ent1-grid,
	.zox-feat-net1-grid,
	.zox-post-main-wrap,
	#zox-home-body-wrap {
		grid-template-columns: 100%;
	}
	
	.zox-feat-ent1-grid {
		grid-template-areas:
			'feat-contw'
			'feat-right';
	}
	
	.zox-feat-left-wrap,
	.zox-feat-right-wrap,
	.zox-ent1 .zox-feat-right-wrap {
		margin: 0;
		padding: 0 15px;
		width: 100%;
		max-width: 600px;
	}
	
	.zox-feat-ent1-cont-wrap {
		grid-template-areas:
			'feat-cont'
			'feat-left';
		grid-template-columns: 100%;
	}
	
	.zox-feat-ent1-main-wrap .zox-art-img {
		padding-top: 100%;
		height: auto;
	}
	
	.zox-feat-ent1-main-wrap .zox-art-img img {
		height: auto;
		width: 178%;
		height: 100%;
	}
	
	.zox-o6 .zox-art-text {
		padding: 50px 15px 15px;
	}
	
	.zox-s3 .zox-art-text {
		align-content: center;
		padding: 0 15px 0 0;
	}
	
	.zox-o6 h3.zox-s-cat {
		margin: 0 0 10px;
	}
	
	.zox-o6 p.zox-s-graph {
		display: inline;
	}
	
	.zox-ent1 .zox-feat-left-wrap {
		background: none;
		box-shadow: none;
		padding: 0 15px;
	}
	
	.zox-feat-ent1-left {
		background: #fff;
	}
	
	.zox-dark .zox-feat-ent1-left {
		background: #181818;
	}
	
	.zox-feat-ent1-left .zox-art-small .zox-art-img {
		display: block;
	}
	
	.zox-feat-ent1-left .zox-art-text {
		align-content: center;
	}
	
	.zox-feat-ent1-main-wrap.zox-div2 h2.zox-s-title2 {
		font-size: 7vw;
	}
	
	.zox-feat-ent1-left{
		padding: 15px;
	}
	
	.zox-feat-ent1-left .zox-art-mid,
	.zox-feat-ent1-left .zox-art-small {
		margin: 0 0 15px;
	}
	
	.zox-feat-ent1-left .zox-art-mid .zox-art-text {
		text-align: center;
	}
	
	.zox-feat-ent1-left .zox-art-mid h2.zox-s-title2 {
		font-size: 2.125rem;
	}
	
	.zox-feat-ent1-left .zox-art-small .zox-art-grid {
		display: grid;
		align-content: center;
		grid-gap: 15px;
		grid-template-areas: 'zox-img zox-text';
		grid-template-columns: 100px auto;
	}
	
	.zox-feat-ent1-cont,
	.zox-feat-ent1-cont-wrap {
		grid-gap: 15px;
	}
	
	.zox-feat-ent1-sub-wrap {
		grid-gap: 15px;
		grid-template-columns: 100%;
		padding: 0 15px;
	}
	
	.zox-widget-featl-main .zox-art-img,
	.zox-widget-feat-wrap .zox-art-img {
		padding-top: 100%;
		height: auto;
	}
	
	.zox-widget-featl-main .zox-art-img img,
	.zox-widget-feat-wrap .zox-art-img img {
		object-fit: cover;
		position: absolute;
			top: 0;
		width: 600px;
		min-width: 0;
	}
	
	.zox-feat-ent2-main-grid {
		grid-template-columns: 100%;
	}
	
	.zox-feat-ent2-main-grid,
	.zox-feat-ent2-sub2,
	.zox-feat-ent2-sub-wrap,
	.zox-feat-ent2-grid {
		grid-gap: 15px;
	}
	
	.zox-feat-ent2-bot {
		grid-template-areas:
			'feat-sub'
			'feat-right';
		grid-template-columns: 100%;
	}
	
	.zox-feat-ent2-sub2 {
		grid-template-columns: 100%;
	}
	
	.zox-feat-ent2-sub2 .zox-art-img {
		padding: 0;
	}
	
	.zox-feat-ent2-sub2 .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
			bottom: auto;
		min-width: 0;
	}
	
	.zox-feat-net1-grid {
		grid-gap: 60px;
		grid-template-areas:
			'feat-cont'
			'feat-right';
	}
	
	.zox-feat-net2-grid {
		grid-row-gap: 30px;
		grid-template-areas:
			'feat-main'
			'feat-sub';
		grid-template-columns: 100%;
	}
	
	.zox-feat-net2-sub-wrap {
		grid-gap: 30px;
		grid-template-columns: 100%;
		padding: 0 15px;
	}
	
	.zox-feat-net2-sub-wrap.zox-div4 .zox-art-grid {
		grid-gap: 0;
		grid-template-areas:
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}

	.zox-feat-net2-sub-wrap.zox-div4 .zox-art-img {
		padding-top: 0;
	}
	
	.zox-feat-net2-sub-wrap.zox-div4 .zox-art-img img {
		position: relative;
			top: auto;
			bottom: auto;
			left: auto;
			right: auto;
		min-width: 0;
	}
	
	.zox-feat-net2-sub-wrap.zox-div4 h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	.zox-feat-net3-grid {
		grid-gap: 0;
	}
	
	.zox-s5.zox-div1 .zox-art-wrap {
		grid-gap: 0;
		grid-template-areas: 
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-s5.zox-div1 .zox-art-img {
		padding: 0;
		height: 337px;
	}
	
	.zox-s5.zox-div1 .zox-art-img img {
		margin: 0 auto;
		position: absolute;
			left: -9999px;
			right: -9999px;
		min-width: 0;
	}
	
	.zox-s5.zox-div1 .zox-art-text {
		padding: 15px 20px 20px;
	}
	
	.zox-div1 h2.zox-s-title1-feat,
	.zox-div1t h2.zox-s-title1-feat {
		font-size: 1.75rem;
	}
	
	.zox-o5.zox-div1 h2.zox-s-title1-feat,
	.zox-o5.zox-div1t h2.zox-s-title1-feat {
		font-size: 2.125rem;
	}
	
	.zox-s5.zox-div1 p.zox-s-graph {
		display: inline;
		font-size: 1rem;
	}
	
	.zox-feat-net3-sub-wrap {
		grid-gap: 20px;
		grid-template-columns: 100%;
		padding: 20px 20px 0;
	}
	
	.zox-feat-net3-sub-wrap .zox-art-wrap {
		border: none;
		padding: 0;
	}
	
	.zox-feat-net3-sub-wrap .zox-art-grid {
		grid-gap: 30px;
		grid-template-areas: 'zox-text zox-img';
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-feat-net3-sub-wrap .zox-art-text {
		align-content: center;
		padding: 0;
	}
	
	.zox-feat-net3-sub-wrap p.zox-s-graph {
		display: none;
	}
	
	.zox-s5 .zox-byline-wrap {
		margin: 10px 0 0;
	}
	
	.zox-net3 .zox-div3 .zox-art-main .zox-art-text,
	.zox-net3 .zox-div4 .zox-art-main .zox-art-text,
	.zox-net3 .zox-divr .zox-art-main .zox-art-text {
		text-align: center;
	}
	
	.zox-net3 #zox-home-main-wrap,
	.zox-net3 #zox-home-widget-wrap,
	.zox-sport2 #zox-home-main-wrap,
	.zox-sport2 #zox-home-widget-wrap,
	.zox-fash1 #zox-home-main-wrap,
	.zox-fash1 #zox-home-widget-wrap {
		grid-row-gap: 40px;
	}

	#zox-home-main-wrap {
		padding: 0;
	}
	
	.zox-feat-sport1-grid {
		grid-gap: 20px;
		grid-template-areas:
			'feat-main'
			'feat-sub'
			'feat-right';
		grid-template-columns: 100%;
	}
	
	.zox-s6 .zox-feat-sport1-main-wrap .zox-art-text {
		padding: 20px 30px 40px;
	}
	
	.zox-s6 .zox-feat-sport1-main-wrap p.zox-s-graph {
		display: inline;
		font-size: 1rem;
	}
	
	.zox-feat-sport1-sub-wrap {
		grid-gap: 20px;
		grid-template-columns: 100%;
		padding: 0 20px;
	}
	
	.zox-s6 .zox-div3  .zox-art-grid {
		grid-gap: 20px;
		grid-template-areas: 'zox-img zox-text';
		grid-template-columns: 1fr 1fr;
	}
	
	.zox-s6 .zox-div3 .zox-art-text {
		align-content: center;
		padding: 0 20px 0 0;
	}
	
	.zox-s6 h3.zox-s-cat {
		margin: 0 0 5px;
	}
	
	.zox-s6 .zox-byline-wrap {
		margin: 5px 0 0;
	}
	
	.zox-sport1 .zox-divr .zox-art-grid,
	.zox-sport3 .zox-divr .zox-art-grid {
		grid-gap: 20px;
	}
	
	.zox-feat-sport1-main-wrap .zox-art-img {
		padding-top: 100%;
		height: auto;
	}
	
	.zox-feat-sport1-main-wrap .zox-art-img img {
		margin: 0;
		object-fit: cover;
		position: absolute;
			top: 0;
		min-width: 0;
		width: 600px;
	}
	
	.zox-net3 .zox-divr .zox-art-grid {
		grid-template-columns: 100px auto;
	}
	
	#zox-feat-sport2-wrap .zox-body-width {
		margin: 0;
		padding: 0;
		max-width: none;
	}
	
	.zox-o3.zox-feat-sport2-main-wrap .zox-art-text,
	.zox-o3.zox-widget-feat-main .zox-art-text,
	.zox-o3.zox-widget-featl-main .zox-art-text {
		padding: 0 15px 15px;
		position: relative;
			left: auto;
			bottom: auto;
		width: 100%;
	}
	
	.zox-widget-feat-wrap .zox-o3 .zox-art-text-cont,
	.zox-widget-featl-wrap .zox-o3 .zox-art-text-cont {
		max-width: none;
	}
	
	.zox-o3.zox-div1 h2.zox-s-title1,
	.zox-o3.zox-div23 h2.zox-s-title1-feat {
		font-size: 5.25vw;
	}
	
	.zox-o3.zox-feat-sport2-main-wrap h3.zox-s-cat,
	.zox-o3.zox-widget-feat-main h3.zox-s-cat,
	.zox-o3.zox-widget-featl-main h3.zox-s-cat {
		margin: 0 0 15px -15px;
		padding: 10px 30px 10px 15px;
		width: calc(100% + 40px)
	}
	
	.zox-o3.zox-feat-sport2-main-wrap p.zox-s-graph {
		display: inline;
	}
	
	.zox-divr .zox-art-grid {
		grid-gap: 15px;
	}
	
	.zox-sport2 .zox-divr h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-sport3 .zox-body-width {
		padding: 0;
	}
	
	.zox-sport3 #zox-home-cont-wrap,
	.zox-sport3 #zox-home-widget-wrap {
		grid-gap: 15px;
	}
	
	.zox-sport3 .zox-widget-home,
	.zox-sport3 #zox-main-blog-wrap {
		padding: 15px;
	}
	
	.zox-sport3 .zox_feat_widget,
	.zox-sport3 .zox-home-right-wrap {
		padding: 0;
	}
	
	.zox-feat-sports3-main-wrap .zox-art-img {
		padding-top: 100%;
		max-height: none;
		height: auto;
	}
	
	.zox-feat-sports3-main-wrap .zox-art-img img {
		margin: 0;
		object-fit: cover;
		position: absolute;
			top: 0;
		min-width: 0;
	}
	
	.zox-feat-sports3-sub {
		grid-template-columns: 100%;
		padding: 15px;
	}
	
	.zox-feat-sports3-sub.zox-div4 .zox-art-grid,
	.zox-sport3 .zox-div3 .zox-widget-flex1-cont .zox-art-main .zox-art-grid,
	.zox-sport3 .zox-div4 .zox-widget-flex1-cont .zox-art-main .zox-art-grid {
		grid-gap: 0;
		grid-template-areas:
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-sport3 .zox-feat-sports3-sub.zox-div4 .zox-art-text,
	.zox-sport3 .zox-div3 .zox-widget-flex1-cont .zox-art-main .zox-art-text {
		align-content: center;
		padding: 10px 15px 15px;
	}
	
	.zox-sport3 .zox-div3 .zox-art-text,
	.zox-sport3 .zox-div4 .zox-art-text {
		padding: 10px 15px 15px;
	}
	
	.zox-sport3 .zox-o4.zox-div1 .zox-art-text {
		padding: 40px 20px 20px;
	}
	
	.zox-sport3 .zox-widget-feat-wrap .zox-art-text-cont,
	.zox-sport3 .zox-widget-featl-main .zox-art-text-cont {
		max-width: none;
	}
	
	.zox-sport3 .zox-widget-featl-sub {
		margin: 0;
		padding: 15px;
	}
	
	.zox-sport3 #zox-home-widget-wrap .zox-div4 h2.zox-s-title2,
	.zox-sport3 #zox-blog-main-wrap .zox-div4 h2.zox-s-title2,
	.zox-sport3 #zox-home-widget-wrap .zox-div3 h2.zox-s-title2,
	.zox-sport3 #zox-blog-main-wrap .zox-div3 h2.zox-s-title2,
	.zox-sport3 .zox-div4 .zox-art-main h2.zox-s-title2,
	.zox-sport3 .zox-div3 .zox-art-main h2.zox-s-title2,
	.zox-sport3 .zox-div4 .zox-art-main h2.zox-s-title2,
	.zox-sport3 .zox-divs .zox-art-main h2.zox-s-title2,
	.zox-sport3 .zox-divr .zox-art-main h2.zox-s-title2,
	.zox-sport3 .zox-widget-altimg-wrap h2.zox-s-title2 {
		font-size: 1rem;
	}
	
	.zox-sport1 .zox-divr .zox-art-grid,
	.zox-sport3 .zox-divr .zox-art-grid,
	.zox-sport3 .zox-div3 .zox-widget-flex1-cont .zox-art-grid {
		grid-gap: 15px;
		grid-template-columns: 100px auto;
	}
	
	.zox-sport3 .zox-div3 .zox-widget-flex1-cont .zox-art-text {
		padding: 0 15px 0 0;
	}
	
	.zox-sport3 .zox-div4 .zox-widget-flex1-cont {
		grid-template-columns: 100%;
	}
	
	.zox-sport3 .zox-widget-altimg-wrap .zox-widget-altimg-grid {
		grid-template-columns: 100%;
	}
	
	.zox-sport3 .zox-widget-flex1-wrap,
	.zox-sport3 .zox-widget-altimg-wrap,
	.zox-sport3 .zox-widget-flex1-wrap.zox-div4 {
		padding: 0;
	}
	
	#zox-feat-fash1-wrap .zox-body-width {
		padding: 0;
	}
	
	.zox-feat-fash1-grid {
		grid-gap: 15px;
		grid-template-columns: 100%;
	}
	
	.zox-feat-fash1-main .zox-art-img {
		padding: 0;
		height: auto;
	}
	
	.zox-feat-fash1-main .zox-art-img img {
		position: relative;
			left: auto;
			right: auto;
			top: auto;
		min-width: 0;
	}
	
	.zox-o5 .zox-byline-wrap {
		margin: 15px 0 0;
		padding: 15px 0 0;
	}
	
	.zox-o5 .zox-byline-wrap:before {
		margin: 0 0 0 -25px;
		width: 50px;
		height: 4px;
	}
	
	.zox-feat-fash1-sub-wrap {
		display: grid;
		grid-gap: 15px;
		grid-template-columns: 100%;
		padding: 0 15px;
		max-height: none;
	}
	
	.zox-feat-fash1-sub-wrap .zox-art-wrap {
		display: grid;
		grid-gap: 15px;
		grid-template-areas: 'zox-img zox-text';
		grid-template-columns: 100px auto;
		width: 100%;
	}
	
	.zox-feat-fash1-sub-wrap .zox-art-wrap:nth-child(odd) {
		margin: 0;
	}
	
	.zox-feat-fash1-right-wrap .zox-div4 .zox-art-img,
	.zox-feat-fash1-sub-wrap .zox-art-wrap .zox-art-img,
	.zox-feat-fash1-sub-wrap .zox-art-wrap:nth-child(1) .zox-art-img,
	.zox-feat-fash1-sub-wrap .zox-art-wrap:nth-child(6) .zox-art-img {
		padding-top: 100%;
	}
	
	.zox-feat-fash1-sub-wrap .zox-art-wrap:nth-child(1) .zox-art-img img,
	.zox-feat-fash1-sub-wrap .zox-art-wrap:nth-child(6) .zox-art-img img,
	.zox-feat-fash1-right-wrap .zox-div4 .zox-art-wrap:nth-child(1) .zox-art-img img {
		margin: 0;
		position: absolute;
			left: auto;
			right: auto;
			top: 0;
		min-width: 0;
		width: 600px;
	}
	
	.zox-s7 .zox-art-text {
		display: grid;
		align-content: center;
		padding: 0 15px 0 0;
		top: auto;
		left: auto;
		width: 100%;
	}
	
	.zox-s7 .zox-div3 .zox-art-mid h2.zox-s-title2,
	.zox-s7 .zox-div3 .zox-art-mid h2.zox-s-title2,
	.zox-s7 .zox-div4 .zox-art-mid h2.zox-s-title2,
	.zox-s7 .zox-div4 .zox-art-mid h2.zox-s-title2 {
		font-size: 1rem;
	}
	
	.zox-s7 .zox-div3 .zox-art-main .zox-art-text,
	.zox-s7 .zox-div4 .zox-art-main .zox-art-text,
	.zox-s7 .zox-divs .zox-art-main .zox-art-text,
	.zox-s7 .zox-divr .zox-art-main .zox-art-text {
		background: #fff;
		margin: 0 0 -20px;
		padding: 20px 20px 0;
		position: relative;
			top: -40px;
			left: 20px;
		width: calc(100% - 20px);
	}
	
	.zox-s7 .zox-widget-altimg-wrap .zox-art-text {
		background: #fff;
		padding: 20px 20px 0;
		top: -40px;
		left: 20px;
		width: calc(100% - 20px);
	}
	
	.zox-s7 .zox-widget-altimg-wrap .zox-art-text-cont {
		margin: 0;
		max-width: none;
	}
	
	.zox-s7 .zox-divs .zox-art-text {
		padding: 0 15px 0 0;
	}
	
	.zox-s7 .zox-widget-altimg-wrap h2.zox-s-title2 {
		font-size: 5.25vw;
	}
	
	#zox-feat-fash2-wrap {
		margin: 0;
	}
	
	#zox-feat-fash2-wrap .zox-body-width {
		padding: 0;
		max-width: none;
	}
	
	.zox-feat-fash2-grid {
		grid-template-columns: 100%;
	}
	
	.zox-s2 .zox-feat-fash2-grid .zox-art-text {
		padding: 15px 20px 20px;
	}
	
	.zox-feat-fash2-grid.zox-div4 .zox-art-grid {
		grid-gap: 0;
		grid-template-areas:
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-feat-fash2-grid.zox-div4 .zox-art-img {
		padding: 0;
		max-height: 337px;
	}
	
	.zox-feat-fash2-grid.zox-div4 .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
		min-width: 0;
	}
	
	.zox-fash2 .zox-div4 h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	.zox-blog-grid.zox-divr.zox-s2 .zox-art-grid {
		grid-template-columns: 100px auto;
	}
	
	.zox-blog-grid.zox-divr.zox-s2 .zox-art-main .zox-art-grid {
		grid-template-columns: 100%;
	}
	
	.zox-fash2 .zox-widget-flex1-wrap .zox-art-mid .zox-art-text h3.zox-s-cat {
		margin: 0 0 5px;
		position: relative;
			left: auto;
			top: auto;
		text-align: left;
	}
	
	.zox-fash2 .zox-widget-flex1-wrap .zox-art-mid .zox-art-text span.zox-s-cat {
		background: none;
		padding: 0;
	}
	
	.zox-fash2 .zox-div1 .zox-art-main h3.zox-s-cat,
	.zox-fash2 .zox-div23 .zox-art-main h3.zox-s-cat,
	.zox-fash2 .zox-divr .zox-art-main h3.zox-s-cat,
	.zox-fash2 .zox-div3 .zox-art-main .zox-art-text,
	.zox-fash2 .zox-div4 .zox-art-main .zox-art-text,
	.zox-fash2 .zox-divr .zox-art-main .zox-art-text,
	.zox-s2 .zox-widget-altimg-wrap .zox-art-text {
		position: relative;
		text-align: center;
	}
	
	.zox-s2 .zox-widget-altimg-wrap h3.zox-s-cat,
	.zox-s2 .zox-divr .zox-art-main h3.zox-s-cat {
		position: absolute;
			top: -14px;
			left: 0;
		text-align: center;
	}
	
	.zox-s2 .zox-widget-altimg-wrap span.zox-s-cat,
	.zox-s2 .zox-divr .zox-art-main span.zox-s-cat {
		background: #fff;
		padding: 10px 25px 1px;
	}
	
	.zox-s7 #zox-feat-fash3-wrap .zox-art-text {
		left: 0;
		padding: 40px 20px 20px;
	}
	
	#zox-feat-tech1-wrap {
		margin: 0;
	}
	
	.zox-feat-tech1-grid,
	.zox-feat-tech1-sub {
		grid-template-columns: 100%;
	}
	
	.zox-feat-tech1-main .zox-art-img {
		height: 337px;
	}
	
	.zox-feat-tech1-main .zox-art-text p.zox-s-graph {
		display: inline;
		font-size: .75rem;
	}
	
	.zox-feat-tech1-sub .zox-art-img {
		padding: 0;
		height: auto;
	}
	
	.zox-feat-tech1-sub .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			top: auto;
			right: auto;
		min-width: 0;
	}
	
	.zox-o4 .zox-art-text {
		padding: 30px 15px 15px;
	}
	
	.zox-feat-tech2-grid {
		grid-gap: 15px;
	}
	
	.zox-feat-tech2-main {
		grid-gap: 15px;
		grid-template-columns: 100%;
	}
	
	.zox-feat-tech2-main .zox-art-wrap:nth-child(2) .zox-art-img,
	.zox-feat-tech2-main .zox-art-wrap:nth-child(1) .zox-art-img {
		padding: 0;
	}
	
	.zox-feat-tech2-main .zox-art-wrap:nth-child(1) .zox-art-img img,
	.zox-feat-tech2-main .zox-art-wrap:nth-child(2) .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
		min-width: 0;
	}
	
	.zox-tech2.zox-s6 .zox-div4 .zox-art-text {
		padding: 15px 15px 20px;
	}
	
	.zox-feat-tech2-main.zox-div2 h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	.zox-feat-tech2-sub {
		grid-gap: 15px;
		grid-template-columns: 100%;
		padding: 0 15px;
	}
	
	.zox-feat-tech2-sub.zox-div4 .zox-art-grid {
		grid-gap: 15px;
		grid-template-columns: 100px auto;
	}
	
	.zox-tech2.zox-s6 .zox-feat-tech2-sub.zox-div4 .zox-art-text,
	.zox-tech2.zox-s6 .zox-div3 .zox-art-text,
	.zox-tech2.zox-s6 .zox-div4 .zox-art-text {
		align-content: center;
		padding: 0 15px 0 0;
	}
	
	.zox-tech2.zox-s6 .zox-div3 .zox-art-main .zox-art-text,
	.zox-tech2.zox-s6 .zox-div4 .zox-art-main .zox-art-text,
	.zox-tech2.zox-s6 .zox-divr .zox-art-main .zox-art-text {
		align-content: center;
		padding: 15px;
	}
	
	.zox-feat-tech2-sub.zox-div4 .zox-art-mid h2.zox-s-title2 {
		font-size: 1rem;
	}
	
	.zox-tech2 .zox-title-width {
		padding: 0 15px;
	}
	
	#zox-feat-tech3-wrap {
		margin: 8px 0 0;
	}
	
	.zox-feat-tech3-grid,
	.zox-feat-tech3-sub-wrap {
		grid-template-columns: 100%;
	}
	
	.zox-feat-tech3-main .zox-art-grid {
		max-height: 337px;
	}
	
	.zox-feat-tech3-main .zox-art-img {
		padding: 0;
	}
	
	.zox-feat-tech3-main .zox-art-img img {
		position: relative;
	}
	
	.zox-o4 span.zox-s-cat {
		font-size: .625rem;
	}
	
	.zox-o4.zox-div2 .zox-art-text,
	.zox-o4.zox-div4 .zox-art-text {
		padding: 30px 15px 15px;
	}
	
	.zox-feat-tech3-sub-left.zox-div4 .zox-art-img {
		padding: 0;
	}
	
	.zox-s6 .zox-art-text {
		padding: 20px 20px 30px;
	}
	
	.zox-div3 h2.zox-s-title2,
	.zox-div4t h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-feat-tech3-main.zox-div2 h2.zox-s-title1-feat,
	.zox-feat-tech3-sub-wrap .zox-div4 h2.zox-s-title2 {
		font-size: 5.25vw;
	}
	
	.zox-s6 .zox-widget-featl-sub .zox-art-text {
		padding: 0 20px 0 0;
	}
	
	.zox-tech3 .zox-divr .zox-art-grid {
		grid-template-columns: 100px auto;
	}
	
	.zox-tech3 .zox-divr h2.zox-s-title2 {
		font-size: 1rem;
	}
	
	
	
	
	
	
	.zox-widget-bgw .zox-widget-home,
	.zox-widget-bgg .zox-widget-home,
	.zox-widget-bgb .zox-widget-home,
	.zox-widget-bgp .zox-widget-home,
	.zox-widget-bgs .zox-widget-home {
		margin: 0;
		padding: 20px 0;
	}
	
	.zox-sport3 .zox-widget-flex1-cont {
		padding: 0;
	}

	.zox-widget-flex1-col.zox-div3.zox-widget-flex1-ad {
		grid-template-columns: 100%;
	}
	
	.zox-div3.zox-widget-flex1-ad .zox-widget-flex1-cont {
		grid-template-columns: 100%;
	}
	
	.zox-div2 h2.zox-s-title1,
	.zox-div2 h2.zox-s-title2 {
		font-size: 1.5rem;
	}
	
	.zox-div23 h2.zox-s-title1,
	.zox-div23 h2.zox-s-title2,
	.zox-feat-ent2-sub2.zox-div3 h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	.zox-feat-right-wrap,
	.zox-home-right-wrap {
		margin: 0 auto;
		max-width: 100%;
	}
	
	.zox-div3 h2.zox-s-title2,
	.zox-div4t h2.zox-s-title2 {
		font-size: 1.25rem;
	}
	
	.zox-feat-ent2-sub2.zox-div3 .zox-art-grid {
		grid-gap: 0;
		grid-template-areas:
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-feat-ent3-grid {
		grid-gap: 0;
	}
	
	.zox-feat-net1-grid {
		grid-gap: 30px;
		grid-template-areas:
			'feat-cont'
			'feat-right';
	}
	
	.zox-feat-net1-cont {
		grid-gap: 30px;
		grid-template-areas:
			'feat-main'
			'feat-left';
		grid-template-columns: 100%;
	}
	
	.zox-feat-net1-sub {
		grid-gap: 15px;
		grid-template-columns: 100%;
		padding: 0 15px;
	}
	
	.zox-feat-net2-main-wrap .zox-art-img {
		padding: 0;
		height: 337px;
	}
	
	.zox-feat-net2-main-wrap .zox-art-img img {
		min-width: 600px;
	}
	
	.zox-sport1 .zox-divr .zox-art-grid,
	.zox-sport3 .zox-divr .zox-art-grid {
		grid-gap: 15px;
		grid-template-columns: 100px auto;
	}
	
	
	

	
	.zox-blog-grid.zox-divr .zox-art-text,
	.zox-s6 .zox-divr .zox-art-text,
	.zox-s2 .zox-divr .zox-art-text {
		
	}

	.zox-s4 .zox-div3 .zox-art-mid h3.zox-s-cat,
	.zox-s4 .zox-div4 .zox-art-mid h3.zox-s-cat,
	.zox-s4 .zox-art-small h3.zox-s-cat {
		margin: 0 0 4px;
		position: relative;
			top: auto;
			left: auto;
	}
	
	.zox-s4 .zox-div3 .zox-art-mid span.zox-s-cat,
	.zox-s4 .zox-div4 .zox-art-mid span.zox-s-cat {
		padding: 0;
	}
	
	.zox-s4 .zox-byline-wrap {
		margin: 8px 0 0;
	}
	
	.zox-widget-flex1-cont {
		grid-gap: 20px;
	}
	
	.zox-s8 .zox-div1 .zox-art-grid,
	.zox-s8 .zox-div3 .zox-art-main .zox-art-grid,
	.zox-s8 .zox-div3 .zox-widget-flex1-cont .zox-art-main .zox-art-grid,
	.zox-s8 .zox-div4 .zox-widget-flex1-cont .zox-art-main .zox-art-grid,
	.zox-s8 .zox-divr .zox-widget-flex1-cont .zox-art-main .zox-art-grid {
		grid-template-areas:
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-ent3 #zox-home-widget-wrap {
		grid-gap: 30px;
	}
	
	.zox-feat-ent3-main-wrap .zox-art-img {
		height: 337px;
	}
	
	.zox-feat-ent3-main-wrap .zox-art-img img {
		margin: 0 auto;
		position: absolute;
			left: -9999px;
			right: -9999px;
		min-width: 600px;
	}
	
	.zox-s8 .zox-div1 .zox-art-text-cont,
	.zox-s8 .zox-div3 .zox-art-main .zox-art-text-cont,
	.zox-s8 .zox-div4 .zox-art-main .zox-art-text-cont,
	.zox-s8 .zox-divr .zox-art-main .zox-art-text-cont {
		-webkit-transform: translateY(-50px);
		   -moz-transform: translateY(-50px);
		    -ms-transform: translateY(-50px);
		     -o-transform: translateY(-50px);
			transform: translateY(-50px);
	}
	
	.zox-s8 .zox-div3 .zox-widget-flex1-cont .zox-art-main .zox-art-text-cont,
	.zox-s8 .zox-div4 .zox-widget-flex1-cont .zox-art-main .zox-art-text-cont,
	.zox-s8 .zox-divr .zox-widget-flex1-cont .zox-art-main .zox-art-text-cont {
		-webkit-transform: translateY(-40px);
		   -moz-transform: translateY(-40px);
		    -ms-transform: translateY(-40px);
		     -o-transform: translateY(-40px);
			transform: translateY(-40px);
	}
	
	.zox-s8.zox-div1 .zox-art-text {
		margin-bottom: -25px;
		padding: 0 15px;
	}
	
	.zox-s8 .zox-div3 .zox-widget-flex1-cont .zox-art-main .zox-art-text,
	.zox-s8 .zox-div4 .zox-widget-flex1-cont .zox-art-main .zox-art-text,
	.zox-s8 .zox-divr .zox-widget-flex1-cont .zox-art-main .zox-art-text,
	.zox-s8 .zox-blog-grid.zox-divr .zox-art-main .zox-art-text
	.zox-s8 .zox-div1 .zox-art-text,
	.zox-s8 .zox-div3 .zox-art-main .zox-art-text,
	.zox-s8 .zox-div4 .zox-art-main .zox-art-text,
	.zox-s8 .zox-divr .zox-art-main .zox-art-text {
		margin-bottom: -35px;
		padding: 0 15px;
	}
	
	.zox-s8 .zox-div1 h3.zox-s-cat,
	.zox-s8 .zox-div3 .zox-art-main h3.zox-s-cat,
	.zox-s8 .zox-div4 .zox-art-main h3.zox-s-cat,
	.zox-s8 .zox-divr .zox-art-main h3.zox-s-cat,
	.zox-s8 .zox-art-mid h3.zox-s-cat,
	.zox-s8 .zox-art-small h3.zox-s-cat {
		margin: 0;
		position: relative;
			top: auto;
			left: auto;
	}
	
	.zox-s8 .zox-div1 span.zox-s-cat,
	.zox-s8 .zox-div3 .zox-art-main span.zox-s-cat,
	.zox-s8 .zox-div4 .zox-art-main span.zox-s-cat,
	.zox-s8 .zox-divr .zox-art-main span.zox-s-cat {
		background: #fff;
		padding: 3px 10px 3px;
	}
	
	.zox-s8 .zox-div1 .zox-art-title,
	.zox-s8 .zox-div3 .zox-art-main .zox-art-title,
	.zox-s8 .zox-div4 .zox-art-main .zox-art-title,
	.zox-s8 .zox-divr .zox-art-main .zox-art-title {
		margin: 0 0 0 10px;
		-webkit-transform: none;
		   -moz-transform: none;
		    -ms-transform: none;
		     -o-transform: none;
			transform: none;
		width: 90%;
	}
	
	.zox-s8 .zox-div1 h2.zox-s-title2,
	.zox-s8 .zox-div3 .zox-art-main h2.zox-s-title2,
	.zox-s8 .zox-div4 .zox-art-main h2.zox-s-title2,
	.zox-s8 .zox-divr .zox-art-main h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-s8 .zox-div3 .zox-art-text,
	.zox-s8 .zox-div3 .zox-widget-flex1-cont .zox-art-text,
	.zox-s8 .zox-div4 .zox-art-text,
	.zox-s8 .zox-div4 .zox-widget-flex1-cont .zox-art-text,
	.zox-s8 .zox-divr .zox-art-text,
	.zox-s8 .zox-divr .zox-widget-flex1-cont .zox-art-text {
		align-content: center;
		padding: 0;
	}
	
	.zox-feat-ent3-sub-wrap {
		grid-gap: 0;
		grid-template-columns: 100%;
	}
	
	.zox-s8 .zox-div3 .zox-art-grid,
	.zox-s8 .zox-div4 .zox-art-grid,
	.zox-s8 .zox-divr .zox-art-grid,
	.zox-s8 .zox-div3 .zox-widget-flex1-cont .zox-art-grid,
	.zox-s8 .zox-div4 .zox-widget-flex1-cont .zox-art-grid {
		grid-template-areas: 'zox-text zox-img';
		grid-template-columns: auto 100px;
	}
	
	.zox-s8 .zox-div3 .zox-art-mid .zox-art-title,
	.zox-s8 .zox-div4 .zox-art-mid .zox-art-title,
	.zox-s8 .zox-divr .zox-art-mid .zox-art-title {
		margin: 0;
		-webkit-transform: none;
		   -moz-transform: none;
		    -ms-transform: none;
		     -o-transform: none;
			transform: none;
		width: 100%;
	}
	
	.zox-s8 span.zox-s-cat {
		font-size: .75rem;
	}
	
	.zox-s8 .zox-div3 span.zox-s-cat,
	.zox-s8 .zox-div4 span.zox-s-cat,
	.zox-s8 .zox-divr span.zox-s-cat {
		background: none;
		padding: 0;
	}
	
	.zox-s8 .zox-div3 .zox-art-title,
	.zox-s8 .zox-div4 .zox-art-title,
	.zox-s8 .zox-divr .zox-art-title {
		margin: 0;
		-webkit-transform: none;
		   -moz-transform: none;
		    -ms-transform: none;
		     -o-transform: none;
			transform: none;
		width: 140%;
	}
	
	.zox-s8 .zox-div3 h2.zox-s-title2,
	.zox-s8 #zox-home-widget-wrap .zox-div3 h2.zox-s-title2,
	.zox-s8 .zox-div4 h2.zox-s-title2,
	.zox-s8 #zox-home-widget-wrap .zox-div4 h2.zox-s-title2,
	.zox-s8 .zox-divr h2.zox-s-title2,
	.zox-s8 #zox-home-widget-wrap .zox-divr h2.zox-s-title2 {
		font-size: .875rem;
	}
	
	.zox-s8 .zox-div3 .zox-art-main h2.zox-s-title2,
	.zox-s8 .zox-div4 .zox-art-main h2.zox-s-title2,
	.zox-s8 .zox-divr .zox-art-main h2.zox-s-title2,
	.zox-s8 #zox-home-widget-wrap .zox-div3 .zox-art-main h2.zox-s-title2,
	.zox-s8 #zox-home-widget-wrap .zox-div4 .zox-art-main h2.zox-s-title2,
	.zox-s8 #zox-home-widget-wrap .zox-divr .zox-art-main h2.zox-s-title2 {
		font-size: 1.125rem;
	}
	
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid {
		grid-gap: 0;
	}
	
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-text {
		margin-bottom: -50px;
	}
	
	.zox-s8 .zox-widget-altimg-over .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-text-cont,
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-text-cont {
		margin: 0 auto;
		-webkit-transform: translateY(-60px);
		   -moz-transform: translateY(-60px);
		    -ms-transform: translateY(-60px);
		     -o-transform: translateY(-60px);
			transform: translateY(-60px);
		max-width: 670px;
	}
	
	.zox-s8 .zox-widget-altimg-over .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-title,
	.zox-s8 .zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-title {
		width: 90%;
	}
	
	.zox-s8 .zox-div1 h2.zox-s-title1,
	.zox-s8 .zox-div1 h2.zox-s-title2,
	.zox-s8 .zox-widget-altimg-wrap h2.zox-s-title2,
	.zox-div2 h2.zox-s-title1,
	.zox-div2 h2.zox-s-title2,
	.zox-div23 h2.zox-s-title1,
	.zox-div23 h2.zox-s-title2,
	.zox-s8 .zox-div23 h2.zox-s-title1-feat {
		font-size: 1.125rem;
	}
	
	.zox-o1.zox-div1 .zox-art-text {
		margin: 0;
		padding: 0 15px 15px;
	}
	
	.zox-o1.zox-div1 h3.zox-s-cat {
		position: relative;
			left: auto;
			top: auto;
	}
	
	.zox-o1.zox-div1 span.zox-s-cat {
		padding: 3px 10px;
	}
	
	.zox-o1.zox-div1 .zox-art-title {
		width: 90%;
	}
	
	.zox-o1.zox-div1 .zox-art-title,
	.zox-o1.zox-div1 .zox-art-text-cont {
		-webkit-transform: none;
		   -moz-transform: none;
		    -ms-transform: none;
		     -o-transform: none;
			transform: none;
	}
	
	.zox-o1.zox-div1 h2.zox-s-title1 {
		font-size: 1.125rem;
	}
	
	
	
	
	
	
	
	.zox-s4.zox-blog-grid.zox-divr .zox-art-wrap,
	.zox-s5.zox-blog-grid.zox-divr .zox-art-wrap {
		padding: 15px 0 0;
	}
	
	.zox-s1 .zox-art-text,
	.zox-s2.zox-div1 .zox-art-text,
	.zox-s2.zox-div2 .zox-art-text {
		padding: 15px 20px 20px;
	}
	
	.zox-s1 .zox-art-small .zox-art-text {
		padding: 0;
	}
	
	.zox-o1 .zox-art-text {
		padding: 0 15px 15px;
	}
	
	.zox-div3 .zox-art-grid,
	.zox-div4 .zox-art-grid,
	.zox-divr .zox-art-grid,
	.zox-divs .zox-art-grid,
	.zox-div3 .zox-widget-flex1-cont .zox-art-grid,
	.zox-div4 .zox-widget-flex1-cont .zox-art-grid,
	.zox-net1 .zox-divr .zox-art-grid,
	.zox-net2 .zox-divr .zox-art-grid {
		grid-gap: 15px;
		grid-template-areas: 'zox-img zox-text';
		grid-template-columns: 100px auto;
	}
	
	.zox-div4 .zox-art-img,
	#zox-home-widget-wrap .zox-div4 .zox-art-img,
	#zox-blog-main-wrap  .zox-art-img {
		padding-top: 0;
		min-height: 0;
		height: auto;
	}
	
	.zox-div4 .zox-art-img img,
	#zox-home-widget-wrap .zox-div4 .zox-art-img img,
	#zox-blog-main-wrap  .zox-art-img img {
		margin: 0;
		position: relative;
			left: auto;
			right: auto;
			top: auto;
			bottom: auto;
		min-width: 0;
	}
	
	.zox-s1 .zox-div3 .zox-art-text,
	.zox-s1 .zox-div4 .zox-art-text,
	.zox-s1 .zox-divr .zox-art-text,
	.zox-s1 .zox-divs .zox-art-text,
	.zox-div3 .zox-widget-flex1-cont .zox-art-text,
	.zox-div4 .zox-widget-flex1-cont .zox-art-text,
	.zox-blog-grid.zox-divr .zox-art-text,
	.zox-s6 .zox-divr .zox-art-text,
	.zox-s2 .zox-divr .zox-art-text {
		align-content: center;
		padding: 0 15px 0 0;
		text-align: left;
	}
	

	.zox-s1 span.zox-s-cat,
	.zox-s2 span.zox-s-cat {
		font-size: .625rem;
	}
	
	.zox-div3 h2.zox-s-title2,
	.zox-div4 h2.zox-s-title2,
	.zox-divr h2.zox-s-title2,
	.zox-divs h2.zox-s-title2,
	.zox-divs h2.zox-s-title3,
	.zox-feat-ent1-left .zox-art-mid h2.zox-s-title2,
	.zox-net1 .zox-divr h2.zox-s-title2,
	.zox-net2 .zox-divr h2.zox-s-title2,
	.zox-sport1 .zox-divr h2.zox-s-title2 {
		font-size: 1rem;
	}
	
	.zox-o4 .zox-art-text {
		padding: 30px 15px 15px;
	}
	
	.zox-s4 .zox-divr .zox-art-main .zox-art-text {
		padding: 15px 20px;
		position: relative;
	}
	
	.zox-s4 .zox-art-main h3.zox-s-cat {
		position: absolute;
			left: 0;
			top: -29px;
	}
	
	.zox-s4 .zox-art-main span.zox-s-cat {
		background: #fff;
		padding: 15px 20px 4px;
	}
	
	.zox-s3 .zox-art-mid  h3.zox-s-cat {
		margin: 0 0 4px;
		position: relative;
			top: auto;
			left: auto;
	}
	
	.zox-s3 .zox-art-mid  span.zox-s-cat {
		background: none;
		color: #000;
		font-size: .75rem;
		padding: 0;
	}

	.zox-o1 span.zox-s-cat {
		font-size: .75rem;
		padding: 6px 12px 5px
	}
	
	.zox-o4 span.zox-s-cat {
		padding: 0;
	}
	
	.zox-feat-ent1-left .zox-art-small h2.zox-s-title2,
	.zox-feat-ent1-left .zox-art-small h2.zox-s-title3 {
		font-weight: 700;
	}
	
	h3.zox-s-cat {
		margin: 0 0 5px;
	}
	
	.zox-s1 .zox-widget-side-trend-wrap .zox-art-text {
		padding: 0 0 0 41px;
	}
	
	.zox-div1 h2.zox-s-title2,
	.zox-div1t h2.zox-s-title2 {
		font-size: 5vw;
	}
	
	.zox-div1 h2.zox-s-title1,
	.zox-div1t h2.zox-s-title1,
	.zox-feat-net2-main-wrap.zox-div2 h2.zox-s-title2 {
		font-size: 6vw;
	}
	
	.zox-div2 h2.zox-s-title1-feat,
	.zox-div23 h2.zox-s-title1-feat {
		font-size: 1.5rem;
	}
	
	.zox-sport3 .zox-div2 h2.zox-s-title1-feat,
	.zox-sport3 .zox-div23 h2.zox-s-title1-feat {
		font-size: 6vw;
	}
	
	.zox-o4.zox-div1 .zox-art-text {
		padding: 30px 15px 15px;
	}
	
	
	
	
	
	#zox-home-main-wrap,
	#zox-home-widget-wrap {
		grid-gap: 30px;
	}
	
	.zox-widget-main-head {
		margin: 0 0 15px;
	}
	
	.zox-widget-altimg-wrap .zox-widget-altimg-cont {
		padding: 0;
	}
	
	.zox-widget-altimg-wrap .zox-widget-altimg-grid {
		grid-gap: 15px;
	}
	
	.zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-wrap:nth-child(odd) .zox-art-grid,
	.zox-widget-altimg-wrap .zox-widget-altimg-grid .zox-art-wrap:nth-child(even) .zox-art-grid {
		grid-template-areas:
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-widget-altimg-wrap .zox-art-img {
		padding-top: 0;
		height: auto;
		min-height: 0;
		max-height: 400px;
	}
	
	.zox-widget-altimg-wrap .zox-art-img img {
		position: relative;
			left: auto;
			right: auto;
			top: auto;
			bottom: auto;
		min-width: 0;
	}
	
	.zox-widget-altimg-wrap .zox-art-text-cont,
	.zox-widget-feat-wrap .zox-art-text-cont {
		margin: 0 auto;
	}
	
	.zox-widget-altimg-wrap .zox-art-text {
		padding: 15px 20px 20px;
	}
	
	.zox-s3 .zox-widget-altimg-wrap .zox-widget-altimg-grid h3.zox-s-cat {
		margin: 0;
		position: absolute;
			left: 0;
			top: 0;
	}
	
	.zox-s4 .zox-widget-altimg-wrap .zox-art-text {
		padding: 15px 20px;
	}
	
	.zox-s4 .zox-widget-altimg-wrap .zox-art-text-cont {
		max-width: none;
	}
	
	.zox-s4 .zox-widget-altimg-wrap h3.zox-s-cat {
		margin: 0;
		position: absolute;
			left: 0;
			top: -29px;
	}
	
	.zox-s4 .zox-widget-altimg-wrap span.zox-s-cat {
		background: #fff;
		padding: 15px 20px 4px;
	}
	
	.zox-widget-flex1-wrap,
	.zox-widget-altimg-wrap,
	#zox-main-blog-wrap,
	.zox-home-right-wrap {
		padding: 0 15px;
	}
	
	.zox-home-right-wrap {
		float: left;
		width: 100%;
	}
	
	.zox-div3 .zox-widget-flex1-cont,
	.zox-div4 .zox-widget-flex1-cont,
	.zox-div4.zox-widget-flex1-ad .zox-widget-flex1-cont {
		grid-row-gap: 15px;
		grid-template-columns: 100%;
	}
	
	.zox-div3 .zox-art-mid h2.zox-s-title2,
	.zox-div3 .zox-art-mid h2.zox-s-title2,
	.zox-div4 .zox-art-mid h2.zox-s-title2,
	.zox-div4 .zox-art-mid h2.zox-s-title2 {
		font-size: 1rem;
	}
	
	.zox-widget-featl-grid {
		grid-template-columns: 100%;
	}
	
	.zox-widget-featl-sub {
		margin: 15px 0 0;
		padding: 0 15px;
	}
	
	.zox-divs .zox-widget-side-trend-wrap .zox-art-grid {
		grid-gap: 0;
		grid-template-areas: 'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-s3 .zox-divs .zox-widget-side-trend-wrap .zox-art-grid {
		grid-gap: 15px;
		grid-template-areas: 'zox-img zox-text';
		grid-template-columns: 100px auto;
	}
	
	.zox-div3 .zox-art-main .zox-art-grid,
	.zox-div4 .zox-art-main .zox-art-grid,
	.zox-divs .zox-art-main .zox-art-grid,
	.zox-divr .zox-art-main .zox-art-grid {
		grid-gap: 0;
		grid-template-areas:
			'zox-img'
			'zox-text';
		grid-template-columns: 100%;
	}
	
	.zox-div3 .zox-art-main .zox-art-text,
	.zox-div4 .zox-art-main .zox-art-text,
	.zox-divs .zox-art-main .zox-art-text,
	.zox-divr .zox-art-main .zox-art-text {
		padding: 15px 20px 20px;
	}
	
	.zox-feat-ent1-left .zox-art-main .zox-art-text {
		padding: 15px 0 0;
	}
	
	.zox-s1 .zox-art-main .zox-art-text {
		text-align: center;
	}
	
	.zox-div3 .zox-art-main h2.zox-s-title2,
	.zox-div4 .zox-art-main h2.zox-s-title2,
	.zox-divs .zox-art-main h2.zox-s-title2,
	.zox-divr .zox-art-main h2.zox-s-title2,
	.zox-widget-altimg-wrap h2.zox-s-title2 {
		font-size: 5.25vw;
	}
	
	.zox-blog-grid,
	.zox-blog-grid.zox-s8.zox-divr {
		grid-gap: 15px;
	}
	
	.zox-post-soc-scroll {
		margin: 0;
		top: auto;
		bottom: 0;
		width: 100%;
		height: 50px;
	}
	
	ul.zox-post-soc-list li {
		border-left: 1px solid rgba(255,255,255,.15);
		border-top: none;
		width: 20%;
	}
	
	ul.zox-post-soc-list a:first-child li {
		border-left: none;
	}
	
	.zox-post-ad {
		background-position: center center !important;
	}
	
	.zox-article-wrap {
		grid-gap: 20px;
		padding: 20px 0;
	}
	
	.zox-post-head-wrap,
	.zox-post-width {
		padding: 0 20px;
	}
	
	.zox-post-title-wrap .zox-post-width {
		padding: 0;
	}
	
	h1.zox-post-title {
		font-size: 8vw;
	}
	
	span.zox-post-excerpt {
		margin: 10px 0 0;
	}
	
	span.zox-post-excerpt p {
		font-size: 1rem;
		line-height: 1.25rem;
	}
	
	.zox-post-info-wrap {
		grid-gap: 15px;
		grid-template-columns: 100%;
		justify-content: center;
		margin: 15px 0 0;
	}
	
	.zox-author-info-wrap {
		font-size: .75rem;
	}
	
	.zox-post-byline-wrap {
		justify-content: center;
	}
	
	ul.zox-post-soc-stat-list {
		justify-content: center;
	}
	
	ul.zox-post-soc-stat-list li {
		float: none;
	}
	
	.zox-post-body .zox-post-ad-wrap {
		margin: 50px 0 40px -20px;
		width: calc(100% + 40px);
	}
	
	.zox-post-body p,
	.zox-post-body ul li,
	.zox-post-body ol li {
		font-size: 1rem;
	}
	
	.zox-post-ad-wrap span.zox-ad-label {
		background: #000;
		padding: 5px 0;
	}
	
	.zox-search-but-wrap {
		top: 15px;
		right: 15px;
	}
	
	.zox-search-cont {
		margin: -15vh 0 0 -40%;
		width: 80%;
	}
	
	p.zox-search-p {
		font-size: 5.5vw;
		margin: 0 0 15px;
	}
	
	.zox-search-box {
		height: 50px;
	}
	
	#zox-search-input {
		font-size: 20px;
		padding: 15px;
		width: 70%;
	}
	
	#zox-search-form #zox-search-submit {
		font-size: .875rem;
		width: 30%;
	}
	
	#zox-foot-wrap {
		padding: 30px 20px;
	}
	
	.zox-foot-grid {
		grid-gap: 20px;
		grid-template-columns: 100%;
		grid-template-areas:
			'foot-right'
			'foot-left';
		justify-content: center;
	}
	
	.zox-foot-left-wrap {
		display: grid;
		grid-area: foot-left;
		grid-gap: 30px;
		grid-template-columns: 100%;
		justify-content: center;
	}
	
	.zox-foot-left {
		grid-gap: 20px;
	}
	
	.zox-foot-right-wrap {
		display: grid;
		grid-area: foot-right;
		justify-content: center;
	}
	
	ul.zox-foot-soc-list li {
		margin: 0 0 0 3px;
	}
	
	ul.zox-foot-soc-list li a {
		font-size: 12px;
		width: 30px;
		height: 30px;
	}
	
	ul.menu-footer-menu,
	.zox-foot-copy,
	.zox-foot-menu {
		display: grid;
		justify-content: center;
		text-align: center;
	}
	
	.zox-foot-menu ul li {
		float: none;
	}
	
	.zox-vid-fixed {
		-webkit-box-shadow: none;
		   -moz-box-shadow: none;
		    -ms-box-shadow: none;
		     -o-box-shadow: none;
			box-shadow: none;
		margin-top: 0;
		position: relative !important;
			right: auto;
			bottom: auto;
		width: 100% !important;
		height: auto !important;
		z-index: auto;
	}
	
	.zox-post-video1-wrap {
		margin: 0;
		padding: 15px 0;
	}
	
	.zox-post-video1-cont .zox-post-width {
		padding: 0 15px;
	}
	
	.zox-post-video1-grid {
		grid-gap: 15px;
		grid-template-areas:
			'zox-title'
			'zox-video';
		grid-template-columns: 100%;
	}
	
	.zox-post-video1-left {
		display: grid;
		grid-area: zox-video;
	}

	.zox-post-video1-right {
		display: grid;
		grid-area: zox-title;
		margin: 0 auto;
		max-width: 600px;
		text-align: center;
	}
	
	.zox-post-video1-right h1.zox-post-title {
		font-size: 1.5rem;
	}
	
	.zox-post-video1-right span.zox-post-excerpt p {
		font-size: .875rem;
	}
	
	.zox-post-video1-right .zox-post-byline-wrap,
	.zox-post-video1-right ul.zox-post-soc-stat-list {
		justify-content: center;
	}
	
	.zox-post-video1-right .zox-post-info-wrap {
		grid-gap: 20px;
	}
	
	.zox-post-more-grid {
		grid-gap: 15px;
		grid-template-columns: 100%;
	}
	
	.zox-post-more-grid.zox-div4 .zox-art-img {
		padding-top: 0;
	}
	
	.zox-post-more-grid.zox-div4 .zox-art-text {
		display: grid;
		align-content: center;
		padding: 0 15px 0 0;
	}
	
	span.zox-widget-main-title {
		font-size: 1.125rem;
	}
	
	.zox-tech2 .zox-divr .zox-art-grid,
	.zox-tech3 .zox-divr .zox-art-grid {
		grid-template-columns: 100px auto;
	}
	
	.zox-tech2 .zox-divr .zox-art-main .zox-art-grid,
	.zox-tech3 .zox-divr .zox-art-main .zox-art-grid {
		grid-template-columns: 100%;
	}
	
	.zox-tech2 .zox-divr .zox-art-mid h2.zox-s-title2,
	.zox-tech3 .zox-divr .zox-art-mid h2.zox-s-title2 {
		font-size: 1rem;
	}
	
	.zox-auto-post-grid {
		grid-template-columns: 100%;
	}
	
	.zox-alp-side {
		display: none;
	}
	
	.zox-auto-post-main .zox-post-more .zox-div4 .zox-art-img img {
		position: relative;
			top: 0;
	}
	
	.single #zox-main-body-wrap {
		padding: 0 0 40px;
	}
	
	.zox-auto-post-main h1.zox-post-title {
		font-size: 8vw;
	}
	
	.zox-auto-post-main .zox-post-more-grid {
		grid-template-columns: 100%;
	}
	
	.zox-feat-sports3-sub .zox-art-wrap {
		margin: 0;
	}
	
	.zox-sport3 .zox-divr p.zox-s-graph {
		display: none;
	}
	
	#zox-comments-button {
		margin: 40px 0 0;
	}
	
	#zox-lead-bot {
		padding: 0;
	}
	
	.zox-authors-wrap {
		margin: 0 auto 20px;
		padding: 0;
	}
	
	.zox-authors-grid {
		grid-gap: 20px;
	}
	
	.zox-authors-cont {
		grid-gap: 15px;
		grid-template-columns: 100%;
		justify-content: center;
		padding: 0 0 20px;
		text-align: center;
	}
	
	.zox-authors-left {
		justify-content: center;
		width: 100%;
	}
	
	.zox-authors-left img {
		width: 100px;
		height: 100px;
	}
	
	.zox-authors-text {
		grid-gap: 15px;
	}
	
	span.zox-authors-name a {
		font-size: 1.5rem;
	}
	
	p.zox-authors-desc {
		font-size: .875rem;
	}
	
	h2.zox-authors-latest {
		font-size: 1rem;
	}
	
	.zox-inf-more-wrap {
		margin-top: 15px;
	}
	
	.zox-s6 .zox-widget-tab-wrap .zox-art-text,
	.zox-alp-width,
	.zox-post-title-wrap {
		padding: 0;
	}
	
	.zox-post-body h1,
	.zox-post-body h2,
	.zox-post-body h3,
	.zox-post-body h4,
	.zox-post-body h5,
	.zox-post-body h6,
	.comment-inner h1,
	.comment-inner h2,
	.comment-inner h3,
	.comment-inner h4,
	.comment-inner h5,
	.comment-inner h6 {
		padding: 1.5rem 0 1rem;
	}
	
	#zox-feat-ent2-wrap {
		margin: 0;
	}
	
	.zox-s8 .zox-divr .zox-art-grid {
		grid-gap: 15px;
	}
	
	#zox-author-page-top {
		margin: 0 0 15px;
		padding: 30px 15px;
	}
	
	.zox-author-top {
		grid-gap: 20px;
		grid-template-columns: 100%
	}
	
	#zox-author-top-left,
	#zox-author-top-right {
		justify-content: center;
		text-align: center;
		width: 100%;
	}
	
	#zox-author-top-left img {
		border: 3px solid #ddd;
		width: 100px;
	}
	
	h1.zox-author-top-head {
		font-size: 1.5rem;
	}
	
	span.zox-author-page-desc {
		font-size: .875rem;
	}
	
	ul.zox-author-page-list li {
		font-size: 14px;
		margin: 0 0 0 3px;
		padding-top: 8px;
		width: 30px;
		height: 30px;
	}
	
	.zox-blog-grid.zox-div4,
	.zox-blog-grid.zox-div3,
	.home .zox-blog-grid.zox-div4 {
		grid-template-columns: 100%;
	}
	
	.zox-blog-grid.zox-div4 .zox-art-img {
		padding-top: 0;
		height: 100px;
	}

	.zox-blog-grid.zox-div4 .zox-art-main .zox-art-img {
		padding-top: 56.25%;
		height: auto;
	}
	
	.zox-s6 .zox-blog-grid.zox-div4 .zox-art-text {
		align-content: center;
		padding: 0 15px 0 0;
	}
	
	.zox-blog-grid.zox-div3 .zox-art-grid,
	.zox-s6 .zox-blog-grid.zox-div3 .zox-art-grid {
		grid-gap: 15px;
		grid-template-columns: 100px auto;
	}

	.zox-blog-grid.zox-div3 .zox-art-main .zox-art-grid {
		grid-gap: 0;
		grid-template-columns: 100%;
	}
	
	.archive #zox-home-main-wrap,
	.search #zox-home-main-wrap {
		grid-gap: 30px;
	}
	
	.wp-block-embed-youtube {
		margin: 0 0 20px -20px;
		width: calc(100% + 40px);
	}

	.zox-woo-wrap {
		padding: 0 15px;
	}

	.zox-woo-grid {
		grid-gap: 0;
		grid-template-columns: 100%;
	}

	#zox-woo-side-wrap {
		display: none;
	}

	.zox-widget-flex1-wrap.zox-widget-flex1-ad {
		grid-template-columns: 100%;
	}

	.zox-widget-flex1-wrap.zox-divr .zox-art-mid .zox-art-grid {
		grid-template-columns: 100px auto;
	}

	.zox-widget-flex1-wrap.zox-divr .zox-art-mid .zox-art-text {
		padding: 0 15px 0 0;
	}
	
	.home .zox-blog-grid.zox-div3 {
		grid-template-columns: 100%;	
	}
	
	.zox-body-blur {
		-webkit-filter: none;
		   -moz-filter: none;
		    -ms-filter: none;
		     -o-filter: none;
			filter: none;
	}
	
	.zox-s8 .zox-divr h3.zox-s-cat,
	.zox-s8 .zox-div3 .zox-art-mid h3.zox-s-cat,
	.zox-s8 .zox-div4 .zox-art-mid h3.zox-s-cat {
		margin: 0 0 5px 10px;
	}

	.zox-soc-more-open.zox-soc-more-scroll {
		bottom: 70px;
	}

	.zox-soc-more-scroll {
		left: auto;
		right: 20px;
	}

	.zox-soc-more-scroll:before {
		border-top: 10px solid #000;
		border-left: 10px solid transparent;
		border-right: none;
		bottom: -10px;
		left: auto;
		right: 0;
	}

	.zox-whats-mob {
		display: block;
	}

	.zox-whats-main {
		display: none;
	}
	
	.zox-post-type {
		font-size: 12px;
		width: 40px;
		height: 40px;
	}

	.zox-post-type,
	.zox-feat-left-wrap .zox-art-main .zox-post-type {
		margin: 0;
		left: 15px;
		top: 15px;
	}
	
	.zox-feat-left-wrap .zox-art-small .zox-post-type,
	.zox-art-mid .zox-post-type,
	.zox-art-small .zox-post-type,
	.zox-main-blog .zox-post-type {
		font-size: 10px;
		margin: -15px 0 0 -15px;
		width: 30px;
		height: 30px;
		left: 50%;
		top: 50%;
	}
	
	.zox-ent3 #zox-main-blog-wrap .zox-post-type {
		margin: -15px 0 0 -15px;
	}
	
	.zox-net1 .zox-art-mid .zox-post-type,
	.zox-net2 .zox-art-mid .zox-post-type,
	.zox-net2 .zox-art-small .zox-post-type,
	.zox-net2 .zox-main-blog .zox-post-type {
		margin: 0;
		left: auto;
		top: auto;
		right: 0;
		bottom: 0;
	}
	
}/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */@font-face{ font-family:dearflip;src:url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SB/AAAAC8AAAAYGNtYXDV1NUQAAABHAAAAGxnYXNwAAAAEAAAAYgAAAAIZ2x5ZvV0Ah0AAAGQAAASdGhlYWQnoblUAAAUBAAAADZoaGVhB8ID8QAAFDwAAAAkaG10eLYAAAAAABRgAAAAwGxvY2FSqk12AAAVIAAAAGJtYXhwADoAmgAAFYQAAAAgbmFtZWTWXU4AABWkAAABknBvc3QAAwAAAAAXOAAAACAAAwP1AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADq0QPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAUAAAABAAEAADAAAAAQAg6Sjqk+rK6tH//f//AAAAAAAg6QDqk+rK6tH//f//AAH/4xcEFZoVZBVeAAMAAQAAAAAAAAAAAAAAAAAAAAAAAQAB//8ADwABAAD/wAAAA8AAAgAANzkBAAAAAAEAAP/AAAADwAACAAA3OQEAAAAAAQAA/8AAAAPAAAIAADc5AQAAAAABAAD/wAKSA8AABQAAJQcJARcHApI8/wABADzE5zwBAAEAPMQAAAAAAQAA/8ACqgPAAAUAACU3JzcJAQFuxMQ8AQD/AOfExDz/AP8AAAAAAAEAAP/AAwADwAAFAAABFzcXCQEBPMTEPP8A/wACPcTEPP8AAQAAAAABAAD/wAMAA8AABQAAAScJAQcnATw8AQABADzEARk8AQD/ADzEAAAAAQAA/8AB8gPAAAUAAAkCBwkBAfL+pgFaTP5aAaYDBf6m/qZMAaYBpgAAAAABAAD/wAQAA8AABQAAJQkBNwkBAg4BWv6mTAGm/lpRAVoBWkz+Wv5aAAAAAAIAAP/AAxIDwAADAAkAAAEzESMlBwkBFwcBAFZWAhI8/wABADzEAqv+ADw8AQABADzEAAACAAD/wAMAA8AAAwAJAAABMxEjATcJASc3AqpWVv5EPAEA/wA8xAKr/gABxDz/AP8APMQAAQAA/8ADKgPAAAIAAAkCAVYB1P4sAtX+1v7WAAIAAP/AAwADwAADAAcAAAEzESMhETMRAlaqqv6qqgLV/awCVP2sAAACAAD/wANWA8AAAgAFAAAJAREhCQEB6gFs/oD+lAFsAasBAP4AAQABAAAAAAIAAP/AA5YDwAACAAUAAAkCIREBAioBbP6U/oABbAKr/wD/AAIA/wAAAAAAAQAA/8ADKgPAAAsAAAEHFwcnByc3JzcXNwMq7u487u487u487u4Cme7uPO7uPO7uPO7uAAMAAP/AA6oDwAAPAB8AKwAAJTI3NjU0JyYjIgcGFRQXFhMyFxYVFAcGIyInJjU0NzYXFTMVIxUjNSM1MzUCAIxlZWVljIxlZWVljLB9fX19sLB9fX192qysVKysVWVljIxlZWVljIxlZQMAfX2wsH19fX2wsH191KxUrKxUrAAAAwAA/8ADqgPAAA8AHwAjAAAlMjc2NTQnJiMiBwYVFBcWEzIXFhUUBwYjIicmNTQ3NgMhFSECAIxlZWVljIxlZWVljLB9fX19sLB9fX19JgGs/lRVZWWMjGVlZWWMjGVlAwB9fbCwfX19fbCwfX3+gFQAAAABAAD/wAMqA8AACwAAASERIxEhNSERMxEhAyr/AFT/AAEAVAEAAYH/AAEAVAEA/wAAAAAAAQAA/8ADKgPAAAMAAAEhNSEDKv2sAlQBgVQAAAYAAP/AA4ADwAADAAcACwAbACsAOwAAASEVIRE1IRUBNSEVJTIXFhUUBwYjIicmNTQ3NhMyFxYVFAcGIyInJjU0NzYTMhcWFRQHBiMiJyY1NDc2ASoCVv2qAlb9qgJW/SoaExMTExoaExMTExoaExMTExoaExMTExoaExMTExoaExMTEwLVVP8AVFT/AFRUahMTGhoTExMTGhoTEwIAEhIcHBISEhIcHBIS/wASEhwcEhISEhwcEhIAAAAABAAA/8ADAAPAAAMABwALAA8AAAEzNSMhFTM1AzM1IwUzNSMBAODgASDg4ODg/uDg4AHL4ODg/gDg4OAACAAA/8ADgAPAAAMABwALAA8AEwAXABsAHwAAJTUjFQMhESEBNSMVAyERIQM1IxUDIREhATUjFQMhESEDKqpWAVb+qgEAqlYBVv6qqqpWAVb+qgEAqlYBVv6qgaqqAQD+qgIAqqoBAP6q/qyqqgEA/qoCAKqqAQD+qgAAAAkAAP/AA1YDwAADAAcACwAPABMAFwAbAB8AIwAAJTUzFQM1MxUBNTMVNzMVIwE1MxUhNTMVAzUzFTM1MxUBNTMVAqqsrKz+VKxUrKz/AKz+VKysrFSs/lSsVaysAQCsrAEArKysrP8ArKysrP8ArKysrAIArKwAAAIAAP/AA9YDwAAJACkAACURJiMiBxE2MzIDMhcRFAcGIyInJiMiByYjIgciBwYjIicmNRE2MzIXNgOAQlSCaGiCTk6YVAcHCAYEUnqCaFaUbGACAwMCCAcHVpaUVlaVAewUQP4WQAJAQP2SCAcHAixAQC4BAQYGCAJyQEBAAAAABQAA/8AD1gPAAAkAEwAdACcARwAAATIXFSYjIgc1Nic2MzIXFSYjIgc3Igc1NjMyFxUmExEmIyIHETYzMgMyFxEUBwYjIicmIyIHJiMiByIHBiMiJyY1ETYzMhc2Auo0OChEeEhMTFRsNDgoRHhIwHhIUHA0ODBaQlSCaGiCTk6YVAcHCAYEUnqCaFaUbGACAwMCCAcHVpaUVlYBRwpACipIIlAiCkAKKpwqRiQKQgz+qgHsFED+FkACQED9kggHBwIsQEAuAQEGBggCckBAQAAAAAACAAD/wANWA8AAAgATAAABMyclIQERFAcGIyEiJyY1EzQ3NgIq7Oz+1gFWAQAaGiL+ACIaGgIZGQIr6kD/AP4AIhkZGRkiAqwiGRkAAwAA/8ADagPAAAMAEwAsAAABMxUjFzI3NjU0JyYjIgcGFRQXFiEXByc1JwYjIicmNTQ3NjMyFxYVFAcGBxcBKtbWbFA4ODg4UFA4ODg4AVDUQNQMTGh0UVFRUXR0UFAUFBoMAisqrDg4UFA4ODg4UFA4ONRA1CIMQlBQdHRRUVFRdCo1NSAMAAMAAP/AA2oDwAALABsANAAAASMVIzUjNTM1MxUzBzI3NjU0JyYjIgcGFRQXFiEXByc1JwYjIicmNTQ3NjMyFxYVFAcGBxcCAFYqVlYqVmpQODg4OFBQODg4OAFQ1EDUDExodFFRUVF0dFBQFBQaDAIBVlYqVlbWODhQUDg4ODhQUDg41EDUIgxCUFB0dFFRUVF0KjU1IAwAAwAA/8ADVgPAAA8AHwAvAAABMhcWFRQHBiMiJyY1NDc2ITIXFhUUBwYjIicmNTQ3NiEyFxYVFAcGIyInJjU0NzYCACIaGhoaIiIaGhoaASIiGhoaGiIiGhoaGv4iIhoaGhoiIhoaGhoCARoaIiIaGhoaIiIaGhoaIiIaGhoaIiIaGhoaIiIaGhoaIiIaGgAAAgAA/8ADVgPAAAMACgAANyEVIQEHJzMRMxGqAqz9VAIAqqqAVIFWAVasrAGq/lYAAwAA/8ADgAPAABEAGAAeAAABFhcWFRQHBgc1Njc2NTQnJicTFAcRFhcWJTM3EScjAlaCVFRUVIJeOzs7O15qaiwfH/3AqtbWqgMhHGlpiIhpaRxYHE5OZmZOThz+4ng0AVgWMjJO1v1U1gAAAQAA/8ADgAPAADMAACUyFxYVFAcGIyInJjU0NyUGIyInJjU0NzYzMhclJjU0NzYzMhcWFRQHBiMiJwUWFRQHBTYDADQkJCUlMjIlJQL+0iYyNCYmJiY0MiYBLAQmJjQ0JiYmJjQwKP7UBAQBMCT9JSUyNCUlJSU0FAiwIiYmNDQmJiKuFAo0JiYmJjQ0JiYksBQKChSwIAAFAAD/wAOqA8AAAwANABcAIQArAAABESERExUjIicmPQEzFSUzFRQHBisBNTMBIzU0NzY7ARUjJTMyFxYdASM1IwMA/gAqgCIZGVQCrFQZGSKAgP1UVBkZIoCAAiyAIhkZVIACVf6sAVT+VlYaGiJWVlZWIhoaVgGqViIaGlZWGhoiVlYAAAAABAAA/8ADgAPAAAYADQAUABsAAAERITcnNxcFIREXNxcHAxEhBxcHJyUhEScHJzcDgP8AYnw+ev5i/wBiej58ngEAYnw+egGeAQBiej58ASv/AGJ6PnyeAQBifD56AZ4BAGJ6Pnye/wBifD56AAAAAAEAAP/AAqsDwAAXAAABMxUjESMRIzUzNTQ2Nz4BOwEVIyIGHQECK4CAgICAGBcYPCNaWhAWAgCA/tUBK4A2JlUaGxqAFhBaAAIAAP/AA84DwAALAA8AAAEzCQEhCwEjCQEhExMzASMDCo7+ywFr/uTf/o0BSf6lASPJt07+B1QDS/6f/iEBI/7dAXkBx/72/h4CnAAEAAD/wAOqA8AAHQAtAD0AQQAAATIXFhUUBwYVIzQ3Njc2NzY1NCcmIyIHBhUjNDc2EzI3NjU0JyYjIgcGFRQXFhMyFxYVFAcGIyInJjU0NzYTNTMVAgBGMjJAQFQUFBgYFBQaGiIiGhpUMjJGjGVlZWWMjGVlZWWMsH19fX2wsH19fX2GVAKrMjJGNjk5Li4hIQ8PFhYcIhkZGRkiRjIy/aplZYyMZWVlZYyMZWUDAH19sLB9fX19sLB9ff1WVlYAAAAAAwAA/8ADqgPAABwAIAAwAAABNjU0JyYjIgcGFTM0NzYzMhcWFRQPAQYdATM0NwM1IxUTMhcWFRQHBiMiJyY1NDc2AoIoMjJGRjIyVBoaIiIaGho0MlQyMlQqsH19fX2wsH19fX0Byyg4RjIyMjJGIhoaGhoiIho2NkIWQjb+3lRUAtR9fbCwfX19fbCwfX0AAgAA/8ADagPAAA8AKAAAATI3NjU0JyYjIgcGFRQXFiEXByc1JwYjIicmNTQ3NjMyFxYVFAcGBxcBllA4ODg4UFA4ODg4AVDUQNQMTGh0UVFRUXR0UFAUFBoMAVU4OFBQODg4OFBQODjUQNQiDEJQUHR0UVFRUXQqNTUgDAAAAAAEAAD/wAOqA8AAAwATABcAJwAAARUhNQEyNzY1NCcmIyIHBhUUFxYDNSEVATIXFhURIxUhNSMRNDc2MwMA/gACKhINDQ0NEhIMDAwMbv6sAdQ0Jiaq/gCqJiY0Ayuqqv6ADAwSEg0NDQ0SEgwM/tbU1AHUJiY0/wCqqgEANCYmAAMAAP/AA6oDwAACAAcAGwAAASUhAREFJREBMhcWFREUBwYjISInJjURNDc2MwIAAVb9VAKs/qr+qgKsIhkZGRki/VQiGRkZGSIB1db+AAGq1NT+VgJWGhoi/gAiGhoaGiICACIaGgAAAgAA/8ADqgPAAAUAGQAAATUFJRUFATIXFhURFAcGIyEiJyY1ETQ3NjMDVv6q/qoBVgFWIhkZGRki/VQiGRkZGSICVVbW1lbUAYAaGiL+ACIaGhoaIgIAIhoaAAADAAD/wAOAA8AAAwAHAAsAABMhFSEVNSEVBTUhFYADAP0AAwD9AAMAAqtW1FRU1lZWAAAAAwAA/6sD/gPAACgAUACXAAABJicuAScmIyIHDgEHBhUUFhcDJR4BMzE4ATEyNz4BNzY1NCcuAScmJwExIiYvAQc3Jy4BNTQ3PgE3NjMyFx4BFxYXFhceARcWFRQHDgEHBiMTLgEnJiIHDgEHDgEnLgEnLgEnJjY3PgE3PgE3NiYnLgEnLgEjKgEjIgYHDgEVFBYXFhceARcWFx4BFxYyNz4BNz4BJy4BJwNpJCkqWzExM2lcXYkoKCIiSAENN3tAaVxdiigoCgomGxwk/pk5bTEPoCsKICEiIXJNTVcrKClMIiMeHRcXIAgIISJyTU1X5wlECQkNBwYcBgYMCQo4JB0kBgYHBQQKBQQFAwMBAwIdCAcQBQYMBwYTCAkkLwUCERA4JycwFiQOFygREjsICAICAwwKAxYkHBsmCgooKIpcXWlDgTn++UYeICgoil1caTMxMVspKiT88x4dCSqcEDJyPFdNTXMhIQgIIBcXHh0jIkwpKSpXTU1zISEBPAUhAwMJCiEHBgIFBRkhGTUKCQwEBQwGBQkHBgsFBUYTEwMGCQoxLy9OBgMXFzwfHxUJDQUHAgMjFxYiBAQGBQAAAAMAAP/AA8ADwAAZAB0AKQAAATMVMz4BMzIXHgEXFhURIxE0JiMiBhURIxEhMxEjExQGIyImNTQ2MzIWAYCxAxJZQ0crKzAJCLkZR0gmuf7AwMDAOCgoODgoKDgCK1shOhUUSDExOf7MARExZFk3/uoCQP3AAuAoODgoJzk5AAAAAQAA/8ADvAPAAG4AAAEiBw4BBwYVFBceARcWFy4BNzY3PgE3NjEwJjU0NjMyFhUUBgcGFjMyNjU0JiMiBhUUFhceAQcOAQcOAScuATU0Nz4BNzYzMhceARcWFRQHDgEHBiMiJicwBgcOAQceATMyNz4BNzY1NCcuAScmIwIAXFFQeSMjFRVLNDQ9AgMHAwgJEgcHDS8hHBwbCggpITtQZ1JeahMOAwEBAwgBAgcGKjATE0o2N0g5MjJKFRURET0rKjIiOQsXBAgiDR9CIlxRUHkjIyMjeVBRXANmIyJ5UVBcR0BAbCkpGBpIHQ0kJEweHSUdLj4lGhxQJyEvcVpQZHdJHTgRAwYDCyMFBgMDFGcxNTAxShYWExNFLy83OTIzShYWHxRaDx1BFgoKIyN4UVFbXFFReSIjAAAAAAEAAAABAABPPPplXw889QALBAAAAAAA4kE6dgAAAADiQTp2AAD/qwQAA8AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAADAEAAAAAAAAAAAAAAACAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAoAFAAeADIARgBaAG4AhACaALQAzgDcAPABBgEcATYBdgGwAcoB2AI2AlQCkgLOAw4DeAOeA+IELgR2BI4ExAUQBVQFjAWwBdYGOAaABsAHAAc0B2IHfAhcCJwJOgAAAAEAAAAwAJgACQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAIAAAAAQAAAAAAAgAHAGkAAQAAAAAAAwAIADkAAQAAAAAABAAIAH4AAQAAAAAABQALABgAAQAAAAAABgAIAFEAAQAAAAAACgAaAJYAAwABBAkAAQAQAAgAAwABBAkAAgAOAHAAAwABBAkAAwAQAEEAAwABBAkABAAQAIYAAwABBAkABQAWACMAAwABBAkABgAQAFkAAwABBAkACgA0ALBkZWFyZmxpcABkAGUAYQByAGYAbABpAHBWZXJzaW9uIDEuMABWAGUAcgBzAGkAbwBuACAAMQAuADBkZWFyZmxpcABkAGUAYQByAGYAbABpAHBkZWFyZmxpcABkAGUAYQByAGYAbABpAHBSZWd1bGFyAFIAZQBnAHUAbABhAHJkZWFyZmxpcABkAGUAYQByAGYAbABpAHBGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA") format("truetype");font-weight:400;font-style:normal;font-display:swap; }.df-ui-btn[class*=" ti-"]:before,.df-ui-btn[class^=ti-]:before,[class*=" df-icon-"]:before,[class^=df-icon-]:before{font-family:dearflip!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.df-icon-arrow-left:before{content:"\e900"}.df-icon-arrow-right:before{content:"\e901"}.df-icon-arrow-down:before{content:"\e902"}.df-icon-arrow-up:before{content:"\e903"}.df-icon-arrow-left1:before{content:"\e904"}.df-icon-arrow-right1:before{content:"\e905"}.df-icon-first-page:before{content:"\e906"}.df-icon-last-page:before{content:"\e907"}.df-icon-play-popup:before,.df-icon-play:before{content:"\e908"}.df-icon-pause:before{content:"\e909"}.df-icon-fast-rewind:before{content:"\e90a"}.df-icon-fast-forward:before{content:"\e90b"}.df-icon-close:before{content:"\e90c"}.df-icon-add-circle:before{content:"\e90d"}.df-icon-minus-circle:before{content:"\e90e"}.df-icon-add:before{content:"\e90f"}.df-icon-minus:before{content:"\e910"}.df-icon-list:before{content:"\e911"}.df-icon-grid:before{content:"\e912"}.df-icon-grid-view:before{content:"\e913"}.df-icon-apps:before{content:"\e914"}.df-icon-double-page:before{content:"\e915"}.df-icon-book:before{content:"\e916"}.df-icon-file:before{content:"\e917"}.df-icon-zoom-out:before{content:"\e918"}.df-icon-zoom-in:before{content:"\e919"}.df-icon-more:before{content:"\e91a"}.df-icon-download:before,.df-ui-btn.ti-download:before{content:"\e91b"}.df-icon-volume:before{content:"\e91c"}.df-icon-share:before{content:"\e91d"}.df-icon-fit-screen:before{content:"\e91e"}.df-icon-fullscreen:before{content:"\e91f"}.df-icon-facebook:before{content:"\e920"}.df-icon-twitter:before{content:"\e921"}.df-icon-help-outline:before{content:"\e922"}.df-icon-help:before{content:"\e923"}.df-icon-search:before,.df-ui-btn.ti-search:before{content:"\e924"}.df-icon-print:before,.df-ui-btn.ti-printer:before{content:"\e925"}.df-icon-mail-outline:before{content:"\e926"}.df-icon-mail:before{content:"\e927"}.df-icon-menu:before{content:"\e928"}.df-icon-linkedin:before{content:"\eaca"}.df-icon-pinterest:before{content:"\ead1"}.df-icon-whatsapp:before{content:"\ea93"}/*! DEARVIEWER*/.df-container .df-loading-icon,.df-fetch-pdf .df-loading-info,.df-flipbook-3d.df-loading:after,.df-hybrid-viewer:not(.df-zoom-active) .df-loading+.df-zoomview::after,.df-page.df-loading:after,.df-searching .df-search-info,.df-thumb.df-thumb-requested:before{background-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin: auto; background: none; display: block; shape-rendering: auto;' width='48px' height='48px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Ccircle cx='50' cy='50' fill='none' stroke='%2307abcc' stroke-width='9' r='30' stroke-dasharray='141.37166941154067 49.12388980384689'%3E%3CanimateTransform attributeName='transform' type='rotate' repeatCount='indefinite' dur='1s' values='0 50 50;360 50 50' keyTimes='0;1'%3E%3C/animateTransform%3E%3C/circle%3E%3C!-- %5Bldio%5D generated by https://loading.io/ --%3E%3C/svg%3E")}.df-hidden{display:none!important}.df-text-align-center,.has-text-align-center{text-align:center}.df-app{min-height:220px;position:relative;overflow:hidden;width:100%;image-rendering:auto;direction:ltr;line-height:1.5}.df-container{height:100%}.df-container *{box-sizing:border-box!important}.df-container i{font-style:normal}.df-container a{outline:0;text-decoration:none;box-shadow:none}.df-container .df-bg{position:absolute;top:0;left:0;right:0;bottom:0;background:no-repeat 50%;background-size:cover}.df-container .df-loading-info{position:absolute;top:-300px;left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);-moz-transition:.3s ease;-o-transition:.3s ease;-webkit-transition:.3s ease;transition:.3s ease;-moz-transition-property:opacity;-o-transition-property:opacity;-webkit-transition-property:opacity;transition-property:opacity;max-width:200px;margin-top:20px;padding:10px 15px;box-shadow:0 1px 4px rgba(0,0,0,.3);background-color:#f7f7f7;border-radius:5px;font-size:12px;color:#222;word-break:break-word;letter-spacing:.5px;opacity:0}.df-container.df-init .df-loading-info{top:50%;opacity:1;max-width:300px}.df-container.df-init .df-viewer{display:none}.df-container.df-error .df-loading-info{-webkit-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);margin:0;color:#b00}.df-container .df-loading-icon{-moz-transition:.3s .1s opacity;-o-transition:.3s .1s opacity;-webkit-transition:.3s .1s opacity;transition:.3s .1s opacity;opacity:0;height:50px;width:50px;left:50%;top:50%;margin:-45px -25px -25px;box-sizing:border-box;position:absolute;pointer-events:none;background-repeat:no-repeat;background-size:32px;background-position:50%;background-color:#fff;-webkit-border-radius:50px;-moz-border-radius:50px;border-radius:50px;box-shadow:0 1px 4px rgba(0,0,0,.3)}.df-container.df-loading .df-loading-icon{opacity:1;z-index:100}.df-fetch-pdf .df-loading-info{opacity:1;top:0;z-index:4;background-repeat:no-repeat;padding-left:36px;background-size:24px;background-position:6px 6px}.df-viewer .df-3dcanvas{right:0;position:absolute}.df-ui{color:#666;bottom:0;width:100%;height:42px;box-shadow:0 1px 4px rgba(0,0,0,.3);background-color:#fff;position:absolute;vertical-align:top;box-sizing:border-box;text-align:center;padding:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:4;display:block}.df-ui .df-logo{height:100%}.df-ui .df-logo.df-logo-img{display:inline-flex;align-items:center;justify-content:center;padding:2px 5px}.df-ui .df-logo.df-logo-img img{max-height:100%;max-width:120px}.df-ui .df-ui-page{padding:0;font-size:12px;width:50px;min-width:50px;line-height:42px;margin:0 0;border-radius:0;background-color:rgba(0,0,0,.03)}.df-ui .df-ui-page label{position:absolute;right:0;top:0;min-width:50px;height:100%;text-align:center;display:block;line-height:inherit!important;color:#999;font-weight:400;cursor:pointer;background-color:transparent;z-index:1;box-sizing:border-box;word-break:normal}.df-ui .df-ui-page input{width:100%;background-color:transparent;height:100%;margin:0;padding:0!important;border:1px solid #8f8f8f;text-align:center;vertical-align:top;line-height:inherit!important;color:transparent;font-size:14px;top:0;box-sizing:border-box;z-index:-1;display:block;opacity:0}.df-ui .df-ui-page input:focus{z-index:2;opacity:1;color:inherit}.df-ui .df-ui-page input:focus+label{opacity:0;display:none}.df-ui-btn{color:#777;vertical-align:top;background-color:#fff;box-sizing:border-box;text-align:center;position:relative;width:40px;height:100%;font-size:20px;cursor:pointer;z-index:2;display:inline-block;padding:10px 5px;line-height:1.2;transition:.3s;transition-property:opacity,color,background-color}.df-ui-btn:before{box-sizing:border-box}.df-ui-btn.df-active,.df-ui-btn:hover{color:#00acce;background-color:#eee}.df-ui-btn.df-active{background-color:#e7e7e7}.df-ui-btn.disabled,.df-ui-btn.disabled:hover{color:#bbb}.df-ui-btn span{display:none}.df-more-container{display:none;position:absolute;bottom:100%;margin-bottom:8px!important;right:10px;background-color:#f7f7f7;z-index:20;border-radius:5px;box-shadow:0 -1px 3px rgba(0,0,0,.2)}.df-more-container:before{content:" ";position:absolute;border:7px solid transparent;border-top-color:#eee;height:0;width:0;bottom:-14px;right:13px;margin-right:-8px;pointer-events:none}.df-more-container>.df-ui-btn{width:170px;text-align:left;padding:6px 8px;height:36px;border-top:1px solid #e4e4e4;border-radius:0;line-height:16px}.df-more-container>.df-ui-btn span{font-size:12px;padding-left:24px;vertical-align:middle;display:inline-block}.df-more-container>.df-ui-btn:before{position:absolute;top:7px;font-size:20px;width:1em;text-align:center}.df-more-container>.df-ui-btn:first-child{border-radius:5px 5px 0 0;border-top:none}.df-more-container>.df-ui-btn:last-child{border-radius:0 0 5px 5px}.df-ui-more.df-active .df-more-container{display:block}.df-ui-search.df-active .df-search-container{display:block;padding:5px}.df-ui-nav{top:50%;margin-top:-50px;position:absolute;opacity:.8;height:100px;font-size:36px;width:50px;z-index:2;cursor:pointer}.df-ui-nav:hover{opacity:1}.df-ui-nav .df-ui-btn{height:auto;height:initial;position:absolute;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);top:50%;padding:15px 5px;width:auto;font-size:inherit;background-color:transparent!important}.df-ui-nav .df-ui-btn:before{color:#fff;filter:drop-shadow(0 0 3px rgb(0, 0, 0))}.df-ui-nav.df-ui-prev{left:0;right:auto;border-radius:0}.df-ui-nav.df-ui-prev .df-ui-btn{left:10px}.df-ui-nav.df-ui-prev .df-ui-btn:before{text-align:left}.df-ui-nav.df-ui-next{right:0}.df-ui-nav.df-ui-next .df-ui-btn{right:10px}.df-ui-nav.df-ui-next .df-ui-btn:before{text-align:right}.df-flipbook-2d,.df-flipbook-3d,.df-slider,.df-viewer-container,.df-zoomview{position:absolute;overflow:hidden;top:0;left:0;right:0;bottom:0;z-index:1}.df-flipbook-2d{-webkit-filter:blur(0);-moz-filter:blur(0);-ms-filter:blur(0);-o-filter:blur(0);filter:blur(0)}.df-flipbook-2d .df-viewer-wrapper{position:relative;margin:0 auto;height:100%;-moz-transition:.3s left;-o-transition:.3s left;-webkit-transition:.3s left;transition:.3s left}.df-flipbook-2d .df-book-shadow{position:absolute;z-index:-1;height:100%;display:none;-webkit-box-shadow:0 0 10px rgba(0,0,0,.3);-moz-box-shadow:0 0 10px rgba(0,0,0,.3);box-shadow:0 0 10px rgba(0,0,0,.3)}.df-page-content{overflow:hidden;opacity:.3}.df-page.df-loading:after{content:"";background-size:22px;height:22px;width:22px;display:block;top:50%;left:50%;margin:-11px;position:absolute;z-index:0}.df-page.df-loading .df-page-content{display:none}.df-page>canvas{width:100%;height:100%;position:relative;z-index:0}.df-page .df-page-content{position:absolute;height:100%;display:block;top:0;width:100%;z-index:2}.df-sheet{position:absolute;-webkit-transform-origin:0 0 0;-moz-transform-origin:0 0 0;transform-origin:0 0 0}.df-sheet .df-page,.df-sheet .df-page-back,.df-sheet .df-page-front,.df-sheet .df-sheet-fold-inner-shadow,.df-sheet .df-sheet-fold-outer-shadow,.df-sheet .df-sheet-wrapper{position:absolute;-webkit-transform-origin:0 0 0;-moz-transform-origin:0 0 0;transform-origin:0 0 0}.df-sheet .df-sheet-wrapper{overflow:hidden}.df-sheet .df-page{width:100%;height:100%;background-color:#fff;box-sizing:border-box;z-index:0;background-size:100% 100%}.df-sheet .df-page:before{content:"";position:absolute;display:block;top:0;width:15%;height:100%;z-index:5;opacity:.5;pointer-events:none}.df-sheet .df-page>canvas{z-index:-1}.df-sheet .df-page-front:before{left:0;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.25),rgba(0,0,0,.15) 15%,rgba(255,255,255,.07),rgba(255,255,255,0));background-image:-moz-linear-gradient(left,rgba(0,0,0,.25),rgba(0,0,0,.15) 15%,rgba(255,255,255,.07),rgba(255,255,255,0));background-image:-ms-linear-gradient(left,rgba(0,0,0,.25),rgba(0,0,0,.15) 15%,rgba(255,255,255,.07),rgba(255,255,255,0))}.df-sheet .df-page-back:before{right:0;background-image:-webkit-linear-gradient(right,rgba(0,0,0,.25),rgba(0,0,0,.2) 10%,rgba(0,0,0,.15) 25%,rgba(0,0,0,0) 70%);background-image:-moz-linear-gradient(right,rgba(0,0,0,.25),rgba(0,0,0,.2) 10%,rgba(0,0,0,.15) 25%,rgba(0,0,0,0) 70%);background-image:-ms-linear-gradient(right,rgba(0,0,0,.25),rgba(0,0,0,.2) 10%,rgba(0,0,0,.15) 25%,rgba(0,0,0,0) 70%)}.df-sheet.df-left-side{right:50%;-webkit-transform-origin:right;-moz-transform-origin:right;transform-origin:right}.df-sheet.df-left-side .df-page-front{z-index:1}.df-sheet.df-left-side .df-page-back{z-index:2}.df-sheet.df-right-side{left:50%;-webkit-transform-origin:left;-moz-transform-origin:left;transform-origin:left}.df-sheet.df-right-side .df-page-front{z-index:2}.df-sheet.df-right-side .df-page-back{z-index:1}.df-sheet .df-sheet-fold-inner-shadow{position:absolute;z-index:5;display:none}.df-sheet .df-sheet-fold-outer-shadow{z-index:-1;width:100%;height:100%}.df-sheet.df-flipping,.df-sheet.df-folding{z-index:200!important}.df-sheet.df-folding.df-left-side .df-page-front,.df-sheet.df-folding.df-right-side .df-page-back{z-index:3}.df-sheet.df-folding .df-sheet-fold-inner-shadow{display:block}.df-sheet.df-folding .df-page-content{display:none}.df-pending .df-page-content,.df-pendingresize .df-page-content{display:none!important}.df-sheet.df-left-side.df-folding:not(.df-hard-sheet) .df-page-front{z-index:3}.df-hard-sheet .df-sheet-wrapper{width:100%!important;height:100%!important;overflow:visible;transform-style:preserve-3d;-webkit-transform-origin:0 50% 0;-moz-transform-origin:0 50% 0;transform-origin:0 50% 0}.df-hard-sheet .df-sheet-fold-inner-shadow,.df-hard-sheet .df-sheet-fold-outer-shadow{display:none!important}.df-hard-sheet .df-page-back,.df-hard-sheet .df-page-front{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.df-hard-sheet.df-right-side .df-page-back{-webkit-transform-origin:right 50%;-moz-transform-origin:right 50%;transform-origin:right 50%;z-index:3!important}.df-hard-sheet.df-right-side .df-page-front{-webkit-transform-origin:left 50%;-moz-transform-origin:left 50%;transform-origin:left 50%;z-index:4}.df-hard-sheet.df-left-side .df-page-back{-webkit-transform-origin:right 50%;-moz-transform-origin:right 50%;transform-origin:right 50%}.df-hard-sheet.df-left-side .df-page-front{-webkit-transform-origin:left 50%;-moz-transform-origin:left 50%;transform-origin:left 50%}.df-flipbook-3d.df-loading:after{content:"";background-size:22px;height:22px;width:22px;display:block;top:50%;left:50%;margin:-11px;position:absolute;z-index:0}.df-link-content,.df-text-content{position:absolute;top:0;left:0;bottom:0;right:0;overflow:hidden;pointer-events:none;overflow:clip;transform-origin:0 0}.df-page-content.df-double-internal:not(.df-double-internal-fix)>div{right:-100%}.df-page-content.df-double-internal-fix>div{left:-100%}.annotationLayer section,.customHtmlAnnotation,.customLinkAnnotation,.customVideoAnnotation,.df-link-content section,.highlightAnnotation,.linkAnnotation,.popupAnnotation{position:absolute;z-index:5;cursor:pointer;pointer-events:all;border:none!important;padding:0!important;margin:0!important}section.popupAnnotation{display:none}.buttonWidgetAnnotation a,.customHtmlAnnotation,.customVideoAnnotation,a.customLinkAnnotation,a.df-autolink,a.linkAnnotation,section.linkAnnotation a{background-color:#ff0;display:block;height:100%;-moz-transition:none;-o-transition:none;-webkit-transition:none;transition:none}.buttonWidgetAnnotation a:hover,.customHtmlAnnotation:hover,.customVideoAnnotation:hover,a.customLinkAnnotation:hover,a.df-autolink:hover,a.linkAnnotation:hover,section.linkAnnotation a:hover{border-color:transparent;background-color:#2196f3}a.df-autolink{display:inline;pointer-events:all;color:transparent!important}.df-sidemenu-wrapper{-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%);left:0;top:0;bottom:0;width:220px;position:absolute;z-index:3}.df-sidemenu-wrapper .df-sidemenu-buttons{z-index:6;position:relative;top:0;left:0;box-shadow:0 2px 5px rgba(0,0,0,.3)}.df-sidemenu-wrapper .df-sidemenu-buttons .df-ui-close{float:right;display:none;background-color:transparent;padding:6px 5px}.df-sidemenu-wrapper:before{content:" ";position:absolute;height:100%;width:100%;background-color:rgba(238,238,238,.9);z-index:3;left:0}.df-sidemenu-open .df-ui-nav.df-ui-prev{left:220px}.df-sidemenu-open .df-sidemenu-wrapper{display:block;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);left:0}.df-sidemenu-open .df-sidemenu-wrapper:before{box-shadow:1px 0 4px rgba(102,102,102,.38)}.df-sidemenu-open .df-sidemenu-buttons .df-ui-close{display:block}.df-sidemenu-open .df-flipbook-3d.df-loading:after{margin-left:99px}.df-sidemenu{width:100%;height:auto!important;position:absolute!important;top:0;bottom:0;z-index:3;opacity:0;color:#666;font-size:12px}.df-sidemenu>.df-wrapper{overflow:auto;position:absolute!important;top:40px;bottom:0;left:0;right:0;height:auto!important}.df-sidemenu.df-sidemenu-visible{opacity:1;z-index:5}.df-outline-container .df-wrapper{padding:10px}.df-outline-items>.df-outline-item{margin-left:18px}.df-outline-item a{color:inherit!important;text-decoration:none!important;display:block;padding:5px 0 5px 5px;overflow:hidden;text-overflow:ellipsis;border:none!important;box-shadow:none!important;margin-bottom:1px}.df-outline-item a:hover{text-decoration:underline!important;color:#2196f3!important}.df-outline-toggle{cursor:pointer;float:left;width:28px;padding:0 5px 0 10px;margin-left:-28px;text-align:center}.df-outline-toggle:before{content:"\e902";font-size:18px;font-family:dearflip}.df-outline-toggle.df-outlines-hidden:before{content:"\e901"}.df-outline-toggle.df-outlines-hidden~.df-outline-items{display:none}.df-outline-item a:hover,.df-outline-toggle:hover,.df-outline-toggle:hover+a,.df-outline-toggle:hover~.df-outline-items{background-color:rgba(100,100,100,.05)}.df-thumb{margin:0;cursor:pointer;width:100%;position:relative;text-align:center}.df-thumb .df-wrapper{box-sizing:content-box!important;margin:6px;border-radius:3px;transition:.2s background;display:inline-block;vertical-align:middle;border:2px dashed rgba(0,0,0,.3);position:relative}.df-thumb .df-wrapper .df-thumb-number{position:absolute;bottom:8px;background-color:rgba(238,238,238,.85);color:#444;font-size:14px;left:50%;transform:translateX(-50%);padding:5px;opacity:0}.df-thumb .df-bg-image{height:100%;background-size:100%;box-shadow:0 1px 4px rgba(0,0,0,.3)}.df-thumb.df-thumb-requested:before{content:"";background-size:22px;height:22px;width:22px;display:block;top:50%;left:50%;margin:-11px;position:absolute;z-index:0}.df-thumb.df-thumb-loaded{height:auto!important}.df-thumb.df-thumb-loaded .df-wrapper{border:none;margin:0;padding:8px}.df-thumb.df-thumb-loaded:hover .df-wrapper .df-thumb-number{opacity:1}.df-thumb.df-selected .df-wrapper,.df-thumb.df-thumb-loaded:hover .df-wrapper{background-color:#ccc;background-color:rgba(0,0,0,.1);opacity:1}.df-lightbox-wrapper{position:fixed!important;top:0;bottom:0;right:0;height:auto!important;left:0;z-index:99999}.df-lightbox-wrapper.df-lightbox-padded{top:20px;left:20px;bottom:20px;right:20px}.df-lightbox-wrapper .df-lightbox-bg{background:#eee;position:fixed!important;top:0;bottom:0;right:0;height:auto!important;left:0}.df-lightbox-wrapper .df-lightbox-controls{float:right;padding:5px;z-index:1000;position:relative}.df-lightbox-wrapper .df-app{position:absolute!important;width:100%;top:0;bottom:0;height:auto!important}.df-lightbox-wrapper .df-container.df-transparent{height:100%}.df-lightbox-wrapper .df-lightbox-close{float:right;text-align:center;font-size:32px;padding:8px 0;height:48px;width:46px;cursor:pointer;color:#444;border-color:transparent;background-color:transparent;-moz-transition:.3s;-o-transition:.3s;-webkit-transition:.3s;transition:.3s;opacity:.8}.df-lightbox-wrapper .df-lightbox-close:hover{color:#fff;background-color:rgba(0,0,0,.21);border-color:#000;opacity:1}.df-lightbox-wrapper .df-lightbox-close:before{color:#fff;filter:drop-shadow(0 0 3px black)}.df-share-wrapper{z-index:2;position:absolute;top:0;bottom:0;right:0;left:0;background-color:rgba(0,0,0,.35);display:none}.df-share-box{position:absolute;top:50%;width:280px;-webkit-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);left:50%;background-color:#fff;border-radius:10px;padding:10px 15px 5px;text-align:center}span.df-share-title{color:#777;margin-bottom:10px;display:block}.df-share-url{background-color:#fff;height:60px;color:#666;padding:2px 5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;width:100%;font-size:12px;box-sizing:border-box;margin-bottom:0}.df-share-button{display:inline-block;text-align:center;cursor:pointer;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;padding:5px 10px;font-size:20px;color:#aaa}.df-share-button:hover{color:#444}.df-reader{overflow:auto;position:absolute;-webkit-overflow-scrolling:touch}.df-reader .df-viewer-wrapper{cursor:grab}.df-reader .df-page{position:relative;transform-origin:initial;margin:-10px auto -10px;border:10px solid transparent;left:auto;left:initial;box-sizing:content-box!important}.df-reader .df-page:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background-color:#fff;-webkit-box-shadow:0 0 10px rgba(0,0,0,.2);-moz-box-shadow:0 0 10px rgba(0,0,0,.2);box-shadow:0 0 10px rgba(0,0,0,.2)}.df-reader~.df-ui-nav{display:none}.df-reader:not(.df-noscroll){margin-right:-12px}.df-reader-scrollbar{position:absolute;top:0;height:auto;right:0;width:auto;background:rgba(255,255,255,.9);box-shadow:0 1px 4px rgba(0,0,0,.3);border-radius:20px 0 0 20px;padding:6px 8px 6px 12px;z-index:100;cursor:ns-resize}.df-reader-scrollbar.df-active,.df-reader-scrollbar:hover{background-color:#fff}.df-reader-scroll-page-number{display:none;position:absolute;top:50%;left:50%;transform:translate3d(-50%,-50%,0);background-color:#ddd;border-radius:10px;padding:20px;font-size:24px;z-index:100;text-align:center;color:#333}.df-reader-scroll-page-number.df-active{display:block}.df-reader-scroll-page-number .df-reader-scroll-page-number-total{margin-top:6px;padding-top:6px;border-top:1px solid #aaa;font-size:16px;font-style:italic}.df-ios .df-viewer.df-reader{margin-right:0}.df-no-transition{-moz-transition:none!important;-o-transition:none!important;-webkit-transition:none!important;transition:none!important}.df-float .df-ui{bottom:10px;width:auto;width:intial;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);left:50%;margin:0 auto;display:table;display:flex;border-radius:5px}.df-float .df-ui>.df-ui-btn:first-child{border-radius:5px 0 0 5px}.df-float .df-ui>.df-ui-btn:last-child{border-radius:0 5px 5px 0}.df-controls-top .df-ui{bottom:auto;bottom:intial;top:0}.df-controls-top.df-float .df-ui{top:10px}.df-controls-top .df-more-container{bottom:auto;top:100%;margin:8px 0 0!important}.df-controls-top .df-more-container:before{border-bottom-color:#eee;border-top:0;bottom:auto;top:-7px}.df-float-off.df-controls-top .df-sidemenu-wrapper{top:42px;bottom:0}.df-float-off.df-controls-bottom .df-sidemenu-wrapper{top:0;bottom:42px}.df-float-off .df-ui-left{justify-content:flex-start;display:flex;flex:1}.df-float-off .df-ui-right{justify-content:flex-end;display:flex;flex:1}.df-float-off .df-ui-center{display:flex;justify-content:center;align-items:center}.df-float-off .df-ui{display:flex}.df-controls-hidden .df-ui{display:none}.df-link-content .annotationTextContent{color:transparent}.df-link-content .popupWrapper{position:absolute;width:20em}.df-link-content .popup{position:absolute;z-index:200;max-width:20em;background-color:#ff9;box-shadow:0 2px 5px #333;border-radius:2px;padding:.6em;margin-left:5px;cursor:pointer;word-wrap:break-word}.df-link-content .popup h1{font-size:1em;border-bottom:1px solid #000;padding-bottom:.2em}.df-link-content .popup p{padding-top:.2em}body.df-lightbox-open,html.df-lightbox-open{overflow:hidden!important}.df-zoomview{display:none;cursor:move}.df-zoomview .df-viewer-wrapper{position:relative;margin:0 auto}.df-zoomview .df-viewer-wrapper .df-book-shadow{position:absolute;z-index:-1;height:100%;display:none;-webkit-box-shadow:0 1px 15px 1px rgba(0,0,0,.5);-moz-box-shadow:0 1px 15px 1px rgba(0,0,0,.5);box-shadow:0 1px 15px 1px rgba(0,0,0,.5)}.df-zoomview .df-page{position:absolute;top:0;right:50%;background-color:#fff}.df-zoomview .df-page:before{width:10%;opacity:.5}.df-zoomview .df-page.df-page-front{left:50%}.df-zoom-active .df-viewer{cursor:move;cursor:-webkit-grab}.df-zoom-active .df-flipbook{display:none}.df-zoom-active .df-zoomview{display:block}.df-hybrid-viewer .df-zoomview .df-page:before{display:none}.df-hybrid-viewer:not(.df-zoom-active) .df-flipbook.df-loading+.df-zoomview{display:none}.df-hybrid-viewer:not(.df-zoom-active) .df-zoomview{display:block;pointer-events:none}.df-hybrid-viewer:not(.df-zoom-active) .df-zoomview .df-page:before{display:none}.df-hybrid-viewer:not(.df-zoom-active) .df-loading+.df-zoomview::after{content:"";background-size:22px;height:22px;width:22px;display:block;top:50%;left:50%;margin:-11px;position:absolute;z-index:0}.df-hybrid-viewer:not(.df-zoom-active).df-hide-zoomview .df-zoomview,.df-hybrid-viewer:not(.df-zoom-active).df-pending .df-zoomview,.df-hybrid-viewer:not(.df-zoom-active).df-pendingresize .df-zoomview{display:none}.df-container ::-webkit-scrollbar{width:12px;height:12px;cursor:pointer}.df-container ::-webkit-scrollbar-button{height:0;width:0;cursor:pointer}.df-container ::-webkit-scrollbar-thumb{background:rgba(0,0,0,.5);border-radius:50px}.df-container ::-webkit-scrollbar-thumb:hover{background:rgba(0,0,0,.8)}.df-container ::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.8)}.df-container ::-webkit-scrollbar-thumb,.df-container ::-webkit-scrollbar-thumb:active,.df-container ::-webkit-scrollbar-thumb:hover{border-right:1px;border-left:1px;border-style:solid;border-color:transparent}.df-container ::-webkit-scrollbar-track{background:rgba(0,0,0,.05);border-radius:50px}.df-container ::-webkit-scrollbar-track:hover{background:rgba(0,0,0,.1)}.df-container ::-webkit-scrollbar-track:active{background:rgba(0,0,0,.15)}.df-container ::-webkit-scrollbar-corner{background:0 0}.df-sidemenu-wrapper ::-webkit-scrollbar{width:10px}.df-container.df-transparent.df-fullscreen{background:#aaa}.df-container.df-fullscreen{position:fixed!important;left:0!important;top:0!important;width:100%!important;height:100%!important;z-index:2147483647}.df-container.df-rtl .df-sidemenu-wrapper{left:auto;left:initial;-webkit-transform:translateX(100%);-moz-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%);right:-50px;direction:rtl}.df-container.df-rtl input.df-search-text{padding:0 15px 0 45px}.df-container.df-rtl .df-sidemenu-title{text-align:right}.df-container.df-rtl .df-search-clear{right:auto;left:60px}.df-container.df-rtl.df-sidemenu-open .df-sidemenu-wrapper{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);right:0}.df-container.df-rtl.df-sidemenu-open .df-sidemenu-wrapper .df-sidemenu-buttons .df-ui-close{float:left}.df-container.df-rtl.df-sidemenu-open .df-ui-nav.df-ui-prev{left:0}.df-container.df-rtl.df-sidemenu-open .df-ui-nav.df-ui-next{right:220px}.df-container.df-rtl.df-sidemenu-open .df-flipbook-3d.df-loading:after{margin-left:-122px}.df-container.df-rtl .df-outline-item{margin:0 18px 0 0;text-align:right;direction:rtl}.df-container.df-rtl .df-outline-item .df-outline-toggle{float:right;margin:0 -18px 0 0}.df-container.df-rtl .df-outline-item .df-outline-toggle.df-outlines-hidden:before{content:"\e900"}.df-container.df-rtl .df-viewer .df-3dcanvas{left:0;right:auto;right:initial}.df-container.df-rtl .df-more-container .df-ui-btn{text-align:right;direction:rtl}.df-container.df-rtl .df-more-container .df-ui-btn:before{right:10px}.df-container.df-rtl .df-more-container .df-ui-btn span{padding:0 24px 0 0}.df-lightbox-wrapper.df-rtl .df-lightbox-controls{float:left}.df-element[data-df-lightbox],.df-element[data-lightbox]{cursor:pointer}.df-popup-thumb{display:inline-block;box-sizing:border-box;margin:30px 15px 15px!important;text-align:center;border:0;width:140px;height:auto;word-break:break-word;vertical-align:bottom;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d;-moz-perspective:800px;perspective:800px}.df-popup-thumb .df-book-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transition:.2s;box-shadow:2px 0 4px rgba(0,0,0,.2);transform-origin:30%;background-color:#fff;width:100%;display:inline-block}.df-popup-thumb .df-book-page1,.df-popup-thumb .df-book-page2{position:absolute;top:0;left:0;width:100%;height:100%;background-size:100% 100%;-webkit-transform-origin:left;-moz-transform-origin:left;transform-origin:left;background-color:#fff;-moz-transition:.3s;-o-transition:.3s;-webkit-transition:.3s;transition:.3s;z-index:1}.df-popup-thumb .df-book-cover{background-size:100% 100%;-webkit-transform-origin:left;-moz-transform-origin:left;transform-origin:left;top:0;position:relative;overflow:hidden;-moz-transition:.3s;-o-transition:.3s;-webkit-transition:.3s;transition:.3s;box-shadow:0 10px 10px rgba(0,0,0,.24);z-index:1}.df-popup-thumb .df-book-cover.df-thumb-not-found{height:200px;position:relative}.df-popup-thumb.df-has-ridge .df-book-cover:after{display:block;content:" ";height:100%;width:100%;background:linear-gradient(90deg,rgba(255,255,255,.15) 1%,rgba(0,0,0,.15) 3%,rgba(255,255,255,.15) 5%,rgba(255,255,255,0) 7%);box-shadow:inset 0 -1px 3px 0 rgba(80,80,80,.5490196078);z-index:3;position:absolute;top:0;left:0}.df-popup-thumb .df-book-title{bottom:-100%;position:absolute;width:100%;left:0;padding:5px;font-size:.75em;background:rgba(255,255,255,.9);box-sizing:border-box;display:block;-moz-transition:.4s;-o-transition:.4s;-webkit-transition:.4s;transition:.4s;opacity:0}.df-popup-thumb img{display:block;width:100%;height:auto;margin:0!important;padding:0!important;border:0!important}.df-popup-thumb.df-thumb-not-found .df-book-title,.df-popup-thumb.df-tl-book-title-fixed .df-book-title,.df-popup-thumb:hover .df-book-title{opacity:1;bottom:0}.df-popup-thumb.df-tl-book-title-fixed .df-book-title,.df-popup-thumb.df-tl-book-title-top .df-book-title{opacity:1;position:relative}.df-popup-thumb.df-thumb-not-found .df-book-wrapper{width:100%}.df-popup-thumb.df-tl-book-title-bottom .df-thumb-not-found,.df-popup-thumb.df-tl-cover-title .df-thumb-not-found{height:170px}.df-popup-thumb.df-tl-book-title-bottom .df-book-wrapper,.df-popup-thumb.df-tl-cover-title .df-book-wrapper{position:relative;z-index:1}.df-popup-thumb.df-tl-book-title-bottom .df-book-title,.df-popup-thumb.df-tl-cover-title .df-book-title{position:relative;bottom:0;opacity:1;height:3em;background:0 0}.df-popup-thumb:hover .df-book-page1{transform:rotateY(-8deg) rotateZ(0);box-shadow:2px 0 4px rgba(0,0,0,.2)}.df-popup-thumb:hover .df-book-page2{transform:rotateY(-14deg) rotateZ(0);box-shadow:2px 0 4px rgba(0,0,0,.2)}.df-popup-thumb:hover .df-book-wrapper{transform:rotateY(-15deg) rotateZ(0)}.df-popup-thumb:hover .df-book-cover{-webkit-transform:rotateY(-18deg) rotateZ(0);-moz-transform:rotateY(-18deg) rotateZ(0);-ms-transform:rotateY(-18deg) rotateZ(0);transform:rotateY(-18deg) rotateZ(0)}.df-popup-thumb.df-tl-cover-title .df-book-wrapper{box-shadow:0 2px 8px rgba(0,0,0,.3)}.df-popup-thumb.df-tl-cover-title .df-book-cover{box-shadow:none}.df-popup-thumb.df-tl-cover-title .df-book-cover:after{display:none}.df-popup-thumb.df-tl-cover-title:hover .df-book-wrapper{box-shadow:0 5px 20px rgba(0,0,0,.5);transform:none}.df-popup-thumb.df-tl-cover-title:hover .df-book-cover{-webkit-transform:none;-moz-transform:none;-ms-transform:none;transform:none;box-shadow:none}.df-popup-thumb.df-tl-cover-title:hover .df-book-page1,.df-popup-thumb.df-tl-cover-title:hover .df-book-page2{display:none}.df-popup-button{width:auto;display:inline-block;background:#ddd;border-radius:5px;padding:5px 15px;margin:5px;-moz-transition:.3s ease;-o-transition:.3s ease;-webkit-transition:.3s ease;transition:.3s ease;-moz-transition-property:background;-o-transition-property:background;-webkit-transition-property:background;transition-property:background}.df-popup-button:hover{background:#aaa}.df-popup-hidden{display:none}.df-icon-play-popup{position:relative}.df-icon-play-popup:before{top:50%;position:absolute;left:50%;font-size:40px;background:#777;border-radius:50%;padding:10px;box-shadow:0 1px 5px #777;margin-top:-30px;margin-left:-30px;display:block;color:#fff;z-index:1;-moz-transition:.3s ease;-o-transition:.3s ease;-webkit-transition:.3s ease;transition:.3s ease;-moz-transition-property:opacity;-o-transition-property:opacity;-webkit-transition-property:opacity;transition-property:opacity;pointer-events:none}.df-icon-play-popup:hover:before{opacity:0}.df-posts{max-width:1140px;margin:0 auto}.df-posts>.df-popup-thumb{width:calc(20% - 30px);min-width:100px;position:relative;z-index:1}df-post-shelf{display:none;height:160px;background-color:transparent;z-index:0;margin:-105px -40px -40px -40px;position:relative;background-repeat:no-repeat}df-post-shelf:nth-of-type(5n){display:block}df-post-shelf:after{content:" ";height:160px;display:block;position:absolute;bottom:0;right:0;width:240px;z-index:1;background-position:0 -160px;background-repeat:no-repeat;background-image:inherit;background-size:inherit}df-post-shelf:before{content:" ";display:block;position:absolute;left:240px;bottom:0;right:240px;height:160px;z-index:1;background-image:inherit;background-size:inherit;background-repeat:repeat-x;background-position:0 -320px}.df-posts.df-has-shelf{padding:0 40px 50px 40px}@media screen and (max-width:1100px){.df-posts>.df-popup-thumb{width:calc(25% - 30px)}df-post-shelf:nth-of-type(n){display:none}df-post-shelf:nth-of-type(4n){display:block}}@media screen and (max-width:900px){.df-posts>.df-popup-thumb{width:calc(33% - 30px)}df-post-shelf:nth-of-type(n){display:none}df-post-shelf:nth-of-type(3n){display:block}}@media screen and (max-width:600px){.df-posts>.df-popup-thumb{width:calc(50% - 30px)}df-post-shelf:nth-of-type(n){display:none}df-post-shelf:nth-of-type(2n){display:block}df-post-shelf{background-size:120px 480px}df-post-shelf:before{left:120px;right:120px}df-post-shelf:after{width:120px}}@media screen and (max-width:420px){.df-popup-thumb,.df-posts>.df-popup-thumb{width:calc(100% - 30px)}df-post-shelf:nth-of-type(n){display:block}}df-post-shelf:last-of-type{display:block}.df-posts{container-type:inline-size;container-name:dfposts;width:100%;box-sizing:border-box!important}@container dfposts (max-width:1020px){.df-posts>.df-popup-thumb{width:calc(25% - 30px)}df-post-shelf:nth-of-type(n){display:none}df-post-shelf:nth-of-type(4n){display:block}}@container dfposts (max-width:820px){.df-posts>.df-popup-thumb{width:calc(33% - 30px)}df-post-shelf:nth-of-type(n){display:none}df-post-shelf:nth-of-type(3n){display:block}}@container dfposts (max-width:520px){.df-posts>.df-popup-thumb{width:calc(50% - 30px)}df-post-shelf:nth-of-type(n){display:none}df-post-shelf:nth-of-type(2n){display:block}df-post-shelf{background-size:120px 480px}df-post-shelf:before{left:120px;right:120px}df-post-shelf:after{width:120px}}@container dfposts (max-width:320px){.df-posts>.df-popup-thumb{width:calc(100% - 30px)}df-post-shelf:nth-of-type(n){display:block}}@container dfposts (max-width:150px){.df-posts.df-has-shelf>.df-popup-thumb{width:100%;margin:30px -35px 15px!important}}df-post-shelf:last-of-type{display:block}.df-page-content{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.df-auto-link-content,.df-text-content{line-height:1;transform-origin:top left}.df-auto-link-content{position:absolute;top:0;left:0;bottom:0;right:0;overflow:hidden;pointer-events:none}[data-main-rotation="90"]{transform:rotate(90deg) translateY(-100%)}[data-main-rotation="180"]{transform:rotate(180deg) translate(-100%,-100%)}[data-main-rotation="270"]{transform:rotate(270deg) translateX(-100%)}.df-auto-link-content span,.df-text-content br,.df-text-content span{color:transparent!important;position:absolute;white-space:pre;cursor:text;transform-origin:0% 0%}.df-auto-link-content>span{overflow:hidden}.df-text-content .highlight{margin:-1px;padding:1px;background-color:#b400aa;border-radius:4px}.df-text-content .highlight.appended{position:initial}.df-text-content .highlight.begin{border-radius:4px 0 0 4px}.df-text-content .highlight.end{border-radius:0 4px 4px 0}.df-text-content .highlight.middle{border-radius:0}.df-text-content .highlight.selected{background-color:#006400}.df-text-content .endOfContent{display:block;position:absolute;left:0;top:100%;right:0;bottom:0;z-index:-1;cursor:default;-webkit-user-select:none;-moz-user-select:none;user-select:none}.df-text-content .endOfContent.active{top:0}body.admin-bar .df-lightbox-bg,body.admin-bar .df-lightbox-wrapper{top:32px}@media screen and (max-width:782px){body.admin-bar .df-lightbox-bg,body.admin-bar .df-lightbox-wrapper{top:46px}}@media screen and (max-width:600px){body.admin-bar .df-lightbox-bg,body.admin-bar .df-lightbox-wrapper{top:0}}.df-single-content{width:100%}.df-link-content section.textWidgetAnnotation{display:none}.df-link-content :is(.linkAnnotation,.buttonWidgetAnnotation.pushButton)>a{position:absolute;font-size:1em;top:0;left:0;width:100%;height:100%}.df-viewer::-webkit-scrollbar-button{height:50px}.df-viewer::-webkit-scrollbar-thumb{min-height:50px}.df-container .df-reader ::-webkit-scrollbar-thumb,.df-container .df-reader ::-webkit-scrollbar-track{background:0 0}.df-container.df-pinch-zoom ::-webkit-scrollbar-thumb,.df-container.df-pinch-zoom ::-webkit-scrollbar-track{background:0 0}.df-container.df-pinch-zoom .df-page-content{display:none}section.squareAnnotation .popupWrapper,section.textAnnotation .popupWrapper{display:none}section.squareAnnotation svg,section.textAnnotation svg{display:block}.df-comment-popup{display:none;position:absolute;width:360px;background-color:#ff9;box-shadow:0 2px 5px #333;border-radius:2px;z-index:9;padding:10px;word-break:break-word}.df-comment-popup.df-active{display:block}.df-comment-popup .popup{background-color:transparent!important}.df-comment-popup p{margin:0}.df-comment-popup h1{padding-bottom:5px;border-bottom:1px solid;margin-top:0;font-size:1em}.df-sidemenu-wrapper.df-sidemenu-center{-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);left:50%;display:none;top:auto;height:360px;bottom:52px}.df-sidemenu-center .df-sidemenu-buttons{box-shadow:none;text-align:center}.df-sidemenu-center .df-sidemenu-buttons .df-icon-close{display:block;margin:-55px auto 0 auto;float:none;border-radius:50px;width:44px}.df-sidemenu-wrapper.df-sidemenu-center:before{background-color:rgba(255,255,255,.9)}.df-sidemenu-open .df-sidemenu-wrapper.df-sidemenu-center{display:block}.df-sidemenu-center .sidemenu,.df-sidemenu-center:before{border-radius:10px 10px 0 0}.df-slider{-webkit-filter:blur(0);-moz-filter:blur(0);-ms-filter:blur(0);-o-filter:blur(0);filter:blur(0)}.df-slider .df-viewer-wrapper{position:relative;margin:0 auto;height:100%;-moz-transition:.3s left;-o-transition:.3s left;-webkit-transition:.3s left;transition:.3s left}.df-slider .df-sheet{-moz-transition:transform .5s;-o-transition:transform .5s;-webkit-transition:transform .5s;transition:transform .5s}.df-slider .df-sheet.df-left-side,.df-slider .df-sheet.df-right-side{left:50%!important}.df-slider .df-sheet:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background-color:#fff;-webkit-box-shadow:0 0 10px rgba(0,0,0,.2);-moz-box-shadow:0 0 10px rgba(0,0,0,.2);box-shadow:0 0 10px rgba(0,0,0,.2)}.df-slider .df-page:before{display:none}.df-slider .df-page.df-page-front{z-index:3}.df-slider+.df-zoomview .df-page:before{display:none}.df-has-shelf df-post-shelf{background:0 0;perspective:400px;margin:5px 0 30px 0;height:0;box-shadow:0 5px 40px 15px rgba(0,0,0,.3137254902)}.df-has-shelf df-post-shelf:after,.df-has-shelf df-post-shelf:before{background-size:auto;left:-40px;right:-40px;width:auto;background-repeat:repeat-x;transform-style:preserve-3d;background-position:0 0}.df-has-shelf df-post-shelf:before{transform:translateY(-15px) rotateX(50deg);height:50px;transform-origin:bottom;box-shadow:inset 0 3px 15px 0 rgba(0,0,0,.6117647059)}.df-has-shelf df-post-shelf:after{transform:translateZ(0);height:15px;box-shadow:inset 0 3px 3px rgba(243,243,243,.3215686275);background-position:0 -50px}.df-search-highlight{position:relative!important;background-color:#00f}.df-search-results{top:125px!important;padding:0 10px 10px}.df-search-result{color:inherit!important;text-decoration:none!important;overflow:hidden;border:none!important;box-shadow:none!important;margin-bottom:1px;padding:5px 10px;display:flex;align-items:center;justify-content:space-between;cursor:pointer}.df-search-result.df-active,.df-search-result:hover{background-color:rgba(100,100,100,.2)}.df-sidemenu-title{padding:8px 20px;text-transform:uppercase;text-align:left}.df-search-hits{z-index:10;display:none}.df-search-open .df-search-hits{display:inline-block}.df-search-form{display:flex;padding:10px;position:relative}.df-search-clear{position:absolute;right:55px;top:22px;cursor:pointer;display:none}input.df-search-text{flex-grow:1;margin:0;border-radius:4px 0 0 4px;outline:0;border:0;height:40px;padding:0 45px 0 15px;width:100%}input.df-search-text:not(:placeholder-shown)~a.df-search-clear{display:block}.df-ui-btn.df-search-btn{height:40px;padding:10px;background-color:#f7f7f7}.df-search-info{padding:5px 20px}.df-searching .df-search-info{background-repeat:no-repeat;background-size:24px;background-position:176px}.df-popup-thumb img.df-lazy{transform:scale(1.2);opacity:.5}@media (prefers-reduced-motion:no-preference){.df-popup-thumb img{transition:opacity 1.5s ease,transform 1.5s ease}}.df-trigger{cursor:pointer}.df-element[data-df-lightbox],.df-element[data-lightbox]{position:relative}.rtl .df-popup-thumb .df-book-cover,.rtl .df-popup-thumb .df-book-page1,.rtl .df-popup-thumb .df-book-page2{transform-origin:right}.rtl .df-popup-thumb:hover .df-book-cover{transform:rotateY(18deg) rotateZ(0)}.rtl .df-popup-thumb:hover .df-book-page2{transform:rotateY(14deg) rotateZ(0);box-shadow:-2px 0 4px rgba(0,0,0,.2)}.rtl .df-popup-thumb:hover .df-book-page1{transform:rotateY(8deg) rotateZ(0);box-shadow:-2px 0 4px rgba(0,0,0,.2)}.rtl .df-popup-thumb:hover .df-book-wrapper{transform:rotateY(15deg) rotateZ(0);transform-origin:70%!important;box-shadow:-2px 0 4px rgba(0,0,0,.2)}.rtl .df-popup-thumb .df-book-cover:after{transform:scaleX(-1)}.zoom-element{display:none;position:absolute;top:0;left:0;z-index:1}.zoom-element>canvas{width:100%;height:100%}.df-zoom-region-active .zoom-element{display:block}.df-vertical .df-page:before{width:100%;height:10%;top:auto}.df-vertical .df-page-front:before{top:0;background-image:-webkit-linear-gradient(top,rgba(0,0,0,.25),rgba(0,0,0,.15) 15%,rgba(255,255,255,.07),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(0,0,0,.25),rgba(0,0,0,.15) 15%,rgba(255,255,255,.07),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(0,0,0,.25),rgba(0,0,0,.15) 15%,rgba(255,255,255,.07),rgba(255,255,255,0))}.df-vertical .df-page-back:before{bottom:0;background-image:-webkit-linear-gradient(bottom,rgba(0,0,0,.25),rgba(0,0,0,.2) 10%,rgba(0,0,0,.15) 25%,rgba(0,0,0,0) 70%);background-image:-moz-linear-gradient(bottom,rgba(0,0,0,.25),rgba(0,0,0,.2) 10%,rgba(0,0,0,.15) 25%,rgba(0,0,0,0) 70%);background-image:-ms-linear-gradient(bottom,rgba(0,0,0,.25),rgba(0,0,0,.2) 10%,rgba(0,0,0,.15) 25%,rgba(0,0,0,0) 70%)}.df-flipbook-2d.df-vertical .df-viewer-wrapper{-moz-transition:.3s top;-o-transition:.3s top;-webkit-transition:.3s top;transition:.3s top}.df-flipbook-2d.df-vertical .df-sheet.df-left-side{bottom:50%;top:auto;left:0}.df-flipbook-2d.df-vertical .df-sheet.df-right-side{top:50%;left:0}.df-flipbook-2d.df-vertical .df-hard-sheet.df-right-side .df-page-back{-webkit-transform-origin:50% bottom;-moz-transform-origin:50% bottom;transform-origin:50% bottom;z-index:3!important}.df-flipbook-2d.df-vertical .df-hard-sheet.df-right-side .df-page-front{-webkit-transform-origin:50% top;-moz-transform-origin:50% top;transform-origin:50% top;z-index:4}.df-flipbook-2d.df-vertical .df-hard-sheet.df-left-side .df-page-back{-webkit-transform-origin:50% bottom;-moz-transform-origin:50% bottom;transform-origin:50% bottom}.df-flipbook-2d.df-vertical .df-hard-sheet.df-left-side .df-page-front{-webkit-transform-origin:50% top;-moz-transform-origin:50% top;transform-origin:50% top}.df-zoomview.df-vertical .df-page-front{top:50%;left:0}.df-zoomview.df-vertical .df-page-back{bottom:50%;top:auto;left:0}.df-posts [skip-parse]{display:none}.df-posts{text-align:center;position:relative}.df-load-more-button-wrapper{text-align:center;display:none;margin-top:20px}.df-posts [skip-parse]~.df-load-more-button-wrapper{display:block}.df-load-more-button{padding:10px 15px;display:inline-block;margin:0 auto;cursor:pointer;background:#0085ba;color:#fff}._df_book{min-height:400px}
            :root {
                --tpg-primary-color: #0d6efd;
                --tpg-secondary-color: #0654c4;
                --tpg-primary-light: #c4d0ff
            }

                        body .rt-tpg-container .rt-loading,
            body #bottom-script-loader .rt-ball-clip-rotate {
                color: #0367bf !important;
            }

                    
				.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
				.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
					background-image: none !important;
				}
				@media screen and (max-height: 1024px) {
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}
				@media screen and (max-height: 640px) {
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}
			.lazyload{background-image:none !important;}.lazyload:before{background-image:none !important;}
body.custom-background { background-color: #ffffff; }
.safe-swim-card {
  position: relative;
  background: #24a85a;
  color: #ffffff;
  padding: 20px 22px 22px;
  margin-bottom: 18px;
  border-radius: 6px 0 6px 6px;
  clip-path: polygon(0 0, 94% 0, 100% 12%, 100% 100%, 0 100%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.safe-swim-text {
  font-size: 25px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.safe-line {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  white-space: nowrap !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.safe-arrow {
  display: inline-block;
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  animation: safeArrowMove 1.4s ease-in-out infinite;
}

@keyframes safeArrowMove {
  0%,
  100% {
    transform: translateY(-1px);
    opacity: 0.75;
  }

  50% {
    transform: translateY(5px);
    opacity: 1;
  }
}

@media (max-width: 1200px) {
  .safe-swim-text {
    font-size: 23px;
  }
}[data-id="35448"] .tpg-el-image-wrap.has-thumbnail img.rt-img-responsive {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

[data-id="35448"] .tpg-el-image-wrap.has-thumbnail {
    height: auto !important;
    overflow: visible !important;
}/* Sparkle overlay for Elementor Image widget */
.sparkle-views .elementor-widget-container{
  position: relative;
  overflow: hidden;
  border-radius: 14px; /* optional */
}

/* sparkles */
.sparkle-views .elementor-widget-container::before{
  content:"";
  position:absolute;
  inset:-20%;
  pointer-events:none;
  background:
    radial-gradient(circle, rgba(255,255,255,.95) 0 1px, transparent 2px) 10% 20%/140px 140px,
    radial-gradient(circle, rgba(255,255,255,.80) 0 1px, transparent 2px) 60% 30%/180px 180px,
    radial-gradient(circle, rgba(255,255,255,.70) 0 1px, transparent 2px) 30% 80%/160px 160px,
    radial-gradient(circle, rgba(255,255,255,.85) 0 1px, transparent 2px) 85% 70%/200px 200px;
  opacity:.55;
  mix-blend-mode: screen;
  animation: sparkle-drift 6s linear infinite, sparkle-twinkle 1.8s ease-in-out infinite;
  z-index: 3;
}

/* shine sweep */
.sparkle-views .elementor-widget-container::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(120deg,
    transparent 35%,
    rgba(255,255,255,.35) 45%,
    rgba(255,255,255,.05) 55%,
    transparent 65%
  );
  transform: translateX(-120%);
  mix-blend-mode: screen;
  animation: shine-sweep 3.8s ease-in-out infinite;
  opacity:.9;
  z-index: 3;
}

/* keep image below effects */
.sparkle-views .elementor-widget-container > *{
  position: relative;
  z-index: 2;
}

@keyframes sparkle-drift{
  from{ transform: translate3d(0,0,0) rotate(0deg); }
  to  { transform: translate3d(-6%, 4%, 0) rotate(6deg); }
}
@keyframes sparkle-twinkle{
  0%,100%{ opacity:.25; }
  50%    { opacity:.70; }
}
@keyframes shine-sweep{
  0%   { transform: translateX(-120%); opacity:0; }
  25%  { opacity:1; }
  45%  { transform: translateX(120%); opacity:0; }
  100% { transform: translateX(120%); opacity:0; }
}

@media (prefers-reduced-motion: reduce){
  .sparkle-views .elementor-widget-container::before,
  .sparkle-views .elementor-widget-container::after{ animation:none; }
}
/* Make the image wrapper control the shape */
.zox-art-img {
  border-radius: 12px !important;
  overflow: hidden;          /* clip everything inside */
  position: relative;        /* usually already, but just in case */
}

/* If the overlay is a pseudo-element */
.zox-art-img::before,
.zox-art-img::after {
  border-radius: inherit !important;
  overflow: hidden;
}

/* If the theme uses a real overlay div */
.zox-art-img .zox-art-overlay,
.zox-art-img .zox-overlay,
.zox-art-img .overlay-grid-hover-content {
  border-radius: inherit !important;
  overflow: hidden;
}
/* ΤΟ WRAPPER ΤΗΣ ΜΙΚΡΟΓΡΑΦΙΑΣ – square */
.rt-img-holder.tpg-el-image-wrap.has-thumbnail {
    position: relative;
    width: 100%;          /* όσο φαρδύ είναι η στήλη του thumbnail */
    overflow: hidden;
}

/* Κάνει το ύψος = πλάτος (100% => τετράγωνο) */
.rt-img-holder.tpg-el-image-wrap.has-thumbnail::before {
    content: "";
    display: block;
    padding-top: 100%;    /* 1:1 ratio */
}

/* Το link γεμίζει όλο το τετράγωνο */
.rt-img-holder.tpg-el-image-wrap.has-thumbnail .tpg-post-link {
    position: absolute;
    inset: 0;             /* top/right/bottom/left: 0 */
    display: block;
}

/* Η εικόνα γεμίζει και κάνει crop */
.rt-img-holder.tpg-el-image-wrap.has-thumbnail img.rt-img-responsive {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;   /* crop, όχι στρέτσινγκ */
    display: block;
}
/* Στρογγυλεμένες άκρες στο overlay του τίτλου */
.entry-title-wrapper,
.tpg-excerpt-inner,
.rt-detail .rt-content-wrapper,
.grid-hover-content {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow: hidden;
}

/* Αν έχει background overlay */
.entry-title-wrapper::before,
.grid-hover-content::before {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* Για να μην “ξεφεύγει” το overlay από το image container */
.rt-ing-holder.tpg-post-holder,
.rt-ing-holder .rt-image-wrap,
.rt-ing-holder .rt-image-wrap img {
  border-radius: 12px;
  overflow: hidden;
}
/* Container της κάρτας */
.rt-ing-holder,
.rt-ing-holder .rt-image-wrap,
.rt-ing-holder .rt-image-wrap img {
  border-radius: 12px;
  overflow: hidden;
}

/* Overlay τίτλου */
.entry-title-wrapper,
.grid-hover-content,
.tpg-excerpt-inner {
  border-radius: 12px;
  overflow: hidden;
}

/* Αν υπάρχει gradient ή σκίαση */
.entry-title-wrapper::before,
.grid-hover-content::before {
  border-radius: 12px;
}

.sidebar .widget { background:#fff; border-radius:12px; box-shadow:0 6px 20px rgba(0,0,0,.06); padding:16px; }
.zox-art-wrap, .elementor-post, .wp-block-group {
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
.zox-art-wrap:hover, .elementor-post:hover { box-shadow: 0 10px 28px rgba(0,0,0,.10); transform: translateY(-1px); transition: .2s; }
.zox-art-img, .elementor-post__thumbnail {
  aspect-ratio: 16 / 9;
  overflow: hidden; /* για τις στρογγυλεμένες γωνίες που βάλαμε */
}
.zox-art-img img, .elementor-post__thumbnail img { object-fit: cover; width:100%; height:100%; }
iframe[src*="twitch.tv"],
iframe[src*="player.twitch.tv"],
iframe[src*="youtube.com"],
iframe[src*="youtu.be"] {
  border-radius: 12px !important;
  overflow: hidden;
  display: block;
}
/* Rounded corners on post boxes and article previews */
.zox-art-wrap,
.zox-art-img,
.zox-post,
.zox-posts img,
.elementor-post,
.elementor-post__thumbnail,
.elementor-widget-container img,
.wp-block-image img,
.wp-block-group,
.entry-content img {
  border-radius: 12px !important;
  overflow: hidden;
}

/* Optional: smooth hover effect on images */
.zox-art-img img,
.elementor-post__thumbnail img,
.entry-content img {
  transition: transform 0.25s ease;
}

.zox-art-img img:hover,
.elementor-post__thumbnail img:hover,
.entry-content img:hover {
  transform: scale(1.02);
}

/* Don't affect header, footer, or menu */
header,
footer,
.site-header,
.site-footer {
  border-radius: 0 !important;
  overflow: visible;
}
/* Hide the original Bit Elite link everywhere */
p a[href*="bitelite.gr"] {
  display: none !important;
}

/* Show the Bit Elite link ONLY in the footer */
.pkf-bottom p a[href*="bitelite.gr"],
.pkf-bottom__dev a[href*="bitelite.gr"] {
  display: inline !important; /* ή inline-block */
}/* Hide default ZoxPress footer completely */
#zox-foot-wrap,
footer#zox-foot-wrap,
.zox-foot-wrap {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}
/* ===== PAKOE Footer – Brand System ===== */
:root{
  --pk-green: #00a651;        /* βασικό πράσινο PAKOE */
  --pk-green-700: #008f46;
  --pk-bg: #111;
  --pk-surface: #171717;
  --pk-text: #e6e6e6;
  --pk-muted: #a8a8a8;
  --pk-border: #2a2a2a;
}

/* Dark mode (ZoxPress toggles body.zox-dark) */
body.zox-dark{
  --pk-bg: #0b0b0c;
  --pk-surface: #121316;
  --pk-text: #e6e6e6;
  --pk-muted: #b7b7b7;
  --pk-border: #26282c;
}

/* ===== Layout ===== */
.pk-footer{
  background: var(--pk-bg);
  color: var(--pk-text);
  margin-top: 40px;
  border-top: 1px solid var(--pk-border);
  font-size: 15px;
  line-height: 1.6;
}

/* CTA */
.pkf-cta{
  background: linear-gradient(0deg, var(--pk-surface), var(--pk-surface));
  border-bottom: 1px solid var(--pk-border);
}
.pkf-cta__inner{
  max-width: 1200px; margin: 0 auto; padding: 28px 20px;
  display: grid; gap: 16px; grid-template-columns: 1fr auto;
  align-items: center;
}
.pkf-cta h3{ margin: 0 0 4px; font-size: 1.35rem; }
.pkf-cta p{ margin: 0; color: var(--pk-muted); }
.pkf-newsletter{ display: flex; gap: 10px; }
.pkf-newsletter input{
  background: #fff; color:#111; border: none; border-radius: 8px;
  padding: 12px 14px; min-width: 260px;
}
body.zox-dark .pkf-newsletter input{
  background: #222; color: var(--pk-text);
}
.pkf-newsletter button{
  background: var(--pk-green); color:#fff; border: none;
  padding: 12px 18px; border-radius: 10px; cursor: pointer;
  font-weight: 600; transition: transform .12s ease, background .2s;
}
.pkf-newsletter button:hover{ background: var(--pk-green-700); transform: translateY(-1px); }

/* Grid */
.pkf-wrap{
  max-width: 1200px; margin: 0 auto; padding: 40px 20px;
  display: grid; gap: 40px;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
@media (max-width: 980px){ .pkf-wrap{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .pkf-wrap{ grid-template-columns: 1fr; } }

/* Cols */
.pkf-col h4{ margin: 0 0 14px; font-size: 1.05rem; letter-spacing:.2px; }
.pkf-blurb{ color: var(--pk-muted); margin: 10px 0 16px; }

.pkf-brand{ display: inline-flex; align-items: center; gap: 10px; color: var(--pk-text); text-decoration: none; }
.pkf-logo{ max-width: 160px; height: auto; display:block; }
.pkf-brand__name{ font-weight: 700; }

/* Links */
.pkf-nav ul, .pkf-list{ list-style:none; margin:0; padding:0; }
.pkf-nav li, .pkf-list li{ margin: 8px 0; }
.pkf-nav a, .pkf-list a{
  color: var(--pk-text); text-decoration: none; border-bottom: 1px solid transparent;
}
.pkf-nav a:hover, .pkf-list a:hover{
  color: var(--pk-green); border-bottom-color: var(--pk-green);
}

/* Social */
.pkf-social{ display:flex; gap:12px; list-style:none; padding:0; margin:10px 0 0; }
.pkf-ico{ width:22px; height:22px; fill: var(--pk-text); transition: transform .15s ease, fill .2s; display:block; }
.pkf-social a:hover .pkf-ico{ transform: translateY(-2px); fill: var(--pk-green); }

/* Contact */
.pkf-contact p{ margin: 6px 0; }
.pkf-contact a{ color: var(--pk-text); text-decoration:none; }
.pkf-contact a:hover{ color: var(--pk-green); }

/* Bottom */
.pkf-bottom{
  border-top: 1px solid var(--pk-border);
  padding: 18px 20px; text-align:center; color: var(--pk-muted);
}
.pkf-bottom__by{ font-size: .95em; margin-top: 4px; }


/* === PAKOE Footer – Light text version === */

/* Footer background */
.pk-footer {
  background: #111; /* dark background */
  color: #ffffff;   /* main text white */
  border-top: 1px solid #2a2a2a;
}

/* CTA section */
.pkf-cta {
  background: #171717;
  border-bottom: 1px solid #2a2a2a;
}

.pkf-cta h3,
.pkf-cta p {
  color: #ffffff;
}

.pkf-newsletter input {
  background: #ffffff;
  color: #000000;
}

.pkf-newsletter button {
  background: #00a651;
  color: #ffffff;
}

.pkf-newsletter button:hover {
  background: #008f46;
}

/* Headings */
.pkf-col h4 {
  color: #ffffff;
}

/* Links */
.pkf-nav a,
.pkf-list a,
.pkf-contact a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pkf-nav a:hover,
.pkf-list a:hover,
.pkf-contact a:hover {
  color: #00a651;
}

/* Paragraphs and descriptions */
.pkf-blurb,
.pkf-contact p,
.pkf-bottom {
  color: #ffffff;
}

/* Social icons */
.pkf-ico {
  fill: #ffffff;
}

.pkf-social a:hover .pkf-ico {
  fill: #00a651;
}

/* Bottom bar */
.pkf-bottom {
  border-top: 1px solid #2a2a2a;
  text-align: center;
  color: #ffffff;
}
/* --- Mobile ONLY για το SUBSCRIBE (CTA) --- */
@media (max-width: 768px){
  /* Το επάνω CTA γίνεται 1 στήλη */
  .pkf-cta__inner{
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  /* Η φόρμα κάθετα και full width */
  .pkf-newsletter{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .pkf-newsletter input{
    min-width: 0 !important;  /* σπάμε το 260px */
    width: 100% !important;
  }
  .pkf-newsletter button{
    width: 100%;
  }

  /* Ασφαλές wrap τίτλου/κειμένου ΜΟΝΟ στο CTA */
  .pkf-cta h3,
  .pkf-cta p{
    word-break: break-word;
    hyphens: auto;
  }
}

/* Προληπτικά: ποτέ κάθετα γράμματα μόνο στο CTA bar */
.pkf-cta h3, .pkf-cta p{ word-break: break-word; hyphens: auto; }
.pkf-bottom__dev {
  margin-top: 5px;
  font-size: 13px;
  opacity: 0.85;
}
.pkf-bottom__dev a {
  color: inherit;
  text-decoration: none;
}

.pkf-bottom__dev a:hover {
  text-decoration: underline;
  opacity: 1;
}


.tiktok-wrapper { background: none; padding: 0; margin: 2rem auto; max-width: 380px; border: none; box-shadow: none; display: flex; justify-content: center; } .tiktok-wrapper .tiktok-embed, .tiktok-wrapper .tiktok-embed section { background: transparent !important; border: none !important; box-shadow: none !important; padding: 0 !important; } .tiktok-wrapper { margin-top: 1rem; margin-bottom: 1rem; }

body { background:#f5f5f5 !important; }
#zox-main-wrap, .zox-body-wrap { background:#f5f5f5 !important; }
.elementor, .elementor-section, .elementor-container { background:transparent !important; }

.social-bar{
  text-align:center;
  padding: 6px 0;
}
.social-bar .sb{
  display:inline-flex; justify-content:center; align-items:center;
  width:40px; height:40px; margin:0 8px;
  background:#00a651; color:#fff; border-radius:50%;
  text-decoration:none;
  transition: background .2s ease, transform .15s ease;
}
.social-bar .sb:hover{ background:#008f46; transform: translateY(-2px); }
.social-bar svg{ width:20px; height:20px; fill:currentColor; display:block; }

