@charset "utf-8";

/* Reset the box-sizing */

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

/* Body reset */

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Sohne", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #FFFFFF;
  background-color: #000;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;

  --assets-check-svg: url(/hc/theming_assets/01HZP9X8D7TBCMRQR5P39GPP21);
  --assets-circle-svg: url(/hc/theming_assets/01HZP9X81YVBYNSD86SNW3E770);
}

body::after {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: #000;
  transition: all .3s ease;
  opacity: 1;
  visibility: visible;
}

body.loaded::after {
  opacity: 0;
  visibility: hidden;
}

main {
  flex: 1 1 10px;
}

#preview-bar-container {
  display: table;
}

/* Reset fonts for relevant elements */

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Links */

a {
  color: #0572FF;
  text-decoration: underline;
  transition: all .3s ease;
}

a:hover,
a:focus {
  color: #0572FF;
  text-decoration: none;
  outline: none;
}

figure {
  margin: 0;
}

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

hr {
  display: block;
  height: 1px;
  padding: 0;
  margin: 14px 0;
  border: 0;
  border-top: 1px solid rgba(195, 214, 237, 0.2);
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p,
ul,
ol {
  margin: 0 0 1.6em;
}

h1,
.h1 {
  font-family: "Sohne Breit", Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 32px;
}

@media only screen and (max-width: 567px) and (max-aspect-ratio: 13 / 9) {
  h1,
  .h1 {
    font-size: 20px;
  }
}

h2,
.h2 {
  font-size: 20px;
  line-height: 30px;
}

h3,
.h3 {
  font-size: 18px;
  line-height: 28px;
}

h4,
.h4 {
  font-size: 16px;
  line-height: 28px;
}

h5,
.h5 {
  font-size: 14px;
  line-height: 24px;
}

h6,
.h6 {
  font-size: 13px;
  line-height: 22px;
}

b,
strong {
  font-weight: bold;
}

small,
.small {
  font-size: 80%;
  font-weight: normal;
  line-height: 1;
}

/* Description Lists */
dl {
  margin-top: 0;
  margin-bottom: 28px;
}

dt,
dd {
  margin-bottom: 14px;
  line-height: 28px;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0; /* Undo browser default */
}

/* Abbreviations and acronyms */
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted rgba(195, 214, 237, 0.2);
}

/* Blockquotes */
blockquote {
  padding: 14px 28px;
  margin: 0 0 28px;
  font-family: "Sohne", Arial, Helvetica, sans-serif;
  font-style: italic;
  background-color: #161616;
  border-left: 5px solid #0572FF;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

/* Code */

code {
  padding: 20px !important;
  border-radius: 0 !important;
}

/*  Addresses */
address {
  margin-bottom: 28px;
  font-style: normal;
  line-height: 28px;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}

.clearfix:after {
  clear: both;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.is-hidden,
.hidden {
  display: none !important;
}

.powered-by-zendesk {
  display: none;
}

.visibility-hidden,
.recent-activity-accessibility-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}

/** HEADER **/
.header {
  display: block;
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  body::after {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    z-index: 8;
    transition: all .3s ease;
  }

  .header {
    z-index: 9;
    transition: background-color .3s ease;
  }

  .mobile-menu-is-open::after {
    opacity: .6;
    visibility: visible;
  }

  .mobile-menu-is-open .header {
    background-color: #161616;
  }
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  height: 120px;
}

@media (max-width: 767px) {
  .header__container {
    height: 93px;
  }
}

.header__left {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .header__left .header__switcher {
    display: none;
  }
}

.header__right {
  margin-top: 35px;
}

@media (min-width: 768px) {
  .header__mobile-menu {
    display: flex;
    align-items: center;
  }

  .header__mobile-icons,
  .header__to-back,
  .header__mobile-menu-list,
  .header__mobile-text,
  .header__mobile-menu-separator,
  .header__mobile-menu .header__switcher,
  .header__mobile-burger {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .header__mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #161616;
    border-top: 1px solid rgba(195, 214, 237, .2);
    padding: 18px 26px;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
  }

  .mobile-menu-is-open .header__mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header__mobile-burger {
    display: block;
    width: 18px;
    height: 12px;
    position: relative;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }

  .header__mobile-burger::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: calc(50% - 1px);
  }

  .header__mobile-menu-separator {
    margin: 18px -26px;
    border-top: 1px solid rgba(195, 214, 237, .2);
  }

  .header__mobile-menu .btn {
    width: 100%;
    margin-bottom: 18px;
  }

  .header__mobile-text {
    display: inline-block;
    font-family: 'Sohne Schmal', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 23px;
    line-height: 1;
  }

  a.header__user,
  a.header__link-icon {
    display: flex !important;
    align-items: center;
    text-decoration: none;
  }

  a.header__user .header__mobile-text,
  a.header__link-icon .header__mobile-text {
    margin-left: 13px;
    text-decoration: none;
    color: #fff;
  }

  .header__mobile-menu-list {
    display: block;
    margin: 0;
    padding: 0 0 12px;
  }

  .header__mobile-menu-list li {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header__mobile-menu-list li a {
    display: block;
    font-family: 'Sohne Schmal', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 23px;
    line-height: 1;
    margin-bottom: 14px;
    text-decoration: none;
    color: #fff;
  }

  .header__to-back,
  .header__to-back img {
    display: block;
  }

  .header__to-back {
    height: 18px;
    padding-top: 1px;
  }

  .header__left,
  .header__right {
    margin-top: 28px;
  }

  .header__mobile-icons {
    display: flex;
    align-items: center;
    font-size: 17px;
  }

  .header__mobile-icons a {
    color: #fff;
    text-decoration: none;
    margin-left: 17px;
    line-height: 1;
    cursor: pointer;
  }
}


.header__logo {
  display: block;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .header__logo {
    top: 12px;
  }
}

.header__logo img {
  display: block;
  width: auto;
  height: 100px;
}

@media (max-width: 767px) {
  .header__logo img {
    height: 68px;
  }
}

.header__switcher {
  display: flex;
  align-items: center;
  font-family: 'Sohne Schmal', Arial, Helvetica, sans-serif;
  text-decoration: none;
}

.header__switcher > * + * {
  margin-left: 10px;
}

.header__switcher .switcher {
  display: block;
  width: 41px;
  height: 21px;
  border-radius: 12px;
  background-color: rgba(195, 214, 237, .2);
  position: relative;
  transition: background-color .2s ease;
}

.header__switcher .switcher:hover {
  background-color: rgba(195, 214, 237, .3);
}

.header__switcher .switcher::before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #0572FF;
  position: absolute;
  top: 3px;
  left: 3px;
}

.header__switcher--left .switcher::before {
  right: auto;
  left: 3px;
}

.header__switcher--right .switcher::before {
  left: auto;
  right: 3px;
}

.header__switcher .text {
  font-size: 23px;
  color: #0572FF;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .2s ease;
}

@media (max-width: 767px) {
  .header__switcher .text {
    line-height: 23px;
  }
}

.header__switcher a.text {
  color: #C3D6ED;
  opacity: .5;
  transition: all .2s ease;
}

.header__switcher a.text:hover,
.header__switcher a.text:active {
  color: #0572FF;
  opacity: 1;
}

a.header__link-icon {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  transition: opacity .2s ease;
}

@media (min-width: 768px) {
  a.header__link-icon {
    margin-left: 10px;
  }
}

a.header__link-icon:hover,
a.header__link-icon:active {
  opacity: .7;
}

a.header__link-icon.header__user,
.header__user {
  display: block;
  margin-left: 15px;
}

@media (max-width: 767px) {
  a.header__link-icon.header__user,
  .user-dropdown {
    float: left;
    margin: 0 19px 0 0;
    width: calc(50% - 9px);
  }

  .user-dropdown .header__user {
    margin: 0;
  }
}

.header__link-icon > *,
.header__link-icon > *::before,
.header__user > *,
.header__user > *::before {
  display: block;
}

.header__user img {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid #fff;
}

/** BUTTONS **/
.btn,
[type=submit],
.subscribe-btn [role=button],
.comments__item-actions [type="button"],
.subscribe-min-btn button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 39px;
  line-height: 23px;
  padding: 6px 18px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid #0572FF;
  transition: all .2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

[type=submit],
.btn--filled {
  background-color: #0572FF;
  color: #fff;
  font-family: 'Sohne Schmal', Arial, Helvetica, sans-serif;
  font-size: 23px;
}

[type=submit]:hover,
[type=submit]:focus,
[type=submit]:active,
.subscribe-btn [role=button]:hover,
.subscribe-btn [role=button]:focus,
.subscribe-btn [role=button]:active,
.comments__item-actions [type="button"]:hover,
.comments__item-actions [type="button"]:focus,
.comments__item-actions [type="button"]:active,
.subscribe-min-btn button:hover,
.subscribe-min-btn button:focus,
.subscribe-min-btn button:active,
.btn--filled:hover,
.btn--filled:focus,
.btn--filled:active,
.btn--bordered.is-active:hover,
.btn--bordered.is-active:focus,
.btn--bordered.is-active:active {
  background-color: #1f80ff;
  color: #FFFFFF;
  opacity: 1;
}

.btn--arrow {
  padding-right: 15px;
}

.btn--arrow::after {
  content: "\e901";
  font-family: 'symbols_askclub' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 9px;
  margin-left: 12px;
  margin-top: 1px;
}

.subscribe-btn [role=button],
.subscribe-min-btn button,
.comments__item-actions [type="button"],
.btn--bordered {
  font-size: 13px;
  background-color: transparent;
  color: #0572FF;
}

.subscribe-min-btn button:hover,
.subscribe-min-btn button:focus,
.subscribe-min-btn button:active,
.subscribe-btn [role=button]:hover,
.subscribe-btn [role=button]:focus,
.subscribe-btn [role=button]:active,
.comments__item-actions [type="button"]:hover,
.comments__item-actions [type="button"]:focus,
.comments__item-actions [type="button"]:active,
.btn--bordered:hover,
.btn--bordered:focus,
.btn--bordered:active {
  opacity: .7;
}

.btn--bordered.is-active {
  background-color: #0572FF;
  color: #fff;
}

.btn-group {
  margin-bottom: 40px;
}

/** HERO **/
.hero {
  width: 100%;
  margin-top: -120px;
  padding-top: 157px;
  padding-bottom: 42px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-bottom: 30px;
}

.hero--big {
  padding-top: 180px;
  padding-bottom: 180px;
  margin-bottom: -72px;
}

@media (max-width: 767px) {
  .hero:not(.hero--big) {
    height: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 10px;
    transition: all .3s ease;
  }

  .hero:not(.hero--big)::before {
    display: none;
  }

  .hero.is-active:not(.hero--big) {
    height: 50px;
  }

  //.hero:not(.hero--big) + * {
  //  margin-top: 10px;
  //}
}

@media only screen and (max-width: 567px) and (max-aspect-ratio: 13 / 9) {
  .hero--big {
    padding-top: 98px;
    padding-bottom: 110px;
    margin-top: -93px;
    margin-bottom: -81px;
  }
}

.hero--big + * {
  position: relative;
  z-index: 3;
}

.hero::before {
  content: '';
  display: block;
  width: 100%;
  max-width: 1440px;
  height: 44vw;
  max-height: 638px;
  position: absolute;
  top: 0;
  left: 50%;
  transition: opacity .7s ease;
  transform: translate(-50%, -46.5%);
  background: url(/hc/theming_assets/01HZP9X7NZHS4WWGRWNKMBQARQ) no-repeat bottom center;
  background-size: cover;
  z-index: -1;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx) {
  .hero::before {
    background-image: url(/hc/theming_assets/01HZP9X60E6XP0T448F54AXG13);
  }
}

@media only screen and (max-width: 567px) and (max-aspect-ratio: 13 / 9) {
  .hero::before {
    background-image: url(/hc/theming_assets/01HZP9X2SKHWYYMCNSEP95Z556);
  }
}

.hero.search-focus-in::before {
  opacity: .3;
}

@media (max-width: 1100px) {
  .hero::before {
    height: 100%;
    transform: translate(-50%, 0);
  }
}

.hero--big::before {
  height: 100%;
  transform: translate(-50%, 0);
}

.hero__container {
  max-width: 870px;
  margin: 0 auto;
}

.hero__title {
  font-family: "Sohne Breit", Arial, Helvetica, sans-serif;
  text-align: center;
  font-size: 34px;
  line-height: 56px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 567px) and (max-aspect-ratio: 13 / 9) {
  .hero__title {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 6px;
  }
}

/** FORMS **/
/*
Normalize non-controls

Restyle and baseline non-control form elements.
*/

fieldset {
  /*
  Chrome and Firefox set a `min-width: min-content;` on fieldsets,
  so we reset that to ensure it behaves more like a standard block element
  See https:github.com/twbs/bootstrap/issues/12359.
  */
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: inherit;
  color: #C3D6ED;
  border: 0;
  opacity: .5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 14px;
  font-weight: 500;
}

/*
 Normalize form controls

 While most of our form styles require extra classes, some basic normalization
 is required to ensure optimum display with or without those classes to better
 address browser inconsistencies.
*/

/*  Override content-box in Normalize (* isn't specific enough) */
input[type="search"] {
  box-sizing: border-box;
}

/*  Position radios and checkboxes better */
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9
;
  line-height: normal;
}

/*  Set the height of file controls to match text inputs */
input[type="file"] {
  display: block;
}

/*  Make range inputs behave like textual form controls */
input[type="range"] {
  display: block;
  width: 100%;
}

/*  Make multiple select elements height not fixed */
select[multiple],
select[size] {
  height: auto;
}

/*  Focus for file, radio, and checkbox */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/*  Adjust output element */
output {
  display: block;
  padding-top: 7px;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
}

/*
 Common form controls

 Shared size and type resets for form controls. Apply `.form-control` to any
 of the following form controls:

*/
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.nesty-input,
.hc-multiselect-toggle {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 10px 17px;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  background-color: #161616;
  background-image: none;
  border: 1px solid #161616;
  border-radius: 0;
  transition: all .2s ease;
}

/*  Customize the `:focus` state to imitate native WebKit styles. */
select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.nesty-input:focus,
.hc-multiselect-toggle:focus {
  outline: 0;
  background-color: #000;
  border-color: #0572FF;
}

select:focus::placeholder,
textarea:focus::placeholder,
input[type="text"]:focus::placeholder,
input[type="password"]:focus::placeholder,
input[type="datetime"]:focus::placeholder,
input[type="datetime-local"]:focus::placeholder,
input[type="date"]:focus::placeholder,
input[type="month"]:focus::placeholder,
input[type="time"]:focus::placeholder,
input[type="week"]:focus::placeholder,
input[type="number"]:focus::placeholder,
input[type="email"]:focus::placeholder,
input[type="url"]:focus::placeholder,
input[type="search"]:focus::placeholder,
input[type="tel"]:focus::placeholder,
input[type="color"]:focus::placeholder,
.nesty-input:focus::placeholder {
  color: #161616;
  opacity: 0.6;
}

select {
  height: 50px;
}

/*  Reset height for `textarea`s */
textarea {
  height: 150px;
  resize: vertical;
}

/*  Search inputs in iOS */
/*
 This overrides the extra rounded corners on search inputs in iOS so that our
 `.form-control` class can properly style them. Note that this cannot simply
 be added to `.form-control` as it's not specific enough. For details, see
 https:github.com/twbs/bootstrap/issues/11586. */

input[type="search"] {
  -webkit-appearance: none;
}

/*  Special styles for iOS temporal inputs

 In Mobile Safari, setting `display: block` on temporal inputs causes the
 text within the input to become vertically misaligned. As a workaround, we
 set a pixel line-height that matches the given height of the input, but only
 for Safari. */

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"] {
    line-height: 28px;
  }
}

/*  Form groups

 Designed to help with the organization and spacing of vertical forms. For
 horizontal forms, use the predefined grid classes. */

.form-field {
  margin-bottom: 28px;
}

.form-field.required > label:after {
  margin-left: 2px;
  color: #0572FF;
  content: "*";
}

.form-field.boolean {
  position: relative;
  padding-left: 30px;
}

.form-field.boolean input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
}

.form-field.boolean label {
  min-height: 28px;
  /* Ensure the input doesn't jump when there is no text */
  margin-bottom: 0;
  cursor: pointer;
}

input[type="radio"][disabled],
input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}

/*  Help text

 Apply to any element you wish to create light text for placement immediately
 below a form control. Use for general help, formatting, or instructional text. */

.form-field p,
.help-block {
  display: block; /* account for any element using help-block */
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 90%;
  color: #C3D6ED;
  opacity: .5;
}

.nesty-input,
.nesty-input:hover,
.nesty-input:focus,
.nesty-input:active {
  color: #fff;
  text-decoration: none;
}

.hc-multiselect-toggle li {
  background-color: #0572FF;
}

.hc-multiselect-toggle li span[aria-label]::before {
  color: #fff;
}


#request-attachments-pool .upload-item {
  padding: 4px 32px 4px 12px;
  margin-top: 5px;
  border-radius: 0;
  background-color: #161616;
  overflow: hidden;
}

#request-attachments-pool .upload-item p {
  margin: 0;
}

#request-attachments-pool .upload-item .upload-remove {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

#request-attachments-pool .upload-item .upload-progress {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #0572FF;
  opacity: .1;
}

#upload-error {
  margin-top: 0;
}

#upload-error span {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: #0572FF;
}

input[type="checkbox"],
input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  background: #161616 no-repeat center;
  border: 1px solid #161616;
  margin-right: 6px;
}

input[type="checkbox"]:hover {
  border-color: #0572FF;
}

input[type="checkbox"]:active,
input[type="checkbox"].is-active {
  border-color: #61a6ff;
}

input[type="checkbox"]:checked {
  background-color: #0572FF;
  border-color: #0572FF;
}

input[type="checkbox"]:checked:hover {
  border-color: #61a6ff;
}

input[type="checkbox"]:checked:active,
input[type="checkbox"]:checked.is-active {
  border-color: #61a6ff;
}

input[type="checkbox"]:disabled,
input[type="checkbox"]:disabled:hover,
input[type="checkbox"]:disabled:active {
  border-color: #161616;
  background-color: #161616;
}

input[type="checkbox"]:disabled:checked {
  border-color: #161616;
  background-color: #161616;
}

input[type="checkbox"] {
  border-radius: 0;
}

input[type="checkbox"]:checked {
  background-image: var(--assets-check-svg);
}

input[type="radio"] {
  border-radius: 50%;
}

input[type="radio"]:checked {
  background-image: var(--assets-circle-svg);
}

/** SEARCH **/
.search {
  display: flex;
}

.search [type=submit] {
  font-size: 13px;
  font-family: "Sohne", Arial, Helvetica, sans-serif;
  letter-spacing: unset;
  font-weight: bold;
  height: 50px;
}

.search input[type=submit] {
  display: none;
}

.search [type=submit]::before {
  font-family: 'symbols_askclub' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90e";
  margin-right: 3px;
  margin-top: 1px;
  font-size: 12px;
}

@media only screen and (max-width: 567px) and (max-aspect-ratio: 13 / 9) {
  .search [type=submit] span {
    display: none;
  }
  .search [type=submit] {
    width: 50px;
    position: relative;
  }

  .search [type=submit]::before {
    position: absolute;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
  }
}

.search [type=submit]:focus {
  outline: none !important;
}

.search [type="search"] {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}

.search [type="search"]:focus {
  background-color: #fff;
  border-color: #fff;
}

/** CATEGORY LIST **/
.category-list .row {
  margin-top: -9px;
  margin-bottom: -9px;
}

.category-list .col {
  padding-top: 9px;
  padding-bottom: 9px;
}

/** CATEGORY BOX **/
.category-box {
  display: block;
  padding: 16px 20px 14px;
  background: linear-gradient(121.4deg, #0572FF 40.1%, #003982 100%);
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all .3s cubic-bezier(.17, .67, .54, 1);
}

.category-box__content {
  display: block;
  min-height: 92px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.category-box__title {
  font-size: 16px;
  line-height: 1.2em;
  margin: 0;
}

.category-box__description {
  font-size: 14px;
  line-height: 16px;
  color: #C3D6ED;
  margin: 6px 0 0;
}

.category-box__bg {
  display: block;
  position: absolute;
  z-index: 1;
  font-size: 276px;
  opacity: .1;
  right: -10px;
  top: 66%;
  transform: translateY(-50%);
  transition: all .5s cubic-bezier(.17, .67, .54, 1);
}

.category-box__arrow {
  display: block;
  position: absolute;
  bottom: 22px;
  left: 21px;
  font-size: 9px;
  z-index: 2;
  line-height: 1;
}

.category-box__arrow span {
  font-size: 13px;
  font-weight: 500;
}

.category-box:hover,
.category-box:focus,
.category-box:active {
  color: #fff;
  /*transform: scale(1.05, 1.05);*/
}


.category-box:hover .category-box__bg,
.category-box:focus .category-box__bg,
.category-box:active .category-box__bg {
  right: 30%;
}

.category-box__icon {
  display: block;
  position: absolute;
  bottom: 26px;
  right: 30px;
  transform: translate(50%, 50%);
  font-size: 26px;
}

.category-box__icon.icon-club-id {
  font-size: 34px;
}

.category-box__icon.icon-ticketing {
  font-size: 32px;
}

.category-box__icon.icon-club-kids {
  font-size: 30px;
}

/** POPULAR ARTICLES **/
.popular-articles {
  margin-top: 80px;
}

.popular-articles__title {
  color: #0572FF;
  margin: 0 0 20px;
}

@media only screen and (max-width: 567px) and (max-aspect-ratio: 13 / 9) {
  .popular-articles {
    margin-top: 42px;
  }

  .popular-articles__title {
    margin-bottom: 12px;
  }
}

@media (min-width: 768px) {
  .row.article-list {
    display: block;
    columns: 3;
  }

  .row.article-list > .col {
    display: contents;
  }
}

.list-item-container + .list-item-container {
  margin-top: 18px;
}

.list-item {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  margin: 3px 0 8px;
  padding-left: 12px;
  line-height: 1.5;
  transition: opacity .2s ease;
}

.list-item--limit-2:nth-child(n+3) {
  display: none;
}

.list-item--limit-3:nth-child(n+4) {
  display: none;
}

.list-item--limit-4:nth-child(n+5) {
  display: none;
}

.list-item--limit-5:nth-child(n+6) {
  display: none;
}

.list-item--limit-6:nth-child(n+7) {
  display: none;
}

.list-item::before {
  font-size: 8px;
  color: #0572FF;
  display: block;
  position: absolute;
  left: 0;
  top: 1.1em;
  transition: all .2s ease;
}

.list-item span {
  display: inline;
  color: #fff;
  border-bottom: 1px solid #0572FF;
  transition: border-color .2s ease;
}

a.list-item:hover,
a.list-item:focus,
a.list-item:active {
  opacity: .6;
}

a.list-item:hover::before,
a.list-item:focus::before,
a.list-item:active::before {
  color: #fff;
  transform: translateX(-3px);
}

a.list-item:hover span,
a.list-item:focus span,
a.list-item:active span {
  border-color: #fff;
}

.list-item--block,
.list-item.is-active {
  position: relative;
  z-index: 2;
  padding-top: 3px;
  padding-bottom: 3px;
}

.list-item--block span,
.list-item.is-active span {
  border: none;
}

.list-item--block::before,
.list-item.is-active::before {
  color: #fff;
  top: 1.5em;
}

.list-item.is-active::after {
  content: '';
  display: block;
  width: calc(100% + 24px);
  height: 100%;
  position: absolute;
  top: 0;
  left: -12px;
  z-index: -1;
  background-color: #0572FF;
}

.list-item--block {
  background-color: #161616;
  padding-right: 20px;
  padding-left: 20px;
  margin-bottom: 5px;
  transition: background-color .2s ease;
}

.list-item--block span {
  color: #fff;
  transition: color .2s ease;
}

.list-item--block::before {
  left: 7px;
}

a.list-item--block:hover,
a.list-item--block:focus,
a.list-item--block:active {
  background-color: #0572FF;
  opacity: 1;
}

/** FOOTER **/
.footer {
  margin-top: 80px;
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: #161616;
}

@media only screen and (max-width: 567px) and (max-aspect-ratio: 13 / 9) {
  .footer {
    margin-top: 60px;
  }
}

@media (min-width: 768px) {
  .footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__menu {
  display: flex;
  flex: 1 10px;
  margin: 0;
  padding: 0;
}

.footer__menu ~ .footer__menu {
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .footer__menu,
  .footer__menu ~ .footer__menu {
    justify-content: center;
  }
}

.footer__menu li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__menu li span,
.footer__menu li a {
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #C4C4C4;
}

.footer__menu li + li {
  margin-left: 27px;
}

@media (max-width: 767px) {
  .footer__menu ~ .footer__menu li + li {
    margin-left: 15px;
  }
}

.footer__menu li a {
  text-decoration: none;
  transition: color .2s ease;
}

.footer__menu li a:hover,
.footer__menu li a:focus,
.footer__menu li a:active {
  color: #fff;
}

.footer__menu--external li a::after {
  font-family: 'symbols_askclub' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: 10px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 7px;
  content: "\e90c";
}

.footer__cos {
  display: flex;
  margin: 0;
  padding: 0 10px;
}

@media (max-width: 767px) {
  .footer__cos {
    justify-content: center;
    margin: 27px 0 20px;
  }
}

.footer__cos li {
  display: block;
  margin: 0;
  padding: 0 4px 0 3px;
}

.footer__cos li a {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-decoration: none;
  background-color: #0572FF;
  color: #fff;
  font-size: 16px;
  text-align: center;
  transition: background-color .2s ease;
}

.footer__cos li a:hover,
.footer__cos li a:focus,
.footer__cos li a:active {
  background-color: #0049a8;
}

/** BREADCRUMBS **/
.breadcrumbs {
  display: block;
  margin: 30px 0;
  padding: 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .breadcrumbs {
    display: none;
  }
}

.breadcrumbs li {
  display: block;
  margin: 0 10px 0 0;
  padding: 0;
  list-style: none;
  float: left;
  font-size: 14px;
  line-height: 24px;
  color: #616b76;
}

.breadcrumbs li + li::before {
  content: '>';
  display: inline;
  margin-right: 6px;
}

/** CATEGORY **/
@media only screen and (min-width: 980px) {
  .col.category__categories-col {
    width: 340px;
  }

  .col.category__sections-col {
    flex: 1 1 10px;
    width: auto;
  }

  [dir=ltr] .col.category__sections-col {
    padding-left: 52px;
  }

  [dir=rtl] .col.category__sections-col {
    padding-right: 52px;
  }
}

.category-list {
  display: block;
  margin: 0;
  padding: 0;
}

.category-list li {
  display: block;
  margin: 0 0 5px;
  padding: 0;
  list-style: none;
}

.category-list li a {
  display: block;
  padding: 8px 20px 9px;
  background-color: #161616;
  color: rgba(195, 214, 237, 0.5);
  text-decoration: none;
  transition: color .2s ease;
}

.category-list li a:hover,
.category-list li a:focus,
.category-list li a:active {
  color: #fff;
}

.category-list li.is-active a {
  background-color: #0572FF;
  color: #fff;
  font-weight: 500;
}

.category-list-loading {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
          to bottom,
          #161616 0%, #161616 45px, transparent 45px, transparent 50px,
          #161616 50px, #161616 95px, transparent 95px, transparent 100px,
          #161616 100px, #161616 145px, transparent 145px, transparent 150px,
          #161616 150px, #161616 195px, transparent 195px, transparent 200px,
          #161616 200px, #161616 245px, transparent 245px, transparent 250px,
          #161616 250px, #161616 295px, transparent 295px, transparent 300px
  );
}

.category-list-loading::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .5) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: load 1s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}

@keyframes load {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

.category__sections-more {
  display: inline-block;
  margin-top: 12px;
}

.section__title {
  margin-bottom: 26px;
}

/** PAGINATION **/
.pagination {
  display: block;
  margin-top: 40px;
}

.pagination-list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.pagination-list li {
  display: block;
  margin: 0 4px;
  padding: 0;
  list-style: none;
}

.pagination-first-text,
.pagination-last-text,
.pagination-prev-text,
.pagination-next-text {
  display: none;
}

.pagination-list li a {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 1.2;
  background-color: #161616;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  font-size: 20px;
  transition: all .2s ease;
}

.pagination-list li a:hover,
.pagination-list li a:focus,
.pagination-list li a:active {
  background-color: #0572FF;
  color: #fff;
}

/** ARTICLE **/
@media only screen and (min-width: 980px) {
  .col.article__sidebar-col {
    width: 340px;
  }

  .col.article__body-col {
    flex: 1 1 10px;
    width: calc(100% - 400px);
  }

  [dir=ltr] .col.article__body-col {
    padding-right: 60px;
  }

  [dir=rtl] .col.article__body-col {
    padding-left: 60px;
  }
}

@media only screen and (min-width: 1280px) {
  [dir=ltr] .col.article__body-col {
    padding-right: 182px;
  }

  [dir=rtl] .col.article__body-col {
    padding-left: 182px;
  }
}

.article__title {
  margin-bottom: 11px;
}

.meta {
  font-size: 14px;
  line-height: 24px;
  color: #C3D6ED;
  opacity: 0.5;
}

.article__body {
  padding: 19px 0 25px;
}

.article__body .article-actions-wrapper {
  display: none;
}

/** VOTE **/
.vote {
  border-top: 1px solid rgba(196, 215, 237, .2);
  padding-top: 22px;
  margin-bottom: 40px;
  text-align: center;
}

@media only screen and (max-width: 979px) {
  .vote {
    margin-bottom: 22px;
  }
}

.vote__heading {
  font-size: 16px;
  line-height: 28px;
  margin: 0 0 5px;
  font-weight: 500;
}

.vote__controls {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.vote__controls .btn {
  display: block;
  width: 90px;
}

.vote__controls .btn + .btn {
  margin-left: 8px;
}

/** SIDEBAR **/
@media only screen and (min-width: 980px) {
  .sidebar-box + .sidebar-box {
    margin-top: 44px;
  }
}

@media only screen and (max-width: 979px) {
  .sidebar-box {
    border-top: 1px solid rgba(196, 215, 237, .2);
    padding-top: 22px;
  }
}

.sidebar-box__title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}

@media only screen and (max-width: 979px) {
  .sidebar-box__title {
    font-size: 20px;
    line-height: 32px;
    color: #0572FF;
    font-family: "Sohne Breit", Arial, Helvetica, sans-serif;
  }
}

.sidebar-box__list {
  padding-left: 12px;
}

/** TABLE **/
@media only screen and (min-width: 980px) {
  .table {
    display: table;
    width: 100%;
  }

  .table__head {
    display: table-header-group;
    font-weight: 500;
  }

  .table__col {
    border-bottom: 1px solid rgba(195, 214, 237, .2);
  }

  .table__body {
    display: table-row-group;
  }

  .table__row {
    display: table-row;
  }

  .table__row :nth-child(even) {
    background-color: #161616;
  }

  .table__col {
    display: table-cell;
    padding: 16px;
  }
}

@media only screen and (max-width: 979px) {
  .table {
    margin-right: -9px;
    margin-left: -9px;
  }

  .table__head {
    display: none;
  }

  .table__row {
    padding: 16px 9px;
  }

  .table__row:nth-child(even) {
    background-color: #161616;
  }

  .table__col {
    display: flex;
  }

  .table__col:before {
    content: attr(data-title);
    display: block;
    width: 33.333%;
    margin-right: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #616b76;
  }

  .table--my-activities .table__col:before {
    max-width: 160px;
  }

  .table--my-activities .table__col > * {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

}

/** OTHER **/
.my-activities__filter {
  margin-top: 24px;
  margin-bottom: 16px;
}

.my-activities__search {
  flex: 1 0 50%;
}

label {
  display: block;
  margin-bottom: 8px;
}

@media (min-width: 1240px) {
  .my-activities__filter {
    margin-top: 32px;
    margin-bottom: 24px;
  }
}


@media (min-width: 768px) {
  .my-activities__filter {
    display: flex;
    align-items: flex-end;
  }

  .my-activities__filter > * + * {
    margin-left: 8px;
  }
}

.comments__heading {
  margin-top: 48px;
  margin-bottom: 24px;
}

.comments__title {
  margin-bottom: 0;
}

@media (min-width: 980px) {
  .comments__title {
    margin-bottom: 8px;
  }
}

.comments__subtitle {
  margin: 0;
}

.comments__subtitle ~ .comment-form {
  margin-top: 24px;
}

@media (min-width: 1024px) {
  .comments__subtitle ~ .comment-form {
    margin-top: 32px;
  }
}

.comments__sorted {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

@media (max-width: 560px) {
  .comments__sorted.col--sm-up-6 {
    display: block;
    margin-top: 8px;
  }
}

.comments__list {
  display: block;
  margin: 48px 0 0;
  padding: 0;
}

.comments__item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.comments__item + .comments__item {
  margin-top: 32px;
}

.comments__item-avatar {
  display: none;
}

@media (min-width: 768px) {
  .comments__item-avatar {
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .comments__item-avatar ~ .comment-form__body {
    padding-left: 64px;
  }
}

.comments__item-avatar img {
  border-radius: 50%;
}

@media (min-width: 768px) {
  .comments__item-container {
    padding-left: 64px;
  }
}

.comments__item-body {
  background-color: #161616;
  border-radius: 0;
  padding: 16px 24px;
  overflow-x: hidden;
}

.comments__item-body .attachments {
  margin-top: 12px;
}

.comments__item-body p:last-child {
  margin-bottom: 0;
}

.comments__item-body .attachments__item {
  background-color: #000;
}

.comments__item-body .post-status {
  margin-left: -12px;
  margin-top: -16px;
}

.comments__item-body .post-status ~ p {
  margin-top: 8px;
}

.comments__item-body-with-ticket {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.comments__item-meta {
  padding: 8px 16px;
  font-size: 14px;
  color: #5c6570;
}

@media (min-width: 768px) {
  .comments__item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.comments__item-meta a {
  font-weight: 500;
}

.comments__item-actions-container {
  display: flex;
  align-items: center;
}

.comments__item-actions-container > * + * {
  margin-left: 16px;
}

@media (max-width: 560px) {
  .comments__item-actions-container {
    margin-top: 14px;
  }
}

.comments__item-vote {
  display: flex;
  align-items: center;
}

.comments__item-vote > * + * {
  margin-left: 8px;
}

.comments__item-share {
  margin-top: 16px;
}

.comments__item-share .share {
  justify-content: center;
}

@media (min-width: 980px) {
  .comments__item-share .share {
    justify-content: center;
  }
}

.attachments__item {
  display: flex;
  align-items: center;
  padding: 12px;
  margin-top: 16px;
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  background-color: #161616;
}

.attachments__item + .attachments__item {
  margin-top: 5px;
}

.attachments__item i {
  margin-right: 8px;
  color: #fff;
  opacity: .25;
}

.attachments__item-name {
  flex: 1 1 10px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .2s ease;
}

.attachments__item:hover .attachments__item-name,
.attachments__item:focus .attachments__item-name,
.attachments__item:active .attachments__item-name {
  color: #0572FF;
}

.attachments__item-size {
  margin-left: 8px;
  font-size: 14px;
}

.attachments--min i {
  font-size: .75em;
}

.attachments--min .attachments__item {
  padding: 8px;
}

.attachments--min .attachments__item-name {
  font-size: 14px;
}

/****/
.comment-form {
  position: relative;
}

.comment-form__body {
  position: relative;
}

.comment-form__body textarea {
  height: 46px;
}

@media (min-width: 980px) {
  .comment-form__body textarea {
    height: 112px;
  }
}

.comment-form__body #hc-wysiwyg {
  padding-right: 46px;
}

.comment-form__avatar {
  display: none;
}

@media (min-width: 768px) {
  .comment-form__avatar {
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .comment-form__avatar ~ .comment-form__body {
    padding-left: 64px;
  }
}

.comment-form__submit[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 100%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  border-color: #000;
  font-size: 21px;
  border-radius: 0;
}

@media (min-width: 768px) {
  .comment-form__control {
    display: flex;
    justify-content: space-between;
  }
}

#hc-wysiwyg [role=menu] > [role=button] {
  color: #000;
}

#hc-wysiwyg [role="form"] {
  background-color: #161616;
  border: 0;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
}

#hc-wysiwyg [role="form"] * {
  margin-left: 8px;
}

#hc-wysiwyg [role="form"] input[type=text] {
  min-height: 28px;
  border-radius: 0;
}

/*
#hc-wysiwyg [role="form"] [role="button"] {
  @extend .btn;
  @extend .btn--sm;
  @extend .btn--color-primary;
}
*/

#hc-wysiwyg [role="form"] [role="button"] + #hc-wysiwyg [role="form"] [role="button"] {
  margin-left: 4px;
}

.search-results .breadcrumbs {
  margin: 0;
}

.search-results__item {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(195, 214, 237, .2);
}

.search-results__link {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 8px;
  text-decoration: none;
}

.error-page {
  margin-top: 40px;
  text-align: center;
}

.error-page p {
  margin: 0.5em 0;
}

.error-page__title {
  font-size: 76px;
  line-height: 1.2;
  color: #616b76;
  margin: 0 0 40px;
}

/****/

.page-heading__user {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  align-items: center;
}

.page-heading__user-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: 12px;
  overflow: hidden;
}

.page-heading__title {
  margin: 0;
}

.page-heading__description {
  color: #fff;
}

.subscribe-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

dl.details {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  margin-bottom: 32px;
}

dl.details > dt {
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 12px;
}

dl.details > dd {
  margin-bottom: 12px;
}

dl.details > div {
  grid-column: 1 / 3;
  margin-bottom: 12px;
}

dl.details--type-2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 0;
}

dl.details--type-2 > dd {
  color: #5c6570;
}

@media (min-width: 1200px) {
  dl.details--type-2 > dd {
    text-align: right;
  }
}

@media (max-width: 560px) {
  dl.details--type-2 > dd {
    text-align: right;
  }
}

.request-status {
  display: inline-block;
  vertical-align: middle;
  padding: 0 12px;
  font-size: 14px;
  font-weight: normal;
  color: #5c6570;
  background-color: #161616;
}

.request-status--solved,
.request-status--closed {
  color: #fff;
  background-color: rgba(139, 195, 74, .36);
}

.request-status--new,
.request-status--open {
  color: #fff;
  background-color: rgba(244, 67, 54, .45);
}

.request-status--answered {
  color: #fff;
  background-color: rgba(255, 235, 59, .50);
}

#powered_by_premium_plus {
  font-size: 13px;
  color: #aaa;
  margin-top: 1rem;
}

#powered_by_premium_plus a {
  color: #aaa;
}

@media only screen and (min-width: 980px) {
  .article .row {
    flex-wrap: nowrap;
  }
}

.attachments {
  display: block;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.attachments li {
  display: block;
  padding: 0;
  margin: 0;
}

.attachments li + li {
  margin-top: 4px;
}

.attachments li a {
  display: block;
  color: #fff;
  text-decoration: none;
  background-color: #161616;
  color: rgba(195, 214, 237, 0.5);
  transition: color .2s ease;
  padding: 4px 12px;
}

.attachments li a:hover {
  color: #fff;
}

.attachments li a i {
  margin-right: 4px;
}


/* P+SC hide form selector */
.form-field.request_ticket_form_id {
  display: none;
}

.form-notice {
  font-size: 90%;
  line-height: 1.5;
  color: rgb(195 214 237 / 50%);
  margin-top: 28px;
}