
.flex-sbc, .flex-sbs, .flex-sbe,
.flex-cc, .flex-cs, .flex-ce,
.flex-sc, .flex-ss, .flex-se,
.flex-ec, .flex-es, .flex-ee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-sbc, .flex-sbs, .flex-sbe {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-cc, .flex-cs, .flex-ce {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-sc, .flex-ss, .flex-se {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-ec, .flex-es, .flex-ee {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-sbc, .flex-cc, .flex-sc, .flex-ec {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-sbs, .flex-cs, .flex-ss, .flex-es {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-sbe, .flex-ce, .flex-se, .flex-ee {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}


/*@media (max-width: 1024px) {*/
/*    .wrapper {*/
/*        background-position: 50% 866px, 80% 0px, 50% 100%;*/
/*    }*/
/*}*/
.content-area {
  max-width: 1400px;
  width: calc(100% - 60px);
  margin: 0 auto;
  height: auto;
  position: relative;
  z-index: 1;
  -ms-flex-line-pack: center;
      align-content: center;
}

@media (max-width: 1300px) {
  .content-area {
    width: calc(100% - 40px);
  }
}

.button {
  width: 100%;
  height: 44px;
  position: relative;
  z-index: 1;
  border-radius: 44px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav {
  width: 100%;
  position: relative;
  z-index: 3;
}

.nav .content-area {
  height: 82px;
  border-bottom: 1px solid #897c9e38;
}

.nav__langs {
  width: 27px;
  height: 27px;
  position: relative;
  z-index: 2;
  margin-right: calc(18px + 50px);
}

@media (max-width: 1400px) {
  .nav__langs {
    margin-right: calc(15px + 20px);
  }
}

.nav__langs:after {
  content: '';
  width: 8px;
  height: 4px;
  position: absolute;
  top: calc((100% - 4px) / 2);
  right: -15px;
  background: url("../images/langs/arrow.html") center center no-repeat;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.nav__langs:before {
  content: '';
  width: 33px;
  height: 33px;
  position: absolute;
  top: -3px;
  left: -3px;
  background: url("../images/langs/circle.html") center center no-repeat;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  z-index: -1;
}

.nav__langs.active:after {
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

.nav__langs-current {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: -webkit-filter .3s ease-in-out;
  transition: -webkit-filter .3s ease-in-out;
  transition: filter .3s ease-in-out;
  transition: filter .3s ease-in-out, -webkit-filter .3s ease-in-out;
}

.nav__langs-current:hover {
  -webkit-filter: brightness(130%);
  filter: brightness(130%);
}

.nav__langs-current img {
  width: 100%;
  height: 100%;
}

.nav__langs-stroke {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-35px);
  transform: translateX(-50%) translateY(-35px);
  list-style: none;
  padding: 5px;
  border-radius: 100px;
  background: #332548;
  -webkit-transition: opacity .3s ease-in-out, -webkit-transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, -webkit-transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.nav__langs-stroke li {
  width: 30px;
  height: 30px;
  -webkit-transition: -webkit-filter .3s ease-in-out;
  transition: -webkit-filter .3s ease-in-out;
  transition: filter .3s ease-in-out;
  transition: filter .3s ease-in-out, -webkit-filter .3s ease-in-out;
}

.nav__langs-stroke li:hover {
  -webkit-filter: brightness(130%);
  filter: brightness(130%);
}

.nav__langs-stroke li:not(:last-child) {
  margin-bottom: 5px;
}

.nav__langs-stroke li img {
  display: block;
  width: 100%;
  height: 100%;
}

.nav__langs.active .nav__langs-stroke {
  -webkit-transform: translateX(-50%) translateY(0%);
  transform: translateX(-50%) translateY(0%);
  opacity: 1;
  pointer-events: all;
}

.nav__links {
  position: relative;
  z-index: 2;
  list-style: none;
}

@media (max-width: 1024px) {
  .nav__links {
    width: 280px;
    height: auto;
    position: absolute;
    top: 100%;
    left: 0px;
    background: url("../images/bg/mobile_nav_bg.html") #332548 top center;
    border-radius: 5px;
    display: none;
  }
  .nav__links li a {
    line-height: 20px !important;
  }
}

@media (max-width: 460px) {
  .nav__links {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .nav__links li {
    width: 100%;
  }
  .main-votes {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
    position: relative;
  }
}

.nav__links li:not(:last-child) {
  margin-right: 40px;
}

@media (max-width: 1400px) {
  .nav__links li:not(:last-child) {
    margin-right: 20px;
  }
}

@media (max-width: 1024px) {
  .nav__links li:not(:last-child) {
    margin-right: 0px;
    /* border-bottom: 1px solid #ede6da; */
  }
}

.nav__links li a {
  position: relative;
  font-size: 14px;
  font-family: "PT Serif";
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 82px;
  display: block;
  -webkit-transition: color .2s ease-in-out, opacity .2s ease-in-out;
  transition: color .2s ease-in-out, opacity .2s ease-in-out;
}

@media (max-width: 1024px) {
  .nav__links li a {
    display: block;
    width: 100%;
    padding: 15px 15px 13px;
  }
}

.nav__links li:after {
  opacity: 0;
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: #ff7278;
  pointer-events: none;
  -webkit-transition: opacity .3s ease-in-out, -webkit-transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out, opacity .3s ease-in-out;
  transition: transform .3s ease-in-out, opacity .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

@media (max-width: 1024px) {
  .nav__links li a:after {
    display: none;
  }
}



.inner-page {
  width: 100%;
  height: auto;
}

.inner-page .content-area {
  border-radius: 15px;
  background: url("../images/bg/inner_page_bg.html") rgba(35, 30, 42, 0.83) top center no-repeat;
}

.inner-page__title {
  width: 100%;
  padding: 40px 30px;
  border-bottom: 1px solid rgba(129, 109, 161, 0.23);
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .inner-page__title {
    padding: 30px 20px;
  }
}

.inner-page__title-big {
  width: 100%;
  text-align: center;
  font-family: "PT Serif";
  color: #fff;
  font-size: 28px;
  line-height: 28px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .inner-page__title-big {
    font-size: 20px;
    line-height: 20px;
  }
}

.inner-page__title-small {
  width: 100%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 14px;
  color: #a4a2a7;
  margin-top: 10px;
}

.inner-page__title:after {
  content: '';
  width: 70px;
  height: 68px;
  background: url("../images/bg/decor_bg.html") center center no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  position: absolute;
  bottom: -34px;
  left: calc( ( 100% - 70px ) / 2);
}

.inner-page__content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.content-nav {
  width: 100%;
  padding: 20px;
  border-bottom: 1px solid rgba(129, 109, 161, 0.23);
  background: rgba(22, 18, 26, 0.4);
}

@media (max-width: 1024px) {
  .content-nav {
    padding: 10px;
  }
}

.content-nav .btn {
  width: auto;
  height: 40px;
  margin: 10px;
  font-size: 14px;
  line-height: 14px;
}

.content-nav .btn span {
  padding: 0px 20px;
}

.content-nav .btn span:after {
  height: 32px;
}

.content-forms {
  width: 100%;
  position: relative;
}

.content-forms__item {
  width: 100%;
  padding: 30px;
  position: absolute;
  top: 0px;
  left: 0px;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: opacity .3s ease-in-out, -webkit-transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, -webkit-transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.content-forms__item.active {
  position: relative;
  pointer-events: all;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media (max-width: 1024px) {
  .content-forms__item {
    padding: 20px;
  }
}

.content-box {
  width: 100%;
  position: relative;
}

.content-box__item {
  width: 100%;
  padding: 30px;
  position: absolute;
  top: 0px;
  left: 0px;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: opacity .3s ease-in-out, -webkit-transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, -webkit-transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.content-box__item.active {
  position: relative;
  pointer-events: all;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media (max-width: 1024px) {
  .content-box__item {
    padding: 20px;
  }
}

.subform {
  width: 100%;
  padding: 0px calc( ( 100% - 500px ) / 2);
}

.form-group {
  width: 100%;
}

.form-group:not(:last-child) {
  margin-bottom: 20px;
}

.form-group.d-none {
  display: none;
}

.form-group label, .form-group .control-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  line-height: 12px;
  color: #95909d;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.form-group .control-label {
  width: 100%;
  display: block;
}

.form-group input.form-control, .form-group select.form-control {
  width: 100%;
  height: 44px;
  border-radius: 5px;
  background: rgba(22, 18, 26, 0.4);
  padding: 0px 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 14px;
  color: #d5d0df;
}

.form-group option {
  background-color: #1d1923;
}

.alert {
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  border-width: 2px;
  border-style: solid;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 16px;
  color: #95909d;
}

.alert.d-none {
  display: none;
}

.alert.alert-danger {
  border-color: #ff516e;
  color: #ff516e;
}

.has-padding {
  padding: 30px;
}

@media (max-width: 1024px) {
  .has-padding {
    padding: 20px;
  }
}

.text-box {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #a4a2a7;
}

.text-box > *:not(:first-child) {
  margin-top: 10px;
}

.text-box > *:last-child {
  margin-bottom: 0px;
}

.text-box a:not(.btn) {
  color: #ccc9d1;
  text-decoration: underline;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  cursor: pointer;
}

.text-box a:not(.btn):hover {
  color: #dd5f58;
  text-decoration: none;
}

.text-box b, .text-box strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #a4a2a7;
}

.text-box h1, .text-box h2, .text-box h3, .text-box h4, .text-box h5, .text-box h6 {
  font-family: "PT Serif";
  color: #fff;
}

.text-box h1:first-child, .text-box h2:first-child, .text-box h3:first-child, .text-box h4:first-child, .text-box h5:first-child, .text-box h6:first-child {
  padding-top: 0px;
}

.text-box h1:not(:first-child), .text-box h2:not(:first-child), .text-box h3:not(:first-child), .text-box h4:not(:first-child), .text-box h5:not(:first-child), .text-box h6:not(:first-child) {
  margin-top: 30px;
}

.text-box h1 {
  font-size: 28px;
}

.text-box h2 {
  font-size: 26px;
}

.text-box h3 {
  font-size: 20px;
}

.text-box h4, .text-box h5, .text-box h6 {
  font-size: 16px;
}

.text-box ul, .text-box ol {
  width: 100%;
  padding-left: 17px;
}

.text-box ul li, .text-box ol li {
  color: #a4a2a7;
  font-size: 16px;
  line-height: 24px;
}

.text-box ul li:not(:last-child), .text-box ol li:not(:last-child) {
  margin-bottom: 10px;
}

.text-box ol li::marker {
  color: #fff !important;
}

.text-box img {
  border-radius: 5px;
  max-width: 100%;
}

.donate-table-title {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-family: "PT Serif";
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  margin-top: 30px !important;
}

@media (max-width: 480px) {
  .donate-table-title {
    font-size: 24px;
    line-height: 24px;
  }
}

.donate-table-bg {
  width: 100%;
  margin-top: 20px !important;
  background: #1d1822;
  border-radius: 5px;
  border-top: 2px solid #4f4958;
}

@media (max-width: 640px) {
  .donate-table-bg {
    font-size: 14px;
    line-height: 20px;
    overflow-x: scroll;
  }
}

.donate-table-bg img {
  border-radius: 50%;
}

.donate-table {
  width: 100%;
  min-width: 600px;
  padding: 12px 20px;
}

.donate-table tr:not(:last-child) td {
  border-bottom: 1px solid #302b38;
}

.donate-table tr td {
  padding: 8px 0px;
}

.donate-table tr td:not(:first-child) {
  padding-left: 15px;
}

.donate-table tr td img {
  margin-right: 15px;
}

.donate-table.shop {
  padding: 0px 20px;
}

.donate-table.shop tr td {
  padding: 20px 0px;
}

.price {
  width: 100%;
  line-height: 16px;
  margin-top: 10px;
  color: #ffd400 !important;
}

.price img {
  width: 18px;
  height: 18px;
  margin-right: 5px !important;
}

.desc-line {
  width: 100%;
}

.desc-line__icon {
  width: 24px;
  height: 24px;
}

.desc-line__icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.desc-line__text {
  width: calc( 100% - 24px);
  padding-left: 10px;
  padding-top: 1px;
}

.desc-table {
  width: 100%;
  background: #1d1822;
  border-radius: 5px;
  padding: 10px;
}

.desc-table:not(:first-child) {
  margin-top: 15px;
}

.desc-table .desc-line {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  padding: 5px;
}

.desc-table.col-1 .desc-line {
  width: 100%;
}

.desc-table.col-2 .desc-line {
  width: calc( ( 100% - 40px ) / 2);
}

@media (max-width: 800px) {
  .desc-table.col-2 .desc-line {
    width: calc( ( 100% - 30px ) / 2);
  }
}

@media (max-width: 600px) {
  .desc-table.col-2 .desc-line {
    width: 100%;
  }
}

.desc-table.col-3 .desc-line {
  width: calc( ( 100% - 80px ) / 3);
}

@media (max-width: 800px) {
  .desc-table.col-3 .desc-line {
    width: calc( ( 100% - 30px ) / 2);
  }
}

@media (max-width: 600px) {
  .desc-table.col-3 .desc-line {
    width: 100%;
  }
}

.start-game {
  width: 100%;
}

.start-game__step {
  width: 44px;
  pointer-events: none;
  margin: 0 auto;
}

.start-game__box {
  width: 100%;
  padding: 50px 30px;
}

@media (max-width: 1024px) {
  .start-game__box {
    padding: 20px;
  }
}

.start-game__box:not(:last-child) {
  border-bottom: 1px solid rgba(129, 109, 161, 0.23);
}

.start-game__box-title {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-family: "PT Serif";
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  line-height: 22px;
  margin-top: 15px;
}

.start-game__box-title span {
  color: #ff7278;
}

.start-game__box-sub {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #a4a2a7;
  text-align: center;
  margin-top: 5px;
}

.start-game__box .start-reg-btn {
  width: 200px;
  margin: 20px auto 0px;
}

.start-game__box-links {
  width: calc( 100% + 10px);
  margin: 15px -5px -5px;
}

.start-game__box-link {
  width: 100%;
  position: relative;
  width: 180px;
  height: 110px;
  border: 1px solid #996fd9;
  border-radius: 15px;
  margin: 5px;
}

.start-game__box-link:after {
  content: '';
  width: calc( 100% - 10px);
  height: calc( 100% - 10px);
  position: absolute;
  top: 4px;
  left: 4px;
  border: 1px solid #402d5e;
  border-radius: 12px;
  -webkit-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
  z-index: 1;
}

.start-game__box-link:hover:after {
  background-color: #402d5e;
}

.start-game__box-link-content {
  width: 100%;
  position: relative;
  z-index: 2;
}

.start-game__box-link-icon {
  width: 44px;
  height: 44px;
  margin: -10px auto;
}

.start-game__box-link-icon img {
  width: 100%;
  height: 100%;
}

.start-game__box-link-name {
  width: 100%;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin-top: 10px;
}

.start-game__box-link-size {
  width: 100%;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  color: #6c6979;
  text-align: center;
  margin-top: 5px;
}

.stat-nav {
  width: 100%;
  padding: 20px;
  border-bottom: 1px solid rgba(129, 109, 161, 0.23);
}

@media (max-width: 1024px) {
  .stat-nav {
    padding: 10px;
  }
}

.stat-nav .btn {
  width: auto;
  height: 40px;
  margin: 10px;
  font-size: 14px;
  line-height: 14px;
}

.stat-nav .btn span {
  padding: 0px 20px;
}

.stat-nav .btn span:after {
  height: 32px;
}

.stat-table {
  width: 100%;
  min-width: 660px;
}

.stat-table tr th {
  padding: 15px 15px;
  text-align: center;
  text-transform: uppercase;
  font-family: "PT Serif";
  color: #9c95a5;
  font-weight: bold;
  font-size: 12px;
  line-height: 12px;
  background: #1d1822;
}

.stat-table tr td {
  padding: 15px;
  background: #1d1722;
}

.stat-table tr td:nth-child(even) {
  background: #1f1a25;
}

.stat-table tr:nth-child(even) td {
  background: #1a151f;
}

.stat-table tr:nth-child(even) td:nth-child(even) {
  background: #1d1823;
}

.stat-table tr:first-child td:first-child, .stat-table tr:first-child th:first-child {
  border-top-left-radius: 10px;
}

.stat-table tr:first-child td:last-child, .stat-table tr:first-child th:last-child {
  border-top-right-radius: 10px;
}

.stat-table tr:last-child td:first-child, .stat-table tr:last-child th:first-child {
  border-bottom-left-radius: 10px;
}

.stat-table tr:last-child td:last-child, .stat-table tr:last-child th:last-child {
  border-bottom-right-radius: 10px;
}

.page-statistic {
  overflow-x: scroll;
}

.page-statistic input, .page-statistic select {
  width: 100%;
  height: 44px;
  border-radius: 5px;
  background: rgba(22, 18, 26, 0.4);
  padding: 0px 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 14px;
  color: #d5d0df;
  margin: 10px 0px;
}

.page-statistic option {
  background-color: #1d1923;
}

.stat-sub-nav {
  margin: -10px -10px 20px;
}

.stat-sub-nav .btn {
  width: auto;
  height: 40px;
  margin: 10px;
  font-size: 14px;
  line-height: 14px;
}

.stat-sub-nav .btn span {
  padding: 0px 20px;
}

.stat-sub-nav .btn span:after {
  height: 32px;
}

.stat-sub-nav center {
  width: 100%;
}

.stat-sub-nav .contact-form {
  width: 100%;
}

table.pt20px {
  margin-top: 20px;
}

.popup_mask {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9000;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8; }

.popup_discord {
  display: block;
  position: fixed;
  left: calc(50% - 300px);
  top: calc(50% - 200px);
  width: 600px;
  height: 400px;
  z-index: 9999;
  background: url("../images/discord-popup.html") #ffffff no-repeat center center;
  border: 5px solid #ffffff;
  border-radius: 5px; }

.popup_discord .close {
  background: #999999;
  border-radius: 50%;
  border: 5px solid #ffffff;
  position: absolute;
  left: 576px;
  top: -19px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  color: #ffffff;
  font-family: 'Comic Sans MS';
  font-size: 17px;
  text-align: center;
  opacity: 1.0; }

.popup_discord .link {
  position: absolute;
  left: 151px;
  top: 300px;
  width: 287px;
  height: 78px; }

.popup_discord .close:hover {
  opacity: 1 !important; }

.timer {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .timer {
    width: 520px;
  }
}

@media (max-width: 580px) {
  .timer {
    width: 100%;
  }
}

.timer__title {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-family: "PT Serif";
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .timer__title {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 20px;
  }
}

.timer__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.timer__item {
  width: 100px;
  text-align: center;
}

@media (max-width: 1024px) {
  .timer__item {
    width: auto;
  }
}

.timer__item div {
  font-family: "PT Serif";
  font-weight: bold;
  color: #ff7278;
  font-size: 70px;
  line-height: 1;
}

@media (max-width: 1024px) {
  .timer__item div {
    font-size: 60px;
    text-shadow: 0px 2px 4px #4a1313;
  }
}

@media (max-width: 580px) {
  .timer__item div {
    font-size: 40px;
  }
}

.timer__item span {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 1024px) {
  .timer__item span {
    font-size: 14px;
  }
}

@media (max-width: 580px) {
  .timer__item span {
    font-size: 12px;
  }
}

.timer__line img {
  width: 40px;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .timer__line img {
    width: 30px;
  }
}

.timer__sep {
  display: block;
  margin: 0 auto;
}
