@charset "UTF-8";
/*
File Name: 		style-default.css
Written by: 	Dan Fisher - (http://themeforest.net/user/dan_fisher)
Description:  The main styling file for the theme.
*/
/* Table of Content
==================================================

  #Common

  #Base
    - Header
    - Header Navigation
    - Hero Unit
    - Pushy Panel
    - Page Header
    - Content
    - Footer

  #Blog
    - Blog
    - Posts
    - Single Post
    - Post Author
    - Post Meta
    - Related Posts
    - Post Comments
    - Blog Filter
    - Blog Load More

  #Widgets
    - List
    - Instagram
    - Contact Info
    - Social
    - Tag Cloud
    - Banner
    - Tabbed
    - Newsletter
    - Newslog
    - Match Preview
    - Comments
    - Twitter
    - Featured
    - Standings
    - Player
    - Game Result
    - Poll
    - Results
    - Awards
    - Games History
    - Newslog
    - Team Leaders
    - Team Stats
    - Filter Color
    - Filter Size
    - Filter Price
    - Products

  #Team
    - Team Filter
    - Team Roster
    - Team Standings
    - Team Glossary
    - Team Results
    - Team Schedule

  #Player
    - Player Heading
    - Player Gamelog
    - Player Season Average

  #Shop
    - Checkout Review Order
    - Checkout Payment
    - Account Navigation
    - Shop Table
    - Shop Banner
    - Shop Filter
    - Products
    - Filter Color
    - Product Tabs

  #Partials
    - Info Block
    - Social Counter
    - Social Links
    - Match Preview
    - Game Result
    - Main News Banner
    - Featured Carousel
    - Content Filter
    - Gallery
    - Album
    - Modal Login
*/
/* Preloader */
.preloader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #282840;
  z-index: 999999;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.preloader {
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -16px;
  margin-top: -16px;
  -webkit-backface-visibility: hidden;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-top-color: #3ffeca;
  animation: spin 1s infinite linear;
}

.preloader--img {
  border: none !important;
  animation: none !important;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 0;
}

/*
// #Typography
// --------------------------------------------------
*/
/* Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: #fff;
  margin: 0 0 0.75em 0;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  letter-spacing: -0.02em;
}

h1, .h1 {
  font-size: 42px;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 700;
}

h2, .h2 {
  font-size: 36px;
  font-style: normal;
  text-transform: uppercase;
  font-weight: 700;
}

h3, .h3 {
  font-size: 28px;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 700;
}

h4, .h4 {
  font-size: 24px;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
}

h5, .h5 {
  font-size: 22px;
  font-style: italic;
  text-transform: none;
  font-weight: 700;
}

h6, .h6 {
  font-size: 16px;
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 2em;
  line-height: 26px;
  font-weight: 700;
}

/* Paragraphs */
p {
  margin-bottom: 1.5em;
}

.lead {
  font-size: 16px;
  line-height: 2em;
  color: #fff;
}

/* Links */
a {
  color: #0fe3ab;
  text-decoration: none;
}
a:hover, a:focus {
  color: #0fe3ab;
  text-decoration: none;
  outline: none;
}

/* Lists */
.widget_text ol:not([class]),
div.wpb_text_column ol:not([class]),
.list ol:not([class]),
.hentry ol:not([class]) {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 1.5em;
  counter-reset: counter;
}
.widget_text ol:not([class]) li,
div.wpb_text_column ol:not([class]) li,
.list ol:not([class]) li,
.hentry ol:not([class]) li {
  position: relative;
  padding: 0 0 0.5em 30px;
}
.widget_text ol:not([class]) > li::before,
div.wpb_text_column ol:not([class]) > li::before,
.list ol:not([class]) > li::before,
.hentry ol:not([class]) > li::before {
  display: inline-block; /* block would also work */
  position: absolute; /* move this out of the way of the text */
  left: 0; /* move the counter label into the space from the padding */
  content: counter(counter) ". ";
  counter-increment: counter;
  font-weight: bold;
  width: 20px;
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-size: 13px;
}
.widget_text ol:not([class]) ol,
.widget_text ol:not([class]) ul,
div.wpb_text_column ol:not([class]) ol,
div.wpb_text_column ol:not([class]) ul,
.list ol:not([class]) ol,
.list ol:not([class]) ul,
.hentry ol:not([class]) ol,
.hentry ol:not([class]) ul {
  margin-bottom: 0;
  margin-top: 1em;
}

.widget_text ul:not([class]),
div.wpb_text_column ul:not([class]),
.list ul:not([class]),
.hentry ul:not([class]) {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 1.5em;
}
.widget_text ul:not([class]) li,
div.wpb_text_column ul:not([class]) li,
.list ul:not([class]) li,
.hentry ul:not([class]) li {
  position: relative;
  padding: 0 0 0.5em 30px;
}
.widget_text ul:not([class]) > li::before,
div.wpb_text_column ul:not([class]) > li::before,
.list ul:not([class]) > li::before,
.hentry ul:not([class]) > li::before {
  display: inline-block; /* block would also work */
  position: absolute; /* move this out of the way of the text */
  left: 0; /* move the counter label into the space from the padding */
  width: 20px;
  color: #f92552;
  font-size: 14px;
  content: "\f00c";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}
.widget_text ul:not([class]) ul,
.widget_text ul:not([class]) ol,
div.wpb_text_column ul:not([class]) ul,
div.wpb_text_column ul:not([class]) ol,
.list ul:not([class]) ul,
.list ul:not([class]) ol,
.hentry ul:not([class]) ul,
.hentry ul:not([class]) ol {
  margin-bottom: 0;
  margin-top: 1em;
}

.wpb_widgetised_column .widget_recent_entries ul:not([class]) > li {
  padding: 0;
}
.wpb_widgetised_column .widget_recent_entries ul:not([class]) > li::before {
  display: none;
}

.wpb_widgetised_column .widget_recent_entries ul:not([class]) > li {
  padding: 0;
}
.wpb_widgetised_column .widget_recent_entries ul:not([class]) > li::before {
  display: none;
}

/* Content Title */
.content-title {
  text-align: center;
  padding: 10px 0;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .content-title {
    padding: 25px 0;
    margin-bottom: 35px;
  }
}

.content-title__h {
  line-height: 1.2em;
  margin-bottom: 0.75em;
  font-size: 18px;
}
@media (min-width: 768px) {
  .content-title__h {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .content-title__h {
    font-size: 32px;
  }
}

.content-title__subtitle {
  font-style: normal;
  font-size: 11px;
  line-height: 1.2em;
  color: #9e9caa;
}
.content-title__h + .content-title__subtitle {
  margin-top: -1.75em;
  margin-bottom: 3em;
}

/* Blockquotes */
.blockquote--default,
blockquote {
  text-align: center;
  border: none;
  padding: 20px;
  position: relative;
  margin-bottom: 2em;
}
@media (min-width: 992px) {
  .blockquote--default,
  blockquote {
    padding: 50px 20px 20px 20px;
  }
}
.blockquote--default::before,
blockquote::before {
  content: "“";
  display: block;
  position: absolute;
  left: 50%;
  top: -0.17em;
  transform: translateX(-50%);
  font-family: "Exo 2", sans-serif;
  color: #fff;
  opacity: 0.05;
  font-size: 300px;
  line-height: 1em;
  pointer-events: none;
}
@media (min-width: 992px) {
  .blockquote--default::before,
  blockquote::before {
    font-size: 600px;
  }
}
@media (min-width: 1199px) {
  .blockquote--default::before,
  blockquote::before {
    font-size: 700px;
  }
}
.blockquote--default .blockquote__content,
.blockquote--default > p,
blockquote .blockquote__content,
blockquote > p {
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  color: #fff;
  font-style: italic;
  margin-bottom: 0.75em;
}
@media (min-width: 992px) {
  .blockquote--default .blockquote__content,
  .blockquote--default > p,
  blockquote .blockquote__content,
  blockquote > p {
    font-size: 24px;
  }
}
.blockquote--default .blockquote__footer::before,
blockquote .blockquote__footer::before {
  display: none !important;
}
.blockquote--default .blockquote__cite,
blockquote .blockquote__cite {
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  color: #9e9caa;
  font-style: normal !important;
}
@media (min-width: 992px) {
  .blockquote--default .blockquote__cite,
  blockquote .blockquote__cite {
    font-size: 14px;
  }
}
.blockquote--default .blockquote__author-name,
blockquote .blockquote__author-name {
  display: block;
}
.blockquote--default .blockquote__author-info,
blockquote .blockquote__author-info {
  font-size: 9px;
  display: block;
}
@media (min-width: 992px) {
  .blockquote--default .blockquote__author-info,
  blockquote .blockquote__author-info {
    font-size: 10px;
  }
}

.text-success {
  color: #0fe3ab !important;
}

.text-danger {
  color: #f92552 !important;
}

.text-warning {
  color: #ff7e1f !important;
}

.text-info {
  color: #9e69ee !important;
}

address strong {
  color: #fff;
  font-weight: 400;
}

dt {
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.2em;
}

dd {
  margin-bottom: 1.5em;
}

/* Images
/* ------------------------- */
figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  text-align: center;
  margin-bottom: 20px;
}

.wp-block-image figcaption,
.aligncenter figcaption {
  padding: 14px;
  font-size: 13px;
  text-align: center;
}

:root {
  --icon-svg-color: $svg-stroke;
}

.df-icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #3ffeca;
}
.df-icon use {
  display: block;
  position: absolute;
  width: 20px !important;
  height: 20px !important;
}

.df-icon-stack {
  position: relative;
  width: 28px;
  height: 28px;
}
.df-icon-stack .df-icon {
  position: absolute;
}

.df-icon--basketball {
  width: 28px;
  height: 28px;
  stroke-width: 1.6px;
}

.df-icon--jersey {
  width: 22px;
  height: 24px;
  stroke-width: 1.8px;
  fill-rule: evenodd;
}

.df-icon--points {
  width: 37px;
  height: 32px;
  stroke-width: 1.6px;
}

.df-icon--bag {
  width: 22px;
  height: 24px;
  stroke-width: 1.6px;
}

.df-icon--bag-handle {
  width: 12px;
  height: 11px;
  stroke-width: 1.6px;
}

.df-icon-stack--bag .df-icon--bag {
  left: 50% !important;
  top: 5px;
  transform: translate(-50%, 0);
}
.df-icon-stack--bag .df-icon--bag-handle {
  left: 50% !important;
  transform: translate(-50%, 0);
}

.df-icon--ppg {
  width: 37px;
  height: 32px;
  stroke-width: 1.6px;
}

.df-icon--apg {
  width: 50px;
  height: 28px;
  stroke-width: 1.6px;
}

.df-icon--rpg {
  width: 41px;
  height: 33px;
  stroke-width: 1.6px;
}

.df-icon-stack--3pts {
  margin: 0 auto;
  width: 33px;
  height: 32px;
  text-align: center;
}
.df-icon-stack--3pts .df-icon--basketball {
  left: 0;
  top: 4px;
}
.df-icon-stack--3pts .df-icon--txt {
  display: block;
  position: absolute;
  left: 100%;
  top: 0;
  font-size: 10px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1em;
}

.df-icon--trophy {
  width: 22px;
  height: 18px;
  stroke: none;
  fill: #fff;
  width: 22px;
  height: 18px;
}

/* Football Icons */
.df-icon--football-helmet {
  width: 36px;
  height: 31px;
  stroke-width: 1.6px;
}
.widget-contact-info__body .df-icon--football-helmet {
  width: 32px;
  height: 28px;
}

.df-icon--football-ball {
  width: 31px;
  height: 31px;
  stroke-width: 1.6px;
}

.df-icon-plus {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  overflow: hidden;
}
.df-icon-plus::before {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #fff;
}
.df-icon-plus::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  height: 2px;
  background-color: #fff;
}

/* Tables
/* ------------------------- */
table {
  background-color: transparent;
}

caption {
  padding-top: 13px;
  padding-bottom: 13px;
  text-align: left;
}

th {
  text-align: left;
}

table,
.table {
  width: 100%;
  max-width: 100%;
  color: #9e9caa;
  font-size: 10px;
}
@media (min-width: 992px) {
  table,
  .table {
    font-size: 11px;
  }
}
table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td,
table > tfoot > tr > th,
table > tfoot > tr > td,
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 6.5px;
  vertical-align: top;
  border-top: 1px solid #3c3b5b;
  font-family: "Exo 2", sans-serif;
  font-size: 10px;
  line-height: 1.42857143em;
}
@media (min-width: 992px) {
  table > thead > tr > th,
  table > thead > tr > td,
  table > tbody > tr > th,
  table > tbody > tr > td,
  table > tfoot > tr > th,
  table > tfoot > tr > td,
  .table > thead > tr > th,
  .table > thead > tr > td,
  .table > tbody > tr > th,
  .table > tbody > tr > td,
  .table > tfoot > tr > th,
  .table > tfoot > tr > td {
    padding: 13px 10px;
    font-size: 11px;
  }
}
table > thead > tr > th,
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 1px solid #3c3b5b;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
table > tbody > tr > th,
.table > tbody > tr > th {
  color: #fff;
  font-weight: normal;
}
table > caption + thead > tr:first-child > th,
table > caption + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > td,
table > thead:first-child > tr:first-child > th,
table > thead:first-child > tr:first-child > td,
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
table > tbody + tbody,
.table > tbody + tbody {
  border-top: 2px solid #3c3b5b;
}

.table--lg > thead > tr > th,
.table--lg > thead > tr > td,
.table--lg > tbody > tr > th,
.table--lg > tbody > tr > td,
.table--lg > tfoot > tr > th,
.table--lg > tfoot > tr > td {
  padding: 8.5px;
}
@media (min-width: 992px) {
  .table--lg > thead > tr > th,
  .table--lg > thead > tr > td,
  .table--lg > tbody > tr > th,
  .table--lg > tbody > tr > td,
  .table--lg > tfoot > tr > th,
  .table--lg > tfoot > tr > td {
    padding: 17px 12px;
  }
}

.table-thead-color > thead > tr > th {
  background-color: #363555;
}

.table-hover > tbody > tr,
.table-hover > tbody > tr.highlighted {
  transition: background-color 0.2s ease;
}
.table-hover > tbody > tr:hover,
.table-hover > tbody > tr.highlighted:hover {
  color: #9e9caa;
  background-color: #383759;
}

.table-hover > tbody > tr.highlighted {
  transition: background-color 0.2s ease;
  background-color: #383759;
}

.table-bordered {
  border: 1px solid #3c3b5b;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #3c3b5b;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 1px;
}

.table-wrap-bordered {
  border: 1px solid #3c3b5b;
}

@media (max-width: 767px) {
  .table-responsive {
    border: none;
    margin-bottom: 0;
  }
}

.table--no-border > thead > tr > th,
.table--no-border > thead > tr > td,
.table--no-border > tbody > tr > th,
.table--no-border > tbody > tr > td,
.table--no-border > tfoot > tr > th,
.table--no-border > tfoot > tr > td {
  border: none !important;
}

.table--no-paddings > thead > tr > th,
.table--no-paddings > thead > tr > td,
.table--no-paddings > tbody > tr > th,
.table--no-paddings > tbody > tr > td,
.table--no-paddings > tfoot > tr > th,
.table--no-paddings > tfoot > tr > td {
  padding: 0 !important;
}

.table__cell-center {
  text-align: center;
}
.table__cell-center > thead > tr > th {
  text-align: center;
}
.table__cell-center > thead > tr > th:first-child {
  text-align: left;
}

table + h2 {
  margin-top: 30px;
}

/* Error 404 */
.error-404 {
  text-align: center;
  padding: 10px 15px 20px 15px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .error-404 {
    padding: 20px 0 40px 0;
  }
}

.error-404__figure {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  max-width: 75%;
}
@media (min-width: 480px) {
  .error-404__figure {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .error-404__figure {
    margin-bottom: 55px;
  }
}
.error-404__figure--cross::before, .error-404__figure--cross::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: 25px;
  background-color: #f92552;
  border-radius: 3px;
}
.error-404__figure--cross::before {
  transform: translate(50px, -70px) rotate(45deg);
}
.error-404__figure--cross::after {
  transform: translate(50px, -70px) rotate(-45deg);
}

.error__header {
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .error__header {
    margin-bottom: 40px;
  }
}

.error__title {
  margin-bottom: 0.33em;
  font-size: 24px;
}
@media (min-width: 992px) {
  .error__title {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .error__title {
    font-size: 38px;
  }
}

.error__subtitle {
  font-size: 18px;
}
@media (min-width: 1200px) {
  .error__subtitle {
    font-size: 22px;
  }
}

.error__description {
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .error__description {
    margin-bottom: 60px;
  }
}

@media (min-width: 992px) {
  .error__cta .btn {
    margin: 0 10px;
  }
}
@media (max-width: 767px) {
  .error__cta .btn {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: 5px 0;
  }
}

/* VC Grid
/* ------------------------- */
.vc_row {
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.vc_row.vc_row-no-padding .vc_column_container > .vc_column-inner {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.vc_column_container > .vc_column-inner {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.form-horizontal .has-feedback .form-control-feedback {
  right: 8px !important;
}

.vc_non_responsive .vc_row .vc_col-sm-1,
.vc_non_responsive .vc_row .vc_col-sm-10,
.vc_non_responsive .vc_row .vc_col-sm-11,
.vc_non_responsive .vc_row .vc_col-sm-12,
.vc_non_responsive .vc_row .vc_col-sm-2,
.vc_non_responsive .vc_row .vc_col-sm-3,
.vc_non_responsive .vc_row .vc_col-sm-4,
.vc_non_responsive .vc_row .vc_col-sm-5,
.vc_non_responsive .vc_row .vc_col-sm-7,
.vc_non_responsive .vc_row .vc_col-sm-8,
.vc_non_responsive .vc_row .vc_col-sm-9 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Duotone Effect
/* ------------------------- */
.effect-duotone {
  position: relative;
}

.effect-duotone__layer::before, .effect-duotone__layer::after {
  content: "";
}
.effect-duotone__layer, .effect-duotone__layer::before, .effect-duotone__layer::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.effect-duotone__layer::before {
  background-color: #000;
  mix-blend-mode: color;
  z-index: 1;
}
.effect-duotone__layer::after {
  mix-blend-mode: lighten;
  z-index: 3;
  background-color: #282840;
}

.effect-duotone__layer-inner {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  mix-blend-mode: multiply;
}

@supports (position: -ms-page) {
  .effect-duotone .effect-duotone__layer::before {
    opacity: 0.3;
  }
  .effect-duotone .effect-duotone__layer::after {
    opacity: 0.3;
  }
  .effect-duotone .effect-duotone__layer-inner {
    opacity: 0.45;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .effect-duotone .effect-duotone__layer::before {
    opacity: 0.3 !important;
  }
  .effect-duotone .effect-duotone__layer::after {
    opacity: 0.3 !important;
  }
  .effect-duotone .effect-duotone__layer-inner {
    opacity: 0.5 !important;
  }
}
.effect-duotone--base .effect-duotone__layer::after {
  background-color: #323150 !important;
  mix-blend-mode: screen;
  opacity: 0.6;
}
.effect-duotone--base .effect-duotone__layer-inner {
  background-color: #383759 !important;
}

/**
 *
 * Duotone dynamic colors
 * can be applied for non-categories based elements
 *
 */
.effect-duotone--primary .effect-duotone__layer::after {
  background-color: #282840;
}
.effect-duotone--primary .effect-duotone__layer-inner {
  background-color: #f92552;
}

.effect-duotone--secondary .effect-duotone__layer::after {
  background-color: #282840;
}
.effect-duotone--secondary .effect-duotone__layer-inner {
  background-color: #fff;
}

.effect-duotone--tertiary .effect-duotone__layer::after {
  background-color: #282840;
}
.effect-duotone--tertiary .effect-duotone__layer-inner {
  background-color: #9e69ee;
}

.effect-duotone--quaternary .effect-duotone__layer::after {
  background-color: #282840;
}
.effect-duotone--quaternary .effect-duotone__layer-inner {
  background-color: #0fe3ab;
}

.effect-duotone--info .effect-duotone__layer::after {
  background-color: #282840;
}
.effect-duotone--info .effect-duotone__layer-inner {
  background-color: #9e69ee;
}

.posts__item--category-1 .effect-duotone .effect-duotone__layer-inner {
  background-color: #f92552;
}

.posts__item--category-2 .effect-duotone .effect-duotone__layer-inner {
  background-color: #9e69ee;
}

.posts__item--category-3 .effect-duotone .effect-duotone__layer-inner {
  background-color: #0fe3ab;
}

.posts__item--category-4 .effect-duotone .effect-duotone__layer-inner {
  background-color: #f92552;
}

.posts__item--category-5 .effect-duotone .effect-duotone__layer-inner {
  background-color: #f92552;
}

.posts__item--category-6 .effect-duotone .effect-duotone__layer-inner {
  background-color: #f92552;
}

.posts__item--category-7 .effect-duotone .effect-duotone__layer-inner {
  background-color: #f92552;
}

.posts__item--category-8 .effect-duotone .effect-duotone__layer-inner {
  background-color: #f92552;
}

.posts__item--category-9 .effect-duotone .effect-duotone__layer-inner {
  background-color: #f92552;
}

.posts__item--category-10 .effect-duotone .effect-duotone__layer-inner {
  background-color: #f92552;
}

.posts__item--category-11 .effect-duotone .effect-duotone__layer-inner {
  background-color: #f92552;
}

.posts__item--category-12 .effect-duotone .effect-duotone__layer-inner {
  background-color: #f92552;
}

.hero-slider--overlay-duotone .posts__item--category-1 .effect-duotone__layer-inner {
  background-color: #f92552;
}
.hero-slider--overlay-duotone .posts__item--category-2 .effect-duotone__layer-inner {
  background-color: #9e69ee;
}
.hero-slider--overlay-duotone .posts__item--category-3 .effect-duotone__layer-inner {
  background-color: #0fe3ab;
}
.hero-slider--overlay-duotone .posts__item--category-4 .effect-duotone__layer-inner {
  background-color: #f92552;
}
.hero-slider--overlay-duotone .posts__item--category-5 .effect-duotone__layer-inner {
  background-color: #f92552;
}
.hero-slider--overlay-duotone .posts__item--category-6 .effect-duotone__layer-inner {
  background-color: #f92552;
}
.hero-slider--overlay-duotone .posts__item--category-7 .effect-duotone__layer-inner {
  background-color: #f92552;
}
.hero-slider--overlay-duotone .posts__item--category-8 .effect-duotone__layer-inner {
  background-color: #f92552;
}
.hero-slider--overlay-duotone .posts__item--category-9 .effect-duotone__layer-inner {
  background-color: #f92552;
}
.hero-slider--overlay-duotone .posts__item--category-10 .effect-duotone__layer-inner {
  background-color: #f92552;
}
.hero-slider--overlay-duotone .posts__item--category-11 .effect-duotone__layer-inner {
  background-color: #f92552;
}
.hero-slider--overlay-duotone .posts__item--category-12 .effect-duotone__layer-inner {
  background-color: #f92552;
}

.page-heading--duotone.posts__item--category-1 .effect-duotone__layer-inner {
  background-color: #f92552;
}
.page-heading--duotone.posts__item--category-2 .effect-duotone__layer-inner {
  background-color: #9e69ee;
}
.page-heading--duotone.posts__item--category-3 .effect-duotone__layer-inner {
  background-color: #0fe3ab;
}
.page-heading--duotone.posts__item--category-4 .effect-duotone__layer-inner {
  background-color: #f92552;
}
.page-heading--duotone.posts__item--category-5 .effect-duotone__layer-inner {
  background-color: #f92552;
}
.page-heading--duotone.posts__item--category-6 .effect-duotone__layer-inner {
  background-color: #f92552;
}
.page-heading--duotone.posts__item--category-7 .effect-duotone__layer-inner {
  background-color: #f92552;
}
.page-heading--duotone.posts__item--category-8 .effect-duotone__layer-inner {
  background-color: #f92552;
}
.page-heading--duotone.posts__item--category-9 .effect-duotone__layer-inner {
  background-color: #f92552;
}
.page-heading--duotone.posts__item--category-10 .effect-duotone__layer-inner {
  background-color: #f92552;
}
.page-heading--duotone.posts__item--category-11 .effect-duotone__layer-inner {
  background-color: #f92552;
}
.page-heading--duotone.posts__item--category-12 .effect-duotone__layer-inner {
  background-color: #f92552;
}

/**
 *
 * Duotone Static colors
 *
 */
.effect-duotone--blue .effect-duotone__layer::after {
  background-color: #282840;
}
.effect-duotone--blue .effect-duotone__layer-inner {
  background-color: #4439e4;
}

.effect-duotone--red .effect-duotone__layer::after {
  background-color: #282840;
}
.effect-duotone--red .effect-duotone__layer-inner {
  background-color: #ff1c5c;
}

.effect-duotone--grey .effect-duotone__layer::after {
  background-color: #282840;
}
.effect-duotone--grey .effect-duotone__layer-inner {
  background-color: #dadada;
}

.effect-duotone--yellow .effect-duotone__layer::after {
  background-color: #282840;
}
.effect-duotone--yellow .effect-duotone__layer-inner {
  background-color: #ffcc00;
}

/* Spacers */
.spacer {
  height: 30px;
  overflow: hidden;
}

.spacer-sm {
  height: 15px;
  overflow: hidden;
}

.spacer-xs {
  height: 10px;
  overflow: hidden;
}

.spacer-lg {
  height: 45px;
  overflow: hidden;
}

.spacer-xlg {
  height: 60px;
  overflow: hidden;
}

.spacer-xxlg {
  height: 90px;
  overflow: hidden;
}

/* Iframe */
iframe {
  max-width: 100%;
  border: none;
}

/* VC */
.wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid > li {
  margin-bottom: 15px !important;
}

.wpb_video_wrapper .jetpack-video-wrapper {
  padding-bottom: 0;
}
.wpb_video_wrapper .jetpack-video-wrapper iframe {
  width: 100% !important;
  height: 100% !important;
}

/* SVG */
img[src$=".svg"].wp-post-image {
  width: auto !important;
  height: auto !important;
}

/* Color Pallete */
.df-color-pallete {
  list-style-type: none;
  display: flex;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .df-color-pallete {
    flex-wrap: wrap;
  }
}

.df-color-pallete__item {
  height: 120px;
  flex-grow: 1;
  font-size: 10px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2em;
  text-align: center;
  line-height: 120px;
}
@media (max-width: 767px) {
  .df-color-pallete__item {
    flex-basis: 25%;
  }
}
@media (max-width: 479px) {
  .df-color-pallete__item {
    flex-basis: 50%;
  }
}
.df-color-pallete__item.color-dark {
  background-color: #323150;
}
.df-color-pallete__item.color-dark-lighten {
  background-color: #383759;
}
.df-color-pallete__item.color-2 {
  background-color: #3c3b5b;
}
.df-color-pallete__item.color-3 {
  background-color: #9e69ee;
}
.df-color-pallete__item.color-4 {
  background-color: #3ffeca;
}
.df-color-pallete__item.color-4-darken {
  background-color: #0fe3ab;
}
.df-color-pallete__item.color-gray {
  background-color: #9e9caa;
}
.df-color-pallete__item.color-gray-2 {
  background-color: #938fa4;
}
.df-color-pallete__item.color-gray-3 {
  background-color: #7f7e8c;
}
.df-color-pallete__item.color-primary {
  background-color: #f92552;
}
.df-color-pallete__item.color-primary-darken {
  background-color: #f92552;
}

.svg-filters {
  height: 0;
  left: -9999em;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 0;
}

/* Accordion
/* ------------------------- */
.accordion .card {
  margin-bottom: 0;
}
.accordion .card:first-of-type .card__header {
  border-top-right-radius: 4px;
}
.accordion .card:last-of-type .card__header {
  border-bottom-right-radius: 4px;
}
.accordion .card__header {
  padding: 0;
  border-radius: 0;
}
.accordion .card__header::before {
  display: none;
}
.accordion .accordion__title {
  width: 100%;
}
.accordion .btn.accordion__header-link,
.accordion .accordion__header-link {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  position: relative;
  padding: 0;
  font-style: normal;
  font-size: 14px;
  padding: 24px 94px 24px 24px;
  color: #fff;
}
.accordion .btn.accordion__header-link:hover,
.accordion .accordion__header-link:hover {
  color: #0fe3ab;
}
.accordion .btn.accordion__header-link:not(.collapsed) .accordion__header-link-icon,
.accordion .accordion__header-link:not(.collapsed) .accordion__header-link-icon {
  background-color: #0fe3ab;
  border-bottom-right-radius: 0;
}
.accordion .btn.accordion__header-link:not(.collapsed) .accordion__header-link-icon::after,
.accordion .accordion__header-link:not(.collapsed) .accordion__header-link-icon::after {
  opacity: 0;
}
.accordion .accordion__header-link-icon {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 70px;
  background-color: #938fa4;
  border-radius: 0;
}
.accordion .accordion__header-link-icon::before, .accordion .accordion__header-link-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  transition: opacity 0.2s ease;
}
.accordion .accordion__header-link-icon::before {
  width: 12px;
  height: 2px;
}
.accordion .accordion__header-link-icon::after {
  width: 2px;
  height: 12px;
}
.accordion .card__content p:last-child {
  margin-bottom: 0;
}

.accordion--space-between .card {
  margin-bottom: 15px;
}
.accordion--space-between .card:last-child {
  margin-bottom: 0;
}
.accordion--space-between .card .card__header, .accordion--space-between .card:first-of-type .card__header, .accordion--space-between .card:last-of-type .card__header {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
}
.accordion--space-between .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 1px solid #3c3b5b;
  border-radius: 4px;
}
.accordion--space-between .card:not(:first-of-type) .card-header:first-child {
  border-radius: 4px;
}
.accordion--space-between .card:first-of-type {
  border-bottom: 1px solid #3c3b5b;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.accordion--space-between .card:last-of-type {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.accordion--space-between .accordion__header-link:not(.collapsed) .accordion__header-link-icon,
.accordion--space-between .btn.accordion__header-link:not(.collapsed) .accordion__header-link-icon {
  border-bottom-right-radius: 0;
}
.accordion--space-between .accordion__header-link.collapsed .accordion__header-link-icon,
.accordion--space-between .btn.accordion__header-link.collapsed .accordion__header-link-icon {
  border-bottom-right-radius: 4px;
}

/* Alerts
/* ------------------------- */
.alert,
.wpcf7 form .wpcf7-response-output {
  padding: 17px;
  padding-left: 85px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 13px;
  position: relative;
  color: #9e9caa;
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}
.alert::before,
.wpcf7 form .wpcf7-response-output::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 4px 0 0 4px;
  width: 60px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 15px 15px;
}
.alert strong,
.wpcf7 form .wpcf7-response-output strong {
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: bold;
}
.alert p:last-child,
.wpcf7 form .wpcf7-response-output p:last-child {
  margin-bottom: 0;
}

.alert-dismissible {
  padding-right: 37px;
}
.alert-dismissible .close {
  top: 17px;
  right: 17px;
  color: inherit;
  padding: 0;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  opacity: 0.2;
  text-shadow: none;
}

.alert-btn-right {
  position: relative;
  float: right;
  top: 0;
  right: 0;
}

.alert-success,
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #323150;
  border-color: #3c3b5b !important;
}
.alert-success hr,
.wpcf7 form.sent .wpcf7-response-output hr {
  border-top-color: #32314c;
}
.alert-success::before,
.wpcf7 form.sent .wpcf7-response-output::before {
  background-color: #0fe3ab;
  background-size: 14px 12px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 12'%3E%3Cpath transform='translate(-189.438 -2446.25)' fill='%23fff' d='M201.45,2446.24l2.121,2.13-9.192,9.19-2.122-2.12Zm-4.949,9.2-2.121,2.12-4.95-4.95,2.121-2.12Z'/%3E%3C/svg%3E");
}

.alert-info,
.wpcf7 form .wpcf7-response-output {
  background-color: #323150;
  border-color: #3c3b5b !important;
}
.alert-info hr,
.wpcf7 form .wpcf7-response-output hr {
  border-top-color: #32314c;
}
.alert-info::before,
.wpcf7 form .wpcf7-response-output::before {
  background-color: #9e69ee;
  background-size: 5px 18px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 18'%3E%3Cpath transform='translate(-194 -2257)' fill='%23fff' d='M194.714,2257h3.572a0.716,0.716,0,0,1,.714.72l-0.714,11.16a0.716,0.716,0,0,1-.715.72h-2.142a0.716,0.716,0,0,1-.715-0.72L194,2257.72A0.716,0.716,0,0,1,194.714,2257Zm0.715,14.4h2.142a0.716,0.716,0,0,1,.715.72v2.16a0.716,0.716,0,0,1-.715.72h-2.142a0.716,0.716,0,0,1-.715-0.72v-2.16A0.716,0.716,0,0,1,195.429,2271.4Z'/%3E%3C/svg%3E");
}

.alert-warning,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
  background-color: #323150;
  border-color: #3c3b5b !important;
}
.alert-warning hr,
.wpcf7 form.invalid .wpcf7-response-output hr,
.wpcf7 form.unaccepted .wpcf7-response-output hr,
.wpcf7 form.spam .wpcf7-response-output hr {
  border-top-color: #32314c;
}
.alert-warning::before,
.wpcf7 form.invalid .wpcf7-response-output::before,
.wpcf7 form.unaccepted .wpcf7-response-output::before,
.wpcf7 form.spam .wpcf7-response-output::before {
  background-color: #ff7e1f;
  background-size: 5px 18px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 18'%3E%3Cpath transform='translate(-194 -2257)' fill='%23fff' d='M194.714,2257h3.572a0.716,0.716,0,0,1,.714.72l-0.714,11.16a0.716,0.716,0,0,1-.715.72h-2.142a0.716,0.716,0,0,1-.715-0.72L194,2257.72A0.716,0.716,0,0,1,194.714,2257Zm0.715,14.4h2.142a0.716,0.716,0,0,1,.715.72v2.16a0.716,0.716,0,0,1-.715.72h-2.142a0.716,0.716,0,0,1-.715-0.72v-2.16A0.716,0.716,0,0,1,195.429,2271.4Z'/%3E%3C/svg%3E");
}

.alert-danger,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  background-color: #323150;
  border-color: #3c3b5b !important;
}
.alert-danger hr,
.wpcf7 form.failed .wpcf7-response-output hr,
.wpcf7 form.aborted .wpcf7-response-output hr {
  border-top-color: #32314c;
}
.alert-danger::before,
.wpcf7 form.failed .wpcf7-response-output::before,
.wpcf7 form.aborted .wpcf7-response-output::before {
  background-color: #f92552;
  background-size: 11px 11px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 11'%3E%3Cpath transform='translate(-190.844 -2353.84)' fill='%23fff' d='M190.843,2355.96l2.121-2.12,9.193,9.2-2.122,2.12Zm9.192-2.12,2.122,2.12-9.193,9.2-2.121-2.12Z'/%3E%3C/svg%3E");
}

/* Buttons */
.btn,
.button {
  border: 1px solid transparent;
  font-weight: 700;
  font-family: "Exo 2", sans-serif;
  font-style: normal;
  text-transform: uppercase;
  transition: all 0.3s ease;
  vertical-align: middle;
  padding: 13px 42px;
  font-size: 12px;
  line-height: 1.5em;
  border-radius: 4px;
}
.btn:hover, .btn:focus, .btn.focus,
.button:hover,
.button:focus,
.button.focus {
  color: #fff;
}
.btn:active, .btn.active,
.button:active,
.button.active {
  box-shadow: none;
}

.btn-container {
  display: block;
}

.btn-container--inline {
  display: inline-block;
}

.btn-container--align-left {
  text-align: left;
}

.btn-container--align-right {
  text-align: right;
}

.btn-container--align-center {
  text-align: center;
}

.btn-default,
.button {
  color: #fff;
  background-color: #938fa4;
  border-color: transparent;
}
.btn-default:focus, .btn-default.focus,
.button:focus,
.button.focus {
  color: #fff;
  background-color: #f92552;
  border-color: rgba(0, 0, 0, 0);
}
.btn-default:hover,
.button:hover {
  color: #fff;
  background-color: #f92552;
  border-color: rgba(0, 0, 0, 0);
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle,
.button:active,
.button.active,
.open > .button.dropdown-toggle {
  color: #fff;
  background-color: #f92552;
  border-color: rgba(0, 0, 0, 0);
}
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus,
.button:active:hover,
.button:active:focus,
.button:active.focus,
.button.active:hover,
.button.active:focus,
.button.active.focus,
.open > .button.dropdown-toggle:hover,
.open > .button.dropdown-toggle:focus,
.open > .button.dropdown-toggle.focus {
  color: #fff;
  background-color: #67637a;
  border-color: rgba(0, 0, 0, 0);
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle,
.button:active,
.button.active,
.open > .button.dropdown-toggle {
  background-image: none;
}
.btn-default.disabled, .btn-default[disabled],
.button.disabled,
.button[disabled] {
  background-color: #605c71;
  border-color: rgba(0, 0, 0, 0);
}
.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus,
.button.disabled:hover,
.button.disabled:focus,
.button.disabled.focus,
.button[disabled]:hover,
.button[disabled]:focus,
.button[disabled].focus,
fieldset[disabled] .button:hover,
fieldset[disabled] .button:focus,
fieldset[disabled] .button.focus {
  background-color: #605c71;
  border-color: rgba(0, 0, 0, 0);
}
.btn-default:not(:disabled):not(.disabled):active, .btn-default:not(:disabled):not(.disabled).active, .show > .btn-default.dropdown-toggle,
.button:not(:disabled):not(.disabled):active,
.button:not(:disabled):not(.disabled).active,
.show > .button.dropdown-toggle {
  color: #fff;
  background-color: #f92552;
  border-color: transparent;
}
.btn-default .badge,
.button .badge {
  color: #938fa4;
  background-color: #fff;
}

.btn-default-alt {
  color: #fff;
  background-color: #3c3b5b;
  border-color: transparent;
}
.btn-default-alt:focus, .btn-default-alt.focus {
  color: #fff;
  background-color: #938fa4;
  border-color: rgba(0, 0, 0, 0);
}
.btn-default-alt:hover {
  color: #fff;
  background-color: #938fa4;
  border-color: rgba(0, 0, 0, 0);
}
.btn-default-alt:active, .btn-default-alt.active, .open > .btn-default-alt.dropdown-toggle {
  color: #fff;
  background-color: #938fa4;
  border-color: rgba(0, 0, 0, 0);
}
.btn-default-alt:active:hover, .btn-default-alt:active:focus, .btn-default-alt:active.focus, .btn-default-alt.active:hover, .btn-default-alt.active:focus, .btn-default-alt.active.focus, .open > .btn-default-alt.dropdown-toggle:hover, .open > .btn-default-alt.dropdown-toggle:focus, .open > .btn-default-alt.dropdown-toggle.focus {
  color: #fff;
  background-color: #191926;
  border-color: rgba(0, 0, 0, 0);
}
.btn-default-alt:active, .btn-default-alt.active, .open > .btn-default-alt.dropdown-toggle {
  background-image: none;
}
.btn-default-alt.disabled, .btn-default-alt[disabled] {
  background-color: #13131d;
  border-color: rgba(0, 0, 0, 0);
}
.btn-default-alt.disabled:hover, .btn-default-alt.disabled:focus, .btn-default-alt.disabled.focus, .btn-default-alt[disabled]:hover, .btn-default-alt[disabled]:focus, .btn-default-alt[disabled].focus, fieldset[disabled] .btn-default-alt:hover, fieldset[disabled] .btn-default-alt:focus, fieldset[disabled] .btn-default-alt.focus {
  background-color: #13131d;
  border-color: rgba(0, 0, 0, 0);
}
.btn-default-alt:not(:disabled):not(.disabled):active, .btn-default-alt:not(:disabled):not(.disabled).active, .show > .btn-default-alt.dropdown-toggle {
  color: #fff;
  background-color: #938fa4;
  border-color: transparent;
}
.btn-default-alt .badge {
  color: #3c3b5b;
  background-color: #fff;
}

.btn-primary,
.button.alt {
  color: #fff;
  background-color: #3c3b5b;
  border-color: transparent;
}
.btn-primary:focus, .btn-primary.focus,
.button.alt:focus,
.button.alt.focus {
  color: #fff;
  background-color: #f92552;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:hover,
.button.alt:hover {
  color: #fff;
  background-color: #f92552;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle,
.button.alt:active,
.button.alt.active,
.open > .button.alt.dropdown-toggle {
  color: #fff;
  background-color: #f92552;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus,
.button.alt:active:hover,
.button.alt:active:focus,
.button.alt:active.focus,
.button.alt.active:hover,
.button.alt.active:focus,
.button.alt.active.focus,
.open > .button.alt.dropdown-toggle:hover,
.open > .button.alt.dropdown-toggle:focus,
.open > .button.alt.dropdown-toggle.focus {
  color: #fff;
  background-color: #191926;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle,
.button.alt:active,
.button.alt.active,
.open > .button.alt.dropdown-toggle {
  background-image: none;
}
.btn-primary.disabled, .btn-primary[disabled],
.button.alt.disabled,
.button.alt[disabled] {
  background-color: #13131d;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus,
.button.alt.disabled:hover,
.button.alt.disabled:focus,
.button.alt.disabled.focus,
.button.alt[disabled]:hover,
.button.alt[disabled]:focus,
.button.alt[disabled].focus,
fieldset[disabled] .button.alt:hover,
fieldset[disabled] .button.alt:focus,
fieldset[disabled] .button.alt.focus {
  background-color: #13131d;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle,
.button.alt:not(:disabled):not(.disabled):active,
.button.alt:not(:disabled):not(.disabled).active,
.show > .button.alt.dropdown-toggle {
  color: #fff;
  background-color: #f92552;
  border-color: transparent;
}
.btn-primary .badge,
.button.alt .badge {
  color: #3c3b5b;
  background-color: #fff;
}

.btn-primary-inverse {
  color: #fff;
  background-color: #f92552;
  border-color: transparent;
}
.btn-primary-inverse:focus, .btn-primary-inverse.focus {
  color: #fff;
  background-color: #f92552;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary-inverse:hover {
  color: #fff;
  background-color: #f92552;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary-inverse:active, .btn-primary-inverse.active, .open > .btn-primary-inverse.dropdown-toggle {
  color: #fff;
  background-color: #f92552;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary-inverse:active:hover, .btn-primary-inverse:active:focus, .btn-primary-inverse:active.focus, .btn-primary-inverse.active:hover, .btn-primary-inverse.active:focus, .btn-primary-inverse.active.focus, .open > .btn-primary-inverse.dropdown-toggle:hover, .open > .btn-primary-inverse.dropdown-toggle:focus, .open > .btn-primary-inverse.dropdown-toggle.focus {
  color: #fff;
  background-color: #c2052d;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary-inverse:active, .btn-primary-inverse.active, .open > .btn-primary-inverse.dropdown-toggle {
  background-image: none;
}
.btn-primary-inverse.disabled, .btn-primary-inverse[disabled] {
  background-color: #b3052a;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary-inverse.disabled:hover, .btn-primary-inverse.disabled:focus, .btn-primary-inverse.disabled.focus, .btn-primary-inverse[disabled]:hover, .btn-primary-inverse[disabled]:focus, .btn-primary-inverse[disabled].focus, fieldset[disabled] .btn-primary-inverse:hover, fieldset[disabled] .btn-primary-inverse:focus, fieldset[disabled] .btn-primary-inverse.focus {
  background-color: #b3052a;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary-inverse:not(:disabled):not(.disabled):active, .btn-primary-inverse:not(:disabled):not(.disabled).active, .show > .btn-primary-inverse.dropdown-toggle {
  color: #fff;
  background-color: #f92552;
  border-color: transparent;
}
.btn-primary-inverse .badge {
  color: #f92552;
  background-color: #fff;
}

.btn-success {
  color: #fff;
  background-color: #0fe3ab;
  border-color: transparent;
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #0ed5a0;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:hover {
  color: #fff;
  background-color: #0ed5a0;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #0ed5a0;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #0a926e;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  background-image: none;
}
.btn-success.disabled, .btn-success[disabled] {
  background-color: #098363;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus {
  background-color: #098363;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #0ed5a0;
  border-color: transparent;
}
.btn-success .badge {
  color: #0fe3ab;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #9e69ee;
  border-color: transparent;
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #955bec;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:hover {
  color: #fff;
  background-color: #955bec;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #955bec;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #6c1be5;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  background-image: none;
}
.btn-info.disabled, .btn-info[disabled] {
  background-color: #6519d8;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus {
  background-color: #6519d8;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #955bec;
  border-color: transparent;
}
.btn-info .badge {
  color: #9e69ee;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #ff7e1f;
  border-color: transparent;
}
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #ff7510;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:hover {
  color: #fff;
  background-color: #ff7510;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ff7510;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #c75500;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  background-image: none;
}
.btn-warning.disabled, .btn-warning[disabled] {
  background-color: #b84e00;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus {
  background-color: #b84e00;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ff7510;
  border-color: transparent;
}
.btn-warning .badge {
  color: #ff7e1f;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #f92552;
  border-color: transparent;
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #f91646;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:hover {
  color: #fff;
  background-color: #f91646;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #f91646;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #c2052d;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  background-image: none;
}
.btn-danger.disabled, .btn-danger[disabled] {
  background-color: #b3052a;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus {
  background-color: #b3052a;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #f91646;
  border-color: transparent;
}
.btn-danger .badge {
  color: #f92552;
  background-color: #fff;
}

.btn.btn-instagram {
  background-color: #1e78dd;
  color: #fff;
}
.btn.btn-instagram:hover, .btn.btn-instagram:active, .btn.btn-instagram:focus {
  background-color: #3185e3;
}
.btn.btn-instagram i {
  font-size: 6px;
  position: relative;
  top: -1px;
}
.btn.btn-instagram.btn-sm {
  padding-left: 24px;
  padding-right: 24px;
}

.btn.btn-facebook {
  color: #fff;
  background-color: #4d6baa;
  border-color: transparent;
}
.btn.btn-facebook:focus, .btn.btn-facebook.focus {
  color: #fff;
  background-color: #5c78b5;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-facebook:hover {
  color: #fff;
  background-color: #5c78b5;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-facebook:active, .btn.btn-facebook.active, .open > .btn.btn-facebook.dropdown-toggle {
  color: #fff;
  background-color: #5c78b5;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-facebook:active:hover, .btn.btn-facebook:active:focus, .btn.btn-facebook:active.focus, .btn.btn-facebook.active:hover, .btn.btn-facebook.active:focus, .btn.btn-facebook.active.focus, .open > .btn.btn-facebook.dropdown-toggle:hover, .open > .btn.btn-facebook.dropdown-toggle:focus, .open > .btn.btn-facebook.dropdown-toggle.focus {
  color: #fff;
  background-color: #32456e;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-facebook:active, .btn.btn-facebook.active, .open > .btn.btn-facebook.dropdown-toggle {
  background-image: none;
}
.btn.btn-facebook.disabled, .btn.btn-facebook[disabled] {
  background-color: #2d3f64;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-facebook.disabled:hover, .btn.btn-facebook.disabled:focus, .btn.btn-facebook.disabled.focus, .btn.btn-facebook[disabled]:hover, .btn.btn-facebook[disabled]:focus, .btn.btn-facebook[disabled].focus, fieldset[disabled] .btn.btn-facebook:hover, fieldset[disabled] .btn.btn-facebook:focus, fieldset[disabled] .btn.btn-facebook.focus {
  background-color: #2d3f64;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-facebook:not(:disabled):not(.disabled):active, .btn.btn-facebook:not(:disabled):not(.disabled).active, .show > .btn.btn-facebook.dropdown-toggle {
  color: #fff;
  background-color: #5c78b5;
  border-color: transparent;
}
.btn.btn-facebook .badge {
  color: #4d6baa;
  background-color: #fff;
}

.btn.btn-twitter {
  color: #fff;
  background-color: #3fcef2;
  border-color: transparent;
}
.btn.btn-twitter:focus, .btn.btn-twitter.focus {
  color: #fff;
  background-color: #57d4f4;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-twitter:hover {
  color: #fff;
  background-color: #57d4f4;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-twitter:active, .btn.btn-twitter.active, .open > .btn.btn-twitter.dropdown-toggle {
  color: #fff;
  background-color: #57d4f4;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-twitter:active:hover, .btn.btn-twitter:active:focus, .btn.btn-twitter:active.focus, .btn.btn-twitter.active:hover, .btn.btn-twitter.active:focus, .btn.btn-twitter.active.focus, .open > .btn.btn-twitter.dropdown-toggle:hover, .open > .btn.btn-twitter.dropdown-toggle:focus, .open > .btn.btn-twitter.dropdown-toggle.focus {
  color: #fff;
  background-color: #0ea6cc;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-twitter:active, .btn.btn-twitter.active, .open > .btn.btn-twitter.dropdown-toggle {
  background-image: none;
}
.btn.btn-twitter.disabled, .btn.btn-twitter[disabled] {
  background-color: #0d9abe;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-twitter.disabled:hover, .btn.btn-twitter.disabled:focus, .btn.btn-twitter.disabled.focus, .btn.btn-twitter[disabled]:hover, .btn.btn-twitter[disabled]:focus, .btn.btn-twitter[disabled].focus, fieldset[disabled] .btn.btn-twitter:hover, fieldset[disabled] .btn.btn-twitter:focus, fieldset[disabled] .btn.btn-twitter.focus {
  background-color: #0d9abe;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-twitter:not(:disabled):not(.disabled):active, .btn.btn-twitter:not(:disabled):not(.disabled).active, .show > .btn.btn-twitter.dropdown-toggle {
  color: #fff;
  background-color: #57d4f4;
  border-color: transparent;
}
.btn.btn-twitter .badge {
  color: #3fcef2;
  background-color: #fff;
}

.btn.btn-linkedin {
  color: #fff;
  background-color: #0077B5;
  border-color: transparent;
}
.btn.btn-linkedin:focus, .btn.btn-linkedin.focus {
  color: #fff;
  background-color: #0088cf;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-linkedin:hover {
  color: #fff;
  background-color: #0088cf;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-linkedin:active, .btn.btn-linkedin.active, .open > .btn.btn-linkedin.dropdown-toggle {
  color: #fff;
  background-color: #0088cf;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-linkedin:active:hover, .btn.btn-linkedin:active:focus, .btn.btn-linkedin:active.focus, .btn.btn-linkedin.active:hover, .btn.btn-linkedin.active:focus, .btn.btn-linkedin.active.focus, .open > .btn.btn-linkedin.dropdown-toggle:hover, .open > .btn.btn-linkedin.dropdown-toggle:focus, .open > .btn.btn-linkedin.dropdown-toggle.focus {
  color: #fff;
  background-color: #003e5e;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-linkedin:active, .btn.btn-linkedin.active, .open > .btn.btn-linkedin.dropdown-toggle {
  background-image: none;
}
.btn.btn-linkedin.disabled, .btn.btn-linkedin[disabled] {
  background-color: #00344f;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-linkedin.disabled:hover, .btn.btn-linkedin.disabled:focus, .btn.btn-linkedin.disabled.focus, .btn.btn-linkedin[disabled]:hover, .btn.btn-linkedin[disabled]:focus, .btn.btn-linkedin[disabled].focus, fieldset[disabled] .btn.btn-linkedin:hover, fieldset[disabled] .btn.btn-linkedin:focus, fieldset[disabled] .btn.btn-linkedin.focus {
  background-color: #00344f;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-linkedin:not(:disabled):not(.disabled):active, .btn.btn-linkedin:not(:disabled):not(.disabled).active, .show > .btn.btn-linkedin.dropdown-toggle {
  color: #fff;
  background-color: #0088cf;
  border-color: transparent;
}
.btn.btn-linkedin .badge {
  color: #0077B5;
  background-color: #fff;
}

.btn.btn-vk {
  color: #fff;
  background-color: #6383A8;
  border-color: transparent;
}
.btn.btn-vk:focus, .btn.btn-vk.focus {
  color: #fff;
  background-color: #7390b1;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-vk:hover {
  color: #fff;
  background-color: #7390b1;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-vk:active, .btn.btn-vk.active, .open > .btn.btn-vk.dropdown-toggle {
  color: #fff;
  background-color: #7390b1;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-vk:active:hover, .btn.btn-vk:active:focus, .btn.btn-vk:active.focus, .btn.btn-vk.active:hover, .btn.btn-vk.active:focus, .btn.btn-vk.active.focus, .open > .btn.btn-vk.dropdown-toggle:hover, .open > .btn.btn-vk.dropdown-toggle:focus, .open > .btn.btn-vk.dropdown-toggle.focus {
  color: #fff;
  background-color: #415874;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-vk:active, .btn.btn-vk.active, .open > .btn.btn-vk.dropdown-toggle {
  background-image: none;
}
.btn.btn-vk.disabled, .btn.btn-vk[disabled] {
  background-color: #3b516a;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-vk.disabled:hover, .btn.btn-vk.disabled:focus, .btn.btn-vk.disabled.focus, .btn.btn-vk[disabled]:hover, .btn.btn-vk[disabled]:focus, .btn.btn-vk[disabled].focus, fieldset[disabled] .btn.btn-vk:hover, fieldset[disabled] .btn.btn-vk:focus, fieldset[disabled] .btn.btn-vk.focus {
  background-color: #3b516a;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-vk:not(:disabled):not(.disabled):active, .btn.btn-vk:not(:disabled):not(.disabled).active, .show > .btn.btn-vk.dropdown-toggle {
  color: #fff;
  background-color: #7390b1;
  border-color: transparent;
}
.btn.btn-vk .badge {
  color: #6383A8;
  background-color: #fff;
}

.btn.btn-odnoklassniki {
  color: #fff;
  background-color: #F4731C;
  border-color: transparent;
}
.btn.btn-odnoklassniki:focus, .btn.btn-odnoklassniki.focus {
  color: #fff;
  background-color: #f58234;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-odnoklassniki:hover {
  color: #fff;
  background-color: #f58234;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-odnoklassniki:active, .btn.btn-odnoklassniki.active, .open > .btn.btn-odnoklassniki.dropdown-toggle {
  color: #fff;
  background-color: #f58234;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-odnoklassniki:active:hover, .btn.btn-odnoklassniki:active:focus, .btn.btn-odnoklassniki:active.focus, .btn.btn-odnoklassniki.active:hover, .btn.btn-odnoklassniki.active:focus, .btn.btn-odnoklassniki.active.focus, .open > .btn.btn-odnoklassniki.dropdown-toggle:hover, .open > .btn.btn-odnoklassniki.dropdown-toggle:focus, .open > .btn.btn-odnoklassniki.dropdown-toggle.focus {
  color: #fff;
  background-color: #b14c09;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-odnoklassniki:active, .btn.btn-odnoklassniki.active, .open > .btn.btn-odnoklassniki.dropdown-toggle {
  background-image: none;
}
.btn.btn-odnoklassniki.disabled, .btn.btn-odnoklassniki[disabled] {
  background-color: #a24608;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-odnoklassniki.disabled:hover, .btn.btn-odnoklassniki.disabled:focus, .btn.btn-odnoklassniki.disabled.focus, .btn.btn-odnoklassniki[disabled]:hover, .btn.btn-odnoklassniki[disabled]:focus, .btn.btn-odnoklassniki[disabled].focus, fieldset[disabled] .btn.btn-odnoklassniki:hover, fieldset[disabled] .btn.btn-odnoklassniki:focus, fieldset[disabled] .btn.btn-odnoklassniki.focus {
  background-color: #a24608;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-odnoklassniki:not(:disabled):not(.disabled):active, .btn.btn-odnoklassniki:not(:disabled):not(.disabled).active, .show > .btn.btn-odnoklassniki.dropdown-toggle {
  color: #fff;
  background-color: #f58234;
  border-color: transparent;
}
.btn.btn-odnoklassniki .badge {
  color: #F4731C;
  background-color: #fff;
}

.btn.btn-whatsapp {
  color: #fff;
  background-color: #25D366;
  border-color: transparent;
}
.btn.btn-whatsapp:focus, .btn.btn-whatsapp.focus {
  color: #fff;
  background-color: #36dc74;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-whatsapp:hover {
  color: #fff;
  background-color: #36dc74;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-whatsapp:active, .btn.btn-whatsapp.active, .open > .btn.btn-whatsapp.dropdown-toggle {
  color: #fff;
  background-color: #36dc74;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-whatsapp:active:hover, .btn.btn-whatsapp:active:focus, .btn.btn-whatsapp:active.focus, .btn.btn-whatsapp.active:hover, .btn.btn-whatsapp.active:focus, .btn.btn-whatsapp.active.focus, .open > .btn.btn-whatsapp.dropdown-toggle:hover, .open > .btn.btn-whatsapp.dropdown-toggle:focus, .open > .btn.btn-whatsapp.dropdown-toggle.focus {
  color: #fff;
  background-color: #188942;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-whatsapp:active, .btn.btn-whatsapp.active, .open > .btn.btn-whatsapp.dropdown-toggle {
  background-image: none;
}
.btn.btn-whatsapp.disabled, .btn.btn-whatsapp[disabled] {
  background-color: #167c3c;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-whatsapp.disabled:hover, .btn.btn-whatsapp.disabled:focus, .btn.btn-whatsapp.disabled.focus, .btn.btn-whatsapp[disabled]:hover, .btn.btn-whatsapp[disabled]:focus, .btn.btn-whatsapp[disabled].focus, fieldset[disabled] .btn.btn-whatsapp:hover, fieldset[disabled] .btn.btn-whatsapp:focus, fieldset[disabled] .btn.btn-whatsapp.focus {
  background-color: #167c3c;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-whatsapp:not(:disabled):not(.disabled):active, .btn.btn-whatsapp:not(:disabled):not(.disabled).active, .show > .btn.btn-whatsapp.dropdown-toggle {
  color: #fff;
  background-color: #36dc74;
  border-color: transparent;
}
.btn.btn-whatsapp .badge {
  color: #25D366;
  background-color: #fff;
}

.btn.btn-viber {
  color: #fff;
  background-color: #7C529E;
  border-color: transparent;
}
.btn.btn-viber:focus, .btn.btn-viber.focus {
  color: #fff;
  background-color: #895eab;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-viber:hover {
  color: #fff;
  background-color: #895eab;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-viber:active, .btn.btn-viber.active, .open > .btn.btn-viber.dropdown-toggle {
  color: #fff;
  background-color: #895eab;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-viber:active:hover, .btn.btn-viber:active:focus, .btn.btn-viber:active.focus, .btn.btn-viber.active:hover, .btn.btn-viber.active:focus, .btn.btn-viber.active.focus, .open > .btn.btn-viber.dropdown-toggle:hover, .open > .btn.btn-viber.dropdown-toggle:focus, .open > .btn.btn-viber.dropdown-toggle.focus {
  color: #fff;
  background-color: #4f3465;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-viber:active, .btn.btn-viber.active, .open > .btn.btn-viber.dropdown-toggle {
  background-image: none;
}
.btn.btn-viber.disabled, .btn.btn-viber[disabled] {
  background-color: #472f5b;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-viber.disabled:hover, .btn.btn-viber.disabled:focus, .btn.btn-viber.disabled.focus, .btn.btn-viber[disabled]:hover, .btn.btn-viber[disabled]:focus, .btn.btn-viber[disabled].focus, fieldset[disabled] .btn.btn-viber:hover, fieldset[disabled] .btn.btn-viber:focus, fieldset[disabled] .btn.btn-viber.focus {
  background-color: #472f5b;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-viber:not(:disabled):not(.disabled):active, .btn.btn-viber:not(:disabled):not(.disabled).active, .show > .btn.btn-viber.dropdown-toggle {
  color: #fff;
  background-color: #895eab;
  border-color: transparent;
}
.btn.btn-viber .badge {
  color: #7C529E;
  background-color: #fff;
}
.btn.btn-viber img {
  width: 16px;
  height: auto;
}
.btn.btn-viber img + .post-sharing__label {
  margin-left: 10px;
}

.btn.btn-telegram {
  color: #fff;
  background-color: #2CA5E0;
  border-color: transparent;
}
.btn.btn-telegram:focus, .btn.btn-telegram.focus {
  color: #fff;
  background-color: #42aee3;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-telegram:hover {
  color: #fff;
  background-color: #42aee3;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-telegram:active, .btn.btn-telegram.active, .open > .btn.btn-telegram.dropdown-toggle {
  color: #fff;
  background-color: #42aee3;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-telegram:active:hover, .btn.btn-telegram:active:focus, .btn.btn-telegram:active.focus, .btn.btn-telegram.active:hover, .btn.btn-telegram.active:focus, .btn.btn-telegram.active.focus, .open > .btn.btn-telegram.dropdown-toggle:hover, .open > .btn.btn-telegram.dropdown-toggle:focus, .open > .btn.btn-telegram.dropdown-toggle.focus {
  color: #fff;
  background-color: #17729e;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-telegram:active, .btn.btn-telegram.active, .open > .btn.btn-telegram.dropdown-toggle {
  background-image: none;
}
.btn.btn-telegram.disabled, .btn.btn-telegram[disabled] {
  background-color: #156891;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-telegram.disabled:hover, .btn.btn-telegram.disabled:focus, .btn.btn-telegram.disabled.focus, .btn.btn-telegram[disabled]:hover, .btn.btn-telegram[disabled]:focus, .btn.btn-telegram[disabled].focus, fieldset[disabled] .btn.btn-telegram:hover, fieldset[disabled] .btn.btn-telegram:focus, fieldset[disabled] .btn.btn-telegram.focus {
  background-color: #156891;
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-telegram:not(:disabled):not(.disabled):active, .btn.btn-telegram:not(:disabled):not(.disabled).active, .show > .btn.btn-telegram.dropdown-toggle {
  color: #fff;
  background-color: #42aee3;
  border-color: transparent;
}
.btn.btn-telegram .badge {
  color: #2CA5E0;
  background-color: #fff;
}

.btn.btn-link {
  color: rgba(255, 255, 255, 0.4);
  color: #7f7e8c;
}
.btn.btn-link:hover {
  text-decoration: none;
  color: #fff;
}
.btn.btn-link:hover {
  color: #fff;
}

.btn-lg {
  padding: 16px 80px;
  font-size: 14px;
  line-height: 1.33em;
  border-radius: 4px;
}

.btn-sm {
  padding: 10px 38px;
  font-size: 12px;
  line-height: 1.5em;
  border-radius: 4px;
}

.btn-xs {
  padding: 5px 13px;
  font-size: 9px;
  line-height: 1.5em;
  border-radius: 2px;
}

.btn.btn-outline {
  background-color: transparent;
}
.btn.btn-outline.btn-default {
  border-color: #7f7e8c;
  color: #fff;
}
.btn.btn-outline.btn-default:hover {
  background-color: transparent;
  border-color: #3ffeca;
  color: #fff;
}
.btn.btn-outline.btn-default:hover.btn-circle {
  background-color: #3ffeca;
}
.btn.btn-outline.btn-primary {
  border-color: #7f7e8c;
  color: #fff;
}
.btn.btn-outline.btn-primary:hover {
  background-color: transparent;
  border-color: #3ffeca;
  color: #fff;
}
.btn.btn-outline.btn-primary:hover.btn-circle {
  background-color: #3ffeca;
}
.btn.btn-outline.btn-inverse {
  border-color: #fff;
  color: #fff;
  border-width: 2px;
}
.btn.btn-outline.btn-inverse:hover {
  background-color: #f92552;
  border-color: #f92552;
  color: #fff;
}
.btn.btn-outline.btn-inverse:hover i {
  color: #fff;
}
.btn.btn-outline.btn-inverse:hover.btn-circle {
  background-color: #f92552;
}
.btn.btn-outline.btn-success {
  border-color: #0fe3ab;
  color: #fff;
  border-width: 2px;
}
.btn.btn-outline.btn-success:hover {
  background-color: #0ed5a0;
  border-color: #0ed5a0;
  color: #fff;
}
.btn.btn-outline.btn-success:hover i {
  color: #fff;
}
.btn.btn-outline.btn-success:hover.btn-circle {
  background-color: #0ed5a0;
}
.btn.btn-outline.btn-info {
  border-color: #9e69ee;
  color: #fff;
  border-width: 2px;
}
.btn.btn-outline.btn-info:hover {
  background-color: #955bec;
  border-color: #955bec;
  color: #fff;
}
.btn.btn-outline.btn-info:hover i {
  color: #fff;
}
.btn.btn-outline.btn-info:hover.btn-circle {
  background-color: #955bec;
}
.btn.btn-outline.btn-warning {
  border-color: #ff7e1f;
  color: #fff;
  border-width: 2px;
}
.btn.btn-outline.btn-warning:hover {
  background-color: #ff7510;
  border-color: #ff7510;
  color: #fff;
}
.btn.btn-outline.btn-warning:hover i {
  color: #fff;
}
.btn.btn-outline.btn-warning:hover.btn-circle {
  background-color: #ff7510;
}
.btn.btn-outline.btn-danger {
  border-color: #f92552;
  color: #fff;
  border-width: 2px;
}
.btn.btn-outline.btn-danger:hover {
  background-color: #f91646;
  border-color: #f91646;
  color: #fff;
}
.btn.btn-outline.btn-danger:hover i {
  color: #fff;
}
.btn.btn-outline.btn-danger:hover.btn-circle {
  background-color: #f91646;
}

.btn-icon i {
  font-size: 14px;
  margin-right: 10px;
}

.btn-icon-right i {
  margin-right: 0;
  margin-left: 10px;
}

.btn-single-icon {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 47px;
  text-align: center;
}
.btn-single-icon i {
  margin: 0;
  font-size: 13px;
  line-height: 1.2em;
}

.btn-circle {
  border-radius: 50%;
  width: 38px;
  height: 38px;
  line-height: 38px;
  padding: 0;
  text-align: center;
}
.btn-circle i {
  font-size: 15px;
}
.btn-circle.btn-outline {
  border-width: 2px;
}

.btn-block {
  padding-left: 0;
  padding-right: 0;
}

.btn-condensed.btn-sm {
  padding: 13px 28px;
}
.btn-condensed.btn-sm.btn-icon-right {
  padding-right: 22px;
}

.btn-fab {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  overflow: hidden;
  background-color: #f92552;
  border-radius: 50%;
}
.btn-fab::before, .btn-fab::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  transition: transform 0.25s ease;
}
.btn-fab::before {
  width: 17px;
  height: 3px;
}
.btn-fab::after {
  width: 3px;
  height: 17px;
}
.btn-fab:hover::before, .btn-fab:hover::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.btn-fab--clean {
  background-color: transparent;
}
.btn-fab--clean::before, .btn-fab--clean::after {
  background-color: #3ffeca;
}

.btn-fab--sm {
  width: 30px;
  height: 30px;
}
.btn-fab--sm::before {
  width: 10px;
  height: 2px;
}
.btn-fab--sm::after {
  width: 2px;
  height: 10px;
}

/* Card
/* ------------------------- */
.card {
  border: 1px solid #3c3b5b;
  border-radius: 4px;
  background-color: #323150;
  margin-bottom: 15px;
}
.card.sticky {
  background-color: #323150;
}
.wpb_text_column .card:last-child {
  margin-bottom: 15px !important;
}

.card--row {
  flex-direction: row;
}

.card--block {
  display: block;
}

.card--clean {
  background: none;
  border: none;
}
.card--clean .card__header {
  background-color: #383759;
  border: 1px solid #3c3b5b;
  border-radius: 4px;
}
.card--clean > .card__content {
  padding: 0;
}
.card--clean > .card__header + .card__content {
  padding: 15px 0 0 0;
}

.card--has-table > .card__content {
  padding: 0;
  margin: 0 !important;
}
.card--has-table > .card__content .table {
  margin-bottom: 0;
}

.card--no-paddings > .card__content {
  padding: 0;
}

.card--squared-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 22px 23px;
  border-radius: 4px 4px 0 0;
  position: relative;
  border-bottom: 1px solid #3c3b5b;
  overflow: hidden;
  background-color: #383759;
}
.card__header::before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #f92552;
  border-radius: 3px 0 0 0;
}
.card__header ~ .card__header {
  border-radius: 0;
}
.card__header ~ .card__header::before {
  border-radius: 0;
}
.card__header > h4 {
  font-size: 16px;
  line-height: 1.2em;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  text-transform: uppercase;
  font-style: normal;
  padding-right: 1em;
  padding-top: 5px;
  padding-bottom: 5px;
  vertical-align: middle;
  font-style: italic;
  flex-grow: 1;
}
.card__header--single {
  border: 1px solid #3c3b5b;
  border-radius: 4px;
  margin-bottom: 15px;
}

@media (min-width: 480px) {
  .card__header--has-checkbox .checkbox {
    padding-top: 0;
    font-size: 10px;
    font-weight: bold;
  }
}

.card__header--has-arrows .slick-prev,
.card__header--has-arrows .slick-next {
  top: 25px;
}

.card__header--no-bottom-border {
  border-bottom: none;
}

.card__header--no-highlight::before {
  display: none !important;
}

.card__content {
  padding: 24px 24px;
  position: relative;
}

.card__content-inner {
  padding: 20px;
}

.card__subheader {
  background: #363555;
  border-top: 1px solid #3c3b5b;
  border-bottom: 1px solid #3c3b5b;
  text-align: center;
  padding: 8px 0;
  margin-left: -24px;
  margin-right: -24px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .card__subheader {
    padding: 11px 0;
    margin-bottom: 30px;
  }
}
.card__subheader h5 {
  margin-bottom: 0;
  font-style: normal;
  text-transform: uppercase;
}

.card__subheader--nomargins {
  margin: 0;
}

.card__subheader--sm h5 {
  font-size: 11px;
  line-height: 1.2em;
}

@media (min-width: 992px) {
  .card--lg .card__content {
    padding: 43px 43px;
  }
}

@media (min-width: 992px) {
  .card--xlg .card__content {
    padding: 70px 70px;
  }
}

.card--alt-color .card__header::before {
  background-color: #3ffeca;
}

.card__header.card__header--shop-filter {
  padding: 0;
}

.card--section {
  border-radius: 0;
  border-left: none;
  border-right: none;
}

.card--info .card__content p {
  font-size: 0.86em;
  line-height: 1.83em;
}
.card--info .card__content p:last-child {
  margin-bottom: 0;
}
.card--info .contact-info {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #3c3b5b;
}
.card--info .contact-info__item {
  flex-grow: 1;
  max-width: 100%;
  flex-basis: 0;
  margin: -1px 0 0 -1px;
  text-align: center;
  padding: 25px 10px;
  border-left: 1px solid #3c3b5b;
  border-top: 1px solid #3c3b5b;
}
.card--info .contact-info__item:first-child {
  border-bottom-left-radius: 4px;
}
.card--info .contact-info__icon {
  color: #f92552;
  font-size: 18px;
  margin-bottom: 20px;
}
.card--info .contact-info__label {
  font-size: 0.86em;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  color: #fff;
}
.card--info .contact-info__label a {
  color: #fff;
}
.card--info .contact-info__label a:hover {
  color: #0fe3ab;
}

/* Alerts
/* ------------------------- */
.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #323150;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #3c3b5b;
}
@media (min-width: 992px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron--card {
  border: 1px solid #3c3b5b;
  border-radius: 4px;
}

.jumbotron--style1 {
  padding: 0;
  position: relative;
}
@media (min-width: 992px) {
  .jumbotron--style1 {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .jumbotron--style1::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: repeating-radial-gradient(at 50% 50%, #000, #000 1px, transparent 1px, transparent 4px);
    background-size: 5px 5px;
    background-position: 100% 0;
    background-repeat: repeat;
    opacity: 1;
  }
}
.jumbotron--style1 .jumbotron__title {
  line-height: 1em;
  margin-bottom: 0;
  color: #f92552;
}
@media (max-width: 479px) {
  .jumbotron--style1 .jumbotron__title {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .jumbotron--style1 .jumbotron__title {
    font-size: 72px;
  }
}
@media (min-width: 1200px) {
  .jumbotron--style1 .jumbotron__title {
    font-size: 90px;
  }
}
.jumbotron--style1 .jumbotron__title:first-line,
.jumbotron--style1 .jumbotron__title .highlight {
  color: #fff;
}
.jumbotron--style1 .jumbotron__subtitle {
  margin-bottom: 0.25em;
  color: #fff;
}
@media (max-width: 479px) {
  .jumbotron--style1 .jumbotron__subtitle {
    font-size: 9px;
  }
}
@media (min-width: 1200px) {
  .jumbotron--style1 .jumbotron__subtitle {
    font-size: 14px;
  }
}
.jumbotron--style1 .jumbotron__desc {
  padding-top: 0.25em;
  margin-bottom: 0;
}
@media (max-width: 479px) {
  .jumbotron--style1 .jumbotron__desc {
    font-size: 10px;
    line-height: 1.2em;
  }
}
.jumbotron--style1 .jumbotron__content {
  padding: 2rem 1rem;
}
@media (min-width: 992px) {
  .jumbotron--style1 .jumbotron__content {
    padding: 4rem 2rem;
  }
}

/* Labels
/* ------------------------- */
.label {
  font-weight: bold;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
  padding: 0.5em 1.1em;
  font-size: 8px;
  font-weight: 800;
  font-family: "Exo 2", sans-serif;
  color: #fff;
  text-transform: uppercase;
}

a.label:hover, a.label:focus {
  color: #fff;
}

.label-default {
  background-color: #9e9caa;
}
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #838192;
}

.label-primary {
  background-color: #f92552;
}
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #e50636;
}

.label-success {
  background-color: #0fe3ab;
}
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #0cb387;
}

.label-info {
  background-color: #9e69ee;
}
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #803be9;
}

.label-warning {
  background-color: #ff7e1f;
}
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #eb6400;
}

.label-danger {
  background-color: #f92552;
}
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #e50636;
}

/* Forms
/* ------------------------- */
label {
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  color: #fff;
  margin-bottom: 9px;
  font-weight: bold;
}
label .required {
  color: #f92552;
  color: #3ffeca;
}

.form-control,
.input-text,
select {
  width: 100%;
  appearance: none;
  height: 52px;
  padding: 12px 16px;
  line-height: 1.733333;
  font-size: 14px;
  color: #9e9caa;
  background-color: #383759;
  border: 1px solid #3c3b5b;
  border-radius: 4px;
  box-shadow: none;
  transition: border-color ease-in-out 0.15s;
}
.form-control:focus,
.input-text:focus,
select:focus {
  color: #9e9caa;
  background-color: #383759;
  border-color: #9e69ee;
  box-shadow: none;
  outline: none;
}
.form-control::-moz-placeholder,
.input-text::-moz-placeholder,
select::-moz-placeholder {
  color: rgba(127, 126, 140, 0.6);
  opacity: 1;
}
.form-control:-ms-input-placeholder,
.input-text:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: rgba(127, 126, 140, 0.6);
}
.form-control::-webkit-input-placeholder,
.input-text::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: rgba(127, 126, 140, 0.6);
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control,
.input-text[disabled],
.input-text[readonly],
fieldset[disabled] .input-text,
select[disabled],
select[readonly],
fieldset[disabled] select {
  background-color: #3c3b5b;
  border-color: transparent;
}
.form-control[disabled]::-moz-placeholder, .form-control[readonly]::-moz-placeholder, fieldset[disabled] .form-control::-moz-placeholder,
.input-text[disabled]::-moz-placeholder,
.input-text[readonly]::-moz-placeholder,
fieldset[disabled] .input-text::-moz-placeholder,
select[disabled]::-moz-placeholder,
select[readonly]::-moz-placeholder,
fieldset[disabled] select::-moz-placeholder {
  color: rgba(154, 157, 162, 0.4);
  opacity: 1;
}
.form-control[disabled]:-ms-input-placeholder, .form-control[readonly]:-ms-input-placeholder, fieldset[disabled] .form-control:-ms-input-placeholder,
.input-text[disabled]:-ms-input-placeholder,
.input-text[readonly]:-ms-input-placeholder,
fieldset[disabled] .input-text:-ms-input-placeholder,
select[disabled]:-ms-input-placeholder,
select[readonly]:-ms-input-placeholder,
fieldset[disabled] select:-ms-input-placeholder {
  color: rgba(154, 157, 162, 0.4);
}
.form-control[disabled]::-webkit-input-placeholder, .form-control[readonly]::-webkit-input-placeholder, fieldset[disabled] .form-control::-webkit-input-placeholder,
.input-text[disabled]::-webkit-input-placeholder,
.input-text[readonly]::-webkit-input-placeholder,
fieldset[disabled] .input-text::-webkit-input-placeholder,
select[disabled]::-webkit-input-placeholder,
select[readonly]::-webkit-input-placeholder,
fieldset[disabled] select::-webkit-input-placeholder {
  color: rgba(154, 157, 162, 0.4);
}
table .form-control,
table .input-text,
table select {
  font-family: "Roboto", sans-serif;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  color: #fff;
}
.has-success .form-control {
  border-color: #0fe3ab;
  box-shadow: none;
  background-position: center right 0.9em;
  background-repeat: no-repeat;
  background-size: 20px 16px;
  padding-right: 2.2em;
}
.has-success .form-control:focus {
  border-color: #0fe3ab;
  box-shadow: none;
}
.has-success .input-group-addon {
  color: #0fe3ab;
  border-color: #0fe3ab;
  background-color: #323150;
}
.has-success .form-control-feedback {
  color: #0fe3ab;
}
.has-success .form-control {
  background-size: 15px 12px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 12'%3E%3Cpath transform='translate(-189.438 -2446.25)' fill='%2324d9b0' d='M201.45,2446.24l2.121,2.13-9.192,9.19-2.122-2.12Zm-4.949,9.2-2.121,2.12-4.95-4.95,2.121-2.12Z'/%3E%3C/svg%3E");
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  color: #fff;
}
.has-warning .form-control {
  border-color: #ff7e1f;
  box-shadow: none;
  background-position: center right 0.9em;
  background-repeat: no-repeat;
  background-size: 20px 16px;
  padding-right: 2.2em;
}
.has-warning .form-control:focus {
  border-color: #ff7e1f;
  box-shadow: none;
}
.has-warning .input-group-addon {
  color: #ff7e1f;
  border-color: #ff7e1f;
  background-color: #323150;
}
.has-warning .form-control-feedback {
  color: #ff7e1f;
}
.has-warning .form-control {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ff7e1f' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E");
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  color: #fff;
}
.has-error .form-control {
  border-color: #f92552;
  box-shadow: none;
  background-position: center right 0.9em;
  background-repeat: no-repeat;
  background-size: 20px 16px;
  padding-right: 2.2em;
}
.has-error .form-control:focus {
  border-color: #f92552;
  box-shadow: none;
}
.has-error .input-group-addon {
  color: #f92552;
  border-color: #f92552;
  background-color: #323150;
}
.has-error .form-control-feedback {
  color: #f92552;
}
.has-error .form-control {
  background-size: 11px 11px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 11'%3E%3Cpath transform='translate(-190.844 -2353.84)' fill='%23f34141' d='M190.843,2355.96l2.121-2.12,9.193,9.2-2.122,2.12Zm9.192-2.12,2.122,2.12-9.193,9.2-2.121-2.12Z'/%3E%3C/svg%3E");
}

.wpcf7-not-valid {
  border-color: #f92552;
  box-shadow: none;
  background-position: center right 0.9em;
  background-repeat: no-repeat;
  background-size: 20px 16px;
  padding-right: 2.2em;
}
.wpcf7-not-valid:focus {
  border-color: #f92552;
  box-shadow: none;
}
.wpcf7-not-valid + .wpcf7-not-valid-tip {
  display: none;
}

select.form-control,
select {
  border-radius: 4px;
  background-color: #383759;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'%3E%3Cpath transform='translate(-586.156 -1047.28)' fill='%23fff' d='M586.171,1048l0.708-.71,2.828,2.83-0.707.71Zm4.95-.71,0.707,0.71L589,1050.83l-0.707-.71Z'/%3E%3C/svg%3E");
  background-position: right 1em center;
  background-repeat: no-repeat;
  padding-right: 2.2em;
  background-size: 6px 4px;
  -moz-appearance: none;
  -webkit-appearance: none;
  color: rgba(154, 157, 162, 0.4);
}
select.form-control::-ms-expand,
select::-ms-expand {
  display: none;
}
select.form-control.input-sm,
select.input-sm {
  height: 45px;
  padding-top: 7px;
  padding-bottom: 7px;
}

select.form-control--clean {
  font-size: 15px;
  height: 28px;
  line-height: 1.2em;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 0;
  color: #fff;
  font-family: "Exo 2", sans-serif;
  border: none;
}

.input-sm {
  height: 45px;
  padding: 10px 14px;
  font-size: 13px;
}

.form-group {
  background: none;
  margin-bottom: 22px;
}

.form-group--sm {
  margin-bottom: 15px;
}

.form-group--xs {
  margin-bottom: 10px;
}

.form-group--lg {
  margin-bottom: 34px;
}

.form-group--submit {
  margin-bottom: 0;
  padding-top: 12px;
}

.form-group--password-forgot {
  display: flex;
  padding: 6px 0;
}
.form-group--password-forgot label {
  flex-grow: 1;
}
.form-group--password-forgot > .row {
  width: calc(100% + 16px);
}
.form-group--password-forgot .lost_password-wrap {
  padding-top: 5px;
}
@media (min-width: 576px) {
  .form-group--password-forgot .lost_password-wrap {
    text-align: right;
    padding-top: 0;
  }
}
.form-group--password-forgot .password-reminder {
  font-size: 11px;
  text-transform: uppercase;
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.form-group--password-forgot .password-reminder a {
  white-space: nowrap;
}

.form-group--upload {
  overflow: hidden;
}

@media (min-width: 768px) {
  .form-group__avatar {
    float: left;
    width: 240px;
    width: 160px;
  }
}
.form-group__avatar img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 13px;
  border-radius: 4px;
}

.form-group__label {
  display: inline-block;
  vertical-align: middle;
}
.form-group__label h6 {
  font-size: 11px;
  line-height: 1.2em;
  margin-bottom: 0.2em;
}
.form-group__label span {
  display: block;
  font-size: 11px;
  line-height: 1.2em;
  color: #c2c4c7;
}

.form-group__upload {
  padding-top: 10px;
}
@media (min-width: 768px) {
  .form-group__upload {
    padding-top: 6px;
  }
}

.wpcf7-checkbox .wpcf7-list-item label,
.checkbox {
  position: relative;
  margin: 0;
  font-weight: bold;
  padding-left: 24px;
}
.wpcf7-checkbox .wpcf7-list-item label:hover,
.checkbox:hover {
  cursor: pointer;
}
.widget--sidebar .wpcf7-checkbox .wpcf7-list-item label,
.widget--sidebar .checkbox {
  font-size: 10px;
}
.wpcf7-checkbox .wpcf7-list-item label input[type=checkbox],
.checkbox input[type=checkbox] {
  display: none;
}
.wpcf7-checkbox .wpcf7-list-item label input[type=checkbox]:checked ~ .checkbox-indicator, .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox]:checked ~ .wpcf7-list-item-label::before,
.checkbox input[type=checkbox]:checked ~ .checkbox-indicator,
.checkbox input[type=checkbox]:checked ~ .wpcf7-list-item-label::before {
  background-color: #f92552;
  border-color: #f92552;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.wpcf7-checkbox .wpcf7-list-item label .checkbox-indicator,
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before,
.checkbox .checkbox-indicator,
.checkbox .wpcf7-list-item-label::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #3c3b5b;
  border: 1px solid #3c3b5b;
  border-radius: 2px;
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  transition: all 0.2s ease;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60% 60%;
}
.wpcf7-checkbox .wpcf7-list-item label input[type=checkbox]:disabled ~ .checkbox-indicator,
.wpcf7-checkbox .wpcf7-list-item label input[type=checkbox]:disabled ~ .wpcf7-list-item-label::before,
.checkbox input[type=checkbox]:disabled ~ .checkbox-indicator,
.checkbox input[type=checkbox]:disabled ~ .wpcf7-list-item-label::before {
  background-color: #7f7e8c;
  border-color: #7f7e8c;
}

.checkbox-inline .checkbox-indicator {
  top: 50%;
  margin-top: -9px;
}

.wpcf7-checkbox .wpcf7-list-item:first-child {
  margin-left: 0;
}

.checkbox-table {
  display: flex;
  flex-wrap: wrap;
}
.checkbox-table .checkbox--cell {
  margin: 0 0 -1px -1px;
}

.checkbox--cell {
  width: 44px;
  height: 44px;
  position: relative;
}
.checkbox--cell input[type=checkbox]:checked + .checkbox-indicator {
  background-color: #f92552;
  background-image: none;
  border-color: #3c3b5b;
  color: #fff;
}
.checkbox--cell .checkbox-indicator {
  content: "";
  width: 44px;
  height: 44px;
  background-color: #383759;
  border: 1px solid #3c3b5b;
  border-radius: 0;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin-top: 0;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 42px;
}

.radio,
.wpcf7-radio .wpcf7-list-item label {
  position: relative;
  margin: 0;
  padding-left: 24px;
  cursor: pointer;
}
.radio input[type=radio],
.wpcf7-radio .wpcf7-list-item label input[type=radio] {
  display: none;
}
.radio input[type=radio]:checked ~ .radio-indicator, .radio input[type=radio]:checked ~ .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item label input[type=radio]:checked ~ .radio-indicator,
.wpcf7-radio .wpcf7-list-item label input[type=radio]:checked ~ .wpcf7-list-item-label::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23f92552'/%3E%3C/svg%3E");
}
.radio .radio-indicator,
.radio .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item label .radio-indicator,
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #3c3b5b;
  border: 1px solid #3c3b5b;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  transition: all 0.2s ease;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 8px 8px;
}
.radio input[type=radio]:disabled ~ .radio-indicator,
.radio input[type=radio]:disabled ~ .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item label input[type=radio]:disabled ~ .radio-indicator,
.wpcf7-radio .wpcf7-list-item label input[type=radio]:disabled ~ .wpcf7-list-item-label::before {
  background-color: #3c3b5b;
  border-color: #3c3b5b;
  background-image: none;
}

.wpcf7-radio .wpcf7-list-item:first-child {
  margin-left: 0;
}

.radio--word {
  position: relative;
  padding: 0 !important;
}
.radio--word + .radio--word {
  margin-left: 20px;
}
.radio--word input[type=radio]:checked + .radio-label {
  color: #fff;
}
.radio--word .radio-label {
  color: #bfc2c4;
  font-weight: 700;
}

.radio--word-lg {
  font-size: 15px;
  line-height: 1.2em;
}

.inline-form .input-group-btn .btn,
.inline-form .input-group-append .btn {
  padding-left: 28px;
  padding-right: 28px;
}

abbr.required {
  border-bottom: none;
  color: #f92552;
  margin-left: 0.2em;
  color: #3ffeca;
}

.quantity-control {
  overflow: hidden;
}
.quantity-control .btn {
  display: inline-block;
  height: 30px;
  padding: 0 8px;
  background: none;
  border: none;
  color: #adb3b7;
  vertical-align: middle;
}
.quantity-control .btn:hover, .quantity-control .btn:focus, .quantity-control .btn:active {
  color: #fff;
}
.quantity-control .form-control {
  display: inline-block;
  width: 34px;
  height: 30px;
  line-height: 30px;
  padding: 0;
  appearance: textfield;
  border: none;
  text-align: center;
  font-size: 13px;
  font-family: "Exo 2", sans-serif;
  vertical-align: middle;
}
.quantity-control .form-control::-webkit-outer-spin-button, .quantity-control .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-quantity-control {
  width: 80px;
  margin: 0 auto;
}

.form-desc--sm {
  font-size: 14px;
  line-height: 22px;
}

.switch {
  white-space: nowrap;
}

.switch__label-txt {
  display: inline-block;
  font-size: 9px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  vertical-align: middle;
  margin-right: 10px;
  color: #fff;
}
@media (max-width: 479px) {
  .switch__label-txt {
    display: none;
  }
}

.alc-switch-toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
  margin: 0;
}
.alc-switch-toggle + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  outline: none;
  user-select: none;
  vertical-align: middle;
  padding: 2px;
  width: 48px;
  height: 24px;
  margin: 0;
  background-color: #2a293f;
  border-radius: 22px;
  transition: background 0.4s;
  border: 1px solid #3c3b5b;
}
.alc-switch-toggle + label::before, .alc-switch-toggle + label::after {
  display: block;
  position: absolute;
  content: "";
}
.alc-switch-toggle + label::after {
  top: 2px;
  left: 2px;
  bottom: 2px;
  width: 18px;
  background-color: #fff;
  background-image: linear-gradient(to right, #e9e9ed, #e9e9ed 2px, transparent 2px), linear-gradient(to right, #e9e9ed, #e9e9ed 2px, transparent 2px);
  background-size: 2px 8px, 2px 8px;
  background-position: 6px 5px, 10px 5px;
  background-repeat: no-repeat, no-repeat;
  border-radius: 50%;
  transition: margin 0.4s, background 0.4s;
}
.alc-switch-toggle:checked + label {
  background-color: #0fe3ab;
}
.alc-switch-toggle:checked + label::after {
  margin-left: 26px;
}

legend {
  color: #fff;
  margin: 1.5em 0 0.75em 0;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  letter-spacing: -0.02em;
  font-size: 22px;
  text-transform: none;
  font-style: italic;
  border-bottom: none;
}

div.wpcf7 .ajax-loader {
  background-image: none;
  background-color: transparent;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 14px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  width: 1.28571429em;
  height: auto;
  text-align: center;
  margin: 0 4px;
  opacity: 1;
  border-radius: 0;
}
div.wpcf7 .ajax-loader::before {
  content: "\f1ce";
  position: static;
  border-radius: 0;
  transform-origin: 0 0;
  animation: none;
}
.footer div.wpcf7 .ajax-loader::before {
  color: #fff;
}

/* Tooltips
/* ------------------------- */
.tooltip {
  font-size: 9px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
}
.tooltip.show {
  opacity: 1;
}

.tooltip-inner {
  padding: 5px 10px;
  color: #fff;
  text-align: center;
  background-color: #323150;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.bs-tooltip-top .arrow::before {
  border-top-color: #323150;
}

.bs-tooltip-right .arrow::before {
  border-right-color: #323150;
}

.bs-tooltip-bottom .arrow::before {
  border-bottom-color: #323150;
}

.bs-tooltip-left .arrow::before {
  border-left-color: #323150;
}

/* Countdown
/* ------------------------- */
.countdown__content {
  padding: 28px 0 5px 0;
}

.countdown-counter {
  overflow: hidden;
  display: flex;
  flex-direction: row;
}
.countdown-counter > span {
  font-size: 26px;
  line-height: 1.2em;
  text-transform: uppercase;
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  flex-basis: 25%;
  max-width: 25%;
  position: relative;
}
.countdown-counter > span > small {
  display: block;
  font-size: 10px;
  line-height: 1.2em;
  padding-top: 3px;
  color: #9e9caa;
}
.countdown-counter span + span::before {
  content: ":";
  display: block;
  position: absolute;
  left: 0;
  top: -3px;
  font-size: 26px;
  line-height: 1.2em;
  font-weight: normal;
}

/* Breadcrumbs
/* ------------------------- */
.breadcrumbs {
  padding: 3px 0;
  margin-bottom: 0;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
}
.breadcrumbs ul.trail-items {
  padding: 0;
  margin: 0;
}
.breadcrumbs ul.trail-items > li::after {
  padding: 0 0.5em;
  color: #7f7e8c;
}
.breadcrumbs ul.trail-items > li > a {
  transition: color 0.2s ease;
}
.breadcrumbs ul.trail-items > li > a:hover {
  color: #f92552;
}
.breadcrumbs ul.trail-items li.trail-end {
  color: #7f7e8c;
}

.page-heading ul.trail-items {
  font-size: 10px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 0;
  font-style: normal;
}
@media (min-width: 992px) {
  .page-heading ul.trail-items {
    font-size: 11px;
    padding: 3px 0;
  }
}
.page-heading ul.trail-items > li::after {
  color: #9e9caa;
  font-weight: normal;
}
.page-heading ul.trail-items > li > a {
  color: #fff;
}
.page-heading ul.trail-items > li > a:hover {
  color: #f92552;
}
@media (min-width: 768px) {
  .page-heading .align-self-end ul.trail-items {
    display: block;
    text-align: right;
  }
}

/* Content Navigation
/* ------------------------- */
.btn-nav {
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: 3px;
  background-color: #9e9caa;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  transition: all 0.3s ease;
}
.btn-nav:hover {
  color: #fff;
  background-color: #fff;
}

/* Pagination
/* ------------------------- */
.post-pagination {
  overflow: hidden;
}

.pagination,
.page-numbers {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}
.gallery + .pagination,
.gallery + .page-numbers {
  text-align: center;
}
.pagination > li,
.page-numbers > li {
  display: inline;
  padding: 0;
  margin: 0;
}
.pagination > li > a,
.pagination > li > span,
.page-numbers > li > a,
.page-numbers > li > span {
  display: inline-block;
  margin: 0 4px;
  padding: 0;
  line-height: 36px;
  width: 36px;
  height: 36px;
  text-align: center;
  background-color: #323150;
  border-radius: 3px;
  border-color: #3c3b5b;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: bold;
  transition: all 0.2s ease;
  position: static;
  border: 1px solid #3c3b5b;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.page-numbers > li > a:hover,
.page-numbers > li > span:hover {
  background-color: #f92552;
  border-color: #f92552;
  color: #fff;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.page-numbers > li > a:hover,
.page-numbers > li > span:hover {
  background-color: #f92552;
  border-color: #f92552;
  color: #fff;
}
.pagination > li > a.current,
.pagination > li > span.current,
.page-numbers > li > a.current,
.page-numbers > li > span.current {
  background-color: #f92552;
  border-color: #f92552;
  color: #fff;
}
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus,
.page-numbers > .active > a,
.page-numbers > .active > a:hover,
.page-numbers > .active > a:focus,
.page-numbers > .active > span,
.page-numbers > .active > span:hover,
.page-numbers > .active > span:focus {
  background-color: #f92552;
  border-color: #f92552;
  color: #fff;
}

.pagination--condensed > li > a,
.pagination--condensed > li > span {
  border-radius: 0;
  margin: 0;
  margin-left: -1px;
}
.pagination--condensed > li:first-child > a,
.pagination--condensed > li:first-child > span, .pagination--condensed > li:last-child > a,
.pagination--condensed > li:last-child > span {
  border-radius: 0;
}

.pagination--lg > li > a,
.pagination--lg > li > span {
  width: 50px;
  height: 50px;
  line-height: 50px;
}

/* Comment Navigation
/* ------------------------- */
.comment-navigation > a,
.comment-navigation > span {
  display: inline-block;
  margin: 0 4px;
  padding: 0;
  line-height: 36px;
  width: 36px;
  height: 36px;
  text-align: center;
  background-color: #323150;
  border-radius: 3px;
  border-color: #3c3b5b;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: bold;
  transition: all 0.2s ease;
  position: static;
  border: 1px solid #3c3b5b;
}
.comment-navigation > a:hover,
.comment-navigation > span:hover {
  background-color: #f92552;
  border-color: #f92552;
  color: #fff;
}
.comment-navigation > a.current, .comment-navigation > a.current:hover, .comment-navigation > a.current:focus,
.comment-navigation > span.current,
.comment-navigation > span.current:hover,
.comment-navigation > span.current:focus {
  background-color: #f92552;
  border-color: #f92552;
  color: #fff;
}

.comment-navigation--condensed > a,
.comment-navigation--condensed > span {
  border-radius: 0;
  margin: 0;
  margin-left: -1px;
}
.comment-navigation--condensed > a:first-child,
.comment-navigation--condensed > span:first-child,
.comment-navigation--condensed > a:last-child,
.comment-navigation--condensed > span:last-child {
  border-radius: 0;
}

.comment-navigation--lg > a,
.comment-navigation--lg > span {
  width: 50px;
  height: 50px;
  line-height: 50px;
}

.paging_simple_numbers {
  padding: 10px 24px;
}
.sp-data-table + .paging_simple_numbers {
  margin-top: 48px;
  text-align: center;
}
.paging_simple_numbers .paginate_button {
  display: inline-block;
  margin: 0 4px;
  padding: 0 1em;
  line-height: 36px;
  text-align: center;
  background-color: #323150;
  border-radius: 3px;
  border-color: #3c3b5b;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: bold;
  transition: all 0.2s ease;
  position: static;
  border: 1px solid #3c3b5b;
}
.paging_simple_numbers .paginate_button:not(.current):hover {
  background-color: #f92552;
  border-color: #f92552;
  color: #fff;
  cursor: pointer;
}
.paging_simple_numbers > span .paginate_button {
  width: 36px;
  height: 36px;
  padding-left: 0;
  padding-right: 0;
}

.page-links .btn {
  padding-left: 0;
  padding-right: 0;
  width: 40px;
  text-align: center;
  cursor: default;
  margin: 0 2px;
}
.page-links a:hover .btn {
  cursor: pointer;
}

.page-links__title {
  font-size: 10px;
  display: inline-block;
  margin-right: 1em;
}

.pagination--circle > li:first-child .page-link, .pagination--circle > li:last-child .page-link {
  border-radius: 50%;
}
.pagination--circle > li > span,
.pagination--circle > li > a {
  width: 32px;
  height: 32px;
  line-height: 30px;
  border-radius: 50%;
  margin: 0 2px;
}
@media (min-width: 992px) {
  .pagination--circle > li > span,
  .pagination--circle > li > a {
    width: 46px;
    height: 46px;
    line-height: 44px;
    margin: 0 5px;
  }
}

/* Progress Bars
/* ------------------------- */
.progress-stats {
  overflow: hidden;
  position: relative;
  margin-bottom: 19px;
  display: flex;
  align-items: center;
}
.progress-stats .progress {
  flex-grow: 1;
  margin-bottom: 0;
  top: 0;
}

.progress {
  overflow: hidden;
  height: 6px;
  margin-bottom: 10px;
  background-color: #484773;
  border-radius: 3px;
  box-shadow: none;
  position: relative;
  top: 2px;
}

.progress__bar {
  float: left;
  width: 0%;
  height: 100%;
  line-height: 6px;
  color: #fff;
  background-color: #f92552;
  box-shadow: none;
  border-radius: 3px;
}

.progress__label,
.progress__number {
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1em;
}

.progress__label {
  color: #fff;
}
.progress__label + .progress {
  margin-left: 10px;
}
.progress__label.progress__label--color-default {
  color: #9e9caa;
}

.progress__number {
  font-weight: normal;
}
.progress__number.progress__number--color-highlight {
  color: #fff;
}
.progress + .progress__number {
  margin-left: 10px;
}

.progress__label-top {
  display: block;
  text-align: right;
}

.progress__label--abbr {
  width: 20px;
  white-space: nowrap;
}

.progress__number--20 {
  width: 20px;
}

.progress__bar--secondary {
  background-color: #3ffeca;
}

.progress__bar--success {
  background-color: #aaf20e;
}

.progress__bar--info {
  background-color: #9e69ee;
}

.progress__bar--warning {
  background-color: #ff7e1f;
}

.progress__bar--danger {
  background-color: #f92552;
}

.progress__bar--danger {
  background-color: #f92552;
}

.progress__bar--aqua-gradient {
  background-color: transparent;
  background-image: linear-gradient(to right, #0683d3, #3ffeca 100%);
}

.progress-double-wrapper {
  width: 100%;
}
.progress-double-wrapper + .progress-double-wrapper {
  margin-top: 12px;
}
.progress-double-wrapper .progress--battery {
  margin-bottom: 0;
}

.progress-double-wrapper--fullwidth .progress--battery {
  background-image: none !important;
}

.progress-inner-holder {
  display: table;
  width: 100%;
  max-width: 100%;
  padding-bottom: 3px;
}

.progress__digit {
  display: table-cell;
  width: 1%;
  vertical-align: middle;
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  font-weight: 400;
}

.progress__digit--40 {
  width: 40px;
}
.progress__digit--40.progress__digit--left {
  padding-right: 0;
}
.progress__digit--40.progress__digit--right {
  text-align: right;
  padding-left: 0;
}

.progress__digit--38 {
  width: 38px;
}
.progress__digit--38.progress__digit--left {
  padding-right: 0;
}
.progress__digit--38.progress__digit--right {
  text-align: right;
  padding-left: 0;
}

.progress__digit--highlight {
  color: #fff;
}

.progress__digit--left {
  padding-right: 20px;
}

.progress__digit--right {
  padding-left: 20px;
}

.progress-title {
  font-size: 10px;
  line-height: 1.2em;
  margin-bottom: 0.6em;
  text-align: center;
}

.progress__double {
  display: flex;
  flex-wrap: nowrap;
}
.progress__double .progress {
  width: 50%;
  margin-bottom: 0;
  top: 3px;
}
.progress__double .progress:first-child {
  border-radius: 3px 0 0 3px;
}
.progress__double .progress:first-child .progress__bar {
  margin-left: auto;
  border-radius: 3px 0 0 3px;
}
.progress__double .progress:last-child {
  border-radius: 0 3px 3px 0;
}
.progress__double .progress:last-child .progress__bar {
  border-radius: 0 3px 3px 0;
}
.progress__double .progress.progress--battery:first-child {
  transform: scale(-1, 1);
  margin-right: 2px;
  width: calc(50% - 2px);
}
.progress__double .progress.progress--battery:first-child .progress__bar {
  margin-left: 0;
}
.progress__double .progress.progress--battery:last-child {
  margin-left: 2px;
  width: calc(50% - 2px);
}

.progress__double--label-center .progress-title {
  float: left;
  width: 38%;
}
.progress__double--label-center .progress {
  width: 31%;
}

.progress-stats--top-labels {
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: visible;
}
.progress-stats--top-labels .progress__label {
  order: 0;
}
.progress-stats--top-labels .progress {
  flex-basis: 100%;
  order: 2;
  margin-left: 0 !important;
  margin-top: 12px;
  margin-bottom: 10px;
}
.progress-stats--top-labels .progress__number {
  order: 1;
  font-weight: 700;
}

.progress--lg {
  height: 9px;
  border-radius: 5px;
}
.progress--lg .progress__bar {
  border-radius: 5px;
}
.progress--lg .progress__double .progress:first-child {
  border-radius: 5px 0 0 5px;
}
.progress--lg .progress__double .progress:first-child .progress__bar {
  border-radius: 5px 0 0 5px;
}
.progress--lg .progress__double .progress:last-child {
  border-radius: 0 5px 5px 0;
}
.progress--lg .progress__double .progress:last-child .progress__bar {
  border-radius: 0 5px 5px 0;
}

/* Progress - */
.progress--battery {
  height: 20px;
  margin-bottom: 18px;
  top: 0;
  border-radius: 0;
  background-color: transparent;
  background-image: radial-gradient(circle, #484773, #484773 2px, transparent 2px, transparent), radial-gradient(circle, #484773, #484773 2px, transparent 2px, transparent), linear-gradient(to right, #484773, #484773 4px, transparent 4px, transparent 8px);
  background-size: 8px 8px, 8px 8px, 8px 16px;
  background-position: -2px -2px, -2px 14px, 0 2px;
  background-repeat: repeat-x, repeat-x, repeat-x, repeat-x;
}
.progress--battery .progress__bar {
  line-height: 20px;
  border-radius: 0;
  position: relative;
  z-index: 1;
  background-color: transparent;
  background-image: radial-gradient(circle, #f92552, #f92552 2px, transparent 2px, transparent), radial-gradient(circle, #f92552, #f92552 2px, transparent 2px, transparent), linear-gradient(to right, #f92552, #f92552 4px, transparent 4px, transparent 8px);
  background-size: 8px 8px, 8px 8px, 8px 16px;
  background-position: -2px -2px, -2px 14px, 0 2px;
  background-repeat: repeat-x, repeat-x, repeat-x;
}
.progress--battery .progress__bar--secondary {
  line-height: 20px;
  border-radius: 0;
  position: relative;
  z-index: 1;
  background-color: transparent;
  background-image: radial-gradient(circle, #3ffeca, #3ffeca 2px, transparent 2px, transparent), radial-gradient(circle, #3ffeca, #3ffeca 2px, transparent 2px, transparent), linear-gradient(to right, #3ffeca, #3ffeca 4px, transparent 4px, transparent 8px);
  background-size: 8px 8px, 8px 8px, 8px 16px;
  background-position: -2px -2px, -2px 14px, 0 2px;
  background-repeat: repeat-x, repeat-x, repeat-x;
}
.progress--battery .progress__bar--success {
  background-color: transparent;
  background-image: radial-gradient(circle, #aaf20e, #aaf20e 2px, transparent 2px, transparent), radial-gradient(circle, #aaf20e, #aaf20e 2px, transparent 2px, transparent), linear-gradient(to right, #aaf20e, #aaf20e 4px, transparent 4px, transparent 8px);
  background-size: 8px 8px, 8px 8px, 8px 16px;
  background-position: -2px -2px, -2px 14px, 0 2px;
  background-repeat: repeat-x, repeat-x, repeat-x;
}
.progress--battery .progress__bar--info {
  background-color: transparent;
  background-image: radial-gradient(circle, #9e69ee, #9e69ee 2px, transparent 2px, transparent), radial-gradient(circle, #9e69ee, #9e69ee 2px, transparent 2px, transparent), linear-gradient(to right, #9e69ee, #9e69ee 4px, transparent 4px, transparent 8px);
  background-size: 8px 8px, 8px 8px, 8px 16px;
  background-position: -2px -2px, -2px 14px, 0 2px;
  background-repeat: repeat-x, repeat-x, repeat-x;
}
.progress--battery .progress__bar--warning {
  background-color: transparent;
  background-image: radial-gradient(circle, #ff7e1f, #ff7e1f 2px, transparent 2px, transparent), radial-gradient(circle, #ff7e1f, #ff7e1f 2px, transparent 2px, transparent), linear-gradient(to right, #ff7e1f, #ff7e1f 4px, transparent 4px, transparent 8px);
  background-size: 8px 8px, 8px 8px, 8px 16px;
  background-position: -2px -2px, -2px 14px, 0 2px;
  background-repeat: repeat-x, repeat-x, repeat-x;
}
.progress--battery .progress__bar--danger {
  background-color: transparent;
  background-image: radial-gradient(circle, #f92552, #f92552 2px, transparent 2px, transparent), radial-gradient(circle, #f92552, #f92552 2px, transparent 2px, transparent), linear-gradient(to right, #f92552, #f92552 4px, transparent 4px, transparent 8px);
  background-size: 8px 8px, 8px 8px, 8px 16px;
  background-position: -2px -2px, -2px 14px, 0 2px;
  background-repeat: repeat-x, repeat-x, repeat-x;
}

.progress--battery-custom .progress__bar {
  background-image: radial-gradient(circle, currentColor, currentColor 2px, transparent 2px, transparent), radial-gradient(circle, currentColor, currentColor 2px, transparent 2px, transparent), linear-gradient(to right, currentColor, currentColor 4px, transparent 4px, transparent 8px) !important;
}

/* Progress - Lines */
.progress--lines {
  height: 20px;
  border-radius: 0;
  padding-left: 1px;
  padding-right: 1px;
  position: relative;
  transform: skewX(-10deg);
}
.progress--lines::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background-color: transparent;
  background-image: linear-gradient(to right, #323150, #323150 3px, transparent 3px, transparent 6px);
  background-size: 6px 20px;
  background-position: 0 0;
  background-repeat: repeat-x;
}
.progress--lines .progress__bar {
  line-height: 20px;
  border-radius: 0;
  position: relative;
  z-index: 1;
}

/* Progress Table */
.progress-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  padding: 0;
  border-spacing: 0;
  font-size: 12px;
  line-height: 1.2em;
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-weight: bold;
}
.progress-table tr + tr {
  border-top: 36px solid transparent;
}
.progress-table td {
  vertical-align: middle;
  border: none !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.progress-table--sm-space tr + tr {
  border-top-width: 28px;
}

.progress-table--xs-space tr + tr {
  border-top-width: 14px;
}

.progress-table--m-space tr + tr {
  border-top-width: 20px;
}

.progress-table__progress-bar {
  width: 27%;
}
.progress-table__progress-bar .progress {
  margin-bottom: 0;
  top: 0;
}

.progress-table__progress-bar--first .progress--battery,
.progress-table__progress-bar--inverse .progress--battery {
  transform: scale(-1, 1);
}
.progress-table__progress-bar--first .progress--battery .progress__bar,
.progress-table__progress-bar--inverse .progress--battery .progress__bar {
  margin-left: 0;
}
.progress-table__progress-bar--first .progress__bar,
.progress-table__progress-bar--inverse .progress__bar {
  margin-left: auto;
}

.progress-table__progress-label {
  width: 34px;
  text-align: center;
  font-size: 11px;
  padding: 0 10px;
  color: #9e9caa;
}

.progress-table__progress-label--highlight {
  color: #fff;
}

.progress-table__title {
  width: 1px;
  padding: 0 10px;
  text-align: center;
  white-space: nowrap;
}

/* Progress Table: one progress bar */
.progress-table--simple tr + tr {
  border-top-width: 12px;
}
@media (min-width: 992px) {
  .progress-table--simple tr + tr {
    border-top-width: 18px;
  }
}
.progress-table--simple .progress-table__progress-bar {
  width: 100%;
}
.progress-table--simple .progress-table__title {
  text-align: left;
  padding: 0 14px 0 0;
}

/* Progress Table: Full Width */
.progress-table--fullwidth .progress-table__progress-label:first-child {
  text-align: left;
  padding-left: 0;
}
.progress-table--fullwidth .progress-table__progress-label:last-child {
  text-align: right;
  padding-right: 0;
}
.progress-table--fullwidth .progress-table__progress-bar {
  width: 43%;
}
.progress-table--fullwidth.progress-table--bar-fullwidth .progress-table__progress-bar {
  width: 100%;
}
.progress-table--fullwidth.progress-table--bar-fullwidth.progress-table--xs-space .progress-table__progress-label:first-child {
  padding-right: 4px;
}
.progress-table--fullwidth.progress-table--bar-fullwidth.progress-table--xs-space .progress-table__progress-label:last-child {
  padding-left: 4px;
}

/* Circular Bars
/* ------------------------- */
.circular {
  margin: 10px 0;
}
@media (min-width: 992px) {
  .circular {
    margin: 0;
  }
}

.circular__bar {
  position: relative;
  margin: 0 auto;
  width: 70px;
  height: 70px;
}
.circular__bar + .circular__label {
  margin-top: 1.2em;
}
@media (min-width: 992px) {
  .circular__bar {
    width: 90px;
    height: 90px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .circular__bar {
    width: 80px;
    height: 80px;
  }
}
.circular__bar canvas {
  width: 100% !important;
  height: 100% !important;
  vertical-align: top;
}

.circular__percents {
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  line-height: 1.2em;
}
@media (min-width: 992px) {
  .circular__percents {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .circular__percents {
    font-size: 14px;
  }
}
.circular__percents small {
  font-size: 10px;
}
@media (min-width: 992px) {
  .circular__percents small {
    font-size: 12px;
  }
}
.circular__percents .circular__label {
  display: block;
  font-size: 9px;
  line-height: 1.2em;
  color: #9e9caa;
}

@media (min-width: 992px) {
  .circular__percents--lg {
    font-size: 24px;
  }
}

.circular__label {
  display: block;
  font-size: 8px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  text-align: center;
}
@media (min-width: 992px) {
  .circular__label {
    font-size: 10px;
  }
}

.circular--size-40 .circular__bar {
  width: 32px;
  height: 32px;
}
@media (min-width: 768px) {
  .circular--size-40 .circular__bar {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .circular--size-40 .circular__bar {
    width: 32px;
    height: 32px;
  }
}
.circular--size-40 .circular__bar .df-icon,
.circular--size-40 .circular__bar .df-icon-font,
.circular--size-40 .circular__bar .df-icon-img {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: 0;
}
.circular--size-40 .circular__bar .df-icon-img {
  max-width: 20px;
  height: auto;
}

.circular--size-70 .circular__bar {
  width: 50px;
  height: 50px;
}
@media (min-width: 992px) {
  .circular--size-70 .circular__bar {
    width: 70px;
    height: 70px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .circular--size-70 .circular__bar {
    width: 60px;
    height: 60px;
  }
}
@media (min-width: 992px) {
  .circular--size-70 .circular__bar .circular__percents {
    font-size: 14px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .circular--size-70 .circular__bar .circular__percents {
    font-size: 14px;
  }
}

.circular--size-80 .circular__bar {
  width: 55px;
  height: 55px;
}
@media (min-width: 992px) {
  .circular--size-80 .circular__bar {
    width: 80px;
    height: 80px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .circular--size-80 .circular__bar {
    width: 65px;
    height: 65px;
  }
}
.circular--size-80 .circular__bar .circular__percents .circular__label {
  font-family: "Roboto", sans-serif;
  text-transform: none;
  font-weight: 400;
}

/* Lightbox Holder
/* ------------------------- */
.lightbox-holder {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
}

.lightbox-holder__link {
  display: block;
  position: relative;
}
.lightbox-holder__link::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: #171d21;
  opacity: 0.7;
  z-index: 4;
  transition: opacity 0.3s ease;
}
.lightbox-holder__link:hover::before {
  opacity: 0.5;
}

.lightbox-holder__link--play::before {
  content: "\f04b";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  line-height: 26px;
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  border: 2px solid #f92552;
  background-color: rgba(30, 32, 47, 0.6);
  border-radius: 50%;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  text-indent: 3px;
  opacity: 1;
}
@media (min-width: 992px) {
  .lightbox-holder__link--play::before {
    width: 80px;
    height: 80px;
    line-height: 68px;
    border-width: 6px;
    font-size: 28px;
    text-indent: 5px;
  }
}
@media (min-width: 1199px) {
  .lightbox-holder__link--play .lightbox-holder__overlay h3 {
    width: 70%;
  }
}

.lightbox-holder__overlay {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 10px 10px 10px;
  z-index: 4;
}
@media (min-width: 992px) {
  .lightbox-holder__overlay {
    padding: 0 30px 35px 30px;
  }
}
.lightbox-holder__overlay h3 {
  font-size: 12px;
  line-height: 1em;
  color: #fff;
  margin-bottom: 0.5em;
}
@media (min-width: 992px) {
  .lightbox-holder__overlay h3 {
    font-size: 24px;
    margin-bottom: 0.4em;
  }
}
.lightbox-holder__overlay time {
  display: block;
  font-size: 8px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  color: #9e9caa;
}
@media (min-width: 992px) {
  .lightbox-holder__overlay time {
    font-size: 10px;
  }
}

.lightbox-holder__overlay--video {
  padding-left: 40px;
}
@media (min-width: 992px) {
  .lightbox-holder__overlay--video {
    padding-left: 90px;
  }
}
.lightbox-holder__overlay--video::before {
  content: "\f04b";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 16px;
  left: 10px;
  top: 0;
  border: 2px solid #f92552;
  border-radius: 50%;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  text-indent: 3px;
}
@media (min-width: 992px) {
  .lightbox-holder__overlay--video::before {
    left: 30px;
    width: 40px;
    height: 40px;
    line-height: 32px;
    border-width: 4px;
    font-size: 14px;
    text-indent: 5px;
  }
}

.lightbox-holder.posts__item--category-1 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-1 .lightbox-holder__overlay--video::before {
  border-color: #f92552;
}
.lightbox-holder.posts__item--category-2 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-2 .lightbox-holder__overlay--video::before {
  border-color: #9e69ee;
}
.lightbox-holder.posts__item--category-3 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-3 .lightbox-holder__overlay--video::before {
  border-color: #0fe3ab;
}
.lightbox-holder.posts__item--category-4 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-4 .lightbox-holder__overlay--video::before {
  border-color: #f92552;
}
.lightbox-holder.posts__item--category-5 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-5 .lightbox-holder__overlay--video::before {
  border-color: #f92552;
}
.lightbox-holder.posts__item--category-6 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-6 .lightbox-holder__overlay--video::before {
  border-color: #f92552;
}
.lightbox-holder.posts__item--category-7 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-7 .lightbox-holder__overlay--video::before {
  border-color: #f92552;
}
.lightbox-holder.posts__item--category-8 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-8 .lightbox-holder__overlay--video::before {
  border-color: #f92552;
}
.lightbox-holder.posts__item--category-9 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-9 .lightbox-holder__overlay--video::before {
  border-color: #f92552;
}
.lightbox-holder.posts__item--category-10 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-10 .lightbox-holder__overlay--video::before {
  border-color: #f92552;
}
.lightbox-holder.posts__item--category-11 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-11 .lightbox-holder__overlay--video::before {
  border-color: #f92552;
}
.lightbox-holder.posts__item--category-12 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-12 .lightbox-holder__overlay--video::before {
  border-color: #f92552;
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/* Custom Select
/* ------------------------- */
/* Default custom select styles */
div.cs-select {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: left;
  background: #fff;
  z-index: 100;
  width: 100%;
  user-select: none;
}
div.cs-select:focus {
  outline: none; /* For better accessibility add a style for this in your skin */
}

.cs-select {
  /* Placeholder and selected option */
  /* Options */
  /* Optgroup and optgroup label */
}
.cs-select select {
  display: none;
}
.cs-select span {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 26px 24px 12px 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 992px) {
  .cs-select span {
    padding-top: 32px;
    padding-bottom: 24px;
  }
}
.cs-select > span {
  padding-right: 3em;
}
.cs-select > span::after {
  speak: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "\f107";
  right: 23px;
  display: block;
  font-size: 10px;
  line-height: 1.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-style: normal;
  color: #fff;
  transition: transform 0.2s ease;
}
.cs-select.cs-active > span::after {
  transform: translateY(-50%) rotate(180deg);
}
.cs-select .cs-options {
  position: absolute;
  overflow: hidden;
  background: #383759;
  visibility: hidden;
  left: 0;
  right: 0;
  width: 100%;
}
.cs-select.cs-active .cs-options {
  visibility: visible;
}
.cs-select ul {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  width: 100%;
}
.cs-select ul span {
  padding: 1em;
}
.cs-select ul li.cs-focus span {
  background-color: #ddd;
}
.cs-select li.cs-optgroup ul {
  padding-left: 1em;
}
.cs-select li.cs-optgroup > span {
  cursor: default;
}

div.cs-active {
  z-index: 200;
}

/* Skin */
div.cs-skin-border {
  background: transparent;
  font-size: 13px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: unset;
}
div.cs-skin-border > span {
  border-left: 1px solid #3c3b5b;
  border-right: 1px solid #3c3b5b;
  border-bottom: none;
  border-top: none;
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
}
div.cs-skin-border ul span::after {
  content: "";
  opacity: 0;
}
div.cs-skin-border .cs-placeholder {
  font-style: normal;
  text-transform: uppercase;
}
div.cs-skin-border .cs-selected span {
  color: #fff;
}
div.cs-skin-border.cs-active > span {
  color: #fff;
  background-color: #323150;
}
div.cs-skin-border .cs-options {
  border-left: 1px solid #3c3b5b;
  border-right: 1px solid #3c3b5b;
  border-bottom: 1px solid #3c3b5b;
  color: #7f7e8c;
  font-size: 11px;
  font-style: normal;
  opacity: 0;
  transition: opacity 0.2s, visibility 0s 0.2s;
}
div.cs-skin-border .cs-options ul li {
  text-transform: uppercase;
}
div.cs-skin-border.cs-active .cs-options {
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
div.cs-skin-border ul span {
  padding: 5px 24px;
  backface-visibility: hidden;
  transition: color 0.2s ease;
}
div.cs-skin-border .cs-options li span:hover,
div.cs-skin-border li.cs-focus span {
  color: #fff;
}

/* Slick */
.slick-slide {
  outline: none;
}

/* Slider */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 20px;
  padding: 0;
  border: none;
  outline: none;
  background-color: #999ea6;
  transition: background-color 0.2s ease;
  border-radius: 2px;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background-color: #f92552;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  right: 50px;
}
.slick-prev::before {
  content: "\f104";
  font-weight: 700;
}

.slick-next {
  right: 20px;
}
.slick-next::before {
  content: "\f105";
  font-weight: 700;
}

/* Arrows */
.slick-arrows--rounded .slick-prev,
.slick-arrows--rounded .slick-next {
  border-radius: 50%;
}

.slick-vertical .slick-prev::before {
  content: "\f106";
}
.slick-vertical .slick-next::before {
  content: "\f107";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  padding: 0;
  background: transparent;
  border: none;
  display: block;
  height: 10px;
  width: 10px;
  line-height: 10px;
  overflow: hidden;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  cursor: pointer;
  border-radius: 50%;
  background-color: #d7d8da;
  transition: background-color 0.2s ease;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
  opacity: 1;
}
.slick-dots li button:hover {
  background-color: #3c3b5b;
}
.slick-dots li.slick-active button {
  background-color: #f92552;
  opacity: 0.75;
}

/* Featured News */
.slick-featured img {
  border-radius: 4px;
}

/* Featured Slider */
.posts--slider-featured .slick-prev,
.posts--slider-featured .slick-next {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

/* Featured Slider - Center */
.posts-slider--center .slick-prev,
.posts-slider--center .slick-next {
  top: auto;
  bottom: 20px;
}
@media (min-width: 992px) {
  .posts-slider--center .slick-prev,
  .posts-slider--center .slick-next {
    bottom: 50px;
  }
}
.posts-slider--center .slick-prev {
  right: 50%;
  margin-right: 4px;
}
.posts-slider--center .slick-next {
  right: auto;
  left: 50%;
  margin-left: 4px;
}

/* Featured Carousel, Team Roster, Awards Slider (change prev/next button) */
.featured-carousel .slick-prev,
.featured-carousel .slick-next,
.team-roster--slider .slick-prev,
.team-roster--slider .slick-next,
.awards--slider .slick-prev,
.awards--slider .slick-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #404650;
  background-color: transparent;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -9px;
  transition: all 0.3s ease;
}
.featured-carousel .slick-prev::before,
.featured-carousel .slick-next::before,
.team-roster--slider .slick-prev::before,
.team-roster--slider .slick-next::before,
.awards--slider .slick-prev::before,
.awards--slider .slick-next::before {
  opacity: 1;
}
.featured-carousel .slick-prev:hover, .featured-carousel .slick-prev:focus,
.featured-carousel .slick-next:hover,
.featured-carousel .slick-next:focus,
.team-roster--slider .slick-prev:hover,
.team-roster--slider .slick-prev:focus,
.team-roster--slider .slick-next:hover,
.team-roster--slider .slick-next:focus,
.awards--slider .slick-prev:hover,
.awards--slider .slick-prev:focus,
.awards--slider .slick-next:hover,
.awards--slider .slick-next:focus {
  background-color: transparent;
  border-color: #f92552;
}
.featured-carousel .slick-prev,
.team-roster--slider .slick-prev,
.awards--slider .slick-prev {
  left: 50%;
  margin-left: -20%;
}
.featured-carousel .slick-prev::before,
.team-roster--slider .slick-prev::before,
.awards--slider .slick-prev::before {
  content: "\f053";
  margin-left: -2px;
}
.featured-carousel .slick-next,
.team-roster--slider .slick-next,
.awards--slider .slick-next {
  right: 50%;
  margin-right: -20%;
}
.featured-carousel .slick-next::before,
.team-roster--slider .slick-next::before,
.awards--slider .slick-next::before {
  content: "\f054";
  margin-left: 2px;
}

/* Featured Carousel */
.featured-carousel .slick-dots,
.player-info .slick-dots {
  bottom: 20px;
}
.featured-carousel .slick-dots li,
.player-info .slick-dots li {
  width: 30px;
  height: 4px;
  margin: 0 3px;
}
.featured-carousel .slick-dots li button,
.player-info .slick-dots li button {
  width: 30px;
  height: 4px;
  padding: 0;
  background-color: #fff;
  border-radius: 0;
}
.featured-carousel .slick-dots li button::before,
.player-info .slick-dots li button::before {
  display: none;
}
.featured-carousel .slick-dots li.slick-active button,
.player-info .slick-dots li.slick-active button {
  background-color: #f92552;
}

.player-info .slick-dots {
  bottom: -20px;
}

/* Awards Slider */
.awards--slider .slick-prev,
.awards--slider .slick-next {
  border-color: #aeb0b4;
  opacity: 0.2;
  margin-top: 0;
  top: 40%;
}
.awards--slider .slick-prev::before,
.awards--slider .slick-next::before {
  opacity: 1;
  color: #aeb0b4;
}
.awards--slider .slick-prev:hover, .awards--slider .slick-prev:focus,
.awards--slider .slick-next:hover,
.awards--slider .slick-next:focus {
  opacity: 1;
  border-color: #aeb0b4;
}
.awards--slider .slick-prev {
  left: 0;
  margin-left: 0;
}
.awards--slider .slick-next {
  right: 0;
  margin-right: 0;
}
.awards--slider .slick-dots li button {
  background-color: #4e4d73;
}
.awards--slider .slick-dots li button:hover {
  background-color: #fff;
}
.awards--slider .slick-dots li.slick-active button {
  background-color: #3ffeca;
}
.awards--slider.slick-vertical {
  margin-bottom: 0;
}
.awards--slider.slick-vertical .slick-dots {
  width: 10px;
  height: auto;
  position: absolute;
  right: 0;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}
.awards--slider.slick-vertical .slick-dots li {
  height: auto;
}

/* Team Roster - Card Slider */
.team-roster--card-slider,
.js-team-roster--card-compact {
  margin-bottom: 14px;
}
@media (min-width: 992px) {
  .team-roster--card-slider,
  .js-team-roster--card-compact {
    padding-bottom: 70px;
    margin-bottom: 34px;
  }
}
.team-roster--card-slider .slick-prev,
.team-roster--card-slider .slick-next,
.js-team-roster--card-compact .slick-prev,
.js-team-roster--card-compact .slick-next {
  top: auto;
  bottom: 0;
  border: 1px solid #3c3b5b;
  border-radius: 0;
  width: 50px;
  height: 50px;
  background-color: #323150;
}
.team-roster--card-slider .slick-prev::before,
.team-roster--card-slider .slick-next::before,
.js-team-roster--card-compact .slick-prev::before,
.js-team-roster--card-compact .slick-next::before {
  color: #fff;
}
.team-roster--card-slider .slick-prev:hover:not(.slick-disabled),
.team-roster--card-slider .slick-next:hover:not(.slick-disabled),
.js-team-roster--card-compact .slick-prev:hover:not(.slick-disabled),
.js-team-roster--card-compact .slick-next:hover:not(.slick-disabled) {
  background-color: #f92552;
}
.team-roster--card-slider .slick-prev:hover:not(.slick-disabled)::before,
.team-roster--card-slider .slick-next:hover:not(.slick-disabled)::before,
.js-team-roster--card-compact .slick-prev:hover:not(.slick-disabled)::before,
.js-team-roster--card-compact .slick-next:hover:not(.slick-disabled)::before {
  color: #323150;
}
.team-roster--card-slider .slick-prev,
.js-team-roster--card-compact .slick-prev {
  right: auto;
  left: 50%;
  margin: 0 0 0 -50px;
}
.team-roster--card-slider .slick-next,
.js-team-roster--card-compact .slick-next {
  right: auto;
  left: 50%;
  margin: 0 0 0 -1px;
}

/* Team Roster - with select Players */
.team-roster--slider-with-nav .slick-prev,
.team-roster--slider-with-nav .slick-next {
  top: auto;
  bottom: 6px;
  border-radius: 0;
  width: 50px;
  height: 50px;
  background-color: transparent;
}
.team-roster--slider-with-nav .slick-prev::before,
.team-roster--slider-with-nav .slick-next::before {
  color: #fff;
}
.team-roster--slider-with-nav .slick-prev:hover:not(.slick-disabled),
.team-roster--slider-with-nav .slick-next:hover:not(.slick-disabled) {
  background-color: transparent;
}
.team-roster--slider-with-nav .slick-prev:hover:not(.slick-disabled)::before,
.team-roster--slider-with-nav .slick-next:hover:not(.slick-disabled)::before {
  color: #f92552;
}
.team-roster--slider-with-nav .slick-prev.slick-disabled,
.team-roster--slider-with-nav .slick-next.slick-disabled {
  cursor: default;
}
.team-roster--slider-with-nav .slick-prev {
  right: 55px;
  left: auto;
  margin: 0;
}
.team-roster--slider-with-nav .slick-prev::before {
  content: "\f104";
}
.team-roster--slider-with-nav .slick-next {
  right: 6px;
  left: auto;
  margin: 0;
}
.team-roster--slider-with-nav .slick-next::before {
  content: "\f105";
}

/* Team Roster - case Slider */
.team-roster--case-slider {
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .team-roster--case-slider {
    padding-bottom: 90px;
    margin-bottom: 44px;
  }
}
.team-roster--case-slider .slick-prev,
.team-roster--case-slider .slick-next {
  top: auto;
  bottom: 0;
  border: 1px solid #3c3b5b;
  border-radius: 4px;
  width: 46px;
  height: 46px;
  background-color: #323150;
}
.team-roster--case-slider .slick-prev::before,
.team-roster--case-slider .slick-next::before {
  color: #fff;
}
.team-roster--case-slider .slick-prev:hover,
.team-roster--case-slider .slick-next:hover {
  background-color: #f92552;
}
.team-roster--case-slider .slick-prev:hover::before,
.team-roster--case-slider .slick-next:hover::before {
  color: #fff;
}
.team-roster--case-slider .slick-prev {
  right: auto;
  left: 50%;
  margin: 0 0 0 -52px;
}
.team-roster--case-slider .slick-next {
  right: auto;
  left: 50%;
  margin: 0 0 0 6px;
}

/* Featured News - Football */
.posts--slider-var-width .slick-prev,
.posts--slider-var-width .slick-next {
  top: -63px;
}

/* Hero Slider - Football */
.posts--slider-top-news {
  margin-bottom: 0;
}
.posts--slider-top-news .slick-dots {
  position: absolute;
  right: 10px;
  top: 50%;
  bottom: auto;
  width: 15px;
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  .posts--slider-top-news .slick-dots {
    right: 40px;
  }
}
.posts--slider-top-news .slick-dots li {
  margin: 5px 0;
  counter-increment: step-counter;
}
@media (min-width: 480px) {
  .posts--slider-top-news .slick-dots li {
    margin: 8px 0;
  }
}
@media (min-width: 992px) {
  .posts--slider-top-news .slick-dots li {
    margin: 13px 0;
  }
}
.posts--slider-top-news .slick-dots li button {
  font-size: 0;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0;
  width: auto;
  height: auto;
  margin: 0;
  color: #fff;
  background-color: transparent !important;
  border-radius: 0;
  text-align: center;
}
.posts--slider-top-news .slick-dots li button::before {
  font-size: 10px;
  line-height: 1.2em;
  content: counters(step-counter, ".", decimal-leading-zero);
}
.posts--slider-top-news .slick-dots li.slick-active button {
  opacity: 1;
  color: #3ffeca;
}

/* Sponsors Carousel Nav */
.sponsors--carousel .slick-prev,
.sponsors--carousel .slick-next {
  top: 50%;
  transform: translateY(-50%);
  border-radius: 0;
  width: 24px;
  height: 24px;
  background-color: transparent;
}
.sponsors--carousel .slick-prev::before,
.sponsors--carousel .slick-next::before {
  color: rgba(255, 255, 255, 0.2);
}
.sponsors--carousel .slick-prev:hover:not(.slick-disabled),
.sponsors--carousel .slick-next:hover:not(.slick-disabled) {
  background-color: transparent;
}
.sponsors--carousel .slick-prev:hover:not(.slick-disabled)::before,
.sponsors--carousel .slick-next:hover:not(.slick-disabled)::before {
  color: #f92552;
}
.sponsors--carousel .slick-prev.slick-disabled,
.sponsors--carousel .slick-next.slick-disabled {
  cursor: default;
}
.sponsors--carousel .slick-prev {
  right: 35px;
  left: auto;
  margin: 0;
}
.sponsors--carousel .slick-prev::before {
  content: "\f104";
}
.sponsors--carousel .slick-next {
  right: 0;
  left: auto;
  margin: 0;
}
.sponsors--carousel .slick-next::before {
  content: "\f105";
}
.sponsors--carousel.sponsors--arrow-side .slick-prev {
  right: auto;
  left: 0;
}

/* Post Categories Filter
/* ------------------------- */
/* Post Filter */
.category-filter {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-filter__item {
  display: inline;
}

.category-filter__link {
  display: inline-block;
  font-size: 9px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
  padding: 0 6px;
  background: none;
  border: none;
}
.category-filter__link:hover {
  color: #fff;
}
@media (min-width: 992px) {
  .category-filter__link {
    font-size: 11px;
    padding: 0 12px;
  }
}

.category-filter__link--active {
  color: #fff;
}

@media (min-width: 992px) {
  .category-filter--extra-space {
    margin-right: 66px;
  }
}

.modal-dialog {
  margin: 10px;
}

.modal-content {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  box-shadow: none;
}

.modal-backdrop {
  background-color: #000;
}
.modal-backdrop.in {
  opacity: 0.9;
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.2em;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 830px;
  }
}
.modal {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
  }
}
.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

/* Icobox */
.icobox {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .icobox {
    margin-bottom: 0;
  }
}

.icobox__icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: relative;
  color: #f92552;
}
.icobox__icon i {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.icobox__icon--lg {
  width: 90px;
  height: 90px;
  font-size: 32px;
}

.icobox__icon--border {
  border: 2px solid #3c3b5b;
  background-color: transparent;
}

.icobox__icon--filled {
  background-color: #f92552;
  color: #fff;
}

.icobox__icon--circle {
  border-radius: 50%;
}

.icobox__icon--rounded {
  border-radius: 8px;
}

.icobox__icon--square {
  border-radius: 0;
}

.icobox__title {
  font-size: 22px;
  font-style: italic;
  text-transform: none;
  margin-bottom: 1.25em;
}
.icobox__title > a {
  color: #fff;
}

.icobox__title--lg {
  margin-bottom: 1.75em;
}

.icobox__icon--color--primary {
  color: #f92552;
}
.icobox__icon--color--primary.icobox__icon--filled {
  background-color: #f92552;
  color: #fff;
}

.icobox__icon--color--secondary {
  color: #3ffeca;
}
.icobox__icon--color--secondary.icobox__icon--filled {
  background-color: #3ffeca;
  color: #fff;
}

.icobox--center {
  text-align: center;
}

.icobox--left {
  text-align: left;
}

.icobox--right {
  text-align: right;
}

.icobox--center .icobox__icon,
.icobox--left .icobox__icon,
.icobox--right .icobox__icon {
  margin-bottom: 15px;
}
.icobox--center .icobox__icon.icobox__icon--lg,
.icobox--left .icobox__icon.icobox__icon--lg,
.icobox--right .icobox__icon.icobox__icon--lg {
  margin-bottom: 26px;
}

/* Icon */
.alc-icon {
  display: inline-block;
  color: #fff;
  background-color: #323150;
  position: relative;
}
.alc-icon i,
.alc-icon svg {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.alc-icon--circle {
  border-radius: 50%;
}

.alc-icon--xl {
  width: 80px;
  height: 80px;
}
.alc-icon--xl .df-icon {
  transform: translate(-50%, -50%) scale(1.75);
}

.alc-icon--sm {
  width: 40px;
  height: 40px;
}

.alc-icon--xs {
  width: 20px;
  height: 20px;
}
.alc-icon--xs i {
  font-size: 8px;
}

.alc-icon--outline {
  background-color: transparent;
  border: 1px solid #f92552;
}

.alc-icon--outline-md {
  border-width: 4px;
}
.alc-icon--outline-md.alc-icon--sm {
  line-height: 32px;
}
.alc-icon--outline-md.alc-icon--xs {
  border-width: 2px;
}

.alc-icon--outline-xl {
  border-width: 8px;
}

.alc-icon--disabled {
  border-color: #fff;
  color: #fff;
  opacity: 0.1;
}

/* Ratings */
.ratings .fa {
  color: #3ffeca;
}
.ratings .empty {
  color: #545284;
}

/* Timeline
/* ------------------------- */
.timeline {
  list-style: none;
  padding: 0;
  margin: 2em 0 0 0;
  position: relative;
}

.timeline__event {
  padding: 0 0 2.2em 46px;
  margin: 0;
  position: relative;
}
.timeline__event::before {
  content: "";
  display: block;
  position: absolute;
  left: 9px;
  top: 0;
  bottom: 0;
  border-left: 1px solid #363555;
}
.timeline__event::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: #3ffeca;
  border: 2px solid #3ffeca;
  box-shadow: inset 0 0 0 5px #323150;
}
.timeline__event:last-child {
  padding-bottom: 0;
}
.timeline__event:last-child::before {
  display: none;
}

.timeline__title {
  font-size: 14px;
  line-height: 1.2em;
  text-transform: none;
}

.sp-template-vertical-timeline .game-timeline-wrapper--vertical {
  margin-top: 20px;
}

/* Google Map
/* ------------------------- */
.gm-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
}
@media (min-width: 992px) {
  .gm-map {
    min-height: 350px;
  }
}

.gm-map--lg {
  min-height: 300px;
}
@media (min-width: 992px) {
  .gm-map--lg {
    min-height: 460px;
  }
}

.wpb-js-composer .wpb_gmaps_widget {
  margin-bottom: 0 !important;
}
.wpb-js-composer .wpb_gmaps_widget .wpb_wrapper {
  padding: 0;
}

/* Marquee
/* ------------------------- */
.marquee-wrapper {
  width: 100%;
  background-color: #323150;
  height: 38px;
  position: relative;
  overflow: hidden;
}
.marquee-wrapper .container {
  position: relative;
}
.marquee-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background-color: #f92552;
}
.marquee-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background-color: #3ffeca;
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  line-height: 38px;
  background-color: #323150;
}
@media (min-width: 768px) {
  .marquee::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -20px;
    width: 135px;
    transform: skew(-25deg);
    background-color: #3ffeca;
    z-index: 1;
  }
  .marquee::after {
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    right: 107px;
    top: 0;
    bottom: 0;
    background-color: #323150;
    transform: skew(-25deg);
    z-index: 1;
  }
}
.marquee .posts--inline .posts__item {
  display: inline-flex;
  align-items: center;
}
.marquee .posts--inline .posts__cat {
  top: 0;
}

.marquee-label {
  display: none;
}
@media (min-width: 768px) {
  .marquee-label {
    display: block;
    white-space: nowrap;
    position: absolute;
    left: 8px;
    padding: 0 10px 0 0;
    top: 0;
    line-height: 38px;
    z-index: 2;
    font-size: 10px;
    text-transform: uppercase;
    font-family: "Exo 2", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    background-color: #f92552;
  }
  .marquee-label::before {
    content: "";
    display: block;
    position: absolute;
    right: -26px;
    top: 0;
    bottom: 0;
    background-color: #f92552;
    width: 35px;
    transform: skew(-25deg);
  }
  .marquee-label::after {
    content: "";
    display: block;
    position: absolute;
    right: -22px;
    top: 0;
    bottom: 0;
    background-color: #323150;
    width: 4px;
    transform: skew(-25deg);
  }
}

.marquee-wrapper--boxed {
  border-radius: 4px;
  border: 1px solid #3c3b5b;
  height: 46px;
  overflow: hidden;
}
.vc_row[data-vc-stretch-content] .marquee-wrapper--boxed::before, .vc_row[data-vc-stretch-content] .marquee-wrapper--boxed::after {
  background-color: #383759;
}
.vc_row:not([data-vc-stretch-content]) .marquee-wrapper--boxed::before, .vc_row:not([data-vc-stretch-content]) .marquee-wrapper--boxed::after {
  background-color: transparent;
}
.marquee-wrapper--boxed .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.marquee-wrapper--boxed .marquee {
  line-height: 43px;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .marquee-wrapper--boxed .marquee::before {
    background-color: #383759;
  }
}
.marquee-wrapper--boxed .marquee-label {
  left: 0;
  font-style: italic;
}
.marquee-wrapper--boxed .marquee-label i {
  color: #f92552;
  margin-right: 0.3em;
  font-style: normal;
  font-weight: 400;
}
@media (min-width: 768px) {
  .marquee-wrapper--boxed .marquee-label {
    line-height: 44px;
    font-size: 14px;
    padding-left: 24px;
    padding-right: 13px;
    background-color: #383759;
  }
  .marquee-wrapper--boxed .marquee-label::before {
    width: 50px;
    right: -38px;
    background-color: #383759;
  }
  .marquee-wrapper--boxed .marquee-label::after {
    right: -34px;
  }
}

.marquee-wrapper--no-categories .posts--inline .posts__title::before {
  margin-right: 1em;
  color: #3ffeca;
}
.marquee-wrapper--no-categories .posts--inline .posts__title::before {
  content: "//";
}

/* Video Playlist */
.alc-video-player-col {
  padding-right: 0;
}

@media (min-width: 992px) {
  .alc-video-playlist-col {
    border-left: 1px solid #3c3b5b;
    padding-left: 0;
  }
}

.alc-video-player__header {
  border-bottom: 1px solid #3c3b5b;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
@media (max-width: 991px) {
  .alc-video-player__header {
    border-top: 1px solid #3c3b5b;
  }
}
.alc-video-player__header .slick-prev,
.alc-video-player__header .slick-next {
  top: 50%;
  transform: translateY(-50%);
}

.alc-video-player__title {
  font-size: 11px;
  line-height: 1.2em;
  margin-bottom: 0;
}

.alc-video-player .posts__thumb--video {
  float: none;
  margin: 0;
}
.alc-video-player .posts__thumb--video img {
  width: 100%;
}
.alc-video-player .wp-block-embed:last-child {
  margin-bottom: 0;
}

.alc-video-player__video-list {
  position: relative;
}
.alc-video-player__video-list .slick-track {
  display: block;
}
.alc-video-player__video-list .posts__item {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 26px;
  padding-bottom: 26px;
}
.alc-video-player__video-list .posts__item:hover {
  cursor: pointer;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .alc-video-player__video-list .posts__item .posts__title {
    font-size: 12px;
  }
}

.alc-embeded-player {
  position: relative;
  overflow: hidden;
  background-color: #000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  border: 1px solid #3c3b5b;
}
.card--no-paddings .alc-embeded-player {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border: none;
}

.alc-embeded-player--container {
  margin: 0;
  padding: 0 0 56.25% 0;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.alc-embeded-player--container iframe,
.alc-embeded-player--container object,
.alc-embeded-player--container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.alc-embeded-player--container p {
  margin: 0;
  padding: 0;
}
.alc-embeded-player--container .wp-embed-aspect-16-9 .wp-block-embed__wrapper,
.alc-embeded-player--container .jetpack-video-wrapper {
  position: static;
  display: inline;
}

.alc-embeded-player__overlay {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
.alc-embeded-player__overlay:hover {
  cursor: pointer;
}
.alc-embeded-player__overlay:hover .alc-embeded-player__icon {
  opacity: 0.5;
}

.alc-embeded-player__icon {
  display: block;
  color: #fff;
  font-size: 30px;
  line-height: 1em;
  transition: opacity 0.3s ease;
}

html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
}

html {
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #1e202f;
  color: #9e9caa;
  font-size: 14px;
  line-height: 26px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  text-align: left;
}
[dir=rtl] body {
  direction: rtl;
  unicode-bidi: embed;
}

/* Font Size on Mobile devices */
@media (max-width: 479px) {
  body {
    font-size: 13px;
    line-height: 22px;
  }
}
.site-wrapper {
  backface-visibility: hidden;
  transition: all 0.4s ease-in-out;
}
@media (min-width: 992px) {
  .site-wrapper {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
  }
  .site-wrapper .sp-header,
  .site-wrapper .header,
  .site-wrapper .header-tertiary,
  .site-wrapper .page-heading,
  .site-wrapper .hero-unit,
  .site-wrapper .footer {
    flex: 0 0 auto;
  }
  .site-wrapper .site-content {
    flex: 1 0 auto;
  }
}

@media (max-width: 991px) {
  .site-wrapper--has-overlay {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    bottom: auto;
    height: 100vh;
  }
}

.site-overlay {
  left: 0;
  top: 0;
  z-index: 102;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: transparent;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.4s linear;
}
@media (max-width: 991px) {
  .site-wrapper--has-overlay .site-overlay {
    visibility: visible;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.8);
  }
}
.site-wrapper--has-overlay-pushy .site-overlay {
  visibility: visible;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.8);
}

/*
// #Header
// --------------------------------------------------
*/
.header {
  background-color: #282840;
  position: relative;
  z-index: 6;
}
@media (max-width: 991px) {
  .header {
    z-index: 103;
  }
}

/* Header Top Bar */
.header__top-bar {
  background-color: #323150;
  display: none;
}
@media (min-width: 992px) {
  .header__top-bar {
    display: block;
    height: 48px;
  }
}

.header__top-bar-inner {
  display: flex;
  align-items: center;
  height: 48px;
}

.nav-account {
  display: none;
}
@media (min-width: 992px) {
  .nav-account {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: auto;
    width: auto;
  }
  .nav-account .nav-account__item {
    display: inline-block;
    font-size: 9px;
    line-height: 1.5em;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Exo 2", sans-serif;
  }
  .nav-account .nav-account__item::before {
    display: inline-block;
    color: #7f7e8c;
    margin: 0 16px 0 14px;
  }
  .nav-account .nav-account__item > a {
    color: #fff;
    transition: all 0.3s ease;
    display: inline-block;
    height: 48px;
    line-height: 48px;
  }
  .nav-account .nav-account__item > a:hover {
    color: #3ffeca;
  }
  .nav-account .nav-account__item > a:focus {
    outline: none;
  }
  .nav-account .nav-account__item > a .highlight {
    color: #3ffeca;
  }
  .nav-account .nav-account__item:first-child::before {
    display: none !important;
  }
  .nav-account .nav-account__item.has-children {
    position: relative;
  }
  .nav-account .nav-account__item.has-children::after {
    content: "\f107";
    display: inline-block;
    margin-left: 9px;
    position: relative;
    font-size: 10px;
    line-height: 1.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    color: #fff;
  }
  .nav-account .nav-account__item.has-children ul {
    list-style: none;
    top: 40px;
    right: 0;
    min-width: 110px;
    padding: 14px 0;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    background-color: #383759;
    transform-style: preserve-3d;
    transform: translateX(50%) rotateX(-75deg);
    visibility: hidden;
  }
  .nav-account .nav-account__item.has-children ul li a {
    display: block;
    font-size: 9px;
    padding: 6px 24px;
    border-bottom: none;
    color: #9e9caa;
    transition: color 0.2s ease;
  }
  .nav-account .nav-account__item.has-children ul li a:hover {
    color: #3ffeca;
    background-color: transparent;
  }
  .nav-account .nav-account__item.has-children:hover ul {
    display: block;
    transform: translateX(50%) rotateX(0deg);
    opacity: 1;
    visibility: visible;
  }
  .nav-account .nav-account__item--logout > a {
    color: #7f7e8c;
  }
}

.nav-account__divider-slash .nav-account__item::before {
  content: "/";
}

.nav-account__divider-backslash .nav-account__item::before {
  content: "\\";
}

.nav-account__divider-vert_bar .nav-account__item::before {
  content: "|";
}

.nav-account__divider-bullet .nav-account__item::before {
  content: "•";
}

.nav-account__divider-none .nav-account__item::before {
  content: "";
  margin: 0 12px 0 10px;
}

/* Header Secondary */
.header__secondary {
  background-color: #282840;
  display: none;
}
@media (min-width: 992px) {
  .header__secondary {
    display: block;
    text-align: right;
  }
}

/* Header Primary */
.header__primary {
  background-color: #282840;
  position: relative;
}
.header--layout-1 .header__primary::after, .header--layout-2 .header__primary::after, .header--layout-3 .header__primary::after, .header--layout-4 .header__primary::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #323150;
}
.header--layout-1 .header__primary::after {
  width: 50%;
}
.header--layout-2 .header__primary::after, .header--layout-3 .header__primary::after, .header--layout-4 .header__primary::after {
  width: 100%;
}

.header__primary-inner {
  position: relative;
  z-index: 1;
  background-color: #323150;
}
@media (min-width: 992px) {
  .header__primary-inner {
    min-height: 62px;
  }
}
.header--layout-1 .header__primary-inner::before {
  content: "";
  position: absolute;
  display: none;
  top: 0;
  bottom: 0;
  width: 210px;
  background-color: #282840;
  left: -25px;
  margin-left: 0;
  transform: skew(-25deg);
}
@media (min-width: 768px) {
  .header--layout-1 .header__primary-inner::before {
    display: block;
  }
}
@media (max-width: 991px) {
  .header--layout-1 .header__primary-inner::before {
    width: 80px;
  }
}

@media (max-width: 991px) {
  .main-nav .social-links--main-nav {
    display: none;
  }
}

/* Header Logo */
.header-logo {
  position: absolute;
  z-index: 3;
  left: 0;
  display: block;
  bottom: 100%;
  margin-left: 0;
  margin-bottom: 7px;
}
@media (max-width: 991px) {
  .header-logo {
    display: none;
  }
}

.header-logo__img {
  position: relative;
}

/* Header Mobile */
.header-mobile {
  display: none;
  background-color: #282840;
}

/* Header Mobile Search */
.header-search-form {
  padding: 24px 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 1;
  background-color: #282840;
  vertical-align: top;
}
@media (min-width: 992px) {
  .header-search-form {
    display: inline-block;
    width: 320px;
    background-color: transparent;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-search-form {
    width: 200px;
  }
}
.header-search-form .search-form {
  position: relative;
}
.main-nav .header-search-form {
  padding: 11px 0;
  background-color: transparent;
}
.main-nav .header-search-form.header-search-form--right {
  float: right;
}
.header__secondary .header-search-form.header-search-form--left {
  float: left;
}

/* Search Input */
input.header-mobile__search-control {
  background-color: #323150;
  border-color: #323150;
  border-radius: 20px;
  height: 38px;
  padding: 6px 60px 6px 20px;
  font-size: 12px;
  color: #7f7e8c;
}
input.header-mobile__search-control::-moz-placeholder {
  color: #7f7e8c;
  opacity: 1;
}
input.header-mobile__search-control:-ms-input-placeholder {
  color: #7f7e8c;
}
input.header-mobile__search-control::-webkit-input-placeholder {
  color: #7f7e8c;
}
@media (min-width: 992px) {
  input.header-mobile__search-control {
    background-color: rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.2);
    color: #7f7e8c;
  }
  input.header-mobile__search-control::-moz-placeholder {
    color: rgba(127, 126, 140, 0.25);
    opacity: 1;
  }
  input.header-mobile__search-control:-ms-input-placeholder {
    color: rgba(127, 126, 140, 0.25);
  }
  input.header-mobile__search-control::-webkit-input-placeholder {
    color: rgba(127, 126, 140, 0.25);
  }
}
input.header-mobile__search-control:focus {
  background-color: #383759;
  border-color: #383759;
  color: #fff;
}
@media (min-width: 992px) {
  input.header-mobile__search-control:focus {
    background-color: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 0, 0, 0.3);
    color: #fff;
  }
}

/* Submit Button */
.header-mobile__search-submit {
  background: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 51px;
  height: 38px;
  line-height: 38px;
  padding: 0;
  border: none;
  font-size: 16px;
  color: #fff;
  transition: color, background-color 0.3s ease;
  border-radius: 0 20px 20px 0;
}
.header-mobile__search-submit:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
@media (min-width: 992px) {
  .header-mobile__search-submit {
    color: #fff;
  }
  .header-mobile__search-submit:hover {
    color: #fff;
  }
}

@media only screen and (max-width: 991px) {
  .header-mobile {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
  }
  .header-mobile__inner {
    overflow: hidden;
    position: relative;
    z-index: 2;
    height: 100px;
    background-color: #282840;
    transition: all 0.4s ease-in-out;
  }
  .header-mobile__secondary {
    display: inline-flex;
    position: absolute;
    gap: 16px;
    right: 24px;
    top: 40px;
  }
  /* Header Mobile Logo */
  .header-mobile__logo {
    text-align: center;
    position: absolute;
    z-index: 3;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50px;
    margin-top: 4px;
  }
  .header-mobile__logo-img {
    width: 100px;
    height: auto;
  }
  /* Header Mobile Burger Icon */
  .burger-menu-icon {
    z-index: 102;
    transition: all 0.4s ease-in-out;
    display: block;
    position: absolute;
    top: 40px;
    left: 24px;
    cursor: pointer;
    width: 26px;
    height: 19px;
  }
  .burger-menu-icon__line, .burger-menu-icon__line::before, .burger-menu-icon__line::after {
    content: "";
    cursor: pointer;
    height: 3px;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    display: block;
    border-radius: 1px;
  }
  .burger-menu-icon__line::before {
    top: 8px;
  }
  .burger-menu-icon__line::after {
    top: 16px;
  }
  /* Mobile Pushy Panel */
  .header-mobile-pushy-panel__toggle {
    width: 24px;
    height: 24px;
    font-size: 22px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    margin-right: -10px;
  }
  .header-mobile-pushy-panel__toggle:hover {
    cursor: pointer;
  }
  /* Mobile Search Icon */
  .header-mobile__search-icon {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 22px;
    color: #fff;
    text-align: center;
    position: relative;
  }
  .header-mobile__search-icon::before, .header-mobile__search-icon::after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
  }
  .header-mobile__search-icon::before {
    content: "\f002";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
  }
  .header-mobile__search-icon::after {
    content: "";
    transform: translate(-50%, -50%), scale(0);
    opacity: 0;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cpath transform='translate(-267.219 -40.219)' fill='%23fff' d='M267.62,56.258L283.258,40.62a1.5,1.5,0,0,1,2.121,2.121L269.741,58.379A1.5,1.5,0,0,1,267.62,56.258Zm15.638,2.122L267.62,42.742a1.5,1.5,0,0,1,2.121-2.121l15.638,15.638A1.5,1.5,0,0,1,283.258,58.38Z'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: 19px 19px;
    background-repeat: no-repeat;
  }
  .header-mobile__search-icon.header-mobile__search-icon--close::before {
    transform: translate(-50%, -50%), scale(0);
    opacity: 0;
  }
  .header-mobile__search-icon.header-mobile__search-icon--close::after {
    transform: translate(-50%, -50%), scale(1);
    opacity: 1;
  }
  .header-mobile__search-icon:hover {
    cursor: pointer;
  }
  /* Mobile Search */
  .header-search-form {
    padding: 0 25px;
    height: 0;
    top: -62px;
  }
  .header-mobile--expanded .header-search-form {
    top: 0;
    height: 63px;
  }
  /* Search Input */
  input.header-mobile__search-control {
    margin-top: 12px;
  }
  /* Submit Button */
}
/* Header Banner */
.header-banner {
  display: inline-block;
  vertical-align: middle;
  margin-left: 38px;
  padding: 16px 0;
}
@media (min-width: 992px) {
  .header-banner {
    margin-left: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-banner img {
    width: 254px;
    height: auto;
  }
}
@media (min-width: 1200px) {
  .header-banner {
    margin-left: 38px;
  }
}
@media (min-width: 992px) {
  .main-nav__list .header-banner {
    display: none;
  }
}
@media (max-width: 991px) {
  .main-nav__list .header-banner {
    margin: 0;
    padding: 15px 30px;
  }
  .main-nav__list .header-banner img {
    max-width: 100%;
    height: auto;
  }
}

/**
 *
 * Header Layouts
 *
 */
/* Header Layout 1 */
@media (min-width: 992px) {
  .header--layout-1 .main-nav {
    justify-content: flex-end;
  }
}

/* Header Layout 2 */
@media (min-width: 992px) {
  .header--layout-2 .main-nav {
    justify-content: flex-start;
  }
}
.header--layout-2 .main-nav > ul,
.header--layout-2 .main-nav > div {
  margin-left: auto;
}
.header--layout-2 .main-nav > ul.main-nav__list,
.header--layout-2 .main-nav > div.main-nav__list {
  margin-left: 0;
}

/* Header Layout 3 */
@media (min-width: 992px) {
  .header--layout-3 .header__primary-inner {
    display: flex;
    align-items: center;
  }
}
.header--layout-3 .header__primary-spacer {
  margin-left: auto;
}
@media (min-width: 992px) {
  .header--layout-3 .header-logo {
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
  }
}
@media (min-width: 992px) {
  .header--layout-3 .main-nav__list > li:nth-of-type(1) > a {
    padding-left: 0 !important;
  }
}
@media (min-width: 992px) {
  .header--layout-3 .header-search-form {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (min-width: 992px) {
  .header--layout-3 .info-block--header .info-block__item {
    padding-top: 10px;
    padding-bottom: 22px;
  }
  .header--layout-3 .info-block--header .info-block__item.info-block__item--contact-primary, .header--layout-3 .info-block--header .info-block__item.info-block__item--contact-secondary {
    margin-top: 7px;
    padding-right: 0;
    padding-left: 40px;
  }
  .header--layout-3 .info-block--header .info-block__item .df-icon,
  .header--layout-3 .info-block--header .info-block__item .df-icon-custom {
    top: 14px;
    left: 0;
  }
  .header--layout-3 .info-block--header .info-block__item .info-block__menu-icon {
    top: 11px !important;
  }
}

/* Header Layout 4 */
.header--layout-4 .header__primary::after {
  background-color: #323150;
}
@media (min-width: 992px) {
  .header--layout-4 .header__primary--center .header__primary-inner {
    justify-content: center;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .header--layout-4 .header__primary--center .main-nav {
    margin-right: 0;
    flex-basis: 100%;
  }
}
@media (min-width: 992px) {
  .header--layout-4 .header__primary--center .main-nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 100%;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .header--layout-4 .header__primary--center .main-nav__list > li:nth-of-type(1) > a {
    padding: 0 34px !important;
  }
}
.header--layout-4 .header__primary-inner {
  background-color: #323150;
}
@media (min-width: 992px) {
  .header--layout-4 .header__primary-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
@media (min-width: 992px) {
  .header--layout-4 .header-logo {
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
  }
}
@media (min-width: 992px) {
  .header--layout-4 .main-nav {
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .header--layout-4 .header-search-form {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (min-width: 992px) {
  .header--layout-4 .info-block--header .info-block__item {
    padding-top: 10px;
    padding-bottom: 22px;
  }
  .header--layout-4 .info-block--header .info-block__item .df-icon,
  .header--layout-4 .info-block--header .info-block__item .df-icon-custom {
    top: 14px;
  }
  .header--layout-4 .info-block--header .info-block__item .info-block__menu-icon {
    top: 11px !important;
  }
}
.header--layout-4 .header__secondary {
  position: relative;
  z-index: 3;
}
.header--layout-4 .header__secondary .header-search-form {
  float: left;
}
.header--layout-4 .header__secondary-inner {
  position: relative;
  z-index: 1;
}

/*
// #Header Navigation
// --------------------------------------------------
*/
/* Navigation - Desktop */
@media (min-width: 992px) {
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.main-nav .header-mobile__logo {
  display: none;
}

.main-nav__list {
  display: inline-block;
  text-align: left;
  padding: 0;
  margin: 0;
  list-style: none;
  /* 1st Level */
}
@media (min-width: 992px) {
  .main-nav__list {
    border-left: 1px solid #3c3b5b;
  }
}
.main-nav__list > li {
  text-align: center;
  display: inline-block;
  padding: 0;
}
@media (min-width: 992px) {
  .main-nav__list > li {
    margin-left: -0.25em;
    border-right: 1px solid #3c3b5b;
  }
  .main-nav__list > li:first-of-type {
    margin-left: 0;
  }
}
.main-nav__list > li > a {
  display: block;
  position: relative;
  font-style: normal;
  color: #fff;
  padding: 0 34px;
  line-height: 62px;
  text-decoration: none;
  position: relative;
  font-size: 12px;
  font-family: "Exo 2", sans-serif;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-nav__list > li > a {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.main-nav__list > li > a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.main-nav__list > li > a:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.main-nav__list > li > a:hover::before {
  background-color: #f92552;
}
.main-nav__list > li.current-menu-item > a {
  color: #fff;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.2);
}
.main-nav__list > li.current-menu-item > a::before {
  background-color: #f92552;
}
.main-nav__list > li.menu-item-has-children > a::after {
  content: "\f107";
  display: inline-block;
  margin-left: 9px;
  top: -1px;
  position: relative;
  font-size: 10px;
  line-height: 1.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  color: #fff;
  font-style: normal;
}

/* Megamenu */
.has-mega-menu .main-nav__sub-0 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  left: 0;
  position: absolute;
  top: 62px;
  z-index: 1000;
  margin: 0;
  text-align: left;
  padding: 43px 55px;
  font-size: 15px;
  border: solid 1px #3c3b5b;
  background-color: #383759;
  opacity: 0;
  transform-origin: 0 0;
  transition: transform 0.3s, opacity 0.3s;
}
.has-mega-menu .main-nav__sub-0 .main-nav__title,
.has-mega-menu .main-nav__sub-0 .widget .widget__title,
.has-mega-menu .main-nav__sub-0 .widget-title {
  font-size: 14px;
  letter-spacing: -0.03em;
  padding: 3px 0;
  margin-bottom: 19px;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  line-height: 1.2em;
}
.has-mega-menu .main-nav__sub-0 .widget {
  border: none;
  padding: 0;
  color: #9e9caa;
}
.has-mega-menu .main-nav__sub-0 .widget .widget__title {
  border: none;
}
.has-mega-menu .main-nav__sub-0 .widget .widget__title::before {
  display: none;
}
.has-mega-menu .main-nav__sub-0 .widget + .widget {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .has-mega-menu .main-nav__sub-0 .widget + .widget {
    margin-top: 40px;
  }
}
.has-mega-menu .main-nav__sub-0 .widget ul {
  margin: 0;
}
.has-mega-menu .main-nav__sub-0 .widget ul > li {
  padding: 7px 0;
}
.has-mega-menu .main-nav__sub-0 .widget ul > li + li {
  border-top: none;
}
.has-mega-menu .main-nav__sub-0 .widget ul > li > a {
  display: inline;
  padding: 0;
  color: #9e9caa;
}
.has-mega-menu .main-nav__sub-0 .widget ul > li > a:hover {
  color: #f92552;
}
.has-mega-menu .main-nav__sub-0 .widget .post-author__name {
  color: #9e9caa;
}
.has-mega-menu .main-nav__sub-0 .widget .meta__item a {
  color: #9e9caa;
}
.has-mega-menu .main-nav__sub-0 .widget .meta__item a:hover {
  color: #9e9caa;
}
.has-mega-menu .main-nav__sub-0 [class*=main-nav__sub-] {
  min-width: auto;
  border: none;
  position: static;
}
.has-mega-menu .main-nav__sub-0 .main-nav__sub-1 > li {
  display: block;
  white-space: nowrap;
  text-align: left;
  text-transform: uppercase;
}
.has-mega-menu .main-nav__sub-0 .main-nav__sub-1 > li > a {
  display: block;
  font-size: 11px;
  line-height: 18px;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  text-align: left;
  padding: 5px 0;
  color: #9e9caa;
  transition: color 0.3s ease;
}
.has-mega-menu .main-nav__sub-0 .main-nav__sub-1 > li > a:hover {
  color: #3ffeca;
  background-color: transparent;
  text-decoration: none;
}
@media (min-width: 992px) {
  .has-mega-menu .main-nav__sub-0 .has-2cols-ul .main-nav__sub-1,
  .has-mega-menu .main-nav__sub-0 .has-3cols-ul .main-nav__sub-1 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  .has-mega-menu .main-nav__sub-0 .has-2cols-ul .main-nav__sub-1 li,
  .has-mega-menu .main-nav__sub-0 .has-3cols-ul .main-nav__sub-1 li {
    padding-right: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .has-mega-menu .main-nav__sub-0 .has-2cols-ul .main-nav__sub-1 li a,
  .has-mega-menu .main-nav__sub-0 .has-3cols-ul .main-nav__sub-1 li a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media (min-width: 992px) {
  .has-mega-menu .main-nav__sub-0 .has-2cols-ul .main-nav__sub-1 li {
    flex-basis: 50%;
  }
}
@media (min-width: 992px) {
  .has-mega-menu .main-nav__sub-0 .has-3cols-ul .main-nav__sub-1 li {
    flex-basis: 33.3%;
  }
}

/* Megamenu default columns */
@media (min-width: 992px) {
  ul[class*=megamenu-col-] {
    overflow: hidden;
  }
  ul[class*=megamenu-col-] > li.megamenu-item {
    padding-left: 8px;
    padding-right: 8px;
  }
  li.megamenu-col-2:not([class*=col-]) {
    width: 50%;
  }
  li.megamenu-col-3:not([class*=col-]) {
    width: 33.3%;
  }
  li.megamenu-col-4:not([class*=col-]) {
    width: 25%;
  }
  li.megamenu-col-5:not([class*=col-]) {
    width: 20%;
  }
  li.megamenu-col-6:not([class*=col-]) {
    width: 16.66666667%;
  }
}
@media (min-width: 992px) {
  .main-nav__list > li:not(.has-mega-menu) {
    position: relative;
  }
}
/* Animation for Navigation */
.main-nav__list li > .main-nav__sub-0,
.main-nav__list li > .main-nav__sub-1,
.main-nav__list li > .main-nav__sub-2 {
  transform-style: preserve-3d;
  transform: rotateX(-75deg);
  visibility: hidden;
}
.main-nav__list li:hover > .main-nav__sub-0,
.main-nav__list li:hover > .main-nav__sub-1,
.main-nav__list li:hover > .main-nav__sub-2 {
  transform: rotateX(0deg);
  opacity: 1;
  visibility: visible;
}
.main-nav__list li.has-mega-menu:hover > .main-nav__sub-0 ul {
  transform: rotateX(0deg);
  opacity: 1;
  visibility: visible;
}

/* Submenu */
.main-nav__sub-0 {
  position: absolute;
  top: 62px;
  z-index: 1000;
  margin: 0;
  padding: 0;
  min-width: 240px;
  background-color: #383759;
  border: solid 1px #3c3b5b;
  opacity: 0;
  transform-origin: 0% 0%;
  transition: transform 0.3s, opacity 0.3s;
}
.main-nav__sub-0 > li > a {
  text-decoration: none;
}
.main-nav__sub-0 > li.menu-item-has-children > a::after {
  content: "\f105";
  display: block;
  position: absolute;
  right: 24px;
  top: 50%;
  margin-top: -8px;
  font-size: 10px;
  line-height: 1.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-style: normal;
  color: #fff;
}
.no-mega-menu .main-nav__sub-0 li {
  position: relative;
  margin: 0;
  padding: 0;
}
.no-mega-menu .main-nav__sub-0 li a {
  display: block;
  font-family: "Exo 2", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-style: normal;
  font-size: 11px;
  color: #fff;
  text-align: left;
  line-height: 1.5em;
  padding: 16px 30px;
  letter-spacing: normal;
  border-bottom: 1px solid #3c3b5b;
  transition: background-color 0.3s ease;
}
.no-mega-menu .main-nav__sub-0 li a:hover {
  color: #3ffeca;
  background-color: #323150;
}
.no-mega-menu .main-nav__sub-0 li:last-child > a {
  border-bottom: none;
}

.main-nav__list li:hover .main-nav__sub {
  display: block;
}

/* Submenu */
.main-nav__sub-0 li {
  position: relative;
  padding: 0;
  margin: 0;
  display: block;
}
.main-nav__sub-0 li:hover .main-nav__sub-1 {
  display: block;
  opacity: 1;
  list-style: none;
  padding: 0;
  background-color: #383759;
}

/* 2nd Submenu */
.main-nav__sub-1 {
  min-width: 240px;
  border: solid 1px #3c3b5b;
  position: absolute;
  left: 100%;
  top: -1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  transform-origin: 0% 0%;
  transition: transform 0.4s, opacity 0.4s;
}
.main-nav__sub-1 li:hover .main-nav__sub-2 {
  opacity: 1;
  list-style: none;
  padding: 0;
  border: solid 1px #3c3b5b;
  background-color: #383759;
}

/* 3rd Submenu */
.main-nav__sub-2 {
  min-width: 240px;
  position: absolute;
  left: 100%;
  top: -1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  transform-origin: 0% 0%;
  transition: transform 0.4s, opacity 0.4s;
}

.main-nav__toggle,
.main-nav__toggle-2 {
  display: none;
}

@media only screen and (min-width: 992px) {
  .main-nav__list li:hover > .main-nav__sub-0,
  .main-nav__sub-0 li:hover > .main-nav__sub-1,
  .main-nav__sub-1 li:hover > .main-nav__sub-2 {
    display: block;
  }
  .main-nav__list li.has-mega-menu:hover > .megamenu-item {
    display: flex;
  }
  .main-nav__list .nav-account__item {
    display: none;
  }
  .main-nav__list .social-links__item {
    display: none;
  }
  .main-nav__list .main-nav__item--social-links {
    display: none;
  }
  .main-nav .main-nav__item--shopping-cart {
    display: none;
  }
}
/* Navigation - Mobile */
@media only screen and (max-width: 991px) {
  .main-nav {
    width: 270px;
    inset-inline-start: 0;
    transform: translateX(-100%);
    position: fixed;
    top: 0;
    bottom: 0;
    margin: 0;
    z-index: 103;
    overflow: auto;
    transition: all 0.4s ease-in-out;
    background-color: #323150;
  }
  .site-wrapper--has-overlay .main-nav {
    transform: translateX(0);
    transition: all 0.4s ease-in-out;
  }
  .main-nav .header-mobile__logo {
    position: relative;
    padding: 5px 0 18px 0;
    display: block;
    top: 0;
    transform: translate(-50%, 0);
    border-bottom: 1px solid #383759;
  }
  .main-nav .df-icon {
    stroke: #3ffeca;
  }
  .main-nav .df-icon-custom i {
    color: #3ffeca;
  }
  .main-nav .main-nav__item--shopping-cart .info-block__link-wrapper {
    overflow: hidden;
    font-size: 11px;
    line-height: 1.5em;
    padding-right: 20px;
  }
  .main-nav .main-nav__item--shopping-cart .df-icon-custom {
    display: none;
  }
  .main-nav .main-nav__item--shopping-cart .df-icon-stack--bag,
  .main-nav .main-nav__item--shopping-cart .df-icon--shopping-cart {
    display: none;
  }
  .main-nav .main-nav__item--shopping-cart .info-block__heading {
    margin-bottom: 0;
    float: left;
    font-size: 11px;
    line-height: 1.5em;
  }
  .main-nav .main-nav__item--shopping-cart .info-block__cart-sum {
    float: right;
    font-size: 11px;
    line-height: 1.5em;
    color: #3ffeca;
  }
  .main-nav .main-nav__back {
    width: 49px;
    height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 4;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 8'%3E%3Cpath transform='translate(-238.75 -17.75)' fill='%23fff' d='M240,21h12v2H240V21Zm0.171-.415,4.243,4.243L243,26.242,238.757,22Zm4.243-1.414-4.243,4.242L238.757,22,243,17.757Z'/%3E%3C/svg%3E");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 13px 8px;
  }
  .main-nav .main-nav__back:hover {
    cursor: pointer;
  }
  .main-nav .main-nav__list > li > a::before {
    top: 0;
    bottom: 0;
    width: 4px;
    height: auto;
  }
  .main-nav .main-nav__list > li > a .highlight {
    color: #3ffeca;
  }
  .main-nav .main-nav__list > li.menu-item-has-children > a::after {
    display: none;
  }
  .main-nav .main-nav__list > li.nav-account__item--logout > a {
    color: #6b6d70;
  }
  .main-nav .main-nav__list > li.nav-account__item--wishlist > a {
    padding-right: 20px;
  }
  .main-nav .main-nav__list > li.nav-account__item--wishlist .highlight {
    float: right;
  }
  .main-nav .main-nav__list > li.main-nav__item--social-links {
    text-align: left;
    padding: 0 15px 20px 15px;
  }
  .main-nav .main-nav__list > li.main-nav__item--social-links > a {
    display: inline-block;
    border-bottom: none;
    padding: 15px;
  }
  .main-nav .main-nav__list > li.main-nav__item--social-links > a::before {
    display: none;
  }
  .main-nav__list li:hover .main-nav__sub-0 {
    display: none;
  }
  .main-nav__list li:hover .main-nav__sub-0 .main-nav__sub-1 {
    display: none;
  }
  .main-nav__list .main-nav__sub-0 li.menu-item-has-children > a::after {
    display: none;
  }
  .main-nav__list .main-nav__sub-0 .main-nav__sub-1 li:hover .main-nav__sub-2 {
    display: none;
  }
  /* Mobile click to drop arrow */
  .main-nav__toggle {
    width: 30px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    top: 8px;
    right: 10px;
    display: block;
    cursor: pointer;
    z-index: 1;
    transition: all 0.4s ease;
    text-align: center;
  }
  .main-nav__toggle::before {
    display: block;
    content: "\f107";
    font-size: 10px;
    line-height: 30px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    color: #fff;
  }
  .main-nav__toggle-2 {
    width: 20px;
    height: 20px;
    line-height: 20px;
    position: absolute;
    top: 3px;
    right: 15px;
    display: block;
    cursor: pointer;
    z-index: 1;
    transition: all 0.4s ease;
    text-align: center;
  }
  .main-nav__toggle-2::before {
    display: block;
    content: "\f107";
    font-size: 10px;
    line-height: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    color: #fff;
  }
  .main-nav__toggle--rotate {
    transform: rotate(180deg);
  }
  /* 2nd Level Submenu */
  .main-nav__sub-1 {
    width: 100%;
    position: static;
    left: 100%;
    top: 0;
    display: none;
    margin: 0;
    padding: 0 !important;
    border: solid 0px;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .main-nav__sub-1 li {
    margin: 0;
    padding: 0;
    position: relative;
  }
  .main-nav__sub-1 li a {
    display: block;
    padding: 10px 25px 10px 25px;
  }
  .main-nav__sub-1 li:hover > a {
    color: #fff;
  }
  /* 3rd Level Submenu */
  .main-nav__sub-2 {
    width: 100%;
    position: static;
    left: 100%;
    top: 0;
    display: none;
    margin: 0;
    padding: 0 !important;
    border: solid 0px;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .main-nav__sub-2 li {
    margin: 0;
    padding: 0;
    position: relative;
  }
  .main-nav__sub-2 li a {
    display: block;
    padding: 10px 25px 10px 25px;
  }
  .main-nav__sub-2 li:hover > a {
    color: #fff;
  }
  .main-nav .main-nav__list {
    border-top: 1px solid #383759;
    height: 100%;
    overflow-y: auto;
    display: block;
  }
  .main-nav .main-nav__list > li {
    width: 100%;
    display: block;
    float: none;
    border-right: none;
    background-color: transparent;
    position: relative;
    white-space: inherit;
  }
  .main-nav .main-nav__list > li > a {
    padding: 16px 30px;
    font-size: 11px;
    text-align: left;
    border-right: solid 0px;
    background-color: transparent;
    color: #fff;
    line-height: 1.5em;
    border-bottom: 1px solid #383759;
    position: static;
  }
  .main-nav .main-nav__list li.menu-item-has-children > a::after {
    transform: none;
    top: 13px;
    content: "\f107";
    font-size: 10px;
    line-height: 1.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    color: #fff;
    font-style: normal;
  }
  .main-nav__list .main-nav__sub-0 {
    transform: none;
    opacity: 1;
    display: none;
    position: relative;
    top: 0;
    background-color: #383759;
    border: none;
    padding: 15px 0;
    visibility: visible;
  }
  .main-nav__list .main-nav__sub-0 > li > a {
    line-height: 1.5em;
    font-size: 10px;
    padding: 7px 20px 7px 40px;
    color: #9e9caa;
    transition: color 0.3s ease;
    border-bottom: none !important;
    display: block;
    text-align: left;
    font-family: "Exo 2", sans-serif;
    text-transform: uppercase;
  }
  .main-nav__list .main-nav__sub-0 > li > a:hover {
    color: #fff;
    background-color: transparent !important;
  }
  .main-nav__list .main-nav__sub-0 > li:hover > a {
    background-color: transparent;
    color: #fff;
  }
  .main-nav__list .main-nav__sub-0 > li:hover .main-nav__sub-1 {
    background-color: transparent;
  }
  .main-nav__list .main-nav__sub-0 > li [class*=main-nav__sub-] {
    padding: 15px 0;
    background-color: transparent;
    border: none;
  }
  .main-nav__list .main-nav__sub-0 > li [class*=main-nav__sub-] li a {
    line-height: 1.5em;
    font-size: 10px;
    padding: 7px 20px 7px 50px;
    color: #9e9caa;
    transition: color 0.3s ease;
    border-bottom: none;
  }
  .main-nav__list .main-nav__sub-0 > li [class*=main-nav__sub-] li a:hover {
    color: #fff;
    background-color: transparent;
  }
  .main-nav__list .main-nav__sub-0 > li [class*=main-nav__sub-] li .main-nav__sub-2 li a {
    padding-left: 60px;
  }
  .main-nav__list .has-mega-menu .main-nav__sub-0 {
    background-color: #383759;
    color: #9e9caa;
    display: none;
    position: relative;
    top: 0;
    padding: 15px 0;
    border: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
  }
  .main-nav__list .has-mega-menu .main-nav__sub-0 .megamenu-item:not(.menu-item-has-children) {
    padding-bottom: 15px;
  }
  .main-nav__list .has-mega-menu .main-nav__sub-0 .megamenu-item {
    padding-left: 30px;
    padding-right: 30px;
  }
  .main-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__toggle-2 {
    top: 8px;
  }
  .main-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__title {
    color: #fff;
    font-size: 11px;
    padding: 10px 0;
    margin: 0;
  }
  .main-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__sub-1 {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 13px;
  }
  .main-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__sub-1 > li > a {
    padding: 7px 20px 7px 10px;
    line-height: 1.5em;
    font-size: 10px;
    color: #9e9caa;
  }
  .main-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__sub-1 > li > a:hover {
    color: #fff;
  }
  .main-nav__list li:hover .main-nav__megamenu {
    display: none;
    position: relative;
    top: 0;
  }
  /* Animation None */
  .main-nav__list li > .main-nav__sub-0,
  .main-nav__list li:hover > .main-nav__sub-0,
  .main-nav__sub-0 li > .main-nav__sub-1,
  .main-nav__sub-0 li:hover > .main-nav__sub-1,
  .main-nav__sub-1 li > .main-nav__sub-2,
  .main-nav__sub-1 li:hover > .main-nav__sub-2 {
    transform: none;
    visibility: visible;
  }
  .main-nav__sub-0 li:hover > .main-nav__sub-1,
  .main-nav__sub-1 li > .main-nav__sub-2,
  .main-nav__sub-1 li:hover > .main-nav__sub-2 {
    opacity: 1;
  }
}
/*
// #Header Navigation
// --------------------------------------------------
*/
/* Navigation - Desktop */
.header-tertiary {
  background-color: #fff;
}
@media (max-width: 991px) {
  .header-tertiary .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.header-tertiary__inner {
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .header-tertiary__inner {
    min-height: 62px;
  }
}

@media (max-width: 991px) {
  .secondary-nav {
    padding: 24px 20px 24px 30px;
    position: relative;
  }
}
@media (min-width: 992px) {
  .secondary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 62px;
  }
}

.secondary-nav__heading {
  margin: 0;
  white-space: nowrap;
  color: #3c3b5b;
}
@media (max-width: 991px) {
  .secondary-nav__heading {
    font-size: 18px;
  }
}

.secondary-nav__toggle {
  display: block;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: uppercase;
  font-size: 12px;
  color: #9a9da2;
  cursor: pointer;
}
.secondary-nav__toggle::after {
  content: "\f078";
  display: inline-block;
  margin-left: 6px;
  top: -1px;
  position: relative;
  transition: all 0.3s ease;
  font-size: 10px;
  line-height: 1.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 992px) {
  .secondary-nav__toggle {
    display: none;
  }
}

.secondary-nav__toggle--rotate::after {
  transform: rotate(180deg);
}

.secondary-nav__list {
  text-align: right;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  /* 1st Level */
}
.secondary-nav__list > li {
  text-align: center;
  display: inline-block;
  padding: 0;
}
.secondary-nav__list > li > a {
  display: block;
  position: relative;
  font-style: normal;
  color: #323150;
  padding: 0 20px;
  line-height: 62px;
  text-decoration: none;
  position: relative;
  font-size: 12px;
  font-family: "Exo 2", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.3s ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .secondary-nav__list > li > a {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.secondary-nav__list > li > a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.secondary-nav__list > li > a:hover {
  color: #f92552;
  background-color: #282840;
  text-decoration: none;
}
.secondary-nav__list > li > a:hover::before {
  background-color: #f92552;
}
.secondary-nav__list > li.current-menu-item > a {
  color: #f92552;
  text-decoration: none;
  background-color: #282840;
}
.secondary-nav__list > li.current-menu-item > a::before {
  background-color: #f92552;
}
.secondary-nav__list > li.menu-item-has-children > a::after {
  content: "\f107";
  display: inline-block;
  margin-left: 9px;
  top: -1px;
  position: relative;
  font-size: 10px;
  line-height: 1.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  color: #323150;
  font-style: normal;
}

@media (min-width: 992px) {
  .secondary-nav__list > li:not(.has-mega-menu) {
    position: relative;
  }
}
/* Animation for Navigation */
.secondary-nav__list li > .main-nav__sub-0,
.secondary-nav__list li > .main-nav__sub-1,
.secondary-nav__list li > .main-nav__sub-2 {
  transform-style: preserve-3d;
  transform: rotateX(-75deg);
  visibility: hidden;
}
.secondary-nav__list li:hover > .main-nav__sub-0,
.secondary-nav__list li:hover > .main-nav__sub-1,
.secondary-nav__list li:hover > .main-nav__sub-2 {
  transform: rotateX(0deg);
  opacity: 1;
  visibility: visible;
}
.secondary-nav__list li.has-mega-menu:hover > .main-nav__sub-0 ul {
  transform: rotateX(0deg);
  opacity: 1;
  visibility: visible;
}

/* Submenu */
.secondary-nav__list .main-nav__sub-0 {
  position: absolute;
  top: 62px;
  z-index: 1000;
  margin: 0;
  padding: 0;
  min-width: 240px;
  background-color: #383759;
  border: solid 1px #3c3b5b;
  opacity: 0;
  transform-origin: 0% 0%;
  transition: transform 0.3s, opacity 0.3s;
}
.secondary-nav__list .main-nav__sub-0 > li > a {
  text-decoration: none;
}
.secondary-nav__list .main-nav__sub-0 > li.menu-item-has-children > a::after {
  content: "\f105";
  display: block;
  position: absolute;
  right: 24px;
  top: 50%;
  margin-top: -8px;
  font-size: 10px;
  line-height: 1.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-style: normal;
  color: #fff;
}
.secondary-nav__list .no-mega-menu li {
  position: relative;
  margin: 0;
  padding: 0;
}
.secondary-nav__list .no-mega-menu li a {
  display: block;
  font-family: "Exo 2", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-style: normal;
  font-size: 11px;
  color: #323150;
  text-align: left;
  line-height: 1.5em;
  padding: 16px 30px;
  letter-spacing: normal;
  border-bottom: 1px solid #3c3b5b;
  transition: background-color 0.3s ease;
}
.secondary-nav__list .no-mega-menu li a:hover {
  color: #323150;
  background-color: #323150;
}
.secondary-nav__list .no-mega-menu li:last-child > a {
  border-bottom: none;
}

.secondary-nav__list li:hover .main-nav__sub {
  display: block;
}

/* Submenu */
.secondary-nav__list {
  /* 2nd Submenu */
  /* 3rd Submenu */
}
.secondary-nav__list .main-nav__sub-0 li {
  position: relative;
  padding: 0;
  margin: 0;
  display: block;
}
.secondary-nav__list .main-nav__sub-0 li:hover .main-nav__sub-1 {
  display: block;
  opacity: 1;
  list-style: none;
  padding: 0;
  background-color: #383759;
}
.secondary-nav__list .main-nav__sub-1 {
  min-width: 240px;
  border: solid 1px #3c3b5b;
  position: absolute;
  left: 100%;
  top: -1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  transform-origin: 0% 0%;
  transition: transform 0.4s, opacity 0.4s;
}
.secondary-nav__list .main-nav__sub-1 li:hover .main-nav__sub-2 {
  opacity: 1;
  list-style: none;
  padding: 0;
  border: solid 1px #3c3b5b;
  background-color: #383759;
}
.secondary-nav__list .main-nav__sub-2 {
  min-width: 240px;
  position: absolute;
  left: 100%;
  top: -1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  transform-origin: 0% 0%;
  transition: transform 0.4s, opacity 0.4s;
}

@media only screen and (min-width: 992px) {
  .secondary-nav__list li:hover > .main-nav__sub-0,
  .secondary-nav__list .main-nav__sub-0 li:hover > .main-nav__sub-1,
  .secondary-nav__list .main-nav__sub-1 li:hover > .main-nav__sub-2 {
    display: block;
  }
  .secondary-nav__list li.has-mega-menu:hover > .megamenu-item {
    display: flex;
  }
}
/* Navigation - Mobile */
@media only screen and (max-width: 991px) {
  .secondary-nav {
    margin: 0;
    z-index: 103;
    background-color: #fff;
  }
  .secondary-nav .secondary-nav__list {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
  }
  .secondary-nav .secondary-nav__list > li > a::before {
    top: 0;
    bottom: 0;
    width: 4px;
    height: auto;
  }
  .secondary-nav .secondary-nav__list > li > a .highlight {
    color: #3ffeca;
  }
  .secondary-nav .secondary-nav__list > li.menu-item-has-children > a::after {
    display: none;
  }
  .secondary-nav__list {
    /* Mobile click to drop arrow */
    /* 2nd Level Submenu */
    /* 3rd Level Submenu */
  }
  .secondary-nav__list li:hover .main-nav__sub-0 {
    display: none;
  }
  .secondary-nav__list li:hover .main-nav__sub-0 .main-nav__sub-1 {
    display: none;
  }
  .secondary-nav__list .main-nav__sub-0 li.menu-item-has-children > a::after {
    display: none;
  }
  .secondary-nav__list .main-nav__sub-0 .main-nav__sub-1 li:hover .main-nav__sub-2 {
    display: none;
  }
  .secondary-nav__list .main-nav__toggle {
    width: 30px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    top: 8px;
    right: 10px;
    display: block;
    cursor: pointer;
    z-index: 1;
    transition: all 0.4s ease;
    text-align: center;
  }
  .secondary-nav__list .main-nav__toggle::before {
    display: block;
    content: "\f107";
    font-size: 10px;
    line-height: 30px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    color: #323150;
  }
  .secondary-nav__list .main-nav__toggle-2 {
    width: 20px;
    height: 20px;
    line-height: 20px;
    position: absolute;
    top: 3px;
    right: 15px;
    display: block;
    cursor: pointer;
    z-index: 1;
    transition: all 0.4s ease;
    text-align: center;
  }
  .secondary-nav__list .main-nav__toggle-2::before {
    display: block;
    content: "\f107";
    font-size: 10px;
    line-height: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    color: #323150;
  }
  .secondary-nav__list .main-nav__toggle--rotate {
    transform: rotate(180deg);
  }
  .secondary-nav__list .main-nav__sub-1 {
    width: 100%;
    position: static;
    left: 100%;
    top: 0;
    display: none;
    margin: 0;
    padding: 0 !important;
    border: solid 0px;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .secondary-nav__list .main-nav__sub-1 li {
    margin: 0;
    padding: 0;
    position: relative;
  }
  .secondary-nav__list .main-nav__sub-1 li a {
    display: block;
    padding: 10px 25px 10px 25px;
  }
  .secondary-nav__list .main-nav__sub-1 li:hover > a {
    color: #fff;
  }
  .secondary-nav__list .main-nav__sub-2 {
    width: 100%;
    position: static;
    left: 100%;
    top: 0;
    display: none;
    margin: 0;
    padding: 0 !important;
    border: solid 0px;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .secondary-nav__list .main-nav__sub-2 li {
    margin: 0;
    padding: 0;
    position: relative;
  }
  .secondary-nav__list .main-nav__sub-2 li a {
    display: block;
    padding: 10px 25px 10px 25px;
  }
  .secondary-nav__list .main-nav__sub-2 li:hover > a {
    color: #fff;
  }
  .secondary-nav .secondary-nav__list {
    border-top: 1px solid #e4e7ed;
    display: none;
  }
  .secondary-nav .secondary-nav__list > li {
    width: 100%;
    display: block;
    float: none;
    border-right: none;
    background-color: transparent;
    position: relative;
    white-space: inherit;
  }
  .secondary-nav .secondary-nav__list > li > a {
    padding: 16px 30px;
    font-size: 11px;
    text-align: left;
    border-right: solid 0px;
    background-color: transparent;
    color: #323150;
    line-height: 1.5em;
    border-bottom: 1px solid #e4e7ed;
    position: static;
  }
  .secondary-nav .secondary-nav__list li.menu-item-has-children > a::after {
    transform: none;
    top: 13px;
    content: "\f107";
    font-size: 10px;
    line-height: 1.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    color: #fff;
    font-style: normal;
  }
  .secondary-nav__list .main-nav__sub-0 {
    transform: none;
    opacity: 1;
    display: none;
    position: relative;
    top: 0;
    background-color: #e4e7ed;
    border: none;
    padding: 15px 0;
    visibility: visible;
  }
  .secondary-nav__list .main-nav__sub-0 > li > a {
    line-height: 1.5em;
    font-size: 10px;
    padding: 7px 20px 7px 40px;
    color: #323150;
    transition: color 0.3s ease;
    border-bottom: none !important;
    display: block;
    text-align: left;
    font-family: "Exo 2", sans-serif;
    text-transform: uppercase;
  }
  .secondary-nav__list .main-nav__sub-0 > li > a:hover {
    color: #323150;
    background-color: transparent !important;
  }
  .secondary-nav__list .main-nav__sub-0 > li:hover > a {
    background-color: transparent;
    color: #323150;
  }
  .secondary-nav__list .main-nav__sub-0 > li:hover .main-nav__sub-1 {
    background-color: transparent;
  }
  .secondary-nav__list .main-nav__sub-0 > li [class*=main-nav__sub-] {
    padding: 15px 0;
    background-color: transparent;
    border: none;
  }
  .secondary-nav__list .main-nav__sub-0 > li [class*=main-nav__sub-] li a {
    line-height: 1.5em;
    font-size: 10px;
    padding: 7px 20px 7px 50px;
    color: #323150;
    transition: color 0.3s ease;
    border-bottom: none;
  }
  .secondary-nav__list .main-nav__sub-0 > li [class*=main-nav__sub-] li a:hover {
    color: #323150;
    background-color: transparent;
  }
  .secondary-nav__list .main-nav__sub-0 > li [class*=main-nav__sub-] li .main-nav__sub-2 li a {
    padding-left: 60px;
  }
  .secondary-nav__list .has-mega-menu .main-nav__sub-0 {
    background-color: #e4e7ed;
    color: #323150;
    display: none;
    position: relative;
    top: 0;
    padding: 15px 0;
    border: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
  }
  .secondary-nav__list .has-mega-menu .main-nav__sub-0 .megamenu-item:not(.menu-item-has-children) {
    padding-bottom: 15px;
  }
  .secondary-nav__list .has-mega-menu .main-nav__sub-0 .megamenu-item {
    padding-left: 30px;
    padding-right: 30px;
  }
  .secondary-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__toggle-2 {
    top: 8px;
  }
  .secondary-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__title {
    color: #fff;
    font-size: 11px;
    padding: 10px 0;
    margin: 0;
  }
  .secondary-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__sub-1 {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 13px;
  }
  .secondary-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__sub-1 > li > a {
    padding: 7px 20px 7px 10px;
    line-height: 1.5em;
    font-size: 10px;
    color: #323150;
  }
  .secondary-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__sub-1 > li > a:hover {
    color: #323150;
  }
  .secondary-nav__list li:hover .main-nav__megamenu {
    display: none;
    position: relative;
    top: 0;
  }
  /* Animation None */
  .secondary-nav__list li > .main-nav__sub-0,
  .secondary-nav__list li:hover > .main-nav__sub-0,
  .main-nav__sub-0 li > .main-nav__sub-1,
  .main-nav__sub-0 li:hover > .main-nav__sub-1,
  .main-nav__sub-1 li > .main-nav__sub-2,
  .main-nav__sub-1 li:hover > .main-nav__sub-2 {
    transform: none;
    visibility: visible;
  }
  .main-nav__sub-0 li:hover > .main-nav__sub-1,
  .main-nav__sub-1 li > .main-nav__sub-2,
  .main-nav__sub-1 li:hover > .main-nav__sub-2 {
    opacity: 1;
  }
}
/*
// #Hero Unit
// --------------------------------------------------
*/
.hero-unit {
  background-color: #27313b;
  overflow: hidden;
}

.hero-unit__container {
  height: 400px;
  position: relative;
}
@media (min-width: 1200px) {
  .hero-unit__container {
    height: 640px;
  }
}

.hero-unit__content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
}
@media (min-width: 992px) {
  .hero-unit__content {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .hero-unit__content--right-center {
    left: auto;
  }
}

@media (min-width: 992px) {
  .hero-unit__content--center-center {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-unit__title {
  color: #fff;
  margin-bottom: 0.75em;
  font-size: 30px;
}
@media (min-width: 1200px) {
  .hero-unit__title {
    font-size: 64px;
    margin-bottom: 0.25em;
  }
}

.hero-unit__subtitle {
  color: #fff;
  margin-bottom: 0.25em;
  font-size: 12px;
}
@media (min-width: 992px) {
  .hero-unit__subtitle {
    font-size: 18px;
  }
}

.hero-unit__desc {
  margin-bottom: 3em;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .hero-unit__desc {
    width: 60%;
  }
}
@media (min-width: 992px) {
  .hero-unit__desc {
    width: 80%;
  }
}
@media (min-width: 1199px) {
  .hero-unit__desc {
    width: 70%;
  }
}

.hero-unit__btn.btn.btn-inverse.btn-outline {
  color: #fff;
}

.hero-unit__decor {
  display: block;
  color: #ffdc11;
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .hero-unit__decor {
    margin-bottom: 11px;
  }
}
.hero-unit__decor .fa {
  margin: 0 6px;
}

.hero-unit__img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 50%;
}
.hero-unit__img img {
  max-height: 100%;
}
@media (max-width: 991px) {
  .hero-unit__img {
    display: none;
  }
}

/*
// #Hero Slider
// --------------------------------------------------
*/
.hero-slider-wrapper {
  position: relative;
  z-index: 0;
}

.hero-slider {
  overflow: hidden;
  background-color: #27313b;
}

.hero-slider,
.hero-slider .hero-slider__item {
  height: 320px;
}
@media (min-width: 768px) {
  .hero-slider,
  .hero-slider .hero-slider__item {
    height: 480px;
  }
}
@media (min-width: 992px) {
  .hero-slider,
  .hero-slider .hero-slider__item {
    height: 640px;
  }
}
@media (min-width: 1200px) {
  .hero-slider,
  .hero-slider .hero-slider__item {
    height: 720px;
  }
}

.posts--slider-top-news .hero-slider__item {
  height: 320px;
}
@media (min-width: 768px) {
  .posts--slider-top-news .hero-slider__item {
    height: 480px;
  }
}
@media (min-width: 992px) {
  .posts--slider-top-news .hero-slider__item {
    height: 640px;
  }
}
@media (min-width: 1200px) {
  .posts--slider-top-news .hero-slider__item {
    height: 660px;
  }
}

.hero-slider__item {
  position: relative;
}

.hero-slider__item-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.hero-slider__item-container {
  display: block;
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.hero-slider__item-container .post__meta-block--top {
  padding-bottom: 0;
}
.hero-slider__item-container .posts__title .highlight {
  color: #3ffeca;
}

.hero-slider__item-link {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

.hero-slider-thumbs-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
@media (max-width: 991px) {
  .hero-slider-thumbs-wrapper {
    display: none;
  }
}

.hero-slider-thumbs .posts__title {
  color: #fff;
  font-size: 15px;
}
.hero-slider-thumbs .posts__cat {
  margin-bottom: 18px;
}
.hero-slider-thumbs .posts__cat-label {
  font-size: 10px;
}
.hero-slider-thumbs .posts__inner {
  padding: 0 30% 37px 0;
}
.hero-slider-thumbs .posts__date,
.hero-slider-thumbs .posts__comments {
  color: rgba(255, 255, 255, 0.6);
}

.hero-slider-thumbs__item {
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
.hero-slider-thumbs__item.slick-current {
  opacity: 1;
}
.hero-slider-thumbs__item:hover {
  cursor: pointer;
}

.hero-slider--overlay-on .hero-slider__item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.6;
  z-index: 2;
}

rs-dotted.threexthree {
  background-image: url("../../assets/images/gridtile_4x4.gif");
}

.metis.tparrows:hover::before {
  color: #fff !important;
}

.label--revslider {
  font-size: 10px !important;
  line-height: 21px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Pushy Panel */
.pushy-panel__toggle {
  width: 62px;
  min-width: 62px;
  height: 62px;
  line-height: 62px;
  background-color: #f92552;
  vertical-align: middle;
  margin-left: 27px;
  position: relative;
}
@media (min-width: 992px) {
  .pushy-panel__toggle {
    display: inline-block;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pushy-panel__toggle {
    margin-left: 18px;
  }
}
.pushy-panel__toggle:hover .pushy-panel__line {
  transform: rotate(180deg);
}
.pushy-panel__toggle:hover .pushy-panel__line::before, .pushy-panel__toggle:hover .pushy-panel__line::after {
  width: 50%;
}
.pushy-panel__toggle:hover .pushy-panel__line::before {
  top: 0;
  transform: translateX(-3px) translateY(1px) rotate(-45deg);
}
.pushy-panel__toggle:hover .pushy-panel__line::after {
  bottom: 0;
  transform: translateX(-3px) translateY(-1px) rotate(45deg);
}

.pushy-panel__line {
  top: 50%;
  left: 23px;
  right: 24px;
  width: 16px;
  transition: transform 0.3s;
}
.pushy-panel__line, .pushy-panel__line::before, .pushy-panel__line::after {
  display: block;
  position: absolute;
  height: 2px;
  background-color: #fff;
}
.pushy-panel__line::before, .pushy-panel__line::after {
  content: "";
  width: 100%;
}
.pushy-panel__line::before {
  top: -5px;
  transform-origin: top left;
  transition: transform 0.3s, width 0.3s, top 0.3s;
}
.pushy-panel__line::after {
  bottom: -5px;
  transform-origin: bottom left;
  transition: transform 0.3s, width 0.3s, bottom 0.3s;
}

.pushy-panel {
  position: fixed;
  z-index: 1000;
  inset-inline-end: 0;
  transform: translateX(100%);
  top: 0;
  bottom: 0;
  width: 380px;
  max-width: 100%;
  text-align: left;
  transition: all 0.4s ease-in-out;
}
body.admin-bar .pushy-panel {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .pushy-panel {
    top: 46px;
  }
}
.site-wrapper--has-overlay-pushy .pushy-panel {
  transform: translateX(0);
}
.pushy-panel .posts--simple-list .posts__title + .posts__date {
  margin-top: 0.4em;
}
.pushy-panel .posts--simple-list .posts__item {
  margin-bottom: 44px;
}
.pushy-panel .posts--simple-list .posts__excerpt {
  overflow: hidden;
  clear: both;
}
.pushy-panel .posts--simple-list--lg .posts__item {
  margin-bottom: 44px !important;
}

.pushy-panel--active {
  right: 0;
}

.pushy-panel__inner {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: relative;
  overflow-y: scroll;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.pushy-panel__back-btn {
  display: block;
  width: 49px;
  height: 44px;
  position: absolute;
  right: 32px;
  top: 22px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 10'%3E%3Cpath fill='%2331404b' d='M14.000,6.000 L4.586,6.000 L6.414,7.828 L5.000,9.242 L0.757,5.000 L2.172,3.585 L2.172,3.586 L5.000,0.757 L6.414,2.171 L4.586,4.000 L14.000,4.000 L14.000,6.000 Z'/%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 13px 8px;
}
.pushy-panel__back-btn:hover {
  cursor: pointer;
}

.pushy-panel__header {
  padding: 28px 30px 60px 30px;
  text-align: center;
}

.pushy-panel__content {
  padding: 0 20px;
}
@media (min-width: 992px) {
  .pushy-panel__content {
    padding: 0 40px;
  }
}

.pushy-panel__logo-img {
  width: 94px;
  height: auto;
}

.pushy-panel--dark .pushy-panel__inner {
  background-color: #383759;
}
.pushy-panel--dark .widget--side-panel .widget__title {
  color: #fff;
}
.pushy-panel--dark .btn.btn-outline {
  border-color: #3f4653;
  color: #fff;
}
.pushy-panel--dark .posts__title a {
  color: #fff;
}
.pushy-panel--dark .posts__title a:hover {
  color: #fff;
}
.pushy-panel--dark .pushy-panel__back-btn {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 10'%3E%3Cpath fill='%23ffffff' d='M14.000,6.000 L4.586,6.000 L6.414,7.828 L5.000,9.242 L0.757,5.000 L2.172,3.585 L2.172,3.586 L5.000,0.757 L6.414,2.171 L4.586,4.000 L14.000,4.000 L14.000,6.000 Z'/%3E%3C/svg%3E");
}

.pushy-panel__alert {
  margin: 6em 0 0 0;
}

/*
// #Page Heading
// --------------------------------------------------
*/
.page-heading {
  background-color: #323150;
  background-image: url("../images/football/page-heading.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  text-align: center;
  padding: 50px 0;
  position: relative;
}
@media (min-width: 992px) {
  .page-heading {
    padding: 67px 0 63px 0;
  }
}
.page-heading::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: repeating-radial-gradient(at 50% 50%, #000, #000 1px, transparent 1px, transparent 4px);
  background-size: 5px 5px;
  background-position: 100% 0;
  background-repeat: repeat;
  opacity: 1;
}
.page-heading.effect-duotone .container {
  position: relative;
  z-index: 3;
}

.page-heading--no-bg::before {
  background-image: none;
  background-color: transparent;
}

.page-heading--horizontal {
  text-align: inherit;
}
@media (max-width: 767px) {
  .page-heading--horizontal .row {
    display: block;
    text-align: center;
  }
}
.page-heading--horizontal .page-header__desc {
  padding-left: 0;
  padding-right: 0;
}

.page-heading__title {
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.02em;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 0;
  font-style: normal;
  font-family: "Exo 2", sans-serif;
}
@media (min-width: 992px) {
  .page-heading__title {
    font-size: 36px;
  }
}
.page-heading__title .highlight {
  color: #3ffeca;
}

.page-header__desc {
  line-height: 1.5em;
  padding: 20px 10px 0 10px;
}
.page-header__desc p:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .page-heading--post-3 {
    padding: 67px 0 63px 0;
  }
}

.page-heading--overlay {
  position: relative;
  overflow: hidden;
}
.page-heading--overlay::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: none;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 1;
}

.page-heading--duotone {
  position: relative;
  overflow: hidden;
}
.page-heading--duotone::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: none;
  background-color: transparent;
}
.page-heading--duotone .container {
  position: relative;
  z-index: 3;
}

.page-heading--simple {
  height: 240px;
}
.page-heading--simple::before {
  display: none;
}
@media (min-width: 768px) {
  .page-heading--simple {
    height: 320px;
  }
}
@media (min-width: 992px) {
  .page-heading--simple {
    height: 360px;
  }
}
@media (min-width: 1200px) {
  .page-heading--simple {
    height: 420px;
  }
}

/*
// #Content
// --------------------------------------------------
*/
.site-content,
.section {
  padding: 30px 0;
}
@media (min-width: 992px) {
  .site-content,
  .section {
    padding: 60px 0;
  }
}

.section--bg1 {
  background-color: #323150;
}

.section--no-paddings {
  padding: 0;
}
@media (min-width: 992px) {
  .section--no-paddings {
    padding: 0;
  }
}

/*
// #Footer
// --------------------------------------------------
*/
.footer {
  font-size: 13px;
  line-height: 22px;
  color: #9e9caa;
}

/* Footer Widgets */
.footer-widgets {
  background: #282840;
  position: relative;
}
.footer-widgets [class^=col-]:last-child .widget--footer {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .footer-widgets.effect-duotone {
    background-image: none;
  }
}
.footer-widgets.effect-duotone::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #282840;
}
@supports (position: -ms-page) {
  .footer-widgets.effect-duotone::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #323150;
    opacity: 0.9;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .footer-widgets.effect-duotone::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #323150;
    opacity: 0.9;
  }
}

.footer-widgets--overlay::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #323150;
  opacity: 0.8;
}

.footer-widgets__inner {
  padding: 30px 0;
  position: relative;
  z-index: 4;
}
@media (min-width: 768px) {
  .footer-widgets__inner {
    padding: 60px 0 70px;
  }
}
@media (min-width: 992px) {
  .footer-widgets__inner {
    padding: 80px 0 96px;
    padding: 55px 0 96px;
  }
}

.footer-col-inner {
  padding: 0 7px;
}

/* Footer Logo */
.footer-logo {
  padding: 0 0 50px 0;
  text-align: center;
  width: 40%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .footer-logo {
    width: auto;
    margin: 0;
    padding: 30px 0;
  }
}

.footer-logo__img {
  max-width: 100%;
  height: auto;
}

.footer-logo--has-txt {
  text-align: left;
  width: 100%;
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .footer-logo--has-txt {
    padding: 0 0 25px 0;
    margin-top: -25px;
  }
}
.footer-logo--has-txt .footer-logo__img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 16px;
}
.footer-logo--has-txt .footer-logo__heading {
  display: inline-block;
  vertical-align: middle;
}
.footer-logo--has-txt .footer-logo__txt {
  margin-bottom: 0;
  color: #fff;
}
.footer-logo--has-txt .footer-logo__tagline {
  display: block;
  color: #9e9caa;
  font-size: 12px;
  font-size: 10px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-style: italic;
  color: #7f7e8c;
}
.footer-logo--has-txt + .footer-col-inner .widget__title {
  display: none;
}

/* Footer Secondary */
.footer-secondary {
  background-color: #282840;
}

@media (min-width: 768px) {
  .footer-secondary--has-decor {
    background-color: #f92552;
  }
}
.footer-secondary--has-decor .footer-secondary__inner {
  border-top: none;
  background-color: #282840;
  padding: 12px 0 26px 0;
}
@media (min-width: 992px) {
  .footer-secondary--has-decor .footer-secondary__inner {
    padding: 12px 0 26px 0;
  }
}
.footer-secondary--has-decor .footer-secondary__inner::before, .footer-secondary--has-decor .footer-secondary__inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  background-color: #f92552;
  display: none;
}
@media (min-width: 768px) {
  .footer-secondary--has-decor .footer-secondary__inner::before, .footer-secondary--has-decor .footer-secondary__inner::after {
    display: block;
  }
}
@media (max-width: 991px) {
  .footer-secondary--has-decor .footer-secondary__inner::before, .footer-secondary--has-decor .footer-secondary__inner::after {
    width: 80px;
  }
}
.footer-secondary--has-decor .footer-secondary__inner::before {
  left: -20px;
  transform: skew(20deg);
}
.footer-secondary--has-decor .footer-secondary__inner::after {
  right: -20px;
  transform: skew(-20deg);
}

.footer-secondary__inner {
  background-color: #282840;
  padding: 24px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 992px) {
  .footer-secondary__inner {
    padding: 50px 0;
  }
}

.footer-nav {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
  font-family: "Exo 2", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2em;
  font-weight: bold;
}
@media (max-width: 479px) {
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.footer-nav .menu-item {
  display: inline-block;
  padding: 0 2px;
}
@media (max-width: 479px) {
  .footer-nav .menu-item {
    padding: 0.25em 0;
  }
}
@media (min-width: 480px) {
  .footer-nav .menu-item {
    padding: 0 10px;
  }
}
@media (min-width: 768px) {
  .footer-nav .menu-item {
    padding: 0 16px;
  }
}
@media (min-width: 992px) {
  .footer-nav .menu-item {
    padding: 0 24px;
  }
}
@media (min-width: 1200px) {
  .footer-nav .menu-item {
    padding: 0 32px;
  }
}
.footer-nav .menu-item > a {
  color: #fff;
  display: inline-block;
  padding: 0.5em;
  transition: color 0.2s ease;
}
.footer-nav .menu-item > a:hover {
  color: #3ffeca;
}
@media (max-width: 479px) {
  .footer-nav--condensed .footer-nav .menu-item {
    display: inline-block;
    padding: 0;
    text-align: center;
    width: auto;
    float: none;
  }
}
@media (min-width: 480px) {
  .footer-nav--condensed .footer-nav .menu-item {
    padding: 0 8px;
  }
}
@media (min-width: 768px) {
  .footer-nav--condensed .footer-nav .menu-item {
    padding: 0 10px;
  }
}
@media (min-width: 992px) {
  .footer-nav--condensed .footer-nav .menu-item {
    padding: 0 12px;
  }
}
@media (min-width: 1200px) {
  .footer-nav--condensed .footer-nav .menu-item {
    padding: 0 15px;
  }
}

.footer-nav--right {
  text-align: center;
}
@media (min-width: 992px) {
  .footer-nav--right {
    text-align: right;
  }
  .footer-nav--right .menu-item {
    padding-right: 0 !important;
  }
}

.footer-nav--sm {
  font-size: 10px;
}

/* Footer Sponsors */
.sponsors {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 4;
}
.footer-widgets__inner + .sponsors-container .sponsors::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 8px;
  right: 8px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .sponsors {
    margin-top: -16px;
    flex-wrap: nowrap;
    padding: 35px 0 47px 0;
  }
}
@media (min-width: 992px) {
  .sponsors {
    margin-top: -24px;
  }
}

.sponsors-title {
  font-size: 9px;
  line-height: 1.2em;
  color: #fff;
  margin: 0 0 12px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .sponsors-title {
    margin: 0 25px 0 0;
    text-align: right;
  }
}

.sponsors-logos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .sponsors-logos {
    flex-wrap: wrap;
  }
}

.sponsors__item {
  text-align: center;
}
@media (max-width: 1199px) {
  .sponsors__item {
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .sponsors__item {
    padding: 10px;
  }
}
@media (min-width: 992px) {
  .sponsors__item {
    margin: 0 12px;
  }
}
@media (min-width: 1200px) {
  .sponsors__item {
    margin: 0 25px;
  }
}
.sponsors__item img {
  opacity: 0.2;
  transition: opacity 0.3s ease;
}
.sponsors__item img:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .sponsors--default .sponsors__item {
    width: 33.3%;
  }
}
@media (max-width: 479px) {
  .sponsors--default .sponsors__item {
    width: 50%;
  }
}

.sponsors--carousel .slick-track {
  display: flex !important;
  align-items: center !important;
}
.sponsors--carousel .sponsors__item img {
  display: inline-block;
}

/* Footer Info */
.footer-info {
  background-color: #282840;
}
@media (min-width: 992px) {
  .footer-info .footer-logo--has-txt {
    width: auto;
    padding: 0;
    margin-top: 0;
    margin-right: 30px;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .footer-info .footer-logo--has-txt {
    margin-right: 58px;
  }
}
.footer-info .footer-logo--has-txt .footer-logo__img {
  margin-right: 8px;
}
.footer-info .footer-logo--has-txt .footer-logo__txt {
  font-size: 16px;
  text-transform: uppercase;
}

.footer-info__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 15px;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .footer-info__inner {
    padding: 44px 0 50px 0;
    flex-wrap: nowrap;
  }
}

/* Footer Copyright */
.footer-copyright {
  font-size: 10px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #9e9caa;
  text-align: center;
}
@media (min-width: 992px) {
  .footer-copyright {
    text-align: left;
  }
}
.footer-copyright a {
  color: #fff;
  transition: color 0.2s ease;
}
.footer-copyright a:hover {
  color: #3ffeca;
}

/* Footer Social */
.footer-social {
  background: #282840;
}

.footer-social__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 25px 0 20px 0;
  margin: 0;
}

.footer-social__item {
  margin: 0;
}
@media (min-width: 768px) {
  .footer-social__item {
    margin: 0 10px;
  }
}
@media (min-width: 992px) {
  .footer-social__item {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .footer-social__item {
    margin: 0 15px;
  }
}

.footer-social__link {
  display: flex;
  align-items: center;
  padding: 5px 10px 10px 10px;
}

.footer-social__icon {
  font-size: 22px;
}
.footer-social__icon svg {
  display: inline-block;
  vertical-align: top;
  width: 18px;
  height: 18px;
  fill: #0fe3ab;
}

.footer-social__txt {
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Exo 2", sans-serif;
  display: none;
}
@media (min-width: 992px) {
  .footer-social__txt {
    display: block;
    padding: 0 0 0 15px;
  }
}

.footer-social__name {
  display: block;
  font-size: 12px;
  line-height: 1.2em;
  padding-bottom: 0.25em;
  color: #fff;
}

.footer-social__user {
  display: block;
  font-size: 10px;
  line-height: 1.2em;
  font-style: italic;
  color: #a59cae;
}

/*--------------------------------------------------------------
Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  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 */
}

/*--------------------------------------------------------------
Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin: 0 auto;
}

.wp-caption-text {
  text-align: center;
}

.wp-caption .wp-caption-text {
  margin: 0;
}

/*--------------------------------------------------------------
Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  font-style: normal;
}

/*--------------------------------------------------------------
Images
--------------------------------------------------------------*/
.alignleft {
  float: left;
  margin: 0 30px 20px 0;
}

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

.aligncenter {
  display: block;
  margin: 0 auto 20px auto;
  clear: both;
}

.aligncenter.wp-caption {
  margin: 0 auto 20px auto;
  max-width: 100%;
}

.alignnone {
  margin: 0 0 20px 0;
  clear: both;
}

.post--style-5 .wp-block-image.size-full {
  display: block !important;
}
@media (min-width: 992px) {
  .post--style-5 .wp-block-image.size-full {
    margin: 0 -80px 0 -80px;
    max-width: calc(100% + 160px) !important;
  }
}
@media (min-width: 1200px) {
  .post--style-5 .wp-block-image.size-full {
    margin: 0 -100px 0 -100px;
    max-width: calc(100% + 200px) !important;
  }
}
.post--style-5 .wp-block-image.size-full figcaption {
  text-align: center;
}
@media (min-width: 992px) {
  .post--style-5 .wp-block-image.size-full figcaption {
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
  }
}
.post--style-7 .post__content--inner-left .wp-block-image.size-full {
  display: block !important;
}
@media (min-width: 992px) {
  .post--style-7 .post__content--inner-left .wp-block-image.size-full {
    margin-left: -80px;
    max-width: calc(100% + 80px) !important;
  }
}
@media (min-width: 1200px) {
  .post--style-7 .post__content--inner-left .wp-block-image.size-full {
    margin-left: -100px;
    max-width: calc(100% + 100px) !important;
  }
}

/*--------------------------------------------------------------
Video
--------------------------------------------------------------*/
.wp-embed-aspect-16-9 .wp-block-embed__wrapper,
.jetpack-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: 0;
}
.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,
.wp-embed-aspect-16-9 .wp-block-embed__wrapper object,
.wp-embed-aspect-16-9 .wp-block-embed__wrapper embed,
.jetpack-video-wrapper iframe,
.jetpack-video-wrapper object,
.jetpack-video-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
Post Paginated
--------------------------------------------------------------*/
/*--------------------------------------------------------------
Post Password Protected
--------------------------------------------------------------*/
.form-post-pass-protected .form-group + p {
  display: inline;
}

/*--------------------------------------------------------------
Gallery
--------------------------------------------------------------*/
.gallery {
  /* Gallery Columns */
}
.gallery .gallery-item {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  margin: 0 0 1em;
  padding: 0 1em 0 0;
  width: 50%;
}
.gallery .gallery-columns-1 .gallery-item {
  width: 100%;
}
.gallery .gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery .gallery-item a,
.gallery .gallery-item a:hover,
.gallery .gallery-item a:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: none;
  display: inline-block;
  max-width: 100%;
}
.gallery .gallery-item a img {
  display: block;
  transition: filter 0.2s ease-in;
  backface-visibility: hidden;
}
.gallery .gallery-item a:hover img,
.gallery .gallery-item a:focus img {
  -webkit-filter: opacity(60%);
  filter: opacity(60%);
}
.gallery .gallery-caption {
  display: block;
  text-align: left;
  padding: 0 10px 0 0;
  margin-bottom: 0;
}
@media (min-width: 480px) {
  .gallery .gallery-item {
    max-width: 25%;
  }
  .gallery.gallery-columns-1 .gallery-item {
    max-width: 100%;
  }
  .gallery.gallery-columns-2 .gallery-item {
    max-width: 50%;
  }
  .gallery.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
  }
  .gallery.gallery-columns-4 .gallery-item {
    max-width: 25%;
  }
}
@media (min-width: 768px) {
  .gallery.gallery-columns-5 .gallery-item {
    max-width: 20%;
  }
  .gallery.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
  }
  .gallery.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
  }
  .gallery.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
  }
  .gallery.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
  }
}

/*
// #Blog
// --------------------------------------------------
*/
/*
// #Posts
// --------------------------------------------------
*/
ul.posts {
  list-style-type: none;
  padding: 0;
}
ul.posts:not(.post-grid) {
  margin: 0;
}

.posts__item {
  margin-bottom: 1em;
}
.posts__item:last-child {
  margin-bottom: 0;
}

.posts__cat {
  display: block;
  overflow: hidden;
  margin-bottom: 4px;
  padding-right: 5px;
  z-index: 1;
}

.posts__cat-label {
  background-color: #f92552;
  display: block;
  float: left;
  margin-bottom: 4px;
  font-style: normal;
}
.posts__cat-label + .posts__title {
  margin-top: 0.55em;
}
.posts__cat-label + .posts__cat-label {
  margin-left: 0.5em !important;
}

.posts__item--category-1 .posts__cta {
  background-color: #f92552;
}
.posts__item--category-1 .posts__title--color-hover > a:hover {
  color: #f92552;
}
.posts__item--category-1 .posts__title > a:hover {
  color: #f92552;
}
.posts__item--category-1 .posts__thumb--hover::before {
  background-color: #f92552;
}

.posts__item--category-2 .posts__cta {
  background-color: #9e69ee;
}
.posts__item--category-2 .posts__title--color-hover > a:hover {
  color: #9e69ee;
}
.posts__item--category-2 .posts__title > a:hover {
  color: #9e69ee;
}
.posts__item--category-2 .posts__thumb--hover::before {
  background-color: #9e69ee;
}

.posts__item--category-3 .posts__cta {
  background-color: #0fe3ab;
}
.posts__item--category-3 .posts__title--color-hover > a:hover {
  color: #0fe3ab;
}
.posts__item--category-3 .posts__title > a:hover {
  color: #0fe3ab;
}
.posts__item--category-3 .posts__thumb--hover::before {
  background-color: #0fe3ab;
}

.posts__item--category-4 .posts__cta {
  background-color: #f92552;
}
.posts__item--category-4 .posts__title--color-hover > a:hover {
  color: #f92552;
}
.posts__item--category-4 .posts__title > a:hover {
  color: #f92552;
}
.posts__item--category-4 .posts__thumb--hover::before {
  background-color: #f92552;
}

.posts__item--category-5 .posts__cta {
  background-color: #f92552;
}
.posts__item--category-5 .posts__title--color-hover > a:hover {
  color: #f92552;
}
.posts__item--category-5 .posts__title > a:hover {
  color: #f92552;
}
.posts__item--category-5 .posts__thumb--hover::before {
  background-color: #f92552;
}

.posts__item--category-6 .posts__cta {
  background-color: #f92552;
}
.posts__item--category-6 .posts__title--color-hover > a:hover {
  color: #f92552;
}
.posts__item--category-6 .posts__title > a:hover {
  color: #f92552;
}
.posts__item--category-6 .posts__thumb--hover::before {
  background-color: #f92552;
}

.posts__item--category-7 .posts__cta {
  background-color: #f92552;
}
.posts__item--category-7 .posts__title--color-hover > a:hover {
  color: #f92552;
}
.posts__item--category-7 .posts__title > a:hover {
  color: #f92552;
}
.posts__item--category-7 .posts__thumb--hover::before {
  background-color: #f92552;
}

.posts__item--category-8 .posts__cta {
  background-color: #f92552;
}
.posts__item--category-8 .posts__title--color-hover > a:hover {
  color: #f92552;
}
.posts__item--category-8 .posts__title > a:hover {
  color: #f92552;
}
.posts__item--category-8 .posts__thumb--hover::before {
  background-color: #f92552;
}

.posts__item--category-9 .posts__cta {
  background-color: #f92552;
}
.posts__item--category-9 .posts__title--color-hover > a:hover {
  color: #f92552;
}
.posts__item--category-9 .posts__title > a:hover {
  color: #f92552;
}
.posts__item--category-9 .posts__thumb--hover::before {
  background-color: #f92552;
}

.posts__item--category-10 .posts__cta {
  background-color: #f92552;
}
.posts__item--category-10 .posts__title--color-hover > a:hover {
  color: #f92552;
}
.posts__item--category-10 .posts__title > a:hover {
  color: #f92552;
}
.posts__item--category-10 .posts__thumb--hover::before {
  background-color: #f92552;
}

.posts__item--category-11 .posts__cta {
  background-color: #f92552;
}
.posts__item--category-11 .posts__title--color-hover > a:hover {
  color: #f92552;
}
.posts__item--category-11 .posts__title > a:hover {
  color: #f92552;
}
.posts__item--category-11 .posts__thumb--hover::before {
  background-color: #f92552;
}

.posts__item--category-12 .posts__cta {
  background-color: #f92552;
}
.posts__item--category-12 .posts__title--color-hover > a:hover {
  color: #f92552;
}
.posts__item--category-12 .posts__title > a:hover {
  color: #f92552;
}
.posts__item--category-12 .posts__thumb--hover::before {
  background-color: #f92552;
}

.posts__cat-label--category-1 {
  background-color: #f92552;
}

.posts__cat-label--category-2 {
  background-color: #9e69ee;
}

.posts__cat-label--category-3 {
  background-color: #0fe3ab;
}

.posts__cat-label--category-4 {
  background-color: #f92552;
}

.posts__cat-label--category-5 {
  background-color: #f92552;
}

.posts__cat-label--category-6 {
  background-color: #f92552;
}

.posts__cat-label--category-7 {
  background-color: #f92552;
}

.posts__cat-label--category-8 {
  background-color: #f92552;
}

.posts__cat-label--category-9 {
  background-color: #f92552;
}

.posts__cat-label--category-10 {
  background-color: #f92552;
}

.posts__cat-label--category-11 {
  background-color: #f92552;
}

.posts__cat-label--category-12 {
  background-color: #f92552;
}

.posts__thumb {
  float: left;
  margin: 0 10px 0 0;
}

.posts__thumb--hover {
  position: relative;
}
.posts__thumb--hover::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: #f92552;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.posts__thumb--hover > a {
  position: relative;
  display: block;
}
.posts__thumb--hover > a::before, .posts__thumb--hover > a::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  overflow: hidden;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
  transition: all 0.3s ease;
}
.posts__thumb--hover > a::before {
  height: 4px;
  width: 18px;
}
.posts__thumb--hover > a::after {
  height: 18px;
  width: 4px;
}
.posts__thumb--hover:hover::before {
  opacity: 0.8;
}
.posts__thumb--hover:hover > a::before, .posts__thumb--hover:hover > a::after {
  transform: translate(-50%, -50%) scale(1);
}

.posts__thumb--overlay-dark {
  position: relative;
}
.posts__thumb--overlay-dark::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: linear-gradient(to bottom, transparent, #000);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.posts__thumb--video {
  position: relative;
}
.posts__thumb--video::before {
  content: "\f04b";
  display: block;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  margin: -30px 0 0 -30px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50% !important;
  color: #fff;
  font-size: 28px;
  text-indent: 4px;
  background-color: rgba(0, 0, 0, 0.8);
  text-rendering: auto;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  pointer-events: none;
  transition: transform 0.3s ease;
}
.posts__thumb--video:hover::before {
  transform: scale(1.1);
}

.posts__thumb--video-sm::before {
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  line-height: 32px;
  font-size: 14px;
  text-indent: 2px;
}

.posts__thumb.h-100 img {
  object-fit: cover;
  object-position: 50% 50%;
}

.posts__title {
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-style: italic;
}
.posts__title + .posts__date {
  margin-top: 0.7em;
}
.posts__title a {
  color: #fff;
  transition: color 0.2s ease-in-out;
}
.posts__title a:hover {
  color: #3ffeca;
}

.posts__date {
  display: inline-block;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  line-height: 1.2em;
}

/* Simple Posts List */
.posts--simple-list .posts__item {
  overflow: hidden;
  margin-bottom: 18px;
}
.card .posts--simple-list .posts__item {
  border-bottom: 1px solid #3c3b5b;
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.posts--simple-list .posts__item:last-child, .card .posts--simple-list .posts__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.card .posts--simple-list .posts__item--card {
  margin-top: -24px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0 !important;
}
.posts--simple-list .posts__item--card .posts__excerpt {
  display: block !important;
  font-size: 14px;
  line-height: 26px;
}
.posts--simple-list .posts__item--card .posts__inner {
  overflow: visible;
}
.card .posts--simple-list.posts--simple-list-numbered .posts__item {
  padding-left: 100px;
}
.card .posts--simple-list.posts--simple-list-numbered .posts__item::before {
  width: 100px;
  text-align: center;
  margin-top: -16px;
}
.card .posts--simple-list.posts--simple-list-numbered .posts__item:last-child::before {
  margin-top: -4px;
}
.card .posts--simple-list.posts--simple-list-numbered .posts__item .posts__title {
  font-size: 14px;
}
.posts--simple-list .posts__inner {
  overflow: hidden;
}
.posts--simple-list .posts__cat-label + .posts__title {
  margin-top: 0.55em;
}
.posts--simple-list .posts__title {
  margin-bottom: 0;
  line-height: 1em;
  font-size: 14px;
}
.widget--footer .posts--simple-list .posts__title {
  font-size: 12px;
  line-height: 1.17em;
  font-style: italic;
}
.widget--footer .posts--simple-list .posts__title > a {
  transition: color 0.2s ease;
}
.widget--footer .posts--simple-list .posts__title > a:not(:hover) {
  color: #fff;
}
.widget--footer .posts--simple-list .posts__title:not(.posts__title--color-hover) > a:hover {
  color: #0fe3ab;
}
.widget--footer .posts--simple-list .posts__title + .posts__date {
  margin-top: 0.25em;
}
.has-mega-menu .posts--simple-list .posts__title {
  font-size: 14px;
}
@media (max-width: 991px) {
  .has-mega-menu .posts--simple-list .posts__title {
    font-size: 12px;
  }
  .has-mega-menu .posts--simple-list .posts__title > a {
    color: #fff;
  }
}
@media (min-width: 992px) {
  .has-mega-menu .posts--simple-list .posts__title > a {
    color: #fff;
  }
}
.posts--simple-list .posts__thumb {
  border-radius: 4px;
}
.posts--simple-list .posts__thumb::before {
  border-radius: 4px;
}
.posts--simple-list .posts__thumb img {
  border-radius: 4px;
}
.posts--simple-list .posts__date,
.posts--simple-list .posts__comments {
  font-size: 10px;
  line-height: 1.2em;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 991px) {
  .has-mega-menu .posts--simple-list .posts__date,
  .has-mega-menu .posts--simple-list .posts__comments {
    font-size: 8px;
    font-weight: 800;
  }
}
.widget--footer .posts--simple-list .posts__date,
.widget--footer .posts--simple-list .posts__comments {
  font-size: 9px;
  font-size: 10px;
}
.posts--simple-list .posts__comments i {
  font-size: 12px;
  margin-right: 3px;
  margin-left: 1px;
  display: inline-block;
  vertical-align: middle;
}
.widget--footer .posts--simple-list .posts__comments {
  min-width: 57px;
}
.posts--simple-list .posts__excerpt {
  margin-top: 6px;
  font-size: 13px;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .has-mega-menu .posts--simple-list .posts__excerpt {
    font-size: 11px;
    line-height: 17px;
  }
}
.posts--simple-list .posts__excerpt--space {
  padding: 20px 0;
}
.posts--simple-list .posts__excerpt--space-sm {
  padding-top: 10px;
  font-size: 13px;
  line-height: 22px;
}
.posts--simple-list .posts__footer {
  padding-top: 17px;
}
.card .posts--simple-list .posts__footer {
  padding: 17px 24px;
  border-top: 1px solid #3c3b5b;
  overflow: hidden;
  margin-left: -24px;
  margin-right: -24px;
}
.posts--simple-list .post-author {
  float: left;
  width: 50%;
}
@media (max-width: 479px) {
  .posts--simple-list .post-author {
    width: 40%;
  }
}
.posts--simple-list .post-author__avatar {
  width: 24px;
  height: 24px;
  margin-right: 4px;
  vertical-align: middle;
  border-radius: 50%;
  overflow: hidden;
}
.posts--simple-list .post-author__avatar img {
  vertical-align: top;
}
@media (max-width: 479px) {
  .posts--simple-list .post-author__avatar {
    display: none;
  }
}
.posts--simple-list .post-author__name {
  font-size: 10px;
  text-transform: uppercase;
  color: #9e9caa;
  font-weight: 400;
}
.posts--simple-list .post__meta {
  width: 50%;
  float: right;
  text-align: right;
}
@media (max-width: 479px) {
  .posts--simple-list .post__meta {
    width: 60%;
  }
}
.posts--simple-list .posts__more {
  padding: 20px 0 0 0;
}

/* Simple Posts List - Condensed */
.card .posts--simple-list-condensed .posts__item {
  padding-bottom: 16px;
  margin-bottom: 18px;
}

/* Simple Post List - Numbered */
.posts--simple-list-numbered {
  counter-reset: list;
}
.posts--simple-list-numbered .posts__item {
  padding-left: 100px;
  position: relative;
  counter-increment: list;
}
.widget--footer .posts--simple-list-numbered .posts__item {
  padding-left: 38px;
}
.posts--simple-list-numbered .posts__item::before {
  content: counter(list, decimal-leading-zero);
  font-family: "Exo 2", sans-serif;
  font-size: 44px;
  line-height: 1em;
  font-style: italic;
  position: absolute;
  left: 0;
  top: 15px;
  opacity: 0.2;
  margin-top: 0 !important;
}
.widget--footer .posts--simple-list-numbered .posts__item::before {
  font-size: 24px;
  top: 22px;
}

/* Simple Posts List - Large */
.widget--side-panel .posts--simple-list--lg .posts__item {
  margin-bottom: 50px;
}
.widget--side-panel .posts--simple-list--lg .posts__item:last-child {
  margin-bottom: 0;
}
.has-mega-menu .posts--simple-list--lg .posts__item {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .has-mega-menu .posts--simple-list--lg .posts__item {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .has-mega-menu .posts--simple-list--lg .posts__item {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.posts--simple-list--lg .posts__item .posts__thumb {
  float: none;
  margin: 0 0 1.5em 0;
}
@media (min-width: 992px) {
  .has-mega-menu .posts--simple-list--lg .posts__item .posts__title {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .has-mega-menu .posts--simple-list--lg .posts__item .posts__title {
    font-size: 22px;
  }
}
.posts--simple-list--lg .posts__cat {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .posts--simple-list--lg .posts__cat-label {
    font-size: 10px;
  }
}
.posts--simple-list--lg .posts__title {
  margin-bottom: 0.2em;
}
@media (min-width: 992px) {
  .posts--simple-list--lg .posts__title {
    font-size: 18px;
    line-height: 1em;
  }
  .widget--side-panel .posts--simple-list--lg .posts__title {
    font-size: 22px;
  }
}
.posts--simple-list--lg .posts__excerpt {
  font-size: 14px;
  line-height: 26px;
}
.posts--simple-list--lg.posts--simple-list--lg--clean .posts__item {
  border-bottom: none;
  margin-bottom: 0;
}
.posts--simple-list--lg.posts--simple-list--lg--clean .posts__footer {
  border-top: none;
}

/* Simple Posts List - XLarge */
.posts--simple-list--xlg .posts__cat {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .posts--simple-list--xlg .posts__cat-label {
    font-size: 10px;
  }
}
.posts--simple-list--xlg .posts__title {
  margin-bottom: 0.1em;
}
@media (min-width: 768px) {
  .posts--simple-list--xlg .posts__title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .posts--simple-list--xlg .posts__title {
    font-size: 24px;
  }
}
@media (min-width: 1199px) {
  .posts--simple-list--xlg .posts__title {
    font-size: 30px;
    line-height: 28px;
  }
}
.posts--simple-list--xlg .posts__date {
  font-size: 9px;
}
@media (min-width: 992px) {
  .posts--simple-list--xlg .posts__date {
    font-size: 11px;
  }
}
.posts--simple-list--xlg .posts__excerpt {
  font-size: 14px;
  line-height: 26px;
}
@media (min-width: 1199px) {
  .posts--simple-list--xlg .posts__excerpt {
    margin-top: 13px;
  }
}
@media (min-width: 992px) {
  .posts--simple-list--xlg .posts__more {
    padding-top: 30px;
  }
}
@media (min-width: 1199px) {
  .posts--simple-list--xlg .posts__more {
    padding-top: 38px;
  }
}

/* Simple Posts List - Search Result */
.posts--simple-list--search .posts__excerpt > p:last-child {
  margin-bottom: 0;
}

/* Simple Posts List - Extra Small */
.posts--simple-list--xs .posts__thumb {
  max-width: 50px;
}

/* Posts List - Horizontal */
.posts-layout-horizontal,
.megamenu-row.col-12 .posts--simple-list {
  display: flex;
}
@media (max-width: 991px) {
  .posts-layout-horizontal,
  .megamenu-row.col-12 .posts--simple-list {
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .megamenu-item .posts-layout-horizontal,
  .megamenu-item .megamenu-row.col-12 .posts--simple-list {
    padding-bottom: 22px;
    margin-bottom: 30px !important;
    margin-left: -55px !important;
    margin-right: -55px !important;
    padding-left: 47px;
    padding-right: 47px;
    border-bottom: 1px solid #3c3b5b;
  }
}
.posts-layout-horizontal .posts__item,
.megamenu-row.col-12 .posts--simple-list .posts__item {
  padding-right: 8px;
  padding-left: 8px;
}
@media (max-width: 991px) {
  .posts-layout-horizontal .posts__item,
  .megamenu-row.col-12 .posts--simple-list .posts__item {
    padding-left: 0;
    padding-right: 0;
  }
  .megamenu-item .posts-layout-horizontal .posts__item .posts__thumb,
  .megamenu-item .megamenu-row.col-12 .posts--simple-list .posts__item .posts__thumb {
    max-width: 35%;
  }
}
@media (min-width: 992px) {
  .posts-layout-horizontal .posts__item,
  .megamenu-row.col-12 .posts--simple-list .posts__item {
    padding-right: 20px;
  }
}
@media (min-width: 1199px) {
  .posts-layout-horizontal .posts__item,
  .megamenu-row.col-12 .posts--simple-list .posts__item {
    padding-right: 30px;
  }
}

.posts-layout-horizontal--3cols .posts__item,
.megamenu-row.has-3cols .posts--simple-list .posts__item {
  flex-basis: 100%;
}
@media (min-width: 992px) {
  .posts-layout-horizontal--3cols .posts__item,
  .megamenu-row.has-3cols .posts--simple-list .posts__item {
    flex-basis: 33.3%;
  }
}

/* Post: Cards */
@media (max-width: 767px) {
  .posts--cards .post-grid__item {
    width: 100%;
  }
}

.posts__item--card {
  height: calc(100% - 15px);
}
.posts__item--card, .posts__item--card:last-child {
  margin-bottom: 15px;
}
.posts__item--card .posts__thumb {
  float: none;
  margin: 0;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.posts__item--card .posts__thumb:first-child {
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}
.posts__item--card .posts__thumb:last-child {
  overflow: hidden;
  border-radius: 0 0 4px 4px;
}
.posts__item--card .posts__thumb img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}
.posts__item--card .posts__thumb:hover img {
  transform: scale(1.1);
}
.posts__item--card.posts__item--card-condensed {
  margin-bottom: 0;
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.posts__item--card .posts__cta {
  display: block;
  position: absolute;
  top: 0;
  right: 23px;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  transform: translateY(-50%);
}
.posts__item--card .posts__cta::before, .posts__item--card .posts__cta::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  transition: transform 0.25s ease;
}
.posts__item--card .posts__cta::before {
  width: 17px;
  height: 3px;
}
.posts__item--card .posts__cta::after {
  width: 3px;
  height: 17px;
}
.posts__item--card .posts__cta:hover::before, .posts__item--card .posts__cta:hover::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.posts__item--card .posts__cat {
  display: block;
  position: absolute;
  left: 23px;
  top: 23px;
}
.posts__item--card .posts__inner .posts__cat {
  position: static;
  margin-bottom: 10px;
}
.posts__item--card .posts__cat-label {
  font-size: 10px;
  padding-top: 0.6em;
  margin-bottom: 0.6em;
}
.posts__item--card .posts__date {
  font-size: 10px;
  line-height: 1.2em;
  font-style: italic;
}
.posts__item--card .posts__date + .posts__title {
  margin-top: 5px;
}
@media (min-width: 992px) {
  .posts__item--card .posts__date + .posts__title {
    margin-top: 10px;
  }
}
@media (min-width: 992px) {
  .posts__item--card .posts__date {
    font-size: 11px;
  }
}
.posts__item--card .posts__date > a {
  color: #9e9caa;
}
.posts__item--card .posts__title {
  font-size: 18px;
  line-height: 1em;
  margin-bottom: 0.2em;
}
@media (min-width: 992px) {
  .posts__item--card .posts__title {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .posts__item--card .posts__title {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .posts__item--card .posts__title--sm {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .posts__item--card .posts__title--sm + .posts__excerpt {
    padding: 10px 0 0 0;
  }
}
.posts__item--card .posts__excerpt {
  padding: 13px 0 0 0;
}
@media (min-width: 992px) {
  .posts__item--card .posts__excerpt {
    padding: 23px 0 8px 0;
  }
}
.posts__item--card .posts__excerpt > p:last-child {
  margin-bottom: 0;
}
.posts__item--card .posts__inner {
  padding-top: 18px;
  position: relative;
  flex-grow: 1;
}
.posts__item--card .posts__footer {
  padding: 17px 24px;
  border-top: 1px solid #3c3b5b;
  display: table;
  width: 100%;
}
.posts__item--card .post-author {
  display: table-cell;
  width: 50%;
  text-align: left;
}
@media (max-width: 479px) {
  .posts__item--card .post-author {
    width: 40%;
  }
}
.posts__item--card .post-author__avatar {
  width: 24px;
  height: 24px;
  margin-right: 7px;
  vertical-align: middle;
  border-radius: 50%;
  overflow: hidden;
}
.posts__item--card .post-author__avatar img {
  vertical-align: top;
}
@media (max-width: 479px) {
  .posts__item--card .post-author__avatar {
    display: none;
  }
}
.posts__item--card .post-author__name {
  font-size: 10px;
  text-transform: uppercase;
  color: #9e9caa;
  font-weight: 400;
  font-style: normal;
}
.posts__item--card .post__meta {
  display: table-cell;
  width: 50%;
  text-align: right;
}

/* Posts: Cards Compact (video) */
.posts--card-compact .posts__item, .posts--card-compact .posts__item:last-child {
  margin-bottom: 15px;
}
.posts--card-compact .posts__item .posts__thumb {
  float: none;
  margin: 0;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.posts--card-compact .posts__item .posts__thumb:first-child {
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}
.posts--card-compact .posts__item .posts__thumb:last-child {
  overflow: hidden;
  border-radius: 0 0 4px 4px;
}
.posts--card-compact .posts__item .posts__thumb img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}
.posts--card-compact .posts__item .posts__cat {
  margin-bottom: 12px;
}
.posts--card-compact .posts__item .posts__title {
  font-size: 18px;
  line-height: 1.11em;
  margin-bottom: 0.4em;
}
.posts--card-compact .posts__item--lg .posts__cat-label {
  font-size: 10px;
}
@media (min-width: 992px) {
  .posts--card-compact .posts__item--lg .posts__title {
    font-size: 26px;
    line-height: 1em;
  }
}

/* Post: Tile */
.has-mega-menu .posts--tile {
  margin: -44px -65px -44px 0;
}
@media only screen and (max-width: 991px) {
  .has-mega-menu .posts--tile {
    margin: 0 -30px;
  }
  .has-mega-menu .posts--tile .posts__footer,
  .has-mega-menu .posts--tile .posts__cta {
    display: none;
  }
}
.has-mega-menu .posts--tile .posts__item--tile {
  margin-bottom: 0 !important;
  border-radius: 0;
}
.has-mega-menu .posts--tile .posts__thumb img {
  border-radius: 0;
}
.posts--tile .posts__title {
  color: #fff;
}
.posts--tile .posts__title > a {
  color: #fff;
}
.posts--tile .post-author__info .posts__date {
  color: #fff;
}

.posts__item--tile {
  position: relative;
  margin-bottom: 15px !important;
}
.posts__item--tile .posts__thumb {
  margin: 0;
  float: none;
  position: relative;
}
.posts__item--tile .posts__thumb img {
  border-radius: 4px;
  width: 100%;
  height: auto;
}
.posts__item--tile .posts__thumb::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
}
.posts__item--tile .posts__inner {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
}
.posts__item--tile .posts__inner--centered {
  top: 50%;
  transform: translateY(-50%);
}
.posts__item--tile .posts__cat .posts__cat-label {
  float: none;
  display: inline-block;
  font-size: 10px;
}
.posts__item--tile .posts__title {
  padding-left: 24px;
  padding-right: 24px;
  margin-bottom: 0.5em;
  line-height: 1em;
  font-size: 18px;
}
@media (min-width: 768px) {
  .posts__item--tile .posts__title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .posts__item--tile .posts__title {
    font-size: 24px;
    line-height: 1.0833em;
  }
}
.posts__item--tile .posts__cta {
  display: block;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  z-index: 4;
}
.posts__item--tile .posts__cta::before, .posts__item--tile .posts__cta::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  transition: transform 0.25s ease;
}
.posts__item--tile .posts__cta::before {
  width: 17px;
  height: 3px;
}
.posts__item--tile .posts__cta::after {
  width: 3px;
  height: 17px;
}
.posts__item--tile .posts__cta:hover::before, .posts__item--tile .posts__cta:hover::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.posts__item--tile .posts__date {
  font-size: 11px;
  color: #fff;
  margin-bottom: 2.5em;
}
.posts__item--tile .posts__footer {
  border-top: 1px solid #3c3b5b;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
}
.posts__item--tile .post-author {
  display: inline-block;
  margin-right: 14px;
  position: relative;
  top: -2px;
}
.posts__item--tile .post-author__avatar {
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  overflow: hidden;
  width: 24px;
  height: 24px;
  float: none;
  margin-right: 5px;
}
.posts__item--tile .post-author__name {
  margin: 0;
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  color: #9e9caa;
}
.posts__item--tile .post__meta {
  display: inline-block;
}
.posts--tile-alt .posts__item-link-overlay {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  opacity: 0.8;
  z-index: 4;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  transition: background-color 0.3s ease;
}
.posts--tile-alt .posts__item-link-overlay:hover {
  background-color: #3c3b5b;
}
.posts--tile-alt .posts__item-link-overlay:hover + .posts__inner--noactive .posts__excerpt {
  max-height: 70px;
  opacity: 1;
}
.posts--tile-alt .posts__thumb img {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.posts--tile-alt .posts__thumb::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 20%;
  opacity: 0.6;
  background-image: linear-gradient(to bottom, transparent 0%, #000 100%);
}
.posts--tile-alt .posts__inner {
  z-index: 5;
  text-align: left;
  padding: 12px 24px;
}
.posts--tile-alt .posts__inner--noactive {
  pointer-events: none;
}
.posts--tile-alt .posts__cat {
  margin-bottom: 10px;
}
.posts--tile-alt .posts__title {
  padding-left: 0;
  padding-right: 0;
  line-height: 1em;
  margin-bottom: 0.15em;
  font-size: 20px;
}
@media (min-width: 992px) {
  .posts--tile-alt .posts__title {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .posts--tile-alt .posts__title {
    font-size: 30px;
  }
}
.posts--tile-alt .posts__date {
  margin-bottom: 0;
  font-weight: bold;
}
.posts--tile-alt .posts__excerpt {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: max-height 0.4s ease, opacity 0.7s ease;
  color: rgba(255, 255, 255, 0.6);
}
.posts--tile-alt .posts__cta {
  z-index: 5;
}
.posts--tile-alt .posts__footer {
  text-align: left;
  display: flex;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 991px) {
  .posts--tile-alt .posts__footer {
    flex-wrap: wrap;
  }
}
.posts--tile-alt .post__meta {
  margin-left: auto;
}
.posts--tile-alt .meta__item, .posts--tile-alt .meta__item a {
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 992px) {
  .posts__item--tile-sm .posts__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .posts__item--tile-sm .posts__thumb img {
    height: 237px;
    object-fit: cover;
  }
}

@media (min-width: 992px) {
  .posts__item--tile-lg .posts__title {
    font-size: 34px;
  }
}

.posts--tile-alt-nopaddings {
  margin-left: 0;
  margin-right: 0;
}
.posts--tile-alt-nopaddings .post-grid__item {
  padding-left: 0;
  padding-right: 0;
}
.posts--tile-alt-nopaddings .posts__item {
  margin-bottom: 0 !important;
}
.posts--tile-alt-nopaddings .posts__thumb img {
  border-radius: 0 !important;
}

.posts--tile-meta-position .posts__title + .posts__date {
  margin-top: 0;
  margin-right: 10px;
}
@media (min-width: 992px) {
  .posts--tile-meta-position .meta__item + .meta__item {
    margin-left: 8px;
  }
}

.posts--tile-thumb-bordered .posts__thumb {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .posts--tile-hero-post-grid .posts__title {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .posts--tile-hero-post-grid .posts__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .posts--tile-hero-post-grid .posts__title--lg {
    font-size: 36px;
  }
}

.posts--tile-alt-noborder .posts__item--tile {
  border: 0;
  border-radius: 0;
  margin-bottom: 0 !important;
}
.posts--tile-alt-noborder .posts__thumb {
  border-radius: 0 !important;
}
.posts--tile-alt-noborder .posts__thumb img {
  border-radius: 0 !important;
}
.posts--tile-alt-noborder .posts__item-link-overlay {
  border-radius: 0 !important;
}
@media (min-width: 1200px) {
  .posts--tile-alt-noborder .posts__title {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .posts--tile-alt-noborder .posts__inner {
    padding: 40px;
  }
}

/* Post Tile - Event */
.posts__item--tile-event .posts__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
  padding-top: 30px;
  padding-bottom: 20px;
  font-size: 11.998px;
  line-height: 1.833em;
  color: #fff;
}
@media (min-width: 992px) {
  .posts__item--tile-event .posts__inner {
    padding-top: 45px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .posts__item--tile-event .posts__inner {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.posts__item--tile-event .posts__thumb::after {
  top: 0;
  background-image: linear-gradient(120deg, #fff 0%, #9e69ee 100%);
  opacity: 0.4;
}
.posts__item--tile-event .posts__excerpt {
  padding: 10px 0;
}
@media (min-width: 992px) {
  .posts__item--tile-event .posts__excerpt {
    padding: 10px 20px;
  }
}
.posts__item--tile-event .posts__countdown {
  margin-top: auto;
  margin-bottom: auto;
}
.posts__item--tile-event .posts__logo img {
  width: auto;
  height: auto;
  margin: 0 auto;
}
.posts__item--tile-event .countdown-counter__label {
  color: #fff;
}

/* Post Grid */
@media (max-width: 479px) {
  .post-grid--2cols .post-grid__item {
    width: 100%;
  }
}

.post-grid--3-4 .post-grid__item .posts__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.post-grid--3-4 :is(.post-grid__item:first-child, .post-grid__item:nth-child(2), .post-grid__item:nth-child(3)) .posts__title {
  -webkit-line-clamp: 4;
}
.post-grid--3-4 .post-grid__item .posts__cat {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.post-grid--featured {
  padding-top: 15px;
}

/* Post: Cards Thumb Left */
.posts--cards-thumb-left .posts__item--card {
  overflow: hidden;
}
.posts--cards-thumb-left .posts__thumb {
  width: 100%;
  float: none;
  overflow: hidden;
  height: 200px;
}
@media (min-width: 375px) {
  .posts--cards-thumb-left .posts__thumb {
    height: 240px;
  }
}
@media (min-width: 992px) {
  .posts--cards-thumb-left .posts__thumb {
    float: left;
    margin: 0;
    max-width: 325px;
    height: auto;
  }
  .posts--cards-thumb-left .posts__thumb:first-child {
    border-radius: 4px 0 0 4px;
  }
}
@media (min-width: 992px) {
  .posts--cards-thumb-left .posts__thumb {
    max-width: 220px;
  }
}
@media (min-width: 1199px) {
  .posts--cards-thumb-left .posts__thumb {
    max-width: 380px;
  }
}
.posts--cards-thumb-left .posts__inner {
  overflow: hidden;
  padding-top: 0;
}
@media (min-width: 992px) {
  .posts--cards-thumb-left .posts__inner {
    padding-top: 8px;
  }
}
.posts--cards-thumb-left .posts__cta {
  position: absolute;
  left: 20px;
  top: 20px;
  transform: none;
}
.posts--cards-thumb-left .posts__cta:hover {
  transform: rotate(90deg);
}

/* Post: Cards Thumb Large */
@media (min-width: 992px) {
  .posts--cards-thumb-lg .posts__inner {
    padding-top: 30px;
  }
}
.posts--cards-thumb-lg .posts__cat {
  position: static;
}
@media (min-width: 992px) {
  .posts--cards-thumb-lg .posts__cat {
    margin-bottom: 13px;
  }
}
@media (min-width: 992px) {
  .posts--cards-thumb-lg .posts__title {
    font-size: 28px;
    line-height: 1.07em;
  }
}

/* Post: Blockquote */
.posts__item--quote {
  background-color: #f92552;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  min-width: 304px;
}
@media (min-width: 992px) {
  .posts__item--quote {
    min-height: 482px;
  }
}
@media (min-width: 1199px) {
  .posts__item--quote {
    min-height: 488px;
  }
}
.posts__item--quote::before {
  content: "“";
  display: block;
  position: absolute;
  left: -0.09em;
  top: -0.18em;
  font-family: "Exo 2", sans-serif;
  color: #fff;
  opacity: 0.1;
  font-size: 300px;
  line-height: 1em;
  pointer-events: none;
}
@media (min-width: 992px) {
  .posts__item--quote::before {
    font-size: 600px;
  }
}
@media (min-width: 1199px) {
  .posts__item--quote::before {
    font-size: 700px;
  }
}

.blockquote--card {
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.blockquote--card .blockquote__content {
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1em;
  color: #fff;
  font-style: italic;
  margin: 0;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .blockquote--card .blockquote__content {
    font-size: 24px;
  }
}
@media (min-width: 1199px) {
  .blockquote--card .blockquote__content {
    font-size: 36px;
  }
}
.blockquote--card .blockquote-stress {
  display: block;
  color: #ffdc38;
}
.blockquote--card .blockquote__footer {
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2em;
  position: absolute;
  right: 24px;
  bottom: 24px;
}
.blockquote--card .blockquote__footer::before {
  display: none;
}
@media (min-width: 992px) {
  .blockquote--card .blockquote__footer {
    text-align: right;
  }
}
.blockquote--card .blockquote__cite {
  font-style: italic;
}
.blockquote--card .blockquote__author-name {
  display: block;
  font-size: 11px;
}
@media (min-width: 992px) {
  .blockquote--card .blockquote__author-name {
    font-size: 14px;
  }
}
.blockquote--card .blockquote__author-info {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}
@media (min-width: 992px) {
  .blockquote--card .blockquote__author-info {
    font-size: 10px;
  }
}

/* Posts: Featured Slider */
.posts--slider-featured:hover .posts__thumb img {
  transform: scale(1.1);
}
.posts--slider-featured .posts__item {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.posts--slider-featured .posts__thumb {
  margin: 0;
  float: none;
}
.posts--slider-featured .posts__thumb img {
  width: 100%;
  border-radius: 4px;
  position: relative;
  transition: transform 0.3s ease-in-out;
  backface-visibility: hidden;
}
.posts--slider-featured .posts__inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background-image: linear-gradient(to bottom, transparent, #000);
  border-radius: 0 0 4px 4px;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}
@media (min-width: 992px) {
  .posts--slider-featured .posts__inner {
    padding: 30px 23% 30px 40px;
  }
}
@media (min-width: 992px) {
  .posts--slider-featured .posts__cat {
    margin-bottom: 13px;
  }
}
@media (min-width: 992px) {
  .posts--slider-featured .posts__cat-label {
    font-size: 10px;
  }
}
.posts--slider-featured .posts__title {
  font-size: 14px;
  line-height: 1em;
  margin-bottom: 0.4em;
  color: #fff;
}
@media (min-width: 768px) {
  .posts--slider-featured .posts__title {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .posts--slider-featured .posts__title {
    font-size: 32px;
  }
}
@media (min-width: 1199px) {
  .posts--slider-featured .posts__title {
    font-size: 38px;
    line-height: 34px;
  }
}
.posts--slider-featured .posts__title .text-primary {
  display: block;
}
.posts--slider-featured .posts__title-higlight {
  color: #0fe3ab;
}
.posts--slider-featured .post-author {
  color: #fff;
}
.posts--slider-featured .post-author__avatar {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
@media (min-width: 768px) {
  .posts--slider-featured .post-author__avatar {
    margin-right: 8px;
  }
}
.posts--slider-featured .post-author__name,
.posts--slider-featured .posts__date {
  font-size: 9px;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .posts--slider-featured .post-author__name,
  .posts--slider-featured .posts__date {
    font-size: 11px;
  }
}
.posts--slider-featured .post-author__name + .posts__date::before {
  content: "–";
  margin-right: 0.25em;
}

/* Featured Slider - Center */
.posts-slider--center .posts__thumb {
  float: none;
  position: relative;
}
.posts-slider--center .posts__thumb::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.6;
  z-index: 1;
}
.posts-slider--center .posts__inner {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  right: auto;
  background: none;
  text-align: center;
  width: 80%;
  padding: 0;
  z-index: 2;
}
@media (min-width: 992px) {
  .posts-slider--center .posts__inner {
    padding: 0;
    width: 60%;
  }
}
.posts-slider--center .posts__cat-label {
  float: none;
  display: inline-block;
}
.posts-slider--center .posts__title {
  font-size: 14px;
}
@media (min-width: 768px) {
  .posts-slider--center .posts__title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .posts-slider--center .posts__title {
    font-size: 24px;
  }
}
@media (min-width: 1199px) {
  .posts-slider--center .posts__title {
    font-size: 32px;
    line-height: 32px;
  }
}

/* Featured Carousel */
.posts--carousel-featured .posts__item {
  position: relative;
}
.posts--carousel-featured .posts__title {
  color: #fff;
  margin-bottom: 0.25em;
  font-size: 15px;
}
@media (min-width: 480px) {
  .posts--carousel-featured .posts__title {
    font-size: 13px;
  }
}
@media (min-width: 768px) {
  .posts--carousel-featured .posts__title {
    font-size: 15px;
  }
}
@media (min-width: 1199px) {
  .posts--carousel-featured .posts__title {
    font-size: 18px;
    line-height: 1.11em;
  }
}
.posts--carousel-featured .posts__title > a {
  color: #fff;
  transition: all 0.2s ease;
}
.posts--carousel-featured .posts__title > a:hover {
  opacity: 0.75;
}
@media (min-width: 992px) {
  .posts--carousel-featured .posts__cat {
    margin-bottom: 10px;
  }
}
@media (min-width: 1199px) {
  .posts--carousel-featured .posts__cat {
    margin-bottom: 13px;
  }
}
.posts--carousel-featured .posts__cat-label {
  float: none;
  display: inline-block;
}
@media (min-width: 992px) {
  .posts--carousel-featured .posts__cat-label {
    font-size: 10px;
  }
}
.posts--carousel-featured .posts__thumb {
  float: none;
  position: relative;
  margin: 0;
}
.posts--carousel-featured .posts__thumb img {
  width: 100%;
  vertical-align: top;
}
.posts--carousel-featured .posts__inner {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 15%;
  text-align: center;
  width: 100%;
}
.posts--carousel-featured .posts__date {
  color: #9e9caa;
  font-size: 9px;
  font-weight: 700;
}
@media (min-width: 992px) {
  .posts--carousel-featured .posts__date {
    font-size: 11px;
  }
}
.posts--carousel-featured .post__meta {
  padding-top: 5px;
}
@media (min-width: 992px) {
  .posts--carousel-featured .post__meta {
    padding-top: 10px;
  }
}
@media (min-width: 1199px) {
  .posts--carousel-featured .post__meta {
    padding-top: 22px;
  }
}
.posts--carousel-featured .meta__item {
  color: #fff;
}
.posts--carousel-featured .meta__item > a {
  color: #fff;
  transition: all 0.2s ease;
}
.posts--carousel-featured .meta__item > a:hover {
  color: #fff;
  opacity: 0.75;
}

/* Posts - Horizontal */
.posts--horizontal {
  display: flex;
}
@media (max-width: 767px) {
  .posts--horizontal {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .posts--horizontal .posts__item, .card .posts--horizontal .posts__item {
    padding-bottom: 0;
    border-left: 1px solid #3c3b5b;
    border-bottom: none;
    margin: -24px 0 !important;
  }
  .posts--horizontal .posts__item:first-child, .card .posts--horizontal .posts__item:first-child {
    border-left: none;
    padding-left: 0;
  }
  .posts--horizontal .posts__item:first-child .posts__inner, .card .posts--horizontal .posts__item:first-child .posts__inner {
    padding-left: 0;
  }
  .posts--horizontal .posts__item:last-child, .card .posts--horizontal .posts__item:last-child {
    padding-right: 0;
  }
  .posts--horizontal .posts__item:last-child .posts__inner, .card .posts--horizontal .posts__item:last-child .posts__inner {
    padding-right: 0;
  }
  .posts--horizontal .posts__item .posts__inner, .card .posts--horizontal .posts__item .posts__inner {
    padding: 24px 0;
  }
}

/* Posts - Carousel Video Slideshow */
.posts--carousel .posts__item {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0;
}
.posts--carousel .posts__link-wrapper {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0 8px;
  text-align: left;
}
.posts--carousel .posts__link-wrapper:hover .posts__inner {
  transform: translateY(0);
}
.posts--carousel .posts__link-wrapper:hover::before {
  transform: translateY(-100%);
}
.posts--carousel .posts__link-wrapper::before {
  content: "\f067";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  background-color: rgba(23, 29, 33, 0.6);
  border-radius: 50%;
  border: 4px solid #f92552;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 32px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.posts--carousel .format-video .posts__link-wrapper::before {
  content: "\f04b";
  text-indent: 3px;
}
.posts--carousel .posts__inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 15px 18px 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
  pointer-events: none;
}
.posts--carousel .posts__title {
  color: #fff;
  margin-bottom: 0.25em;
  font-size: 12px;
  line-height: 1em;
}
@media (min-width: 480px) {
  .posts--carousel .posts__title {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .posts--carousel .posts__title {
    font-size: 13px;
  }
}
@media (min-width: 1199px) {
  .posts--carousel .posts__title {
    font-size: 14px;
  }
}
.posts--carousel .posts__thumb {
  float: none;
  margin: 0;
  background-color: #171d21;
  border-radius: 4px;
}
.posts--carousel .posts__thumb img {
  border-radius: 4px;
  position: relative;
  transition: opacity 0.3s ease-in-out;
  backface-visibility: hidden;
  opacity: 0.6;
}
.posts--carousel .posts__thumb:hover img {
  opacity: 0.3;
}
.posts--carousel .posts__date {
  color: #9e9caa;
  font-size: 9px;
  font-weight: 700;
  display: block;
  line-height: 1em;
}
@media (min-width: 992px) {
  .posts--carousel .posts__date {
    font-size: 10px;
  }
}
.posts--carousel .slick-prev,
.posts--carousel .slick-next {
  top: -62px;
}
.posts--carousel .slick-prev:hover,
.posts--carousel .slick-next:hover {
  background-color: #fff;
}
.posts--carousel .slick-next {
  right: 28px;
}
.posts--carousel .slick-prev {
  right: 58px;
}

/* Posts: Inline (marquee) */
.posts--inline {
  margin: 0;
}
.posts--inline .posts__cat,
.posts--inline .posts__item,
.posts--inline .posts__title,
.posts--inline .posts__excerpt {
  display: inline-block;
  margin: 0;
  font-size: 12px;
}
.posts--inline .posts__title {
  margin-right: 0.5em;
}
.posts--inline .posts__cat {
  position: relative;
  top: 3px;
}
.posts--inline .posts__cat-label {
  margin-bottom: 0;
}
.posts--inline .posts__excerpt {
  margin-right: 1em;
}

/* Featured News - Football */
.posts--slider-var-width {
  margin-bottom: -11px;
}
.posts--slider-var-width .posts__item--desc-center .posts__thumb {
  margin-bottom: 14px;
}

.posts--slider-layout-1x2 .row {
  display: block;
}
.posts--slider-layout-1x2 .row [class*=col-] {
  float: left;
}

.posts__item--desc-center .posts__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  right: auto;
  background: none;
  text-align: center;
  width: 80%;
  padding: 0;
  z-index: 2;
  transition: transform 0.25s ease;
}
@media (min-width: 992px) {
  .posts__item--desc-center .posts__inner {
    padding: 0;
    width: 60%;
  }
}
.posts__item--desc-center .posts__thumb {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #3c3b5b;
  float: none;
  margin: 0 0 15px 0;
  transform: translate3d(0, 0, 0);
}
.posts__item--desc-center .posts__thumb img {
  width: 100%;
  height: auto;
}
.posts__item--desc-center .posts__cat {
  overflow: visible;
}
.posts__item--desc-center .posts__cat-label {
  float: none;
  display: inline-block;
  font-size: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
.posts__item--desc-center .posts__title {
  font-size: 14px;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  color: #fff;
}
@media (min-width: 768px) {
  .posts__item--desc-center .posts__title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .posts__item--desc-center .posts__title {
    font-size: 24px;
  }
}
@media (min-width: 1199px) {
  .posts__item--desc-center .posts__title {
    font-size: 34px;
    line-height: 1em;
  }
}
.posts__item--desc-center .post-author__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 10px;
}
.posts__item--desc-center .posts__date {
  font-size: 11px;
  color: #fff;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
.posts__item--desc-center .posts__title-higlight {
  color: #3ffeca;
}
.posts__item--desc-center:hover .posts__inner {
  transform: translate3d(-50%, -58%, 0);
}

.posts__item--desc-left {
  position: relative;
}
.posts__item--desc-left .posts__inner {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: none;
  width: 80%;
  padding: 0;
  z-index: 2;
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s ease;
}
@media (min-width: 992px) {
  .posts__item--desc-left .posts__inner {
    padding: 0;
    width: 75%;
  }
}
.posts__item--desc-left .posts__thumb {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #3c3b5b;
  float: none;
  margin: 0 0 14px 0;
  transform: translate3d(0, 0, 0);
}
.posts__item--desc-left .posts__thumb img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.posts__item--desc-left .posts__cat {
  overflow: visible;
}
.posts__item--desc-left .posts__cat-label {
  display: inline-block;
  float: none;
  font-size: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
.posts__item--desc-left .posts__title {
  font-size: 14px;
  line-height: 1em;
  margin-bottom: 0.1em;
  color: #fff;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .posts__item--desc-left .posts__title {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .posts__item--desc-left .posts__title {
    font-size: 18px;
  }
}
@media (min-width: 1199px) {
  .posts__item--desc-left .posts__title {
    font-size: 20px;
    line-height: 1em;
  }
}
.posts__item--desc-left .posts__date {
  font-size: 10px;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  color: #fff;
}
.posts__item--desc-left .posts__title-higlight {
  color: #3ffeca;
}
.posts__item--desc-left:hover .posts__inner {
  transform: translateY(-12px);
}

/* Slider Featured */
.posts--slider-top-news {
  margin-bottom: 0 !important;
}
.posts--slider-top-news .slick-list,
.posts--slider-top-news .slick__slide {
  max-height: 660px !important;
}
.posts--slider-top-news .posts__thumb {
  float: none;
  margin: 0;
}
.posts--slider-top-news .posts__thumb img {
  width: 100%;
  height: auto;
}
.posts--slider-top-news .posts__inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
}
@media (min-width: 480px) {
  .posts--slider-top-news .posts__inner {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .posts--slider-top-news .posts__inner {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .posts--slider-top-news .posts__inner {
    width: 620px;
  }
}
.posts--slider-top-news .posts__cat {
  visibility: visible;
}
@media (min-width: 992px) {
  .posts--slider-top-news .posts__cat {
    margin-bottom: 13px;
  }
}
.posts--slider-top-news .posts__cat-label {
  display: inline-block;
  float: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  .posts--slider-top-news .posts__cat-label {
    font-size: 10px;
  }
}
.posts--slider-top-news .posts__title {
  font-size: 18px;
  line-height: 1em;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
@media (max-width: 479px) {
  .posts--slider-top-news .posts__title {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 768px) {
  .posts--slider-top-news .posts__title {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .posts--slider-top-news .posts__title {
    font-size: 34px;
  }
}
@media (min-width: 1200px) {
  .posts--slider-top-news .posts__title {
    font-size: 42px;
  }
}
.posts--slider-top-news .posts__title > a:hover {
  color: #fff !important;
}
.posts--slider-top-news .posts__title-higlight {
  color: #0fe3ab;
}
.posts--slider-top-news .posts__footer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.posts--slider-top-news .posts__footer .post-author {
  margin: 0 10px 0 0;
  margin: 0 5px 0 0;
}
.posts--slider-top-news .posts__footer .post-author__avatar {
  margin-bottom: 0;
}
.posts--slider-top-news .posts__footer .post__meta {
  margin: 0;
}
.posts--slider-top-news .posts__footer .meta__item {
  line-height: 14px;
}
.posts--slider-top-news .post-author {
  display: inline-block;
}
@media (max-width: 479px) {
  .posts--slider-top-news .post-author {
    display: block;
  }
}
.posts--slider-top-news .post-author__avatar {
  width: 24px;
  height: 24px;
  margin-right: 4px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .posts--slider-top-news .post-author__avatar {
    margin-right: 8px;
  }
}
.posts--slider-top-news .posts__date {
  color: #fff;
  font-size: 11px;
}
.posts--slider-top-news .post__meta {
  display: inline-block;
  margin-right: 0;
  color: #fff;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
@media (max-width: 479px) {
  .posts--slider-top-news .post__meta {
    margin-bottom: 10px !important;
  }
}
@media (min-width: 768px) {
  .posts--slider-top-news .post__meta {
    margin-right: 2.5em;
  }
}
.posts--slider-top-news .meta__item a {
  color: #fff;
}
@media (min-width: 768px) {
  .posts--slider-top-news .posts__item-has-img .posts__inner {
    text-align: left;
    transform: translate(-50%, -50%) translateX(35%);
  }
}
.posts--slider-top-news .posts__item-has-img .posts__img-player {
  position: absolute;
  top: 0;
  bottom: 0;
  max-width: 45%;
  z-index: 4;
}
@media (max-width: 767px) {
  .posts--slider-top-news .posts__item-has-img .posts__img-player {
    display: none;
  }
}
@media (min-width: 1200px) {
  .posts--slider-top-news .posts__item-has-img .posts__img-player {
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translate(-585px, 0);
  }
}
.posts--slider-top-news .posts__item-has-img .posts__img-player img {
  vertical-align: bottom;
}
.posts--slider-top-news .posts__item-has-img .posts__footer {
  justify-content: flex-start;
}

/* Posts - Video Grid */
.posts--video-grid .posts__item {
  position: relative;
  z-index: 4;
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid #3c3b5b;
  border-radius: 4px;
}
.posts--video-grid .posts__item.posts__item--category-1 .posts__link-wrapper::before {
  border-color: #f92552;
}
.posts--video-grid .posts__item.posts__item--category-2 .posts__link-wrapper::before {
  border-color: #9e69ee;
}
.posts--video-grid .posts__item.posts__item--category-3 .posts__link-wrapper::before {
  border-color: #0fe3ab;
}
.posts--video-grid .posts__item.posts__item--category-4 .posts__link-wrapper::before {
  border-color: #f92552;
}
.posts--video-grid .posts__item.posts__item--category-5 .posts__link-wrapper::before {
  border-color: #f92552;
}
.posts--video-grid .posts__item.posts__item--category-6 .posts__link-wrapper::before {
  border-color: #f92552;
}
.posts--video-grid .posts__item.posts__item--category-7 .posts__link-wrapper::before {
  border-color: #f92552;
}
.posts--video-grid .posts__item.posts__item--category-8 .posts__link-wrapper::before {
  border-color: #f92552;
}
.posts--video-grid .posts__item.posts__item--category-9 .posts__link-wrapper::before {
  border-color: #f92552;
}
.posts--video-grid .posts__item.posts__item--category-10 .posts__link-wrapper::before {
  border-color: #f92552;
}
.posts--video-grid .posts__item.posts__item--category-11 .posts__link-wrapper::before {
  border-color: #f92552;
}
.posts--video-grid .posts__item.posts__item--category-12 .posts__link-wrapper::before {
  border-color: #f92552;
}
.posts--video-grid .posts__item.format-video .posts__link-wrapper::before {
  content: "\f04b";
  text-indent: 3px;
}
@media (min-width: 992px) {
  .posts--video-grid .posts__item--lg .posts__link-wrapper::before {
    width: 80px;
    height: 80px;
    border-width: 6px;
    line-height: 68px;
    font-size: 32px;
  }
  .posts--video-grid .posts__item--lg .posts__title {
    font-size: 24px;
    line-height: 1.08333em;
  }
  .posts--video-grid .posts__item--lg .posts__cat-label {
    font-size: 10px;
  }
}
.posts--video-grid .posts__link-wrapper {
  display: block;
  vertical-align: top;
  position: relative;
  text-align: left;
}
.posts--video-grid .posts__link-wrapper:hover .posts__inner {
  transform: translateY(0);
}
.posts--video-grid .posts__link-wrapper:hover::before {
  transform: translateY(-100%);
}
.posts--video-grid .posts__link-wrapper::before {
  content: "\f067";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  background-color: rgba(23, 29, 33, 0.6);
  border-radius: 50%;
  border: 4px solid #f92552;
  z-index: 4;
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: 52px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.posts--video-grid .posts__inner {
  position: absolute;
  left: 0;
  width: 75%;
  bottom: 0;
  padding: 0 24px 18px 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
  pointer-events: none;
  z-index: 4;
}
.posts--video-grid .posts__title {
  color: #fff;
  margin-bottom: 0.25em;
  font-size: 12px;
  line-height: 1em;
}
@media (min-width: 480px) {
  .posts--video-grid .posts__title {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .posts--video-grid .posts__title {
    font-size: 13px;
  }
}
@media (min-width: 1199px) {
  .posts--video-grid .posts__title {
    font-size: 14px;
  }
}
.posts--video-grid .posts__thumb {
  float: none;
  margin: 0;
  background-color: #171d21;
  border-radius: 4px;
}
.posts--video-grid .posts__thumb img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  position: relative;
  transition: opacity 0.3s ease-in-out;
}
.posts--video-grid .posts__date {
  color: #9e9caa;
  font-size: 9px;
  font-weight: 700;
  display: block;
  line-height: 1em;
}
@media (min-width: 992px) {
  .posts--video-grid .posts__date {
    font-size: 10px;
  }
}

.posts--excerpt-hide .posts__excerpt {
  display: none;
}

.grid-layout {
  display: grid;
  justify-content: stretch;
  grid-column-gap: 0;
  grid-row-gap: 0;
}

.grid-layout--1-2-1 {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, 1fr);
}
@media (min-width: 480px) {
  .grid-layout--1-2-1 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .grid-layout--1-2-1 {
    grid-template-columns: 43% 1fr 1fr;
    grid-template-rows: 360px 260px;
  }
}
@media (min-width: 992px) {
  .grid-layout--1-2-1 .post-grid__item:nth-child(1) {
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
@media (min-width: 992px) {
  .grid-layout--1-2-1 .post-grid__item:nth-child(4) {
    grid-column-start: 2;
    grid-column-end: 4;
  }
}

/* Single Post
/* ------------------------- */
.post--single .post__thumbnail {
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}
.post--single .post__thumbnail > img {
  width: 100%;
  height: auto;
}
.post--single .post__thumbnail--square {
  border-radius: 0;
}
.post--single .post__category {
  overflow: hidden;
  margin-bottom: 15px;
}
.post--single .post__title {
  font-size: 18px;
  line-height: 1.0625em;
  margin-bottom: 0.55em;
  font-style: italic;
}
@media (min-width: 992px) {
  .post--single .post__title {
    font-size: 32px;
    font-size: 28px;
    line-height: 1.07em;
  }
}
.post--single .post__content-wrapper {
  position: relative;
}
.post--single .post__content--inner {
  padding: 40px 0 0 45px;
}
@media (min-width: 992px) {
  .post--single .post__content--inner-left {
    padding-left: 80px;
  }
}
@media (min-width: 1200px) {
  .post--single .post__content--inner-left {
    padding-left: 100px;
  }
}
.post--single .post__meta {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .post--single .post__meta {
    margin-bottom: 34px;
  }
}
.post--single .post__footer {
  padding: 30px 0 10px 0;
}
.post--single .post__tags .btn {
  margin: 0 5px 8px 0;
}
.post--single .post__tags--simple a {
  display: inline-block;
  color: #fff;
  font-family: "Exo 2", sans-serif;
  margin-right: 0.35em;
}
.post--single .post__tags--simple a::before {
  content: "#";
  color: #f92552;
}
.post--single .post__tags--simple a:hover {
  color: #0fe3ab;
}
@media (min-width: 992px) {
  .post--single .posts__cat-label {
    font-size: 10px;
  }
}

.post--single-sm .post__title {
  margin-bottom: 0.35em;
}
@media (min-width: 992px) {
  .post--single-sm .post__title {
    font-size: 26px;
  }
}
.post--single-sm .post__meta {
  margin-bottom: 0;
}
.post--single-sm .post__meta .meta__item--date {
  color: #fff;
}
@media (min-width: 992px) {
  .post--single-sm .post__meta {
    margin-bottom: 0;
  }
}

.post-sharing {
  margin-bottom: 10px;
  display: flex;
}
.post-sharing .btn {
  margin: 0 8px 5px 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 10px;
  padding-right: 15px;
}
.post-sharing .btn:first-child {
  margin-left: 0;
}
.post-sharing .btn:last-child {
  margin-right: 0;
}
@media (max-width: 768px) {
  .post-sharing .btn {
    padding-left: 0;
    padding-right: 0;
  }
  .post-sharing .btn .fa {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .post-sharing__label {
    display: none;
  }
}

.post-sharing-compact {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
@media (min-width: 992px) {
  .post-sharing-compact {
    padding-top: 40px;
  }
}
@media (min-width: 1200px) {
  .post-sharing-compact {
    padding-top: 70px;
  }
}
.post-sharing-compact .btn {
  margin: 0 10px;
  padding: 5px 0;
  width: 80px;
  text-align: center;
}
.post-sharing-compact .btn .fa {
  margin: 0;
}
.post-sharing-compact.stacked {
  justify-content: flex-start;
  padding: 0 0 20px 0;
}
@media (min-width: 992px) {
  .post-sharing-compact.stacked {
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    flex-direction: column;
  }
  .post-sharing-compact.stacked .btn {
    margin: 0 0 10px 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .post-sharing-compact.stacked .btn {
    width: 60px;
  }
}
@media (min-width: 1200px) {
  .post-sharing-compact.stacked {
    padding-top: 0;
  }
}

.post-sharing-compact--footer {
  display: flex;
  justify-content: flex-start;
  padding-top: 0;
  margin-bottom: 1.5em;
}
@media (min-width: 992px) {
  .post-sharing-compact--footer {
    padding-top: 0;
  }
}
@media (min-width: 1200px) {
  .post-sharing-compact--footer {
    padding-top: 0;
  }
}
.post-sharing-compact--footer .btn {
  margin-left: 0;
  margin-right: 20px;
}
.post-sharing-compact--footer .btn:last-child {
  margin-right: 0;
}
.post-sharing-compact--footer:last-child {
  margin-bottom: 0;
}

.post--extra-top {
  margin-top: -100px;
  z-index: 3;
}
@media (min-width: 992px) {
  .post--extra-top {
    margin-top: -160px;
  }
}

/* Post Author
/* ------------------------- */
.post-author__header {
  overflow: hidden;
}
.post-author__header + .post-author__description {
  margin-top: 26px;
}

.post-author__avatar {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 4px;
  margin: 0 14px 0 0;
  display: inline-block;
  vertical-align: middle;
}
.post-author__avatar img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.post-author__info {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.post-author__name {
  margin-bottom: 0.2em;
  font-size: 14px;
}

.post-author__slogan {
  display: block;
  font-size: 11px;
  line-height: 1.2em;
  font-family: "Exo 2", sans-serif;
  color: #9e9caa;
  font-weight: 400;
  font-size: 10px;
  text-transform: uppercase;
  font-style: italic;
  color: #7f7e8c;
}

.post-author__social-links.social-links {
  padding: 10px 0 0 0;
}
@media (min-width: 992px) {
  .post-author__social-links.social-links {
    padding: 0;
    float: right;
    margin-right: -2px;
  }
}

.post-author--avatar-left .post-author__header {
  margin-bottom: 12px;
  padding-top: 5px;
}
.post-author--avatar-left .post-author__header + .post-author__description {
  margin-top: 0;
}
@media (max-width: 767px) {
  .post-author--avatar-left .post-author__header + .post-author__description {
    clear: both;
    padding-top: 10px;
  }
}
.post-author--avatar-left .post-author__avatar {
  float: left;
  margin-right: 24px;
}
.post-author--avatar-left .card__content {
  overflow: hidden;
}

.post-author--simplified .post-author__avatar {
  width: auto;
  height: auto;
  border-radius: 50%;
}
.post-author--simplified .post-author__avatar {
  margin-right: 16px;
}

/* Post Meta */
.meta {
  list-style: none;
  padding: 0;
  margin: 0;
}

.meta__item {
  font-family: "Exo 2", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  line-height: 1.2em;
  display: inline-block;
  vertical-align: middle;
}
.meta__item + .meta__item {
  margin-left: 8px;
}
@media (min-width: 992px) {
  .meta__item + .meta__item {
    margin-left: 15px;
  }
}
.meta__item::before {
  font-size: 13px;
  line-height: 1em;
  vertical-align: middle;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-family: "simple-line-icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
  position: relative;
  top: -1px;
}
@media (min-width: 992px) {
  .meta__item::before {
    margin-right: 8px;
  }
}
.meta__item a {
  color: #9e9caa;
  transition: color 0.2s ease;
}
.meta__item a:hover {
  color: #fff;
  color: #fff;
}

.meta__item--date {
  font-size: 10px;
}
@media (min-width: 992px) {
  .meta__item--date {
    font-size: 11px;
  }
}
.meta__item--date::before {
  display: none;
}

.meta__item--views::before {
  content: "\e087";
}

.meta__item--likes::before {
  display: none;
}
.meta__item--likes .meta-like {
  vertical-align: middle;
  margin-right: 6px;
  font-size: 12px;
}
.meta__item--likes > a {
  display: inline-block;
}
.meta__item--likes .liked .meta-like {
  color: #f1365e;
}

.meta__item--comments::before {
  display: none;
}
.meta__item--comments > a {
  display: inline-block;
}
.meta__item--comments > a::before {
  font-size: 13px;
  line-height: 1em;
  vertical-align: middle;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-family: "simple-line-icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
  position: relative;
  top: -1px;
  content: "\e07d";
  font-size: 12px;
}
@media (min-width: 992px) {
  .meta__item--comments > a::before {
    margin-right: 8px;
  }
}

/* Side Meta Block */
.post__meta-block--side {
  padding: 24px;
}
.post__meta-block--side .post-author__name {
  font-size: 13px;
}
.post__meta-block--side .social-links--btn {
  margin-left: 74px;
}
.post__meta-block--side .post__meta {
  display: none;
}
.post__meta-block--side + .card__content .meta__item--views,
.post__meta-block--side + .card__content .meta__item--likes,
.post__meta-block--side + .card__content .meta__item--comments {
  display: inline-block;
}
@media (min-width: 992px) {
  .post__meta-block--side {
    padding: 0;
    float: left;
    width: 60px;
    margin: 43px 0 0 24px;
  }
  .post__meta-block--side + .card__content {
    overflow: hidden;
    padding-left: 24px;
  }
  .post__meta-block--side + .card__content .meta__item--views,
  .post__meta-block--side + .card__content .meta__item--likes,
  .post__meta-block--side + .card__content .meta__item--comments {
    display: none;
  }
  .post__meta-block--side .post-author {
    text-align: center;
    padding-bottom: 34px;
  }
  .post__meta-block--side .post-author__avatar {
    float: none;
    margin: 0 auto 8px auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
  .post__meta-block--side .post-author__name {
    font-size: 10px;
    line-height: 1.2em;
    margin-bottom: 0.75em;
  }
  .post__meta-block--side .post-author__slogan {
    font-size: 9px;
  }
  .post__meta-block--side .post__meta {
    display: block;
  }
  .post__meta-block--side .meta__item {
    display: block;
    text-align: center;
    margin: 0 0 21px 0;
  }
  .post__meta-block--side .meta__item::before {
    display: block;
    margin: 0 auto 6px auto;
  }
  .post__meta-block--side .meta__item--likes .meta-like {
    display: block;
    margin: 0 auto 6px auto;
  }
  .post__meta-block--side .meta__item--comments > a::before {
    display: block;
    margin: 0 auto 6px auto;
  }
  .post__meta-block--side .social-links--btn {
    text-align: center;
    padding-bottom: 20px;
    margin-left: 0;
  }
  .post__meta-block--side .social-links--btn .social-links__item {
    display: block;
    margin: 0 auto 12px auto;
  }
}

.post__meta-block--top {
  padding-bottom: 65px;
}
@media (max-width: 479px) {
  .post__meta-block--top {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .hero-slider .post__meta-block--top .posts__title {
    font-size: 42px;
  }
}
.hero-slider .post__meta-block--top .posts__title > a {
  color: #fff;
}
@media (min-width: 992px) {
  .single-post .post__meta-block--top {
    padding: 156px 0 215px 0;
  }
}
.post__meta-block--top .post__category {
  margin-bottom: 22px;
}
.post__meta-block--top .posts__cat-label {
  display: inline-block;
  float: none;
  font-size: 10px;
}
.post__meta-block--top .page-heading__title,
.post__meta-block--top .posts__title {
  font-size: 18px;
  line-height: 1em;
  margin-bottom: 0.475em;
  font-style: italic;
}
@media (min-width: 480px) {
  .post__meta-block--top .page-heading__title,
  .post__meta-block--top .posts__title {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .post__meta-block--top .page-heading__title,
  .post__meta-block--top .posts__title {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .post__meta-block--top .page-heading__title,
  .post__meta-block--top .posts__title {
    font-size: 42px;
  }
}
.post__meta-block--top .page-heading__title > a,
.post__meta-block--top .posts__title > a {
  color: #fff;
}
.post__meta-block--top .post__meta {
  color: #fff;
  margin-bottom: 22px;
}
.post__meta-block--top .meta__item a {
  color: #fff;
}
.post__meta-block--top .posts__date {
  color: #fff;
  font-size: 11px;
}
.post__meta-block--top .post-author {
  text-align: center;
}
.post__meta-block--top .post-author__avatar {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 10px auto;
}
.post__meta-block--top .post-author__avatar--sm {
  width: 24px;
  height: 24px;
  margin: 0 5px 0 0;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}
.post__meta-block--top .post-author__info {
  display: inline-block;
  vertical-align: middle;
}
.post__meta-block--top .post-author__name {
  font-size: 13px;
  color: #fff;
  font-size: 11px;
  margin-bottom: 0;
  font-style: normal;
}
.post__meta-block--top .post-author__slogan {
  font-size: 10px;
  font-weight: 400;
}

.post__meta-block-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .post__meta-block-wrapper {
    height: 450px;
  }
}
@media (min-width: 1200px) {
  .post__meta-block-wrapper {
    height: 545px;
  }
}
.post__meta-block-wrapper .post__meta-block--top {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .post__meta-block-wrapper .post__meta-block--top {
    padding: 0;
  }
}

/* Side Meta Block - Wide */
.post__meta-block--side-wide {
  padding: 24px;
}
.post__meta-block--side-wide .post__title {
  font-size: 18px;
  line-height: 1.0833em;
}
@media (min-width: 992px) {
  .post__meta-block--side-wide .post__title {
    font-size: 24px;
  }
}
.post__meta-block--side-wide .post__meta {
  margin-bottom: 20px;
}
.post__meta-block--side-wide .post-author {
  margin-bottom: 18px;
}
.post__meta-block--side-wide .post-author__avatar {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  margin-right: 5px;
}
.post__meta-block--side-wide .post-author__name {
  font-size: 10px;
  line-height: 1.2em;
  color: #9e9caa;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 992px) {
  .post__meta-block--side-wide {
    padding: 0;
    float: left;
    width: 190px;
    margin: 43px 0 0 24px;
  }
  .post__meta-block--side-wide + .card__content {
    overflow: hidden;
    padding-left: 60px;
  }
  .post__meta-block--side-wide .social-links--btn-block {
    padding-right: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .post__meta--in-side-wide .meta__item--views,
  .post__meta--in-side-wide .meta__item--likes,
  .post__meta--in-side-wide .meta__item--comments {
    display: none;
  }
}
@media (min-width: 1200px) {
  .post__meta--in-side-wide .meta__item--views,
  .post__meta--in-side-wide .meta__item--likes,
  .post__meta--in-side-wide .meta__item--comments {
    display: none;
  }
}

/* Related Posts */
.post-related__prev {
  position: relative;
}
.post-related__prev .card__content {
  position: relative;
  text-align: center;
}
@media (min-width: 992px) {
  .post-related__prev .card__content {
    text-align: left;
    padding-left: 93px;
  }
}
.post-related__prev .posts {
  display: none;
}
@media (min-width: 992px) {
  .post-related__prev .posts {
    display: block;
  }
}
@media (min-width: 992px) {
  .post-related__prev .btn-nav {
    position: absolute;
    left: 23px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.post-related__next {
  text-align: right;
  position: relative;
}
.post-related__next .card__content {
  position: relative;
  text-align: center;
}
@media (min-width: 992px) {
  .post-related__next .card__content {
    padding-right: 93px;
    padding-left: 30px;
    text-align: right;
  }
  .post-related__next .card__content .posts__cat-label {
    float: right;
  }
  .post-related__next .card__content .posts__cat-label + .posts__cat-label {
    margin-left: 0 !important;
    margin-right: 0.5em;
  }
}
.post-related__next .card__content .posts {
  display: none;
}
@media (min-width: 992px) {
  .post-related__next .card__content .posts {
    display: block;
  }
}
@media (min-width: 992px) {
  .post-related__next .btn-nav {
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.post-related--condensed .btn-nav--condensed {
  width: 100%;
  height: auto;
  border-radius: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: none;
  background-color: #383759;
  line-height: 18px;
}
@media (min-width: 992px) {
  .post-related--condensed .btn-nav--condensed {
    width: 23px;
  }
}
.post-related--condensed .btn-nav--condensed .fa {
  line-height: 18px;
  height: 18px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.post-related--condensed .btn-nav--condensed:hover {
  background-color: #f92552;
}
@media (min-width: 992px) {
  .post-related--condensed .post-related__prev .card__content {
    padding-left: 43px;
  }
}
.post-related--condensed .post-related__prev .btn-nav--condensed {
  left: 0;
  border-radius: 3px;
}
@media (min-width: 992px) {
  .post-related--condensed .post-related__prev .btn-nav--condensed {
    border-radius: 3px 0 0 3px;
  }
}
@media (min-width: 992px) {
  .post-related--condensed .post-related__next .card__content {
    padding-right: 43px;
  }
}
.post-related--condensed .post-related__next .btn-nav--condensed {
  right: 0;
  border-radius: 3px;
}
@media (min-width: 992px) {
  .post-related--condensed .post-related__next .btn-nav--condensed {
    border-radius: 0 3px 3px 0;
  }
}

/* Comments
/* ------------------------- */
.post-comments {
  overflow: hidden;
}

.comments,
.commentlist {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: -1px;
}

.comment,
.pingback {
  position: relative;
  padding: 0;
  margin: 0;
}

.comments__inner {
  position: relative;
  border-bottom: 1px solid #3c3b5b;
  padding-top: 36px;
  padding-bottom: 36px;
}
.card .comments__inner {
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
}
.card--lg .comments__inner {
  margin-left: -43px;
  margin-right: -43px;
  padding-left: 43px;
  padding-right: 43px;
}
.comments > .comment:first-child > .comments__inner, .comments > .pingback:first-child > .comments__inner {
  padding-top: 0;
}
.comment__header {
  overflow: hidden;
  position: relative;
  margin-bottom: 25px;
}

.comment__author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  margin-right: 14px;
}
.pingback .comment__author-avatar {
  display: none;
}

.comment__author-avatar--sm {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.comment__author-avatar--md {
  width: 46px;
  height: 46px;
  margin-right: 12px;
}

.comment__author-avatar--rounded {
  border-radius: 4px;
}

.comment__author-info {
  display: inline-block;
  vertical-align: middle;
}
.comment__author-info .star-rating {
  margin: 12px auto 0 auto;
}

.comment__author-name {
  text-transform: none;
  font-size: 16px;
  margin-bottom: 0.25em;
  font-size: 14px;
  text-transform: uppercase;
}

.comment__post-date {
  font-size: 11px;
  line-height: 1.2em;
  display: block;
  font-family: "Exo 2", sans-serif;
  font-weight: 400;
}
.comment__post-date a {
  color: #9e9caa;
}
.comment__post-date a:hover {
  color: #0fe3ab;
}
.comment__post-date a + a {
  color: #0fe3ab;
}
.comment__post-date a + a:hover {
  color: #0fe3ab;
}

.comment__reply {
  margin-top: 5px;
}
@media (min-width: 992px) {
  .comment__reply {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 0;
  }
}

.comment__body > p:last-child {
  margin-bottom: 0;
}

/* Nested Comments */
.comments .children {
  padding-left: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .card .comments .children .comment .comments__inner {
    padding-left: 48px;
  }
  .card .comments .children .comment .comments__inner::before {
    content: "";
    display: block;
    position: absolute;
    left: 15px;
    top: 43px;
    width: 14px;
    height: 20px;
    border-left: 1px solid #3c3b5b;
    border-bottom: 1px solid #3c3b5b;
  }
  .card .comments .children .comments--children .comment .comments__inner {
    padding-left: 72px;
  }
  .card .comments .children .comments--children .comment .comments__inner::before {
    left: 39px;
  }
  .card .comments .children .comments--children .comments--children .comment .comments__inner {
    padding-left: 96px;
  }
  .card .comments .children .comments--children .comments--children .comment .comments__inner::before {
    left: 63px;
  }
  .card .comments .children .comment .comments__inner {
    background-color: #363555;
  }
  .card .comments .children .comment .comments__inner::before {
    display: none;
  }
  .card--lg .comments .children .comment .comments__inner {
    padding-left: 86px;
  }
  .card--lg .comments .children .comment .comments__inner::before {
    content: "";
    display: block;
    position: absolute;
    left: 53px;
    top: 43px;
    width: 14px;
    height: 20px;
    border-left: 1px solid #3c3b5b;
    border-bottom: 1px solid #3c3b5b;
  }
  .card--lg .comments .children .comments--children .comment .comments__inner {
    padding-left: 129px;
  }
  .card--lg .comments .children .comments--children .comment .comments__inner::before {
    left: 96px;
  }
  .card--lg .comments .children .comments--children .comments--children .comment .comments__inner {
    padding-left: 172px;
  }
  .card--lg .comments .children .comments--children .comments--children .comment .comments__inner::before {
    left: 139px;
  }
  .card--lg .comments .children .comment {
    background-color: #363555;
  }
  .card--lg .comments .children .comment .comments__inner::before {
    display: none;
  }
}

.comments--left-thumb .comments__inner {
  border-bottom: none;
  display: flex;
  padding-top: 16px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .comments--left-thumb .comments__inner {
    flex-wrap: nowrap;
  }
}
.comments--left-thumb .comment__header {
  text-align: center;
  flex: 0 0 100%;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .comments--left-thumb .comment__header {
    flex: 0 0 160px;
  }
}
@media (min-width: 992px) {
  .comments--left-thumb .comment__header {
    flex: 0 0 180px;
    padding: 0 20px;
  }
}
@media (min-width: 1200px) {
  .comments--left-thumb .comment__header {
    flex: 0 0 200px;
  }
}
.comments--left-thumb .comment__author-avatar {
  display: block;
  margin: 0 auto 10px auto;
}
.comments--left-thumb .comment__author-name {
  font-size: 11px;
}
@media (min-width: 992px) {
  .comments--left-thumb .comment__author-name {
    font-size: 13px;
  }
}
.comments--left-thumb .comment__ratings .fa {
  font-size: 10px;
  margin: 0 1px;
}
.comments--left-thumb .comment__title {
  font-size: 12px;
  margin-bottom: 1.5em;
  padding-top: 0.33em;
}
@media (min-width: 768px) {
  .comments--left-thumb .comment__title {
    font-size: 18px;
  }
}

.post__comments-pagination {
  text-align: center;
  margin-left: -43px;
  margin-right: -43px;
  padding: 36px 43px;
}
.post__comments-pagination .pagination {
  margin: 0;
}

.comments--thumb-top {
  margin-bottom: 50px;
}
.comments--thumb-top .comment__author-avatar {
  border-radius: 4px;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.comments--thumb-top .comment__author-name {
  font-size: 13px;
  display: inline-block;
  margin-right: 0.5em;
  margin-bottom: 0;
  text-transform: none;
}
@media (min-width: 992px) {
  .comments--thumb-top .comment__author-name {
    font-size: 16px;
  }
}
.comments--thumb-top .star-rating {
  line-height: 1em;
  margin: 3px 0 0 0;
  text-align: left;
}
.comments--thumb-top .star-rating .fa {
  font-size: 10px;
}
.comments--thumb-top .comment__post-date {
  display: inline-block;
}
.comments--thumb-top .comment__title {
  font-size: 12px;
  margin-bottom: 1em;
  padding-top: 0.33em;
  text-transform: none;
}
@media (min-width: 768px) {
  .comments--thumb-top .comment__title {
    font-size: 18px;
  }
}

.comments--alt .comment-respond .post-comment-form__header {
  background-color: transparent;
}
.comments--alt .comments__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.comments--alt .comment__inner-wrap {
  flex: 1;
}
.comments--alt .comment__author-info {
  margin-bottom: 4px;
}
.comments--alt .comment__author-name {
  display: inline-block;
  margin-right: 0.3em;
  font-size: 14px;
  margin-bottom: 0;
  font-style: normal;
}
.comments--alt .comment__post-date {
  display: inline-block;
}
.comments--alt .comment__body {
  font-size: 11.998px;
  line-height: 1.8333em;
}
.comments--alt .comment__reply {
  font-family: "Exo 2", sans-serif;
  font-size: 10px;
  line-height: 1.2em;
  padding-top: 11px;
}
@media (min-width: 992px) {
  .comments--alt .comment__reply {
    position: static;
    float: none;
  }
}
.comments--alt .comment__reply-link {
  color: #fff;
}
.comments--alt .comment__reply-link:hover {
  color: #0fe3ab;
}
@media (min-width: 992px) {
  .card .comments--alt .children .comment .comments__inner, .comments--alt .children .comment .comments__inner {
    padding-left: 72px;
  }
  .card .comments--alt .children .comment .comments__inner::before, .comments--alt .children .comment .comments__inner::before {
    display: none;
  }
  .card .comments--alt .children .children .comment .comments__inner, .comments--alt .children .children .comment .comments__inner {
    padding-left: 96px;
  }
  .card .comments--alt .children .children .children .comment .comments__inner, .comments--alt .children .children .children .comment .comments__inner {
    padding-left: 120px;
  }
}

.comments .comment-respond {
  padding: 48px 0;
}
.comments .post-comment-form__content {
  padding: 0;
}
.comments .post-comment-form__header {
  padding: 0;
  border: none;
  margin-bottom: 24px;
}
.comments .post-comment-form__header::before {
  display: none;
}

.form-submit {
  margin-bottom: 0;
}

#cancel-comment-reply-link {
  color: #f92552;
  display: inline-block;
  padding: 0 0.5em;
}

/* Post Filter
/* ------------------------- */
.post-filter {
  background-color: #323150;
  border-bottom: 1px solid #3c3b5b;
  position: relative;
  z-index: 5;
}
@media (max-width: 767px) {
  .post-filter .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.post-filter__form {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .post-filter__form {
    flex-wrap: nowrap;
  }
}

.post-filter__select {
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .post-filter__select {
    width: 100%;
    max-width: 100%;
    flex-grow: 1;
    flex-basis: 0;
  }
  .post-filter__select + .post-filter__select div.cs-skin-border > span {
    margin-left: -1px;
  }
  .post-filter__select + .post-filter__select .cs-options {
    left: -1px;
    width: auto;
  }
}
.post-filter__select .cs-select {
  margin-bottom: -1px;
}
.post-filter__select .post-filter__label {
  display: block;
  position: absolute;
  left: 24px;
  top: 16px;
  z-index: 2;
  font-size: 8px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  color: #9e9caa;
}
@media (min-width: 992px) {
  .post-filter__select .post-filter__label {
    z-index: 201;
    top: 28px;
  }
}

.post-filter__submit {
  display: flex;
  width: 100%;
}
@media (min-width: 992px) {
  .post-filter__submit {
    width: 100%;
    max-width: 100%;
    flex-grow: 1;
    flex-basis: 0;
  }
}
.post-filter__submit .btn {
  border-radius: 0;
  border: none;
  width: 100%;
  max-width: 100%;
  flex-grow: 1;
  flex-basis: 0;
}

.post-filter--boxed {
  background-color: transparent;
  border-bottom: 0;
  padding-top: 30px;
}
@media (min-width: 992px) {
  .post-filter--boxed {
    padding-top: 60px;
    margin-bottom: -20px;
  }
}
.post-filter--boxed .post-filter__form {
  background-color: #323150;
  border: 1px solid #3c3b5b;
  border-radius: 4px;
}
.post-filter--boxed .post-filter__form .post-filter__select:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.post-filter--boxed .post-filter__form .post-filter__select:first-child div.cs-skin-border > span {
  border-left: 0;
}
.post-filter--boxed .cs-select .cs-options {
  left: -1px;
  width: calc(100% + 1px);
  border-top: 1px solid #3c3b5b;
  transition: all 0.2s ease;
  overflow: visible;
}
.post-filter--boxed .cs-select .cs-options::before, .post-filter--boxed .cs-select .cs-options::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
}
.post-filter--boxed .cs-select .cs-options::before {
  right: 18px;
  top: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #3c3b5b;
}
.post-filter--boxed .cs-select .cs-options::after {
  right: 20px;
  top: -7px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 7px solid #323150;
}
.post-filter--boxed .cs-select.cs-active .cs-options {
  transition: all 0.2s ease;
  transform: translateY(-2px);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  .post-filter--boxed .cs-select.cs-active .cs-options {
    transform: translateY(16px);
  }
}
.post-filter--boxed .post-filter__submit .btn {
  border-radius: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
@media (min-width: 992px) {
  .post-filter--boxed .post-filter__submit .btn {
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
  }
}

/* Blog Load More Posts */
.blog-load-more {
  padding: 30px 0 20px 0;
}
@media (min-width: 992px) {
  .blog-load-more {
    padding: 65px 0 40px 0;
  }
}
.blog-load-more .btn {
  margin: 0 auto;
}
@media (min-width: 992px) {
  .blog-load-more .btn {
    width: calc(33.3% + 60px);
  }
}

/* Wrapper */
/* Icon */
/* Loader */
.like-loader,
.like-loader:before,
.like-loader:after {
  background: rgba(0, 0, 0, 0.2);
  animation: load1 1s infinite ease-in-out;
  width: 0.2em;
  height: 0.6em;
}

.like-loader:before,
.like-loader:after {
  position: absolute;
  top: 0;
  content: "";
}

.like-loader:before {
  left: -0.375em;
  animation-delay: -0.32s;
}

.like-loader {
  text-indent: -9999em;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  font-size: 1em;
  transform: translateZ(0);
  animation-delay: -0.16s;
  margin-left: 0.75em;
}
.like-loader::after {
  left: 0.375em;
}

@keyframes load1 {
  0%, 80%, 100% {
    box-shadow: 0 0 rgba(0, 0, 0, 0.2);
    height: 0.6em;
  }
  40% {
    box-shadow: 0 -0.3em rgba(0, 0, 0, 0.2);
    height: 1em;
  }
}
/*
// #Widgets
// --------------------------------------------------
*/
.sidebar {
  overflow: hidden;
}

/* Base Widget */
.widget__title {
  text-transform: uppercase;
}

.widget--sidebar .widget__content {
  display: none;
}
.widget--sidebar .widget__title + .widget__content,
.widget--sidebar .widget__content:only-child,
.widget--sidebar .widget__content + .widget__content {
  display: block;
}

.widget__content-inner {
  padding: 24px 24px;
}

.widget__content--bottom-decor {
  padding-bottom: 30px;
  background-image: linear-gradient(to right, rgba(60, 59, 91, 0.5) 8px, transparent 8px), linear-gradient(to right, rgba(60, 59, 91, 0.5) 8px, transparent 8px), linear-gradient(to right, rgba(60, 59, 91, 0.5) 8px, transparent 8px), linear-gradient(to right, rgba(60, 59, 91, 0.5) 8px, transparent 8px), linear-gradient(to right, rgba(60, 59, 91, 0.5) 8px, transparent 8px), linear-gradient(to right, rgba(60, 59, 91, 0.5) 8px, transparent 8px), linear-gradient(to right, #2a2943 8px, transparent 8px), linear-gradient(to right, #222237 8px, transparent 8px);
  background-repeat: repeat-x;
  background-size: 72px 24px, 72px 30px, 72px 34px, 72px 40px, 72px 37px, 72px 29px, 144px 30px, 216px 37px;
  background-position: 0 100%, 12px 100%, 24px 100%, 36px 100%, 48px 100%, 60px 100%, 12px 100%, 48px 100%;
}

/* Pushy Panel Widget */
.widget--side-panel {
  margin-bottom: 62px;
}
.widget--side-panel .widget__title {
  margin-bottom: 30px;
  font-size: 16px;
  text-transform: uppercase;
}

/* Sidebar Widget */
.widget--sidebar {
  margin-bottom: 15px;
}
.widget--sidebar .widget__content {
  font-size: 13px;
  line-height: 22px;
}

/* Footer Widget */
.widget--footer .widget__title {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  margin-bottom: 2.4em;
}
@media (max-width: 767px) {
  .widget--footer .widget__title {
    margin-bottom: 2em;
  }
}
.widget--footer + .widget--footer {
  margin-top: 30px;
}

@media (max-width: 991px) {
  .footer-widgets .row > [class*=col-] .widget--footer {
    margin-bottom: 60px;
  }
  .footer-widgets .row > [class*=col-]:last-child .widget--footer {
    margin-bottom: 0;
  }
  .footer-widgets .row > [class*=col-].col-sm-6:nth-child(3n) {
    clear: left;
  }
}

/* Image Widget */
.widget_media_image .card__content {
  text-align: center;
  padding-top: 38px;
  padding-bottom: 38px;
}

/* Reset columns in Sidebar, Footer and Pushy Panel */
/* Widget: Achievements */
.alc-achievements__content {
  text-align: center;
  padding: 32px 0 36px 0;
}

.alc-achievements__icon {
  margin: 0 auto 13px auto;
}

.alc-achievements__event-title {
  font-style: normal;
  margin-bottom: 0.15em;
}

.alc-achievements__event-date {
  font-family: "Exo 2", sans-serif;
  font-size: 10px;
  line-height: 1.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.alc-achievements__meta {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #3c3b5b;
}

.alc-achievements__meta-item {
  border-right: 1px solid #3c3b5b;
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  text-align: center;
  padding: 24px 12px;
}
.alc-achievements__meta-item:last-child {
  border-right: 0;
}

.alc-achievements__meta-value {
  font-size: 16px;
  line-height: 1.2em;
  margin-bottom: 0.4em;
}

.alc-achievements__meta-name {
  font-size: 9px;
  line-height: 1.2em;
}

/* Widget: Lists */
.widget_archive ul:first-child,
.widget_archive .widget__title + ul, .megamenu-widgets-container .widget_archive ul,
.widget_nav_menu ul:first-child,
.widget_nav_menu .widget__title + ul,
.megamenu-widgets-container .widget_nav_menu ul,
.widget_meta ul:first-child,
.widget_meta .widget__title + ul,
.megamenu-widgets-container .widget_meta ul,
.widget_pages ul:first-child,
.widget_pages .widget__title + ul,
.megamenu-widgets-container .widget_pages ul,
.widget_recent_comments ul:first-child,
.widget_recent_comments .widget__title + ul,
.megamenu-widgets-container .widget_recent_comments ul,
.widget_recent_entries ul:first-child,
.widget_recent_entries .widget__title + ul,
.megamenu-widgets-container .widget_recent_entries ul,
.widget_categories ul:first-child,
.widget_categories .widget__title + ul,
.megamenu-widgets-container .widget_categories ul,
.widget_rss ul:first-child,
.widget_rss .widget__title + ul,
.megamenu-widgets-container .widget_rss ul,
.widget_product_categories ul:first-child,
.widget_product_categories .widget__title + ul,
.megamenu-widgets-container .widget_product_categories ul {
  list-style: none;
  padding: 0;
  margin-left: -24px;
  margin-right: -24px;
  margin-top: -24px;
  margin-bottom: -24px;
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2em;
}
.widget_archive ul:first-child > li,
.widget_archive .widget__title + ul > li, .megamenu-widgets-container .widget_archive ul > li,
.widget_nav_menu ul:first-child > li,
.widget_nav_menu .widget__title + ul > li,
.megamenu-widgets-container .widget_nav_menu ul > li,
.widget_meta ul:first-child > li,
.widget_meta .widget__title + ul > li,
.megamenu-widgets-container .widget_meta ul > li,
.widget_pages ul:first-child > li,
.widget_pages .widget__title + ul > li,
.megamenu-widgets-container .widget_pages ul > li,
.widget_recent_comments ul:first-child > li,
.widget_recent_comments .widget__title + ul > li,
.megamenu-widgets-container .widget_recent_comments ul > li,
.widget_recent_entries ul:first-child > li,
.widget_recent_entries .widget__title + ul > li,
.megamenu-widgets-container .widget_recent_entries ul > li,
.widget_categories ul:first-child > li,
.widget_categories .widget__title + ul > li,
.megamenu-widgets-container .widget_categories ul > li,
.widget_rss ul:first-child > li,
.widget_rss .widget__title + ul > li,
.megamenu-widgets-container .widget_rss ul > li,
.widget_product_categories ul:first-child > li,
.widget_product_categories .widget__title + ul > li,
.megamenu-widgets-container .widget_product_categories ul > li {
  position: relative;
  padding: 0;
}
.widget_archive ul:first-child > li::before,
.widget_archive .widget__title + ul > li::before, .megamenu-widgets-container .widget_archive ul > li::before,
.widget_nav_menu ul:first-child > li::before,
.widget_nav_menu .widget__title + ul > li::before,
.megamenu-widgets-container .widget_nav_menu ul > li::before,
.widget_meta ul:first-child > li::before,
.widget_meta .widget__title + ul > li::before,
.megamenu-widgets-container .widget_meta ul > li::before,
.widget_pages ul:first-child > li::before,
.widget_pages .widget__title + ul > li::before,
.megamenu-widgets-container .widget_pages ul > li::before,
.widget_recent_comments ul:first-child > li::before,
.widget_recent_comments .widget__title + ul > li::before,
.megamenu-widgets-container .widget_recent_comments ul > li::before,
.widget_recent_entries ul:first-child > li::before,
.widget_recent_entries .widget__title + ul > li::before,
.megamenu-widgets-container .widget_recent_entries ul > li::before,
.widget_categories ul:first-child > li::before,
.widget_categories .widget__title + ul > li::before,
.megamenu-widgets-container .widget_categories ul > li::before,
.widget_rss ul:first-child > li::before,
.widget_rss .widget__title + ul > li::before,
.megamenu-widgets-container .widget_rss ul > li::before,
.widget_product_categories ul:first-child > li::before,
.widget_product_categories .widget__title + ul > li::before,
.megamenu-widgets-container .widget_product_categories ul > li::before {
  display: none;
}
.widget_archive ul:first-child > li + li,
.widget_archive .widget__title + ul > li + li, .megamenu-widgets-container .widget_archive ul > li + li,
.widget_nav_menu ul:first-child > li + li,
.widget_nav_menu .widget__title + ul > li + li,
.megamenu-widgets-container .widget_nav_menu ul > li + li,
.widget_meta ul:first-child > li + li,
.widget_meta .widget__title + ul > li + li,
.megamenu-widgets-container .widget_meta ul > li + li,
.widget_pages ul:first-child > li + li,
.widget_pages .widget__title + ul > li + li,
.megamenu-widgets-container .widget_pages ul > li + li,
.widget_recent_comments ul:first-child > li + li,
.widget_recent_comments .widget__title + ul > li + li,
.megamenu-widgets-container .widget_recent_comments ul > li + li,
.widget_recent_entries ul:first-child > li + li,
.widget_recent_entries .widget__title + ul > li + li,
.megamenu-widgets-container .widget_recent_entries ul > li + li,
.widget_categories ul:first-child > li + li,
.widget_categories .widget__title + ul > li + li,
.megamenu-widgets-container .widget_categories ul > li + li,
.widget_rss ul:first-child > li + li,
.widget_rss .widget__title + ul > li + li,
.megamenu-widgets-container .widget_rss ul > li + li,
.widget_product_categories ul:first-child > li + li,
.widget_product_categories .widget__title + ul > li + li,
.megamenu-widgets-container .widget_product_categories ul > li + li {
  border-top: 1px solid #3c3b5b;
}
.widget_archive ul:first-child > li > a,
.widget_archive .widget__title + ul > li > a, .megamenu-widgets-container .widget_archive ul > li > a,
.widget_nav_menu ul:first-child > li > a,
.widget_nav_menu .widget__title + ul > li > a,
.megamenu-widgets-container .widget_nav_menu ul > li > a,
.widget_meta ul:first-child > li > a,
.widget_meta .widget__title + ul > li > a,
.megamenu-widgets-container .widget_meta ul > li > a,
.widget_pages ul:first-child > li > a,
.widget_pages .widget__title + ul > li > a,
.megamenu-widgets-container .widget_pages ul > li > a,
.widget_recent_comments ul:first-child > li > a,
.widget_recent_comments .widget__title + ul > li > a,
.megamenu-widgets-container .widget_recent_comments ul > li > a,
.widget_recent_entries ul:first-child > li > a,
.widget_recent_entries .widget__title + ul > li > a,
.megamenu-widgets-container .widget_recent_entries ul > li > a,
.widget_categories ul:first-child > li > a,
.widget_categories .widget__title + ul > li > a,
.megamenu-widgets-container .widget_categories ul > li > a,
.widget_rss ul:first-child > li > a,
.widget_rss .widget__title + ul > li > a,
.megamenu-widgets-container .widget_rss ul > li > a,
.widget_product_categories ul:first-child > li > a,
.widget_product_categories .widget__title + ul > li > a,
.megamenu-widgets-container .widget_product_categories ul > li > a {
  display: block;
  padding: 22px 24px;
  color: #fff;
  transition: color 0.3s ease;
}
.widget_archive ul:first-child > li > a:hover,
.widget_archive .widget__title + ul > li > a:hover, .megamenu-widgets-container .widget_archive ul > li > a:hover,
.widget_nav_menu ul:first-child > li > a:hover,
.widget_nav_menu .widget__title + ul > li > a:hover,
.megamenu-widgets-container .widget_nav_menu ul > li > a:hover,
.widget_meta ul:first-child > li > a:hover,
.widget_meta .widget__title + ul > li > a:hover,
.megamenu-widgets-container .widget_meta ul > li > a:hover,
.widget_pages ul:first-child > li > a:hover,
.widget_pages .widget__title + ul > li > a:hover,
.megamenu-widgets-container .widget_pages ul > li > a:hover,
.widget_recent_comments ul:first-child > li > a:hover,
.widget_recent_comments .widget__title + ul > li > a:hover,
.megamenu-widgets-container .widget_recent_comments ul > li > a:hover,
.widget_recent_entries ul:first-child > li > a:hover,
.widget_recent_entries .widget__title + ul > li > a:hover,
.megamenu-widgets-container .widget_recent_entries ul > li > a:hover,
.widget_categories ul:first-child > li > a:hover,
.widget_categories .widget__title + ul > li > a:hover,
.megamenu-widgets-container .widget_categories ul > li > a:hover,
.widget_rss ul:first-child > li > a:hover,
.widget_rss .widget__title + ul > li > a:hover,
.megamenu-widgets-container .widget_rss ul > li > a:hover,
.widget_product_categories ul:first-child > li > a:hover,
.widget_product_categories .widget__title + ul > li > a:hover,
.megamenu-widgets-container .widget_product_categories ul > li > a:hover {
  color: #f92552;
}
.widget_archive ul:first-child > li.cat-item-none,
.widget_archive .widget__title + ul > li.cat-item-none, .megamenu-widgets-container .widget_archive ul > li.cat-item-none,
.widget_nav_menu ul:first-child > li.cat-item-none,
.widget_nav_menu .widget__title + ul > li.cat-item-none,
.megamenu-widgets-container .widget_nav_menu ul > li.cat-item-none,
.widget_meta ul:first-child > li.cat-item-none,
.widget_meta .widget__title + ul > li.cat-item-none,
.megamenu-widgets-container .widget_meta ul > li.cat-item-none,
.widget_pages ul:first-child > li.cat-item-none,
.widget_pages .widget__title + ul > li.cat-item-none,
.megamenu-widgets-container .widget_pages ul > li.cat-item-none,
.widget_recent_comments ul:first-child > li.cat-item-none,
.widget_recent_comments .widget__title + ul > li.cat-item-none,
.megamenu-widgets-container .widget_recent_comments ul > li.cat-item-none,
.widget_recent_entries ul:first-child > li.cat-item-none,
.widget_recent_entries .widget__title + ul > li.cat-item-none,
.megamenu-widgets-container .widget_recent_entries ul > li.cat-item-none,
.widget_categories ul:first-child > li.cat-item-none,
.widget_categories .widget__title + ul > li.cat-item-none,
.megamenu-widgets-container .widget_categories ul > li.cat-item-none,
.widget_rss ul:first-child > li.cat-item-none,
.widget_rss .widget__title + ul > li.cat-item-none,
.megamenu-widgets-container .widget_rss ul > li.cat-item-none,
.widget_product_categories ul:first-child > li.cat-item-none,
.widget_product_categories .widget__title + ul > li.cat-item-none,
.megamenu-widgets-container .widget_product_categories ul > li.cat-item-none {
  padding: 24px 24px;
}
.widget_archive ul:first-child ul,
.widget_archive .widget__title + ul ul, .megamenu-widgets-container .widget_archive ul ul,
.widget_nav_menu ul:first-child ul,
.widget_nav_menu .widget__title + ul ul,
.megamenu-widgets-container .widget_nav_menu ul ul,
.widget_meta ul:first-child ul,
.widget_meta .widget__title + ul ul,
.megamenu-widgets-container .widget_meta ul ul,
.widget_pages ul:first-child ul,
.widget_pages .widget__title + ul ul,
.megamenu-widgets-container .widget_pages ul ul,
.widget_recent_comments ul:first-child ul,
.widget_recent_comments .widget__title + ul ul,
.megamenu-widgets-container .widget_recent_comments ul ul,
.widget_recent_entries ul:first-child ul,
.widget_recent_entries .widget__title + ul ul,
.megamenu-widgets-container .widget_recent_entries ul ul,
.widget_categories ul:first-child ul,
.widget_categories .widget__title + ul ul,
.megamenu-widgets-container .widget_categories ul ul,
.widget_rss ul:first-child ul,
.widget_rss .widget__title + ul ul,
.megamenu-widgets-container .widget_rss ul ul,
.widget_product_categories ul:first-child ul,
.widget_product_categories .widget__title + ul ul,
.megamenu-widgets-container .widget_product_categories ul ul {
  border-top: 1px solid #3c3b5b;
  list-style: none;
  margin: 0;
  padding: 18px 24px 18px 39px;
  background-color: #282840;
  font-size: 10px;
}
.widget_archive ul:first-child ul li,
.widget_archive .widget__title + ul ul li, .megamenu-widgets-container .widget_archive ul ul li,
.widget_nav_menu ul:first-child ul li,
.widget_nav_menu .widget__title + ul ul li,
.megamenu-widgets-container .widget_nav_menu ul ul li,
.widget_meta ul:first-child ul li,
.widget_meta .widget__title + ul ul li,
.megamenu-widgets-container .widget_meta ul ul li,
.widget_pages ul:first-child ul li,
.widget_pages .widget__title + ul ul li,
.megamenu-widgets-container .widget_pages ul ul li,
.widget_recent_comments ul:first-child ul li,
.widget_recent_comments .widget__title + ul ul li,
.megamenu-widgets-container .widget_recent_comments ul ul li,
.widget_recent_entries ul:first-child ul li,
.widget_recent_entries .widget__title + ul ul li,
.megamenu-widgets-container .widget_recent_entries ul ul li,
.widget_categories ul:first-child ul li,
.widget_categories .widget__title + ul ul li,
.megamenu-widgets-container .widget_categories ul ul li,
.widget_rss ul:first-child ul li,
.widget_rss .widget__title + ul ul li,
.megamenu-widgets-container .widget_rss ul ul li,
.widget_product_categories ul:first-child ul li,
.widget_product_categories .widget__title + ul ul li,
.megamenu-widgets-container .widget_product_categories ul ul li {
  padding: 10px 24px 10px 0;
  position: relative;
}
.widget_archive ul:first-child ul li a,
.widget_archive .widget__title + ul ul li a, .megamenu-widgets-container .widget_archive ul ul li a,
.widget_nav_menu ul:first-child ul li a,
.widget_nav_menu .widget__title + ul ul li a,
.megamenu-widgets-container .widget_nav_menu ul ul li a,
.widget_meta ul:first-child ul li a,
.widget_meta .widget__title + ul ul li a,
.megamenu-widgets-container .widget_meta ul ul li a,
.widget_pages ul:first-child ul li a,
.widget_pages .widget__title + ul ul li a,
.megamenu-widgets-container .widget_pages ul ul li a,
.widget_recent_comments ul:first-child ul li a,
.widget_recent_comments .widget__title + ul ul li a,
.megamenu-widgets-container .widget_recent_comments ul ul li a,
.widget_recent_entries ul:first-child ul li a,
.widget_recent_entries .widget__title + ul ul li a,
.megamenu-widgets-container .widget_recent_entries ul ul li a,
.widget_categories ul:first-child ul li a,
.widget_categories .widget__title + ul ul li a,
.megamenu-widgets-container .widget_categories ul ul li a,
.widget_rss ul:first-child ul li a,
.widget_rss .widget__title + ul ul li a,
.megamenu-widgets-container .widget_rss ul ul li a,
.widget_product_categories ul:first-child ul li a,
.widget_product_categories .widget__title + ul ul li a,
.megamenu-widgets-container .widget_product_categories ul ul li a {
  color: #9e9caa;
  transition: color 0.3s ease;
}
.widget_archive ul:first-child ul li a:hover,
.widget_archive .widget__title + ul ul li a:hover, .megamenu-widgets-container .widget_archive ul ul li a:hover,
.widget_nav_menu ul:first-child ul li a:hover,
.widget_nav_menu .widget__title + ul ul li a:hover,
.megamenu-widgets-container .widget_nav_menu ul ul li a:hover,
.widget_meta ul:first-child ul li a:hover,
.widget_meta .widget__title + ul ul li a:hover,
.megamenu-widgets-container .widget_meta ul ul li a:hover,
.widget_pages ul:first-child ul li a:hover,
.widget_pages .widget__title + ul ul li a:hover,
.megamenu-widgets-container .widget_pages ul ul li a:hover,
.widget_recent_comments ul:first-child ul li a:hover,
.widget_recent_comments .widget__title + ul ul li a:hover,
.megamenu-widgets-container .widget_recent_comments ul ul li a:hover,
.widget_recent_entries ul:first-child ul li a:hover,
.widget_recent_entries .widget__title + ul ul li a:hover,
.megamenu-widgets-container .widget_recent_entries ul ul li a:hover,
.widget_categories ul:first-child ul li a:hover,
.widget_categories .widget__title + ul ul li a:hover,
.megamenu-widgets-container .widget_categories ul ul li a:hover,
.widget_rss ul:first-child ul li a:hover,
.widget_rss .widget__title + ul ul li a:hover,
.megamenu-widgets-container .widget_rss ul ul li a:hover,
.widget_product_categories ul:first-child ul li a:hover,
.widget_product_categories .widget__title + ul ul li a:hover,
.megamenu-widgets-container .widget_product_categories ul ul li a:hover {
  color: #fff;
}
.widget_archive ul:first-child ul li .count,
.widget_archive .widget__title + ul ul li .count, .megamenu-widgets-container .widget_archive ul ul li .count,
.widget_nav_menu ul:first-child ul li .count,
.widget_nav_menu .widget__title + ul ul li .count,
.megamenu-widgets-container .widget_nav_menu ul ul li .count,
.widget_meta ul:first-child ul li .count,
.widget_meta .widget__title + ul ul li .count,
.megamenu-widgets-container .widget_meta ul ul li .count,
.widget_pages ul:first-child ul li .count,
.widget_pages .widget__title + ul ul li .count,
.megamenu-widgets-container .widget_pages ul ul li .count,
.widget_recent_comments ul:first-child ul li .count,
.widget_recent_comments .widget__title + ul ul li .count,
.megamenu-widgets-container .widget_recent_comments ul ul li .count,
.widget_recent_entries ul:first-child ul li .count,
.widget_recent_entries .widget__title + ul ul li .count,
.megamenu-widgets-container .widget_recent_entries ul ul li .count,
.widget_categories ul:first-child ul li .count,
.widget_categories .widget__title + ul ul li .count,
.megamenu-widgets-container .widget_categories ul ul li .count,
.widget_rss ul:first-child ul li .count,
.widget_rss .widget__title + ul ul li .count,
.megamenu-widgets-container .widget_rss ul ul li .count,
.widget_product_categories ul:first-child ul li .count,
.widget_product_categories .widget__title + ul ul li .count,
.megamenu-widgets-container .widget_product_categories ul ul li .count {
  top: 10px;
  right: 0;
}
.widget_archive ul:first-child ul ul,
.widget_archive .widget__title + ul ul ul, .megamenu-widgets-container .widget_archive ul ul ul,
.widget_nav_menu ul:first-child ul ul,
.widget_nav_menu .widget__title + ul ul ul,
.megamenu-widgets-container .widget_nav_menu ul ul ul,
.widget_meta ul:first-child ul ul,
.widget_meta .widget__title + ul ul ul,
.megamenu-widgets-container .widget_meta ul ul ul,
.widget_pages ul:first-child ul ul,
.widget_pages .widget__title + ul ul ul,
.megamenu-widgets-container .widget_pages ul ul ul,
.widget_recent_comments ul:first-child ul ul,
.widget_recent_comments .widget__title + ul ul ul,
.megamenu-widgets-container .widget_recent_comments ul ul ul,
.widget_recent_entries ul:first-child ul ul,
.widget_recent_entries .widget__title + ul ul ul,
.megamenu-widgets-container .widget_recent_entries ul ul ul,
.widget_categories ul:first-child ul ul,
.widget_categories .widget__title + ul ul ul,
.megamenu-widgets-container .widget_categories ul ul ul,
.widget_rss ul:first-child ul ul,
.widget_rss .widget__title + ul ul ul,
.megamenu-widgets-container .widget_rss ul ul ul,
.widget_product_categories ul:first-child ul ul,
.widget_product_categories .widget__title + ul ul ul,
.megamenu-widgets-container .widget_product_categories ul ul ul {
  border-top: none;
  padding-left: 15px;
  padding-bottom: 0;
}
.widget_archive ul:first-child .count,
.widget_archive .widget__title + ul .count, .megamenu-widgets-container .widget_archive ul .count,
.widget_nav_menu ul:first-child .count,
.widget_nav_menu .widget__title + ul .count,
.megamenu-widgets-container .widget_nav_menu ul .count,
.widget_meta ul:first-child .count,
.widget_meta .widget__title + ul .count,
.megamenu-widgets-container .widget_meta ul .count,
.widget_pages ul:first-child .count,
.widget_pages .widget__title + ul .count,
.megamenu-widgets-container .widget_pages ul .count,
.widget_recent_comments ul:first-child .count,
.widget_recent_comments .widget__title + ul .count,
.megamenu-widgets-container .widget_recent_comments ul .count,
.widget_recent_entries ul:first-child .count,
.widget_recent_entries .widget__title + ul .count,
.megamenu-widgets-container .widget_recent_entries ul .count,
.widget_categories ul:first-child .count,
.widget_categories .widget__title + ul .count,
.megamenu-widgets-container .widget_categories ul .count,
.widget_rss ul:first-child .count,
.widget_rss .widget__title + ul .count,
.megamenu-widgets-container .widget_rss ul .count,
.widget_product_categories ul:first-child .count,
.widget_product_categories .widget__title + ul .count,
.megamenu-widgets-container .widget_product_categories ul .count {
  display: block;
  position: absolute;
  right: 24px;
  top: 22px;
}
.widget_archive.widget--footer ul:first-child, .widget__title + .widget_archive.widget--footer,
.widget_nav_menu.widget--footer ul:first-child,
.widget__title + .widget_nav_menu.widget--footer,
.widget_meta.widget--footer ul:first-child,
.widget__title + .widget_meta.widget--footer,
.widget_pages.widget--footer ul:first-child,
.widget__title + .widget_pages.widget--footer,
.widget_recent_comments.widget--footer ul:first-child,
.widget__title + .widget_recent_comments.widget--footer,
.widget_recent_entries.widget--footer ul:first-child,
.widget__title + .widget_recent_entries.widget--footer,
.widget_categories.widget--footer ul:first-child,
.widget__title + .widget_categories.widget--footer,
.widget_rss.widget--footer ul:first-child,
.widget__title + .widget_rss.widget--footer,
.widget_product_categories.widget--footer ul:first-child,
.widget__title + .widget_product_categories.widget--footer {
  margin: 0;
  padding: 0;
}
.widget_archive.widget--footer ul:first-child > li + li, .widget__title + .widget_archive.widget--footer > li + li,
.widget_nav_menu.widget--footer ul:first-child > li + li,
.widget__title + .widget_nav_menu.widget--footer > li + li,
.widget_meta.widget--footer ul:first-child > li + li,
.widget__title + .widget_meta.widget--footer > li + li,
.widget_pages.widget--footer ul:first-child > li + li,
.widget__title + .widget_pages.widget--footer > li + li,
.widget_recent_comments.widget--footer ul:first-child > li + li,
.widget__title + .widget_recent_comments.widget--footer > li + li,
.widget_recent_entries.widget--footer ul:first-child > li + li,
.widget__title + .widget_recent_entries.widget--footer > li + li,
.widget_categories.widget--footer ul:first-child > li + li,
.widget__title + .widget_categories.widget--footer > li + li,
.widget_rss.widget--footer ul:first-child > li + li,
.widget__title + .widget_rss.widget--footer > li + li,
.widget_product_categories.widget--footer ul:first-child > li + li,
.widget__title + .widget_product_categories.widget--footer > li + li {
  border-top: none;
}
.widget_archive.widget--footer ul:first-child > li > a, .widget__title + .widget_archive.widget--footer > li > a,
.widget_nav_menu.widget--footer ul:first-child > li > a,
.widget__title + .widget_nav_menu.widget--footer > li > a,
.widget_meta.widget--footer ul:first-child > li > a,
.widget__title + .widget_meta.widget--footer > li > a,
.widget_pages.widget--footer ul:first-child > li > a,
.widget__title + .widget_pages.widget--footer > li > a,
.widget_recent_comments.widget--footer ul:first-child > li > a,
.widget__title + .widget_recent_comments.widget--footer > li > a,
.widget_recent_entries.widget--footer ul:first-child > li > a,
.widget__title + .widget_recent_entries.widget--footer > li > a,
.widget_categories.widget--footer ul:first-child > li > a,
.widget__title + .widget_categories.widget--footer > li > a,
.widget_rss.widget--footer ul:first-child > li > a,
.widget__title + .widget_rss.widget--footer > li > a,
.widget_product_categories.widget--footer ul:first-child > li > a,
.widget__title + .widget_product_categories.widget--footer > li > a {
  padding: 10px 0;
  color: #fff;
}
.widget_archive.widget--footer ul:first-child > li > a:hover, .widget__title + .widget_archive.widget--footer > li > a:hover,
.widget_nav_menu.widget--footer ul:first-child > li > a:hover,
.widget__title + .widget_nav_menu.widget--footer > li > a:hover,
.widget_meta.widget--footer ul:first-child > li > a:hover,
.widget__title + .widget_meta.widget--footer > li > a:hover,
.widget_pages.widget--footer ul:first-child > li > a:hover,
.widget__title + .widget_pages.widget--footer > li > a:hover,
.widget_recent_comments.widget--footer ul:first-child > li > a:hover,
.widget__title + .widget_recent_comments.widget--footer > li > a:hover,
.widget_recent_entries.widget--footer ul:first-child > li > a:hover,
.widget__title + .widget_recent_entries.widget--footer > li > a:hover,
.widget_categories.widget--footer ul:first-child > li > a:hover,
.widget__title + .widget_categories.widget--footer > li > a:hover,
.widget_rss.widget--footer ul:first-child > li > a:hover,
.widget__title + .widget_rss.widget--footer > li > a:hover,
.widget_product_categories.widget--footer ul:first-child > li > a:hover,
.widget__title + .widget_product_categories.widget--footer > li > a:hover {
  color: #f92552;
}
.widget_archive.widget--footer ul:first-child ul, .widget__title + .widget_archive.widget--footer ul,
.widget_nav_menu.widget--footer ul:first-child ul,
.widget__title + .widget_nav_menu.widget--footer ul,
.widget_meta.widget--footer ul:first-child ul,
.widget__title + .widget_meta.widget--footer ul,
.widget_pages.widget--footer ul:first-child ul,
.widget__title + .widget_pages.widget--footer ul,
.widget_recent_comments.widget--footer ul:first-child ul,
.widget__title + .widget_recent_comments.widget--footer ul,
.widget_recent_entries.widget--footer ul:first-child ul,
.widget__title + .widget_recent_entries.widget--footer ul,
.widget_categories.widget--footer ul:first-child ul,
.widget__title + .widget_categories.widget--footer ul,
.widget_rss.widget--footer ul:first-child ul,
.widget__title + .widget_rss.widget--footer ul,
.widget_product_categories.widget--footer ul:first-child ul,
.widget__title + .widget_product_categories.widget--footer ul {
  border-top: none;
  padding: 0 0 0 15px;
}
.widget_archive.widget--footer ul:first-child ul li a, .widget__title + .widget_archive.widget--footer ul li a,
.widget_nav_menu.widget--footer ul:first-child ul li a,
.widget__title + .widget_nav_menu.widget--footer ul li a,
.widget_meta.widget--footer ul:first-child ul li a,
.widget__title + .widget_meta.widget--footer ul li a,
.widget_pages.widget--footer ul:first-child ul li a,
.widget__title + .widget_pages.widget--footer ul li a,
.widget_recent_comments.widget--footer ul:first-child ul li a,
.widget__title + .widget_recent_comments.widget--footer ul li a,
.widget_recent_entries.widget--footer ul:first-child ul li a,
.widget__title + .widget_recent_entries.widget--footer ul li a,
.widget_categories.widget--footer ul:first-child ul li a,
.widget__title + .widget_categories.widget--footer ul li a,
.widget_rss.widget--footer ul:first-child ul li a,
.widget__title + .widget_rss.widget--footer ul li a,
.widget_product_categories.widget--footer ul:first-child ul li a,
.widget__title + .widget_product_categories.widget--footer ul li a {
  color: #fff;
}
.widget_archive.widget--footer ul:first-child ul li a:hover, .widget__title + .widget_archive.widget--footer ul li a:hover,
.widget_nav_menu.widget--footer ul:first-child ul li a:hover,
.widget__title + .widget_nav_menu.widget--footer ul li a:hover,
.widget_meta.widget--footer ul:first-child ul li a:hover,
.widget__title + .widget_meta.widget--footer ul li a:hover,
.widget_pages.widget--footer ul:first-child ul li a:hover,
.widget__title + .widget_pages.widget--footer ul li a:hover,
.widget_recent_comments.widget--footer ul:first-child ul li a:hover,
.widget__title + .widget_recent_comments.widget--footer ul li a:hover,
.widget_recent_entries.widget--footer ul:first-child ul li a:hover,
.widget__title + .widget_recent_entries.widget--footer ul li a:hover,
.widget_categories.widget--footer ul:first-child ul li a:hover,
.widget__title + .widget_categories.widget--footer ul li a:hover,
.widget_rss.widget--footer ul:first-child ul li a:hover,
.widget__title + .widget_rss.widget--footer ul li a:hover,
.widget_product_categories.widget--footer ul:first-child ul li a:hover,
.widget__title + .widget_product_categories.widget--footer ul li a:hover {
  color: #f92552;
}

.widget_nav_menu.widget--sidebar .sub-menu li, .widget_nav_menu.widget--footer .sub-menu li, .widget_nav_menu.widget--side-panel .sub-menu li {
  width: 100% !important;
  float: none;
}

.widget_recent_entries .post-date {
  display: block;
  margin-bottom: 10px;
}
.widget_recent_entries:not(.widget--footer) .post-date {
  padding: 0 24px 22px;
  margin-top: -12px;
  margin-bottom: 0;
}

.widget_recent_comments ul:first-child > li {
  padding: 22px 24px;
}
.widget_recent_comments ul:first-child > li > a {
  display: inline;
  padding: 0;
}
.widget_recent_comments.widget--footer ul {
  padding: 0;
}
.widget_recent_comments.widget--footer ul > li {
  font-family: "Roboto", sans-serif;
  text-transform: none;
  font-weight: 400;
  font-size: 13px;
  line-height: 22px;
}
.widget_recent_comments.widget--footer ul > li + li {
  margin-top: 1em;
}

.widget_rss ul:first-child > li,
.widget_rss .widget__title + ul > li {
  padding: 22px 24px;
}
.widget_rss ul:first-child > li::before,
.widget_rss .widget__title + ul > li::before {
  display: none !important;
}
.widget_rss ul:first-child > li > a,
.widget_rss .widget__title + ul > li > a {
  padding: 0;
}
.widget_rss ul:first-child > li .rss-date,
.widget_rss .widget__title + ul > li .rss-date {
  display: block;
  margin-top: 0.5em;
  font-size: 9px;
  font-weight: 400;
}
.widget_rss ul:first-child > li .rssSummary,
.widget_rss .widget__title + ul > li .rssSummary {
  margin-top: 0.75em;
  font-family: "Roboto", sans-serif;
  text-transform: none;
  font-weight: 400;
  font-size: 13px;
  line-height: 22px;
}
.widget_rss ul:first-child > li cite,
.widget_rss .widget__title + ul > li cite {
  display: block;
  font-family: "Roboto", sans-serif;
  margin-top: 0.75em;
  text-transform: none;
}
.widget_rss.widget--footer ul > li {
  padding: 0;
}
.widget_rss.widget--footer ul > li + li {
  margin-top: 2em;
}
.widget_rss.widget--footer ul > li > a {
  color: #fff;
}
.widget_rss.widget--footer ul > li .rssSummary {
  font-size: 13px;
  line-height: 22px;
}

/*
// #Widget - Instagram
// --------------------------------------------------
*/
#sb_instagram {
  --images_padding: 0px;
}
#sb_instagram #sb_instagram_header {
  padding: 0 !important;
  margin-bottom: 20px;
}
#sb_instagram #sbi_images {
  padding: 0 !important;
  width: calc(100% + var(--images_padding) * 2);
  margin-top: calc(var(--images_padding) * -1);
  margin-left: calc(var(--images_padding) * -1);
  margin-right: calc(var(--images_padding) * -1);
}
#sb_instagram #sbi_images .sbi_item {
  padding: var(--images_padding) !important;
}
#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo {
  border-radius: 4px;
}
#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: #f92552;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translate3d(0, 0, 0);
}
#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo::after {
  content: "\f067";
  display: block;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  text-rendering: auto;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 1.5em;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.3s ease;
}
#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo:hover::before {
  opacity: 0.8;
}
#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo:hover::after {
  transform: translate(-50%, -50%) scale(1);
}
#sb_instagram #sbi_load {
  text-align: left;
}
#sb_instagram #sbi_load .sbi_follow_btn {
  text-align: left;
  margin-left: 0;
}
#sb_instagram #sbi_load .sbi_follow_btn > a {
  border: 1px solid transparent;
  font-weight: 700;
  font-family: "Exo 2", sans-serif;
  font-style: normal;
  text-transform: uppercase;
  transition: all 0.3s ease;
  vertical-align: middle;
  padding: 13px 42px;
  font-size: 12px;
  line-height: 1.5em;
  border-radius: 4px;
  padding: 10px 38px;
  font-size: 12px;
  line-height: 1.5em;
  border-radius: 4px;
  background-color: #1e78dd;
  color: #fff;
  box-shadow: none;
  margin: 15px 5px 0 0;
  padding-left: 24px;
  padding-right: 24px;
}
#sb_instagram #sbi_load .sbi_follow_btn > a:hover, #sb_instagram #sbi_load .sbi_follow_btn > a:focus, #sb_instagram #sbi_load .sbi_follow_btn > a.focus {
  color: #fff;
}
#sb_instagram #sbi_load .sbi_follow_btn > a:active, #sb_instagram #sbi_load .sbi_follow_btn > a.active {
  box-shadow: none;
}
#sb_instagram #sbi_load .sbi_follow_btn > a:hover, #sb_instagram #sbi_load .sbi_follow_btn > a:active, #sb_instagram #sbi_load .sbi_follow_btn > a:focus {
  background-color: #3185e3;
  box-shadow: none;
}
#sb_instagram #sbi_load .sbi_load_btn {
  border: 1px solid transparent;
  font-weight: 700;
  font-family: "Exo 2", sans-serif;
  font-style: normal;
  text-transform: uppercase;
  transition: all 0.3s ease;
  vertical-align: middle;
  padding: 13px 42px;
  font-size: 12px;
  line-height: 1.5em;
  border-radius: 4px;
  color: #fff;
  background-color: #938fa4;
  border-color: transparent;
  padding: 10px 38px;
  font-size: 12px;
  line-height: 1.5em;
  border-radius: 4px;
  box-shadow: none;
  margin: 15px 5px 0 0;
  padding-left: 24px;
  padding-right: 24px;
}
#sb_instagram #sbi_load .sbi_load_btn:hover, #sb_instagram #sbi_load .sbi_load_btn:focus, #sb_instagram #sbi_load .sbi_load_btn.focus {
  color: #fff;
}
#sb_instagram #sbi_load .sbi_load_btn:active, #sb_instagram #sbi_load .sbi_load_btn.active {
  box-shadow: none;
}
#sb_instagram #sbi_load .sbi_load_btn:focus, #sb_instagram #sbi_load .sbi_load_btn.focus {
  color: #fff;
  background-color: #f92552;
  border-color: rgba(0, 0, 0, 0);
}
#sb_instagram #sbi_load .sbi_load_btn:hover {
  color: #fff;
  background-color: #f92552;
  border-color: rgba(0, 0, 0, 0);
}
#sb_instagram #sbi_load .sbi_load_btn:active, #sb_instagram #sbi_load .sbi_load_btn.active, .open > #sb_instagram #sbi_load .sbi_load_btn.dropdown-toggle {
  color: #fff;
  background-color: #f92552;
  border-color: rgba(0, 0, 0, 0);
}
#sb_instagram #sbi_load .sbi_load_btn:active:hover, #sb_instagram #sbi_load .sbi_load_btn:active:focus, #sb_instagram #sbi_load .sbi_load_btn:active.focus, #sb_instagram #sbi_load .sbi_load_btn.active:hover, #sb_instagram #sbi_load .sbi_load_btn.active:focus, #sb_instagram #sbi_load .sbi_load_btn.active.focus, .open > #sb_instagram #sbi_load .sbi_load_btn.dropdown-toggle:hover, .open > #sb_instagram #sbi_load .sbi_load_btn.dropdown-toggle:focus, .open > #sb_instagram #sbi_load .sbi_load_btn.dropdown-toggle.focus {
  color: #fff;
  background-color: #67637a;
  border-color: rgba(0, 0, 0, 0);
}
#sb_instagram #sbi_load .sbi_load_btn:active, #sb_instagram #sbi_load .sbi_load_btn.active, .open > #sb_instagram #sbi_load .sbi_load_btn.dropdown-toggle {
  background-image: none;
}
#sb_instagram #sbi_load .sbi_load_btn.disabled, #sb_instagram #sbi_load .sbi_load_btn[disabled] {
  background-color: #605c71;
  border-color: rgba(0, 0, 0, 0);
}
#sb_instagram #sbi_load .sbi_load_btn.disabled:hover, #sb_instagram #sbi_load .sbi_load_btn.disabled:focus, #sb_instagram #sbi_load .sbi_load_btn.disabled.focus, #sb_instagram #sbi_load .sbi_load_btn[disabled]:hover, #sb_instagram #sbi_load .sbi_load_btn[disabled]:focus, #sb_instagram #sbi_load .sbi_load_btn[disabled].focus, fieldset[disabled] #sb_instagram #sbi_load .sbi_load_btn:hover, fieldset[disabled] #sb_instagram #sbi_load .sbi_load_btn:focus, fieldset[disabled] #sb_instagram #sbi_load .sbi_load_btn.focus {
  background-color: #605c71;
  border-color: rgba(0, 0, 0, 0);
}
#sb_instagram #sbi_load .sbi_load_btn:not(:disabled):not(.disabled):active, #sb_instagram #sbi_load .sbi_load_btn:not(:disabled):not(.disabled).active, .show > #sb_instagram #sbi_load .sbi_load_btn.dropdown-toggle {
  color: #fff;
  background-color: #f92552;
  border-color: transparent;
}
#sb_instagram #sbi_load .sbi_load_btn .badge {
  color: #938fa4;
  background-color: #fff;
}
#sb_instagram #sbi_load .sbi_load_btn:hover, #sb_instagram #sbi_load .sbi_load_btn:active, #sb_instagram #sbi_load .sbi_load_btn:focus {
  box-shadow: none;
}

.alc-sbi--insta-section#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo, .alc-sbi--insta-section#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo::before {
  border-radius: 0;
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a {
  color: #fff;
  background-color: #938fa4;
  border-color: transparent;
  padding: 13px 42px;
  font-size: 12px;
  line-height: 1.5em;
  border-radius: 4px;
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:focus, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.focus {
  color: #fff;
  background-color: #f92552;
  border-color: rgba(0, 0, 0, 0);
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:hover {
  color: #fff;
  background-color: #f92552;
  border-color: rgba(0, 0, 0, 0);
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:active, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.active, .open > .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.dropdown-toggle {
  color: #fff;
  background-color: #f92552;
  border-color: rgba(0, 0, 0, 0);
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:active:hover, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:active:focus, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:active.focus, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.active:hover, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.active:focus, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.active.focus, .open > .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.dropdown-toggle:hover, .open > .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.dropdown-toggle:focus, .open > .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.dropdown-toggle.focus {
  color: #fff;
  background-color: #67637a;
  border-color: rgba(0, 0, 0, 0);
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:active, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.active, .open > .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.dropdown-toggle {
  background-image: none;
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.disabled, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a[disabled] {
  background-color: #605c71;
  border-color: rgba(0, 0, 0, 0);
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.disabled:hover, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.disabled:focus, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.disabled.focus, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a[disabled]:hover, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a[disabled]:focus, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a[disabled].focus, fieldset[disabled] .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:hover, fieldset[disabled] .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:focus, fieldset[disabled] .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.focus {
  background-color: #605c71;
  border-color: rgba(0, 0, 0, 0);
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:not(:disabled):not(.disabled):active, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:not(:disabled):not(.disabled).active, .show > .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.dropdown-toggle {
  color: #fff;
  background-color: #f92552;
  border-color: transparent;
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a .badge {
  color: #938fa4;
  background-color: #fff;
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_load_btn {
  padding: 13px 42px;
  font-size: 12px;
  line-height: 1.5em;
  border-radius: 4px;
}
@media (min-width: 580px) {
  .alc-sbi--insta-section#sb_instagram #sbi_load {
    position: absolute;
    width: auto;
    float: left;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a {
    margin-top: 0;
  }
  .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_load_btn {
    margin-top: 0;
  }
}

/*
// #Widget - Contact Info
// --------------------------------------------------
*/
.widget-contact-info__desc {
  margin-bottom: 32px;
}

/* Widget: Quick Contact */
.footer-widgets .widget_text .form-control {
  background-color: rgba(0, 0, 0, 0.15);
  color: #fff;
}
.footer-widgets .widget_text .form-control:not(:focus) {
  border-color: rgba(0, 0, 0, 0.1);
}

/* Widget: Social */
.widget.widget-social {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.widget.widget-social .card__content {
  padding: 0;
}

.widget-social--condensed {
  display: flex;
  justify-content: space-between;
  margin-left: -5px;
  margin-right: -5px;
  overflow: hidden;
}
.widget-social--condensed .btn-social-counter {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0;
  text-align: center;
  margin-left: 5px;
  margin-right: 5px;
  width: 33.3%;
  max-width: 33.3%;
}
.widget-social--condensed .btn-social-counter + .btn-social-counter {
  margin-top: 0;
}
.widget-social--condensed .btn-social-counter__icon {
  position: relative;
  width: 100%;
  padding: 35px 0 10px 0;
  background-color: transparent !important;
  color: #fff;
}
.widget-social--condensed .btn-social-counter__title {
  font-size: 10px;
  padding: 0 12px 10px 12px;
}
.widget-social--condensed .btn-social-counter__add-icon {
  position: relative;
  right: auto;
  top: 0;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.widget-social--condensed .btn-social-counter__count {
  order: 9;
  padding: 10px 5px;
}

.widget-social--grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
  margin-bottom: -10px;
}
.widget-social--grid .btn-social-counter {
  padding: 0;
  text-align: center;
  flex-basis: calc(50% - 5px);
  max-width: calc(50% - 5px);
  margin-bottom: 10px;
  text-align: left;
  padding-left: 46px;
  padding-top: 20px;
  padding-right: 38px;
}
.widget-social--grid .btn-social-counter + .btn-social-counter {
  margin-top: 0;
}
.widget-social--grid .btn-social-counter .btn-social-counter__icon {
  background-color: transparent;
  width: 46px;
  text-indent: 8px;
  color: #fff;
}
.widget-social--grid .btn-social-counter .btn-social-counter__title {
  font-size: 12px;
  line-height: 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.widget-social--grid .btn-social-counter .btn-social-counter__count {
  font-size: 10px;
  line-height: 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.widget-social--grid .btn-social-counter .btn-social-counter__add-icon {
  border: none;
  width: 34px;
  top: 0;
  bottom: 0;
  right: 0;
  height: auto;
  margin: 0;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.1);
}

.widget-social--buttons {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin: 0 -8px;
}
.widget-social--buttons .btn-social-counter {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0;
  text-align: center;
  width: calc(33.3% - 16px);
  max-width: calc(33.3% - 16px);
  border: none;
  margin: 0 8px 16px 8px;
}
.widget-social--buttons .btn-social-counter + .btn-social-counter {
  margin-top: 0;
}
.widget-social--buttons .btn-social-counter__icon {
  position: relative;
  width: 100%;
  padding: 45px 0 0 0;
  background-color: transparent !important;
  color: #fff;
}
.widget-social--buttons .btn-social-counter__title {
  display: none;
}
.widget-social--buttons .btn-social-counter__add-icon {
  width: 18px;
  height: 18px;
  right: 8px;
  top: 8px;
  margin-top: 0;
}
.widget-social--buttons .btn-social-counter__count {
  order: 9;
  padding: 4px 5px 14px 5px;
}

/* Widget: Tag Cloud */
.widget_tag_cloud .tagcloud .btn,
.widget_product_tag_cloud .tagcloud .btn {
  margin: 0 5px 9px 0;
}
.widget_tag_cloud .tagcloud .btn.btn-xs,
.widget_product_tag_cloud .tagcloud .btn.btn-xs {
  font-size: 9px !important;
}
.widget_tag_cloud.widget--sidebar .widget__content,
.widget_product_tag_cloud.widget--sidebar .widget__content {
  padding-bottom: 18px;
}
/* Widget: Banner */
.widget-banner.widget--sidebar .widget__content {
  padding: 38px;
}

.widget-banner__img {
  text-align: center;
}
.widget-banner__img img {
  max-width: 100%;
  height: auto;
}

/* Widget: Tabbed */
.widget-tabbed .nav.widget-tabbed__nav {
  margin: -24px -24px 26px -24px;
  border-bottom: 1px solid #3c3b5b;
  width: auto;
  padding: 0;
}
.widget-tabbed .nav.widget-tabbed__nav > li {
  margin-bottom: 0;
}
.widget-tabbed .nav.widget-tabbed__nav > li > a {
  border: none;
  border-radius: 0;
  font-size: 11px;
  font-style: normal;
  line-height: 1.5em;
  font-family: "Exo 2", sans-serif;
  text-transform: uppercase;
  padding: 12px 6px;
  color: #7f7e8c;
  font-weight: bold;
  letter-spacing: -0.02em;
  transition: color 0.2s ease-in-out;
}
.widget-tabbed .nav.widget-tabbed__nav > li > a:hover {
  background-color: transparent;
  border: none;
  color: #fff;
}
.widget-tabbed .nav.widget-tabbed__nav > li > a.active {
  border: none;
  background-color: transparent;
  color: #fff;
}

.footer-widgets .widget-tabbed .nav.widget-tabbed__nav {
  margin: 0 0 26px 0;
  border-bottom: none;
}
.footer-widgets .widget-tabbed .nav.widget-tabbed__nav > li > a {
  color: #7f7e8c;
}
.footer-widgets .widget-tabbed .nav.widget-tabbed__nav > li > a:hover {
  color: #fff;
}
.footer-widgets .widget-tabbed .nav.widget-tabbed__nav > li > a.active {
  background-color: transparent;
  color: #fff;
}

/* Widget: Newsletter */
.widget-newsletter .widget-newsletter__subtitle,
.widget_mc4wp_form_widget .widget-newsletter__subtitle {
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 1.4em;
}
.widget-newsletter .widget-newsletter__desc,
.widget_mc4wp_form_widget .widget-newsletter__desc {
  margin-bottom: 20px;
}
.widget-newsletter .widget-newsletter__desc p:last-child,
.widget_mc4wp_form_widget .widget-newsletter__desc p:last-child {
  margin-bottom: 0;
}
.widget-newsletter .inline-form,
.widget_mc4wp_form_widget .inline-form {
  padding: 8px 0;
}

.mc4wp-error {
  color: #f92552;
}

.mc4wp-success {
  color: #0fe3ab;
}

.mc4wp-notice {
  color: #9e69ee;
}

/* Widget: Newslog */
.newslog {
  list-style: none;
  padding: 0;
  margin: 0;
}
.card .newslog {
  margin-top: -24px;
  margin-bottom: -24px;
}

.newslog__item {
  border-bottom: 1px solid #3c3b5b;
  padding: 24px 24px;
  font-size: 11px;
  line-height: 17px;
  font-family: "Exo 2", sans-serif;
}
.card .newslog__item {
  margin-left: -24px;
  margin-right: -24px;
}
.newslog__item:last-child {
  border-bottom: none;
}
.newslog__item strong {
  font-weight: 400;
  color: #fff;
}

.newslog__item--injury .newslog__item-inner::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  color: #9e69ee;
  width: 16px;
  background-image: none;
  content: "\f067";
}

.newslog__item--join .newslog__item-inner::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  color: #3ffeca;
  width: 16px;
  background-image: none;
  content: "\f054";
}

.newslog__item--exit .newslog__item-inner::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  color: #f92552;
  width: 16px;
  background-image: none;
  content: "\f053";
}

.newslog__item--award .newslog__item-inner::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  color: #ffd71b;
  width: 16px;
  background-image: none;
  content: "\f005";
}

.newslog__item--oth-pos .newslog__item-inner::before {
  content: "\f00c";
  top: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  color: #0fe3ab;
  width: 16px;
  background-image: none;
}

.newslog__item--oth-neg .newslog__item-inner::before {
  content: "\f00d";
  top: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  color: #f92552;
  width: 16px;
  background-image: none;
}

.newslog__item-inner {
  position: relative;
  padding-left: 36px;
}
.newslog__item-inner:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
  background-repeat: no-repeat;
  background-size: 13px 13px;
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 13'%3E%3Cpath transform='translate(-978.5 -2710.5)' fill='none' stroke='%231bdfb8' d='M991,2719h-4v4h-4v-4h-4v-4h4v-4h4v4h4v4Z'/%3E%3C/svg%3E");
}

.newslog__date {
  margin-top: 0.5em;
  display: block;
  color: rgba(158, 156, 170, 0.4);
}

/* Widget: Preview */
.widget_countdown .match-preview__countdown {
  margin: 32px -24px 0 -24px;
}

/* Widget: Comments */
.comments-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.comments-list__item {
  overflow: hidden;
  margin-bottom: 18px;
}
.card .comments-list__item {
  border-bottom: 1px solid #3c3b5b;
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.comments-list__item:last-child, .card .comments-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.comments-list__header {
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  padding-right: 40px;
}

.comments-list__avatar {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
}

.comments-list__info {
  display: inline-block;
  vertical-align: middle;
}

.comments-list__author-name {
  text-transform: none;
  font-size: 13px;
  line-height: 1.2em;
  margin-bottom: 0.1em;
}
@media (min-width: 992px) {
  .comments-list__author-name {
    font-size: 15px;
  }
}

.comments-list__date {
  display: block;
  font-size: 11px;
  line-height: 1.2em;
  font-family: "Exo 2", sans-serif;
}

.comments-list__link {
  display: block;
  position: absolute;
  top: 5px;
  right: 0;
  color: #c2c4c7;
  font-size: 14px;
  transition: color 0.2s ease;
  width: 30px;
  height: 20px;
  line-height: 20px;
  text-align: center;
}
.comments-list__link:hover {
  color: #fff;
}

.comments-list--alt .comments-list__item--category-1 .comments-list__post::before {
  background-color: #f92552;
}
.comments-list--alt .comments-list__item--category-2 .comments-list__post::before {
  background-color: #9e69ee;
}
.comments-list--alt .comments-list__item--category-3 .comments-list__post::before {
  background-color: #0fe3ab;
}
.comments-list--alt .comments-list__item--category-4 .comments-list__post::before {
  background-color: #f92552;
}
.comments-list--alt .comments-list__item--category-5 .comments-list__post::before {
  background-color: #f92552;
}
.comments-list--alt .comments-list__item--category-6 .comments-list__post::before {
  background-color: #f92552;
}
.comments-list--alt .comments-list__item--category-7 .comments-list__post::before {
  background-color: #f92552;
}
.comments-list--alt .comments-list__item--category-8 .comments-list__post::before {
  background-color: #f92552;
}
.comments-list--alt .comments-list__item--category-9 .comments-list__post::before {
  background-color: #f92552;
}
.comments-list--alt .comments-list__item--category-10 .comments-list__post::before {
  background-color: #f92552;
}
.comments-list--alt .comments-list__item--category-11 .comments-list__post::before {
  background-color: #f92552;
}
.comments-list--alt .comments-list__item--category-12 .comments-list__post::before {
  background-color: #f92552;
}
.comments-list--alt .comments-list__avatar {
  float: left;
  margin-right: 10px;
  border-radius: 4px;
}
.comments-list--alt .comments-list__info {
  display: block;
}
.comments-list--alt .comments-list__author-name {
  text-transform: uppercase;
  padding-top: 0.3em;
}
@media (min-width: 992px) {
  .comments-list--alt .comments-list__author-name {
    font-size: 14px;
  }
}
.comments-list--alt .comments-list__post {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  line-height: 1.2em;
  font-style: italic;
  margin-bottom: 0;
  color: #7f7e8c;
}
.comments-list--alt .comments-list__post > a {
  color: #7f7e8c;
  transition: color 0.3s ease;
}
.comments-list--alt .comments-list__post > a:hover {
  color: #fff;
}
.comments-list--alt .comments-list__link {
  top: 0;
  color: #fff;
}
.comments-list--alt .comments-list__body {
  font-size: 13px;
  margin-bottom: 17px;
}

/* Widget: Team Info */
.team-info-list {
  margin: 0;
}

.team-info__item {
  padding: 10px 24px;
  display: flex;
}
.team-info__item + .team-info__item {
  border-top: 1px solid #3c3b5b;
}

.team-info__label,
.team-info__value,
.team-info__item--desc strong {
  font-family: "Exo 2", sans-serif;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}

.team-info__value {
  margin-left: auto;
}

.team-info__value--active {
  color: #f92552;
}

.team-info__item--desc {
  display: block;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 12px;
  line-height: 20px;
}
.team-info__item--desc .team-info__label {
  display: inline-block;
  margin: 0;
}
.team-info__item--desc p:last-child {
  margin-bottom: 0;
}

/* Widget: Twitter Feed */
.twitter-feed {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.twitter-feed__item {
  overflow: hidden;
  margin-bottom: 18px;
}
.card .twitter-feed__item {
  border-bottom: 1px solid #3c3b5b;
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.twitter-feed__item:last-child, .card .twitter-feed__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.twitter-feed__header {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.twitter-feed__header .twitter-feed__timestamp {
  display: none;
}
.twitter-feed__header .twitter-feed__timestamp::before {
  display: none;
}

.twitter-feed__thumb {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
}

.twitter-feed__info {
  flex: 1 0 auto;
}

.twitter-feed__name {
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  margin-bottom: 0.1em;
  line-height: 1.2em;
}
@media (min-width: 992px) {
  .twitter-feed__name {
    font-size: 15px;
  }
}

.twitter-feed__username {
  color: #9e9caa;
  font-size: 11px;
  line-height: 1.2em;
  margin-bottom: 0;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
}
.twitter-feed__username > a {
  color: #9e9caa;
  text-decoration: none;
  transition: color 0.2s ease;
}
.twitter-feed__username > a:hover {
  color: #3c3b5b;
  text-decoration: none;
}

.twitter-feed__body {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 22px;
}
.twitter-feed__body a {
  color: #2bd0ff;
}
.twitter-feed__body a:hover {
  color: #00acde;
}

.twitter-feed__footer {
  overflow: hidden;
}

.twitter-feed__timestamp {
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-weight: 400;
  line-height: 1.2em;
  text-transform: none;
  float: left;
}
.twitter-feed__timestamp::before {
  content: "\f099";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  text-rendering: auto;
  font-size: 14px;
  color: #3fcef2;
  margin-right: 7px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.twitter-feed__timestamp > a {
  color: #9e9caa;
  text-decoration: none;
  transition: color 0.2s ease;
}
.twitter-feed__timestamp > a:hover {
  color: #3c3b5b;
  text-decoration: none;
}

.twitter-feed__actions {
  float: right;
}

.twitter-feed__reply {
  display: inline-block;
  margin-right: 5px;
  width: 18px;
  height: 14px;
  position: relative;
  top: -2px;
  background-size: 12px 8px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath transform='translate(-1241 -2200)' fill='%239e9caa' d='M1247,2203h6v2h-6v-2Zm4,0h2v5h-2v-5Zm-10,1,6-3.99v7.98Z'/%3E%3C/svg%3E");
  transition: opacity 0.3s ease;
}
.twitter-feed__reply:hover {
  opacity: 0.7;
}

.twitter-feed__retweet {
  display: inline-block;
  margin: 0 5px;
  width: 18px;
  height: 14px;
  position: relative;
  top: -2px;
  background-size: 16px 11px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 11'%3E%3Cpath transform='translate(-1270 -2199)' fill='%239e9caa' d='M1272,2204h2v5h-2v-5Zm0,3h6v2h-6v-2Zm1-8,3.01,5h-6.02Zm11,6h-2v-5h2v5Zm0-3h-6v-2h6v2Zm-1,8-3.01-5h6.02Z'/%3E%3C/svg%3E");
  transition: opacity 0.3s ease;
}
.twitter-feed__retweet:hover {
  opacity: 0.7;
}

.twitter-feed__favorite {
  display: inline-block;
  margin-left: 5px;
  width: 14px;
  height: 14px;
  position: relative;
  top: -2px;
  background-size: 12px 12px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 15'%3E%3Cpath fill='%239e9caa' d='M15.021875,1.25 C15.9072961,2.16146289 16.35,3.27473301 16.35,4.58984375 C16.35,5.90495449 15.9072961,7.01822461 15.021875,7.9296875 L8.225,15 L1.428125,7.9296875 C0.542703906,7.01822461 0.1,5.90495449 0.1,4.58984375 C0.1,3.27473301 0.542703906,2.16146289 1.428125,1.25 C2.20937891,0.4166625 3.16640059,0 4.29921875,0 C5.43203691,0 6.38905859,0.4166625 7.1703125,1.25 L8.225,2.34375 L9.31875,1.25 C10.1000039,0.4166625 11.0505152,0 12.1703125,0 C13.2901098,0 14.2406211,0.4166625 15.021875,1.25 Z'/%3E%3C/svg%3E");
  transition: opacity 0.3s ease;
}
.twitter-feed__favorite:hover {
  opacity: 0.7;
}

/* Widget Twitter - Footer */
.widget--footer .twitter-feed__thumb {
  width: 25px;
  height: 25px;
}
.widget--footer .twitter-feed__name {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 992px) {
  .widget--footer .twitter-feed__name {
    font-size: 12px;
  }
}
.widget--footer .twitter-feed__username {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.widget--footer .twitter-feed__username > a:hover {
  color: #0fe3ab;
}
.widget--footer .twitter-feed__body {
  margin-bottom: 1em;
}
.widget--footer .twitter-feed__body a {
  color: #4cd3ff;
}
.widget--footer .twitter-feed__body a:hover {
  color: #fff;
}
.widget--footer .twitter-feed__footer {
  display: none;
}

/* Widget Twitter - Alt */
.widget-twitter--alt .twitter-feed__header .twitter-feed__timestamp {
  display: block;
}
.widget-twitter--alt .twitter-feed__footer .twitter-feed__timestamp {
  display: none;
}
.widget-twitter--alt .twitter-feed__footer .twitter-feed__actions {
  float: none;
}
.widget-twitter--alt .twitter-feed__reply {
  margin-right: 10px;
}
.widget-twitter--alt .twitter-feed__retweet {
  margin: 0 10px;
}
.widget-twitter--alt .twitter-feed__favorite {
  margin-left: 10px;
}

/* Custom Twitter Feeds */
.widget_custom-twitter-feeds-widget .card__content {
  padding: 0;
}
.widget_custom-twitter-feeds-widget.card .ctf-item {
  border-bottom: 1px solid #3c3b5b;
  padding-inline: 24px !important;
  padding-block: 24px !important;
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more {
  margin: 24px 24px;
  margin-block-start: 0;
  width: auto;
  border: 1px solid transparent;
  font-weight: 700;
  font-family: "Exo 2", sans-serif;
  font-style: normal;
  text-transform: uppercase;
  transition: all 0.3s ease;
  vertical-align: middle;
  padding: 13px 42px;
  font-size: 12px;
  line-height: 1.5em;
  border-radius: 4px;
  color: #fff;
  background-color: #1b95e0;
  border-color: transparent;
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more:hover, .widget_custom-twitter-feeds-widget #ctf #ctf-more:focus, .widget_custom-twitter-feeds-widget #ctf #ctf-more.focus {
  color: #fff;
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more:active, .widget_custom-twitter-feeds-widget #ctf #ctf-more.active {
  box-shadow: none;
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more:focus, .widget_custom-twitter-feeds-widget #ctf #ctf-more.focus {
  color: #fff;
  background-color: #2fa0e6;
  border-color: rgba(0, 0, 0, 0);
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more:hover {
  color: #fff;
  background-color: #2fa0e6;
  border-color: rgba(0, 0, 0, 0);
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more:active, .widget_custom-twitter-feeds-widget #ctf #ctf-more.active, .open > .widget_custom-twitter-feeds-widget #ctf #ctf-more.dropdown-toggle {
  color: #fff;
  background-color: #2fa0e6;
  border-color: rgba(0, 0, 0, 0);
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more:active:hover, .widget_custom-twitter-feeds-widget #ctf #ctf-more:active:focus, .widget_custom-twitter-feeds-widget #ctf #ctf-more:active.focus, .widget_custom-twitter-feeds-widget #ctf #ctf-more.active:hover, .widget_custom-twitter-feeds-widget #ctf #ctf-more.active:focus, .widget_custom-twitter-feeds-widget #ctf #ctf-more.active.focus, .open > .widget_custom-twitter-feeds-widget #ctf #ctf-more.dropdown-toggle:hover, .open > .widget_custom-twitter-feeds-widget #ctf #ctf-more.dropdown-toggle:focus, .open > .widget_custom-twitter-feeds-widget #ctf #ctf-more.dropdown-toggle.focus {
  color: #fff;
  background-color: #126293;
  border-color: rgba(0, 0, 0, 0);
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more:active, .widget_custom-twitter-feeds-widget #ctf #ctf-more.active, .open > .widget_custom-twitter-feeds-widget #ctf #ctf-more.dropdown-toggle {
  background-image: none;
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more.disabled, .widget_custom-twitter-feeds-widget #ctf #ctf-more[disabled] {
  background-color: #105885;
  border-color: rgba(0, 0, 0, 0);
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more.disabled:hover, .widget_custom-twitter-feeds-widget #ctf #ctf-more.disabled:focus, .widget_custom-twitter-feeds-widget #ctf #ctf-more.disabled.focus, .widget_custom-twitter-feeds-widget #ctf #ctf-more[disabled]:hover, .widget_custom-twitter-feeds-widget #ctf #ctf-more[disabled]:focus, .widget_custom-twitter-feeds-widget #ctf #ctf-more[disabled].focus, fieldset[disabled] .widget_custom-twitter-feeds-widget #ctf #ctf-more:hover, fieldset[disabled] .widget_custom-twitter-feeds-widget #ctf #ctf-more:focus, fieldset[disabled] .widget_custom-twitter-feeds-widget #ctf #ctf-more.focus {
  background-color: #105885;
  border-color: rgba(0, 0, 0, 0);
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more:not(:disabled):not(.disabled):active, .widget_custom-twitter-feeds-widget #ctf #ctf-more:not(:disabled):not(.disabled).active, .show > .widget_custom-twitter-feeds-widget #ctf #ctf-more.dropdown-toggle {
  color: #fff;
  background-color: #2fa0e6;
  border-color: transparent;
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more .badge {
  color: #1b95e0;
  background-color: #fff;
}

/* Widget: Twitch Streams */
.widget_tp_twitch_widget.card {
  border: none;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
}
.widget_tp_twitch_widget.card .card__content {
  padding: 0;
}
.widget_tp_twitch_widget.card .card__header {
  border-radius: 4px;
}
.widget_tp_twitch_widget.card .card__header::before {
  border-bottom-left-radius: 4px;
}
.widget_tp_twitch_widget.card .card__header + .card__content {
  padding-top: 15px;
}
.widget_tp_twitch_widget.card .twitch-stream-video .card__content {
  padding: 24px 24px;
}

.twitch-stream-wrapper {
  margin-bottom: 15px;
}
.twitch-stream-wrapper:last-child {
  margin-bottom: 0;
}

.twitch-stream {
  flex-direction: row;
  align-items: stretch;
  min-height: 86px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 0 !important;
}

.twitch-stream--has-video, .twitch-stream--has-video.card {
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}
.twitch-stream--has-video .twitch-stream__overlay {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.twitch-stream__overlay {
  background-position: 0 0;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  position: absolute !important;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 4px;
}

.twitch-stream__img {
  flex-basis: 102px;
  align-self: center;
}

.twitch-stream__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 15px;
}

.twitch-stream__featured {
  font-size: 12px;
  line-height: 1.2em;
  text-transform: uppercase;
  font-style: italic;
  color: #9e9caa;
  margin-bottom: 0.2em;
}
.twitch-stream__featured a {
  color: #9e9caa;
}

.twitch-stream__title {
  font-size: 12px;
  margin-bottom: 0.4em;
  color: #fff;
}
@media (min-width: 992px) {
  .twitch-stream__title {
    font-size: 14px;
  }
}
.twitch-stream__title > a {
  color: #fff;
}

.twitch-stream__info {
  font-size: 10px;
  line-height: 1.5em;
  margin-bottom: 8px;
  color: #9e9caa;
}
@media (min-width: 992px) {
  .twitch-stream__info {
    font-size: 11px;
  }
}
.twitch-stream__info a {
  color: #9e9caa;
}
.twitch-stream__info a:hover {
  color: #fff;
}
.twitch-stream__info .tp-twitch-icon-verified {
  margin-left: 0.5em;
  vertical-align: middle;
}

.tp-twitch-icon-views {
  margin-right: 0.5em;
  vertical-align: middle;
}

.twitch-stream__footer {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.twitch-stream__counters {
  margin-left: auto;
  font-size: 11px;
  display: flex;
  align-items: center;
}

.twitch-stream__views,
.twitch-stream__viewers {
  margin-left: 1em;
}
.twitch-stream__views::before,
.twitch-stream__viewers::before {
  font-size: 13px;
  vertical-align: top;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  display: inline-block;
  font-family: "simple-line-icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 3px;
}

.twitch-stream__viewers {
  color: #fff;
}
.twitch-stream__viewers::before {
  content: "\e005";
}

.twitch-stream__views::before {
  content: "\e087";
}

.twitch-stream__status {
  font-size: 12px;
  line-height: 1.2em;
  font-family: "Exo 2", sans-serif;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  position: relative;
  padding-left: 14px;
  color: #9e9caa;
}
.twitch-stream__status::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #9e9caa;
}
.tp-twitch-stream--live .twitch-stream__status {
  color: #fff;
}
.tp-twitch-stream--live .twitch-stream__status::before {
  background-color: #ff004e;
  box-shadow: 0 0 0 rgba(255, 0, 78, 0.4);
  animation: twitchpulse 1.5s infinite;
}

.twitch-stream__status--scheduled::before {
  background-color: #fff;
}

.twitch-stream__countdown-counter {
  display: inline-block;
  vertical-align: text-top;
}
.twitch-stream__countdown-counter .countdown-counter__item {
  font-size: 12px;
  display: inline-block;
  float: none;
  width: auto;
  color: white;
}
.twitch-stream__countdown-counter .countdown-counter__item + .countdown-counter__item::before {
  display: inline-block;
  position: static;
  left: 0;
  top: 0;
  font-size: 12px;
  margin: 0 0.2em;
}
.twitch-stream__countdown-counter .countdown-counter__label {
  display: none;
}

.twitch-stream-video {
  margin-bottom: 0 !important;
}
.twitch-stream-video, .twitch-stream-video.card {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  text-align: center;
}

.twitch-iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.twitch-iframe-container iframe,
.twitch-iframe-container object,
.twitch-iframe-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.twitch-stream-video__clip {
  border: 1px solid #3c3b5b;
  display: inline-block;
  margin: 0 auto;
}
.twitch-stream-video__clip iframe,
.twitch-stream-video__clip img {
  max-width: 100%;
  vertical-align: top;
}

.twitch-stream-video__link {
  display: block;
  position: relative;
}
.twitch-stream-video__link::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.8;
  background-color: #000;
}
.twitch-stream-video__link::after {
  content: "\f04b";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  line-height: 1em;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: all 0.2s ease;
}
.twitch-stream-video__link:hover::after {
  opacity: 0.7;
}

.twitch-stream__thumbnail-link {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #000;
  border: 1px solid #3c3b5b;
  padding-bottom: 56.25%;
  max-width: 100%;
  height: auto;
}
.card--no-paddings .twitch-stream__thumbnail-link {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border: none;
}
.twitch-stream__thumbnail-link .twitch-stream__thumbnail-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.twitch-stream__thumbnail-overlay {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
.twitch-stream__thumbnail-overlay:hover {
  cursor: pointer;
}
.twitch-stream__thumbnail-overlay:hover .twitch-stream__thumbnail-icon {
  opacity: 0.5;
}

.twitch-stream__thumbnail-icon {
  display: block;
  color: #fff;
  font-size: 30px;
  line-height: 1em;
  transition: opacity 0.3s ease;
}

@keyframes twitchpulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 78, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 0, 78, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 78, 0);
  }
}
/* Widget: Featured */
.widget-featured .card__header::before {
  background-color: #ef2e5b;
}
.widget-featured .widget__content.card__content {
  padding-bottom: 0;
}
.widget-featured .posts__thumb {
  position: relative;
  overflow: hidden;
}
.widget-featured .posts__thumb::before {
  content: "!";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(239, 46, 91, 0.8);
  font-size: 54px;
  line-height: 80px;
  text-align: center;
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
}

/* Widget: Poll */
.poll-form__question {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 1em;
}

.poll-form__options {
  line-height: 26px;
}
.poll-form__options .radio-inline {
  margin-bottom: 9px;
  font-weight: 700;
}
.poll-form__options .radio-wrapper {
  overflow: hidden;
}
.poll-form__options .radio-progress-value {
  float: right;
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

/* Widget: Awards */
.awards--slider {
  position: relative;
}

.awards__item {
  text-align: center;
}

.awards__figure {
  display: block;
  text-align: center;
}
.awards__figure img {
  margin: 0 auto;
}

.awards__figure--space {
  padding: 30px 0;
}

.awards__desc {
  padding: 2px 0;
}
@media (min-width: 992px) {
  .awards__desc {
    padding: 6px 0;
  }
}

.awards__name {
  line-height: 1.2em;
  margin-bottom: 0.25em;
  font-size: 12px;
  text-transform: uppercase;
  font-style: italic;
}
@media (min-width: 992px) {
  .awards__name {
    font-size: 14px;
  }
}

.awards__date {
  font-size: 9px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  font-style: italic;
}
@media (min-width: 992px) {
  .awards__date {
    font-size: 10px;
  }
}

.awards__stars {
  font-size: 10px;
  padding: 5px 0 0 0;
}
.awards__stars .fa {
  margin: 0 2px;
  color: #ffdc11;
}

.awards-filter {
  list-style: none;
  padding: 0 0 0 7px;
  margin-top: 0;
  margin-left: -24px;
  margin-right: -24px;
  margin-bottom: 3px;
  border-bottom: 1px solid #3c3b5b;
}

.awards-filter__item {
  display: inline;
}

.awards-filter__link {
  display: inline-block;
  padding: 9px 16px;
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #9e9caa;
  transition: color 0.3s ease;
}
.awards-filter__link:hover {
  color: #fff;
}

.awards-filter__link--active {
  color: #fff;
}

/* Widget: Color Picker */
/* Widget: Calendar */
.widget_calendar .card__content {
  padding: 0;
}

.calendar_wrap,
.sp-calendar-wrapper {
  padding: 10px;
}
.calendar_wrap > table,
.sp-calendar-wrapper > table {
  width: 100%;
  background: none;
}
.calendar_wrap > table > thead > tr > th,
.sp-calendar-wrapper > table > thead > tr > th {
  font-size: 10px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-bottom: none;
}
.calendar_wrap > table > tfoot > tr > td,
.sp-calendar-wrapper > table > tfoot > tr > td {
  border-top: none;
}
.calendar_wrap > table > tbody > tr > td,
.sp-calendar-wrapper > table > tbody > tr > td {
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
  padding: 8px 10px;
  border-top: none;
  height: 38px;
  vertical-align: middle;
}
.calendar_wrap > table > tbody > tr > td a,
.sp-calendar-wrapper > table > tbody > tr > td a {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #f92552;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  color: #fff;
  margin: 0 -4px;
}
.calendar_wrap > table #prev,
.calendar_wrap > table #next,
.sp-calendar-wrapper > table #prev,
.sp-calendar-wrapper > table #next {
  padding: 14px;
}
.calendar_wrap > table #prev a,
.calendar_wrap > table #next a,
.sp-calendar-wrapper > table #prev a,
.sp-calendar-wrapper > table #next a {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 2px;
  font-size: 0;
  line-height: 0;
  transition: background-color 0.3s ease;
  vertical-align: middle;
  font-weight: 400;
  background-color: #938fa4;
}
.calendar_wrap > table #prev a::before,
.calendar_wrap > table #next a::before,
.sp-calendar-wrapper > table #prev a::before,
.sp-calendar-wrapper > table #next a::before {
  content: "";
  font-size: 14px;
  line-height: 20px;
  display: block;
  position: absolute;
  text-align: center;
  color: #fff;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.calendar_wrap > table #prev a:hover,
.calendar_wrap > table #next a:hover,
.sp-calendar-wrapper > table #prev a:hover,
.sp-calendar-wrapper > table #next a:hover {
  background-color: #f92552;
}
.calendar_wrap > table #prev,
.sp-calendar-wrapper > table #prev {
  text-align: left;
  padding-left: 14px;
}
.calendar_wrap > table #prev a::before,
.sp-calendar-wrapper > table #prev a::before {
  content: "\f104";
}
.calendar_wrap > table #next,
.sp-calendar-wrapper > table #next {
  text-align: right;
  padding-right: 14px;
}
.calendar_wrap > table #next a::before,
.sp-calendar-wrapper > table #next a::before {
  content: "\f105";
  font-weight: 700;
}
.calendar_wrap caption,
.sp-calendar-wrapper caption {
  text-align: center;
  overflow: hidden;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2em;
  border-bottom: 1px solid #3c3b5b;
  margin: -10px -10px 10px -10px;
  padding-left: 14px;
  padding-right: 14px;
  vertical-align: middle;
  caption-side: top;
  background-color: rgba(56, 55, 89, 0.6);
}

.footer-widgets .widget_calendar .calendar_wrap {
  padding: 0;
}
.footer-widgets .widget_calendar .calendar_wrap > table thead th {
  color: #fff;
}
.footer-widgets .widget_calendar .calendar_wrap > table tbody td {
  color: #fff;
}
.footer-widgets .widget_calendar .calendar_wrap caption {
  color: #fff;
  border-bottom: none;
  background-color: transparent;
}

.widget_sp_event_calendar .sp-template {
  margin-bottom: 0;
}

/**
 *
 * Widget Recent Videos
 *
 */
.recent-videos.card {
  border: none;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
}
.recent-videos.card .widget__content {
  padding: 0;
}

/*
// #Info Block
// --------------------------------------------------
*/
.info-block {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-block__item {
  position: relative;
  min-height: 26px;
  padding: 2px 0 0 40px;
  margin-bottom: 34px;
  list-style: none;
  text-align: left;
}
.info-block__item:last-child {
  margin-bottom: 0;
}
.info-block__item .df-icon,
.info-block__item .df-icon-stack,
.info-block__item .df-icon-custom {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.info-block__item .df-icon-custom {
  height: auto;
  font-size: 28px;
  line-height: 1.2em;
  color: #3ffeca;
}
.info-block__item .df-icon-custom img {
  width: 28px;
  height: auto;
}
.header__primary .info-block__item {
  text-align: left;
  margin: 20px 0;
  padding: 2px 30px 16px 70px;
}
.header__primary .info-block__item.info-block__item--contact-primary {
  margin-top: 36px;
}
.header__primary .info-block__item.info-block__item--contact-secondary {
  margin-bottom: 0;
}
.header__primary .info-block__item .df-icon,
.header__primary .info-block__item .df-icon-custom {
  left: 30px;
}
.header__primary .info-block__item .df-icon-custom i {
  color: #3ffeca;
  font-size: 24px;
}
.header__primary .info-block__item .df-icon-custom img {
  width: 28px;
  height: auto;
}
.header__primary .info-block__item .info-block__link {
  padding: 0;
  font-size: 9px;
  line-height: 1.2em;
  color: #7f7e8c;
  border: none;
}
.header__primary .info-block__item .info-block__link::before {
  display: none;
}
.header__primary .info-block__item .info-block__link:hover {
  color: #fff;
}
@media (min-width: 992px) {
  .header__primary .info-block__item {
    display: none;
  }
}

.info-block__item--nopadding {
  padding-left: 0;
}

.info-block__item--helmet {
  padding-left: 50px;
}

.info-block__item--contact-primary {
  padding-left: 50px;
}

.info-block__item--contact-secondary {
  padding-left: 45px;
}

.info-block__heading {
  font-size: 9px;
  line-height: 1.2em;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 10px;
}
.footer .info-block__heading {
  color: #fff;
}
.header .info-block__heading {
  color: #fff;
}

.info-block__link {
  display: block;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-size: 9px;
  line-height: 1.2em;
  color: #7f7e8c;
  vertical-align: top;
  transition: color 0.25s cubic-bezier(0.3, 0.1, 0.55, 1);
  font-size: 10px;
}
.footer .info-block__link:hover {
  color: #fff;
}
.header .info-block__link {
  color: #7f7e8c;
}
.header .info-block__link:hover {
  color: #fff;
}

.info-block__link-wrapper {
  display: block;
}

.info-block--header {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .info-block--header {
    display: none;
  }
}
.info-block--header .info-block__item {
  display: inline-block;
  margin: 7px 0 0 26px;
}
.info-block--header .info-block__item .df-icon {
  stroke: #3ffeca;
}
.info-block--header .info-block__item .df-icon-custom {
  line-height: inherit;
}
.info-block--header .info-block__item .df-icon-custom i {
  color: #3ffeca;
}
@media (min-width: 992px) {
  .info-block--header .info-block__item {
    padding-top: 20px;
    padding-bottom: 32px;
  }
  .info-block--header .info-block__item .df-icon,
  .info-block--header .info-block__item .df-icon-custom {
    top: 24px;
  }
  .info-block--header .info-block__item .df-icon-custom i {
    font-size: 24px;
  }
  .info-block--header .info-block__item .df-icon-custom img {
    width: 28px;
    height: auto;
  }
  .info-block--header .info-block__item .df-icon-custom .df-icon {
    top: 0;
  }
  .info-block--header .info-block__item .df-icon-stack--bag {
    top: 3px;
  }
  .info-block--header .info-block__item .df-icon-stack--bag .df-icon--bag-handle {
    top: 19px;
  }
  .header--layout-4 .info-block--header .info-block__item .df-icon-stack--bag .df-icon--bag-handle {
    top: 10px;
  }
  .info-block--header .info-block__item .info-block__heading {
    margin-top: 5px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .info-block--header .info-block__item {
    margin-left: 20px;
  }
}
.info-block--header .info-block__item.has-children.js-info-block__item--onhover > .info-block__link-wrapper {
  padding-right: 16px;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onhover > .info-block__link-wrapper::after {
  display: block;
  content: "\f107";
  position: absolute;
  right: 0;
  top: 23px;
  font-size: 10px;
  line-height: 1.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  color: #fff;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick {
  padding-right: 0;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick .info-block__menu-icon {
  display: block;
  position: absolute;
  right: 0;
  top: 21px;
  width: 16px;
  height: 16px;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick .info-block__menu-icon::before {
  content: "\f0c9";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  pointer-events: none;
  font-size: 10px;
  line-height: 1em;
  color: #fff;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick .info-block__menu-icon:hover {
  cursor: pointer;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick .info-block__menu-icon.active::before {
  content: "\f00d";
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick .info-block__menu-icon.active ~ .header-cart-dropdown {
  transform: rotateX(0deg);
  opacity: 1;
  visibility: visible;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick > .info-block__link-wrapper {
  margin-right: 20px;
}
.header--layout-2 .info-block--header .info-block__item.has-children > .info-block__link-wrapper::after {
  top: 25px;
}
.header--layout-4 .info-block--header .info-block__item.has-children > .info-block__link-wrapper::after {
  top: 13px;
}
.info-block--header .info-block__item--shopping-cart .info-block__heading {
  margin-bottom: 3px;
}
.info-block--header .info-block__cart-sum {
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  line-height: 1.2em;
  display: block;
  color: #3ffeca;
}

.footer-widgets .info-block__item .df-icon {
  stroke: #3ffeca;
}
.footer-widgets .info-block__item .df-icon-custom {
  font-size: 24px;
  color: #3ffeca;
}

.info-block--horizontal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 992px) {
  .info-block--horizontal {
    flex-wrap: nowrap;
    width: auto;
  }
}
.info-block--horizontal .info-block__item {
  width: 100%;
  padding-left: 50px;
}
@media (min-width: 768px) {
  .info-block--horizontal .info-block__item {
    width: 33.3%;
  }
}
@media (min-width: 992px) {
  .info-block--horizontal .info-block__item {
    width: auto;
    margin: 0 20px;
  }
}
@media (min-width: 1200px) {
  .info-block--horizontal .info-block__item {
    margin: 0 43px;
  }
}
@media (max-width: 991px) {
  .info-block--horizontal .info-block__item:last-child {
    margin-bottom: 34px;
  }
}
@media (min-width: 992px) {
  .info-block--horizontal .info-block__item:last-child {
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .info-block--horizontal .info-block__item:last-child {
    margin-right: 20px;
  }
}
.info-block--horizontal .info-block__item--social {
  padding-left: 0;
}
.info-block--horizontal .df-icon-custom i {
  font-size: 24px;
  color: #3ffeca;
}

/* Social Counter
/* ------------------------- */
.btn-social-counter {
  display: block;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  border: 1px solid #3c3b5b;
  border-radius: 4px;
  min-height: 65px;
  position: relative;
  overflow: hidden;
  background-clip: padding-box;
  padding: 20px 60px 18px 86px;
  transition: all 0.3s ease-in-out;
  transform: translate3d(0, 0, 0);
}
.btn-social-counter + .btn-social-counter {
  margin-top: 10px;
}
.btn-social-counter:hover {
  color: #fff;
}
.widget--footer .btn-social-counter {
  border-color: transparent;
}

.btn-social-counter__icon {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 68px;
  background-color: rgba(0, 0, 0, 0.1);
  color: #fff;
  text-align: center;
  font-size: 18px;
}
.btn-social-counter__icon .fa,
.btn-social-counter__icon .fab {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn-social-counter__title {
  font-size: 11px;
  line-height: 1.2em;
  color: #fff;
  margin-bottom: 1px;
  letter-spacing: -0.02em;
}
@media (min-width: 992px) {
  .btn-social-counter__title {
    font-size: 13px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .btn-social-counter__title {
    font-size: 11px;
  }
}

.btn-social-counter__count {
  display: block;
  font-size: 10px;
  line-height: 1.2em;
  color: #fff;
  font-weight: 700;
  font-family: "Exo 2", sans-serif;
}

.btn-social-counter__add-icon {
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  right: 23px;
  top: 50%;
  margin-top: -13px;
}
.btn-social-counter__add-icon::before, .btn-social-counter__add-icon::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease-in-out;
}
.btn-social-counter__add-icon::before {
  width: 8px;
  height: 2px;
}
.btn-social-counter__add-icon::after {
  width: 2px;
  height: 8px;
}
.btn-social-counter:hover .btn-social-counter__add-icon::before, .btn-social-counter:hover .btn-social-counter__add-icon::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.btn-social-counter__name {
  font-size: 24px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1em;
  text-transform: none;
  letter-spacing: -0.03em;
}
@media (min-width: 1199px) {
  .btn-social-counter__name {
    font-size: 28px;
  }
}
.btn-social-counter--fb .btn-social-counter__name {
  text-transform: lowercase;
}

/* Types */
.btn-social-counter--card {
  padding: 34px 60px 18px 23px;
  height: 150px;
  width: 100%;
}
@media (min-width: 992px) {
  .btn-social-counter--card {
    height: 200px;
  }
}
@media (min-width: 1199px) {
  .btn-social-counter--card {
    height: 216px;
  }
}
.post-grid__item .btn-social-counter--card {
  margin-bottom: 15px;
}
.btn-social-counter--card .btn-social-counter__footer {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 60px 30px 23px;
}
.btn-social-counter--card .btn-social-counter__footer .btn-social-counter__add-icon {
  top: 0;
  margin-top: 0;
}

/* Social Buttons Styles */
.btn-social-counter--fb {
  background-color: #4d6baa;
}
.btn-social-counter--fb .btn-social-counter__icon {
  background-color: #43609c;
}
.btn-social-counter--fb:hover {
  background-color: #5c78b5;
}
.widget-social--condensed .btn-social-counter--fb {
  background-color: #43609c;
}
.widget-social--condensed .btn-social-counter--fb .btn-social-counter__count {
  background-color: #4d6baa;
}
.widget-social--grid .btn-social-counter--fb {
  background-color: #43609c;
}
.widget-social--grid .btn-social-counter--fb:hover {
  background-color: #4e6cac;
}
.widget-social--grid .btn-social-counter--fb .btn-social-counter__add-icon {
  background-color: #4e6cac;
}

.btn-social-counter--twitter {
  background-color: #3fcef2;
}
.btn-social-counter--twitter .btn-social-counter__icon {
  background-color: #38c2e5;
}
.btn-social-counter--twitter:hover {
  background-color: #57d4f4;
}
.widget-social--condensed .btn-social-counter--twitter {
  background-color: #38c2e5;
}
.widget-social--condensed .btn-social-counter--twitter .btn-social-counter__count {
  background-color: #3fcef2;
}
.widget-social--grid .btn-social-counter--twitter {
  background-color: #32b8e4;
}
.widget-social--grid .btn-social-counter--twitter:hover {
  background-color: #4cd3ff;
}
.widget-social--grid .btn-social-counter--twitter .btn-social-counter__add-icon {
  background-color: #4cd3ff;
}

.btn-social-counter--rss {
  background-color: #ffcc00;
}
.btn-social-counter--rss .btn-social-counter__icon {
  background-color: #ffbf13;
}
.btn-social-counter--rss:hover {
  background-color: #ffd11a;
}
.widget-social--condensed .btn-social-counter--rss {
  background-color: #ffbf13;
}
.widget-social--condensed .btn-social-counter--rss .btn-social-counter__count {
  background-color: #ffcc00;
}
.widget-social--grid .btn-social-counter--rss {
  background-color: #ffbf13;
}
.widget-social--grid .btn-social-counter--rss:hover {
  background-color: #ffd427;
}
.widget-social--grid .btn-social-counter--rss .btn-social-counter__add-icon {
  background-color: #ffd427;
}

.btn-social-counter--instagram {
  background-color: #e4405f;
}
.btn-social-counter--instagram .btn-social-counter__icon {
  background-color: #e12a4c;
}
.btn-social-counter--instagram:hover {
  background-color: #e75672;
}
.widget-social--condensed .btn-social-counter--instagram {
  background-color: #e12a4c;
}
.widget-social--condensed .btn-social-counter--instagram .btn-social-counter__count {
  background-color: #e4405f;
}
.widget-social--grid .btn-social-counter--instagram {
  background-color: #e12a4c;
}
.widget-social--grid .btn-social-counter--instagram:hover {
  background-color: #e4405f;
}
.widget-social--grid .btn-social-counter--instagram .btn-social-counter__add-icon {
  background-color: #e4405f;
}

.btn-social-counter--youtube {
  background-color: #FF0000;
}
.btn-social-counter--youtube .btn-social-counter__icon {
  background-color: rgba(0, 0, 0, 0.08);
}
.btn-social-counter--youtube:hover {
  background-color: #ff1a1a;
}
.df-social-count--columns .btn-social-counter--youtube .btn-social-counter__count {
  background-color: rgba(0, 0, 0, 0.05);
}

.btn-social-counter--twitch {
  background-color: #6441A4;
}
.btn-social-counter--twitch .btn-social-counter__icon {
  background-color: #593a92;
}
.btn-social-counter--twitch:hover {
  background-color: #6f48b6;
}
.widget-social--condensed .btn-social-counter--twitch {
  background-color: #6441A4;
}
.widget-social--condensed .btn-social-counter--twitch .btn-social-counter__count {
  background-color: #6f48b6;
}

/*
// #Social Links
// --------------------------------------------------
*/
.social-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.social-links__item {
  display: inline-block;
  vertical-align: middle;
  font-size: 9px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  margin-right: 12px;
}
.social-links__item .fa,
.social-links__item .fab,
.social-links__item svg {
  font-size: 12px;
  margin-right: 5px;
  transition: color 0.2s ease;
  color: #f92552;
}
.header .social-links__item .fa,
.header .social-links__item .fab,
.header .social-links__item svg {
  color: #fff;
}
.footer .social-links__item .fa,
.footer .social-links__item .fab,
.footer .social-links__item svg {
  color: #fff;
}
.social-links__item svg {
  fill: #f92552;
}
.header .social-links__item svg {
  fill: #fff;
}
.footer .social-links__item svg {
  fill: #fff;
}
.social-links__item:last-child {
  margin-right: 0;
}

.social-links__link {
  display: inline-block;
  color: #fff;
  transition: color 0.2s ease;
}
.header .social-links__link:hover .fa,
.header .social-links__link:hover .fab {
  color: #f92552;
}
.footer .social-links__link:hover {
  color: #fff;
}
.footer .social-links__link:hover .fa,
.footer .social-links__link:hover .fab {
  color: #f92552;
}

.social-links--main-nav {
  display: inline-block;
  padding-left: 30px;
}
.social-links--main-nav .social-links__item {
  margin-right: 19px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .social-links--main-nav .social-links__item {
    margin-right: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .social-links--main-nav {
    padding-left: 30px;
  }
}
.social-links--main-nav .social-links__link--svg svg {
  display: inline-block;
  width: 14px;
  height: 18px;
  line-height: 18px;
  vertical-align: top;
}

.social-links--top-bar {
  padding-left: 0;
}
.social-links--top-bar .social-links__item {
  margin-right: 20px;
}
.social-links--top-bar .social-links__item .fa,
.social-links--top-bar .social-links__item .fab,
.social-links--top-bar .social-links__item svg {
  font-size: 16px;
  opacity: 0.6;
}
.social-links--top-bar .social-links__link .fa,
.social-links--top-bar .social-links__link .fab {
  color: #9e9caa;
}
.social-links--top-bar .social-links__link:hover .fa,
.social-links--top-bar .social-links__link:hover .fab {
  opacity: 1;
  color: #3ffeca;
}
.social-links--top-bar .social-links__link--svg svg {
  fill: #9e9caa;
}
.social-links--top-bar .social-links__link--svg:hover svg {
  opacity: 1;
  fill: #3ffeca;
}

.social-links--btn .social-links__item {
  margin: 0;
}
.social-links--btn .social-links__link {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  color: #fff;
  border-radius: 2px;
  font-size: 12px;
  margin: 0 2px;
  transition: opacity 0.2s ease-in-out;
}
.social-links--btn .social-links__link:hover {
  opacity: 0.8;
}
.social-links--btn .social-links__link:hover .fa,
.social-links--btn .social-links__link:hover .fab {
  color: #fff;
}
.social-links--btn .social-links__link .fa,
.social-links--btn .social-links__link .fab {
  margin: 0;
}
.social-links--btn .social-links__link--lg {
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin: 0 6px;
}
.social-links--btn [class*=social-links__link--] > .fa,
.social-links--btn [class*=social-links__link--] > .fab {
  color: #fff;
}
.social-links--btn .social-links__link--fb {
  background-color: #4d6baa;
}
.social-links--btn .social-links__link--twitter {
  background-color: #3fcef2;
  color: #fff;
}
.social-links--btn .social-links__link--linkedin {
  background-color: #0077B5;
}
.social-links--btn .social-links__link--vk {
  background-color: #6383A8;
}
.social-links--btn .social-links__link--ok {
  background-color: #F4731C;
}
.social-links--btn .social-links__link--whatsapp {
  background-color: #25D366;
}
.social-links--btn .social-links__link--viber {
  background-color: #7C529E;
}
.social-links--btn .social-links__link--viber img {
  width: 12px;
  height: auto;
}
.social-links--btn .social-links__link--telegram {
  background-color: #2CA5E0;
}
.social-links--btn .social-links__link--mail,
.social-links--btn .social-links__link--site {
  background-color: #9e9caa;
}
.social-links--btn.social-links--btn-block .social-links__item {
  display: inline;
}
.social-links--btn.social-links--btn-block .social-links__link {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 12px;
  font-size: 9px;
  height: 24px;
  line-height: 24px;
}

.social-links--circle .social-links__item {
  margin-right: 20px;
}
@media (min-width: 992px) {
  .social-links--circle .social-links__item {
    margin-right: 10px;
  }
}
@media (min-width: 1200px) {
  .social-links--circle .social-links__item {
    margin-right: 24px;
  }
}
.social-links--circle .social-links__item:last-child {
  margin-right: 0;
}
.social-links--circle .social-links__link {
  border: 2px solid rgba(158, 156, 170, 0.4);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  text-align: center;
  transition: border-color 0.3s ease;
  vertical-align: top;
}
.social-links--circle .social-links__link .fa,
.social-links--circle .social-links__link .fab {
  margin-right: 0;
  font-size: 14px;
  line-height: 30px;
}
.social-links--circle .social-links__link svg {
  display: inline-block;
  width: 14px;
  height: 30px;
  margin-right: 0;
}
.social-links--circle .social-links__link:hover {
  border-color: #3ffeca;
}
.social-links--circle .social-links__link:hover .fa,
.social-links--circle .social-links__link:hover .fab {
  color: #fff;
}
.social-links--circle .social-links__link:hover svg {
  fill: #fff;
}

.social-links--circle-filled .social-links__item {
  margin-right: 10px;
}
@media (min-width: 992px) {
  .social-links--circle-filled .social-links__item {
    margin-right: 10px;
  }
}
@media (min-width: 1200px) {
  .social-links--circle-filled .social-links__item {
    margin-right: 18px;
  }
}
.social-links--circle-filled .social-links__item:last-child {
  margin-right: 0;
}
.social-links--circle-filled .social-links__link {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  transition: opacity 0.3s ease;
  vertical-align: top;
}
.social-links--circle-filled .social-links__link::before {
  color: #fff;
  margin-right: 0;
  font-size: 14px;
  line-height: 40px;
}
.social-links--circle-filled .social-links__link:hover {
  opacity: 0.8;
}
.social-links--circle-filled .social-links__link:hover::before {
  color: #fff;
}

.player-info-details__item--social-links .social-links--circle-filled-sm {
  padding-top: 4px;
}
.social-links--circle-filled-sm .social-links__item {
  margin-right: 5px;
}
@media (min-width: 992px) {
  .social-links--circle-filled-sm .social-links__item {
    margin-right: 5px;
  }
}
@media (min-width: 1200px) {
  .social-links--circle-filled-sm .social-links__item {
    margin-right: 9px;
  }
}
.social-links--circle-filled-sm .social-links__item:last-child {
  margin-right: 0;
}
.social-links--circle-filled-sm .social-links__link {
  width: 24px;
  height: 24px;
  line-height: 24px;
}
.social-links--circle-filled-sm .social-links__link::before {
  font-size: 12px;
  line-height: 24px;
}

.social-link-url {
  /* Default link icon - keep this icon first */
  /* Amazon */
  /* Behance */
  /* Bitbucket */
  /* Delicious */
  /* Dribbble */
  /* Digg */
  /* Etsy */
  /* Facebook */
  /* Faceit */
  /* Flickr */
  /* Foursquare */
  /* Github*/
  /* Gitlab */
  /* IMDb */
  /* Instagram */
  /* LinkedIn */
  /* Medium */
  /* Paypal */
  /* Pinterest */
  /* Quora */
  /* Reddit */
  /* Slack */
  /* Soundcloud */
  /* Spotify */
  /* Snapchat */
  /* Stack Overflow */
  /* Steam */
  /* StumbleUpon */
  /* Tripadvisor */
  /* Tumblr */
  /* Twitch */
  /* Twitter */
  /* Vimeo */
  /* Weibo */
  /* Wikipedia */
  /* Wordpress */
  /* Xing */
  /* Yahoo */
  /* Youtube */
  /* Mixer */
  /* VK */
  /* OK */
}
.social-link-url::before {
  content: "";
  margin-right: 0;
  text-rendering: auto;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.social-link-url[href*=http], .social-link-url[href*="#"] {
  background-color: rgba(0, 0, 0, 0.1);
}
.social-link-url[href*=http]::before, .social-link-url[href*="#"]::before {
  content: "\f0c1";
}
.social-link-url[href*="amazon."] {
  background-color: #ff9900;
}
.social-link-url[href*="amazon."]::before {
  content: "\f270";
  font-family: "Font Awesome 5 Brands";
  font-weight: 700;
}
.social-link-url[href*="behance.net"], .social-link-url[href*="be.net"] {
  background-color: #1769ff;
}
.social-link-url[href*="behance.net"]::before, .social-link-url[href*="be.net"]::before {
  content: "\f1b4";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="bitbucket.org"] {
  background-color: #205081;
}
.social-link-url[href*="bitbucket.org"]::before {
  content: "\f171";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="del.icio.us"] {
  background-color: #3399ff;
}
.social-link-url[href*="del.icio.us"]::before {
  content: "\f1a5";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="dribbble.com"] {
  background-color: #ea4c89;
}
.social-link-url[href*="dribbble.com"]::before {
  content: "\f17d";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="digg.com"] {
  background-color: #005be2;
}
.social-link-url[href*="digg.com"]::before {
  content: "\f1a6";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="etsy.com"] {
  background-color: #d5641c;
}
.social-link-url[href*="etsy.com"]::before {
  content: "\f2d7";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="facebook.com"] {
  background-color: #3B5998;
}
.social-link-url[href*="facebook.com"]::before {
  content: "\f09a";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="faceit.com"] {
  background-color: #FF5500;
}
.social-link-url[href*="faceit.com"]::before {
  display: none;
}
.social-link-url[href*="faceit.com"]::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 40px;
  line-height: 40px;
  background-image: url("../../assets/images/icon-faceit.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 14px auto;
}
.social-link-url[href*="flickr.com"] {
  background-color: #ff1981;
}
.social-link-url[href*="flickr.com"]::before {
  content: "\f16e";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="foursquare.com"] {
  background-color: #f94877;
}
.social-link-url[href*="foursquare.com"]::before {
  content: "\f180";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="github.com"] {
  background-color: #333;
}
.social-link-url[href*="github.com"]::before {
  content: "\f09b";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="gitlab.com"] {
  background-color: #554488;
}
.social-link-url[href*="gitlab.com"]::before {
  content: "\f296";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="imdb.com"] {
  background-color: #f5de50;
}
.social-link-url[href*="imdb.com"]::before {
  content: "\f2d8";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="instagram.com"] {
  background-color: #E4405F;
}
.social-link-url[href*="instagram.com"]::before {
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="linkedin.com"] {
  background-color: #0077B5;
}
.social-link-url[href*="linkedin.com"]::before {
  content: "\f0e1";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="medium.com"] {
  background-color: #00ab6c;
}
.social-link-url[href*="medium.com"]::before {
  content: "\f23a";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="paypal.com"] {
  background-color: #003087;
}
.social-link-url[href*="paypal.com"]::before {
  content: "\f1ed";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="pinterest.com"] {
  background-color: #bd081c;
}
.social-link-url[href*="pinterest.com"]::before {
  content: "\f231";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="quora.com"] {
  background-color: #a82400;
}
.social-link-url[href*="quora.com"]::before {
  content: "\f2c4";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="reddit.com"] {
  background-color: #ff4500;
}
.social-link-url[href*="reddit.com"]::before {
  content: "\f281";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="slack.com"] {
  background-color: #3eb991;
}
.social-link-url[href*="slack.com"]::before {
  content: "\f198";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="soundcloud.com"] {
  background-color: #ff8800;
}
.social-link-url[href*="soundcloud.com"]::before {
  content: "\f1be";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="spotify.com"] {
  background-color: #1db954;
}
.social-link-url[href*="spotify.com"]::before {
  content: "\f1bc";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="snapchat.com"] {
  background-color: #fffc00;
}
.social-link-url[href*="snapchat.com"]::before {
  content: "\f2ac";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="stackoverflow.com"] {
  background-color: #f48024;
}
.social-link-url[href*="stackoverflow.com"]::before {
  content: "\f16c";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="steamcommunity.com"] {
  background-color: #171A21;
}
.social-link-url[href*="steamcommunity.com"]::before {
  content: "\f1b6";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="stumbleupon.com"] {
  background-color: #eb4924;
}
.social-link-url[href*="stumbleupon.com"]::before {
  content: "\f1a4";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="tripadvisor.com"] {
  background-color: #00af87;
}
.social-link-url[href*="tripadvisor.com"]::before {
  content: "\f262";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="tumblr.com"] {
  background-color: #35465c;
}
.social-link-url[href*="tumblr.com"]::before {
  content: "\f173";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="twitch.tv"] {
  background-color: #6441A4;
}
.social-link-url[href*="twitch.tv"]::before {
  content: "\f1e8";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="twitter.com"] {
  background-color: #1DA1F2;
}
.social-link-url[href*="twitter.com"]::before {
  content: "\f099";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="vimeo.com"] {
  background-color: #1ab7ea;
}
.social-link-url[href*="vimeo.com"]::before {
  content: "\f194";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="weibo.com"] {
  background-color: #df2029;
}
.social-link-url[href*="weibo.com"]::before {
  content: "\f18a";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="wikipedia.org"] {
  background-color: #000000;
}
.social-link-url[href*="wikipedia.org"]::before {
  content: "\f266";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="wordpress.org"], .social-link-url[href*="wordpress.com"] {
  border-color: #21759b;
}
.social-link-url[href*="wordpress.org"]::before, .social-link-url[href*="wordpress.com"]::before {
  content: "\f19a";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="xing.com"] {
  background-color: #026466;
}
.social-link-url[href*="xing.com"]::before {
  content: "\f168";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="yahoo.com"] {
  background-color: #410093;
}
.social-link-url[href*="yahoo.com"]::before {
  content: "\f19e";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="youtube.com"] {
  background-color: #FF0000;
}
.social-link-url[href*="youtube.com"]::before {
  content: "\f167";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="mixer.com"] {
  background-color: #002050;
}
.social-link-url[href*="mixer.com"]::before {
  content: "稜";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="vk.com"], .social-link-url[href*="vkontakte.com"] {
  background-color: #6383A8;
}
.social-link-url[href*="vk.com"]::before, .social-link-url[href*="vkontakte.com"]::before {
  content: "\f189";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
.social-link-url[href*="ok.ru"] {
  background-color: #F4731C;
}
.social-link-url[href*="ok.ru"]::before {
  content: "\f263";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

/* Main News Banner
/* ------------------------- */
.main-news-banner {
  background-color: #27313b;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  margin-bottom: 15px;
}
.main-news-banner .posts__title > a {
  color: #fff;
}
.main-news-banner .main-news-banner__highlight {
  color: #f92552;
}

.main-news-banner__inner {
  padding: 20px;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .main-news-banner__inner {
    padding: 35px 30px 35px 30px;
  }
}
@media (min-width: 1199px) {
  .main-news-banner__inner {
    padding: 55px 35px 55px 55px;
  }
}

/* With Image at the Left */
.main-news-banner--img-left {
  will-change: opacity;
}
.main-news-banner--img-left::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: radial-gradient(at 0% 0%, rgba(255, 255, 255, 0.8), transparent);
  background-repeat: no-repeat;
  background-position: 0 0;
  mix-blend-mode: overlay;
}
@media (min-width: 992px) {
  .main-news-banner--img-left::before {
    background-image: radial-gradient(at 180px 0%, rgba(255, 255, 255, 0.8), transparent);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .main-news-banner--img-left::before {
    background-image: none !important;
  }
}
@supports (-ms-ime-align: auto) {
  .main-news-banner--img-left::before {
    background-image: none !important;
  }
}
.main-news-banner--img-left .main-news-banner__img {
  float: left;
  max-width: 50%;
  position: relative;
  z-index: 2;
}
.main-news-banner--img-left .main-news-banner__img::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 23%;
  background-color: #f92552;
  width: 50%;
}
.main-news-banner--img-left .main-news-banner__img img {
  position: relative;
  z-index: 2;
}
.main-news-banner--img-left .posts__excerpt {
  display: none;
}
@media (min-width: 768px) {
  .main-news-banner--img-left .posts__excerpt {
    display: block;
  }
}
.main-news-banner--img-left .posts__date {
  display: none;
}
@media (min-width: 768px) {
  .main-news-banner--img-left .posts__date {
    display: block;
  }
}
@media (max-width: 479px) {
  .main-news-banner--img-left .posts__more {
    padding-top: 10px;
  }
}
@media (max-width: 479px) {
  .main-news-banner--img-left .posts__more .btn {
    padding-left: 20px;
    padding-right: 15px;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 10px;
    border-width: 1px;
  }
}
.main-news-banner--img-left .posts__more .btn.btn-inverse.btn-outline {
  color: #fff;
}

/* With Background */
.main-news-banner--bg::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
}
@media (min-width: 992px) {
  .main-news-banner--bg::before {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
  }
}
.main-news-banner--bg .main-news-banner__inner {
  padding: 30px;
}
@media (min-width: 992px) {
  .main-news-banner--bg .main-news-banner__inner {
    padding: 30px 30px 30px 48%;
  }
}
@media (min-width: 1199px) {
  .main-news-banner--bg .main-news-banner__inner {
    padding: 41px 35px 41px 48%;
  }
}
.main-news-banner--bg .posts__date {
  color: rgba(255, 255, 255, 0.8);
}

.main-news-banner {
  background-color: #323150;
  border: 1px solid #3c3b5b;
  /* With Background */
}
.main-news-banner.main-news-banner--bg {
  background-image: url("../images/football/banner-helmet.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: auto;
}
@media (max-width: 767px) {
  .main-news-banner.main-news-banner--bg {
    background-size: 45% auto;
  }
}
.main-news-banner.main-news-banner--bg::before {
  display: none;
}
.main-news-banner.main-news-banner--bg .main-news-banner__inner {
  padding: 30px 30px 30px 50%;
}
@media (min-width: 992px) {
  .main-news-banner.main-news-banner--bg .main-news-banner__inner {
    padding: 40px 40px 40px 50%;
  }
}
@media (min-width: 1199px) {
  .main-news-banner.main-news-banner--bg .main-news-banner__inner {
    padding: 56px 40px 80px 50%;
  }
}
.main-news-banner.main-news-banner--bg .posts__date {
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 479px) {
  .main-news-banner.main-news-banner--bg .posts__date {
    display: none;
  }
}
.main-news-banner.main-news-banner--bg .posts__title {
  font-size: 34px;
  line-height: 1em;
  margin-bottom: 0.3em;
  color: #fff;
}
@media (max-width: 479px) {
  .main-news-banner.main-news-banner--bg .posts__title {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .main-news-banner.main-news-banner--bg .posts__excerpt {
    display: none;
  }
}
@media (min-width: 1199px) {
  .main-news-banner.main-news-banner--bg .posts__excerpt {
    margin-top: 21px;
  }
}

/* Featured Carousel
/* ------------------------- */
.featured-carousel .slick-slide::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: #0e0f10;
  opacity: 0.9;
  z-index: 2;
  pointer-events: none;
  transition: all 0.3s ease;
}
.featured-carousel .slick-slide::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background-color: #f92552;
  z-index: 1;
  transition: height 0.6s ease;
}
.featured-carousel .slick-slide.slick-current::before {
  opacity: 0.6;
  z-index: 1;
}
@media (min-width: 992px) {
  .featured-carousel .slick-slide.slick-current::after {
    height: 4px;
  }
}
@media (min-width: 1199px) {
  .featured-carousel .slick-slide.slick-current::after {
    height: 6px;
  }
}
.featured-carousel .slick-slide.slick-current .posts__inner {
  z-index: 2;
}

/* Team Filter */
.content-filter {
  background-color: #323150;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .content-filter {
    border-bottom: 1px solid #3c3b5b;
  }
}
@media (max-width: 991px) {
  .content-filter .container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.content-filter__toggle {
  display: none;
}
@media (max-width: 991px) {
  .content-filter__toggle {
    display: block;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
  }
}
.content-filter__toggle::before {
  content: "\f141";
  line-height: 40px;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

.content-filter__toggle--active::before {
  content: "\f00d";
}

.content-filter__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 992px) {
  .content-filter__list {
    flex-direction: row;
    border-left: 1px solid #3c3b5b;
    border-right: 1px solid #3c3b5b;
  }
}

.content-filter__item {
  flex-grow: 1;
  text-align: center;
  border-bottom: 1px solid #3c3b5b;
}
@media (min-width: 992px) {
  .content-filter__item {
    border-bottom: none !important;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .content-filter__item + .content-filter__item {
    border-left: 1px solid #3c3b5b;
  }
}
@media (max-width: 991px) {
  .content-filter__item:not(.content-filter__item--active) {
    display: none;
  }
}

@media (max-width: 991px) {
  .content-filter__list--expanded .content-filter__item {
    display: block;
  }
}

.content-filter__link {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2em;
  color: #7f7e8c;
  padding: 18px 20px 18px 20px;
  transition: color 0.3s ease-out;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .content-filter__link {
    padding-top: 28px;
    padding-bottom: 28px;
    flex-grow: 1;
  }
}
.content-filter__link small {
  display: block;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  font-weight: 800;
  line-height: 1.2em;
  color: #7f7e8c;
}
.content-filter__link:hover {
  color: #fff;
}
.content-filter__link::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  opacity: 0;
  background-color: #f92552;
  transition: opacity height 0.2s ease-out;
}

.content-filter__item--active,
.content-filter__item.is-active {
  background-color: transparent;
}
@media (max-width: 991px) {
  .content-filter__item--active,
  .content-filter__item.is-active {
    order: -1;
  }
}
.content-filter__item--active .content-filter__link,
.content-filter__item.is-active .content-filter__link {
  color: #fff;
}
.content-filter__item--active .content-filter__link::before,
.content-filter__item.is-active .content-filter__link::before {
  height: 4px;
  opacity: 1;
}
.content-filter__item--active .content-filter__link:hover,
.content-filter__item.is-active .content-filter__link:hover {
  cursor: default;
}

.content-filter--boxed {
  background-color: transparent;
  border-bottom: 0;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .content-filter--boxed {
    margin-left: 8px;
    margin-right: 8px;
  }
}
.single-sp_team .content-filter--boxed {
  margin-top: 30px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .single-sp_team .content-filter--boxed {
    margin-top: 60px;
    margin-bottom: 40px;
  }
}
.single-sp_team .content-filter--boxed + .site-content {
  padding-top: 0;
}
@media (min-width: 992px) {
  .single-sp_team .content-filter--boxed + .site-content {
    padding-top: 0;
  }
}
.content-filter--boxed .content-filter__inner {
  position: relative;
  background-color: #323150;
  border: 1px solid #3c3b5b;
  border-radius: 4px;
}
.content-filter--boxed .content-filter__list {
  border-left: 0;
  border-right: 0;
}
.content-filter--boxed .content-filter__item:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.content-filter--highlight-side .content-filter__item .content-filter__link::before {
  content: "";
  left: 0;
  right: auto;
  bottom: 0;
  top: 0;
  height: auto;
  transition: opacity width 0.2s ease-out;
}
.content-filter--highlight-side .content-filter__item--active .content-filter__link::before,
.content-filter--highlight-side .content-filter__item.is-active .content-filter__link::before {
  width: 6px;
}
.content-filter--highlight-side.content-filter--boxed .content-filter__item:first-child .content-filter__link::before {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

@media (min-width: 992px) {
  .content-filter--label-left .content-filter__item {
    text-align: left;
  }
}

/*
// #Gallery
// --------------------------------------------------
*/
.gallery__item-inner {
  display: block;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
.gallery__item-inner:hover {
  background-color: #323150;
  color: #9e9caa;
}
.gallery__item-inner:hover .gallery__date {
  color: #9e9caa;
}
.gallery__item-inner:hover .gallery__icon {
  color: #fff;
}
.gallery__item-inner:hover .gallery__name {
  color: #fff;
}
.gallery__item-inner:hover .gallery__btn-fab {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.gallery__item-inner:hover .gallery__thumb img {
  opacity: 0.2;
}

.gallery__thumb {
  position: relative;
  background-color: #323150;
}
.gallery__thumb img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}

.gallery__thumb--cropped {
  overflow: hidden;
  max-height: 220px;
}

.gallery__btn-fab {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery__content {
  overflow: hidden;
}
@media (max-width: 479px) {
  .gallery__content {
    padding: 12px 12px;
  }
}

.gallery__icon {
  float: left;
  margin-right: 15px;
  font-size: 30px;
  line-height: 1em;
  color: #f92552;
  transition: color 0.3s ease;
}
@media (max-width: 479px) {
  .gallery__icon {
    font-size: 20px;
    margin-right: 8px;
  }
}

.gallery__icon--circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid #f92552;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 32px;
}

.gallery__details {
  overflow: hidden;
}

.gallery__name {
  text-transform: uppercase;
  line-height: 1.2em;
  margin: 0;
  font-size: 12px;
  padding: 0.25em 0;
  transition: color 0.2s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: normal;
}
@media (min-width: 992px) {
  .gallery__name {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .gallery__name {
    font-size: 16px;
  }
}

.gallery__date {
  display: block;
  font-size: 8px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #9e9caa;
  line-height: 1.2em;
  transition: color 0.3s ease;
}
@media (min-width: 992px) {
  .gallery__date {
    font-size: 10px;
  }
}

.gallery__header {
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.gallery__header .gallery__details {
  flex-grow: 1;
}
.gallery__header .gallery__name {
  font-size: 14px;
}
.gallery__header .gallery__date {
  font-style: italic;
}
.gallery__header .gallery__like {
  font-size: 10px;
  line-height: 1.2em;
  color: #9e9caa;
  padding-left: 10px;
  white-space: nowrap;
}
.gallery__header .gallery__like i {
  font-size: 12px;
  line-height: 1em;
  margin-left: 0.3em;
  display: inline-block;
  vertical-align: middle;
}

.gallery__thumb-list {
  margin: 0;
  padding: 6px 0 0 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #3c3b5b;
}

.gallery__thumb-item {
  position: relative;
  overflow: hidden;
  margin-left: 3px;
  margin-right: 3px;
}
.gallery__thumb-item:first-child {
  margin-left: 0;
}
.gallery__thumb-item:last-child {
  margin-right: 0;
}
.gallery__thumb-item:last-child::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: -1px;
  right: 0;
  background-color: #3c3b5b;
  opacity: 0.9;
  background-color: #f92552;
}
.gallery__thumb-item:last-child::after {
  content: "\f067";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto;
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 992px) {
  .gallery__thumb-item:last-child::after {
    font-size: 36px;
  }
}

/*
// #Album
// --------------------------------------------------
*/
.album-wrapper {
  overflow: hidden;
}

.album.container-fluid {
  margin-left: -12px;
  margin-right: -12px;
  padding-left: 0;
  padding-right: 0;
}

.album--condensed {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
.album--condensed .album__item {
  padding: 0;
}

.album__item {
  margin-bottom: 15px;
}
.album--condensed .album__item {
  padding: 6px;
  margin-bottom: 0;
}

.album__item-holder {
  display: block;
  overflow: hidden;
  position: relative;
  background-color: #282840;
  border-radius: 4px;
  transform: translate3d(0, 0, 0);
}
.album__item-holder:hover .album__thumb {
  opacity: 0.2;
}
.album__item-holder:hover .album__item-desc {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.album__item-holder:hover .album__item-desc:not(.album__item-desc--bottom-left) {
  transform: scale(1) translateY(-50%);
}
.album__item-holder:hover .album__item-meta {
  visibility: visible;
  opacity: 1;
}

.album__item-holder--color--primary {
  background-color: #f92552;
}
.album__item-holder--color--primary .album__item-date {
  color: #fff;
}

.album__item-link {
  display: block;
}

.album__thumb {
  opacity: 1;
  position: relative;
  transition: opacity 0.3s ease;
}
.album__thumb img {
  width: 100%;
  height: auto;
}

.album__item-desc {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 14%;
  transform: scale(0.95) translateY(-50%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.album__item-desc--bottom-left {
  transform: scale(0.95);
  top: auto;
  bottom: 20px;
  text-align: left;
  padding: 0 10%;
}
@media (min-width: 992px) {
  .album__item-desc--bottom-left {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.album__item-icon {
  float: left;
  margin-right: 15px;
  font-size: 30px;
  line-height: 1em;
  color: #f92552;
  transition: color 0.3s ease;
}
@media (max-width: 479px) {
  .album__item-icon {
    font-size: 20px;
    margin-right: 8px;
  }
}

.album__item-desc-inner {
  overflow: hidden;
}

.album__item-title {
  color: #fff;
  line-height: 1em;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 0.35em;
}
@media (min-width: 992px) {
  .album__item-title {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .album__item-title {
    display: none;
  }
}

.album__item-date {
  display: block;
  font-size: 8px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  color: #9e9caa;
  margin-bottom: 0.9em;
}
@media (min-width: 992px) {
  .album__item-date {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .album__item-date {
    display: none;
  }
}

.album__item-btn-fab {
  position: relative;
  left: auto;
  top: auto;
  margin: 0 auto;
}

.album__item-meta {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 20px;
  top: 15px;
  transition: opacity 0.3s ease;
}
@media (min-width: 992px) {
  .album__item-meta {
    right: 30px;
    top: 25px;
  }
}
.album__item-meta .meta__item {
  color: #fff;
}
.album__item-meta .meta__item > a {
  color: #fff;
}

/* Album - Load More Photos */
.album-load-more {
  padding: 30px 0 20px 0;
}
@media (min-width: 992px) {
  .album-load-more {
    padding: 80px 0 40px 0;
  }
}
.album-load-more .btn {
  margin: 0 auto;
}
@media (min-width: 992px) {
  .album-load-more .btn {
    width: calc(33.3% + 60px);
  }
}

/*
// #Modal Login
// --------------------------------------------------
*/
.modal--login .modal-header {
  background-image: url("../images/login_register_bg.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
@media (min-width: 992px) {
  .modal--login .modal-header {
    height: 90px;
  }
}
.modal--login .modal-header .close {
  width: 33px;
  height: 33px;
  padding: 0;
  line-height: 33px;
  border-radius: 50%;
  background-color: #fff;
  color: #fff;
  opacity: 1;
  margin: 0;
  text-shadow: none;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  transition: all 0.3s ease;
}
.modal--login .modal-header .close span {
  margin-left: 2px;
}
.modal--login .modal-header .close:hover {
  background-color: #f92552;
}
.modal--login .modal-body {
  padding: 0;
}
.modal--login .modal-account-holder {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.modal--login .modal-account__item {
  flex-basis: 100%;
  padding: 20px;
}
@media (min-width: 768px) {
  .modal--login .modal-account__item {
    flex-basis: 50%;
    padding: 30px 20px;
  }
  .modal--login .modal-account__item:nth-child(2) {
    border-left: 1px solid #e4e7ed;
  }
}
@media (min-width: 992px) {
  .modal--login .modal-account__item {
    flex-basis: 50%;
    padding: 50px 38px;
  }
}
.modal--login .modal-account__item--logo {
  background-image: url("../images/soccer/samples/login_register_bg.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  color: #fff;
  position: relative;
}
@media (max-width: 991px) {
  .modal--login .modal-account__item--logo {
    display: none;
  }
}
.modal--login .modal-account__item--logo a {
  color: #3ffeca;
  font-weight: bold;
}
.modal--login .modal-account__item--logo a:hover {
  color: #fff;
}
.modal--login .modal-account__item-register-txt {
  position: absolute;
  left: 30px;
  right: 40px;
  top: 100%;
  transform: translateY(-100%) translateY(-30px);
}

.modal--login-only .modal-header {
  height: 0;
  padding: 0;
  background-image: none;
  border: none;
}

.nav-tabs-login-wrapper {
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -20px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .nav-tabs-login-wrapper {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -30px;
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .nav-tabs-login-wrapper {
    margin-left: -38px;
    margin-right: -38px;
    margin-bottom: -50px;
    margin-top: 30px;
  }
}

.nav-tabs--login {
  border-top: 1px solid #3c3b5b;
}
.nav-tabs--login > li > a {
  border: none !important;
  border-radius: 0 !important;
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.4);
  padding-top: 15px;
  padding-bottom: 15px;
}
.nav-tabs--login > li > a:hover {
  background-color: transparent;
  color: #f92552;
}
.nav-tabs--login > li.active > a {
  color: #f92552;
}
.nav-tabs--login > li.active > a:hover {
  color: #f92552;
}
.nav-tabs--login > li + li {
  border-left: 1px solid #3c3b5b;
}

.modal-form h5 {
  margin-bottom: 1.7em;
}
@media (min-width: 992px) {
  .modal-form h5 {
    font-size: 18px;
  }
}
.modal-form .form-group {
  margin-bottom: 15px;
}
.modal-form .form-group--submit {
  margin: 30px 0;
  padding-top: 9px;
}
.modal-form .modal-form--note {
  font-size: 14px;
  line-height: 22px;
}
.modal-form .form-group--pass-reminder {
  font-size: 14px;
  overflow: hidden;
}
.modal-form .form-group--pass-reminder label {
  font-size: 10px;
}
.modal-form .form-group--pass-reminder a {
  color: #9e9caa;
}
.modal-form .form-group--pass-reminder a:hover {
  color: #f92552;
}
@media (min-width: 992px) {
  .modal-form .form-group--pass-reminder a {
    float: right;
  }
}
.modal-form .form-note {
  padding-top: 15px;
  padding-bottom: 15px;
}

.modal-form--social {
  padding-top: 4px;
}
.modal-form--social h6 {
  font-size: 10px;
  line-height: 1.2em;
  text-align: center;
}

/**
 *
 * Sponsors
 *
 */
/* Sponsors Grid */
.sponsor-card {
  height: calc(100% - 16px);
}

.sponsor-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 172px;
}
.sponsor-card__header::before {
  display: none;
}

.sponsor-card__logo img {
  max-height: 130px;
}

.sponsor-card__content {
  flex-grow: 1;
}

.sponsor-card__excerpt {
  font-size: 0.86em;
  line-height: 1.83em;
  text-align: center;
}

.sponsor-card__social {
  text-align: center;
  padding-top: 32px;
  padding-bottom: 4px;
}
.sponsor-card__social .social-links__item {
  margin: 0 14px;
}
.sponsor-card__social .social-links__item:last-child {
  margin-right: 14px;
}
.sponsor-card__social .social-links__link {
  background-color: transparent;
  color: #9e9caa;
  font-size: 16px;
  margin-right: 0;
  opacity: 0.6;
}
.sponsor-card__social .social-links__link:hover {
  color: #0fe3ab;
  opacity: 1;
}

.sponsor-card__footer {
  border-top: 1px solid #3c3b5b;
  background-color: #383759;
  padding: 18px 10px;
  text-align: center;
}

.sponsor-card__link {
  font-size: 10px;
  line-height: 1.2em;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-primary,
.text-color-primary {
  color: #f92552 !important;
}

.text-transform-normal {
  text-transform: none !important;
}

.text-transform-uppercase {
  text-transform: uppercase !important;
}

.text-center {
  text-align: center !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.inactive-item {
  pointer-events: none !important;
}
