@charset "UTF-8";
/**
 * BEM Original: https://ru.bem.info/method/definitions/
 * BEM Guide: http://stackoverflow.com/a/22566593/149288
 * 
 * .block__element
 * .block__element--modifier
 * .block--modifier__element
 * .some-block__some-element--modifier
 * .some-block:hover .some-block__element
 *
 * - put each block into separate file
 *  
 *
 */
/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:
	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com
-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent; }

article, aside, figure, footer, header, nav, section, details, summary {
  display: block; }

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box; }

*,
*:before,
*:after {
  box-sizing: inherit; }

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%; }

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:
#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll; }

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help; }

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0; }

th {
  font-weight: bold;
  vertical-align: bottom; }

td {
  font-weight: normal;
  vertical-align: top; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */ }

input[type="radio"] {
  vertical-align: text-bottom; }

input[type="checkbox"] {
  vertical-align: bottom; }

.ie7 input[type="checkbox"] {
  vertical-align: baseline; }

.ie6 input {
  vertical-align: text-bottom; }

select, input, textarea {
  font: 99% sans-serif; }

table {
  font-size: inherit;
  font: 100%; }

small {
  font-size: 85%; }

strong {
  font-weight: bold; }

td, td img {
  vertical-align: top; }

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif; }

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer; }

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0; }

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible; }

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic; }

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before, .clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden; }

.clearfix:after {
  clear: both; }

.clearfix {
  zoom: 1; }

/*18px = 1.286rem
20px = 1.429rem
22px = 1.571rem
24px = 1.714rem
26px = 1.857rem*/
.hint {
  position: relative; }
  .hint:hover:after {
    content: attr(tooltip);
    white-space: pre;
    font-size: 13px;
    padding: 4px 8px;
    color: #333;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 999;
    box-shadow: 0px 0px 4px #222;
    background-color: #f1f1f1; }

/*@mixin field-hint {
    position: relative;

    &:hover:before {
        content: attr(tooltip);
        color: #aaa;
        position: absolute;
        white-space: nowrap;
        top: 18px;
        right: 100%;
    }
}*/
/**
 * BEM Original: https://ru.bem.info/method/definitions/
 * BEM Guide: http://stackoverflow.com/a/22566593/149288
 * 
 * .block__element
 * .block__element--modifier
 * .block--modifier__element
 * .some-block__some-element--modifier
 * .some-block:hover .some-block__element
 *
 * - put each block into separate file
 *  
 */
@keyframes airplane__slide {
  0% {
    right: -550px; }
  100% {
    right: 120%; } }

@keyframes airplane__jump {
  0% {
    top: 250px; }
  100% {
    top: 270px; } }

.airplane {
  position: absolute;
  display: none;
  width: 100%;
  height: 300px;
  overflow: hidden;
  pointer-events: none;
  animation: airplane__jump 1.5s infinite linear alternate; }
  .airplane__inner {
    pointer-events: all;
    position: absolute;
    z-index: 9999;
    animation: airplane__slide 20s linear forwards; }
    .airplane__inner:hover {
      animation-play-state: paused; }
  .airplane__img {
    filter: drop-shadow(30px 30px 5px rgba(0, 0, 0, 0.15));
    padding: 0 40px 40px 0;
    max-width: initial; }
  @media (min-width: 840px) {
    .airplane--active {
      display: block; } }

.account {
  /*&__field-hint {
        position: absolute;
        width: 200px;
        text-align: right;
        white-space: nowrap;
        background: yellow;
        z-index: 999;
        right: 100%;
    }*/ }
  .account__section {
    /*background: #f5f5f5;
        padding: 20px;*/ }
  .account a {
    /*font-size: 13px;*/
    text-decoration: underline; }
  .account .validation-summary-errors {
    margin-bottom: 20px; }
  .account__toggle {
    display: flex;
    align-items: center;
    margin-bottom: 15px; }
    .account__toggle > label {
      min-width: 100px;
      margin-right: 10px; }
  .account__qd-text {
    border-bottom: dashed 1px #000;
    text-decoration: none !important; }
  .account__field {
    position: relative;
    margin-top: 16px;
    /*@include field-hint;*/
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    align-items: baseline; }
    .account__field > label {
      font-size: 12px;
      line-height: 1em;
      color: #888;
      position: absolute;
      top: -16px;
      left: 0;
      opacity: 1;
      transition: all 200ms; }
    .account__field > input:placeholder-shown + label {
      opacity: 0;
      top: 0px; }
    .account__field > * {
      margin-left: 10px;
      margin-top: 10px; }
    .account__field > input {
      outline: 0;
      font-size: 13px;
      max-width: 100%;
      z-index: 1;
      background: #f1f1f1;
      padding: 11px 10px 9px;
      border: none;
      border-bottom: solid 2px transparent;
      transition: border-bottom-color 300ms; }
      .account__field > input::placeholder {
        color: #999; }
      .account__field > input:focus {
        border-bottom-color: #84b8ff; }
    .account__field > select {
      outline: 0;
      font-size: 13px;
      max-width: 100%;
      z-index: 1;
      background: #f1f1f1;
      padding: 11px 10px 9px;
      border: none;
      border-bottom: solid 2px transparent; }
      .account__field > select > option {
        color: black; }
    .account__field > input, .account__field > select {
      width: 400px;
      font-size: 15px; }
      .-submitted .account__field > input:invalid, .-submitted .account__field > select:invalid {
        border-color: red; }
    .account__field > select:invalid {
      color: #aaa; }
    .account__field.-zip > input, .account__field.-phonefax > input {
      width: 195px; }
      @media screen and (max-width: 600px) {
        .account__field.-zip > input, .account__field.-phonefax > input {
          width: 400px; } }
  .account__zip-info.-error {
    color: red; }
  .account__radio {
    position: relative;
    left: -20px; }
    .account__radio > * {
      margin-left: 20px; }
    .account__radio > legend {
      display: block;
      font-weight: bold; }
    .account__radio > label {
      vertical-align: bottom; }
      @media screen and (max-width: 600px) {
        .account__radio > label {
          display: block; } }
      .account__radio > label > * {
        vertical-align: middle; }
  .account input[type=submit] {
    /*border: 1px solid #d9d9d9;*/
    border: none;
    outline: 0;
    background: #19232d;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    padding: 7px 21px;
    max-width: 100%;
    width: 400px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 17px; }
    .account input[type=submit]:focus {
      color: #aaa;
      /*border-color: #bbb;*/ }
  .account__submit-note {
    margin-top: 15px;
    color: #888;
    font-size: 11px;
    line-height: 1.2em;
    max-width: 400px;
    text-align: justify; }

.password-change .validation-summary-errors {
  margin-bottom: 20px; }

.password-change__field {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  align-items: baseline; }
  .password-change__field > * {
    margin-left: 10px;
    margin-top: 10px; }
  .password-change__field > input {
    background: #f9f9f9;
    border: 1px solid #d9d9d9;
    padding: 7px 14px;
    outline: 0;
    font-size: 13px;
    color: #000;
    max-width: 100%;
    width: 400px;
    font-size: 15px; }
    .password-change__field > input:focus {
      border-color: #bbb;
      color: #000; }
    .password-change__field > input::placeholder {
      color: #aaa; }
    .password-change__field > input:placeholder-shown {
      background: #fff; }
    .-submitted .password-change__field > input:invalid {
      border-color: red; }

.password-change input[type=submit] {
  /*border: 1px solid #d9d9d9;*/
  border: none;
  outline: 0;
  background: #19232d;
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  padding: 7px 21px;
  max-width: 100%;
  width: 400px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 17px; }
  .password-change input[type=submit]:focus {
    color: #aaa;
    /*border-color: #bbb;*/ }

.auth-recover__field {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  align-items: baseline; }
  .auth-recover__field > * {
    margin-left: 10px;
    margin-top: 10px; }
  .auth-recover__field > input {
    background: #f9f9f9;
    border: 1px solid #d9d9d9;
    padding: 7px 14px;
    outline: 0;
    font-size: 13px;
    color: #000;
    max-width: 100%;
    width: 400px;
    font-size: 15px; }
    .auth-recover__field > input:focus {
      border-color: #bbb;
      color: #000; }
    .auth-recover__field > input::placeholder {
      color: #aaa; }
    .auth-recover__field > input:placeholder-shown {
      background: #fff; }
    .-submitted .auth-recover__field > input:invalid {
      border-color: red; }

.auth-recover input[type=submit] {
  /*border: 1px solid #d9d9d9;*/
  border: none;
  outline: 0;
  background: #19232d;
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  padding: 7px 21px;
  max-width: 100%;
  width: 400px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 17px; }
  .auth-recover input[type=submit]:focus {
    color: #aaa;
    /*border-color: #bbb;*/ }

.auth-reset__field {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  align-items: baseline; }
  .auth-reset__field > * {
    margin-left: 10px;
    margin-top: 10px; }
  .auth-reset__field > input {
    background: #f9f9f9;
    border: 1px solid #d9d9d9;
    padding: 7px 14px;
    outline: 0;
    font-size: 13px;
    color: #000;
    max-width: 100%;
    width: 400px;
    font-size: 15px; }
    .auth-reset__field > input:focus {
      border-color: #bbb;
      color: #000; }
    .auth-reset__field > input::placeholder {
      color: #aaa; }
    .auth-reset__field > input:placeholder-shown {
      background: #fff; }
    .-submitted .auth-reset__field > input:invalid {
      border-color: red; }

.auth-reset input[type=submit] {
  /*border: 1px solid #d9d9d9;*/
  border: none;
  outline: 0;
  background: #19232d;
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  padding: 7px 21px;
  max-width: 100%;
  width: 400px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 17px; }
  .auth-reset input[type=submit]:focus {
    color: #aaa;
    /*border-color: #bbb;*/ }

/* AddEvent theme CSS
---------------------------------------------------------------------- */
/* The button */
.addeventatc {
  display: inline-block;
  position: relative;
  z-index: 999998; }

.addeventatc .start, .addeventatc .end, .addeventatc .timezone, .addeventatc .title, .addeventatc .description, .addeventatc .location, .addeventatc .organizer, .addeventatc .organizer_email, .addeventatc .facebook_event, .addeventatc .all_day_event, .addeventatc .date_format, .addeventatc .alarm_reminder, .addeventatc .recurring, .addeventatc .attendees, .addeventatc .calname, .addeventatc .uid, .addeventatc .status, .addeventatc .method {
  display: none !important; }

/* The drop down */
.addeventatc_dropdown {
  width: 200px;
  position: absolute;
  z-index: 99999;
  padding: 6px 0px 0px 0px;
  background: #fff;
  text-align: left;
  display: none;
  margin-top: 4px;
  margin-left: -1px;
  border-top: 1px solid #c8c8c8;
  border-right: 1px solid #bebebe;
  border-bottom: 1px solid #a8a8a8;
  border-left: 1px solid #bebebe;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -webkit-box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.15); }

.addeventatc_dropdown span {
  display: block;
  line-height: 100%;
  background: #fff;
  text-decoration: none;
  font-size: 14px;
  color: #333;
  padding: 9px 10px 9px 40px; }

.addeventatc_dropdown span:hover {
  background-color: #f4f4f4;
  color: #000;
  text-decoration: none;
  font-size: 14px; }

.addeventatc_dropdown em {
  color: #999 !important;
  font-size: 12px !important; }

.addeventatc_dropdown .frs {
  background: #fff;
  color: #cacaca !important;
  cursor: pointer;
  font-size: 9px !important;
  font-style: normal !important;
  font-weight: normal !important;
  line-height: 110% !important;
  padding-left: 10px;
  position: absolute;
  right: 10px;
  text-align: right;
  text-decoration: none;
  top: 5px;
  z-index: 101; }

.addeventatc_dropdown .frs:hover {
  color: #999 !important; }

.addeventatc_dropdown .ateappleical {
  background-image: url(/Content/gfx/dropdown-apple-t1.png);
  background-position: 13px 50%;
  background-repeat: no-repeat; }

.addeventatc_dropdown .ateoutlook {
  background-image: url(/Content/gfx/dropdown-outlook-t1.png);
  background-position: 13px 50%;
  background-repeat: no-repeat; }

.addeventatc_dropdown .ateoutlookcom {
  background-image: url(/Content/gfx/dropdown-outlook-t1.png);
  background-position: 13px 50%;
  background-repeat: no-repeat; }

.addeventatc_dropdown .ategoogle {
  background-image: url(/Content/gfx/dropdown-google-t1.png);
  background-position: 13px 50%;
  background-repeat: no-repeat; }

.addeventatc_dropdown .ateyahoo {
  background-image: url(/Content/gfx/dropdown-yahoo-t1.png);
  background-position: 13px 50%;
  background-repeat: no-repeat; }

.addeventatc_dropdown .atefacebook {
  background-image: url(/Content/gfx/dropdown-facebook-t1.png);
  background-position: 13px 50%;
  background-repeat: no-repeat; }

.addeventatc_dropdown .copyx {
  height: 21px;
  display: block;
  position: relative;
  cursor: default; }

.addeventatc_dropdown .brx {
  height: 1px;
  overflow: hidden;
  background: #e0e0e0;
  position: absolute;
  z-index: 100;
  left: 10px;
  right: 10px;
  top: 9px; }

.addeventatc_dropdown span {
  font-family: "Segoe UI", Arial; }

.topbar {
  background: #f2f2f2;
  border-top: 4px solid #e54e53;
  border-bottom: 1px solid #e7e7e7; }
  @media (max-width: 839px) {
    .topbar {
      display: none; } }
  .topbar__inner {
    line-height: 43px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; }
    .topbar__inner:after {
      content: "";
      display: table;
      clear: both; }
  @media (max-width: 839px) {
    .topbar__region {
      display: none; } }
  .topbar__region {
    float: right;
    margin-left: 40px;
    position: relative; }
    .topbar__region > a {
      text-transform: uppercase;
      /*> .fa {
                color: #aaa;
                padding-right: 5px;
            }*/ }
    .topbar__region a {
      text-decoration: none !important; }
  .topbar__region-list {
    top: 43px;
    position: absolute;
    visibility: hidden;
    transition: width 0.5s, height 0.5s, opacity 200ms, background 200ms;
    opacity: 0;
    box-shadow: 0px 0px 4px 0 rgba(0, 0, 0, 0.2);
    background: #f5f5f5;
    z-index: 101;
    right: 0; }
  .topbar__region:hover > .topbar__region-list {
    visibility: visible;
    opacity: 1; }
  .topbar__region-item {
    white-space: nowrap; }
    .topbar__region-item:first-child > a {
      border: none; }
    .topbar__region-item > a {
      display: block;
      padding: 0 25px;
      line-height: 43px;
      border-top: solid 1px #d9d9d9; }
      .topbar__region-item > a:hover {
        background: #fff; }
  .topbar__social {
    float: right;
    margin-left: 20px; }
  .topbar__social-item {
    display: inline-block;
    line-height: 20px; }
  .topbar__social-link {
    display: inline-block;
    font-size: 0.8571rem;
    text-align: center;
    width: 20px;
    height: 20px;
    line-height: 20px;
    color: #fff;
    margin-right: 2px;
    background: #19232d;
    text-decoration: none !important; }
    .topbar__social-link.fa-twitter {
      background: #2aa9e0; }
    .topbar__social-link.fa-facebook {
      background: #204385; }
    .topbar__social-link.fa-instagram {
      background: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf); }
    .topbar__social-link.fa-pinterest {
      background: #ca2128; }
    .topbar__social-link.fa-linkedin {
      background: #02669a; }
    .topbar__social-link.fa-tumblr {
      background: #44546b; }
    .topbar__social-link > span {
      border: 0;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px; }
  .topbar__userinfo {
    float: right; }
    .topbar__userinfo > a {
      color: #e54e53; }

.trending {
  display: inline; }
  @media (max-width: 839px) {
    .trending {
      display: none; } }
  .trending__title {
    color: #e54e53;
    text-transform: uppercase;
    margin-right: 40px; }
  .trending__list {
    display: inline; }
  .trending__list-item {
    opacity: 0;
    white-space: nowrap;
    transition: opacity 500ms ease-in;
    position: absolute;
    top: -1000px; }
  .trending__list-item--visible {
    display: inline;
    opacity: 1;
    position: static;
    top: auto; }
  .trending__link {
    color: #656565; }

.header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; }
  .header:after {
    content: "";
    display: table;
    clear: both; }
  .header__menu-toggle {
    display: none; }
  .header__logo {
    display: block;
    float: left;
    width: 345px;
    height: 63px; }
  .header__logo, .header__dfp {
    margin: 18px 0 10px; }
  .header__logo-image {
    display: block;
    max-height: 100%;
    max-width: 100%; }
  .header__logo-image--mobile {
    display: none; }
  @media (max-width: 839px) {
    .header {
      /*&__dfp {
            display: none;
        }*/ }
      .header__menu-toggle {
        float: right;
        display: block; }
        .header__menu-toggle > a {
          font-size: 25px; }
      .header__logo {
        width: 245px;
        height: 30px; }
      .header__logo {
        margin: 8px 0; }
      .header__dfp {
        margin: 0 auto 8px;
        display: block;
        float: none !important;
        text-align: center; }
      .header__logo-image--mobile {
        display: block; }
      .header__logo-image--desktop {
        display: none; } }
  .header__dfp {
    float: right; }

.menu {
  /*
        __item
        __item-with-submenu
        __item-root
        __item-root-with-submenu
        __item-child
        __item-child-with-submenu
        __submenu
        __submenu-root
        __submenu-child

    */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative; }
  .menu__inner {
    background-color: #f2f2f2;
    border-bottom: solid 2px #eee;
    line-height: 2;
    position: relative;
    z-index: 100; }
    .menu__inner:after {
      content: "";
      display: table;
      clear: both; }
  .menu__a.-highlight {
    color: #e54e53; }
  .menu--mobile-only {
    display: none; }
  @media (max-width: 839px) {
    .menu--mobile-hidden {
      display: none; }
    .menu--mobile-only {
      display: block; }
    .menu__li {
      background-repeat: no-repeat; }
      .menu__li.-expanded {
        background-color: #fff; }
    .menu__a {
      display: block;
      text-decoration: none !important;
      padding: 0 25px;
      line-height: 43px;
      border-top: solid 1px #d9d9d9; }
      .menu__a:hover {
        background: #fff; }
      .menu__a.-root {
        font-weight: bold;
        text-transform: uppercase; }
      .menu__a.-has-kids:after {
        float: right;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        font-size: 15px;
        content: "\f105";
        text-shadow: 0px 0px 1px #efefef;
        margin-left: 10px; }
      .menu__a.-level2 {
        padding-left: 50px; }
    .menu__ul.-child {
      display: none;
      background: #fff; }
    .menu__li.-expanded > .menu__ul.-child {
      display: block; }
    .menu__search {
      position: relative; }
      .menu__search > * {
        vertical-align: middle; }
    .menu__search-box {
      height: 43px;
      padding: 0 25px;
      background: transparent;
      border: none;
      outline: none;
      display: block;
      width: 100%; }
    .menu__search-focused {
      background: #f5f5f5; }
    .menu__search > button {
      background: none;
      border: none;
      line-height: 30px;
      font-size: 1.429rem;
      color: #e54e53;
      float: right;
      position: absolute;
      top: 7px;
      right: 11px; } }
  @media (min-width: 840px) {
    .menu {
      /*&__search:hover &__search-box, &__search-box:focus {
            width: 150px;
        }*/ }
      .menu__inner--sticky {
        position: fixed;
        top: 0;
        background: rgba(239, 239, 239, 0.9);
        width: 100%;
        max-width: 1170px; }
      .menu__li.-root {
        float: left; }
      .menu__li.-root:hover {
        background: #fff; }
      .menu__li.-child {
        min-width: 220px;
        font-size: 0.9286rem; }
      .menu__li.-child.-regular {
        position: relative;
        border-top: 1px solid #e0e0e0; }
        .menu__li.-child.-regular:first-child {
          border-top: none; }
      .menu__li.-child.-cat.-level1 {
        border-left: solid 1px #d9d9d9;
        padding: 0 0 5px 0; }
        .menu__li.-child.-cat.-level1:first-child {
          border-left: none; }
      .menu__a {
        display: block;
        /*&.-child.-cat.-level2:hover {
                padding-left: 30px;
                transition: padding-left 0.2s;
            }*/ }
        .menu__a.-root, .menu__a.-regular {
          text-decoration: none !important; }
        .menu__a.-root {
          padding: 0px 25px;
          line-height: 43px;
          text-transform: uppercase;
          border-bottom: 2px solid transparent;
          margin-bottom: -2px; }
        .menu__a.-root.-has-kids:after {
          display: inline-block;
          font-family: FontAwesome;
          font-style: normal;
          font-weight: normal;
          font-size: 1.071rem;
          line-height: 0.9;
          content: "\f107";
          text-shadow: 0px 0px 1px #efefef;
          margin-left: 10px; }
        .menu__a.-child.-regular.-has-kids:after {
          float: right;
          font-family: FontAwesome;
          font-style: normal;
          font-weight: normal;
          font-size: 1.071rem;
          line-height: 1.6;
          content: "\f105";
          text-shadow: 0px 0px 1px #efefef;
          margin-left: 10px; }
        .menu__a.-child.-regular {
          padding: 6px 25px;
          white-space: nowrap; }
        .menu__a.-root.-current, .menu__a.-root:hover {
          border-bottom-color: #e54e53; }
        .menu__a.-child.-cat {
          padding: 3px 25px; }
        .menu__a.-cat.-level1 {
          font-weight: bold;
          background: #f9f9f9;
          padding: 8px 25px;
          color: #555;
          /*box-shadow: 0px 4px 2px 0 rgba(0, 0, 0, 0.2);*/ }
      .menu__ul.-child.-regular {
        padding: 5px 0; }
      .menu__ul.-child.-regular, .menu__ul.-cat.-level1 {
        top: 45px;
        position: absolute;
        visibility: hidden;
        transition: width 0.5s, height 0.5s, opacity 200ms, background 200ms;
        opacity: 0;
        box-shadow: 0px 0px 4px 0 rgba(0, 0, 0, 0.2);
        background: #fff; }
        .menu__ul.-child.-regular.-level2.-regular, .menu__ul.-cat.-level1.-level2.-regular {
          left: 100%;
          top: 0; }
      .menu__ul.-cat.-level1 {
        display: flex; }
        .menu__ul.-cat.-level1:after {
          content: "";
          display: table;
          clear: both; }
      .menu__li.-cat.-level1 {
        display: inline-block;
        vertical-align: top; }
      .menu__li.-has-kids:hover > .menu__ul.-child {
        visibility: visible;
        opacity: 1; }
      .menu__search {
        margin-top: 7px;
        margin-right: 8px;
        float: right; }
        .menu__search > * {
          vertical-align: middle; }
      .menu__search-box {
        height: 30px;
        background: transparent;
        border: none;
        outline: none;
        padding: 0 7px;
        /*width: 80px;*/
        transition: width 0.5s, height 0.5s, opacity 200ms, background 200ms; }
      .menu__search:hover, .menu__search--focused {
        background: #E9E9E9; }
      .menu__search > button {
        background: none;
        border: none;
        line-height: 30px;
        font-size: 1.429rem;
        color: #e54e53; } }
  .menu .tt-hint {
    color: #aaa; }
  .menu .tt-suggestion {
    padding: 5px 10px !important;
    min-width: 219px;
    box-sizing: border-box; }

.message {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  margin-top: 2rem;
  margin-bottom: 2rem; }
  .message__text {
    display: none;
    padding: 2rem;
    font-size: 1.2rem;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5); }
    .message__text > i, .message__text > span {
      display: inline-block;
      vertical-align: middle; }
    .message__text > i {
      font-size: 2rem;
      color: rgba(0, 0, 0, 0.22);
      margin-right: 5px; }
    .message__text.-success {
      background: #e2ffe2; }
    .message__text.-error {
      background: #ffe2e2; }

.media-icon {
  display: inline-block;
  z-index: 10;
  font-family: FontAwesome;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 4rem;
  height: 4rem;
  line-height: 4.2rem;
  font-size: 2.5rem;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  background: #000;
  background: rgba(0, 0, 0, 0.5); }
  .media-icon.-video:before {
    /*content: "\f04b";*/
    /*content: "\f03d";*/
    content: "\f01d"; }

.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  margin-top: 40px;
  min-height: 300px; }
  .main:after {
    content: "";
    display: table;
    clear: both; }
  @media (max-width: 839px) {
    .main {
      margin-top: 8px; } }
  @media screen and (min-width: 720px) {
    .main__content:not(:last-child) {
      width: 70%;
      float: left;
      border-right: solid 1px #d9d9d9;
      padding-right: 25px; }
    .main__sidebar {
      padding-left: 25px;
      width: 30%;
      float: left;
      border-left: solid 1px #d9d9d9;
      margin-left: -1px; } }

.sidebar {
  font-size: 0.9286rem;
  /*.webserver1{
        margin-bottom: 35px;
    }*/ }
  .sidebar__block {
    margin: 35px 0; }
    .sidebar__block--first {
      margin-top: 0; }
    .sidebar__block > h3 {
      /*background: #f2f2f2;
            text-transform: uppercase;
            padding: 0 14px;
            line-height: 34px;
            
            font-weight: 600;*/
      font-size: 0.9286rem;
      text-transform: uppercase;
      font-weight: 600;
      line-height: 2.2em;
      /*background: #f9f9f9;*/
      background: #f2f2f2;
      border-bottom: solid 1px #d9d9d9;
      /*border: solid 1px $line-color;*/
      display: block;
      border-width: 1px 0;
      padding: 0 14px;
      position: relative;
      /*&:after, &:before {
        bottom: -1px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
    }

    &:after {
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #fff;
        border-width: 4px;
        left: 20px;
        margin-left: -4px;
    }

    &:before {
        border-color: rgba(229, 78, 83, 0);
        border-bottom-color: #d9d9d9;
        border-width: 5px;
        left: 20px;
        margin-left: -5px;
    }*/
      margin-bottom: 15px; }
  .sidebar__content-line {
    padding: 7px 0;
    border-bottom: 1px solid #d9d9d9; }
  .sidebar__comment-title > span {
    color: #888; }
  .sidebar__comment-title > a {
    color: #e54e53; }
  .sidebar__comment-content {
    display: block; }
  .sidebar__social {
    display: flex;
    justify-content: space-between; }
  .sidebar__social-item {
    width: 23%; }
  .sidebar__social-link {
    display: block;
    font-size: 40px;
    text-align: center;
    height: 70px;
    line-height: 70px;
    color: #fff;
    margin-right: 2px;
    background: #19232d;
    text-decoration: none !important;
    transition: opacity 300ms;
    opacity: 1; }
    .sidebar__social-link:hover {
      opacity: 0.7; }
    .sidebar__social-link.fa-twitter {
      background: #2aa9e0; }
    .sidebar__social-link.fa-facebook {
      background: #204385; }
    .sidebar__social-link.fa-linkedin {
      background: #02669a; }
    .sidebar__social-link.fa-instagram {
      background: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf); }
  .sidebar__event-full {
    display: none;
    position: absolute;
    width: 100%;
    box-sizing: content-box;
    z-index: 1;
    top: 7px;
    left: 0;
    margin: -10px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background: #f5f5f5; }
  .sidebar__event:hover {
    position: relative; }
    .sidebar__event:hover .sidebar__event-short {
      /*visibility: hidden;*/ }
    .sidebar__event:hover .sidebar__event-full {
      display: block; }
  .sidebar__event-date {
    font-size: 12px;
    color: #777;
    margin-bottom: 5px; }
    .sidebar__event-date > a {
      color: #e54e53;
      margin-left: 5px; }
  .sidebar__event-summary {
    font-weight: bold; }
    .sidebar__event-summary.-short {
      color: #777; }
  .sidebar__event-description {
    margin-top: 5px; }
    .sidebar__event-description > a {
      color: #e54e53; }
  .sidebar__event-location {
    font-size: 11px;
    margin-top: 5px;
    color: #777; }
    .sidebar__event-location > a {
      color: #e54e53;
      font-weight: bold;
      text-decoration: none !important; }
  .sidebar__events-more {
    text-align: center;
    margin-top: 6px;
    display: none; }
    .sidebar__events-more > a {
      color: #e54e53; }
  .sidebar__news-full {
    display: none;
    position: absolute;
    width: 100%;
    box-sizing: content-box;
    z-index: 1;
    top: 7px;
    left: 0;
    margin: -10px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background: #f5f5f5; }
  .sidebar__news:hover {
    position: relative; }
    .sidebar__news:hover .sidebar__news-short {
      /*visibility: hidden;*/ }
    .sidebar__news:hover .sidebar__news-full {
      display: block; }
  .sidebar__news-date {
    font-size: 12px;
    color: #777;
    /*margin-bottom: 5px;*/ }
  .sidebar__news-summary {
    /*font-weight: bold;*/
    /*&.-short {
            color: #777;
        }*/ }
  .sidebar__news-description {
    margin-top: 5px;
    /*color: #777;*/
    font-size: 12px; }
    .sidebar__news-description > a {
      display: inline-block;
      padding: 2px 7px;
      background-color: #e54e53;
      color: #fff;
      font-size: 0.8571rem;
      text-transform: uppercase;
      transition: background-color 200ms;
      padding: 4px 15px;
      font-size: 12px;
      margin-top: 10px; }
      .sidebar__news-description > a a {
        color: white; }
      .sidebar__news-description > a:hover {
        background-color: #cb353a; }
  .sidebar__news-more {
    text-align: center;
    margin-top: 6px;
    display: none; }
    .sidebar__news-more > a {
      color: #e54e53; }

.footer {
  margin-top: 60px; }
  .footer__top {
    background-color: #f2f2f2;
    padding: 40px 0; }
  .footer__bot {
    background-color: #e3e3e3;
    color: #2c3a49;
    padding: 14px 0;
    font-size: 0.7857rem; }
    .footer__bot a {
      text-decoration: underline; }
  .footer__copyright {
    float: right; }
  .footer__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; }
    .footer__wrap:after {
      content: "";
      display: table;
      clear: both; }
  .footer__news > h3, .footer__about > h3, .footer__expos > h3 {
    text-transform: uppercase;
    border-bottom: solid 1px #d9d9d9;
    color: #19232d;
    margin-bottom: 28px;
    line-height: 35px;
    font-weight: bold; }
  @media screen and (min-width: 720px) {
    .footer__news, .footer__about, .footer__expos {
      float: left;
      padding-left: 25px; }
      .footer__news:first-child, .footer__about:first-child, .footer__expos:first-child {
        padding-left: 0; }
    .footer__expos {
      width: 30%; }
    .footer__news {
      width: 30%; }
    .footer__about {
      width: 40%; } }
  .footer__about > h2 {
    color: #888;
    margin-bottom: 20px;
    font-size: 1.714rem;
    font-weight: 200; }
  .footer__about > p {
    margin: 20px 0; }
  .footer__about > a {
    color: #e54e53; }
  .footer__line {
    border-bottom: solid 1px #d9d9d9;
    padding: 7px 0;
    font-size: 0.9286rem; }

.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  font-size: 12px;
  color: #8d97a1;
  line-height: 1; }
  .breadcrumbs__inner {
    background: #fbfbfb;
    padding: 14px; }
  .breadcrumbs__title {
    color: #e54e53;
    text-transform: uppercase;
    margin-right: 21px; }
  .breadcrumbs__delim {
    padding: 0 10px;
    font-size: 16px;
    color: #8d97a1;
    line-height: 0.7; }
  .breadcrumbs__link {
    color: #656565; }

.pager:after {
  content: "";
  display: table;
  clear: both; }

.pager__el {
  display: block;
  float: left;
  color: #676767;
  padding: 0 10px;
  margin-right: 5px;
  background: #ebebeb;
  line-height: 25px;
  font-size: 13px;
  position: relative;
  text-decoration: none !important;
  transition: width 0.5s, height 0.5s, opacity 200ms, background 200ms; }
  .pager__el > span {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px; }

.pager__el--nav:hover, .pager__el--cur {
  color: #fff;
  background: #e54e53; }

.formatted p {
  margin: 28px 0; }

.formatted a {
  color: #e54e53; }

.article-big__img-container {
  /*width: 320px;
        height: 180px;*/
  overflow: hidden; }

.article-big__img {
  transition: transform 0.6s;
  display: block; }

.article-big__link {
  display: block;
  position: relative;
  /*> img {
            opacity: 0.7;
            transition: opacity 300ms;
        }

        &:hover > img {
            opacity: 1;
        }*/ }

.article-big__link:hover {
  text-decoration: none; }

.article-big__link:hover .article-big__img {
  transform: scale(1.1); }

.article-big__link:hover .article-big__titles > h3, .article-big__link:hover .article-big__titles > h4 {
  text-decoration: underline; }

.article-big__titles:before {
  content: " ";
  display: block;
  float: left;
  position: absolute;
  left: 0;
  height: 44px;
  border-left: 3px solid #e54e53; }

.article-big__titles {
  min-height: 44px;
  margin-top: 4px;
  padding-left: 14px;
  font-family: "Segoe UI", "Open Sans", Arial, serif;
  line-height: 1.571rem; }
  .article-big__titles > h3 {
    font-size: 1.143rem; }
  .article-big__titles > h4 {
    font-size: 0.9286rem;
    color: #888;
    margin-top: 2px;
    line-height: 1.286rem; }

.article-big__text {
  font-size: 0.9286rem;
  margin: 14px 0; }

.article-mid {
  display: block;
  position: relative;
  margin-bottom: 15px; }
  .article-mid__img-container {
    overflow: hidden; }
  .article-mid__img {
    transition: transform 0.6s;
    display: block; }
  .article-mid:hover {
    text-decoration: none; }
  .article-mid:hover .article-mid__img {
    transform: scale(1.1); }
  .article-mid:hover .article-mid__titles > h3, .article-mid:hover .article-mid__titles > h4 {
    text-decoration: underline; }
  .article-mid__titles:before {
    content: " ";
    display: block;
    float: left;
    position: absolute;
    left: 0;
    height: 42px;
    border-left: 3px solid #e54e53; }
  .article-mid__titles {
    margin-top: 4px;
    padding-left: 14px;
    font-family: "Segoe UI", "Open Sans", Arial, serif;
    line-height: 1.571rem; }
    .article-mid__titles > h3 {
      font-size: 1rem; }
    .article-mid__titles > h4 {
      font-size: 0.8571rem;
      line-height: 1.143rem;
      color: #888; }

.article-small:after {
  content: "";
  display: table;
  clear: both; }

.article-small__img-container {
  width: 60px;
  overflow: hidden;
  float: left; }

.article-small__img {
  transition: transform 0.6s;
  display: block; }

.article-small__link:hover {
  text-decoration: none; }

.article-small__link:hover .article-small__img {
  transform: scale(1.1); }

.article-small__link:hover .article-small__titles > h3, .article-small__link:hover .article-small__titles > h4 {
  text-decoration: underline; }

.article-small__titles {
  margin-left: 75px;
  border-bottom: solid 1px #d9d9d9;
  min-height: 76px;
  /*&:before {
            content: '';
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            background: linear-gradient(transparent 60px, white);
            pointer-events: none;
        }*/ }
  .article-small__titles > h5 {
    text-transform: uppercase;
    color: #a6a6a6;
    font-size: 0.7857rem;
    margin-bottom: 5px; }
  .article-small__titles > h3 {
    font-family: "Segoe UI", "Open Sans", Arial, serif;
    word-wrap: break-word; }
  .article-small__titles > h4 {
    color: #888;
    font-size: 0.8571rem;
    font-family: "Segoe UI", "Open Sans", Arial, serif;
    margin: 0 0 11px;
    overflow: hidden;
    word-wrap: break-word;
    white-space: nowrap;
    text-overflow: ellipsis; }

.articles-two:after {
  content: "";
  display: table;
  clear: both; }

@media screen and (min-width: 640px) {
  .articles-two__col {
    width: 50%;
    float: left;
    padding-left: 20px; }
    .articles-two__col:first-child {
      padding-left: 0;
      padding-right: 20px; } }

.articles-two__col-title {
  font-size: 0.9286rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 2.2em;
  /*background: #f9f9f9;*/
  background: #f2f2f2;
  border-bottom: solid 1px #d9d9d9;
  /*border: solid 1px $line-color;*/
  display: block;
  border-width: 1px 0;
  padding: 0 14px;
  position: relative;
  /*&:after, &:before {
        bottom: -1px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
    }

    &:after {
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #fff;
        border-width: 4px;
        left: 20px;
        margin-left: -4px;
    }

    &:before {
        border-color: rgba(229, 78, 83, 0);
        border-bottom-color: #d9d9d9;
        border-width: 5px;
        left: 20px;
        margin-left: -5px;
    }*/
  margin-bottom: 28px; }

.articles-two__top {
  border-bottom: solid 1px #d9d9d9;
  margin-bottom: 21px;
  position: relative; }

.articles-two__top-title {
  display: inline-block;
  padding: 2px 7px;
  background-color: #e54e53;
  color: #fff;
  font-size: 0.8571rem;
  text-transform: uppercase;
  transition: background-color 200ms;
  position: absolute;
  top: 0;
  left: 10px; }
  .articles-two__top-title a {
    color: white; }
  .articles-two__top-title:hover {
    background-color: #cb353a; }

.articles-two__small {
  margin-bottom: 21px; }

.articles-two__small:last-child {
  margin-bottom: 0; }

.articles-three:after {
  content: "";
  display: table;
  clear: both; }

.articles-three__col {
  width: 30.533333333%;
  float: left;
  margin: 0 2.1%; }
  .articles-three__col:first-child {
    margin-left: 0; }
  .articles-three__col:last-child {
    margin-right: 0; }
  @media (max-width: 600px) {
    .articles-three__col {
      margin: 0 !important;
      width: 100%; } }

.articles-three__col-title {
  font-size: 0.9286rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 2.2em;
  /*background: #f9f9f9;*/
  background: #f2f2f2;
  border-bottom: solid 1px #d9d9d9;
  /*border: solid 1px $line-color;*/
  display: block;
  border-width: 1px 0;
  padding: 0 14px;
  position: relative;
  /*&:after, &:before {
        bottom: -1px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
    }

    &:after {
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #fff;
        border-width: 4px;
        left: 20px;
        margin-left: -4px;
    }

    &:before {
        border-color: rgba(229, 78, 83, 0);
        border-bottom-color: #d9d9d9;
        border-width: 5px;
        left: 20px;
        margin-left: -5px;
    }*/
  margin-bottom: 28px; }

.articles-three__col-item {
  padding: 10px 0; }
  .articles-three__col-item > .fa {
    float: left;
    color: #e54e53;
    line-height: 1.8; }
  .articles-three__col-item-link {
    display: block;
    position: relative; }
  .articles-three__col-item-link:hover {
    text-decoration: none; }
  .articles-three__col-item-link:hover .articles-three__col-item-titles > h3, .articles-three__col-item-link:hover .articles-three__col-item-titles > h4 {
    text-decoration: underline; }
  .articles-three__col-item-titles {
    margin-top: 4px;
    padding-left: 14px;
    font-family: "Segoe UI", "Open Sans", Arial, serif;
    line-height: 1.4em; }
    .articles-three__col-item-titles > h3 {
      font-size: 1rem; }
    .articles-three__col-item-titles > h4 {
      font-size: 0.8571rem;
      line-height: 1.4em;
      color: #888; }

.articles-focus__head {
  font-size: 0.9286rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 2.2em;
  /*background: #f9f9f9;*/
  background: #f2f2f2;
  border-bottom: solid 1px #d9d9d9;
  /*border: solid 1px $line-color;*/
  display: block;
  border-width: 1px 0;
  padding: 0 14px;
  position: relative;
  /*&:after, &:before {
        bottom: -1px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
    }

    &:after {
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #fff;
        border-width: 4px;
        left: 20px;
        margin-left: -4px;
    }

    &:before {
        border-color: rgba(229, 78, 83, 0);
        border-bottom-color: #d9d9d9;
        border-width: 5px;
        left: 20px;
        margin-left: -5px;
    }*/
  margin-bottom: 28px; }
  .articles-focus__head:after {
    content: "";
    display: table;
    clear: both; }

.articles-focus__head-sets {
  float: right; }
  .articles-focus__head-sets > li {
    float: left;
    margin-left: 14px;
    position: relative; }

.articles-focus__head-set-link {
  color: #949697;
  font-size: 0.8571rem; }
  .articles-focus__head-set-link--active {
    color: #e54e53; }
    .articles-focus__head-set-link--active:after, .articles-focus__head-set-link--active:before {
      bottom: -1px;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute; }
    .articles-focus__head-set-link--active:after {
      border-color: rgba(255, 255, 255, 0);
      border-bottom-color: #fff;
      border-width: 4px;
      left: 50%;
      margin-left: -4px; }
    .articles-focus__head-set-link--active:before {
      border-color: rgba(229, 78, 83, 0);
      border-bottom-color: #d9d9d9;
      border-width: 5px;
      left: 50%;
      margin-left: -5px; }

.articles-focus__articles:after {
  content: "";
  display: table;
  clear: both; }

@media screen and (max-width: 639px) {
  .articles-focus__first {
    border-bottom: solid 1px #d9d9d9;
    margin-bottom: 20px; } }

@media screen and (min-width: 640px) {
  .articles-focus__first {
    float: left;
    width: 50%;
    padding-right: 20px; }
  .articles-focus__rest {
    float: left;
    width: 50%;
    padding-left: 20px; } }

.articles-focus__small {
  margin-bottom: 21px; }

.articles-focus__small:last-child {
  margin-bottom: 0; }

.articles-list__article {
  position: relative;
  margin: 28px 0;
  border-bottom: 1px solid #d9d9d9; }
  .articles-list__article:after {
    content: "";
    display: table;
    clear: both; }
  .articles-list__article:last-child {
    border-bottom: none; }

.articles-list__img-link {
  display: block;
  position: relative;
  max-width: 295px;
  overflow: hidden;
  margin-bottom: 28px; }
  .articles-list__img-link > img {
    width: 351px;
    height: 190px;
    max-width: none;
    transition: transform 0.6s;
    display: block; }
  .articles-list__img-link:hover > img {
    transform: scale(1.1); }

.articles-list__article-cat {
  display: inline-block;
  padding: 2px 7px;
  background-color: #e54e53;
  color: #fff;
  font-size: 0.8571rem;
  text-transform: uppercase;
  transition: background-color 200ms;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 7px;
  z-index: 1; }
  .articles-list__article-cat a {
    color: white; }
  .articles-list__article-cat:hover {
    background-color: #cb353a; }

.articles-list__article-content {
  border-bottom: 0;
  line-height: 1.5;
  margin-top: -5px; }

.articles-list__article-issue {
  float: right;
  color: #a6a6a6;
  text-transform: uppercase;
  font-size: 0.7857rem; }

.articles-list__article-title {
  font-size: 1rem;
  font-family: "Segoe UI", "Open Sans", Arial, serif;
  line-height: 1.6;
  margin-top: 8px;
  display: block; }

.articles-list__article-author {
  font-size: 0.7857rem;
  text-transform: uppercase;
  color: #a6a6a6; }

.articles-list__article-text {
  margin: 24px 0;
  font-size: 0.9286rem; }

.articles-list__article-readmore {
  display: inline-block;
  padding: 2px 7px;
  background-color: #e54e53;
  color: #fff;
  font-size: 0.8571rem;
  text-transform: uppercase;
  transition: background-color 200ms;
  margin-bottom: 28px; }
  .articles-list__article-readmore a {
    color: white; }
  .articles-list__article-readmore:hover {
    background-color: #cb353a; }

@media (min-width: 860px) {
  .articles-list__article-content {
    margin-left: 325px; }
  .articles-list__img-link {
    float: left; } }

.articles-list-cond {
  /*&__article-cat {
        @include boxed-link;
        position: absolute;
        top: 0;
        left: 0;
        margin-left: 7px;
        z-index: 1;
    }*/
  /*&__article-readmore {
        @include boxed-link;
        margin-bottom: $pad;
    }*/ }
  .articles-list-cond__article {
    position: relative;
    margin: 28px 0;
    /*border-bottom: 1px solid $line-color;*/
    /*&:last-child {
            border-bottom: none;
        }*/ }
    .articles-list-cond__article:after {
      content: "";
      display: table;
      clear: both; }
  .articles-list-cond__article-content {
    border-bottom: 0;
    line-height: 1.5;
    margin-top: -5px; }
  .articles-list-cond__article-issue {
    /*float: right;*/
    color: #a6a6a6;
    text-transform: uppercase;
    font-size: 0.7857rem; }
  .articles-list-cond__article-title {
    font-size: 1.286rem;
    color: #e54e53;
    font-family: "Segoe UI", "Open Sans", Arial, serif;
    line-height: 1.6;
    margin-top: 8px;
    display: block; }
  .articles-list-cond__article-author {
    font-size: 0.7857rem;
    text-transform: uppercase;
    color: #a6a6a6; }
  .articles-list-cond__article-text {
    margin: 3px 0 24px;
    font-size: 0.9286rem; }
  @media (min-width: 860px) {
    .articles-list-cond {
      /*&__article-content {
            margin-left: 325px;
        }*/
      /*&__img-link {
            float: left;
        }*/ } }

.article__video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0; }
  .article__video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.article__p--faded {
  position: relative; }

.article__p--faded:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 100%;
  height: 100px;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(bottom, #fff, rgba(255, 255, 255, 0));
  background: -moz-linear-gradient(bottom, #fff, rgba(255, 255, 255, 0));
  background: -o-linear-gradient(bottom, #fff, rgba(255, 255, 255, 0));
  background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0)); }

.article__more-container {
  margin: 20px 0 60px !important; }
  .article__more-container:after {
    content: "";
    display: table;
    clear: both; }

.article__more {
  display: inline-block;
  padding: 2px 7px;
  background-color: #e54e53;
  color: #fff;
  font-size: 0.8571rem;
  text-transform: uppercase;
  transition: background-color 200ms;
  padding: 5px 20px;
  font-size: 15px;
  color: #fff !important; }
  .article__more a {
    color: white; }
  .article__more:hover {
    background-color: #cb353a; }

.article__header {
  margin-bottom: 21px; }
  .article__header:after {
    content: "";
    display: table;
    clear: both; }

.article__title {
  font-size: 30px;
  font-family: "Segoe UI", "Open Sans", Arial, serif;
  font-weight: 200;
  border-left: 3px solid #e54e53;
  padding-left: 18px;
  line-height: 1.1em; }

.article__title-sub {
  font-size: 1rem;
  line-height: 1.3em;
  margin-top: 8px;
  display: block;
  color: #888; }

.article__cats {
  float: right; }
  .article__cats > a {
    margin-left: 15px; }

.article__meta {
  color: #a6a6a6;
  font-size: 0.7857rem;
  text-transform: uppercase;
  padding: 10px 0;
  border: 1px solid #d9d9d9;
  border-left: 0;
  border-right: 0;
  margin-bottom: 21px;
  overflow: hidden; }

.article__section-head {
  font-size: 0.9286rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 2.2em;
  /*background: #f9f9f9;*/
  background: #f2f2f2;
  border-bottom: solid 1px #d9d9d9;
  /*border: solid 1px $line-color;*/
  display: block;
  border-width: 1px 0;
  padding: 0 14px;
  position: relative;
  /*&:after, &:before {
        bottom: -1px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
    }

    &:after {
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #fff;
        border-width: 4px;
        left: 20px;
        margin-left: -4px;
    }

    &:before {
        border-color: rgba(229, 78, 83, 0);
        border-bottom-color: #d9d9d9;
        border-width: 5px;
        left: 20px;
        margin-left: -5px;
    }*/ }

.article__content {
  font-size: 1.071rem;
  line-height: 1.8em; }
  .article__content h1, .article__content h2, .article__content h3, .article__content h4, .article__content h5, .article__content h6 {
    font-family: "Segoe UI", "Open Sans", Arial, serif;
    font-size: 1.714rem;
    margin-bottom: 15px; }
  .article__content div, .article__content p, .article__content ul, .article__content ol {
    margin-bottom: 25px; }
  .article__content strong, .article__content b {
    font-weight: bold; }
  .article__content ol {
    list-style-type: decimal; }
  .article__content ul {
    list-style-type: disc; }
  .article__content ul, .article__content ol {
    padding-left: 40px; }
  .article__content a {
    color: #e54e53; }

.article__ad {
  margin: 30px 0;
  text-align: center; }
  .article__ad:empty {
    display: none; }

.article__media {
  text-align: center; }
  .article__media img, .article__media iframe {
    display: inline-block; }

.article__media-caption {
  text-align: center;
  color: #999;
  font-size: 13px;
  margin-top: 3px;
  line-height: 1.3em;
  margin-bottom: 20px; }

.article__tags {
  margin: 28px 0;
  padding-top: 28px;
  border-top: 1px solid #d9d9d9; }
  .article__tags tr:last-child > td {
    padding-top: 10px; }

.article__tags-title {
  padding-right: 10px;
  text-transform: uppercase;
  color: #888; }

.article__share {
  margin: 28px 0;
  padding-top: 28px;
  border-top: 1px solid #d9d9d9; }
  .article__share:after {
    content: "";
    display: table;
    clear: both; }

.article__share-title {
  color: #888;
  text-transform: uppercase; }

.article__share-links {
  float: right; }

.article__share-link {
  width: 60px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  margin-right: 2px;
  background: #19232d;
  text-decoration: none !important; }
  .article__share-link.fa-twitter {
    background: #2aa9e0; }
  .article__share-link.fa-facebook {
    background: #204385; }
  .article__share-link.fa-pinterest {
    background: #ca2128; }
  .article__share-link.fa-linkedin {
    background: #02669a; }
  .article__share-link.fa-tumblr {
    background: #44546b; }
  .article__share-link > span {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px; }

.article__related {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  margin-left: -3.5%; }

.article__related-item {
  margin-left: 3.5%; }

@media (min-width: 400px) {
  .article__related-item {
    width: 46.5%; } }

@media (min-width: 600px) {
  .article__related-item {
    width: 29.83333%; } }

.login {
  padding: 2rem;
  background: #f7f7f7;
  overflow: hidden;
  /*&__check {
        > label {
            > input {
                vertical-align: middle;
                position: relative;
                bottom: 1px;
            }

            > a {
                text-decoration: underline;
            }
        }
    }*/ }
  .login:after {
    content: "";
    display: table;
    clear: both; }
  .login__note {
    margin: -2rem -2rem 0;
    padding: 5rem 2rem;
    margin-bottom: 2rem;
    background: #e8e8e8;
    font-size: 30px;
    font-weight: 100;
    text-align: center;
    /*box-shadow: 0 0px 10px #000;*/ }
    .login__note:after {
      content: "";
      display: table;
      clear: both; }
    .login__note.-bg {
      color: #fff;
      background-size: cover !important;
      padding: 12rem 2rem 9rem;
      text-shadow: 0 0 5px black; }
      .login__note.-bg > .fa-youtube-play {
        font-size: 5rem;
        display: block;
        text-shadow: none; }
  .login__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-bottom: 2rem; }
  .login__title {
    text-transform: uppercase;
    font-weight: 600; }
  .login__title-alt > a {
    color: #e54e53; }
  @media screen and (min-width: 720px) {
    .login__left {
      padding-right: 2rem; }
    .login__split > * {
      width: 50%;
      float: left; }
    .login__right-inner {
      border-left: 1px solid #d9d9d9;
      padding-left: 2rem; } }
  .login__intro {
    line-height: 1.4em; }
  .login__social-link, .login__input {
    display: block;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    min-height: 3rem; }
  .login__social-link {
    background: #888;
    color: #fff;
    text-decoration: none !important;
    line-height: 3rem;
    opacity: 0.85;
    transition: opacity 300ms;
    padding-left: 1em;
    padding-right: 1em;
    font-weight: 700; }
    .login__social-link > .fa {
      float: right;
      line-height: 3rem; }
    .login__social-link--facebook {
      background-color: #204385; }
    .login__social-link--google {
      background-color: #e05d4d; }
    .login__social-link--twitter {
      background-color: #2aa9e0; }
    .login__social-link:hover {
      opacity: 1; }
  .login__input {
    background: #f9f9f9;
    border: 1px solid #d9d9d9;
    padding: 7px 14px;
    outline: 0;
    font-size: 13px;
    color: #000;
    max-width: 100%;
    display: block;
    width: 100%;
    background: #fff;
    font-size: 16px; }
    .login__input:focus {
      border-color: #bbb;
      color: #000; }
    .login__input::placeholder {
      color: #aaa; }
    .login__input:placeholder-shown {
      background: #fff; }
    .login__input--submit {
      /*border: 1px solid #d9d9d9;*/
      border: none;
      outline: 0;
      background: #19232d;
      text-transform: uppercase;
      font-size: 14px;
      color: #fff;
      padding: 7px 21px;
      max-width: 100%;
      /*border: none;*/
      margin-bottom: 0.2rem;
      /*&:focus {
                color: #888;
            }*/ }
      .login__input--submit:focus {
        color: #aaa;
        /*border-color: #bbb;*/ }
  .login__forgot {
    float: right;
    font-size: 13px;
    color: #e54e53; }
  .login__terms {
    font-size: 12px;
    text-align: center; }
    .login__terms > a {
      text-decoration: underline; }

.issue__title {
  font-weight: bold; }

.issue__subtitle {
  text-transform: none;
  font-size: 1.143rem;
  font-weight: normal; }

.issue__featured {
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center; }

.issue__featured-img {
  /*vertical-align: middle;
        display: block;*/ }

.issue__subscribe {
  display: flex;
  flex-grow: 10;
  justify-content: center;
  /*align-self: center;*/ }

.issue__subscribe-link {
  display: inline-block; }

.issue__subscribe-img {
  display: block; }

.issues__list {
  -webkit-column-count: 3;
  /* Chrome, Safari, Opera */
  -moz-column-count: 3;
  /* Firefox */
  column-count: 3; }

.issues__list-year {
  -webkit-column-break-inside: avoid;
  /* Chrome, Safari */
  page-break-inside: avoid;
  /* Theoretically FF 20+ */
  break-inside: avoid-column;
  /* IE 11 */
  display: table;
  /* Actually FF 20+ */
  margin-top: 20px; }
  .issues__list-year > h3 {
    font-size: 1.429rem;
    font-family: "Segoe UI", "Open Sans", Arial, serif; }

.issues__issue {
  margin-bottom: 10px; }

.subscribe__paper {
  background: whitesmoke;
  padding: 20px;
  margin-bottom: 80px; }

.subscribe__paper-button {
  display: inline-block;
  padding: 2px 7px;
  background-color: #e54e53;
  color: #fff;
  font-size: 0.8571rem;
  text-transform: uppercase;
  transition: background-color 200ms;
  padding: 10px;
  box-shadow: 3px 3px 5px #aaa;
  border: solid 1px #b50a10;
  /*text-decoration: underline;*/ }
  .subscribe__paper-button a {
    color: white; }
  .subscribe__paper-button:hover {
    background-color: #cb353a; }

.subscribe__paper-link {
  color: #e54e53;
  text-decoration: underline; }

.subscribe__news-input {
  background: #f9f9f9;
  border: 1px solid #d9d9d9;
  padding: 7px 14px;
  outline: 0;
  font-size: 13px;
  color: #000;
  max-width: 100%;
  width: 315px; }
  .subscribe__news-input:focus {
    border-color: #bbb;
    color: #000; }
  .subscribe__news-input::placeholder {
    color: #aaa; }
  .subscribe__news-input:placeholder-shown {
    background: #fff; }

.subscribe__news-submit {
  /*border: 1px solid #d9d9d9;*/
  border: none;
  outline: 0;
  background: #19232d;
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  padding: 7px 21px;
  max-width: 100%; }
  .subscribe__news-submit:focus {
    color: #aaa;
    /*border-color: #bbb;*/ }

.subscribe__message {
  background: #e2ffe2;
  padding: 30px; }
  .subscribe__message a {
    text-decoration: underline; }
  .subscribe__message a, .subscribe__message b {
    font-weight: bold; }

.comments__section-head {
  font-size: 0.9286rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 2.2em;
  /*background: #f9f9f9;*/
  background: #f2f2f2;
  border-bottom: solid 1px #d9d9d9;
  /*border: solid 1px $line-color;*/
  display: block;
  border-width: 1px 0;
  padding: 0 14px;
  position: relative;
  /*&:after, &:before {
        bottom: -1px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
    }

    &:after {
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #fff;
        border-width: 4px;
        left: 20px;
        margin-left: -4px;
    }

    &:before {
        border-color: rgba(229, 78, 83, 0);
        border-bottom-color: #d9d9d9;
        border-width: 5px;
        left: 20px;
        margin-left: -5px;
    }*/
  margin: 28px 0; }

.comments__form > p {
  margin: 28px 0; }

.comments__form-input {
  background: #f9f9f9;
  border: 1px solid #d9d9d9;
  padding: 7px 14px;
  outline: 0;
  font-size: 13px;
  color: #000;
  max-width: 100%; }
  .comments__form-input:focus {
    border-color: #bbb;
    color: #000; }
  .comments__form-input::placeholder {
    color: #aaa; }
  .comments__form-input:placeholder-shown {
    background: #fff; }

.comments__form-input-comment {
  background: #f9f9f9;
  border: 1px solid #d9d9d9;
  padding: 7px 14px;
  outline: 0;
  font-size: 13px;
  color: #000;
  max-width: 100%;
  padding: 7px 14px;
  width: 100%;
  font-family: inherit; }
  .comments__form-input-comment:focus {
    border-color: #bbb;
    color: #000; }
  .comments__form-input-comment::placeholder {
    color: #aaa; }
  .comments__form-input-comment:placeholder-shown {
    background: #fff; }

.comments__form-submit {
  /*border: 1px solid #d9d9d9;*/
  border: none;
  outline: 0;
  background: #19232d;
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  padding: 7px 21px;
  max-width: 100%;
  float: right; }
  .comments__form-submit:focus {
    color: #aaa;
    /*border-color: #bbb;*/ }

.comments__comment {
  margin-top: 28px;
  border-bottom: solid 1px #d9d9d9;
  padding-bottom: 42px;
  color: #606569;
  font-size: 0.9286rem; }

.comments__comment-avatar {
  float: left; }

.comments__comment-meta {
  margin-left: 75px; }

.comments__comment-author {
  text-transform: uppercase; }

.comments__comment-time {
  text-transform: uppercase; }

.comments__comment-content {
  margin-left: 75px;
  white-space: pre-line;
  margin-top: 14px; }

.contact__left {
  display: inline-block;
  margin-right: 40px; }

.contact__left-img {
  display: inline-block;
  vertical-align: top;
  margin-right: 20px; }

.contact__left-text {
  display: inline-block; }
  .contact__left-text b {
    font-weight: bold;
    color: #777; }

.contact__emails {
  display: inline-block;
  vertical-align: top;
  color: #777; }

.content-title, .issue__title {
  font-size: 1.429rem;
  text-transform: uppercase;
  border-left: 3px solid #e54e53;
  padding-left: 14px;
  line-height: 2;
  margin-bottom: 28px; }

.content-subtitle, .formatted h2 {
  font-size: 1.429rem;
  line-height: 2;
  margin: 20px 0;
  font-family: "Segoe UI", "Open Sans", Arial, serif; }

.region-panel {
  background: #CEECDC;
  padding: 20px; }
  .region-panel__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; }
  .region-panel__close {
    float: right;
    font-size: 0.9286rem; }
    .region-panel__close > a {
      background: none; }
  .region-panel h1 {
    font-size: 1.571rem; }

.renew {
  /*&__field {
        display: flex;
        flex-wrap: wrap;
        margin-left: -$p;
        align-items: baseline;

        > * {
            margin-left: $p;
            margin-top: $p;
        }

        > input {
            @include input-text;
            width: $w;
            font-size: $f;

            .-submitted &:invalid { //, &.input-validation-error
                border-color: red;
            }
        }
    }



    input[type=submit] {
        @include input-submit;
        width: $w;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: $f+2;
    }*/ }
  .renew__blocks {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-left: -42px;
    flex-wrap: wrap; }
    .renew__blocks > div {
      margin-left: 42px; }
  .renew__form {
    max-width: 400px;
    flex-grow: 1; }
    .renew__form > input {
      background: #f9f9f9;
      border: 1px solid #d9d9d9;
      padding: 7px 14px;
      outline: 0;
      font-size: 13px;
      color: #000;
      max-width: 100%;
      display: block;
      width: 100%;
      font-size: 15px;
      margin-top: 21px; }
      .renew__form > input:focus {
        border-color: #bbb;
        color: #000; }
      .renew__form > input::placeholder {
        color: #aaa; }
      .renew__form > input:placeholder-shown {
        background: #fff; }
      .-submitted .renew__form > input:invalid {
        border-color: red; }
    .renew__form input[type=submit] {
      /*border: 1px solid #d9d9d9;*/
      border: none;
      outline: 0;
      background: #19232d;
      text-transform: uppercase;
      font-size: 14px;
      color: #fff;
      padding: 7px 21px;
      max-width: 100%;
      width: 100%;
      padding-top: 10px;
      padding-bottom: 10px;
      font-size: 17px; }
      .renew__form input[type=submit]:focus {
        color: #aaa;
        /*border-color: #bbb;*/ }
  .renew__info {
    width: 293px; }
    .renew__info b {
      font-weight: bold; }

.slider {
  margin: 28px 0 49px 0;
  padding: 28px 0;
  background: #f2f2f2;
  border: 1px solid #e7e7e7;
  border-right: 0;
  border-left: 0; }
  @media (max-width: 839px) {
    .slider {
      margin-top: 5px; } }
  .slider__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; }
    .slider__wrap:after {
      content: "";
      display: table;
      clear: both; }
  @media (min-width: 720px) {
    .slider__main {
      width: 70%;
      float: left;
      padding-right: 25px; } }
  .slider__inner {
    position: relative; }
  .slider__slides:after {
    content: "";
    display: table;
    clear: both; }
  .slider__slide {
    width: 100%;
    float: left;
    margin-right: -100%;
    position: relative;
    overflow: hidden; }
    .slider__slide img {
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
    .slider__slide:hover img {
      -webkit-transform: translate3d(0, 0, 0);
      -webkit-perspective: 0;
      -webkit-backface-visibility: hidden;
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
      -moz-transform: scale(1.1) rotate(0.1deg);
      opacity: 0.9; }
  .slider__slide-link {
    display: block; }
  .slider__slide-img {
    display: block; }
  .slider__slide-cat {
    display: inline-block;
    padding: 2px 7px;
    background-color: #e54e53;
    color: #fff;
    font-size: 0.8571rem;
    text-transform: uppercase;
    transition: background-color 200ms;
    position: absolute;
    top: 0;
    margin-left: 17px;
    z-index: 1;
    padding: 5px 10px; }
    .slider__slide-cat a {
      color: white; }
    .slider__slide-cat:hover {
      background-color: #cb353a; }
  .slider__slide-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 14px 20px 17px 20px;
    background: #19232d;
    background: rgba(25, 35, 45, 0.7);
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJo…iIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
    background: -moz-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(25, 35, 45, 0)), color-stop(100%, #19232d));
    background: -webkit-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
    background: -o-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
    background: -ms-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
    background: linear-gradient(to bottom, rgba(25, 35, 45, 0) 0%, #19232d 100%);
    text-shadow: 0px 1px 1px #000; }
  .slider__slide-issue {
    color: #d3dbdf;
    display: block;
    text-transform: uppercase;
    font-size: 0.7857rem;
    font-family: "Segoe UI", "Open Sans", Arial, serif;
    pointer-events: none; }
  .slider__slide-title {
    display: block;
    color: #fff;
    font-size: 1.286rem;
    /*line-height: 2;*/
    font-family: "Segoe UI", "Open Sans", Arial, serif; }
  .slider__slide-subtitle {
    display: block;
    color: #fff;
    line-height: 2;
    font-family: "Segoe UI", "Open Sans", Arial, serif; }
  .slider__nav {
    opacity: 0; }
  .slider:hover .slider__nav {
    opacity: 1; }
  .slider__nav-link {
    opacity: 0.5;
    z-index: 10;
    width: 35px;
    height: 35px;
    margin: -30px 0 0;
    display: block;
    background: #fff;
    position: absolute;
    top: 50%;
    cursor: pointer;
    font-size: 0;
    text-decoration: none !important;
    /*opacity: 0;*/ }
    .slider__nav-link:after {
      content: "\f104";
      display: block;
      font-family: FontAwesome;
      font-style: normal;
      font-weight: normal;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 35px;
      font-size: 30px;
      text-align: center;
      color: #19232d; }
    .slider__nav-link:hover {
      opacity: 1; }
  .slider__nav-link--prev {
    left: 19px; }
  .slider__nav-link--next {
    right: 19px; }
  .slider__nav-link--next:after {
    content: "\f105"; }
  .slider__pages {
    position: absolute;
    max-width: 100%;
    width: 100%;
    bottom: 0;
    padding-top: 10px;
    z-index: 99;
    left: 0;
    padding: 10px 0 0 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    overflow: hidden; }
  .slider__pages-page {
    float: left;
    height: 4px;
    width: 19.658119658%;
    background: #72879c;
    margin-left: 0.284900285%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box; }
    .slider__pages-page:hover {
      opacity: 0.6; }
  .slider__pages:hover .slider__pages-page {
    height: 8px; }
  .slider__pages-page--active {
    background: #e54e53; }

@media (min-width: 720px) {
  .slider__blocks {
    width: 30%;
    float: left; } }

.slider__block-main {
  position: relative;
  margin-top: 4%;
  margin-bottom: 4%;
  background: #000;
  overflow: hidden; }
  .slider__block-main img {
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s; }
  .slider__block-main:hover img {
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -moz-transform: scale(1.1) rotate(0.1deg);
    opacity: 0.9; }

@media (min-width: 720px) {
  .slider__block-main {
    margin-top: 0; } }

.slider__block-main-cat {
  display: inline-block;
  padding: 2px 7px;
  background-color: #e54e53;
  color: #fff;
  font-size: 0.8571rem;
  text-transform: uppercase;
  transition: background-color 200ms;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 17px;
  z-index: 1;
  padding: 5px 10px; }
  .slider__block-main-cat a {
    color: white; }
  .slider__block-main-cat:hover {
    background-color: #cb353a; }

.slider__block-main-link {
  display: block;
  margin: 0 auto; }

.slider__block-main-img {
  display: block;
  margin: 0 auto; }

.slider__block-main-caption {
  position: absolute;
  bottom: 0;
  padding: 14px;
  width: 100%;
  background: #19232d;
  background: rgba(25, 35, 45, 0.7);
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJo…iIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
  background: -moz-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(25, 35, 45, 0)), color-stop(100%, #19232d));
  background: -webkit-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  background: -o-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  background: -ms-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  background: linear-gradient(to bottom, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  text-shadow: 0px 1px 1px #000; }

.slider__block-main-title {
  color: #fff;
  line-height: 1.6em;
  display: block;
  font-family: "Segoe UI", "Open Sans", Arial, serif; }

.slider__block-main-subtitle {
  color: #fff;
  font-size: 0.7857rem;
  display: block;
  font-family: "Segoe UI", "Open Sans", Arial, serif; }

.slider__block-small {
  float: left;
  width: 48%;
  position: relative;
  background: #bbb;
  overflow: hidden; }
  .slider__block-small:last-child {
    margin-left: 4%; }
  .slider__block-small img {
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s; }
  .slider__block-small:hover img {
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -moz-transform: scale(1.1) rotate(0.1deg);
    opacity: 0.9; }

.slider__block-small-link {
  display: block;
  min-height: 160px; }

.slider__block-small-img {
  display: block;
  margin: 0 auto; }

.slider__block-small-caption {
  position: absolute;
  bottom: 0;
  padding: 14px;
  width: 100%;
  background: #19232d;
  background: rgba(25, 35, 45, 0.7);
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJo…iIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
  background: -moz-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(25, 35, 45, 0)), color-stop(100%, #19232d));
  background: -webkit-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  background: -o-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  background: -ms-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  background: linear-gradient(to bottom, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  text-shadow: 0px 1px 1px #000; }

.slider__block-qa-title {
  color: #fff;
  font-size: 28px;
  line-height: 1.6em;
  display: block;
  font-family: "Segoe UI", "Open Sans", Arial, serif; }

.slider__block-issue-title {
  color: #fff;
  font-size: 1.286rem;
  line-height: 1.6em;
  display: block;
  font-family: "Segoe UI", "Open Sans", Arial, serif; }

.slider__block-issue-subtitle {
  color: #fff;
  line-height: 1.6em;
  display: block; }

@media print {
  .print-hide {
    display: none; } }

.search-nothing h1 {
  font-weight: bold; }

.search-hidden {
  display: none; }

.search-enter {
  font-weight: bold;
  color: #aaa; }

.loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(0, 0, 0, 0.2);
  border-right: 1.1em solid rgba(0, 0, 0, 0.2);
  border-bottom: 1.1em solid rgba(0, 0, 0, 0.2);
  border-left: 1.1em solid #e54e53;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear; }

.loader,
.loader:after {
  border-radius: 50%;
  width: 8em;
  height: 8em; }

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.sp-mini {
  position: fixed;
  display: none;
  bottom: 0;
  right: 20px;
  background-color: #e54e53;
  transition: bottom 200ms;
  padding: 0 20px 18px;
  color: #fff;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.5); }
  .sp-mini__bar {
    background: #19232d;
    margin: 0 -20px 14px;
    text-align: right; }
  .sp-mini__close {
    text-decoration: none !important;
    color: #ccc;
    font-size: 17px;
    padding: 5px 8px; }
  .sp-mini input[type=email] {
    clear: both;
    display: block;
    width: 210px;
    background: #f9f9f9;
    border: 1px solid #d9d9d9;
    padding: 7px 14px;
    outline: 0;
    font-size: 13px;
    color: #000;
    max-width: 100%;
    padding: 5px 10px;
    border: none; }
    .sp-mini input[type=email]:focus {
      border-color: #bbb;
      color: #000; }
    .sp-mini input[type=email]::placeholder {
      color: #aaa; }
    .sp-mini input[type=email]:placeholder-shown {
      background: #fff; }
  .sp-mini input[type=submit] {
    /*border: 1px solid #d9d9d9;*/
    border: none;
    outline: 0;
    background: #19232d;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    padding: 7px 21px;
    max-width: 100%;
    display: block;
    width: 100%;
    margin-top: 14px;
    font-size: 13px;
    padding: 5px; }
    .sp-mini input[type=submit]:focus {
      color: #aaa;
      /*border-color: #bbb;*/ }
  .sp-mini.-hidden {
    bottom: -125px; }

.validation-summary-errors, .field-validation-error {
  color: #f00; }
  .validation-summary-errors a, .field-validation-error a {
    text-decoration: underline;
    color: #e54e53; }

span.twitter-typeahead .tt-menu,
span.twitter-typeahead .tt-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  /*border-radius: 4px;*/
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box; }

span.twitter-typeahead .tt-suggestion {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap; }

span.twitter-typeahead .tt-suggestion.tt-cursor,
span.twitter-typeahead .tt-suggestion:hover,
span.twitter-typeahead .tt-suggestion:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7; }

.input-group.input-group-lg span.twitter-typeahead .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333; }

.input-group.input-group-sm span.twitter-typeahead .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5; }

.input-group span.twitter-typeahead {
  display: block !important;
  height: 34px; }

.input-group span.twitter-typeahead .tt-menu,
.input-group span.twitter-typeahead .tt-dropdown-menu {
  top: 32px !important; }

/*.input-group span.twitter-typeahead:not(:first-child):not(:last-child) .form-control {
  border-radius: 0;
}*/
/*.input-group span.twitter-typeahead:first-child .form-control {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}*/
/*.input-group span.twitter-typeahead:last-child .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}*/
.input-group.input-group-sm span.twitter-typeahead {
  height: 30px; }

.input-group.input-group-sm span.twitter-typeahead .tt-menu,
.input-group.input-group-sm span.twitter-typeahead .tt-dropdown-menu {
  top: 30px !important; }

.input-group.input-group-lg span.twitter-typeahead {
  height: 46px; }

.input-group.input-group-lg span.twitter-typeahead .tt-menu,
.input-group.input-group-lg span.twitter-typeahead .tt-dropdown-menu {
  top: 46px !important; }

html {
  background-color: #e3e3e3; }

body {
  background-color: #fff; }

html, input {
  font: 15px/1.5 "Segoe UI", "Open Sans", Arial, serif; }

a {
  color: #19232d;
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }

img {
  height: auto; }

/*.dfp-ad-no-mobile {
    @media (max-width: ($full-menu-from - 1)) {
        display: none;
    }
    overflow: hidden;
}*/
mark {
  /*background: orange;*/
  /*color: black;*/
  color: inherit;
  font-weight: 600; }

.switch-light a {
  outline: none !important; }
