@charset "UTF-8";
@-ms-viewport {
  width: device-width; }

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar; }

*, *::before, *::after {
  box-sizing: inherit; }

button,
input,
optgroup,
select,
textarea {
  line-height: 1.15;
  /* 1 */ }

/* Libs - nemenne knihovny */
/*@import "./lib/normalize";
@import "./lib/slick";
@import "./lib/jquery.fancybox";
@import "./lib/spinner";
@import "./lib/simptip";*/
/* Základní proměnné a mixiny = Nuclides */
/* fonts */
/*$font-size-md:*/
/*$font-size-h1:*/
/*
$spacing-sm: 30px;
$spacing-md: 45px;
$spacing-lg: 90px;
*/
/* SUSY layout */
body:before {
  display: none; }

body.mqdebug:before {
  display: block;
  right: auto !important;
  top: auto !important;
  left: 0;
  bottom: 0; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

/**
 * Vynuluje vnější i vnitřní okraje elementu, zruší orámování a styl seznamu/odrážek
 *
 * @mixin
 */
/**
 * Skryje textový obsah elementu. Používá se např. při náhradě textu obrázkovým pozadím.
 * Pozor - při transition:all animaci vlastností shazovalo mobilní Safari!
 *
 * @mixin
 */
/**
 * Micro-clearfix dle http://nicolasgallagher.com/micro-clearfix-hack/
 *
 * @mixin
 */
/**
 * Mixin pro vložení ikony z vygenerované svg sprite mapy
 *
 * @mixin Sprite
 * @param $icon Název svg souboru s ikonou
 * @param $type Pokud má hodnotu responsive, jsou souřadnice a velikost pozadí generovány v procentech
 * @example
 *  @include sprite(more);
 *  @include sprite(more,bg);
 *  @include sprite(more,responsive);
 */
/**
 * Vloží media query a příslušná pravidla se budou aplikovat pouze pro odpovídající šířku displeje.
 * Breakpointy jsou definovány v souboru variables s proměnnými
 * Použitelné breakpointy:
 *  sm,
 *  md,
 *  lg,
 *  xl
 *
 * @mixin Breakpoint Media-Query
 * @param $from Počáteční breakpoint "od"
 * @param $until Koncový breakpoint "do"
 * @param $and Volitelné další parametry media query
 * @example
 *  @include mq($from: md);
 *  @include mq($until: lg);
 *  @include mq($from: md, $until: lg);
 */
body:before {
  background-color: #FCF8E3;
  border-bottom: 1px solid #FBEED5;
  border-left: 1px solid #FBEED5;
  color: #C09853;
  font: small-caption;
  padding: 3px 6px;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100; }
  @media (min-width: 36em) {
    body:before {
      content: "sm ≥ 576px (36em)"; } }
  @media (min-width: 48em) {
    body:before {
      content: "md ≥ 768px (48em)"; } }
  @media (min-width: 62em) {
    body:before {
      content: "lg ≥ 992px (62em)"; } }
  @media (min-width: 75em) {
    body:before {
      content: "xl ≥ 1200px (75em)"; } }

/*@import "./nuclids/bootstrap/breakpoints";
@import "./nuclids/bootstrap/breakpoints-custom";
@import "./nuclids/bootstrap/grid-framework";
@import "./nuclids/bootstrap/grid";
@import "./nuclids/bootstrap/flex";
@import "./nuclids/bootstrap/visibility";
@import "./nuclids/bootstrap/spacing";
@import "./nuclids/bootstrap/display";
@import "./nuclids/bootstrap/text";
@import "./nuclids/grid";*/
/* Základní obsahové prvky = Atoms */
/*@import "./atoms/font";
@import "./atoms/base-bootstrap";
@import "./atoms/base";
@import "./atoms/buttons";
@import "./atoms/tables";
@import "./atoms/forms";*/
/* UI komponenty = Molecules */
.head {
  position: relative;
  z-index: 200;
  background: #fff; }

.head__in {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 15px 0 0 0; }
  .head__in:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 48em) {
    .head__in {
      padding-top: 20px; } }

.head__logo {
  float: left;
  display: block;
  width: 194px;
  margin: 1px 0 22px 15px; }
  .head__logo img {
    display: block; }

.head__panel {
  width: 0;
  max-width: 320px;
  position: fixed;
  overflow: hidden;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 106;
  transition: all .4s;
  background: #fff;
  box-shadow: -3px -2px 4px rgba(0, 0, 0, 0.1); }
  .head__panel--expanded .head__panel {
    width: 90%; }
  @media (min-width: 48em) {
    .head__panel {
      width: auto !important;
      position: static;
      overflow: visible;
      max-width: none;
      background: #fff;
      box-shadow: none; }
      .head__panel .sticky-wrapper {
        clear: both; } }

.head__overlay {
  background: #e6e6e6;
  position: fixed;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 105;
  opacity: 0;
  transition: opacity .4s; }
  @media (min-width: 48em) {
    .head__overlay {
      display: none;
      left: 0;
      opacity: 0.5; }
      .head__overlay--active {
        display: block;
        animation: headFadeIn 500ms; } }

body.head__panel--expanded {
  overflow: hidden; }

.head__panel--expanded .head__overlay {
  left: 0;
  opacity: 0.5; }

.head__panel__scroll {
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  background: #F5F5F5; }
  @media (min-width: 48em) {
    .head__panel__scroll {
      overflow: visible;
      position: static;
      background: none; } }

.head__panel--expanded {
  overflow: hidden; }

.head__panel__open {
  display: inline-block;
  background-image: url("../images/sprite.svg?v7");
  background-size: 565px 507px;
  background-repeat: no-repeat;
  background-clip: padding-box;
  width: 38px;
  height: 38px;
  background-position: -5px -464px;
  position: absolute;
  right: 18px;
  top: 18px;
  cursor: pointer; }
  @media (min-width: 48em) {
    .head__panel__open {
      display: none; } }

.head__panel__close {
  display: inline-block;
  background-image: url("../images/sprite.svg?v7");
  background-size: 565px 507px;
  background-repeat: no-repeat;
  background-clip: padding-box;
  width: 38px;
  height: 38px;
  background-position: -349px -393px;
  display: none;
  position: absolute;
  z-index: 104;
  top: 18px;
  right: 18px;
  cursor: pointer; }
  .head__panel__close:hover {
    background-position: -301px -393px; }
  .head__panel--expanded .head__panel__close {
    display: block; }
  @media (min-width: 48em) {
    .head__panel__close, .head__panel--expanded .head__panel__close {
      display: none; } }

.head__nav {
  top: 38px;
  right: 150px;
  font-size: 13px; }
  .fonts-loaded .head__nav {
    font-family: "Montserrat", sans-serif; }
  .head__nav ul, .head__nav li {
    margin: 0;
    padding: 0;
    list-style: none;
    background: none;
    border: 0;
    border-radius: 0; }
  .head__nav a {
    position: relative;
    display: block;
    border-bottom: 1px solid #EBEBEB;
    padding: 15px 15px 15px 40px;
    text-decoration: none; }
  @media (min-width: 48em) {
    .head__nav {
      position: absolute; }
      .head__nav li {
        display: inline-block;
        margin-left: 25px; }
        .head__nav li:first-child {
          margin-left: 0; }
      .head__nav a {
        display: inline-block;
        border-bottom: 0;
        padding: 0; } }

.head__nav--active a {
  color: #FF8B00; }

.head__nav .head__nav--demo, .head__nav .head__nav--blog {
  /*padding: 0 0 0 26px;*/
  padding-left: 40px; }
  .head__nav .head__nav--demo:before, .head__nav .head__nav--blog:before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%; }
  @media (min-width: 48em) {
    .head__nav .head__nav--demo, .head__nav .head__nav--blog {
      padding: 0 0 0 26px; }
      .head__nav .head__nav--demo:before, .head__nav .head__nav--blog:before {
        left: 0; } }

.head__nav--demo:before {
  display: inline-block;
  background-image: url("../images/sprite.svg?v7");
  background-size: 565px 507px;
  background-repeat: no-repeat;
  background-clip: padding-box;
  width: 17px;
  height: 16px;
  background-position: -167px -199px;
  margin-top: -8px; }

.head__nav--blog:before {
  display: inline-block;
  background-image: url("../images/sprite.svg?v7");
  background-size: 565px 507px;
  background-repeat: no-repeat;
  background-clip: padding-box;
  width: 17px;
  height: 10px;
  background-position: -307px -179px;
  margin-top: -4px; }

.head__search {
  position: relative;
  z-index: 100;
  margin: 18px 74px 0 15px; }
  .head__search form {
    border-radius: 4px; }
  .head__search fieldset, .head__search legend {
    margin: 0;
    padding: 0;
    list-style: none;
    background: none;
    border: 0;
    border-radius: 0; }
  .head__search fieldset {
    position: relative;
    border: 1px solid #EBEBEB;
    border-radius: 3px; }
  .head__search input {
    margin: 0;
    padding: 0;
    list-style: none;
    background: none;
    border: 0;
    border-radius: 0; }
  .head__search input[type=text], .head__search input[type=search] {
    padding: 10px 40px 8px 20px;
    width: 100%; }
    .head__search input[type=text]::placeholder, .head__search input[type=search]::placeholder {
      color: #a9a9a9; }
  .head__search input[type=submit] {
    position: absolute;
    right: 8px;
    top: 8px;
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
    display: inline-block;
    background-image: url("../images/sprite.svg?v7");
    background-size: 565px 507px;
    background-repeat: no-repeat;
    background-clip: padding-box;
    width: 20px;
    height: 21px;
    background-position: -179px -110px;
    cursor: pointer; }
  @media (min-width: 48em) {
    .head__search {
      float: right; }
      .head__search form {
        position: absolute;
        display: block;
        top: -8px;
        right: -8px;
        width: 0;
        overflow: hidden;
        box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
        transition: width .3s;
        background: #fff; }
      .head__search input {
        outline: 0; }
      .head__search input[type=submit] {
        right: 7px;
        top: 7px; } }

.head__search--expanded form {
  width: 240px;
  overflow: visible; }

.head__search__toggle {
  display: none;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  padding-left: 40px;
  cursor: pointer; }
  .head__search__toggle:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    background-image: url("../images/sprite.svg?v7");
    background-size: 565px 507px;
    background-repeat: no-repeat;
    background-clip: padding-box;
    width: 20px;
    height: 21px;
    background-position: -179px -110px; }
  .head__search__toggle:hover {
    color: #FF8B00; }
  @media (min-width: 48em) {
    .head__search__toggle {
      display: block; } }

.head__overlay {
  background: #e6e6e6;
  position: fixed;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 105;
  opacity: 0;
  transition: opacity .4s; }
  @media (min-width: 48em) {
    .head__overlay {
      display: none;
      left: 0;
      opacity: 0.5; }
      .head__overlay--active {
        display: block;
        animation: headFadeIn 500ms; } }

@keyframes headFadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

.lang {
  display: none;
  position: absolute;
  right: 48px;
  top: 0;
  margin: 18px 15px 0 15px; }
  .lang ul {
    display: none; }
  @media (min-width: 48em) {
    .lang {
      right: 14px;
      top: 10px; } }

.lang__toggle {
  display: inline-block;
  background-image: url("../images/sprite.svg?v7");
  background-size: 565px 507px;
  background-repeat: no-repeat;
  background-clip: padding-box;
  width: 38px;
  height: 38px;
  background-position: -397px -393px; }

.nav {
  clear: both;
  background: #fff; }
  .nav:after {
    content: "";
    display: table;
    clear: both; }
  .fonts-loaded .nav {
    font-family: "Montserrat", sans-serif; }
  @media (min-width: 48em) {
    .nav {
      padding: 8px 10px;
      border-bottom: 1px solid #EBEBEB;
      border-top: 1px solid #EBEBEB; }
      .nav.stuck {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 900;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
        padding-top: 10px;
        padding-bottom: 10px; }
        .nav.stuck .nav__in {
          position: relative;
          padding-left: 40px; } }
  @media (min-width: 62em) {
    .nav {
      padding-top: 28px;
      padding-bottom: 0;
      transition: padding 0.2s; }
      .nav.stuck {
        padding-bottom: 0; } }

.nav__list, .nav__item, .nav__sublist, .nav__subitem {
  margin: 0;
  padding: 0;
  list-style: none;
  background: none;
  border: 0;
  border-radius: 0; }

.nav__in {
  position: relative; }
  @media (min-width: 48em) {
    .nav__in {
      max-width: 1110px;
      margin: auto;
      transition: padding-left .2s; }
      .nav__in:after {
        content: "";
        display: table;
        clear: both; } }

.page--home .nav__in {
  border-bottom: 0; }

.nav__main {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase; }
  @media (min-width: 48em) {
    .nav__main {
      float: left; }
      .nav__main .nav__item {
        margin-left: 20px;
        padding-bottom: 8px; }
        .nav__main .nav__item:first-child {
          margin-left: 0; }
        .nav__main .nav__item:hover .nav__link {
          color: #FF8B00; } }
  @media (min-width: 62em) {
    .nav__main {
      margin-top: 10px;
      margin-bottom: 0; }
      .nav__main .nav__item {
        padding-bottom: 37px; }
        .nav.stuck .nav__main .nav__item {
          padding-bottom: 20px; }
      .nav__main .nav__item--sub.nav__item--hover .nav__link {
        position: relative; }
        .nav__main .nav__item--sub.nav__item--hover .nav__link:after {
          content: "";
          position: absolute;
          z-index: 110;
          top: 100%;
          left: 50%;
          width: 0;
          height: 0;
          margin-top: 36px;
          margin-left: -14px;
          border-style: solid;
          border-width: 14px 14px 0 14px;
          border-color: #fff transparent transparent transparent; }
          .nav.stuck .nav__main .nav__item--sub.nav__item--hover .nav__link:after {
            margin-top: 20px; } }
  @media (min-width: 75em) {
    .nav__main {
      margin-top: 8px;
      font-size: 18px; } }

.nav__cta {
  border-bottom: 1px solid #F5F5F5;
  white-space: nowrap; }
  .nav__cta .btn--calc {
    display: block;
    margin: 0;
    padding: 20px 15px 18px 40px;
    border-radius: 0;
    font-size: 12px; }
    .nav__cta .btn--calc:before {
      left: 15px; }
  @media (min-width: 48em) {
    .nav__cta {
      float: right;
      border-bottom: 0;
      margin: 7px 0 0 25px;
      white-space: normal; }
      .nav__cta .btn--calc {
        display: inline-block;
        padding: 14px 15px 12px 40px;
        border-radius: 4px; } }
  @media (min-width: 62em) {
    .nav__cta {
      margin-top: 0; } }

.nav__sub {
  font-size: 14px; }
  .nav__sub a {
    text-transform: uppercase; }
  @media (min-width: 48em) {
    .nav__sub {
      clear: left;
      margin: 12px 0 0 0;
      font-size: 13px; }
      .nav__sub .nav__item {
        margin-left: 25px; }
        .nav__sub .nav__item:first-child {
          margin-left: 0; } }
  @media (min-width: 62em) {
    .nav__sub {
      clear: none;
      float: right; } }

.nav__link {
  display: block;
  padding: 15px;
  border-bottom: 1px solid #F5F5F5;
  text-decoration: none;
  white-space: nowrap;
  color: #222222; }
  @media (min-width: 48em) {
    .nav__link {
      display: inline;
      padding: 0;
      border-bottom: 0;
      white-space: normal; } }

@media (min-width: 48em) {
  .nav__item {
    position: relative;
    display: inline-block;
    vertical-align: top; } }

.nav__item--hover .nav__sublist {
  display: block;
  animation: fadeIn 300ms; }

@media (min-width: 62em) {
  .nav__item {
    position: static; } }

.nav__item--active .nav__link {
  color: #FF8B00; }

.nav__sublist {
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  padding: 5px 10px;
  font-weight: 400;
  font-size: 13px;
  background-color: #fff;
  border-bottom: 1px solid #F5F5F5;
  display: none; }
  @media (min-width: 62em) {
    .nav__sublist {
      margin-top: -1px;
      min-height: 300px; }
      .nav__sublist li:hover .nav__img {
        display: block;
        animation: fadeIn 500ms; }
      .nav__sublist li:first-child .nav__img {
        display: block;
        animation-duration: 0s; } }
  .nav__sublist li {
    margin: 0;
    padding: 0;
    list-style: none;
    background: none;
    border: 0;
    border-radius: 0; }
  .nav__sublist a {
    display: block;
    padding: 9px 20px;
    text-transform: uppercase;
    color: #FF8B00; }
    .nav__sublist a:hover {
      text-decoration: none; }
  @media (min-width: 48em) {
    .nav__sublist {
      position: absolute;
      font-weight: 700;
      font-size: 15px;
      width: 240px;
      padding: 15px 0;
      border: 0;
      background-color: #FF8B00; }
      .fonts-loaded .nav__sublist {
        font-family: "Montserrat", sans-serif; }
      .nav__sublist a {
        color: #fff; } }
  @media (min-width: 62em) {
    .nav__sublist {
      width: auto;
      padding: 30px 0;
      font-size: 16px; }
      .nav__sublist a {
        padding: 9px 20px 9px 50px; } }

.nav__item--expanded .nav__sublist {
  display: block; }

.nav__img {
  display: none;
  position: absolute;
  right: 0;
  width: 565px;
  top: 0;
  bottom: 0;
  overflow: hidden; }
  .nav__img img {
    object-fit: cover;
    object-position: 0 0;
    font-family: 'object-fit: cover; object-position: 0 0;';
    width: 100%;
    height: 100%; }
  @media (min-width: 75em) {
    .nav__img {
      width: 665px; } }

.nav__home {
  display: none;
  position: absolute;
  left: 0;
  top: 2px;
  display: inline-block;
  background-image: url("../images/sprite.svg?v7");
  background-size: 565px 507px;
  background-repeat: no-repeat;
  background-clip: padding-box;
  width: 30px;
  height: 30px;
  background-position: -529px -242px;
  width: 0;
  overflow: hidden;
  transition: width .2s; }
  .nav__home:hover {
    background-position: -529px -162px; }
  .stuck .nav__home {
    width: 30px; }
  @media (min-width: 48em) {
    .nav__home {
      display: block; } }
  @media (min-width: 75em) {
    .nav__home {
      top: 4px; } }

.foot {
  position: relative;
  padding: 130px 15px 50px 15px;
  background: #2F2F2F;
  color: #fff;
  font-size: 13px;
  overflow: hidden; }
  @media (min-width: 48em) {
    .foot {
      padding-top: 90px; }
      .foot .foot__select {
        display: none; } }
  .foot:before, .foot:after {
    content: "";
    height: 30px;
    position: absolute;
    left: -10px;
    top: 0; }
  .foot:before {
    background-color: #FF8B00;
    transform: skewX(30deg);
    width: 60%;
    z-index: 2; }
  .foot:after {
    left: 0;
    right: 0;
    background-color: #fff; }
  .fonts-loaded .foot {
    font-family: "Montserrat", sans-serif; }
  .foot h4 {
    margin: 0 0 2em 0;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff; }
  .foot ul, .foot li {
    margin: 0;
    padding: 0;
    list-style: none;
    background: none;
    border: 0;
    border-radius: 0; }
  .foot li {
    margin-bottom: 0.9em; }
  .foot a {
    color: #d7d7d7;
    text-decoration: none; }
    .foot a:hover {
      color: #FF8B00; }

.foot__in {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto; }
  .foot__in:after {
    content: "";
    display: table;
    clear: both; }
  .foot__in:before {
    content: "";
    position: absolute;
    left: 60%;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/foot.svg) no-repeat;
    background-size: cover;
    margin-left: -20px; }

.foot__nav {
  float: left;
  width: 66.666%;
  display: table; }

.foot__nav__item {
  display: none; }
  @media (min-width: 48em) {
    .foot__nav__item {
      display: table-cell;
      vertical-align: top;
      padding-bottom: 30px; } }

.foot__social {
  position: relative;
  z-index: 3;
  padding-bottom: 30px; }
  @media (min-width: 48em) {
    .foot__social {
      float: right;
      padding-bottom: 0;
      width: 22.8%; } }

.foot__copy {
  clear: both;
  color: #949494; }
  .foot__copy img {
    width: 86px;
    height: auto;
    margin-right: 14px; }
  .foot__copy a:hover {
    color: #fff; }

.foot-fcb, .foot-yt {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  vertical-align: middle;
  margin: 0 10px; }

.foot-fcb {
  display: inline-block;
  background-image: url("../images/sprite.svg?v7");
  background-size: 565px 507px;
  background-repeat: no-repeat;
  background-clip: padding-box;
  width: 17px;
  height: 31px;
  background-position: -179px -69px; }
  .foot-fcb:hover {
    background-position: -529px -81px; }

.foot-yt {
  display: inline-block;
  background-image: url("../images/sprite.svg?v7");
  background-size: 565px 507px;
  background-repeat: no-repeat;
  background-clip: padding-box;
  width: 35px;
  height: 26px;
  background-position: -98px -464px; }
  .foot-yt:hover {
    background-position: -53px -464px; }

.foot__select {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 290px;
  margin-left: -145px;
  background: #EBEBEB url(../images/select.svg) no-repeat right;
  border-radius: 0; }
  .foot__select option {
    background: #fff; }

/*@import "./molecules/intro";
@import "./molecules/bonus";
@import "./molecules/house";
@import "./molecules/stats";
@import "./molecules/article";
@import "./molecules/blog";
@import "./molecules/links";
@import "./molecules/benefits";
@import "./molecules/crumbs";
@import "./molecules/ref";
@import "./molecules/timeline";
@import "./molecules/contact-box";
@import "./molecules/demo";
@import "./molecules/pagination";
@import "./molecules/box";
@import "./molecules/share";
@import "./molecules/filter";
@import "./molecules/product";
@import "./molecules/tab";
@import "./molecules/feature";
@import "./molecules/faq";
@import "./molecules/career";
@import "./molecules/regulation";
@import "./molecules/photos";*/
.panel, .notice {
  max-width: 945px;
  margin: auto;
  padding: 20px 30px;
  border: 1px solid #D6D6D6; }
  @media (min-width: 48em) {
    .panel, .notice {
      padding: 30px 40px; } }
  @media (min-width: 62em) {
    .panel, .notice {
      padding: 40px 50px; } }

/*@import "./molecules/contact";
@import "./molecules/guide";
@import "./molecules/youtube";
@import "./molecules/autocomplete";*/
/* Layout = Structures*/
.section, .section__bckg {
  max-width: 1170px;
  padding: 0 15px;
  margin: 45px auto; }
  @media (min-width: 48em) {
    .section, .section__bckg {
      margin: 60px auto; } }
  @media (min-width: 62em) {
    .section, .section__bckg {
      margin: 90px auto; } }

.section--compact {
  margin: 45px auto; }

.section--bckg {
  padding-top: 1px;
  padding-bottom: 1px;
  background: #F5F5F5; }

.section--fluid {
  max-width: none;
  padding-left: 0;
  padding-right: 0; }
  .section--fluid > h2:first-child {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px; }
    .section--fluid > h2:first-child:after {
      content: "";
      display: table;
      clear: both; }

.section--bonus h2 {
  margin-bottom: 2.25em;
  font-size: 30px; }
  @media (min-width: 48em) {
    .section--bonus h2 {
      font-size: 36px; } }

.section--house h2 strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #FF8B00; }
  @media (min-width: 48em) {
    .section--house h2 strong {
      font-size: 40px; } }
  @media (min-width: 62em) {
    .section--house h2 strong {
      font-size: 44px; } }

.row--text {
  padding-top: 15px;
  padding-bottom: 15px;
  align-items: center; }
  .row--text .col-lg-4 {
    padding: 0 30px; }

@media (min-width: 48em) {
  .col-text {
    padding-left: 25px;
    padding-right: 25px; } }

@media (min-width: 62em) {
  .col-text {
    padding-left: 50px;
    padding-right: 50px; } }

.row-10 {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto; }

.row-8 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto; }

.row-7 {
  max-width: 665px;
  margin-left: auto;
  margin-right: auto; }

.row-6 {
  max-width: 570px;
  margin-left: auto;
  margin-right: auto; }

.section--stats .section__bckg {
  margin-top: 0;
  margin-bottom: 0; }

.section--article h2, .section--house h2, .section--reflist h2 {
  font-size: 30px; }

.section--blog {
  max-width: 945px;
  margin: 0 auto;
  font-size: 22px; }

.section--filter {
  position: relative; }
  .section--filter .section__bckg {
    margin-top: 60px;
    margin-bottom: 60px; }
  .section--filter:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 0;
    height: 0;
    margin: 0 0 0 -15px;
    border-style: solid;
    border-width: 15px 15px 0 15px;
    border-color: #F5F5F5 transparent transparent transparent; }

.section__full {
  position: relative; }

.section__full .row {
  max-width: 1140px;
  margin: auto; }

.section__full .col-md-5 {
  padding-top: 30px;
  padding-bottom: 30px; }
  @media (min-width: 48em) {
    .section__full .col-md-5 {
      padding-top: 45px;
      padding-bottom: 45px; } }
  .section__full .col-md-5 h3 {
    margin: 16px 0 0.8em 0;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 800; }
    @media (min-width: 48em) {
      .section__full .col-md-5 h3 {
        font-size: 30px; } }
    @media (min-width: 62em) {
      .section__full .col-md-5 h3 {
        font-size: 36px; } }

@media (min-width: 48em) {
  .section__full .col-img {
    position: absolute;
    top: 0;
    height: 100%;
    padding: 0;
    max-width: none; }
    .section__full .col-img .triangle {
      width: 100%;
      height: 100%; }
    .section__full .col-img img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      font-family: 'object-fit: cover;';
      /*hack for IE for object fit polyfill*/ }
    .section__full .col-img + .col-md-5 {
      margin-left: auto; }
    .section__full .col-img + .col-md-5.flex-md-first {
      margin-left: 0;
      margin-right: auto; }
  .section__full .col-img-left {
    left: 0;
    width: 52.34375%; }
  .section__full .col-img-right {
    right: 0;
    width: 52.34375%; } }

.section__full--bckg {
  background: #E8E8E8; }
  .section__full--bckg .triangle:after {
    display: none; }

.youtube-iframe {
  position: relative;
  height: 0;
  padding-bottom: 56.25%; }
  .youtube-iframe iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }

html {
  background-color: #DBDBDB; }

/*body {
  background-color: #fff; }*/

.p-head {
  position: relative;
  border-bottom: 1px solid #2F2F2F;
  background: #222; }
  .p-head:after {
    content: "";
    display: table;
    clear: both; }
  .fonts-loaded .p-head {
    font-family: "Montserrat", sans-serif; }
  @media (min-width: 36em) {
    .p-head {
      padding-right: 70px; } }

.p-logo {
  position: relative;
  float: left;
  padding: 15px 15px 15px 15px;
  background: #2F2F2F; }
  .p-logo img {
    float: left;
    width: 120px;
    height: 28px;
    margin: 0 25px 0 0; }
  .p-logo:after {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 34px 58px 0;
    border-color: transparent #222222 transparent transparent; }
  @media (min-width: 48em) {
    .p-logo {
      padding-left: 40px;
      padding-right: 25px; } }

.p-logo__text {
  display: none;
  float: left;
  padding: 2px 60px 3px 25px;
  border-left: 1px solid #444444;
  font-size: 17px;
  color: #fff; }
  @media (min-width: 62em) {
    .p-logo__text {
      display: block; } }

.p-nav {
  position: relative;
  padding: 20px 25px;
  background: #222;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700; }
  .p-nav:after {
    content: "";
    display: table;
    clear: both; }
  .fonts-loaded .p-nav {
    font-family: "Montserrat", sans-serif; }
  .p-nav ul, .p-nav li {
    margin: 0;
    padding: 0;
    list-style: none;
    background: none;
    border: 0;
    border-radius: 0; }
  .p-nav ul {
    display: none;
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 0;
    right: 0; }
  .p-nav li {
    border-top: 1px solid #2F2F2F; }
  .p-nav a {
    display: block;
    padding: 20px 25px;
    color: #fff;
    text-decoration: none;
    text-align: right;
    background-color: #222;
    transition: all .3s; }
    .p-nav a:hover {
      color: #FF8B00;
      background-color: #2F2F2F; }
  @media (min-width: 48em) {
    .p-nav {
      padding: 25px 40px; }
      .p-nav ul {
        display: block;
        position: static; }
      .p-nav li {
        display: inline-block;
        vertical-align: top;
        margin: 0 12px;
        border-top: 0; }
        .p-nav li:first-child {
          margin-left: 0; }
      .p-nav a {
        padding: 0;
        text-align: left;
        background-color: transparent; }
        .p-nav a:hover {
          background-color: transparent; } }

.p-nav--expanded ul {
  display: block; }

.p-nav--expanded .p-nav__toggle {
  color: #FF8B00; }

.p-nav__toggle {
  float: right;
  color: #fff;
  cursor: pointer; }
  @media (min-width: 48em) {
    .p-nav__toggle {
      display: none; } }

.p-lang {
  position: absolute;
  z-index: 11;
  right: 0;
  top: 0;
  height: 58px;
  width: 70px;
  border-left: 1px solid #2F2F2F; }
  .p-lang ul, .p-lang li {
    margin: 0;
    padding: 0;
    list-style: none;
    background: none;
    border: 0;
    border-radius: 0; }
  .p-lang ul {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    background: #222;
    border-top: 1px solid #2F2F2F; }
  .p-lang--expanded ul {
    display: block; }
  .p-lang li {
    border-bottom: 1px solid #2F2F2F;
    border-left: 1px solid #2F2F2F; }
  .p-lang a {
    display: block;
    padding: 20px 0;
    position: relative; }
    .p-lang a:hover {
      background: #2F2F2F; }
  .p-lang img {
    display: block;
    margin: auto; }

.p-lang__toggle {
  position: relative;
  display: block;
  text-align: center;
  color: #fff;
  height: 100%;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer; }
  .p-lang__toggle img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -6px 0 0 -8px; }

.p-user {
  clear: both;
  position: relative;
  z-index: 2;
  padding: 15px;
  border-top: 1px solid #2F2F2F;
  background: #222222; }
  @media (min-width: 36em) {
    .p-user {
      clear: none;
      float: right; } }
  @media (min-width: 48em) {
    .p-user {
      padding: 15px 25px; } }

.p-user__name {
  display: inline-block;
  vertical-align: top;
  padding: 3px 15px 0 35px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
  .p-user__name img {
    position: absolute;
    left: 15px;
    top: 50%;
    margin-top: -13px;
    display: block;
    border-radius: 50%; }
  @media (min-width: 48em) {
    .p-user__name img {
      left: 25px; } }
  @media (min-width: 75em) {
    .p-user__name {
      max-width: none; } }

.p-user__logout {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 6px 0 0 15px;
  font-size: 11px;
  color: #8e8e8e;
  text-decoration: none; }
  .p-user__logout:before {
    content: "";
    width: 1px;
    right: 0;
    height: 10px;
    background: #393939;
    position: absolute;
    top: 50%;
    margin-top: -4px;
    left: 0; }

.p-search {
  position: absolute;
  z-index: 10;
  left: 5px;
  width: 200px;
  padding: 10px; }
  @media (min-width: 36em) {
    .p-search {
      top: 58px; } }
  @media (min-width: 48em) {
    .p-search {
      position: static;
      float: right; } }
  @media (min-width: 75em) {
    .p-search {
      width: 240px; } }
  .p-search fieldset {
    position: relative; }
  .p-search input {
    margin: 0;
    padding: 0;
    list-style: none;
    background: none;
    border: 0;
    border-radius: 0; }
  .p-search input[type=search], .p-search input[type=text] {
    width: 100%;
    padding: 13px 40px 13px 15px;
    background-color: #1A1A1A;
    border-radius: 4px;
    font-size: 11px;
    color: #fff;
    outline: 0;
    transition: background-color .4s; }
    .fonts-loaded .p-search input[type=search], .fonts-loaded .p-search input[type=text] {
      font-family: "Montserrat", sans-serif; }
    .p-search input[type=search]:hover, .p-search input[type=search]:focus, .p-search input[type=text]:hover, .p-search input[type=text]:focus {
      background-color: #000; }
    .p-search input[type=search]::placeholder, .p-search input[type=text]::placeholder {
      font-style: italic;
      color: #515151; }
  .p-search input[type=submit] {
    position: absolute;
    right: 0;
    top: 0;
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
    display: inline-block;
    background-image: url("../images/sprite.svg?v7");
    background-size: 565px 507px;
    background-repeat: no-repeat;
    background-clip: padding-box;
    width: 38px;
    height: 39px;
    background-position: -253px -393px; }

.p-filter {
  padding: 15px 40px;
  background: #F5F5F5; }
  .p-filter select {
    margin: 5px 0;
    padding: 15px 40px 15px 20px;
    width: 100%;
    font-size: 13px;
    background: #fff url(../images/portal/select.svg) no-repeat right;
    border: 1px solid #D6D6D6;
    border-radius: 4px;
    cursor: pointer;
    outline: 0; }
    .fonts-loaded .p-filter select {
      font-family: "Montserrat", sans-serif; }
  .p-filter .btn {
    margin: 5px 0;
    font-size: 13px;
    padding: 16px 10px 14px 10px;
    line-height: 1.15;
    white-space: nowrap; }
  .p-filter .btn--add {
    padding-left: 40px; }
    .p-filter .btn--add:before {
      content: "";
      display: inline-block;
      background-image: url("../images/sprite.svg?v7");
      background-size: 565px 507px;
      background-repeat: no-repeat;
      background-clip: padding-box;
      width: 16px;
      height: 16px;
      background-position: -194px -199px;
      position: absolute;
      left: 15px;
      top: 50%;
      margin-top: -8px; }
  @media (min-width: 62em) {
    .p-filter select, .p-filter .btn {
      margin: 10px 0; } }

@media (min-width: 62em) {
  .p-filter__list {
    display: flex;
    margin: 0 -10px; } }

@media (min-width: 62em) {
  .p-filter__item {
    padding: 0 10px;
    flex-grow: 1;
    max-width: 320px; } }

.p-filter__item--title {
  font-size: 19px;
  align-self: center;
  float: left;
  padding-top: 10px; }
  @media (min-width: 62em) {
    .p-filter__item--title {
      float: none;
      padding: 0; } }

.p-filter__item--add {
  margin-left: auto;
  text-align: right; }

.p-foot {
  padding: 20px 15px;
  background: #DBDBDB;
  color: #949494;
  font-size: 13px;
  font-weight: 400;
  text-align: right; }
  .fonts-loaded .p-foot {
    font-family: "Montserrat", sans-serif; }
  .p-foot a {
    text-decoration: none;
    font-weight: 700;
    color: #949494; }
    .p-foot a:hover {
      color: #FF8B00; }
  @media (min-width: 36em) {
    .p-foot {
      padding: 20px 40px; } }

.p-content {
  font-size: 14px;
  font-weight: 400;
  min-height: calc(100vh - 340px); }
  .p-filter + .p-content {
    min-height: calc(100vh - 440px); }
  .fonts-loaded .p-content {
    font-family: "Montserrat", sans-serif; }
  .p-content h1 {
    margin: 1em;
    max-width: none; }
  .p-content .err {
    background: #c00; }
/*  .p-content .pagination {
    text-align: center; }
    @media (min-width: 62em) {
      .p-content .pagination {
        margin: 60px 0; } }*/
  .p-content .section {
    max-width: none; }
    @media (min-width: 48em) {
      .p-content .section {
        margin: 30px auto;
        padding: 0 40px; } }
  .p-content label {
    font-size: 100%; }
  .fonts-loaded .p-content input {
    font-family: "Montserrat", sans-serif; }

.datatable {
  border-bottom: 1px solid #D6D6D6; }
  .datatable th, .datatable td {
    padding: 0.7em 1em;
    border-top: 1px solid #D6D6D6;
    font-size: 13px;
    vertical-align: middle;
    width: auto;
/*  .datatable tr:nth-child(even) th, .datatable tr:nth-child(even) td {
    background-color: #fff; }*/
    background-color: rgba(255,255,255,0.5); }    
  .datatable td {
    font-weight: 400; }
  .datatable th {
    font-weight: 700; }
  .datatable tr.disabled th, .datatable tr.disabled td, .datatable tr.disabled:hover th, .datatable tr.disabled:hover td {
    background-color: #F5F5F5;
    color: #666 !important;
    border-top: 1px solid #D6D6D6;
    border-bottom: 0; }
  .datatable thead tr:first-child th, .datatable thead tr:first-child td {
    padding: 1em;
    border-top: 0; }
  .datatable thead th {
    font-size: 14px;
    font-weight: 700; }
  .datatable tbody th {
    color: #FF8B00;
    font-size: 14px; }
  .datatable tbody td {
    color: #575757; }
  .datatable tbody tr:hover td, .datatable tbody tr:hover th {
    border-top: 1px solid #F19100;
    border-bottom: 1px solid #F19100;
    background: #FFF3E5;
    color: #000; }
  .datatable tbody tr:hover th {
    color: #FF8B00; }
  @media (max-width: 61.99em) {
    .datatable {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      -ms-overflow-style: -ms-autohiding-scrollbar; } }

.notice {
  padding: 2em;
  margin-bottom: 2em; }

.p-status {
  padding: 0 14px;
  font-size: 20px; }

.p-edit {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  display: inline-block;
  background-image: url("../images/sprite.svg?v7");
  background-size: 565px 507px;
  background-repeat: no-repeat;
  background-clip: padding-box;
  width: 30px;
  height: 30px;
  background-position: -529px -282px;
  width: 30px;
  height: 30px;
  position: absolute;
  left: -5px;
  top: 50%;
  margin-top: -15px;
  text-decoration: none;
  opacity: 0.5; }
  .p-edit:hover {
    opacity: 1; }

.p-name {
  position: relative;
  padding-left: 25px; }

.p-name-over {
  position: absolute;
  left: 1em;
  margin-left: 25px;
  right: 1em;
  top: 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.p-name-input {
  visibility: hidden;
  font-weight: 700;
  background-color: #fff !important; }

.p-name-active .p-name-input {
  visibility: visible; }

.p-name-active .p-name-over {
  display: none; }

.p-panel__check-all, .p-panel__check-none {
  display: block;
  position: absolute;
  top: 14px;
  color: #fff;
  width: 24px;
  height: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color .3s; }
  .p-panel__check-all:hover, .p-panel__check-none:hover {
    background-color: #000; }

.p-panel__check-all {
  right: 36px;
  background: url(../images/portal/check-all.svg) no-repeat right; }

.p-panel__check-none {
  right: 9px;
  background: url(../images/portal/check-none.svg) no-repeat right; }

.p-panel {
  top: 270px;
  overflow: hidden; }
  .p-panel .p-panel__content {
    max-height: calc(100vh - 320px); }
  .p-panel .btn {
    padding: 12px 12px 11px 12px;
    font-size: 12px;
    vertical-align: top; }
  .p-panel .btn--light {
    background-color: #fff;
    color: #FF8B00; }
    .p-panel .btn--light:hover {
      background-color: #ffe8cc; }
  .p-panel input {
    background-color: #fff;
    font-family: Arial, sans-serif; }
  .p-panel hr {
    margin: 25px -30px; }
  @media (min-width: 36em) {
    .p-panel {
      top: 200px; }
      .p-panel .p-panel__content {
        max-height: calc(100vh - 250px); } }
  @media (min-width: 62em) {
    .p-panel {
      top: 210px; }
      .p-panel .p-panel__content {
        max-height: calc(100vh - 260px); } }

.p-panel--right {
  position: absolute;
  right: 0;
  border-radius: 4px 0 0 4px; }
  .p-panel--right .p-panel__head span {
    padding-right: 40px;
    background: url(../images/portal/panel-right-head.svg) no-repeat right;
    background-size: 26px 8px; }
  .p-panel--right .p-panel__content {
    background: #E8E8E8; }

.p-panel--left {
  position: absolute;
  left: 0;
  border-radius: 0 4px 4px 0; }
  .p-panel--left .p-panel__head {
    text-align: right; }
    .p-panel--left .p-panel__head span {
      padding-left: 40px;
      background: url(../images/portal/panel-left-head.svg) no-repeat left;
      background-size: 26px 8px; }
  .p-panel--left .p-panel__content {
    background: #222222; }
  .p-panel--left hr {
    border-color: #2F2F2F; }

.p-panel__content {
  display: none;
  width: 315px;
  padding: 15px 30px;
  font-size: 12px;
  font-family: Arial, sans-serif;
  overflow: auto; }
  .p-panel__content th, .p-panel__content td {
    padding: 0.4em 0.5em;
    font-size: 12px; }
  .p-panel__content th:first-child {
    padding-left: 0;
    width: 40%; }
  .p-panel__content tr:nth-child(even) th, .p-panel__content tr:nth-child(even) td {
    background: none; }
  .p-panel__toggle:checked + .p-panel__head + .p-panel__content {
    display: block;
    position: relative;
    z-index: 2; }

.p-panel__head {
  width: 50px; }
  .p-panel__head label {
    display: block;
    width: 50px;
    height: 50px;
    background: #2F2F2F;
    padding: 16px 30px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer; }
    .p-panel__head label:hover {
      color: #FF8B00; }
  .p-panel__toggle:checked + .p-panel__head {
    width: auto;
    position: relative;
    z-index: 2; }
    .p-panel__toggle:checked + .p-panel__head label {
      width: auto;
      height: auto; }
  .p-panel__toggle:not(:checked) + .p-panel__head label {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0; }

.p-panel--left .p-panel__toggle:not(:checked) + .p-panel__head label {
  background: #2F2F2F url(../images/portal/panel-left.svg) no-repeat;
  border-radius: 0 4px 4px 0; }

.p-panel--right .p-panel__toggle:not(:checked) + .p-panel__head label {
  background: #2F2F2F url(../images/portal/panel-right.svg) no-repeat;
  border-radius: 4px 0 0 4px;
  margin-left: auto; }

.p-panel__date {
  margin-bottom: 9px; }
  .p-panel__date .form-group {
    position: relative; }
    .p-panel__date .form-group label {
      position: absolute;
      left: 12px;
      top: 50%;
      margin-top: -9px;
      padding: 0;
      font-size: 13px;
      color: #9e9e9e; }
  .p-panel__date #from {
    border-radius: 4px 4px 0 0; }
  .p-panel__date #to {
    border-radius: 0 0 4px 4px;
    margin-top: -1px; }
  .p-panel__date .datepicker {
    padding-left: 40px;
    padding-right: 40px;
    background: #fff url(../images/portal/datepicker.svg) no-repeat right;
    background-size: 30px 15px; }

.p-panel__group {
  margin: 0 0 5px 0;
  border-radius: 4px; }
  .p-panel__group h4 {
    position: relative;
    margin: 0;
    background: #2F2F2F;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700; }
    .p-panel__group h4 label {
      cursor: pointer;
      display: block;
      padding: 17px 70px 18px 20px;
      color: #fff;
      font-size: 13px;
      font-weight: 700; }
  .p-panel__group .p-panel__in {
    display: none; }

.p-panel__in {
  padding: 15px 20px;
  background: #E8E8E8;
  border-radius: 0 0 4px 4px;
  font-size: 12px; }
  .p-panel__in label, .p-panel__in input {
    font-size: 12px; }

.p-panel__toggle {
  display: none; }

.p-panel__toggle:checked + h4 {
  border-radius: 4px 4px 0 0;
  background-color: #FFFFFF; }
  .p-panel__toggle:checked + h4 label {
    color: #222; }
  .p-panel__toggle:checked + h4 + .p-panel__in {
    display: block; }

.form-check {
  display: block;
  position: relative;
  margin: 8px 0;
  padding: 0 0 0 22px; }
  .form-check label {
    padding: 0;
    transition: color .2s; }
    .form-check label:hover {
      color: #FF8B00; }
  .form-check [type="checkbox"]:not(:checked), .form-check [type="checkbox"]:checked {
    display: none; }
  .form-check [type="checkbox"]:not(:checked) + label, .form-check [type="checkbox"]:checked + label {
    cursor: pointer; }
  .form-check [type="checkbox"]:not(:checked) + label:before, .form-check [type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 13px;
    height: 13px;
    border: 1px solid #898989;
    border-radius: 4px; }
  .form-check [type="checkbox"]:not(:checked) + label:after, .form-check [type="checkbox"]:checked + label:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 13px;
    height: 13px;
    background: url(../images/portal/check.svg) no-repeat;
    transition: all .2s; }
  .form-check [type="checkbox"]:not(:checked) + label {
    color: #575757; }
    .form-check [type="checkbox"]:not(:checked) + label:hover {
      color: #FF8B00; }
  .form-check [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0); }
  .form-check [type="checkbox"]:checked + label:before {
    border-color: #FF8B00;
    background-color: #FF8B00; }
  .form-check [type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: scale(1); }
  .form-check [type="checkbox"]:disabled:not(:checked) + label:before, .form-check [type="checkbox"]:disabled:checked + label:before {
    background-color: #ddd; }
