@import url(https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap);
/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

@charset "UTF-8";
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: cover;
}

.close-icon {
  background-image: url("../images/close-icon.svg");
}

.close-white-icon {
  background-image: url("../images/close-white-icon.svg");
}

.circle-check-white-icon {
  background-image: url("../images/circle-check-white-icon.svg");
}

.circle-close-white-icon {
  background-image: url("../images/circle-close-white-icon.svg");
}

.circle-info-white-icon {
  background-image: url("../images/circle-info-white-icon.svg");
}

.help-icon {
  background-image: url("../images/question.svg");
}

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

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Onest", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a,
a:link {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: nowrap;
}

.content-wrap {
  flex: 1;
}

.container {
  margin: 0 90px;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.background {
  background: #FAFAF3;
}

.description {
  text-align: justify;
}

.dropdown {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #01693E;
  flex: 0 0 44px;
  height: 44px;
  width: 44px;
  border-radius: 8px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.dropdown:hover {
  background-color: #B6D4C4;
}
.dropdown:active {
  background-color: #000000;
  color: #FFFFFF;
}
.dropdown .dropdown-toggle {
  display: flex;
  gap: 10px;
  text-transform: capitalize;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.dropdown .dropdown-toggle img {
  width: 20px;
}
.dropdown .dropdown-menu {
  position: absolute;
  width: 60px;
  padding: 3px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  left: -2px;
  top: 50px;
  z-index: 50;
}
.dropdown .dropdown-menu .dropdown-item {
  display: flex;
  gap: 10px;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #1D2220;
  flex: 0 0 44px;
  height: 44px;
  width: 44px;
  border-radius: 8px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0px 1px 14px rgba(0, 105, 62, 0.12);
  transition: all 0.3s ease 0s;
}
.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #B6D4C4;
}
.dropdown .dropdown-menu .dropdown-item:active {
  background-color: #000000;
  color: #FFFFFF;
}
.dropdown .dropdown-menu .dropdown-item img {
  width: 20px;
}

.navbar-top {
  width: 100%;
}
.navbar-top .line {
  height: 80px;
}
.navbar-top .line .right {
  display: flex;
  gap: 40px;
  width: 44px;
}
.navbar-top .line .brand-logo {
  width: 180px;
  padding-right: 20px;
  background: #FFFFFF;
}
.navbar-top .line .social-media {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-right: 1px #f1f5f9 solid;
  padding-right: 20px;
}
.navbar-top .line .links .main-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  transition: all 0.3s ease 0s;
}
.navbar-top .line .links .main-menu .menu-item {
  position: relative;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-top .line .links .main-menu .menu-item:last-child .submenu {
  max-width: 100vw;
  left: auto !important;
  right: 0;
}
.navbar-top .line .links .main-menu .menu-item > a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  color: #323232;
  transition: all 0.3s ease 0s;
  text-align: center;
}
.navbar-top .line .links .main-menu .menu-item > a:hover {
  color: #000000;
}
.navbar-top .line .links .main-menu .menu-item > a:active {
  background-color: #B6D4C4;
}
.navbar-top .line .links .main-menu .menu-item:hover .submenu {
  display: block;
}
.navbar-top .line .links .main-menu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #FFFFFF;
  z-index: 13;
  max-width: 100vw;
  border-radius: 12px;
  box-shadow: 0px 1px 14px rgba(0, 105, 62, 0.12);
}
.navbar-top .line .links .main-menu .submenu li {
  white-space: nowrap;
}
.navbar-top .line .links .main-menu .submenu li a {
  display: block;
  padding: 10px 20px;
  color: #000;
  text-decoration: none;
  border-radius: 12px;
}
.navbar-top .line .links .main-menu .submenu li a:hover {
  background-color: #ededed;
  color: #00693f;
}
.navbar-top .line .links .menu-active {
  color: #00694F;
  background-color: #F5F5F5 !important;
  border-radius: 8px;
}
.navbar-top .line .links .menu-active > a {
  color: #00694F !important;
}
.navbar-top .line .links .menu-active {
  color: #00694F;
  background-color: #F5F5F5;
  border-radius: 8px;
}
.navbar-top .line .links .menu-active > a {
  color: #00694F !important;
}
.navbar-top .line .auth {
  font-weight: 600;
}
.navbar-top .line .auth a {
  display: flex;
  gap: 10px;
}
.navbar-top .line_1 .title h1 {
  font-size: 20px;
  text-align: center;
}
.navbar-top .line_2 {
  background-color: #005795;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.navbar-top .line_2 .links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  font-size: 18px;
  font-weight: 500;
}
.navbar-top .line_2 .links .cert-sessions {
  display: none;
  position: absolute;
  background-color: #005795;
  z-index: 1000;
}
.navbar-top .line_2 .links .cert-sessions ul {
  list-style: none;
  padding: 0;
}
.navbar-top .line_2 .links .cert-sessions ul li {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-top .line_2 .links .cert-container:hover .cert-sessions {
  display: block;
}
.navbar-top .line_2 .links .session-item {
  position: relative;
}
.navbar-top .line_2 .links .session-details {
  display: none;
  width: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #005795;
  z-index: 1000;
  white-space: nowrap;
}
.navbar-top .line_2 .links .session-details a {
  padding: 10px 20px;
}
.navbar-top .line_2 .links li:hover .session-details {
  display: flex;
  flex-direction: column;
}
.navbar-top .burger {
  display: none;
}
.navbar-top .btn-blue {
  padding: 10px;
}
.navbar-top .burger-menu {
  background-color: #fff;
  position: absolute;
  width: 100%;
  z-index: 999;
}
.navbar-top .burger-menu .pages {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.navbar-top .burger-menu .pages .menu {
  width: 100%;
}
.navbar-top .burger-menu .pages .menu__item {
  font-size: 18px;
  font-weight: 500;
  padding: 20px 20px;
}
.navbar-top .burger-menu .pages .menu__item .submenu {
  padding-left: 20px;
  padding-top: 15px;
}
.navbar-top .burger-menu .pages .menu__item .submenu li {
  padding: 10px 20px;
}
.navbar-top .burger-menu .pages .menu__item:not(:last-child) {
  border-bottom: 1px solid #DFDFDF;
}
.navbar-top .burger-menu .pages .menu__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-top .burger-menu .pages .menu__title .submenu-toggle {
  transition: transform 0.3s ease;
}
.navbar-top .burger-menu .pages .menu__title .submenu-toggle.rotated {
  transform: rotate(90deg);
}
.navbar-top .burger-menu .pages a.active {
  color: #166534;
  background-color: rgba(73, 167, 71, 0.1);
}
.navbar-top .burger-menu .links {
  flex-direction: column;
  display: flex;
  align-items: center;
  background-color: #f3f4f6;
  border-radius: 0 0 15px 15px;
  padding: 25px 0;
}
.navbar-top .burger-menu .links .dropdown {
  width: 30px;
}
.navbar-top .burger-menu .links .dropdown .dropdown-menu {
  width: 45px;
  background-color: #fff;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}
.navbar-top .burger-menu .links a {
  border: none;
  padding: 10px;
}
.navbar-top .burger-menu .links .social {
  display: flex;
  margin: 20px 0;
}
.navbar-top .burger-menu .links .contacts {
  display: flex;
  flex-direction: column;
}
.navbar-top .burger-menu .links .contacts a {
  display: flex;
}

.blok_header {
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  margin: 30px 0;
}

.swiper-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  color: #01693E;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0px 1px 14px rgba(0, 105, 62, 0.12);
  z-index: 2;
}

.sidebar {
  align-items: flex-start;
  gap: 16px;
  background: rgb(218, 231, 227);
  background: radial-gradient(circle at bottom left, rgb(218, 231, 227) 0%, rgb(245, 245, 245) 50%);
  padding: 8px 15px;
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  position: relative;
  margin: 0 40px 40px 40px;
  overflow: hidden;
}
.sidebar__menu {
  width: 18%;
  z-index: 3;
}
.sidebar__menu ul {
  list-style: none;
  padding: 0;
}
.sidebar__title {
  position: absolute;
}
.sidebar .leaf {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.sidebar__block {
  padding: 20px 0 !important;
  border-radius: 12px;
  z-index: 1;
}
.sidebar__block .link {
  position: relative;
  padding: 8px 16px 8px 16px;
  border-radius: 8px;
  margin-bottom: 9px;
  color: #44546A;
}
.sidebar__block .link a {
  display: block;
  width: 100%;
  height: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #44546A;
  text-decoration: none;
  cursor: pointer;
}
.sidebar__block .link.active {
  background: #E5E5E5;
}
.sidebar__block .link.active a {
  color: #000000;
}
.sidebar__block .link:hover a {
  color: #000000;
}
.sidebar__block .link:active {
  background-color: #111827;
}
.sidebar__block .link:active a {
  color: #FFFFFF;
}
.sidebar__content {
  width: 80%;
  border-radius: 12px;
}
.sidebar__content .text {
  background-color: #FFFFFF;
  padding: 80px 152px 80px 152px;
  border-radius: 12px;
  text-align: justify;
  border: 1px solid #E5E5E5;
}
.sidebar__content .text table {
  margin: 0 auto;
}
.sidebar__content .main_image {
  margin-bottom: 20px;
}
.sidebar__content .slot_machine {
  display: flex;
  align-items: center;
  gap: 30px;
}
.sidebar__content .room .gallery {
  display: flex;
  gap: 30px;
}
.sidebar__content .room .gallery__item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidebar__content .map {
  width: 100%;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
}
.sidebar__content .map .modal-overlay {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  opacity: 1;
}
.sidebar__content .map .modal-overlay .modal {
  background-color: white;
  border-radius: 12px;
  width: calc(100% - 80px);
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  opacity: 1;
}
.sidebar__content .map #modal-map {
  border-radius: 8px;
}
.sidebar__content .map #map {
  border-radius: 8px;
}
.sidebar__content .map .contacts {
  margin-bottom: 20px;
}
.sidebar .testing {
  width: 100%;
}
.sidebar .testing .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 10px;
}
.sidebar .testing .questions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar .testing .questions .question {
  padding: 8px;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar .testing .questions .question__text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.sidebar .testing .questions .question__text__number {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #F5F5F5;
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
}
.sidebar .testing .questions .question__text__content {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.sidebar .testing .questions .question__answers {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.sidebar .testing .questions .question__answers__button {
  border-radius: 8px;
  padding: 8px 30px;
  background-color: #F3F4F6;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #003828;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar .testing .questions > .error .question__text__number {
  border: 1px solid #E40218;
}
.sidebar .testing .questions > .selected {
  background-color: #F9FAFB;
  border: 1px solid #F5F5F5;
}
.sidebar .testing .questions > .selected .question__text__number {
  background-color: #F3F4F6;
}
.sidebar .testing .questions > .selected .question__text__content {
  color: #44546A;
}
.sidebar .testing .questions > .selected .selected {
  background-color: #00693F;
  color: #FFFFFF;
}
.sidebar .testing .questions .question__answers__button:hover {
  background-color: #003828;
  color: #FFFFFF;
}
.sidebar .testing .questions .question__answers__button:active {
  background-color: #000000;
  color: #FFFFFF;
}
.sidebar .testing .submit {
  margin-top: 10px;
}
.sidebar .testing .submit__button {
  background-color: #00693F;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 12px;
  border: none;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.sidebar .testing .submit__button:hover {
  background-color: #003828;
  color: #A2D7BD;
}
.sidebar .testing .submit__button:active {
  background-color: #000000;
  color: #FFFFFF;
}
.sidebar .testing .result {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: calc(100vh - 238px - 80px - 220px);
}
@media (max-width: 1100px) {
  .sidebar .testing .result {
    height: auto;
  }
}
.sidebar .testing .result .image img {
  width: 50px;
  height: 50px;
  padding: 12px;
  border-radius: 8px;
  background-color: #F9FAFB;
}
.sidebar .testing .result .header {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
.sidebar .testing .result .header .title {
  margin: 0;
}
.sidebar .testing .result .header .subtitle {
  font-weight: 500;
}
.sidebar .testing .result .description {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: justify;
}
.sidebar .testing .result .description span {
  font-weight: 600;
  line-height: 20px;
}
.sidebar .testing .result .description .number {
  color: #00693F;
}
.sidebar .testing .result .contact-us {
  display: flex;
  gap: 20px;
}
.sidebar .testing .result .contact-us .phone {
  display: flex;
  color: #00693F;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  align-items: center;
}
.sidebar .testing .result .contact-us .email {
  display: flex;
  color: #00693F;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  align-items: center;
}
.sidebar .testing .negative-result {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 1100px) {
  .sidebar .testing .negative-result {
    height: auto;
    flex-direction: column;
  }
  .sidebar .testing .negative-result .result {
    height: auto;
  }
}
.sidebar .testing .negative-result .result {
  width: 100%;
}
.sidebar .testing .negative-result .contact {
  width: 100%;
}
.sidebar .testing .negative-result .contact form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar .testing .negative-result .contact form .form-line {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
.sidebar .testing .negative-result .contact form .form-line input {
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  transition: all 0.3s ease;
}
.sidebar .testing .negative-result .contact form .form-line input:hover {
  border: 1px solid #00693F;
  background-color: #F0FDF4;
}
.sidebar .testing .negative-result .contact form .form-line input:focus {
  background-color: #F9FAFB;
  outline: none;
  border: 1px solid #F5F5F5;
}
.sidebar .testing .negative-result .contact form .form-line textarea {
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  resize: none;
  height: 120px;
  transition: all 0.3s ease;
}
.sidebar .testing .negative-result .contact form .form-line textarea:hover {
  border: 1px solid #00693F;
  background-color: #F0FDF4;
}
.sidebar .testing .negative-result .contact form .form-line textarea:focus {
  background-color: #F9FAFB;
  outline: none;
  border: 1px solid #F5F5F5;
}
.sidebar .testing .negative-result .contact .btn-green {
  background-color: #00693F;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 12px;
  border: none;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.sidebar .testing .negative-result .contact .btn-green:hover {
  background-color: #003828;
  color: #A2D7BD;
}
.sidebar .testing .negative-result .contact .btn-green:active {
  background-color: #000000;
  color: #FFFFFF;
}
.sidebar .complete .question {
  flex-direction: column;
  align-items: normal !important;
}
.sidebar .complete .question__answers {
  flex-direction: column !important;
  align-items: normal;
}
.sidebar__cards {
  width: 80%;
  background-color: #FFFFFF;
  padding: 80px 152px 80px 152px;
  border-radius: 12px;
  border: 1px solid #E5E5E5;
  z-index: 1;
}
.sidebar__cards .management {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.sidebar__cards .management__item {
  display: flex;
  width: 100%;
  background-color: #FFFFFF;
}
.sidebar__cards .management__image {
  width: 40%;
  overflow: hidden;
  border-radius: 12px;
}
.sidebar__cards .management__image img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidebar__cards .management__text {
  width: 60%;
  padding: 20px;
  height: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar__cards .management__text .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
}
.sidebar__search {
  width: 80%;
  background-color: #FFFFFF;
  padding: 40px 20px 40px 50px;
  border-radius: 12px;
  text-align: justify;
  border: 1px solid #E5E5E5;
  z-index: 1;
}
.sidebar__search .bar {
  display: flex;
  margin-bottom: 30px;
}
.sidebar__search .bar form {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}
.sidebar__search .bar form .search {
  padding: 7px;
  border: 0px;
  width: 90%;
  border-radius: 8px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1);
}
.sidebar__search .bar form button {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}
.sidebar__search .bar form button img {
  max-width: none;
  position: absolute;
  top: -15px;
  right: 30px;
  width: 20px;
  height: 20px;
}
.sidebar__search .bar form input:focus {
  outline: none;
}
.sidebar__search .news {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.sidebar__search .news__item {
  width: 30%;
  background-color: #F5F5F5;
  border-radius: 16px;
  overflow: hidden;
}
.sidebar__search .news__item .news__image {
  overflow: hidden;
  width: 100%;
  height: 180px;
  border-radius: 16px 16px 0 0;
  border: 1px solid #E5E5E5;
}
.sidebar__search .news__item .news__image img {
  border-radius: 16px 16px 0 0;
  transition: transform 0.3s ease;
  transform-origin: center center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 180px;
}
.sidebar__search .news__item .news__text {
  padding: 30px;
  background-color: #F5F5F5;
  border-radius: 0 0 16px 16px;
  transition: all 0.3s ease;
  border: 1px solid #E5E5E5;
}
.sidebar__search .news__item .news__text .date {
  color: #01693E;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
.sidebar__search .news__item .news__text .title {
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  height: 72px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 24px;
  text-overflow: ellipsis;
}
.sidebar__search .news__item:hover img {
  transform: scale(1.1);
}
.sidebar__search .news__item:hover .card_image {
  border: 1px solid #7EB498;
}
.sidebar__search .news__item:hover .news__text {
  background-color: #B6D4C4;
  color: #00694F;
  text-decoration: underline;
  border: 1px solid #7EB498;
}
.sidebar__search .news__image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidebar__search .news__text {
  padding: 20px;
}
.sidebar__search .news__text .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
}
.sidebar__search .announcement {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.sidebar__search .announcement__item {
  width: calc(33.333% - 20px);
  background-color: #F5F5F5;
  border-radius: 16px;
  overflow: hidden;
}
.sidebar__search .announcement__item .announcement__image {
  overflow: hidden;
  width: 100%;
  height: 250px;
  border-radius: 16px 16px 0 0;
  border: 1px solid #E5E5E5;
}
.sidebar__search .announcement__item .announcement__image img {
  border-radius: 16px 16px 0 0;
  transition: transform 0.3s ease;
  transform-origin: center center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 250px;
}
.sidebar__search .announcement__item .announcement__text {
  padding: 30px;
  background-color: #F5F5F5;
  border-radius: 0 0 16px 16px;
  transition: all 0.3s ease;
  border: 1px solid #E5E5E5;
}
.sidebar__search .announcement__item .announcement__text .date {
  color: #01693E;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
.sidebar__search .announcement__item .announcement__text .title {
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  height: 72px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 24px;
  text-overflow: ellipsis;
}
.sidebar__search .announcement__item:hover img {
  transform: scale(1.1);
}
.sidebar__search .announcement__item:hover .card_image {
  border: 1px solid #7EB498;
}
.sidebar__search .announcement__item:hover .announcement__text {
  background-color: #B6D4C4;
  color: #00694F;
  text-decoration: underline;
  border: 1px solid #7EB498;
}
.sidebar__search .announcement__image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidebar__search .announcement__text {
  padding: 20px;
}
.sidebar__search .announcement__text .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) and (max-width: 1640px) {
  .sidebar .announcement .announcement__item .announcement__image {
    height: 200px !important;
  }
  .sidebar .announcement .announcement__item .announcement__image img {
    height: 200px !important;
  }
}
.sidebar__list {
  width: 80%;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  background-color: #FFFFFF;
  padding: 80px 152px 80px 152px;
  border-radius: 12px;
  border: 1px solid #E5E5E5;
  align-content: flex-start;
  min-height: 55vh;
}
.sidebar__list .list__item {
  width: 100%;
  border: 1px solid #E5E7EB;
  padding: 8px 8px 8px 16px !important;
  border-radius: 12px;
  height: -moz-fit-content;
  height: fit-content;
}
.sidebar__list .list__item p {
  margin: 7px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.sidebar__list .list__item p img {
  width: 20px;
  height: 20px;
}
.sidebar__list .list__item a {
  color: #01693E;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  text-decoration: underline;
}
.sidebar__list .list__item .title {
  font-weight: 600;
  font-size: 16kx;
  line-height: 24px;
}
.sidebar__list .list__item .list__text {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
.sidebar__list .list__item:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid #EAE9E9;
}
.sidebar__list .link .title {
  color: #01693E;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  text-decoration: underline;
}
.sidebar__list .link .list__text {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.sidebar__list .link .image-container {
  margin-right: 5px;
  display: flex;
}
.sidebar__list .link .image-container:hover svg path {
  fill: #00693F;
}
.sidebar__list .link .image-container:active svg path {
  fill: #000000;
}
.sidebar__list .link:hover {
  background-color: #F3F4F6;
}
.sidebar__list .faq {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.sidebar__list .faq .accordion {
  width: 100%;
  list-style: none;
  margin: 0;
}
.sidebar__list .faq .accordion__content {
  text-align: justify;
}
.sidebar__list .faq .accordion__item {
  cursor: pointer;
  padding-top: 20px;
  position: relative;
}
.sidebar__list .faq .accordion__item ul {
  padding-left: 0;
}
.sidebar__list .faq .accordion__item:first-child {
  padding-top: 0;
}
.sidebar__list .faq .accordion__item:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid #EAE9E9;
}
.sidebar__list .faq .accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar__list .faq .accordion__trigger h3 {
  width: 90%;
}
.sidebar__list .faq .accordion-enter-active,
.sidebar__list .faq .accordion-leave-active {
  will-change: height, opacity;
  transition: height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}
.sidebar__list .faq .accordion-enter,
.sidebar__list .faq .accordion-leave-to {
  height: 0 !important;
  opacity: 0;
}
.sidebar__list .faq .accordion__trigger .arrow-icon {
  width: 15px;
  margin-left: auto;
  transition: transform 0.3s ease;
}
.sidebar__list .faq .accordion__trigger_active .arrow-icon {
  transform: rotate(180deg);
}
.sidebar__list .faq .description .phone, .sidebar__list .faq .description .email {
  display: flex;
}
.sidebar__list .faq .description .phone img, .sidebar__list .faq .description .email img {
  margin-right: 10px;
}
.sidebar__list .faq .description .phone b, .sidebar__list .faq .description .email b {
  margin-right: 5px;
}
.sidebar .rooms, .sidebar .responsible_gaming {
  width: 100%;
}
.sidebar .rooms .links, .sidebar .responsible_gaming .links {
  width: 100%;
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .sidebar .rooms .links, .sidebar .responsible_gaming .links {
    flex-direction: column;
  }
  .sidebar .rooms .links .casino_online .text_left, .sidebar .responsible_gaming .links .casino_online .text_left {
    width: 100%;
  }
}
.sidebar .rooms .links .casino_online, .sidebar .responsible_gaming .links .casino_online {
  margin: 10px 0 0 0;
}
.sidebar .rooms .links .casino_online .description, .sidebar .responsible_gaming .links .casino_online .description {
  margin-right: 20px;
}
.sidebar .rooms .links .casino_online .button, .sidebar .responsible_gaming .links .casino_online .button {
  width: 88px;
  height: 66px;
}

.maps-container {
  width: 100%;
  z-index: 0;
  position: relative;
}

.rooms .page-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 0;
}
.rooms #map {
  border-radius: 12px;
}
.rooms #map .leaflet-control-zoom {
  border: none;
}
.rooms #map .leaflet-control-zoom .leaflet-control-zoom-in, .rooms #map .leaflet-control-zoom .leaflet-control-zoom-out {
  background-color: #F3F4F6;
  color: #000000;
  border: none;
  border-radius: 8px;
}
.rooms #map .leaflet-control-zoom .leaflet-control-zoom-in {
  margin-bottom: 10px;
}

.room-page {
  width: 100%;
}
.room-page .description {
  margin-bottom: 10px;
}
.room-page .rooms-list {
  gap: 12px;
  display: flex;
  flex-direction: column;
}
.room-page .list__item {
  padding: 16px 24px;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.room-page .list__item .list__text {
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
.room-page .list__item .title {
  color: #00693F;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-weight: bold;
  margin: 0;
}
.room-page .list__item .title span {
  font-weight: 700;
}
.room-page .list__item .gallery {
  display: flex;
  gap: 6px;
  margin: 0 !important;
}
.room-page .list__item .gallery .image {
  position: relative;
  display: inline-block;
  background-blend-mode: screen;
}
.room-page .list__item .gallery .image img {
  border-radius: 6px;
}
.room-page .list__item .gallery .image .filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background-color: #00693F;
  mix-blend-mode: color;
}
.room-page .list__item .gallery .more {
  height: 80px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  justify-content: center;
  background-color: #003828;
  color: #FFFFFF;
}
.room-page .list__item .address {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.room-page .list__item .schedule {
  display: flex;
  gap: 5px;
  color: #44546A;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.room-page .list__item .schedule span {
  font-weight: 500;
  color: #000000;
}
.room-page .list__item:hover {
  background-color: #F3F4F6;
}

.support .description {
  width: 100%;
  margin-bottom: 30px;
}
.support__form form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
.support__form form .form-line {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.support__form form input {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #878585;
}
.support__form form textarea {
  width: 100%;
  border-radius: 4px;
  height: 100px;
  border: 1px solid #878585;
  resize: none;
}

.slider {
  position: relative;
  width: 95%;
  height: calc(100vh - 80px);
  margin: 0 auto;
  border-radius: 16px;
  background: none !important;
}
.slider swiper-container {
  height: 100%;
}
.slider swiper-container .preview {
  filter: blur(10px);
  opacity: 0;
  z-index: 1;
}
.slider swiper-container .full {
  opacity: 0;
  z-index: 2;
}
.slider swiper-container .visible {
  opacity: 1;
}
.slider swiper-container .hidden {
  opacity: 0;
  display: none;
}
.slider swiper-container .slide {
  position: relative;
  cursor: pointer;
  height: 100%;
  padding-bottom: 3vh;
  background: none;
}
.slider swiper-container .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .slider swiper-container .slide img {
    -o-object-position: top;
       object-position: top;
  }
}
.slider swiper-container .slide .block {
  position: absolute;
  bottom: 20%;
  left: 75px;
  width: 35%;
  z-index: 2;
  padding: 5px;
}
@media (max-width: 768px) {
  .slider swiper-container .slide .block {
    left: 50px;
    width: calc(100% - 100px);
  }
}
@media (max-height: 598px) {
  .slider swiper-container .slide .block {
    left: 50px;
    width: 75%;
  }
}
.slider swiper-container .slide .block .name {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 44px;
}
@media (max-width: 768px) {
  .slider swiper-container .slide .block .name {
    font-size: 24px;
  }
}
@media (max-height: 598px) {
  .slider swiper-container .slide .block .name {
    font-size: 24px;
  }
}
.slider swiper-container .slide .block .description {
  margin-top: 15px;
  color: #d1d1d1;
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 768px) {
  .slider swiper-container .slide .block .description {
    font-size: 12px;
  }
}
@media (max-height: 598px) {
  .slider swiper-container .slide .block .description {
    font-size: 12px;
  }
}
.slider swiper-container .slide .block .link {
  margin-top: 40px;
  display: flex;
  align-items: center;
}
.slider swiper-container .slide .block .link .slider-btn {
  padding: 10px 15px;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s ease 0s;
}
.slider swiper-container .slide .block .link .slider-btn:hover {
  border: 1px solid #00694F;
  background-color: #00190F;
}
.slider swiper-container .slide .block .link .slider-btn:active {
  background-color: #00694F;
  border: 1px solid #00694F;
}
.slider swiper-container .slide .block .link .navigation {
  margin-left: 20px;
  width: -moz-fit-content;
  width: fit-content;
  height: 45px;
  display: flex;
  align-items: center;
  color: white;
}
.slider swiper-container .slide .block .link .navigation .prev-slide, .slider swiper-container .slide .block .link .navigation .next-slide {
  position: static;
  width: 44px;
  height: 44px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  color: white;
  background: none;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
}
.slider swiper-container .slide .block .link .navigation .prev-slide img, .slider swiper-container .slide .block .link .navigation .next-slide img {
  filter: invert(1) brightness(2);
}
.slider swiper-container .slide .block .link .navigation .prev-slide:hover, .slider swiper-container .slide .block .link .navigation .next-slide:hover {
  background-color: #00190F;
}
.slider swiper-container .slide .block .link .navigation .prev-slide:active, .slider swiper-container .slide .block .link .navigation .next-slide:active {
  background-color: #00694F;
}
.slider swiper-container .slide .block .link .navigation .next-slide {
  left: 60px;
}
.slider swiper-container .slide .custom-pagination {
  margin-left: 57px;
  margin-bottom: 25px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
@media (max-width: 768px) {
  .slider swiper-container .slide .custom-pagination {
    left: 0px;
  }
}
.slider swiper-container .slide .pagination-dot {
  width: 8px;
  position: relative;
  height: 8px;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  margin: 5px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.slider swiper-container .slide .pagination-dot:not(.active):hover {
  border: 1px solid #00694F;
  background-color: #B6D4C4;
  transform: rotateY(180deg);
}
.slider swiper-container .slide .pagination-dot:not(.active):hover::before {
  content: "";
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border: 1px solid #00694F;
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.3s ease;
}
.slider swiper-container .slide .pagination-dot:not(.active):active::before {
  border-color: rgba(255, 255, 255, 0.8);
}
.slider swiper-container .slide .pagination-dot.active {
  width: 40px;
  cursor: auto;
}
.slider swiper-container .slide .scroll-down-btn {
  position: absolute;
  bottom: calc(3vh - 18px);
  left: calc(50% - 10px);
  z-index: 3;
  border: 1px solid #FFFFFF;
  color: white;
  text-align: center;
  font-weight: 400;
  vertical-align: center;
  padding: 5px 10px;
  border-radius: 8px;
  background-color: #00694F;
  cursor: pointer;
}
.slider swiper-container .slide .scroll-down-btn:hover {
  background-color: #004030;
  border: 1px solid #004030;
}
.slider swiper-container .slide .scroll-down-btn:active {
  background-color: #000000;
  border: 1px solid #000000;
}
.slider .swiper-button {
  position: absolute;
  bottom: 1%;
}
.slider .swiper-button-next {
  left: 80px;
}
.slider .swiper-button-prev {
  left: 20px;
}

.btn-primary {
  background-color: #fff;
  color: #000000;
  border-radius: 8px;
  padding: 8px 12px;
  border: 1px solid #005795;
  font-size: 16px;
  transition: 0.25s;
}

.btn-primary:hover {
  color: #fff;
  background-color: #005795;
}

.btn-blue {
  transition: 0.25s;
  background-color: #005795;
  color: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #005795;
  padding: 5px 20px;
  font-size: 16px;
  cursor: pointer;
}

.btn-blue:hover {
  color: #005795;
  background-color: #fff;
}

.btn-orange {
  background-color: #E85600;
  color: #FFFFFF !important;
  border-radius: 4px;
  border: 1px solid #E85600;
  padding: 5px 20px;
  font-size: 16px;
  cursor: pointer;
}

.btn-green {
  background-color: #B6D4C4;
  border-radius: 8px;
  border: 1px solid #01693E;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #003828;
  padding: 13px 45px;
  display: inline-block;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.btn-green:hover {
  color: #B6D4C4;
  background-color: #003828;
}
.btn-green:active {
  color: #FFFFFF;
  background-color: #000000;
}

.btn-burger {
  background: #01693E;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
  padding: 13px;
  display: inline-block;
  transition: all 0.3s ease 0s;
  border: none;
}

.session {
  align-items: flex-start;
}
.session h1 {
  text-transform: uppercase;
}
.session__menu {
  width: 20%;
}
.session__menu li.submenu {
  padding-left: 30px;
}
.session__menu h2 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}
.session__menu li a {
  color: #000000;
}
.session__menu li a.active {
  color: #005795;
}
.session__content {
  width: 100%;
  padding: 0 50px;
  overflow: auto;
}
.session__content .filters {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.session__content .filters select {
  font-size: 16px;
  color: #666;
  background-color: white;
  margin-right: 30px;
  padding: 3px;
  border-radius: 4px;
  border-color: #666;
  width: 240px;
}
.session__content .filters select:focus {
  outline: none;
}
.session__content .tabs ul {
  display: flex;
  margin: 0;
}
.session__content .tabs ul li {
  cursor: pointer;
  color: #000000;
  font-weight: 500;
  border: 2px solid #01693E;
  border-radius: 10px 10px 0 0;
  padding: 10px 15px;
}
.session__content .tabs ul li:first-child {
  border-radius: 10px 0 0 0;
}
.session__content .tabs ul li:last-child {
  border-radius: 0 10px 0 0;
}
.session__content .tabs ul li.active {
  color: #FFFFFF;
  background-color: #01693E;
}
.session__blocks {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.session__blocks .block {
  width: 48%;
  text-align: center;
  padding: 100px 120px;
  border: 2px solid #005795;
  border-radius: 8px;
  color: #005795;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.session__blocks .block a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.session__blocks .block:hover {
  font-size: 18px;
  background-color: #005795;
  color: #FFFFFF;
  transition: 0.25s;
}
.session .bibliography {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.session .bibliography__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.session .bibliography__item a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 20px;
}
.session .bibliography__item:nth-child(even) {
  background-color: #EEEEEE;
  border-radius: 8px;
}
.session .questions {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.session .questions__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.session .questions__list .actions {
  display: flex;
  gap: 20px;
  justify-content: end;
  align-items: center;
  margin-bottom: 20px;
}
.session .questions__list .actions a {
  display: flex;
  gap: 10px;
}
.session .questions__list .actions select {
  padding: 5px;
  border-radius: 8px;
  background-color: #fff;
}
.session .questions__list .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}
.session .questions__list .item .text {
  width: 60%;
}
.session .questions__list .item .text p {
  font-weight: 500;
}
.session .questions__list .item .text ol {
  list-style: lower-alpha;
  padding-left: 40px;
}
.session .questions__list .item .text ol li.correct {
  font-weight: 600;
  color: #01693E;
  text-decoration: underline;
}
.session .questions__list .item .reference {
  width: 30%;
}
.session .questions__list .item .reference .title {
  color: #005795;
}
.session .questions .item:nth-child(even) {
  background-color: #EEEEEE;
  border-radius: 8px;
}
.session .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.session .content .info {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.session .content .info a {
  color: #005795;
  font-weight: 500;
  text-decoration: underline;
}

.partners {
  padding: 40px;
}
.partners .blok_header {
  display: flex;
  gap: 15px;
  color: #44546A;
}
.partners .blok_header .active {
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  color: black;
}
.partners .blok_header .inactive {
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  color: #44546A;
  cursor: pointer;
}
.partners .blok_header .bar {
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  color: black;
}

.news {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
}
.news__card {
  background-color: #F5F5F5;
  border-radius: 16px;
  overflow: hidden;
}
.news__card .card_image {
  overflow: hidden;
  width: 100%;
  height: 250px;
  border-radius: 16px 16px 0 0;
  border: 1px solid #E5E5E5;
}
.news__card .card_image img {
  border-radius: 16px 16px 0 0;
  transition: transform 0.3s ease;
  transform-origin: center center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 250px;
}
.news__card:hover img {
  transform: scale(1.1);
}
.news__card:hover .card_image {
  border: 1px solid #7EB498;
}
.news__card:hover .news__info {
  background-color: #B6D4C4;
  color: #00694F;
  text-decoration: underline;
  border: 1px solid #7EB498;
}
.news__info {
  padding: 30px;
  background-color: #F5F5F5;
  border-radius: 0 0 16px 16px;
  transition: all 0.3s ease;
  border: 1px solid #E5E5E5;
}
.news__info .date {
  color: #01693E;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
.news__info .title {
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  height: 72px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 24px;
  text-overflow: ellipsis;
}
.news swiper-container {
  width: 100%;
}
.news .swiper-button {
  top: 50%;
}

.testing-links .casino_online {
  flex: 1;
  margin: 0;
  border-radius: 24px;
  background-color: #ffffff;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  transition: transform 0.3s ease-in-out;
}
.testing-links .casino_online:hover {
  transform: translateY(-5px);
}
.testing-links .casino_online .text_left {
  flex: 1;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.testing-links .casino_online .text_left .title {
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 10px;
}
.testing-links .casino_online .text_left .title .icon img {
  width: 20px;
  height: 20px;
}
.testing-links .casino_online .text_left .description {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #242424;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.testing-links .casino_online .button {
  width: 50px;
  height: 50px;
  background-color: #00693F;
  color: white;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  flex-shrink: 0;
  text-decoration: none;
}
.testing-links .casino_online .button:hover {
  background-color: #005741;
}
.testing-links .casino_online .button:active {
  background-color: #004334;
}
.testing-links .casino_online .button .link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}
.testing-links .casino_online .button img {
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .testing-links {
    flex-direction: column;
    align-items: center;
  }
}

.preview {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.news_block .container {
  flex-direction: column;
  gap: 30px;
}
.news_block .container__title {
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 7px 0;
}
.news_block .container__date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: flex-start;
  gap: 5px;
}

.jackpot_block {
  margin: 20px 0;
  padding: 40px;
}
.jackpot_block .jackpot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}
.jackpot_block .jackpot .jackpot__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((50vw - 80px - 50px) / 2);
  height: 365px;
  background-color: #F5F5F5;
  border: 1px solid #E5E5E5;
  padding: 25px;
  border-radius: 16px;
  position: relative;
}
.jackpot_block .jackpot .jackpot__card .preview {
  width: 220px;
  height: 220px;
}
.jackpot_block .jackpot .jackpot__card .text {
  position: absolute;
  bottom: 25px;
  left: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.jackpot_block .jackpot .jackpot__card .text .jackpot__amount {
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
}
.jackpot_block .jackpot .jackpot__card .text .jackpot__amount span {
  color: #333F50;
  font-size: 24px;
  font-weight: 400;
}
.jackpot_block .jackpot .jackpot__card .text .jackpot__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 44px;
}
.jackpot_block .jackpot .primal {
  width: calc(50vw - 80px);
  border: none;
  flex-direction: row-reverse;
  background-color: transparent;
  background-image: url("../images/primal.svg");
  background-size: cover;
  border-bottom: 1px solid #E5E5E5;
}
.jackpot_block .jackpot .primal .title {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
}
.jackpot_block .jackpot .primal .preview {
  width: 301px;
  height: 301px;
}
@media (max-width: 1150px) {
  .jackpot_block .jackpot {
    gap: 15px;
  }
  .jackpot_block .jackpot .jackpot__card,
  .jackpot_block .jackpot .primal {
    width: 100%;
  }
  .jackpot_block .jackpot .primal {
    height: 500px;
  }
}

.responsible_gaming_block {
  padding: 60px 40px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  -o-object-fit: fill;
     object-fit: fill;
}
.responsible_gaming_block .image {
  width: 36%;
  margin: 64px 0;
  border-radius: 16px;
  border: 1px solid #E5E5E5;
  background-color: #F5F5F5;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 1200px) {
  .responsible_gaming_block .image {
    width: 50%;
  }
}
.responsible_gaming_block .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  border-radius: inherit;
}
.responsible_gaming_block .image .cards {
  height: 175%;
  max-width: none;
  z-index: 4;
}
.responsible_gaming_block .image .security {
  position: absolute;
  width: 90%;
  height: 90%;
  z-index: 3;
}
.responsible_gaming_block .text {
  width: calc(64% - 25px);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 1200px) {
  .responsible_gaming_block .text {
    width: calc(50% - 25px);
  }
}
.responsible_gaming_block .text .blok_header {
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  margin: 0;
}
.responsible_gaming_block .text .description {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}
.responsible_gaming_block .text .learn_more {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #00694F;
  padding: 12px;
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
}
.responsible_gaming_block .text .learn_more:hover {
  background-color: #B6D4C4;
}
.responsible_gaming_block .text .learn_more:active {
  background-color: #000000;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .responsible_gaming_block {
    flex-wrap: wrap;
    padding: 40px 20px;
  }
  .responsible_gaming_block .image {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
  }
  .responsible_gaming_block .image img {
    height: 100%;
  }
  .responsible_gaming_block .text {
    width: 100%;
    gap: 10px;
  }
  .responsible_gaming_block .text .blok_header {
    font-size: 24px;
    line-height: 32px;
  }
  .responsible_gaming_block .text .description {
    font-size: 16px;
    line-height: 22px;
  }
  .responsible_gaming_block .text .learn_more {
    font-size: 16px;
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .responsible_gaming_block .image {
    height: 100%;
  }
  .responsible_gaming_block .text .blok_header {
    font-size: 20px;
    line-height: 28px;
  }
  .responsible_gaming_block .text .description {
    font-size: 14px;
    line-height: 20px;
  }
  .responsible_gaming_block .text .learn_more {
    font-size: 14px;
    padding: 8px;
  }
}

.text-editor p {
  margin: 0;
}
.text-editor p + p {
  margin-top: 1em;
  margin-bottom: 1em;
}
.text-editor p:not(:last-child) {
  margin-bottom: 1em;
}

.public_document {
  flex-direction: column;
  gap: 15px;
}
.public_document .text {
  padding: 0 200px;
}

footer {
  background-color: #FFFFFF;
  border-top: 1px solid #00693F;
  height: 238px;
}
footer .container {
  align-items: stretch;
  margin: 0 40px;
  justify-content: normal;
  display: flex;
}
footer .container .footer__column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
footer .container .footer__column .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  padding: 0 5px;
  margin-bottom: 15px;
}
footer .container .footer__column .contacts {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #44546A;
}
footer .container .footer__column .logo img {
  width: 130px;
  height: 65px;
}
footer .menu_links {
  display: flex;
  flex-wrap: wrap;
  height: 190px;
  gap: 0 !important;
  -moz-column-gap: 15px !important;
       column-gap: 15px !important;
  margin-right: 100px;
}
footer .menu_links .link {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #44546A;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
}
footer .menu_links .link:hover {
  color: #000000;
}
footer .menu_links .link:active {
  color: #000000;
  background-color: #B6D4C4;
}
footer .menu_links .active {
  background-color: #F5F5F5;
  color: #00693F;
}
footer .logo_block {
  justify-content: space-between;
  width: 18%;
  height: 178px;
}
footer .logo_block .footer__bottom {
  gap: 0;
  color: #44546A;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
footer .contacts_block {
  width: 24%;
  margin-right: 3lh;
  padding: 0 0 0 10px;
}
footer .contacts_block .title {
  margin-bottom: 0 !important;
}
footer .right_section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: auto;
}
footer .right_section .top_row {
  display: flex;
  gap: 40px;
}
footer .feedback_block .title {
  margin-bottom: 0 !important;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
}
footer .responsible_block .title {
  margin-bottom: 0 !important;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
}
footer .social_block .title-block {
  margin-bottom: 0 !important;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
}
footer .social_block .social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
footer .social_block .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #B6D4C4;
  border-radius: 8px;
  transition: all 0.3s ease;
}
footer .social_block .social-icon svg {
  width: 20px;
  height: 20px;
  fill: #003828;
  transition: all 0.3s ease;
}
footer .social_block .social-icon:hover {
  background-color: #003828;
}
footer .social_block .social-icon:hover svg {
  fill: #B6D4C4;
}
footer .social_block .social-icon:active {
  background-color: #000;
}
footer .social_block .social-icon:active svg {
  fill: #fff;
}
@media (max-width: 1440px) {
  footer .responsible_block {
    width: 45%;
  }
}
footer .footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
footer .footer__btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px;
  border-radius: 8px;
  background-color: #B6D4C4;
  color: #003828;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
footer .footer__btn:hover {
  background-color: #003828;
  color: #B6D4C4;
}
footer .footer__btn:active {
  background-color: #000000;
  color: #FFFFFF;
}
footer .footer__btn.footer__btn--outline {
  background-color: #B6D4C4;
  color: #003828;
  border-color: #B6D4C4;
}
footer .footer__btn.footer__btn--outline:hover {
  background-color: #003828;
  color: #B6D4C4;
  border-color: #003828;
}
footer .footer__btn.footer__btn--outline:active {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
}

.about {
  background-image: url("../../../../../../../img/bckg-about.svg");
  background-position: center;
  background-size: cover;
  width: 100%;
}
.about__col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  flex: 1;
  padding: 80px 50px;
  min-width: 300px;
}
.about__col .left-column {
  max-width: 45%;
}
.about__col .right-column {
  max-width: 45%;
}
.about__col img {
  width: 100%;
}
.about .header-section {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.about .header-section .header-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  margin-bottom: 20px;
}
.about .header-section .header-content h2 {
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}
.about .header-section .header-content p {
  text-align: justify;
}
.about .info-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 15px 0;
}
.about .info-boxes.three-in-row {
  justify-content: space-between;
}
.about .info-boxes.three-in-row .info-box.mission-box {
  flex: 1 1 calc(40% - 20px);
  order: 3;
}
.about .info-boxes.three-in-row .info-box:not(.mission-box) {
  flex: 1 1 calc(30% - 20px);
}
.about .info-boxes.two-in-row {
  justify-content: space-between;
}
.about .info-boxes.two-in-row .info-box {
  flex: 1 1 calc(50% - 20px);
}
.about .info-boxes .info-box {
  background-color: #f5f5f5;
  border-radius: 16px;
  padding: 24px;
  text-align: left;
}
.about .info-boxes .info-box img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.about .info-boxes .info-box h3 {
  margin-bottom: 10px;
  font-weight: bold;
}
.about .info-boxes .info-box p {
  text-align: justify;
}
@media (max-width: 1024px) {
  .about .info-boxes.three-in-row .info-box,
  .about .info-boxes.two-in-row .info-box {
    flex: 1 1 100%;
  }
}

@media (max-width: 1024px) {
  .sidebar__search .cards .announcement .announcement__item {
    width: calc(50% - 15px) !important;
  }
}
@media (max-width: 768px) {
  .sidebar__search .announcement__item {
    width: 100% !important;
  }
  .sidebar__search .announcement__item .announcement__image {
    height: 200px;
  }
  .sidebar__search .announcement__item .announcement__image img {
    height: 200px;
  }
  .sidebar__search .announcement__item .announcement__text {
    padding: 20px;
  }
  .single-announcement .container {
    padding: 40px 20px !important;
  }
  .single-announcement .container .announcement__content {
    flex-direction: column;
    gap: 20px;
  }
  .single-announcement .container .announcement__content .preview {
    width: 100% !important;
    max-width: 100%;
    height: auto;
    min-height: 250px;
  }
  .single-announcement .container .announcement__content .text-content {
    width: 100% !important;
  }
}
.contact-section {
  padding: 40px;
}
.contact-section .container {
  flex-wrap: wrap;
  gap: 50px;
}
.contact-section .container .map {
  flex: 1;
  min-width: 300px;
  height: 500px;
}
.contact-section .container .map iframe {
  width: 100%;
  height: 100%;
}
.contact-section .container .contact-info {
  height: 500px;
  min-width: 300px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("../../../../../../../img/bckg-about.svg");
  background-position: center;
  background-size: cover;
}
.contact-section .container .contact-info .contact-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-section .container .contact-info .contact-block .info {
  display: flex;
  gap: 10px;
}

#modal-body .feedback {
  background-image: none;
  padding: 0;
}

.modal-container {
  background-color: #f3f4f6 !important;
}

.news-search {
  width: 100%;
}
.news-search .container {
  justify-content: center;
  margin-bottom: 20px;
}
.news-search .container form {
  width: 100%;
  max-width: 500px;
  border: 1px solid #636363;
  border-radius: 8px;
}
.news-search .container form .search {
  padding: 7px;
  border: 0px;
  width: 90%;
  border-radius: 8px;
}
.news-search .container form button {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}
.news-search .container form button img {
  max-width: none;
  position: absolute;
  top: -15px;
  width: 20px;
  height: 20px;
}
.news-search .container form input:focus {
  outline: none;
}

.news-section {
  padding-bottom: 30px;
}
.news-section .news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 1em;
  justify-items: center;
  align-items: start;
  padding-top: 0 !important;
}
.news-section .news__card {
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #fff;
  transition: transform 0.3s;
  height: 100%;
}
.news-section .news__card:hover {
  transform: translateY(-10px);
}
.news-section .news__card .preview {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-section .news__card .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  flex-grow: 1;
  padding: 10px 5px;
}
.news-section .news__card .info .title {
  font-size: 18px;
  font-weight: 600;
  max-height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-section .news__card .info .description {
  max-height: 60px;
  font-size: 14px;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-section .news__card .info .date {
  display: flex;
  align-items: center;
  gap: 5px;
}

nav {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
nav ul {
  list-style: none;
  margin: 0;
}
nav .pagination {
  display: flex;
  gap: 10px;
}
nav .pagination a,
nav .pagination span {
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: 8px;
  border: 1px #c6c9cc solid;
}
nav .pagination li.active span {
  background-color: #01693E;
  color: #FFFFFF;
}
nav .pagination li.disabled span {
  color: #dadada;
}

.single-announcement {
  width: 100%;
}
.single-announcement .container {
  align-items: flex-start;
  justify-content: flex-start !important;
  padding: 80px;
  gap: 50px;
}
.single-announcement .container .announcement {
  width: 100%;
  flex-direction: column;
}
.single-announcement .container .announcement__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
}
.single-announcement .container .announcement__head h1 {
  flex-grow: 1;
}
.single-announcement .container .announcement__head a {
  width: 120px;
}
.single-announcement .container .announcement__head .date {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.single-announcement .container .announcement__content {
  width: 100%;
  padding: 40px 0;
  overflow: auto;
}
.single-announcement .container .announcement__content .preview {
  float: left;
  width: 45%;
  max-width: 600px;
  height: auto;
  margin-right: 40px;
  margin-bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.single-announcement .container .announcement__content .text-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.single-announcement .container .announcement__content .text-content .description {
  margin-bottom: 30px;
}
.single-announcement .container .announcement__content .text-content .share {
  display: flex;
  align-items: center;
  gap: 15px;
}
.single-announcement .container .announcement__content .text-content .share p {
  font-weight: 600;
}
.single-announcement .container .announcement__content .gallery {
  clear: both;
  width: 100%;
  margin-top: 40px;
}
.single-announcement .container .announcement__content .gallery img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-announcement .container .announcement__content swiper-container {
  width: 100%;
}
.single-announcement .container .announcement__content .elementor-element {
  width: 100% !important;
}

.single-news {
  width: 100%;
}
.single-news .container {
  align-items: flex-start;
  justify-content: flex-start !important;
  padding: 80px;
  gap: 50px;
}
.single-news .container .news {
  width: 100%;
  flex-direction: column;
}
.single-news .container .news__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
}
.single-news .container .news__head h1 {
  flex-grow: 1;
}
.single-news .container .news__head a {
  width: 120px;
}
.single-news .container .news__head .date {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.single-news .container .news__content {
  width: 100%;
  padding: 40px 0;
}
.single-news .container .news__content swiper-container {
  width: 100%;
}
.single-news .container .news__content .gallery {
  margin-top: 20px;
}
.single-news .container .news__content .gallery img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-news .container .news__content .preview {
  width: 100%;
  margin-bottom: 40px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-news .container .news__content .share {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.single-news .container .news__content .share p {
  font-weight: 600;
}
.single-news .container .news__content .elementor-element {
  width: 100% !important;
}

@media (max-width: 1100px) {
  .container {
    padding: 30px;
    margin: 0;
    flex-direction: column;
  }
  .dropdown {
    width: 45px !important;
  }
  .dropdown .dropdown-menu {
    background: #f3f4f6 !important;
    width: 50px !important;
    left: 0px !important;
  }
  .navbar-top .container,
  .navbar-top .line_2 {
    display: none;
  }
  .navbar-top .burger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    gap: 20px;
  }
  .navbar-top .burger .brand-logo {
    width: 50%;
  }
  .news_block {
    padding: 40px;
  }
  .news_block .news__card {
    display: none;
  }
  .news_block .news__card:first-child {
    width: 100%;
    display: block;
  }
  .partners {
    padding: 40px;
  }
  .partners .blok_header .active,
  .partners .blok_header .inactive {
    margin-top: 10px;
    font-size: 18px;
    line-height: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .partners .blok_header .bar,
  .partners .blok_header .bar {
    margin: auto 0;
    font-size: 18px;
    line-height: 20px;
  }
  .hero__text {
    margin-top: 40px;
  }
  .hero__text .title {
    font-size: 40px;
    text-align: center;
  }
  .hero__text .categories {
    justify-content: center;
  }
  .casino_online .text {
    padding-right: 20px;
  }
  .slider swiper-container {
    height: 99%;
  }
  .hero .container {
    gap: 50px;
  }
  .hero .container .hero__slider {
    width: 100%;
  }
  .hero .container .hero__slider swiper-container::part(button-prev) {
    left: 70% !important;
  }
  .hero .container .hero__slider .slide {
    flex-direction: column-reverse;
    padding: 20px 50px;
    align-items: center;
  }
  .hero .container .hero__slider .slide img {
    max-width: 400px;
  }
  .single-product .container {
    padding: 40px;
  }
  .single-product .container .product__head {
    justify-content: center;
    flex-wrap: wrap;
  }
  .single-news .container {
    padding: 40px;
  }
  .single-announcement .container {
    padding: 40px 20px;
  }
  .single-announcement .container .announcement__head {
    flex-wrap: wrap;
    gap: 15px;
  }
  .single-announcement .container .announcement__head .date {
    width: auto;
  }
  .single-announcement .container .announcement__content {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
  .single-announcement .container .announcement__content .preview {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .single-announcement .container .announcement__content .text-content {
    width: 100%;
  }
  .single-announcement .container .announcement__content .gallery {
    margin-top: 20px;
  }
  .single-announcement .container .announcement__content .gallery img {
    height: 150px;
  }
  .contact-section {
    padding: 10px;
  }
  .feedback__form form .form-line {
    gap: 15px;
  }
  footer {
    height: auto;
  }
  footer .container {
    padding: 20px 40px;
    gap: 30px;
    margin: 0;
    flex-direction: column;
  }
  footer .container .logo_block {
    flex-direction: row;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  footer .container .logo_block .logo-container {
    width: 50%;
  }
  footer .container .logo_block .logo-container .logo img {
    width: auto;
    height: auto;
  }
  footer .container .logo_block .footer__bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  footer .container .contacts_block {
    width: 100%;
  }
  footer .container .right_section {
    width: 100%;
  }
  footer .container .right_section .top_row {
    flex-direction: column;
    gap: 20px;
  }
  footer .container .feedback_block {
    width: 100%;
  }
  footer .container .responsible_block {
    width: 100%;
  }
  footer .container .social_block {
    width: 100%;
  }
  footer .container .map {
    width: 100%;
  }
  footer .container .map iframe {
    width: 100%;
  }
  .contact-block {
    align-items: center;
  }
  .feedback__form {
    padding: 0 30px;
  }
  .news-section .news {
    grid-template-columns: 1fr;
  }
  .support .info {
    flex-direction: column;
    gap: 20px;
  }
  .support .info .content {
    width: 90% !important;
  }
  .contact-section .container {
    padding: 30px 0;
  }
  .contact-section .container .contact-block {
    text-align: center;
  }
  .sidebar {
    margin: 0 5px;
  }
  .sidebar__menu {
    display: none;
  }
  .sidebar__block {
    display: none;
  }
  .sidebar__content, .sidebar__list, .sidebar__cards,
  .sidebar .sidebar__search {
    width: 100% !important;
  }
  .sidebar__content .text {
    padding: 20px;
  }
  .sidebar__content .text div {
    flex-direction: column !important;
  }
  .sidebar__content .text ul {
    height: -moz-fit-content;
    height: fit-content;
  }
  .sidebar__content .text h3 > img {
    height: auto;
  }
  .sidebar__content .map .modal-overlay .modal {
    width: calc(100vw - 20px);
  }
  .sidebar__list {
    padding: 20px;
  }
  .sidebar__list .rooms-list .list__item {
    flex-direction: column;
    align-items: flex-end;
  }
  .sidebar__list .rooms-list .list__item .schedule {
    align-items: center;
    margin-bottom: 5px;
  }
  .sidebar__cards {
    padding: 20px;
  }
  .sidebar__cards .management .management__item {
    flex-direction: column;
  }
  .sidebar__cards .management .management__item .management__image {
    width: 100%;
  }
  .sidebar__cards .management .management__item .management__text {
    width: 100%;
    height: auto;
    max-height: 300px;
  }
  .sidebar__search {
    padding: 20px;
  }
  .sidebar__search .bar form {
    position: relative;
  }
  .sidebar__search .bar form .search {
    width: 100% !important;
  }
  .sidebar__search .bar form button {
    position: absolute;
    right: 0;
    bottom: 25%;
  }
  .sidebar__search .bar form button img {
    position: static;
  }
  .sidebar .management__item,
  .sidebar .news__item {
    width: 100% !important;
  }
  .sidebar__search .cards .announcement {
    gap: 20px;
  }
  .sidebar__search .cards .announcement .announcement__item {
    width: 100% !important;
  }
  .sidebar__search .cards .announcement .announcement__item .announcement__image {
    height: 250px;
  }
  .sidebar__search .cards .announcement .announcement__item .announcement__image img {
    height: 250px;
  }
  .sidebar__search .cards nav {
    margin-top: 30px;
  }
  .sidebar__search .cards nav .pagination {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .sidebar__search .cards nav .pagination a,
  .sidebar__search .cards nav .pagination span {
    font-size: 14px;
    width: 36px;
    height: 36px;
  }
  .modal-container {
    margin-left: 0 !important;
  }
}
modal {
  display: none;
}

.modal-overlay {
  display: none;
  overflow-y: auto;
  z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(4px) saturate(180%);
  -webkit-backdrop-filter: blur(4px) saturate(180%);
}

.modal-container {
  background: #FFFFFF;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 90%;
  min-height: 80vh;
  max-height: 90vh;
  z-index: 15;
  overflow-y: auto;
  overflow-x: hidden;
  animation: jelly 0.5s ease-in-out;
  border-radius: 12px;
  border: 1px solid #F5F5F5;
}
.modal-container::-webkit-scrollbar {
  width: 10px;
}
.modal-container::-webkit-scrollbar-track {
  border-radius: 12px; /* Скругление фона скроллбара */
  background-color: #FFF;
}
.modal-container::-webkit-scrollbar-thumb {
  border-radius: 12px; /* Скругление ползунка */
  background-color: #CBCBCB;
  outline: 2px solid #FFF;
  outline-offset: -2px;
  border: 0.1px solid #B7B7B7;
}
.modal-container::-webkit-scrollbar-thumb:hover {
  background-color: #909090;
}
.modal-container {
  scrollbar-width: thin;
  scrollbar-color: #CBCBCB transparent;
}
.modal-container .modal-body {
  padding: 30px;
  position: relative;
}
.modal-container .modal-body .modal-title {
  width: 100%;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.modal-container .modal-body .modal-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100px;
  width: calc(100% + 200px);
  height: 1px;
  background-color: #E5E5E5;
}
.modal-container .modal-body .machine-modal {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 75vh;
}
.modal-container .modal-body .machine-modal .machine .item {
  flex-direction: column;
}
.modal-container .modal-body .description {
  width: 100%;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.modal-container .modal-body .description .item {
  display: flex;
  gap: 5px;
}
.modal-container .modal-body .description .item img {
  width: 20px;
  height: 20px;
}
.modal-container .modal-body .description .name {
  color: #00693F;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  margin: 0;
}
.modal-container .modal-body .description .name span {
  font-weight: 700;
}
.modal-container .modal-body .description .address {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.modal-container .modal-body .description .schedule {
  display: flex;
  gap: 5px;
  color: #44546A;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.modal-container .modal-body .description .schedule span {
  font-weight: 500;
  color: #000000;
}
.modal-container .modal-body .gallery-slider-container, .modal-container .modal-body .machines-slider-container {
  width: 100%;
  display: flex;
}
.modal-container .modal-body .gallery-slider-container swiper-container, .modal-container .modal-body .machines-slider-container swiper-container {
  width: calc(100% - 80px);
}
.modal-container .modal-body .gallery-slider-container swiper-container .gallery__card, .modal-container .modal-body .gallery-slider-container swiper-container .slots__card, .modal-container .modal-body .machines-slider-container swiper-container .gallery__card, .modal-container .modal-body .machines-slider-container swiper-container .slots__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
}
.modal-container .modal-body .gallery-slider-container swiper-container .gallery__card .preview, .modal-container .modal-body .gallery-slider-container swiper-container .slots__card .preview, .modal-container .modal-body .machines-slider-container swiper-container .gallery__card .preview, .modal-container .modal-body .machines-slider-container swiper-container .slots__card .preview {
  width: 100%;
  border-radius: 16px;
}
.modal-container .modal-body .gallery-slider-container swiper-container .gallery__card, .modal-container .modal-body .machines-slider-container swiper-container .gallery__card {
  background-blend-mode: screen;
}
.modal-container .modal-body .gallery-slider-container swiper-container .gallery__card:hover .filter, .modal-container .modal-body .gallery-slider-container swiper-container .gallery__card:hover .search, .modal-container .modal-body .machines-slider-container swiper-container .gallery__card:hover .filter, .modal-container .modal-body .machines-slider-container swiper-container .gallery__card:hover .search {
  display: flex;
}
.modal-container .modal-body .gallery-slider-container swiper-container .gallery__card .filter, .modal-container .modal-body .machines-slider-container swiper-container .gallery__card .filter {
  display: none;
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: #00693F;
  mix-blend-mode: color;
  pointer-events: none;
  transition: all 0.3s ease;
}
.modal-container .modal-body .gallery-slider-container swiper-container .gallery__card .search, .modal-container .modal-body .machines-slider-container swiper-container .gallery__card .search {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
}
.modal-container .modal-body .gallery-slider-container swiper-container .slots__card, .modal-container .modal-body .machines-slider-container swiper-container .slots__card {
  width: 100%;
  border-radius: 16px;
  padding: 0;
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
}
.modal-container .modal-body .gallery-slider-container swiper-container .slots__card .preview, .modal-container .modal-body .machines-slider-container swiper-container .slots__card .preview {
  height: 250px;
  width: auto;
}
.modal-container .modal-body .gallery-slider-container swiper-container .slots__info, .modal-container .modal-body .machines-slider-container swiper-container .slots__info {
  width: 100%;
  background-color: #F5F5F5;
  padding: 8px 16px;
  border-radius: 0 0 16px 16px;
}
.modal-container .modal-body .gallery-slider-container swiper-container .slots__info p, .modal-container .modal-body .machines-slider-container swiper-container .slots__info p {
  height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.modal-container .modal-body .gallery-slider-container .swiper-gallery-button-prev, .modal-container .modal-body .gallery-slider-container .swiper-gallery-button-next, .modal-container .modal-body .gallery-slider-container .swiper-machine-button-prev, .modal-container .modal-body .gallery-slider-container .swiper-machine-button-next, .modal-container .modal-body .machines-slider-container .swiper-gallery-button-prev, .modal-container .modal-body .machines-slider-container .swiper-gallery-button-next, .modal-container .modal-body .machines-slider-container .swiper-machine-button-prev, .modal-container .modal-body .machines-slider-container .swiper-machine-button-next {
  background-color: #B6D4C4;
  border-radius: 8px;
  display: flex;
  align-content: center;
  justify-content: center;
  padding: 12px;
  margin: 10px 0;
  align-items: center;
  font-size: 30px;
  color: #00693f;
}
.modal-container .modal-body .gallery-slider-container .swiper-gallery-button-prev:hover, .modal-container .modal-body .gallery-slider-container .swiper-gallery-button-next:hover, .modal-container .modal-body .gallery-slider-container .swiper-machine-button-prev:hover, .modal-container .modal-body .gallery-slider-container .swiper-machine-button-next:hover, .modal-container .modal-body .machines-slider-container .swiper-gallery-button-prev:hover, .modal-container .modal-body .machines-slider-container .swiper-gallery-button-next:hover, .modal-container .modal-body .machines-slider-container .swiper-machine-button-prev:hover, .modal-container .modal-body .machines-slider-container .swiper-machine-button-next:hover {
  color: #B6D4C4;
  background-color: #00693f;
}
.modal-container .modal-body .gallery-slider-container .swiper-gallery-button-prev:active, .modal-container .modal-body .gallery-slider-container .swiper-gallery-button-next:active, .modal-container .modal-body .gallery-slider-container .swiper-machine-button-prev:active, .modal-container .modal-body .gallery-slider-container .swiper-machine-button-next:active, .modal-container .modal-body .machines-slider-container .swiper-gallery-button-prev:active, .modal-container .modal-body .machines-slider-container .swiper-gallery-button-next:active, .modal-container .modal-body .machines-slider-container .swiper-machine-button-prev:active, .modal-container .modal-body .machines-slider-container .swiper-machine-button-next:active {
  background-color: #000000;
  color: #FFFFFF;
}
.modal-container .modal-body .machines-slider-container swiper-container {
  padding: 0 10px;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal-overlay {
  display: block;
}
.modal-open #map {
  z-index: 1;
}
.modal-open .maps-container {
  z-index: 15 !important;
}

.special-products.container {
  display: flex;
  justify-content: center;
  border: 1px solid #f1f5f9;
  padding: 0;
}
.special-products.container .card {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}
.special-products.container .card:hover {
  transform: translateY(-5px);
}
.special-products.container .card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.special-products.container .card a .card__img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.special-products.container .card a .card__body {
  padding: 16px;
}
.special-products.container .card a .card__body .card__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}
.special-products.container .card a .card__body .card__text {
  max-height: 25px;
  font-size: 14px;
  font-weight: 300;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.special-products.container .card a .card__body .card__text p {
  margin: 0 !important;
}

.alert-danger {
  color: #FF4D50;
  font-size: 0.9em;
}

.alert-wrapper {
  width: 100%;
  bottom: 10px;
  right: 10px;
  position: fixed;
  z-index: 100;
}
.alert-wrapper .alert {
  width: 648px;
  position: relative;
  left: 50%;
  margin-bottom: 10px;
  margin-left: -324px;
  padding: 15px 44px 15px 44px;
  display: block;
  animation: jelly 0.5s ease-in-out;
  transform-origin: center top;
  z-index: 999;
  text-align: left;
  border-radius: 3px;
}
.alert-wrapper .alert.error {
  background: #E85600;
}
.alert-wrapper .alert.info {
  background: #01693E;
}
.alert-wrapper .alert.success {
  background: #01693E;
}
.alert-wrapper .alert.warning {
  background: #E85600;
}
.alert-wrapper .alert .icon {
  position: absolute;
}
.alert-wrapper .alert .icon:first-child {
  left: 10px;
  top: 15px;
}
.alert-wrapper .alert .icon:last-child {
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.alert-wrapper .alert p {
  color: #FFFFFF;
  margin: 0px;
  font-size: 16px;
}

.tooltip {
  display: block !important;
  z-index: 10000;
}
.tooltip.hide {
  display: none !important;
}
.tooltip .tooltip-inner {
  max-width: 400px;
  background: #01693E;
  color: #FFFFFF;
  border-radius: 4px;
  padding: 5px 10px 4px;
  font-size: 16px;
}
.tooltip .tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 5px;
  border-color: #01693E;
  z-index: 1;
}
.tooltip[x-placement^=top] {
  margin-bottom: 5px;
}
.tooltip[x-placement^=top] .tooltip-arrow {
  border-width: 5px 5px 0 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  bottom: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.tooltip[x-placement^=bottom] {
  margin-top: 5px;
}
.tooltip[x-placement^=bottom] .tooltip-arrow {
  border-width: 0 5px 5px 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-top-color: transparent !important;
  top: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.tooltip[x-placement^=right] {
  margin-left: 5px;
}
.tooltip[x-placement^=right] .tooltip-arrow {
  border-width: 5px 5px 5px 0;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  left: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}
.tooltip[x-placement^=left] {
  margin-right: 5px;
}
.tooltip[x-placement^=left] .tooltip-arrow {
  border-width: 5px 0 5px 5px;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  right: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}

.help-sidebar-wrapper {
  display: flex;
}
.help-sidebar-wrapper .help-sidebar {
  position: fixed;
  right: 0;
  top: 80px;
  width: 400px;
  height: 100%;
  background-color: #005795;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  transition: transform 0.3s ease;
  z-index: 10;
  color: #fff;
  padding-bottom: 70px;
}
.help-sidebar-wrapper .help-sidebar h2 {
  color: #fff;
  font-weight: bold;
}
.help-sidebar-wrapper .help-sidebar .help-button {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #007bff;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.help-sidebar-wrapper .help-sidebar .help-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}
.help-sidebar-wrapper .help-sidebar .help-content {
  text-align: left;
  color: #fff;
}
.help-sidebar-wrapper .help-sidebar .help-content h3 {
  color: #fff;
  padding-left: 10px;
  font-weight: bold;
}
.help-sidebar-wrapper .help-sidebar .help-content .level {
  padding: 10px 0;
  width: 100%;
}
.help-sidebar-wrapper .help-sidebar .help-content .level-1 {
  background-color: #005795;
}
.help-sidebar-wrapper .help-sidebar .help-content .level-2 {
  background-color: #10639F;
  margin-top: 10px;
}
.help-sidebar-wrapper .help-sidebar .help-content .level-2 summary {
  margin-left: 10px;
}
.help-sidebar-wrapper .help-sidebar .help-content .level-3 {
  background-color: #2271A9;
  margin-top: 10px;
}
.help-sidebar-wrapper .help-sidebar .help-content .level-3 summary {
  margin-left: 20px;
}
.help-sidebar-wrapper .help-sidebar .help-content .level-4 {
  background-color: #3680B4;
  margin-top: 10px;
}
.help-sidebar-wrapper .help-sidebar .help-content .level-4 summary {
  margin-left: 25px;
}
.help-sidebar-wrapper .help-sidebar .help-content .level-4 p {
  font-size: 14px;
  margin-left: 25px;
}
.help-sidebar-wrapper .help-sidebar .help-content summary {
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.page-container {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
}

.full-width {
  max-width: 100%;
  width: 100%;
}

.content-wrapper {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  overflow: hidden;
}

.content-wrapper2 {
  background-color: #ffffff;
  padding: 21px;
  border-radius: 20px;
  width: 100%;
  overflow: hidden;
}

.responsible-gaming-section {
  width: 100%;
  padding: 1px;
  background: radial-gradient(circle at bottom left, rgb(218, 231, 227) 0%, rgb(245, 245, 245) 50%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.responsible-gaming-section table {
  width: auto;
}

.section-header {
  text-align: left;
}

.responsible-gaming-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gaming-info-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.gaming-icon img {
  width: 400px;
  height: auto;
  border-radius: 10px;
  margin-right: 40px;
}

@media (max-width: 768px) {
  .gaming-info-card {
    flex-direction: column;
    text-align: center;
  }
  .gaming-icon img {
    width: 100%;
    max-width: 300px;
    margin-right: 0;
  }
}
.gaming-text {
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
}

.additional-info {
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
}

.three-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.info-card {
  background-color: #F5F5F5;
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.info-icon img {
  width: 50px;
  height: auto;
}

.left-top {
  align-self: flex-start;
}

.info-content {
  text-align: left;
}

.info-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.info-content p {
  font-size: 14px;
  color: #000000;
}

.awareness-section {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #F5F5F5;
  margin-top: 20px;
  overflow: auto;
}

.testing-links {
  display: flex;
  gap: 12px;
  border-radius: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  background: linear-gradient(291deg, rgb(245, 245, 245), transparent);
  padding: 20px 0;
}
.testing-links .info-card {
  flex: 1;
  max-width: 48%;
  background-color: #c06e6e;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testing-links .info-card h3 {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}
.testing-links .info-card .icon {
  font-size: 22px;
}
.testing-links .info-card p {
  font-size: 14px;
  color: #333;
  margin-top: 5px;
}
.testing-links .info-card .link-icon {
  align-self: flex-end;
  background-color: #0d5832;
  color: white;
  border-radius: 50%;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .testing-links {
    flex-direction: column;
    align-items: center;
  }
  .testing-links .info-card {
    max-width: 90%;
  }
}

.header-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  margin-bottom: 20px;
}

.page-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #ffffff;
  padding: 0;
  margin: 0;
}

.main-wrapper {
  width: 100%;
  max-width: 100%;
  background-color: #ffffff;
  padding: 0 !important;
  border-radius: 0;
  box-shadow: none;
}

.council-content {
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-left {
  text-align: left;
}

.members-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.member-card {
  background-color: #f5f5f5;
  border-radius: 16px;
  padding: 24px;
  box-sizing: border-box;
  flex: 1 1 auto;
}

.full-width {
  flex: 0 0 100%;
}
.full-width .member-position {
  max-width: none;
}

.highlight .member-name, .green-label {
  background-color: #00743f;
  color: #F5F5F5;
  padding: 3px 5px;
  border-radius: 4px;
  display: inline-block;
  font-weight: bold;
}

.member-name {
  font-size: 18px;
  margin-bottom: 10px;
}

.member-position {
  font-size: 14px;
  color: #000000;
  max-width: 300px;
}

.block__btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px;
  border-radius: 8px;
  background-color: #B6D4C4;
  color: #003828;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.block__btn:hover {
  background-color: #003828;
  color: #B6D4C4;
}
.block__btn:active {
  background-color: #000000;
  color: #FFFFFF;
}
.block__btn.block__btn--outline {
  background-color: #B6D4C4;
  color: #003828;
  border-color: #B6D4C4;
}
.block__btn.block__btn--outline:hover {
  background-color: #003828;
  color: #B6D4C4;
  border-color: #003828;
}
.block__btn.block__btn--outline:active {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
}

.header-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  margin-bottom: 20px;
}

.censor-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 0;
  margin: 0;
}

.censor-wrapper {
  width: 100%;
  max-width: 100%;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: none;
}

.censor-content {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.censor-header {
  width: 100%;
  text-align: left;
}

.censor-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.censor-text {
  text-align: justify;
}

.censor-members {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.censor-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.censor-row {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
}

.censor-card {
  background-color: #f5f5f5;
  padding: 24px;
  text-align: left;
  display: block;
  width: 100%;
  border-radius: 16px;
}

.censor-name {
  font-size: 18px;
  font-weight: bold;
  color: #00743f;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
  background-color: #00743f;
  color: #ffffff;
  margin-bottom: 10px;
}

.censor-role {
  font-size: 14px;
  color: #000000;
}

.representative-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #fff;
  padding: 0;
  margin: 0;
}

.representative-wrapper {
  width: 100%;
  max-width: 100%;
  background-color: #fff;
  padding: 24px;
  border-radius: 0;
  box-shadow: none;
}

.representative-content {
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.representative-header {
  text-align: left;
}

.representative-text {
  text-align: justify;
}

.representative-members {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.representative-card {
  background-color: #f5f5f5;
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.representative-label {
  background-color: #00743f;
  color: #fff;
  padding: 3px 5px;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  text-align: left;
}

.representative-details {
  display: flex;
  flex-direction: column;
}

.representative-name {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: left;
}

.representative-role {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.representative-card {
  background-color: #f5f5f5;
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-image: url("../images/representative.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  transition: opacity 0.5s ease;
  -o-object-fit: cover;
     object-fit: cover;
}

.form-line {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-field {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.invalid-feedback {
  color: red;
  font-size: 13px;
  margin-top: 4px;
}

.phone-combined .phone-input-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-combined select.phone-prefix {
  height: 45px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: white;
}

.phone-combined input.input {
  flex: 1;
}

.iti__flag {
  background-image: url("../images/flags.png") !important;
}

.iti {
  width: 100%;
}

.iti__flag-container {
  width: 70px !important;
  min-width: 110px !important;
  max-width: 110px !important;
}

.iti__selected-country-primary {
  height: auto !important;
  align-items: center;
}

.iti__tel-input {
  height: 47px !important;
  padding-left: 110px !important;
  font-size: 14px !important;
  border: none;
  background-color: transparent;
}

.iti__country-list {
  max-height: 250px;
  overflow-y: auto;
}

.iti__country {
  font-size: 14px;
}
