@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,600&family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");
.bg {
  background-color: #3c3c3c;
  color: #fff;
  transition: all 0.3s;
}
.bg > a {
  color: inherit;
  text-decoration: none;
}
.bg > a:hover, .bg > a:hover {
  color: inherit;
}

.light-bg {
  background-color: rgba(0, 119, 212, 0.2);
}

.gray-bg {
  background-color: #E7E9EC;
}

body {
  font-family: "Work Sans", sans-serif;
  color: #121212;
}

h1 {
  font-family: "Lora", serif;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover, a:hover {
  color: inherit;
}

@media (max-width: 991px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .row {
    margin-left: -8px;
    margin-right: -8px;
  }
  .row > .col,
.row > [class*=col-] {
    padding-right: 8px;
    padding-left: 8px;
  }
}
@media (max-width: 575px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
}
html, body {
  font-size: 16px;
}

.display-block {
  display: block;
}

.inline {
  display: inline;
}

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

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.up {
  text-transform: uppercase;
}

.clear {
  clear: both;
}

.font-active {
  color: #d4000c;
  transition: all 0.3s;
}
.font-active:hover, .font-active:focus {
  color: #6e0006;
}

.font-highlight {
  color: #d4000c;
  transition: all 0.3s;
}
.font-highlight:hover, .font-highlight:focus {
  color: #d4000c;
}

.font-blue {
  color: #4c60a6;
  transition: all 0.3s;
}
.font-blue:hover, .font-blue:focus {
  color: #d4000c;
}

.serif {
  font-family: "Lora", serif;
}

.transition {
  transition: all 0.3s;
}

.hide, .hidden {
  display: none;
}

img {
  max-width: 100%;
}

.icon-bars {
  position: relative;
  width: 24px;
  height: 18px;
  line-height: 18px;
  margin-top: 1px;
  display: inline-block;
  margin-right: 10px;
  float: left;
}
.icon-bars span {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #121212;
}
.icon-bars span:first-child {
  top: 0;
  left: 0;
}
.icon-bars span:nth-child(2), .icon-bars span:nth-child(3) {
  top: 8px;
  left: 0;
}
.icon-bars span:last-child {
  top: 16px;
  left: 0;
}
.icon-bars.white span {
  background-color: #fff;
}
.icon-bars.white span:first-child {
  top: 8px;
  left: 50%;
  width: 0;
}
.icon-bars.white span:last-child {
  top: 8px;
  left: 50%;
  width: 0;
}
.icon-bars.white span:nth-child(2) {
  transform: rotate(45deg);
}
.icon-bars.white span:nth-child(3) {
  transform: rotate(-45deg);
}

.icon-close {
  position: relative;
  width: 24px;
  height: 18px;
  line-height: 18px;
  display: inline-block;
}
.icon-close span {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #121212;
}
.icon-close span:first-child {
  top: 8px;
  left: 0;
}
.icon-close span:last-child {
  top: 8px;
  left: 0;
}
.icon-close span:first-child {
  transform: rotate(45deg);
}
.icon-close span:last-child {
  transform: rotate(-45deg);
}
.icon-close.white span {
  background-color: #fff;
}

.search-btn .icon-search {
  display: inline-block;
  float: left;
  width: 19px;
  height: 19px;
  background-color: transparent;
  background-image: url("/static/frontend/imgs/icon-search.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 12px;
}
.search-btn:hover, .search-btn:focus {
  text-decoration: underline;
}
.search-btn:hover .icon-search, .search-btn:focus .icon-search {
  background-image: url("/static/frontend/imgs/icon-search-hover.png");
}
.search-btn:after {
  content: "";
  display: block;
  clear: both;
}

.icon-btn-search {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: transparent;
  background-image: url("/static/frontend/imgs/icon-search.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

body {
  padding-top: 0;
}
body.fixed {
  padding-top: 106px;
}
body.fixed header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
}
@media (max-width: 1199px) {
  body.fixed {
    padding-top: 82px;
  }
}
body.fixed.with-breaking {
  padding-top: 145px;
}
@media (max-width: 1199px) {
  body.fixed.with-breaking {
    padding-top: 122px;
  }
}
@media (max-width: 767px) {
  body.fixed.with-breaking {
    padding-top: 109px;
  }
}

header {
  height: 106px;
}
@media (max-width: 1199px) {
  header {
    height: 82px;
  }
}
@media (max-width: 767px) {
  header {
    height: 69px;
  }
}

body.with-breaking header {
  height: 145px;
}
@media (max-width: 1199px) {
  body.with-breaking header {
    height: 122px;
  }
}
@media (max-width: 767px) {
  body.with-breaking header {
    height: 109px;
  }
}

header .nav-margin {
  margin: 17px auto 17px auto;
}
@media (max-width: 1199px) {
  header .nav-margin {
    margin: 17px auto 8px auto;
  }
}
@media (max-width: 767px) {
  header .nav-margin {
    margin: 20px auto 14px auto;
  }
}
header .navbar {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  header .navbar {
    padding: 0;
  }
}
header .navbar .nav-wrapper {
  color: #3c3c3c;
}
header .navbar .list-group .list-group-item {
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}
header .navbar .navbar-brand {
  padding: 0;
  margin: 0 8px 0 0;
  width: 142px;
  /*
  @media (max-width: $sm - 1px) {
    width: 120px;
  }
  @media (max-width: 350px) {
    width: 100px;
    margin-right: 0.5rem;
  }
  */
}
@media (max-width: 1199px) {
  header .navbar .navbar-brand {
    width: 94px;
  }
}
@media (max-width: 767px) {
  header .navbar .navbar-brand {
    width: 62px;
    height: 35px;
  }
}
header .navbar .navbar-brand img {
  height: auto;
}
header .navbar .btn {
  border: none;
  border-radius: 0;
  line-height: 19px;
  color: #3c3c3c;
  font-size: 14px;
  padding: 5px 0.25rem;
}
header .navbar .btn.btn-outline {
  padding: 4px 18px 4px;
  border: 1px solid #707070;
  /*
  @media (max-width: $lg - 1px) {
    padding: 11px 2rem;
  }
  */
}
header .navbar .btn.btn-outline:hover {
  text-decoration: underline;
}
header .navbar .btn:hover {
  color: #3c3c3c;
  text-decoration: underline;
}
header .navbar .btn:focus {
  box-shadow: none;
}
header .navbar .nav-link {
  line-height: 20px;
}
@media (min-width: 1200px) {
  header .navbar .nav-top-wrapper {
    margin-top: 7px;
  }
}
header .navbar .nav-box-wrapper {
  position: relative;
}
@media (max-width: 991px) {
  header .navbar .nav-box-wrapper {
    position: static;
  }
}
header .navbar .nav-box-wrapper .nav {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: #121212;
}
header .navbar .nav-box-wrapper .nav .nav-link {
  padding: 0.5rem 0.375rem;
  margin: 0 0.25rem;
  /*
  @media (max-width: $md - 1px) {
    padding: 0.75rem 0.25rem;
    margin: 0 0.25rem;
    &:first-child {
      padding: 0.75rem 0.75rem;
      margin: 0 0.5rem;
    }
  }

  @media (max-width: 480px) {
    display: none;

    &:first-child {
      display: block;
    }
  }
  */
}
header .navbar .nav-box-wrapper .nav .nav-link.active {
  color: #3c3c3c;
}
@media (max-width: 1199px) {
  header .navbar .nav-box-wrapper .nav .nav-link {
    display: none;
    /*
    padding: 0.75rem 0.5rem;
    margin: 0 0.25rem;
    &:first-child {
      padding: 0.75rem 0.75rem;
      margin: 0 0.5rem;
    }
    */
  }
  header .navbar .nav-box-wrapper .nav .nav-link:first-child {
    display: block;
  }
}
header .navbar .nav-box-wrapper .nav .nav-link:hover, header .navbar .nav-box-wrapper .nav .nav-link:focus {
  text-decoration: underline;
}
header .navbar .util {
  padding-top: 2px;
  /*
  @media (max-width: $md - 1px) {
    padding-top: 0;
  }
  */
}
header .navbar .util .list-group {
  margin-right: -0.75rem;
}
header .navbar .util .list-group .list-group-item {
  margin: 0 0.5rem;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header .navbar .util .list-group .list-group-item {
    margin: 0 0.5rem;
  }
}
@media (max-width: 1199px) {
  header .navbar .util {
    float: right;
  }
}
@media (max-width: 767px) {
  header .navbar .icon-text {
    display: none;
  }
  header .navbar .icon-bars {
    margin-right: 0;
  }
  header .navbar .nav-wrapper .flex-fill .d-flex.flex-column {
    max-width: 205px;
    margin-left: calc(100% - 205px);
    margin-right: 0px;
  }
  header .navbar .nav-wrapper .flex-fill .d-flex.flex-column .nav .nav-link {
    padding-left: 13px;
  }
}
header .tags {
  width: 100%;
  line-height: 14px;
  overflow: hidden;
  color: #888888;
  font-size: 12px;
  font-weight: 400;
  margin-top: 12px;
}
@media (min-width: 768px) {
  header .tags {
    width: calc(100% - 102px);
    margin-top: -8px;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  header .tags {
    width: calc(100% - 150px);
    margin-top: -8px;
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  header .tags {
    width: calc(100% - 221px);
    margin-top: -22px;
    margin-left: auto;
  }
}
header .tags .list-group {
  float: right;
  margin-right: -10px;
  /*
  @media (max-width: $md - 1px) {
    margin-right: -10px;
    .list-group-item {
      padding: 0.25rem 10px 0;
    }
  }
  @media (max-width: $sm - 1px) {
    .list-group-item {
      text-align: center;
    }
  }
  */
}
header .tags .list-group .list-group-item {
  padding: 0.25rem 10px 0;
}
header .nav-wrapper {
  position: relative;
}
header .header-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  z-index: 101;
  background-color: rgba(60, 60, 60, 0.9);
  border-radius: 2px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  transition: all 0.3s;
}
header .header-modal.open {
  max-height: 100%;
}
header .header-modal.opened {
  overflow: auto;
  /* width */
  /* Track */
  /* Handle */
}
header .header-modal.opened::-webkit-scrollbar {
  width: 3px;
}
header .header-modal.opened::-webkit-scrollbar-track {
  background-color: #888888;
  border-radius: 3px;
}
header .header-modal.opened::-webkit-scrollbar-thumb {
  background: #d4000c;
  border-radius: 3px;
}
header .header-modal.nav-box-open .nav-box {
  display: block;
}
header .header-modal.search-box-open .search-box {
  display: block;
}
header .header-modal.newsletter-box-open .newsletter-box {
  display: block;
}
header .header-modal.registration-box-open .registration-box {
  display: block;
}
header .nav-box {
  display: none;
  width: 100%;
  /*
  background-color: $default;
  border-radius: 2px;
  position: absolute;
  left: -10px;
  top: -50px;
  width: 691px;
  max-height: 0;
  overflow: hidden;
  z-index: 100;

  @media (max-width: $md - 1px) {
    left: 186px;
    width: calc(100% - 186px);
  }

  @media (max-width: $sm - 1px) {
    top: -29px;
    left: 130px;
    width: calc(100% - 130px);
  }

  &.open {
    max-height: 600px;
    @media (max-width: $sm - 1px) {
      max-height: 1200px;
    }
  }
  */
  text-transform: uppercase;
  font-weight: normal;
  color: #ded6d6;
}
header .nav-box .nav-box-close {
  position: absolute;
  top: 15px;
  left: 160px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  /*
  @media (max-width: $xs - 1px) {
    top: 14px;
    left: auto;
    right: 16px;
  }
  */
}
@media (max-width: 1199px) {
  header .nav-box .nav-box-close {
    top: 8px;
    left: 112px;
  }
}
@media (max-width: 767px) {
  header .nav-box .nav-box-close {
    top: 8px;
    left: auto;
    right: 0;
  }
}
header .nav-box .nav-box-close:after {
  content: "";
  display: block;
  clear: both;
}
header .nav-box .nav-content {
  padding: 82px 15px 40px 35px;
  justify-content: space-between !important;
  max-width: 600px;
  /*
  @media (max-width: $md - 1px) {
    padding: 130px 32px 40px 68px;
  }
  @media (max-width: $sm - 1px) {
    padding: 100px 32px 40px 68px;
  }
  @media (max-width: 479px) {
    padding: 100px 32px 40px 32px;
  }
  */
}
header .nav-box .nav-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}
header .nav-box .nav-content ul li.nav-item {
  margin-bottom: 0.5rem;
}
header .nav-box .nav-content ul li.nav-item a.nav-link {
  padding: 0.35rem 0.5rem;
}
header .nav-box .nav-content ul li.nav-item a.nav-link:hover, header .nav-box .nav-content ul li.nav-item a.nav-link:focus {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
}
@media (min-width: 992px) {
  header .nav-box .nav-content ul:nth-child(1) {
    min-width: 170px;
  }
  header .nav-box .nav-content ul:nth-child(2) {
    min-width: 170px;
  }
  header .nav-box .nav-content ul:nth-child(3) {
    min-width: 170px;
    float: right;
  }
}
@media (max-width: 767px) {
  header .nav-box .nav-content ul.tags {
    min-width: 170px;
    float: right;
  }
}
header .newsletter-box {
  display: none;
  width: 100%;
  /*
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  background-color: $default;
  border-radius: 2px;

  max-height: 0;
  overflow: hidden;
  z-index: 100;

  @include transition();

  @media (max-width: $sm - 1px) {
    top: -29px;
  }

  &.open {
    max-height: 700px;
    @media (max-width: $sm - 1px) {
      max-height: 2000px;
    }
  }
  */
  font-weight: normal;
  color: #ded6d6;
}
header .newsletter-box .newsletter-box-close {
  position: absolute;
  top: 60px;
  right: 30px;
}
header .newsletter-box .newsletter-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 120px 32px 48px;
  color: #f2ecec;
}
@media (max-width: 767px) {
  header .newsletter-box .newsletter-content {
    padding: 120px 0 48px;
  }
}
header .newsletter-box .newsletter-content p {
  color: #f2ecec;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 72px;
}
header .newsletter-box .newsletter-content p img {
  height: 40px;
  margin-right: 32px;
  margin-bottom: 8px;
}
header .newsletter-box .newsletter-content form .input-group {
  margin-bottom: 72px;
}
@media (max-width: 767px) {
  header .newsletter-box .newsletter-content form .input-group {
    margin-bottom: 92px;
  }
}
header .newsletter-box .newsletter-content form .input-group, header .newsletter-box .newsletter-content form .form-group {
  position: relative;
}
header .newsletter-box .newsletter-content form .input-group .msg-wrapper, header .newsletter-box .newsletter-content form .form-group .msg-wrapper {
  position: absolute;
  top: 100%;
  left: 1.75rem;
  padding: 1rem 1.75rem;
  font-size: 14px;
  line-height: 18px;
}
@media (max-width: 767px) {
  header .newsletter-box .newsletter-content form .input-group .msg-wrapper, header .newsletter-box .newsletter-content form .form-group .msg-wrapper {
    left: 0;
    padding: 0.5rem 0.75rem;
  }
}
header .newsletter-box .newsletter-content form .input-group .msg-wrapper.error-msg, header .newsletter-box .newsletter-content form .form-group .msg-wrapper.error-msg {
  background-color: #fff;
  border: 3px solid #d4000c;
  color: #121212;
}
header .newsletter-box .newsletter-content form .input-group .msg-wrapper.success-msg, header .newsletter-box .newsletter-content form .form-group .msg-wrapper.success-msg {
  background-color: #28a745;
  border: 3px solid #fff;
  color: #fff;
}
header .newsletter-box .newsletter-content form input.form-control {
  background-color: #888888;
  height: 50px;
  color: #fff;
  font-family: "Lora", serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  padding-left: 1.75rem;
  border: none;
  outline: none;
}
@media (max-width: 767px) {
  header .newsletter-box .newsletter-content form input.form-control {
    padding-left: 0.5rem;
  }
}
header .newsletter-box .newsletter-content form input.form-control:focus {
  box-shadow: none;
}
header .newsletter-box .newsletter-content form input.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
header .newsletter-box .newsletter-content form input.form-control::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
header .newsletter-box .newsletter-content form input.form-control:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
header .newsletter-box .newsletter-content form input.form-control:-moz-placeholder { /* Firefox 18- */
  color: #fff;
}
header .newsletter-box .newsletter-content form .btn-outline {
  background-color: #888888;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  border: none;
  outline: none;
  border-left: 3px solid #fff;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  padding: 11px 2.75rem;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  header .newsletter-box .newsletter-content form .btn-outline {
    padding: 11px 0.75rem;
  }
}
header .newsletter-box .newsletter-content form .btn-outline:hover {
  background-color: #fff;
  color: #888888;
}
header .newsletter-box .newsletter-content form .form-check {
  margin-bottom: 42px;
  margin-left: 1.75rem;
}
@media (max-width: 767px) {
  header .newsletter-box .newsletter-content form .form-check {
    margin-left: 0;
  }
}
header .newsletter-box .newsletter-content form .form-check .form-check-input {
  width: 15px;
  height: 15px;
}
header .newsletter-box .newsletter-content form .form-check .form-check-label {
  max-width: 620px;
  font-size: 12px;
  line-height: 30px;
  color: #f2ecec;
  padding-left: 1.5rem;
}
header .search-box {
  display: none;
  width: 100%;
  /*
  position: absolute;
  top: -52px;
  right: 0;
  width: 926px;
  background-color: $default;
  padding: 0;
  border-radius: 2px;

  max-height: 0;
  overflow: hidden;
  z-index: 100;

  @include transition();

  @media (max-width: 1349px) {
    width: 100%;
    padding: 0 32px;
  }

  @media (max-width: $sm - 1px) {
    top: -29px;
  }

  &.open {
    max-height: 600px;
  }
  */
  font-weight: normal;
  color: #ded6d6;
}
header .search-box .search-box-close {
  position: absolute;
  top: 50px;
  right: 30px;
}
header .search-box form.search-content {
  max-width: 766px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 160px;
  padding-bottom: 56px;
  color: #f2ecec;
}
header .search-box form.search-content .input-group {
  margin-bottom: 20px;
}
header .search-box form.search-content input.form-control {
  background-color: #888888;
  height: 50px;
  color: #fff;
  font-family: "Lora", serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  padding-left: 1.75rem;
  border: none;
  outline: none;
}
@media (max-width: 767px) {
  header .search-box form.search-content input.form-control {
    padding-left: 0.5rem;
  }
}
header .search-box form.search-content input.form-control:focus {
  box-shadow: none;
}
header .search-box form.search-content input.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
header .search-box form.search-content input.form-control::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
header .search-box form.search-content input.form-control:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
header .search-box form.search-content input.form-control:-moz-placeholder { /* Firefox 18- */
  color: #fff;
}
header .search-box form.search-content .btn-outline {
  background-color: #888888;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  border: none;
  outline: none;
  border-left: 3px solid #fff;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  padding: 9px 1.75rem 6px;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  header .search-box form.search-content .btn-outline {
    padding: 9px 0.75rem 6px;
  }
}
header .search-box form.search-content .btn-outline:hover {
  background-color: #fff;
  color: #888888;
}
header .search-box form.search-content .topics {
  display: none;
  list-style: none;
  padding-left: 0;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  text-transform: uppercase;
}
header .search-box form.search-content .topics.show {
  display: flex;
}
header .search-box form.search-content .topics li {
  margin-bottom: 12px;
}
header .search-box form.search-content .topics li a {
  color: #ded6d6;
  padding: 0.5rem 0.75rem;
  transition: all 0.3s;
}
header .search-box form.search-content .topics li a:hover {
  color: #fff;
  text-decoration: underline;
}
header .search-box form.search-content .search-results {
  display: none;
  padding-left: 1rem;
  list-style: none;
  max-height: 290px;
  overflow: auto;
  /* width */
  /* Track */
  /* Handle */
}
header .search-box form.search-content .search-results::-webkit-scrollbar {
  width: 3px;
}
header .search-box form.search-content .search-results::-webkit-scrollbar-track {
  background-color: #888888;
  border-radius: 3px;
}
header .search-box form.search-content .search-results::-webkit-scrollbar-thumb {
  background: #d4000c;
  border-radius: 3px;
}
header .search-box form.search-content .search-results.show {
  display: block;
}
header .search-box form.search-content .search-results li {
  margin-bottom: 1rem;
}
header .search-box form.search-content .search-results li a {
  font-family: "Lora", serif;
  font-size: 16px;
  color: #ded6d6;
  padding: 0.5rem 0.75rem;
  transition: all 0.3s;
}
header .search-box form.search-content .search-results li a:hover {
  color: #fff;
  text-decoration: underline;
}
header .registration-box {
  display: none;
  width: 100%;
  /*
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  background-color: $default;
  border-radius: 2px;

  max-height: 0;
  overflow: hidden;
  z-index: 100;

  @include transition();

  @media (max-width: $sm - 1px) {
    top: -29px;
  }

  &.open {
    overflow: auto;
    max-height: 1600px;

    @media (max-width: $md - 1px) {
      max-height: 4000px;
    }

  }
  */
  font-weight: normal;
  color: #ded6d6;
}
header .registration-box .registration-box-close {
  position: absolute;
  top: 60px;
  right: 30px;
}
header .registration-box .registration-content {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 120px 0 48px;
}
@media (max-width: 767px) {
  header .registration-box .registration-content {
    padding: 120px 0 48px;
  }
}
header .registration-box .registration-content .form-section {
  color: #888888;
}
header .registration-box .registration-content .form-section.active {
  color: #fff;
}
header .registration-box .registration-content .form-section.active .btn-outline-light {
  border: 1px solid #fff;
}
header .registration-box .registration-content h3 {
  font-family: "Lora", serif;
  font-size: 21px;
  text-transform: uppercase;
  color: inherit;
}
header .registration-box .registration-content .form-group {
  display: flex;
  align-items: center !important;
  justify-content: flex-end !important;
  margin-bottom: 28px;
}
header .registration-box .registration-content .form-group.check-group {
  align-items: start !important;
}
@media (max-width: 767px) {
  header .registration-box .registration-content .form-group {
    display: block;
  }
}
header .registration-box .registration-content .form-group .custom-checkbox {
  margin-right: 2rem;
  margin-top: 3px;
  width: 15px;
  height: 15px;
}
header .registration-box .registration-content .form-group .form-label {
  flex-grow: 1 !important;
  margin-right: 2rem;
  margin-bottom: 0;
  text-transform: uppercase;
  text-align: right;
  color: inherit;
}
@media (min-width: 768px) {
  header .registration-box .registration-content .form-group .form-label {
    width: 135px;
  }
}
@media (max-width: 767px) {
  header .registration-box .registration-content .form-group .form-label {
    max-width: none;
  }
}
header .registration-box .registration-content .form-group .input-wrapper {
  width: 336px;
}
header .registration-box .registration-content .form-group .input-wrapper.input-short .form-control {
  max-width: 176px;
}
@media (max-width: 1199px) {
  header .registration-box .registration-content .form-group .input-wrapper {
    width: 250px;
  }
  header .registration-box .registration-content .form-group .input-wrapper.input-short .form-control {
    max-width: 140px;
  }
}
@media (max-width: 991px) {
  header .registration-box .registration-content .form-group .input-wrapper {
    width: calc(100% - 180px);
    /*
    &.input-short {
      margin-right: calc(100% - 330px);
    }
    */
  }
}
@media (max-width: 767px) {
  header .registration-box .registration-content .form-group .input-wrapper {
    width: 100%;
    /*
    &.input-short {
      margin-right: calc(100% - 150px);
    }
    */
  }
}
header .registration-box .registration-content .form-group .input-wrapper input {
  background-color: #888888;
  padding: 1.5rem 0.75rem;
  height: 48px;
  font-family: "Lora", serif;
  font-size: 18px;
  color: inherit;
  border-radius: 2px;
  border: none;
  outline: none;
}
header .registration-box .registration-content .form-group .input-wrapper input:focus {
  box-shadow: none;
}
header .registration-box .registration-content .form-group .input-wrapper input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
header .registration-box .registration-content .form-group .input-wrapper input::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
header .registration-box .registration-content .form-group .input-wrapper input:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
header .registration-box .registration-content .form-group .input-wrapper input:-moz-placeholder { /* Firefox 18- */
  color: #fff;
}
header .registration-box .registration-content .form-group.btn-form-group {
  margin-top: 60px;
}
header .registration-box .registration-content .form-group .btn-outline-light {
  border: 1px solid #888888;
  color: inherit;
  text-transform: uppercase;
  font-weight: normal;
}
header .registration-box .registration-content .form-group .btn-outline-light:hover {
  font-weight: bold;
  color: #888888;
}

footer {
  background-color: #3c3c3c;
  color: #ded6d6;
  font-size: 10px;
  line-height: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 21px 0;
  position: relative;
  text-align: center;
}
footer .nav-link {
  padding: 0.5rem 0.5rem;
  margin: 0 0.25rem;
}
footer .nav-link:hover, footer .nav-link:focus {
  text-decoration: underline;
}
footer .copyright-wrapper {
  line-height: 27px;
}
@media (min-width: 768px) {
  footer .pos-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  footer .copyright-wrapper {
    float: left;
  }
  footer .pos-center {
    float: right;
  }
}
@media (max-width: 767px) {
  footer .nav.social {
    text-align: center;
    margin-top: 1rem;
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
  }
}
footer .nav.social li .social-link {
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid #ded6d6;
  border-radius: 50%;
  text-align: center;
  margin: 0 14px;
  transition: all 0.3s;
}
footer .nav.social li .social-link span {
  font-size: 20px;
  line-height: 30px;
}
footer .nav.social li .social-link:hover, footer .nav.social li .social-link:focus {
  background-color: #ded6d6;
  color: #888888;
}
footer .nav.social li:first-child .social-link {
  margin-left: 0;
}
footer .nav.social li:last-child .social-link {
  margin-right: 0;
}

@-webkit-keyframes breaking-anim {
  from {
    left: 0;
  }
  to {
    left: var(--anim-end);
  }
}

@keyframes breaking-anim {
  from {
    left: 0;
  }
  to {
    left: var(--anim-end);
  }
}
.breaking .breaking-wrapper {
  display: flex;
  padding: 6px 0 6px;
  background-color: #fff;
  border-top: 1px solid #3c3c3c;
  border-bottom: 1px solid #3c3c3c;
  /*
  @media (max-width: $sm - 1px) {
    -ms-flex-direction: column!important;
    flex-direction: column!important;
    .breaking-title {
      border-right: none;
      border-bottom: 1px solid $default;
      padding-bottom: 6px;
    }
    .breaking-text {
      padding-top: 6px;
    }
  }
  */
}
.breaking .breaking-wrapper .breaking-title {
  position: relative;
  padding-left: 10px;
  padding-right: 20px;
  margin-right: 6px;
  border-right: 1px solid #3c3c3c;
  z-index: 50;
  background-color: #fff;
}
@media (max-width: 767px) {
  .breaking .breaking-wrapper .breaking-title {
    padding-left: 0;
    padding-right: 14px;
  }
}
.breaking .breaking-wrapper .breaking-title h2 {
  font-size: 21px;
  line-height: 26px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #d4000c;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .breaking .breaking-wrapper .breaking-title h2 {
    font-size: 18px;
  }
}
.breaking .breaking-wrapper .breaking-text-wrapper {
  overflow: hidden;
}
.breaking .breaking-wrapper .breaking-text-wrapper .breaking-text {
  position: relative;
  padding-left: 0;
  left: 0;
  display: inline-flex;
  -webkit-animation-name: breaking-anim;
          animation-name: breaking-anim;
  -webkit-animation-duration: var(--anim-duration);
          animation-duration: var(--anim-duration);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
.breaking .breaking-wrapper .breaking-text-wrapper .breaking-text h3 {
  display: inline;
  float: left;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-bottom: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}
.breaking .breaking-wrapper .breaking-text-wrapper .breaking-text h3 + h3:before {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #d4000c;
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
}
.breaking .breaking-wrapper .breaking-text-wrapper .breaking-text:after {
  content: "";
  display: block;
  clear: both;
}
.breaking .breaking-wrapper .breaking-text-wrapper .breaking-text:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.bloomberg-mobile span {
  display: block;
  background-color: #121212;
  border-radius: 5px;
  text-align: center;
}
.bloomberg-mobile span img {
  background-color: #121212;
  height: 50px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.content-wrapper {
  display: flex;
  margin-top: 30px;
  /*
  @media (max-width: $md - 1px) {
    .main-content {
      width: calc(78.378% - 16px);
      margin-right: 8px;
    }
    .sidebar {
      width: 21.622%;
      margin-left: 8px;
    }
  }
  */
}
@media (max-width: 991px) {
  .content-wrapper {
    flex-direction: column !important;
  }
}
@media (max-width: 991px) {
  .content-wrapper {
    margin-top: 20px;
  }
}
.content-wrapper .main-content {
  /*width: calc(100% - 240px - 24px);*/
  width: calc(78.378% - 24px);
  margin-right: 12px;
}
.content-wrapper .sidebar {
  /*width: 240px;*/
  width: 21.622%;
  margin-left: 12px;
}
@media (max-width: 991px) {
  .content-wrapper .main-content {
    width: 100%;
    margin-right: 0;
  }
  .content-wrapper .sidebar {
    width: 100%;
    margin-left: 0;
  }
}

.page-topic {
  margin-top: 0;
  margin-bottom: 40px;
}
.page-topic h4, .page-topic h2 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline;
  background-image: linear-gradient(120deg, #3c3c3c 0%, #3c3c3c 100%);
  background-repeat: no-repeat;
  background-size: 0 2px;
  background-position: 0 calc(100% - 2px);
  text-shadow: -2px 2px 0 #fff, 2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff;
  transition: all 0.3s;
}
.page-topic h4:hover, .page-topic h4:focus, .page-topic h2:hover, .page-topic h2:focus {
  background-size: 100% 2px;
}
.page-topic h4:hover a, .page-topic h4:focus a, .page-topic h2:hover a, .page-topic h2:focus a {
  text-decoration: none;
}

.page-header {
  padding-left: 1rem;
}
.page-header h4, .page-header h2.page-header-title {
  font-size: 26px;
  line-height: 36px;
  font-weight: bold;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.page-header h5, .page-header p {
  font-size: 21px;
  line-height: 28px;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.page-header h2, .page-header h1 {
  font-size: 32px;
  line-height: 42px;
  font-weight: bold;
  margin-bottom: 3rem;
  font-family: "Work Sans", sans-serif;
}
.page-header.author-header {
  padding-left: 0;
  margin-bottom: 100px;
}
.page-header.author-header .author-info {
  display: flex;
}
.page-header.author-header .author-info .img-wrapper {
  width: 342px;
  margin-right: 2rem;
}
.page-header.author-header .author-info .text-wrapper {
  width: calc(100% - 342px - 2rem);
  line-height: 26px;
}
.page-header.author-header .author-info .text-wrapper a {
  font-weight: 600;
  text-decoration: underline;
  transition: all 0.3s;
}
.page-header.author-header .author-info .text-wrapper a:hover, .page-header.author-header .author-info .text-wrapper a:focus {
  color: #d4000c;
}

article .topic-wrapper {
  margin-bottom: 0;
}
article .topic-wrapper .topic {
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 10px;
  display: inline;
  background-image: linear-gradient(120deg, #888888 0%, #888888 100%);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  text-shadow: -1px 1px 0 #fff, 1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
  transition: all 0.3s;
}
article .topic-wrapper .topic:hover, article .topic-wrapper .topic:focus {
  background-size: 100% 1px;
}
article .topic-wrapper .topic:hover a, article .topic-wrapper .topic:focus a {
  text-decoration: none;
}
article .img-wrapper picture {
  width: 100%;
}
article .img-wrapper img {
  width: 100%;
}
article .img-wrapper picture > img {
  height: auto;
}
article .img-wrapper video {
  width: 100%;
}
article .img-wrapper .jsgif {
  width: 100%;
}
article .img-wrapper .jsgif canvas {
  width: 100%;
}
article .img-wrapper.video-wrapper {
  position: relative;
}
article .img-wrapper.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}
article .img-wrapper.video-wrapper.preloaded .img-preloader {
  display: none;
}
article .img-wrapper.video-wrapper.preloaded video {
  position: static;
  visibility: visible;
}
article .img-wrapper.gif-wrapper {
  position: relative;
}
article .img-wrapper.gif-wrapper .animgif, article .img-wrapper.gif-wrapper .jsgif {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}
article .img-wrapper.gif-wrapper.preloaded .img-preloader {
  display: none;
}
article .img-wrapper.gif-wrapper.preloaded .animgif, article .img-wrapper.gif-wrapper.preloaded .jsgif {
  position: static;
  visibility: visible;
}
article .date {
  font-size: 14px;
  margin-bottom: 12px;
}
article .author {
  margin-top: 16px;
  font-size: 12px;
  color: #888888;
}
article .tags {
  display: flex;
  list-style: none;
  flex-wrap: wrap !important;
  margin-left: -10px;
  padding-left: 0;
  margin-top: 6px;
  margin-bottom: 0;
}
article .tags li {
  margin: 0 5px 5px;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #d4000c;
  text-transform: uppercase;
}
article .tags li a {
  padding: 0.25rem 0.25rem;
}
article .tags li a:hover, article .tags li a:focus {
  text-decoration: underline;
}
article .title-wrapper {
  margin-bottom: 6px;
}
article .title-wrapper h3 {
  font-family: "Lora", serif;
  font-weight: normal;
  line-height: 1.42;
  display: inline;
  background-image: linear-gradient(120deg, #3c3c3c 0%, #3c3c3c 100%);
  background-repeat: no-repeat;
  background-size: 0 2px;
  background-position: 0 calc(100% - 1px);
  text-shadow: -2px 2px 0 #fff, 2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff;
  transition: all 0.3s;
}
article .title-wrapper:hover h3, article .title-wrapper:focus h3 {
  text-decoration: none;
  background-size: 100% 2px;
}
article .title-wrapper:hover h3 a, article .title-wrapper:focus h3 a {
  text-decoration: none;
}
article .lead {
  font-size: inherit;
  line-height: 21px;
  font-weight: 400;
}
article .text-wrapper :last-child {
  margin-bottom: 0;
}

.article-wrapper {
  position: relative;
  padding-bottom: 25px;
  border-bottom: 1px solid #707070;
  margin-bottom: 30px;
}
.article-wrapper.article-highlight.article-img-full {
  border-bottom: none;
}
.article-wrapper.article-highlight.article-img-full:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 300px;
  height: 1px;
  background-color: #707070;
}
.article-wrapper.article-highlight.article-img-full.no-img {
  padding-top: 25px;
}
.article-wrapper.article-highlight.article-img-full.no-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 300px;
  height: 1px;
  background-color: #707070;
}
.article-wrapper.article-list {
  border-bottom: 0;
}
.article-wrapper.article-list article {
  margin-bottom: 30px;
}
.article-wrapper.article-list article .img-wrapper {
  width: 100%;
  height: 261px;
  margin-bottom: 0;
}
@media (max-width: 1515px) {
  .article-wrapper.article-list article .img-wrapper {
    height: 198px;
  }
}
@media (max-width: 1199px) {
  .article-wrapper.article-list article .img-wrapper {
    height: 164px;
  }
}
@media (max-width: 991px) {
  .article-wrapper.article-list article .img-wrapper {
    height: 255px;
  }
}
@media (max-width: 767px) {
  .article-wrapper.article-list article .img-wrapper {
    height: auto;
  }
}
.article-wrapper.article-list article .img-wrapper picture, .article-wrapper.article-list article .img-wrapper img {
  width: 100%;
}
.article-wrapper.article-list article .text-wrapper {
  padding-left: 8px;
}
.article-wrapper.article-list article .title-wrapper h3 {
  font-size: 21px;
  line-height: 28px;
  margin-bottom: 0;
  background-position: 0 calc(100% - 2px);
}
.article-wrapper.article-highlight.article-img-left, .article-wrapper.article-highlight.article-img-right {
  /*
  &.large-img {
    .img-wrapper {
      width: 100%;
    }
    .text-wrapper {
      width: 100%;
    }
    @media (min-width: $lg) {
      .img-wrapper {
        width: 416px;
      }
      .text-wrapper {
        width: calc(100% - 416px - 2rem);
      }
    }
    @media (min-width: $xl) {
      .img-wrapper {
        width: 640px;
      }
      .text-wrapper {
        width: calc(100% - 640px - 2rem);
      }
    }
  }

  &.small-img {
    .img-wrapper {
      width: 100%;
    }
    .text-wrapper {
      width: 100%;
    }
    @media (min-width: $lg) {
      .img-wrapper {
        width: 304px;
      }
      .text-wrapper {
        width: calc(100% - 304px - 2rem);
      }
    }
    @media (min-width: $xl) {
      .img-wrapper {
        width: 416px;
      }
      .text-wrapper {
        width: calc(100% - 416px - 2rem);
      }
    }
  }
  */
}
.article-wrapper.article-highlight.article-img-left article, .article-wrapper.article-highlight.article-img-right article {
  display: flex;
  flex-direction: row;
}
.article-wrapper.article-highlight.article-img-left article .text-wrapper, .article-wrapper.article-highlight.article-img-right article .text-wrapper {
  order: 2;
  padding-left: 0;
}
.article-wrapper.article-highlight.article-img-left article .img-wrapper, .article-wrapper.article-highlight.article-img-right article .img-wrapper {
  order: 1;
  margin-left: 0;
  margin-right: 16px;
}
@media (min-width: 992px) {
  .article-wrapper.article-highlight.article-img-left article .img-wrapper, .article-wrapper.article-highlight.article-img-right article .img-wrapper {
    margin-right: 24px;
  }
}
@media (max-width: 991px) {
  .article-wrapper.article-highlight.article-img-left article, .article-wrapper.article-highlight.article-img-right article {
    flex-direction: column !important;
  }
  .article-wrapper.article-highlight.article-img-left article .img-wrapper, .article-wrapper.article-highlight.article-img-right article .img-wrapper {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 26px;
  }
}
.article-wrapper.article-highlight.article-img-left.article-img-right article .text-wrapper, .article-wrapper.article-highlight.article-img-right.article-img-right article .text-wrapper {
  order: 1;
  padding-left: 8px;
}
.article-wrapper.article-highlight.article-img-left.article-img-right article .img-wrapper, .article-wrapper.article-highlight.article-img-right.article-img-right article .img-wrapper {
  order: 2;
  margin-left: 16px;
  margin-right: 0;
}
@media (min-width: 992px) {
  .article-wrapper.article-highlight.article-img-left.article-img-right article .img-wrapper, .article-wrapper.article-highlight.article-img-right.article-img-right article .img-wrapper {
    margin-left: 24px;
  }
}
@media (max-width: 991px) {
  .article-wrapper.article-highlight.article-img-left.article-img-right article, .article-wrapper.article-highlight.article-img-right.article-img-right article {
    flex-direction: column !important;
  }
  .article-wrapper.article-highlight.article-img-left.article-img-right article .text-wrapper, .article-wrapper.article-highlight.article-img-right.article-img-right article .text-wrapper {
    order: 2;
  }
  .article-wrapper.article-highlight.article-img-left.article-img-right article .img-wrapper, .article-wrapper.article-highlight.article-img-right.article-img-right article .img-wrapper {
    order: 1;
    margin-left: 0;
    margin-right: 0;
    margin-top: 26px;
  }
}
.article-wrapper.article-highlight.article-img-left .img-wrapper, .article-wrapper.article-highlight.article-img-right .img-wrapper {
  width: 100%;
}
.article-wrapper.article-highlight.article-img-left .text-wrapper, .article-wrapper.article-highlight.article-img-right .text-wrapper {
  width: 100%;
}
@media (min-width: 992px) {
  .article-wrapper.article-highlight.article-img-left .img-wrapper, .article-wrapper.article-highlight.article-img-right .img-wrapper {
    width: calc(50% - 8px);
  }
  .article-wrapper.article-highlight.article-img-left .text-wrapper, .article-wrapper.article-highlight.article-img-right .text-wrapper {
    width: calc(50% - 8px);
  }
}
@media (min-width: 1516px) {
  .article-wrapper.article-highlight.article-img-left .img-wrapper, .article-wrapper.article-highlight.article-img-right .img-wrapper {
    width: calc(50% - 12px);
  }
  .article-wrapper.article-highlight.article-img-left .text-wrapper, .article-wrapper.article-highlight.article-img-right .text-wrapper {
    width: calc(50% - 12px);
  }
}
.article-wrapper.article-highlight.article-img-full .img-wrapper {
  width: 100%;
  margin-bottom: 20px;
}
.article-wrapper.article-highlight.article-img-full .img-wrapper picture, .article-wrapper.article-highlight.article-img-full .img-wrapper img {
  width: 100%;
}
.article-wrapper.article-highlight.article-img-full .text-wrapper {
  text-align: center;
  padding-left: 0;
  /*
  .lead {
    font-size: 21px;
    line-height: 28px;
  }
  */
}
.article-wrapper.article-highlight.article-img-full .text-wrapper .title-wrapper {
  margin-bottom: 20px;
}
.article-wrapper.article-highlight article .title-wrapper {
  /*
  @media (min-width: $lg) {
    h3 {
      font-size: 21px; // height:41px design:56px;
      line-height: 28px;
      background-size: 0 2px;
      background-position: 0 calc(100% - 2px);
    }
    &:hover, &:focus {
      h3 {
        background-size: 100% 2px;
      }
    }
  }
  */
  /*
  @media (min-width: $xl) {
    h3 {
      font-size: 52px; // height:41px design:56px;
      line-height: 64px;
      background-size: 0 3px;
      background-position: 0 calc(100% - 6px);
    }
    &:hover, &:focus {
      h3 {
        background-size: 100% 3px;
      }
    }
  }
  */
}
.article-wrapper.article-highlight article .title-wrapper h3 {
  font-size: 21px;
  line-height: 28px;
  background-size: 0 2px;
  background-position: 0 calc(100% - 2px);
}
.article-wrapper.article-highlight article .title-wrapper:hover h3, .article-wrapper.article-highlight article .title-wrapper:focus h3 {
  background-size: 100% 2px;
}
.article-wrapper.article-highlight.article-img-full article h3 {
  font-size: 32px;
  line-height: 42px;
  background-position: 0 calc(100% - 3px);
  /*
  @media (min-width: $sm) {
    font-size: 50px;
    line-height: 64px;
    background-position: 0 calc(100% - 6px);
  }
  */
  /*
  @media (min-width: $xl) {
    font-size: 33px;
    line-height: 47px;
    background-position: 0 calc(100% - 3px);
  }
  */
}
.article-wrapper.article-first-box {
  border-bottom: 0;
  padding-bottom: 5px;
}
.article-wrapper.article-first-box article {
  padding-top: 14px;
  padding-bottom: 20px;
  margin-top: -1px;
  background-color: #fff;
  /*
  &:not(.has-img) + :not(.has-img) {
    border-top: 1px solid $black;
  }
  &:nth-child(2):not(.has-img) {
    border-top: 1px solid $black;
  }
  */
}
@media (min-width: 1200px) {
  .article-wrapper.article-first-box article {
    display: flex;
  }
}
.article-wrapper.article-first-box article .img-wrapper {
  margin-bottom: 0;
}
.article-wrapper.article-first-box article .text-wrapper {
  padding-left: 8px;
  padding-right: 8px;
}
.article-wrapper.article-first-box article .title-wrapper h3 {
  font-size: 18px;
  line-height: 26px;
  background-position: 0 calc(100% - 1px);
  background-size: 0 1px;
  /*
  @media (min-width: $lg) {
    font-size: 20px;
  }
  @media (min-width: $xl) {
    font-size: 21px;
    //line-height: 29px;
  }
  */
}
.article-wrapper.article-first-box article .title-wrapper:hover h3, .article-wrapper.article-first-box article .title-wrapper:focus h3 {
  background-size: 100% 1px;
}
.article-wrapper.article-first-box article .author {
  margin-top: 0;
}
.article-wrapper.article-first-box article.has-img {
  border-top: none;
  padding-top: 0;
  padding-bottom: 20px;
}
.article-wrapper.article-first-box article.has-img h3 {
  /*
  @media (min-width: $lg) {
    font-size: 24px;
  }
  @media (min-width: $xl) {
    font-size: 29px;
  }
  */
}
.article-wrapper.article-first-box article.has-img .author {
  display: block;
}
.article-wrapper.article-first-box article.has-img .img-wrapper {
  width: 100%;
  margin-right: 0;
}
.article-wrapper.article-first-box article.has-img .text-wrapper {
  width: 100%;
  padding-left: 0;
}
@media (min-width: 1200px) {
  .article-wrapper.article-first-box article.has-img .img-wrapper {
    width: 152px;
    margin-right: 1rem;
  }
  .article-wrapper.article-first-box article.has-img .text-wrapper {
    width: calc(100% - 152px - 1rem);
    padding-left: 0;
  }
}
@media (min-width: 1516px) {
  .article-wrapper.article-first-box article.has-img .img-wrapper {
    width: 192px;
    margin-right: 2rem;
  }
  .article-wrapper.article-first-box article.has-img .text-wrapper {
    width: calc(100% - 192px - 2rem);
    padding-left: 0;
  }
}
.article-wrapper.article-first-box article:first-child {
  display: block;
  padding-top: 0;
  padding-bottom: 20px;
  border-top: none;
  border-bottom: none;
  margin-top: 0;
}
.article-wrapper.article-first-box article:first-child .img-wrapper {
  width: 100%;
  margin-right: 0;
  margin-bottom: 10px;
}
.article-wrapper.article-first-box article:first-child .text-wrapper {
  width: 100%;
  padding-left: 8px;
}
.article-wrapper.article-first-box article:first-child .title-wrapper h3 {
  font-size: 21px;
  line-height: 28px;
  background-position: 0 calc(100% - 2px);
  background-size: 0 2px;
  /*
  @media (min-width: $lg) {
    font-size: 21px;
  }
  @media (min-width: $xl) {
    font-size: 21px;
    line-height: 28px;
    background-position: 0 calc(100% - 4px);
  }
  */
}
.article-wrapper.article-first-box article:first-child .title-wrapper:hover h3, .article-wrapper.article-first-box article:first-child .title-wrapper:focus h3 {
  background-size: 100% 2px;
}
.article-wrapper.article-first-box article:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.article-wrapper.has-related.moved-related article {
  flex-direction: column;
}
.article-wrapper.has-related.moved-related article .img-wrapper {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.article-wrapper.has-related.moved-related article .text-wrapper {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.article-wrapper.article-topic-box {
  padding-bottom: 14px;
}
.article-wrapper.article-topic-box .col-md-6 article:first-child.has-img {
  border-top: none;
}
.article-wrapper.article-topic-box .topic-lead article:first-child {
  display: block;
  padding-top: 0;
  border-top: none;
  border-bottom: none;
  margin-top: 0;
}
@media (min-width: 991px) {
  .article-wrapper.article-topic-box .topic-lead article:first-child {
    padding-bottom: 0;
  }
}
.article-wrapper.article-topic-box .topic-lead article:first-child .title-wrapper h3 {
  font-size: 21px !important;
  line-height: 28px !important;
  background-position: 0 calc(100% - 2px) !important;
  background-size: 0 2px !important;
}
.article-wrapper.article-topic-box .topic-lead article:first-child .title-wrapper:hover h3, .article-wrapper.article-topic-box .topic-lead article:first-child .title-wrapper:focus h3 {
  background-size: 100% 2px !important;
}
.article-wrapper.article-topic-box .topic-lead article:first-child .author {
  display: block;
  margin-bottom: 0;
}
.article-wrapper.article-topic-box .topic-lead article:first-child .img-wrapper {
  width: 100%;
  margin-right: 0;
}
.article-wrapper.article-topic-box .topic-lead article:first-child .text-wrapper {
  width: 100%;
  padding-left: 8px;
}
.article-wrapper.article-topic-box .topic-lead article:first-child + article {
  border-top: none;
}
.article-wrapper.article-topic-box article {
  display: flex;
  padding-bottom: 22px;
  margin-top: -1px;
  background-color: #fff;
  /*
  &:not(.has-img) + :not(.has-img) {
    border-top: 1px solid $black;
  }
  &:nth-child(2):not(.has-img) {
    border-top: 1px solid $black;
  }
  */
}
@media (max-width: 1199px) {
  .article-wrapper.article-topic-box article {
    flex-direction: column !important;
  }
}
.article-wrapper.article-topic-box article .img-wrapper {
  margin-bottom: 10px;
}
.article-wrapper.article-topic-box article .text-wrapper {
  padding-left: 8px;
  padding-right: 8px;
}
.article-wrapper.article-topic-box article .title-wrapper h3 {
  font-size: 18px;
  line-height: 26px;
  background-position: 0 calc(100% - 1px);
  background-size: 0 1px;
}
.article-wrapper.article-topic-box article .title-wrapper:hover h3, .article-wrapper.article-topic-box article .title-wrapper:focus h3 {
  background-size: 100% 1px;
}
.article-wrapper.article-topic-box article .author {
  display: none;
}
.article-wrapper.article-topic-box article.has-img {
  border-bottom: none;
  padding-top: 0;
  padding-bottom: 22px;
}
.article-wrapper.article-topic-box article.has-img .title-wrapper h3 {
  font-size: 18px;
  line-height: 26px;
  background-size: 0 1px;
  /*
  @media (min-width: $lg) {
    font-size: 23px;
  }
  @media (min-width: $xl) {
    font-size: 29px;
  }
  */
}
.article-wrapper.article-topic-box article.has-img .title-wrapper:hover h3, .article-wrapper.article-topic-box article.has-img .title-wrapper:focus h3 {
  background-size: 100% 1px;
}
.article-wrapper.article-topic-box article.has-img .author {
  display: block;
}
.article-wrapper.article-topic-box article.has-img .img-wrapper {
  width: 100%;
  margin-right: 0;
}
.article-wrapper.article-topic-box article.has-img .text-wrapper {
  width: 100%;
  padding-left: 0;
}
@media (min-width: 1200px) {
  .article-wrapper.article-topic-box article.has-img .img-wrapper {
    width: 152px;
    margin-right: 1rem;
  }
  .article-wrapper.article-topic-box article.has-img .text-wrapper {
    width: calc(100% - 152px - 1rem);
    padding-left: 0;
  }
}
@media (min-width: 1516px) {
  .article-wrapper.article-topic-box article.has-img .img-wrapper {
    width: 192px;
    margin-right: 2rem;
  }
  .article-wrapper.article-topic-box article.has-img .text-wrapper {
    width: calc(100% - 192px - 2rem);
    padding-left: 0;
  }
}
.article-wrapper.article-topic-box article:first-child {
  padding-top: 0;
}
.article-wrapper.article-topic-box article:last-child {
  border-bottom: none;
}
.article-wrapper.article-topic-box.first-has-lead .topic-lead article:first-child .lead {
  display: block;
}
.article-wrapper.no-lead article .lead {
  display: none;
}
.article-wrapper .related {
  display: none;
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  font-size: 14px;
}
.article-wrapper .related li {
  margin-bottom: 12px;
}
.article-wrapper .related li:last-child {
  margin-bottom: 0;
}
.article-wrapper .related li:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #d4000c;
  display: inline-block;
  margin-right: 10px;
}
.article-wrapper .related li a {
  color: #888888;
  transition: all 0.3s;
}
.article-wrapper .related li a:hover, .article-wrapper .related li a:focus {
  color: #121212;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .article-wrapper.text-right {
    text-align: left !important;
  }
}

.main-content > .article-wrapper:last-child {
  padding-bottom: 5px;
  border-bottom: none;
}

/*
.first-box {
  .article-wrapper.article-highlight {
    article {
      .text-wrapper {
        -ms-flex-order: 1 !important;
        order: 1 !important;
      }
      .img-wrapper {
        -ms-flex-order: 2 !important;
        order: 2 !important;
      }
    }
  }
}
*/
/*
.first-box {
  display: flex;
  .article-wrapper {
    border-bottom: 0;
    padding-bottom: 5px;

    article {
      @media (max-width: $md - 1px) {
        -ms-flex-direction: column!important;
        flex-direction: column!important;

        .img-wrapper {
          margin-left: 0 !important;
          margin-right: 0 !important;
        }
      }
    }
  }
  @media (max-width: $md - 1px) {
    .article-wrapper {
      width: calc(100% - 192px - 1rem);
      margin-right: 1rem;
    }
    .livebox-wrapper {
      width: calc(192px + 1rem);
      .livebox {
        padding-left: 1rem;
      }
    }
  }
  @media (max-width: $xs - 1px) {
    -ms-flex-direction: column!important;
    flex-direction: column!important;

    .article-wrapper {
      width: 100%;
      -ms-flex-order: 2;
      order: 2;
      margin-right: 0;
    }
    .livebox-wrapper {
      width: 100%;
      margin-left: 0;
      -ms-flex-order: 1;
      order: 1;
      .livebox {
        padding-left: 0;
      }
    }

  }
}
*/
.news-list {
  padding-left: 16px;
  padding-right: 8px;
  margin-bottom: 30px;
}
.news-list article {
  margin-bottom: 14px;
}
.news-list article .date {
  font-size: 14px;
  line-height: 16px;
  color: #d4000c;
  margin-bottom: 8px;
  display: none;
}
.news-list article .title-wrapper h3 {
  display: inline;
  background-image: linear-gradient(120deg, #3c3c3c 0%, #3c3c3c 100%);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 calc(100% - 1px);
  text-shadow: -2px 2px 0 #fff, 2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff;
  transition: all 0.3s;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 8px;
}
.news-list article .title-wrapper:hover h3, .news-list article .title-wrapper:focus h3 {
  text-decoration: none;
  background-size: 100% 1px;
}
.news-list article .title-wrapper:hover h3 a, .news-list article .title-wrapper:focus h3 a {
  text-decoration: none;
}
.news-list.fixed-height {
  overflow: auto;
  /* width */
  /* Track */
  /* Handle */
}
.news-list.fixed-height::-webkit-scrollbar {
  width: 3px;
}
.news-list.fixed-height::-webkit-scrollbar-track {
  background-color: #888888;
  border-radius: 3px;
}
.news-list.fixed-height::-webkit-scrollbar-thumb {
  background: #d4000c;
  border-radius: 3px;
}
.news-list.recent-news article {
  margin-bottom: 1rem;
}
.news-list.recent-news article .date {
  display: block;
}
.news-list.recent-news article.delayed {
  display: none;
}

.external-news {
  padding-top: 20px;
  padding-bottom: 24px;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  margin-bottom: 30px;
  margin-top: -28px;
}
@media (min-width: 768px) {
  .external-news .col-md-6:first-child {
    border-right: 1px solid #707070;
  }
  .external-news .col-md-6:last-child {
    border-left: 1px solid #707070;
    margin-left: -1px;
  }
}
@media (max-width: 767px) {
  .external-news .col-md-6:first-child {
    padding-bottom: 1rem;
    border-bottom: 1px solid #707070;
  }
  .external-news .col-md-6:last-child {
    padding-top: 1rem;
  }
}
.external-news article {
  padding: 5px;
}
.external-news article .logo-wrapper {
  margin-bottom: 30px;
  max-width: 120px;
}
.external-news article .logo-wrapper img {
  width: 100%;
  height: auto;
}
.external-news article .title-wrapper {
  margin-bottom: 24px;
}
.external-news article .title-wrapper h3 {
  display: inline;
  font-family: "Work Sans", sans-serif;
  font-size: 21px;
  font-weight: bold;
  line-height: 28px;
  background-position: 0 calc(100% - 1px);
}
.external-news article .lead {
  line-height: 21px;
}
.external-news article .lead p:last-child {
  margin-bottom: 0;
}
.external-news article .author {
  display: none;
}

.sidebar .page-topic {
  padding-left: 16px;
  margin-bottom: 1.25rem;
}

.livebox-wrapper {
  margin-bottom: 20px;
}

.sidebar .livebox-wrapper {
  margin-top: -10px;
}

.video-promo {
  background-color: #fff;
  color: #3c3c3c;
  padding: 10px 0 0;
}
@media (max-width: 991px) {
  .video-promo {
    padding-top: 0;
  }
}
.video-promo .livebox-box {
  border-bottom: 1px solid #707070;
}
.video-promo .livebox-content-wrapper {
  position: relative;
}
.video-promo .livebox-content-wrapper .close-wrapper .material-icons-round::after {
  content: "expand_less";
}
.video-promo .livebox-content-wrapper.content-top {
  overflow: hidden;
}
.video-promo .livebox-content-wrapper.content-bottom {
  min-height: 30px;
  padding-bottom: 10px;
  overflow: hidden;
}
.video-promo .livebox-content-wrapper.content-bottom .program {
  overflow: hidden;
}

.video-promo .program {
  max-height: 200px;
}
.video-promo .content-top {
  max-height: 300px;
}
.video-promo.top-closed .close-wrapper .material-icons-round::after {
  content: "expand_more";
}
.video-promo.top-closed .content-top {
  max-height: 54px;
}
@media (min-width: 992px) and (max-width: 1515px) {
  .video-promo.top-closed .content-top {
    max-height: 98px;
  }
}
@media (max-width: 340px) {
  .video-promo.top-closed .content-top {
    max-height: 98px;
  }
}
.video-promo.top-closed .content-top .img-wrapper.play-button {
  margin: 0;
  max-height: 0;
}
.video-promo.top-closed .content-bottom {
  min-height: 0;
  max-height: 0;
  padding-bottom: 0;
}
.video-promo.bottom-closed .livebox-content-wrapper.content-bottom .close-wrapper .material-icons-round::after {
  content: "expand_more";
}
.video-promo.bottom-closed .program {
  max-height: 0;
}
.video-promo.video-promo-transition .program, .video-promo.video-promo-transition .content-bottom, .video-promo.video-promo-transition .content-top {
  transition: max-height 0.3s, min-height 0.3s, padding-bottom 0.3s;
}

.main-content .video-promo .content-top {
  max-height: 600px;
}
.main-content .video-promo.top-closed .content-top {
  max-height: 54px;
}
@media (min-width: 992px) and (max-width: 1515px) {
  .main-content .video-promo.top-closed .content-top {
    max-height: 98px;
  }
}
@media (max-width: 340px) {
  .main-content .video-promo.top-closed .content-top {
    max-height: 98px;
  }
}

.video-promo .img-wrapper {
  margin-top: 10px;
  margin-bottom: 10px;
  /*
  &.play-button {
    max-height: 250px;
    transition: max-height 0.3s, margin 0.3s;
  }
  */
}
.video-promo .img-wrapper .embed-responsive > picture,
.video-promo .img-wrapper .embed-responsive > picture > img,
.video-promo .img-wrapper .embed-responsive > img,
.video-promo .img-wrapper .embed-responsive > * {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-promo .img-wrapper picture, .video-promo .img-wrapper img {
  width: 100%;
}
.video-promo .img-wrapper .embed-responsive > p {
  display: none;
}
.video-promo .img-wrapper .next-program {
  background-color: #d4000c;
  text-align: center;
}
.video-promo .img-wrapper .next-program img {
  width: 18%;
  margin-bottom: 14px;
}
.video-promo .img-wrapper .next-program p {
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  text-transform: uppercase;
}
.video-promo .img-wrapper .next-program p:last-child {
  margin-bottom: 0;
}
.video-promo .img-wrapper .next-program.embed-responsive .embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-promo .content-top .close-wrapper.close-top {
  margin-left: 12px;
}
.video-promo .content-top .btn {
  margin-bottom: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .video-promo .content-top .control-buttons {
    flex-direction: column !important;
  }
}
@media (max-width: 340px) {
  .video-promo .content-top .control-buttons {
    flex-direction: column !important;
  }
}
.video-promo .btn-wrapper .btn {
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}
@media (min-width: 1200px) and (max-width: 1515px) {
  .video-promo .btn-wrapper .btn {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
}
.video-promo .btn-wrapper .btn .material-icons-round {
  position: absolute;
  top: 50%;
  left: 6px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}
@media (min-width: 1200px) and (max-width: 1515px) {
  .video-promo .btn-wrapper .btn .material-icons-round {
    left: 0;
  }
}
.video-promo .btn-wrapper .btn.btn-primary {
  padding-left: 34px;
}
@media (min-width: 1200px) and (max-width: 1515px) {
  .video-promo .btn-wrapper .btn.btn-primary {
    padding-left: 22px !important;
  }
}
.video-promo .btn-wrapper .btn.btn-primary.disabled {
  background-color: #fff;
  color: #888888;
  border-color: #888888;
}
.video-promo .btn-wrapper .btn.btn-outline-secondary {
  color: #3c3c3c;
  border-color: #3c3c3c;
}
.video-promo .btn-wrapper .btn.btn-outline-secondary.disabled {
  background-color: #fff;
  color: #888888;
  border-color: #888888;
}
.video-promo .btn-wrapper .btn.btn-outline-secondary:hover, .video-promo .btn-wrapper .btn.btn-outline-secondary:focus {
  color: #fff;
}
.video-promo .btn-wrapper .close-wrapper .material-icons-round {
  position: relative;
  top: 4px;
}
.video-promo .close-bottom {
  position: absolute;
  top: -5px;
  right: 0;
}
.video-promo .program .time {
  font-size: 12px;
  line-height: 14px;
  color: #707070;
  margin-top: 0;
  margin-bottom: 2px;
}
.video-promo .program h3 {
  font-family: "Lora", serif;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 2px;
}
.video-promo .program .description {
  font-size: 12px;
  line-height: 14px;
  color: #707070;
  margin-bottom: 0;
}

.livebox-wrapper .livebox.fixed {
  position: fixed;
  top: 0;
  z-index: 90;
}

.main-content .livebox-wrapper {
  margin-top: 0;
}
.main-content .livebox-wrapper .livebox {
  margin-bottom: 40px;
}

.sidebar .page-topic.promo-header {
  margin-top: 60px;
  margin-bottom: 40px;
}
.sidebar .page-topic.promo-header h5 {
  color: #d4000c;
  font-size: 66px;
  line-height: 56px;
  font-weight: 600;
}
.sidebar .page-topic.promo-header h5 img {
  margin-right: 2px;
  margin-top: -6px;
}
.sidebar .page-topic.promo-header h5 a {
  transition: all 0.3s;
}
.sidebar .page-topic.promo-header h5 a:hover, .sidebar .page-topic.promo-header h5 a:focus {
  text-decoration: none;
  opacity: 0.6;
}

.promo-wrapper {
  margin-bottom: 70px;
}

.banner-wrapper {
  text-align: center;
  position: relative;
  z-index: 0;
  width: 100%;
}
.banner-wrapper .banner {
  display: inline;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.banner-wrapper .banner > div {
  margin: calc(3rem - 26px) 0 3rem;
  padding-top: 26px;
  /*
  &:before {
    content: 'hirdetés';
    font-size: 12px;
    color: $medium;
    position: absolute;
    top: 2px;
    left: 0;
  } */
}

body > .banner-wrapper .banner > div {
  margin: 1rem 0 1rem;
}

.pagination {
  border-radius: 2px;
  margin-top: 2rem;
  margin-bottom: 4rem;
}
.pagination .page-link {
  color: #3c3c3c;
  font-size: 20px;
  padding: 0.75rem 1rem;
  border-left: 1px solid #3c3c3c;
  border-right: 1px solid #3c3c3c;
  border-top: none;
  border-bottom: none;
}
.pagination .page-link:hover, .pagination .page-link:focus {
  background-color: #ded6d6;
  box-shadow: none;
}
.pagination .page-item.active .page-link {
  background-color: #fff;
  color: #d4000c;
  border-color: #d4000c;
}
.pagination .page-item.active .page-link:hover, .pagination .page-item.active .page-link:focus {
  background-color: #ded6d6;
}
.pagination .page-item:first-child .page-link {
  border-left: none;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.pagination .page-item:last-child .page-link {
  border-right: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.start-countdown, .count-down-to {
  display: none;
}

.countdown-box {
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  font-size: 30px;
  font-family: sans-serif;
  margin: 0 auto 30px auto;
}
@media (min-width: 312px) {
  .countdown-box {
    max-width: 312px;
  }
}
.countdown-box img {
  height: auto;
}
.countdown-box .days-first-digit {
  position: absolute;
  top: 34%;
  left: 8%;
}
.countdown-box .days-second-digit {
  position: absolute;
  top: 34%;
  left: 19%;
}
.countdown-box .hours-first-digit {
  position: absolute;
  top: 34%;
  left: 31%;
}
.countdown-box .hours-second-digit {
  position: absolute;
  top: 34%;
  left: 42%;
}
.countdown-box .minutes-first-digit {
  position: absolute;
  top: 34%;
  right: 41%;
}
.countdown-box .minutes-second-digit {
  position: absolute;
  top: 34%;
  right: 30%;
}
.countdown-box .seconds-first-digit {
  position: absolute;
  top: 34%;
  right: 18%;
}
.countdown-box .seconds-second-digit {
  position: absolute;
  top: 34%;
  right: 7%;
}

html {
  width: 100%;
  height: 100%;
  font-size: 16px;
}

body {
  min-height: 100%;
}

.fa-facebook-f, .fa-twitter, .fa-instagram, .fa-youtube-play, .fa-envelope {
  display: block;
  min-width: 30px !important;
  min-height: 30px !important;
  background-size: 20px 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.fa-facebook-f {
  background-image: url(/static/frontend/imgs/fa/facebook-f.svg);
}

.fa-twitter {
  background-image: url(/static/frontend/imgs/fa/twitter.svg);
}

.fa-instagram {
  background-image: url(/static/frontend/imgs/fa/instagram.svg);
}

.fa-youtube-play {
  background-image: url(/static/frontend/imgs/fa/youtube-play.svg);
}

.fa-envelope {
  background-image: url(/static/frontend/imgs/fa/envelope.svg);
}/*# sourceMappingURL=site.css.map */