@charset "UTF-8";
/*
 * Функция возвращающая null вместо error если значение в списке не найдено
 * @param {List} $list - список
 * @param {Number}$index - индекс эелемента
 */
/*
 * Функция возвращающая z-index елемента
 * @requiered  $z-layers список слоев;
 * @param {List, Map} $z-layers - массив со именами и значениями z-index;
 * @param {String} $name - елемент;
 * https://codepen.io/jakob-e/pen/KpdBzY
 */
/*
  Более короткая версия функции z-index;
  @param {String, List}
  @return {Number}
 */
/*
  Функция обрезающая единицы измерения и возвращающая число
  @param {Number}
  @return {Number}
 */
/* Функция замены чего-либо в строке
  @author Hugo Giraudel
  @param {String} $string - строка в которой ищем
  @param {String} $search - то что нужно заменить
  @param {String} $replace ('') - то на что нужно заменить
  @return {String} - обновленная строка
*/
/*
  Функция возвращающая значение в em
  **ВСЕГДА ДОЛЖНО БЫТЬ КАК МИНИМУМ 2 ВХОДНЫХ ПАРАМЕТРА**
  - сколько угодно значений может быть передано в функцию
  - последний параметр всегда указывает в каком контексте надо считать em'ы
  @list, @Number $values - значения
  @return EM

  Примеры :
    font-size: em($h1-font-size, 16);
    font-size: em($h1-font-size, $context); Указание контекста(шрифта родителя)
    border-bottom: em(1px solid black) => .0625em solid black) ;
    box-shadow: em(0 0 2px #ccc, inset 0 0 5px #eee, $h1-font-size) => 0 0 .125em #ccc, inset 0 0 .3125em #eee; // Множественные значения

  source: https://github.com/pierreburel/sass-em;
 */
/*
  Функция возвращающая факториал
  @param {Number} $number - число
  @return {Number} - число
 */
/*
  Pi
 */
/*
  Функция вычсисления радианы
  @param {Number} $angle - угол
  @return {Number} - радиан
 */
/*
  Функция возвразающая синус угла
  @param {Number} $angle - угол
  @return {Number} - синус угла
 */
/*
  Функция возвразающая косинус угла
  @param {Number} $angle - угол
  @return {Number} - синус угла
 */
/*
 * Функция возвращающая null вместо error если значение в списке не найдено
 * @param {List} $list - список
 * @param {Number}$index - индекс эелемента
 */
/* Функция замены чего-либо в строке
  @author Hugo Giraudel
  @param {String} $string - строка в которой ищем
  @param {String} $search - то что нужно заменить
  @param {String} $replace ('') - то на что нужно заменить
  @return {String} - обновленная строка
*/
/*
 Миксин для rtl
 Примеры:
   @include dir((
      margin-left: 20px
      padding-right: 10px
      margin: 10px 10px 10px 10px
    )); //указание контекста
 */
@font-face {
  font-family: "Roboto", sans-serif;
  src: url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto-Bold.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto", sans-serif;
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
button:focus {
  outline: none;
}

a {
  text-decoration: none;
  will-change: transform;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.cb-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 19.625em;
  padding-right: 15.9375em;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1023px) {
  .cb-container {
    padding-left: 1.25em;
    padding-right: 1.25em;
  }
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-container {
    padding-left: 0.3125em;
    padding-right: 0.3125em;
  }
}
@-webkit-keyframes btn-blik {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(300%);
            transform: translateX(300%);
  }
}
@keyframes btn-blik {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(300%);
            transform: translateX(300%);
  }
}
.cb-component-btn {
  display: inline-block;
  padding: 0.375em;
  border-radius: 3.75em;
  cursor: pointer;
}
.cb-component-btn--reg {
  border: 2px solid #59f42f;
  padding: 0.4375em;
}
@media screen and (max-width: 1023px) {
  .cb-component-btn--reg {
    padding: 0.1875em;
  }
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-component-btn--reg {
    padding: 0.25em;
  }
}

.cb-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 3.125em;
  font-family: "Roboto", sans-serif;
  color: white;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cb-btn--reg {
  font-weight: 900;
  font-style: italic;
  font-size: 1.5em;
  min-width: 14.1666666667em;
  height: 2.8333333333em;
  text-transform: uppercase;
  padding-left: 0.8333333333em;
  padding-right: 0.8333333333em;
  -webkit-box-shadow: 0px 0px 30px 0px #92e00b;
          box-shadow: 0px 0px 30px 0px #92e00b;
  color: #373f3c;
  background-color: #59f42f;
}
.cb-btn--reg:hover {
  background-color: #82c809;
  -webkit-transition: 250ms;
  transition: 250ms;
}
@media screen and (max-width: 1023px) {
  .cb-btn--reg {
    font-size: 0.875em;
  }
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-btn--reg {
    font-size: 0.875em;
    min-width: 11.1428571429em;
  }
}
.cb-btn--reg::after {
  content: "";
  position: absolute;
  top: 0em;
  left: 0.7142857143em;
  width: 4.8571428571em;
  height: 4.4285714286em;
  background: url("../img/te-blik.png") 0 0/cover;
  -webkit-animation: 6s ease infinite btn-blik;
          animation: 6s ease infinite btn-blik;
  will-change: transform;
}
.cb-btn--rules {
  font-size: 1.125em;
  font-style: italic;
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: 500;
}
.cb-btn--rules:hover {
  text-decoration: none;
}
@media screen and (max-width: 1023px) {
  .cb-btn--rules {
    font-size: 0.75em;
  }
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-btn--rules {
    font-size: 0.875em;
  }
}

.cd-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 52px;
  position: relative;
  z-index: 1;
  background-color: #205583;
}
@media screen and (max-width: 1024px) {
  .cd-header {
    height: 58px;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
}
@media screen and (max-width: 639px) {
  .cd-header {
    height: 46px;
  }
}
.cd-header-logo {
  padding-left: 1.25em;
}
@media screen and (max-width: 639px) {
  .cd-header-logo {
    padding-left: 0.625em;
  }
}
.cd-header-logo__link {
  width: 180px;
  height: 32px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .cd-header-logo__link {
    width: 120px;
  }
}
@media screen and (max-width: 639px) {
  .cd-header-logo__link {
    width: 100px;
  }
}
.cd-header-logo__img {
  height: 100%;
}
.cd-header-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 0.9375em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.cd-header-login__icon {
  margin-right: 0.5625em;
  font-size: 1.3125em;
}
@media screen and (max-width: 639px) {
  .cd-header-login__icon {
    display: none;
  }
}
.cd-header-login__btn {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 15px;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .cd-header-login__btn {
    font-size: 12px;
    padding: 0 10px;
    height: 32px;
  }
}
@media screen and (max-width: 639px) {
  .cd-header-login__btn {
    font-size: 12px;
    padding: 0 10px;
    height: 24px;
    border-radius: 3px;
  }
}
.cd-header-login__btn--enter {
  border-right: 0.0625em solid #ffffff;
  background-color: #0e5d9a;
  -webkit-box-shadow: inset 0 3.125em 1.5625em -1.5625em #388ecc;
          box-shadow: inset 0 3.125em 1.5625em -1.5625em #388ecc;
}
@media screen and (max-width: 639px) {
  .cd-header-login__btn--enter {
    border-right: none;
    margin-right: 0.625em;
  }
}
.cd-header-login__btn--enter:hover {
  -webkit-box-shadow: inset 0 -3.125em 1.5625em -1.5625em #388ecc;
          box-shadow: inset 0 -3.125em 1.5625em -1.5625em #388ecc;
}
.cd-header-login__btn--reg {
  background-color: #668a28;
  -webkit-box-shadow: inset 0 3.125em 1.5625em -1.5625em #84b332;
          box-shadow: inset 0 3.125em 1.5625em -1.5625em #84b332;
}
.cd-header-login__btn--reg:hover {
  -webkit-box-shadow: inset 0 -3.125em 1.5625em -1.5625em #84b332;
          box-shadow: inset 0 -3.125em 1.5625em -1.5625em #84b332;
}

.cb-first-section {
  background-image: url("../img/cb-bg-desk.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: -4.0625em;
  padding-top: 5em;
  padding-bottom: 1.5625em;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .cb-first-section {
    background-position-y: -0.5em;
    padding-top: 1.3125em;
    padding-bottom: 0.6875em;
  }
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-first-section {
    background-image: url("../img/img-mobile/cb-bg-mobile.jpg");
    padding-top: 1.25em;
    background-position-y: -0.9375em;
    margin-bottom: -0.1875em;
  }
}
.cb-first-section__name-wrapper {
  position: absolute;
  top: 35.625em;
  left: 50em;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .cb-first-section__name-wrapper {
    display: block;
    top: 1.25em;
    left: 1.25em;
  }
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-first-section__name-wrapper {
    top: 12.1875em;
    left: 1.875em;
  }
}
.cb-first-section__name {
  font-size: 1.875em;
  font-weight: 700;
  font-style: italic;
}
@media screen and (max-width: 1023px) {
  .cb-first-section__name {
    font-family: "Roboto", sans-serif;
    font-size: 0.875em;
  }
}
.cb-first-section__name-description {
  font-size: 0.9375em;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .cb-first-section__name-description {
    font-size: 0.4375em;
  }
}
.cb-first-section__title {
  font-family: "Roboto", sans-serif;
  font-size: 8.125em;
  color: white;
  text-transform: uppercase;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 0.3076923077em;
  position: relative;
  z-index: 2;
}
.cb-first-section__title::before {
  content: "time to win";
  display: block;
  text-transform: uppercase;
  text-shadow: 0px 0px 32px rgba(48, 74, 130, 0.7);
  -webkit-text-stroke: 2px #ff8f05;
  position: absolute;
  z-index: -1;
  top: 20px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#2f81e4), to(#213659));
  background: linear-gradient(180deg, #2f81e4, #213659);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  top: 0.0461538462em;
  left: 0.0538461538em;
}
@media screen and (max-width: 1023px) {
  .cb-first-section__title {
    font-size: 3.125em;
    margin-bottom: 0.3em;
  }
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-first-section__title {
    font-size: 2.875em;
    margin-bottom: 0.347826087em;
  }
}
.cb-first-section__subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 3em;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 1.1666666667em;
}
.cb-first-section__subtitle--accent {
  color: #feb820;
  position: relative;
}
.cb-first-section__subtitle--accent::before {
  content: "66000 inr";
  display: block;
  text-transform: uppercase;
  text-shadow: 0px 0px 32px rgba(48, 74, 130, 0.7);
  -webkit-text-stroke: 1px #ff8f05;
  position: absolute;
  z-index: -1;
  top: 20px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#2f81e4), to(#213659));
  background: linear-gradient(180deg, #2f81e4, #213659);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  top: 0.1458333333em;
  left: 0.0416666667em;
}
@media screen and (max-width: 1023px) {
  .cb-first-section__subtitle {
    font-size: 1.5em;
    margin-bottom: 1.0416666667em;
  }
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-first-section__subtitle {
    margin-bottom: 6.9583333333em;
  }
}
.cb-first-section__text-wrapper {
  width: 48em;
  margin-left: auto;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .cb-first-section__text-wrapper {
    width: 18.75em;
  }
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-first-section__text-wrapper {
    width: 100%;
  }
}
.cb-first-section__btn-reg {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1023px) {
  .cb-first-section__btn-reg {
    margin-bottom: 0.6875em;
  }
}
.cb-first-section__btn-rules {
  margin-bottom: 3.875em;
  padding-left: 0.3125em;
  padding-right: 0.3125em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1023px) {
  .cb-first-section__btn-rules {
    margin-bottom: 1.0625em;
  }
}
.cb-first-section__btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1.9375em;
}
@media screen and (max-width: 1190px) {
  .cb-first-section__btn-list {
    margin-left: 4.0625em;
  }
}
@media screen and (max-width: 1023px) {
  .cb-first-section__btn-list {
    margin-left: 0;
    margin-bottom: 0.75em;
  }
}
.cb-first-section__btn-bg {
  width: 11.125em;
}
@media screen and (max-width: 1023px) {
  .cb-first-section__btn-bg {
    width: 5.9375em;
  }
}
.cb-first-section__btn-item:not(:last-child) {
  margin-right: 1.25em;
}

.cb-steps-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-steps-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cb-steps-list__item {
  width: 25em;
  background-color: blue;
  padding-top: 2.6875em;
  padding-bottom: 2.6875em;
  border: 0.125em solid #ff8400;
  border-radius: 4.375em;
  padding-right: 2.1875em;
  background-image: url("../img/cb-bg-steps.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.cb-steps-list__item--2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .cb-steps-list__item {
    width: 12.125em;
    padding-top: 0.9375em;
    padding-bottom: 0.9375em;
    padding-right: 1.0625em;
  }
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-steps-list__item {
    min-height: 3.875em;
  }
  .cb-steps-list__item:not(:last-child) {
    margin-bottom: 1.0625em;
  }
}
.cb-steps-list__text {
  font-family: "Roboto", sans-serif;
  font-size: 1.5em;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  font-style: italic;
  padding-left: 6.25em;
  text-align: center;
}
.cb-steps-list__text--1 {
  position: relative;
}
.cb-steps-list__text--1::before {
  content: "";
  background-image: url("../img/cb-step-1.png");
  background-size: cover;
  width: 4.0833333333em;
  height: 5.875em;
  display: block;
  position: absolute;
  top: -1.9166666667em;
  left: 1.375em;
}
@media screen and (max-width: 1023px) {
  .cb-steps-list__text--1::before {
    width: 3.0833333333em;
    height: 3.875em;
    top: -1.25em;
    left: 0.5833333333em;
  }
}
.cb-steps-list__text--2 {
  position: relative;
}
.cb-steps-list__text--2::before {
  content: "";
  background-image: url("../img/cb-step-2.png");
  background-size: cover;
  width: 4.0833333333em;
  height: 5.875em;
  display: block;
  position: absolute;
  top: -2.4583333333em;
  left: 1.375em;
}
@media screen and (max-width: 1023px) {
  .cb-steps-list__text--2::before {
    width: 3.0833333333em;
    height: 3.875em;
    top: -1.5833333333em;
    left: 0.5833333333em;
  }
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-steps-list__text--2::before {
    left: 0.25em;
  }
}
.cb-steps-list__text--3 {
  position: relative;
}
.cb-steps-list__text--3::before {
  content: "";
  background-image: url("../img/cb-step-3.png");
  background-size: cover;
  width: 4.0833333333em;
  height: 5.875em;
  display: block;
  position: absolute;
  top: -1.9166666667em;
  left: 1.375em;
}
@media screen and (max-width: 1023px) {
  .cb-steps-list__text--3::before {
    width: 3.0833333333em;
    height: 3.875em;
    top: -1.0416666667em;
    left: 0.5833333333em;
  }
}
@media screen and (max-width: 1023px) {
  .cb-steps-list__text {
    font-size: 0.875em;
    padding-left: 3.5714285714em;
  }
}

.cb-addition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  bottom: 5%;
  left: 0;
  z-index: 999;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  font-size: 11px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cb-addition__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 30px;
  margin-bottom: 5px;
  outline: none;
  border: 0;
  border-radius: 0 25px 25px 0;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: white;
  text-transform: uppercase;
  color: #00213d;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  z-index: 100;
}
.cb-addition__btn--1 {
  top: 18.75em;
}
@media screen and (max-width: 1023px) {
  .cb-addition__btn--1 {
    top: 9.375em;
  }
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-addition__btn--1 {
    top: 12.5em;
  }
}
.cb-addition__btn:last-child {
  margin-bottom: 0;
}
.cb-addition__btn:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 100ms ease;
  transition: all 100ms ease;
}
.cb-addition__btn:hover {
  background: #ff3300;
  color: white;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cb-addition__btn:hover .te-addition__btn-text {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cb-addition__btn-text {
  visibility: hidden;
  opacity: 0;
  display: block;
  position: absolute;
  right: -100%;
  width: 100%;
  font-weight: 700;
  color: white;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cb-wrapper {
  position: relative;
  overflow: hidden;
  background-size: auto;
  direction: ltr;
  font-family: "Roboto", sans-serif;
  font-size: 0.8333333333vw;
  font-weight: bold;
  line-height: 1;
  color: white;
  background-color: #050000;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-smooth: antialiased;
}
@media screen and (max-width: 1023px) {
  .cb-wrapper {
    font-size: 2.5vw;
    max-width: 100%;
    margin-top: -2.5em;
    padding-top: 2.5em;
  }
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-wrapper {
    font-size: 5vw;
  }
}

.no-scroll {
  overflow: hidden;
}

.v--modal-overlay .v--modal-background-click {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0.8125em;
  padding-right: 0.8125em;
}

.v--modal-overlay .v--modal-box {
  position: static;
  width: auto !important;
  height: auto !important;
  background: transparent;
}

.v--modal {
  overflow: inherit !important;
  font-size: 16px;
}

.v--modal-overlay {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.cb-modal {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0.125em solid #ff8400;
  -webkit-box-shadow: 0 0 1.25em 0 rgba(255, 234, 117, 0.3);
          box-shadow: 0 0 1.25em 0 rgba(255, 234, 117, 0.3);
  border-radius: 1.25em;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: white;
  -webkit-transition: 1.5s ease 0.5s;
  transition: 1.5s ease 0.5s;
  position: relative;
  max-width: 51.8125em;
  width: 100%;
  background-image: url("../img/cb-bg-modal.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 1.8125em;
  padding-right: 1.25em;
  padding-bottom: 0.875em;
  padding-left: 2.5em;
}
@media screen and (max-width: 1023px) {
  .cb-modal {
    height: 18em;
    padding-top: 0.625em;
  }
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-modal {
    max-width: 19em;
    height: 21.875em;
    padding-top: 1.25em;
    padding-right: 1.5625em;
    padding-left: 0.8125em;
  }
}
.cb-modal__close {
  position: absolute;
  top: -1.25em;
  z-index: 1;
  cursor: pointer;
  padding: 0;
  width: 2.6875em;
  height: 2.6875em;
  border: none;
  background: url("../img/cb-close.png") 50% 50%/cover;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  right: -1.25em;
}
.cb-modal__close:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (max-width: 1023px) {
  .cb-modal__close {
    width: 2.3125em;
    height: 2.3125em;
    top: -0.875em;
    right: -0.4375em;
  }
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-modal__close {
    width: 2.1875em;
    height: 2.1875em;
    top: -0.625em;
    right: -0.625em;
  }
}

.cb-modal-rules {
  height: 24.375em;
  overflow-y: scroll;
  padding-right: 2.5em;
}
@media screen and (max-width: 1023px) {
  .cb-modal-rules {
    height: 16.25em;
    padding-right: 0;
  }
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-modal-rules {
    height: 19.375em;
  }
}
.cb-modal-rules__title {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  text-align: center;
  font-style: italic;
  margin-bottom: 0.4166666667em;
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-modal-rules__title {
    font-size: 1.125em;
  }
}
.cb-modal-rules__subtitle {
  font-size: 1em;
  color: white;
  line-height: 1.25;
  margin-bottom: 1.0625em;
  font-weight: 400;
  font-style: italic;
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-modal-rules__subtitle {
    font-size: 0.875em;
    text-transform: none;
  }
}
.cb-modal-rules__list {
  counter-reset: item;
}
.cb-modal-rules__item-title {
  font-size: 1.25em;
  color: white;
  font-weight: 400;
  margin-bottom: 0.5em;
  font-style: italic;
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-modal-rules__item-title {
    font-size: 0.875em;
    margin-bottom: 0.5714285714em;
  }
}
.cb-modal-rules__item-main {
  margin-bottom: 1.25em;
}
.cb-modal-rules__item {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.2;
}
.cb-modal-rules__item:not(:last-child) {
  margin-bottom: 0.5625em;
}
.cb-modal-rules__item:before {
  content: counter(item) ")";
  counter-increment: item;
  color: white;
  margin-right: 0.5em;
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-modal-rules__item {
    font-size: 0.875em;
  }
}
.cb-modal-rules__item--unordered {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.2;
  font-style: italic;
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-modal-rules__item--unordered {
    font-size: 0.875em;
  }
}
.cb-modal-rules__item--unordered:before {
  display: none;
}
.cb-modal-rules__text {
  display: contents;
}
.cb-modal-rules__text--accent {
  color: white;
}
.cb-modal-rules__after-text {
  font-size: 1em;
  font-weight: 400;
}
@media screen and (orientation: portrait) and (max-width: 639px) {
  .cb-modal-rules__after-text {
    font-size: 0.875em;
  }
}
