*,
:root {
  --primary-font-family: "Raleway", sans-serif;
  --extra-font-family: "Example Font", sans-serif;
  --accent-color: #ee334e;
  --text-color: #999898;
  --text-on-white: #ffffff;
}

ul {
  margin: 0;
  padding: 0;
}

* {
  border: 0;
}

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

:active,
:focus,
a:active,
a:focus {
  outline: 0;
}

aside,
footer,
header,
nav {
  display: block;
}

body,
html {
  font: 14px/1 var(--primary-font-family);
  height: 100%;
  width: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  display: flex;
  flex-direction: column;
  color: var(--text-on-white);
}

body {
  background: #22252c;
  padding: 0;
  margin: 0;
}

.main {
  flex: 1 1 auto;
}

button,
input,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: 0 0;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:hover,
a:visited {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

[class*=__container] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 1200px) {
  [class*=__container] {
    max-width: 960px;
  }
}
@media (max-width: 992px) {
  [class*=__container] {
    max-width: 768px;
  }
}
@media (max-width: 768px) {
  [class*=__container] {
    max-width: 540px;
  }
}

.header {
  padding: 45px 0 15px 0;
}
.header_mod {
  padding: 60px 0;
  background: url("../img/banner-bg.jpg") no-repeat center/cover;
}
.header_mod__title {
  color: #fff;
  background: #21252b;
  padding: 11px 25px;
  display: inline-block;
}
.header__container_mod {
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes pulse {
  0% {
    transform: scale(1); /* Обычный размер */
  }
  50% {
    transform: scale(1.1); /* Немного увеличенный размер */
  }
  100% {
    transform: scale(1); /* Возврат к обычному размеру */
  }
}

/* Класс для кнопки с анимацией */
.pulse-animation {
  display: inline-block;
  animation: pulse 1.5s infinite; /* Пульсация каждые 1.5 секунды */
  transition: transform 0.3s ease;
}
.header__logo {
  display: block;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.header__logo img {
  width: 100%;
  height: 100%;
}
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 60px;
  margin: 0 auto;
}

.intro .container {
  height: 100%;
}

.offer {
  padding: 20px 0;
}
.offer__container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .offer__container {
    flex-wrap: wrap;
  }
}
.offer__block:nth-child(1) {
  flex: 0 0 65%;
  position: relative;
  padding-right: 40px;
}
.offer__block:nth-child(1)::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  background: #3b4046;
  height: 100%;
  width: 1px;
}

.links-list {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.links-list li:not(last-child) {
  margin-right: 30px;
}
@media (max-width: 768px) {
  .offer__block:nth-child(1)::after {
    display: none;
  }
  .links-list {
    justify-content: space-between;
  }
}
@media (max-width: 1200px) {
  .offer__block:nth-child(1) {
    padding-right: 20px;
    flex: 0 0 60%;
  }
}
@media (max-width: 768px) {
  .offer__block:nth-child(1) {
    flex: 0 0 100%;
  }
}
.offer__block:nth-child(2) {
  flex: 0 0 35%;
  padding-left: 40px;
}
@media (max-width: 1200px) {
  .offer__block:nth-child(2) {
    padding-left: 20px;
    flex: 0 0 40%;
  }
}
@media (max-width: 768px) {
  .offer__block:nth-child(2) {
    flex: 0 0 100%;
    padding-left: 0;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  
  .links-list {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    display: none;
  }

  .links-list li:not(last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.offer__sites {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  row-gap: 15px;
}
.offer__sites li {
  display: flex;
  align-items: center;
}
.offer__sites li span {
  display: block;
  margin-right: 12px;
}
.offer__title {
  font-size: 30px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.offer__title span {
  color: var(--accent-color);
}
.offer__block-title {
  color: var(--accent-color);
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 25px;
}
.offer__block-text {
  color: #fff;
}

.footer {
  background: #22252c;
  padding: 20px 0 0 0;
}
.footer__header {
  padding-top: 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .footer__header {
    flex-wrap: wrap;
  }
}
.footer__logo {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}
.footer__logo p::after {
  content: "";
  color: red;
}
.footer__logo img {
  width: 100%;
  height: 100%;
}
.footer__nav {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #3b4046;
}
.footer__nav ul {
  display: flex;
}
.footer__nav ul li:not(:last-child) {
  margin-right: 20px;
}
@media (max-width: 768px) {
  .footer__nav ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.footer__nav ul li a {
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}
@media (max-width: 768px) {
  .footer__nav ul {
    flex: 0 0 100%;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .footer__nav ul {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .footer__nav {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    width: 100%;
    margin-top: 20px;
  }
}
.footer__text {
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
  margin: 20px 0;
}
.footer__text a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: underline;
}
.footer__help-list {
  display: flex;
  align-items: center;
  margin: 20px auto 60px auto;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .footer__help-list {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .footer__help-list {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
.footer__help-list li {
  max-width: 120px;
}
.footer__help-list li:first-child svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}
.footer__help-list li a {
  display: block;
}
.footer__help-list li img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .footer__help-list li {
    margin: 20px;
  }
}
.footer__copy {
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  padding: 20px 0;
  background: #2b2e34;
}

.custom-logo span {
  color: var(--accent-color);
}

.icon-title {
  display: flex;
  align-items: center;
}
.icon-title span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-color);
  width: 60px;
  height: 60px;
  margin-right: 10px;
  flex-grow: 0;
  flex-shrink: 0;
}
.icon-title span img {
  width: 40%;
  height: 40%;
}

.list {
  padding: 0 0 25px 0;
}
.list__header {
  display: grid;
  grid-template-columns: repeat(30, 1fr);
  padding: 15px 0;
  border-radius: 4px 4px 0 0;
  background: #2b2d33;
}
.list__header p {
  text-align: center;
  font-weight: 600;
}
.list__header p:nth-child(1) {
  grid-column: span 8;
}
.list__header p:nth-child(2) {
  grid-column: span 8;
}
.list__header p:nth-child(3) {
  grid-column: span 7;
}
.list__header p:nth-child(4) {
  grid-column: span 7;
}
.list__header p:nth-child(5) {
  grid-column: span 5;
}
@media (max-width: 768px) {
  .list__header {
    display: none;
  }
}
.list__item {
  background: #fff;
  position: relative;
  display: flex;
  padding-top: 25px;
}

.list__item_pl {
  background: #fff;
  position: relative;
  display: flex;
}

.banner {
  display: block;
  width: 100%;
}

.banner .banner-pic img {
  width: 90%
}

.banner .banner-text {
  position: relative;
  z-index: 2
}

.banner {
  position: relative
}

.banner .banner-pic {
  position: unset !important
}

.banner .banner-pic img {
  position: absolute;
  display: block !important;
  width: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  opacity: .1
}

@media (max-width:767.98px) {
  .banner .banner-pic img.pokerpage {
     top: -60px
  }
}
.banner .amenity {
  background-color: #1c1c31;
  border-radius: 5px;
  font-size: 13px;
  padding: 8px 12px;
  display: inline-block;
  margin: 0 5px 8px 0
}

.banner .amenity.main {
  background-color: #01fec5;
  color: #141423 !important;
  font-weight: 700
}

.banner .amenity i {
  margin-right: 3px;
  font-size: 13px
}
.bannerholder {
  width: 100%;
  display: block !important;
  color: unset !important;
  text-decoration: none !important
}

.bannerholder h1 {
  font-weight: 500;
  font-size: 30px
}

.list__item:not(:last-child) {
  margin-bottom: 3px;
}
.list__item:last-child {
  border-radius: 0 0 4px 4px;
}
.list__flag {
  position: absolute;
  left: -6px;
  top: 0;
  width: 140px;
  height: 40px;
}
.list__flag div {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 6px 0;
  background: url("../img/flag.svg") no-repeat top/contain;
}
.list__flag div p {
  color: #000;
  font-size: 12px;
  font-weight: 600;
}
.list__index {
  color: #000;
  background: #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  flex: 0 0 3%;
}
@media (max-width: 768px) {
  .list__index {
    padding: 0px 12px;
  }
}
.list__grid {
  padding: 20px 0 10px 0;
  display: grid;
  grid-template-columns: repeat(30, 1fr);
  row-gap: 30px;
  width: 100%;
}


.list__casino {
  grid-column-start: 1;
  grid-column-end: 8;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .list__casino {
    grid-column-start: 1;
    grid-column-end: 14;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 375px) {
  .list__casino {
    grid-column-start: 1;
    grid-column-end: 30;
  }
}
.list__mobile-grade {
  color: #5b980f;
  font-size: 34px;
}
@media (min-width: 768px) {
  .list__mobile-grade {
    display: none;
  }
}
.list__img {
  max-width: 140px;
  flex: 0 0 100%;
}
.list__img img {
  width: 100%;
  height: 100%;
  display: block;
}
.list__bonus {
  color: #000000;
  grid-column-start: 8;
  grid-column-end: 18;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.list__bonus p {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .list__bonus {
    grid-column-start: 14;
    grid-column-end: 30;
    display: flex;
    flex-direction: column;
    padding: 20px;
  }
  .list__bonus .list__go {
    display: block;
    width: 100%;
  }
  .list__bonus .list__go .list__go_link {
    max-width: 100%;
    margin: 20px auto 0 auto;
  }
  .list__bonus .list__go .list__go_line-link {
    display: none;
  }

  .list__grid {
    display: block;
  }
}
@media (max-width: 375px) {
  .list__bonus {
    grid-column-start: 1;
    grid-column-end: 30;
    padding: 0 15px;
  }
}
.list__mobile-row {
  display: flex;
  justify-content: space-around;
  flex: 0 0 80%;
  align-items: center;
}
@media (min-width: 768px) {
  .list__mobile-row {
    display: none;
  }
}
.list__mobile-stars {
  display: flex;
}
.list__mobile-stars img {
  width: 15px;
  height: 15px;
}
.list__rating {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.list__rating p {
  color: #000;
  text-align: center;
  font-size: 12px;
  margin-bottom: 10px;
}
.list__rating img {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .list__rating {
    display: none;
  }
}
.list__grade {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column-start: 18;
  grid-column-end: 23;
  flex-direction: column;
}
.list__grade p {
  font-size: 36px;
  font-weight: 700;
  color: #343e62;
}
@media (max-width: 768px) {
  .list__grade {
    display: none;
  }
}
.list__grade-mark {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  text-align: center;
  background: #1ed760;
  font-weight: 700;
  margin-top: 10px;
}
.list__go {
  grid-column-start: 24;
  grid-column-end: 31;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.list__go_link {
  display: block;
  border-radius: 4px;
  color: #000e20;
  background: #ffc900;
  text-align: center;
  width: 80%;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}
.list__go_line-link {
  color: #6c6c6c;
  font-size: 12px;
  margin-top: 0.25rem;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .list__go {
    
  }
}
.list__alert {
  grid-column-start: 2;
  grid-column-end: 30;
  text-align: center;
  font-size: 10px;
  color: #858b96;
  line-height: 1.5;
  font-weight: 600;
}
.list__alert span {
  color: var(--accent-color);
  font-weight: 900;
}

.info {
  padding: 25px 0;
  background: #fff;
}
.info__wrapper {
  display: flex;
  gap: 25px;
}
@media (max-width: 768px) {
  .info__wrapper {
    flex-wrap: wrap;
  }
}
.info__sec-block {
  flex: 0 0 50%;
}
@media (max-width: 768px) {
  .info__sec-block {
    flex: 0 0 100%;
  }
}

.simple-par {
  font-size: 16px;
  line-height: 1.5;
  margin: 10px 0;
}
.simple-par a {
  color: #fd4108;
  text-decoration: underline;
}
.simple-title {
  color: #ffecaa;
  margin: 20px 0;
}
.simple-mark-list {
  list-style: disc outside;
  padding-left: 30px;
}
.simple-mark-list li {
  font-weight: 700;
  font-size: 16px;
  margin: 25px 0;
}
.simple-thin-list {
  list-style: disc outside;
  padding-left: 30px;
  margin: 20px 0;
}
.simple-thin-list li {
  font-size: 16px;
  line-height: 1.5;
}
.simple-thin-list li:not(:last-child) {
  margin-bottom: 15px;
}
.simple-thin-list li a {
  color: #fd4108;
  text-decoration: underline;
}

.Accordions {
  margin: 0 0 11px;
}

.AccordionHeading {
  background: #f3f3f3;
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-image: none;
  padding: 20px 20px 20px 60px;
  border-radius: 5px;
  font-size: 18px;
  color: #343e62;
  font-weight: bold;
  background-image: url("../img/Tick01.png");
  background-repeat: no-repeat;
  background-position: 20px 16px;
  position: relative;
  cursor: pointer;
}

.AccordionContent {
  display: none;
  padding: 15px 0 0;
}
.AccordionContent p {
  margin: 0 0 1.5em;
  padding: 0;
  font-size: 16px;
  line-height: 19px;
}

.faq {
  background: radial-gradient(circle at 50% 130%, #5f2936, #56293a, #4c293d, #42293d, #38293b, #302837, #292732, #24252c);
  padding: 60px 0;
}
.faq__title {
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-weight: 900;
  font-size: 36px;
}
.faq .tab, .blog .tab {
  font-size: 12px;
  padding: 2px 12px;
  line-height: 12px;
  margin-bottom: 12px;
}
.faq h2, .blog h2 {
  font-size: 24px;
  line-height: 24px;
  max-width: 80%;
}
.faq-intro .intro__wrapper {
  flex-wrap: wrap;
  padding-top: 80px;
}
.faq-intro .intro__wrapper .left,
.faq-intro .intro__wrapper .right {
  width: 100%;
}
.faq-intro .intro__wrapper .left .scroll-down-button {
  display: none;
}
.faq-intro .intro__wrapper .right {
  font-size: 14px;
  line-height: 21px;
}
.faq {
  position: relative;
}
.accordion-item {
  background: transparent;
  margin: 0 auto;
  position: relative;
  padding: 24px;
  background: linear-gradient(98deg, rgba(48, 51, 80, 0.70) -5.48%, rgba(14, 16, 34, 0.70) 63.27%);
  backdrop-filter: blur(50px);
  box-sizing: border-box;
  border-radius: 15px;
}
.accordion-item.is-open {
  border: 1px solid #4852F5;
}


.accordion-item + .accordion-item {
  margin-top: 16px;
}
.accordion {
  width: 100%;
  text-align: left;
  color: #fff;
  cursor: pointer;
}

.accordion .name {
  font-family: "Sequel-Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 405;
  line-height: 24px;
}

.accordion-item:after {
  height: 24px;
  width: 24px;
  position: absolute;
  top: 24px;
  color: #000;
  right: 24px;
  padding-top: 2px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: -1;
}
.accordion-item.is-open:after {
  content: url("../images/minus.svg");
  padding-top: 0;
}
.accordion .name {
  font-size: 16px;
}
.accordion-content {
  padding: 0;
}
.accordion-item:after {
  top: 12px;
}
.faq-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50px;
  left: 0;
  right: 0;
  z-index: -1;
}

.faq-bg img {
  object-fit: contain;
  width: 100%;
}
.faq-intro .intro__wrapper .left h1 {
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 32px;
}
.cards .cards-list .card__item-wrapper a {
  font-size: 14px;
}
.faq-intro .intro__bg {
  top: 150px;
}
.faq-list {
  margin: 0 auto;
  width: 60%;
}

.faq-list {
  width: 100%;
}

.FAQ_Accordion {
  display: flex;
  flex-wrap: wrap;
  margin: 30px -20px 0;
}
.FAQ_Accordion li {
  padding: 10px 20px;
  width: 50%;
}
@media (max-width: 768px) {
  .FAQ_Accordion li {
    width: 100%;
  }
}
.FAQ_Accordion .AccordionInn {
  background-color: #fff;
  border-radius: 5px;
  padding: 19px 27px 19px 20px;
}
.FAQ_Accordion .Querstion01 {
  font-size: 18px;
  color: #343e62;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  line-height: 22px;
}
.FAQ_Accordion .Querstion01::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  background-image: url("../img/plus.png");
  background-repeat: no-repeat;
  background-position: center;
}
.FAQ_Accordion .Querstion01.Active01::after {
  background-image: url("../img/minus.png");
}
.FAQ_Accordion .Answer01 {
  font-size: 16px;
  line-height: 17px;
  color: #7f8085;
  margin-top: 20px;
  display: none;
}

.features {
  background: #fff;
  padding: 30px 0;
}
.features__title {
  font-size: 24px;
  font-weight: bold;
  color: #343e62;
}

.section {
  padding: 80px 0;
  background: #fff;
}
.section__wrapper {
  padding: 10px 20px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.7);
}
.section__h1 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 40px !important;
  color: #666 !important;
  letter-spacing: 0 !important;
  margin: 20px 0;
}
.section__subtitle {
  margin: 30px 0;
  font-size: 24px;
}

.divider {
  position: relative;
  padding: 30px 0;
}
.divider::after {
  content: "";
  width: 20px;
  height: 20px;
  background: var(--accent-color) url("../img/plus.png") no-repeat center/50%;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  position: absolute;
}
.divider::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-color);
}

center h1 {
  color: #ffcb00;
  margin-top: 25px;
}
center p {
  max-width: 600px;
}

.att {
  position: fixed;
  color: #fff;
  padding: 10px 0;
  width: 100%;
  top: 0;
  left: 0;
  text-align: center;
  background: #2b2d33;
  z-index: 2000;
}
.att a {
  color: #ee334e;
}

.age {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}
@media (max-width: 576px) {
  .age {
    padding: 0 15px;
  }
}
.age_show {
  opacity: 1;
  pointer-events: all;
}
.age__popup {
  border-radius: 8px;
  background: #2b2d33;
  display: inline-block;
  padding: 25px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .age__popup {
    padding: 25px;
  }
}
.age__text {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
.age__agree {
  text-align: center;
}
.age__buttons {
  display: flex;
  align-items: center;
  margin-top: 25px;
}
.age__agree {
  margin-top: 15px;
  font-size: 18px;
}
.age__button {
  display: block;
  padding: 8px 30px;
  color: #fff;
  text-transform: uppercase;
  background: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.age__button:not(:last-child) {
  margin-right: 20px;
}
.age__button_no {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}
.age__button_no:hover {
  background: var(--accent-color);
  color: #fff;
}

.cookie {
  position: fixed;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px 50px;
  z-index: 3;
  border-radius: 8px 8px 0 0;
  background: #2b2d33;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}
@media (max-width: 576px) {
  .cookie {
    padding: 15px;
  }
}
.cookie__container {
  display: flex;
  align-items: center;
}
.cookie.show-cookie {
  opacity: 1;
  pointer-events: all;
}
.cookie__title {
  font-size: 20px;
  margin-bottom: 10px;
}
.cookie__par a {
  color: #fff;
  text-decoration: underline;
}
.cookie__buttons {
  display: flex;
  align-items: center;
}
.cookie__button {
  font-size: 14px;
  padding: 8px 30px;
  border-radius: 8px;
  font-weight: 600;
  display: block;
  margin-left: 20px;
}
@media (max-width: 576px) {
  .cookie__button {
    font-size: 16px;
    padding: 15px;
  }
}
.cookie__button_1 {
  background: var(--accent-color);
  color: #fff;
  margin-right: 20px;
}

.custom-logo_color {
  color: var(--accent-color);
}

.lock {
  overflow: hidden;
}

.contact-form label {
  margin-bottom: 20px;
  display: block;
}
.contact-form label p {
  color: #333;
  display: block;
  font-weight: 800;
  margin-bottom: 0.5em;
  font-size: 16px;
  line-height: 19px;
}
.contact-form label input, .contact-form label textarea {
  color: #666;
  background: #fff;
  background-image: none;
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  border: 1px solid #bbb;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  display: block;
  padding: 0.7em;
  width: 100%;
}

button, input[type=button], input[type=submit] {
  background-color: #222;
  border: 0;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1;
  padding: 1em 2em;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

button, input[type=button], input[type=submit] {
  background-color: #ed334d;
}

/*# sourceMappingURL=style.css.map */
.clearfix::after{content:"";display:table;clear:both}
