@import url("https://fonts.googleapis.com/css?family=Poppins:200,400,700");
@import url("aos.css");
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&display=swap');

html {
  /*height: 100%;*/
}

body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  background: #1F273D url("../img/BG.png") no-repeat top center; /* Фон */
  color: #fff;
  /*background-size: cover;*/
  min-width: 1300px;
/*  height: 100%;
  min-height: 100%;*/
}

input[type=text], input[type=password], input[type=file], textarea {
	font-family: 'Manrope', sans-serif;
	padding: 4px;
	font-size: 10pt;
	color: #444;
	border: 1px solid #ddd;
	outline-width: 0;
}

h1,h2,h3,h4 {
  color: #fff;
  /*margin-top: 20px;*/
  display: block;
}

.search-form label {
  color: #fff;
}

.search-form2 label {
  color: #fff;
}

th,td {
  color: #000;
}

.test {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 0px;
  padding-right: 0px;
  max-width: 1452px;
  gap: 20px;
}

.container3 {
  width: 100%; /* Ширина контейнера */
  max-width: 1432px; /* Фиксированная ширина контента */
  margin: 0 auto; /* Горизонтальная центровка */
  padding-top: 40px;
  background: url("../img/header.png") center top/contain no-repeat;
  height: 100%;
  display: flex;
  flex-direction: column;
}
/* Контейнер для хедера */
#header-container {
  width: 100%; /* Контейнер растягивается на всю ширину экрана */
  display: flex;
  justify-content: center; /* Центрируем содержимое */
  padding: 0;
  margin: 0 auto; /* Центрируем сам контейнер по горизонтали */
}

/* Стили для хедера */
#header {
  width: 1432px; /* Фиксированная ширина header */
  height: 200px; /* Фиксированная высота header */
  position: relative; /* Чтобы элементы внутри могли позиционироваться */
  background-color: transparent; /* Если нужно, прозрачный фон */
  border-radius: 12px; /* Закругляем углы для самого хедера */
  overflow: hidden; /* Чтобы изображение внутри закруглялось вместе с хедером */
  margin: 0 auto; /* Центрируем сам хедер внутри родительского контейнера */
}

/* Изображение внутри хедера */
.header-image {
  width: 100%; /* Задаем 100% ширины для изображения, чтобы оно растягивалось по ширине хедера */
  height: 100%; /* Задаем 100% высоты для изображения, чтобы оно растягивалось по высоте хедера */
  object-fit: cover; /* Обеспечиваем, что изображение полностью покроет блок, без искажений */
  border-radius: 12px; /* Закругляем углы изображения */
}



/*
    Helpers
*/
.article-title {
  margin-bottom: 1rem;
}

.bar-right {
  margin-left: 0.25rem;
  font-weight: 700;
}

.bar-left {
  margin-right: 0.35rem;
  font-weight: 700;
}

.font-size-small {
  font-size: 0.8rem;
}

/* Start */
.container {
  /*padding: 2rem;*/
  /*display: flex;*/
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 0px;
  padding-right: 0px;
  max-width: 1452px;
  gap: 20px;
  margin-top: 32px;
}

#about .container {
  width: 100%; /* Растягиваем на всю ширину */
  max-width: 1432px; /* Максимальная ширина 1432px */
  padding: 0; /* Убираем отступы */
  margin: 0 auto; /* Центрируем контейнер */
}

/* Navbar */
.navbar {
	max-width: 1432px;
  /*background-color: #1F273D;*/
  padding: 10px 0; /* Remove padding here since it's handled globally */
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

/* Logo Styling */
.navbar-brand .logo {
  width: 107px;
  height: 100px;
  position: relative;
  left: 0;
  transition: filter 0.3s ease-in-out; /* Smooth transition for glow */
  filter: drop-shadow(0px 4px 30px rgba(90, 163, 255, 0.5)); /* Constant blue glow even around transparent areas */
  

}

/* Navbar Links */
.navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-item {
  margin: 0 12px;
}

.nav-link {
  color: white;
  font-size: 16px; /* Reduced font size */
  font-weight: 400; /* Lighter font weight for thinner appearance */
  letter-spacing: 1px; /* Slight letter-spacing */
  text-decoration: none;
  text-align: center;
  transition: color 0.3s, background-color 0.3s;
  padding: 10px 15px;
  border-radius: 1rem;
}

.nav-link:hover {
  color: white;
  background-color: #2c364c;
}

/* Dropdown Menu */
.dropdown-menu {
  background-color: rgba(44, 54, 77, 0.90); /* Slightly higher opacity */
  border-radius: 0.5rem;
  padding: 10px 0;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
backdrop-filter: blur(5.5px);
}

/* Dropdown Item Styling */
.dropdown-item {
  color: #ffffff; /* Opaque text */
  padding: 3px 12px; /* Reduce padding to make the hover fill smaller */
  text-align: left; /* Left-aligned text */
  margin: 5px 10px; /* Add margin to prevent overflow and center the hover */
  transition: background-color 0.3s ease, width 0.3s ease; /* Smooth transition for hover */
  border-radius: 8px;
}

/* Hover effect with rounded fill */
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: rgba(255, 255, 255, 0.1); /* Light fill on hover */
  border-radius: 8px; /* Rounded corners for the background */
  color: #ffffff; /* Keep the text white */
  width: calc(100% - 16px); /* Adjust width to ensure smaller hover size */
}


/* Social Icons Wrapper */
.social-icons {
  display: flex;
  align-items: center;
  gap: 15px; /* Adjust the gap between icons as needed */
}

/* Social Icon Styling */
.social-icon {
  width: 36px;
  height: 36px;
  background-color: #37435a; /* Background color of the circle */
  border-radius: 50%; /* Makes the icons circular */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Separator between social icons and download button */
.separator {
  margin: 0 15px; /* Add space around the separator */
  color: #37435a; /* Color for the separator line */
  font-weight: bold; /* Optional: make the separator bold */
}

/* Increase the size of the icons inside the circle */
.social-icon img {
  width: 26px; /* Increase the width of the icon */
  height: 26px; /* Increase the height of the icon */
  filter: invert(1); /* Invert the icon image colors */
  transition: transform 0.3s ease; /* Smooth animation for icon scaling */
}

/* Hover effect for the social icon */
.social-icon:hover {
  background-color: #47556e; /* New background color on hover */
}

/* Hover effect with smooth scaling */
.social-icon:hover img {
  transform: scale(1.1); /* Scale the icon size slightly on hover */
}

/* Download Button Styling */
.download-btn {
  background-image: url('../image/state_default.png'); /* Background image for the button */
  background-size: contain; /* Ensure the image fits inside the button */
  background-repeat: no-repeat; /* Prevent repeating the background image */
  background-position: center;
  width: 150px; /* Adjust width according to image size */
  height: 40px; /* Adjust height according to image size */
  display: inline-block;
  text-indent: -9999px; /* Hide text but keep the button accessible */
  border: none; /* No border */
  background-color: transparent; /* Transparent background */
  transition: filter 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for the glow */
  min-width: 150px;
}

/* Blue glowing drop-shadow with downward offset on hover */
.download-btn:hover {
  filter: drop-shadow(0 7px 10px rgba(0, 183, 255, 0.6)); /* Shift glow downwards */
  cursor: pointer; /* Show pointer on hover */
}

p {
  margin-bottom: 0;
}

.subtitle {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.ro-status {
  min-height: 408px;
}

.ro-status h3 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 2rem;
}



/* Контейнер для логина и showcase (about2) на одном уровне */
.main-section2 {
  display: flex; /* Flexbox для горизонтального расположения блоков */
  justify-content: space-between; /* Пространство между блоками */
  align-items: flex-start; /* Выравнивание блоков по верхнему краю */
  width: 100%; /* Контейнер на всю ширину страницы */
  padding: 20px 0; /* Отступ сверху и снизу */
}
/*
    Login Box
*/
/* Основной контейнер для логина */
.ro-login-container {
  width: 578px; /* Ширина контейнера */
  height: 430px; /* Высота контейнера */
  background: radial-gradient(32.23% 56.5% at 100% 100%, rgba(137, 201, 255, 0.2) 0%, rgba(192, 226, 255, 0) 100%), 
              radial-gradient(33.9% 83.09% at 0% 100%, rgba(243, 149, 255, 0.4) 0%, rgba(238, 166, 247, 0) 100%), 
              rgba(192, 226, 255, 0.1);
  border-radius: 20px; /* Закругленные углы */
  margin-top: auto;
  flex: none;
  order: 0;
  flex-grow: 0;
  backdrop-filter: blur(5.5px);
  border-radius: 20px;
margin-left: 0; /* Выравниваем логин по левому краю */
}

.ro-login-container .kafra {
  background: url('../img/kafra.png') no-repeat center center; /* Изображение персонажа */
  position: absolute;
  width: 401px;
  height: 401px;
  left: -110px;
  top: 15px;
  animation: float 4s ease-in-out infinite; /* Добавляем анимацию плавания */
  filter: drop-shadow(-66px 62px 97px rgba(255,0,182,0.35));
}

.valkira {
  background: url('../img/valkira.png') no-repeat center center; /* Изображение персонажа */
  position: absolute;
  width: 401px;
  height: 401px;
  right: -40px;
  top: 60px;
  animation: float 3s ease-in-out infinite; /* Добавляем анимацию плавания */
  filter: drop-shadow(66px 62px 97px rgba(112,109,543,0.75));
}

/* Анимация для плавающего эффекта */
@keyframes float {
  0% {
    transform: translateY(0); /* Начальная позиция */
  }
  50% {
    transform: translateY(-5px); /* Перемещение вверх на 5px */
  }
  100% {
    transform: translateY(0); /* Возвращение в начальную позицию */
  }
}

/* Правый блок с формой входа */
.ro-login-container .card {
  width: 380px; /* Задаем фиксированную ширину формы */
  margin-left: auto; /* Выравниваем форму по правому краю */
  padding: 20px;
  position: relative; /* Позволяет смещать элемент относительно его нормального положения */
  top: -25px; /* Смещаем блок на 20px вверх */
  right: -20px;
  background-color: transparent; /* Прозрачный фон */
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 32px;
  gap: 26px;
  border-radius: 20px;
}

.card-body {
  background: none;
}

/* Заголовок формы */
.ro-login-container .panel-title {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.ro-login-container .panel-subtitle {
  text-transform: none;

/* Получить доступ к аккаунту */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 28px;
line-height: 30px;
color: #ECF3FA;
}

.ro-login-container .panel-subtitle2 {
  text-transform: none;

/* Получить доступ к аккаунту */
font-family: 'Manrope';
font-style: normal;
font-weight: 300;
font-size: 12px;
line-height: 20px;
color: #ECF3FA;
}

/* Поля формы */
.ro-login-container .form-group {
  position: relative;
  margin-bottom: 15px;
}

/* Поля ввода */
.ro-login-container .form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(192, 226, 255, 0.15) !important; /* Прозрачный фон */
  border: 2px solid transparent !important; /* Без обводки по умолчанию */
  border-radius: 12px;
  color: white !important;
  font-size: 14px;
  height: 50px;
  transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease;
}

/* Фон становится светлее при наведении */
.ro-login-container .form-control:hover {
  background-color: rgba(192, 226, 255, 0.25) !important; /* Светлее при наведении */
}

/* Фокус на поле ввода */
.ro-login-container .form-control:focus {
  background-color: rgba(192, 226, 255, 0.25) !important; /* Светлеет при фокусе */
  border: 2px solid #4a90e2 !important; /* Голубая обводка при фокусе */
  outline: none;
  color: white !important;
}


/* Плавающая метка */
.ro-login-container .floating-label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7); /* Полупрозрачный белый цвет */
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Перемещение метки вверх при фокусе и при вводе текста */
.ro-login-container .form-control:focus + .floating-label,
.ro-login-container .form-control:not(:placeholder-shown) + .floating-label {
  top: -2px; /* Поднимаем метку выше поля */
  font-size: 10px;
  color: white; /* Белый текст */
  background-color: #5276E4; /* Цвет контейнера соответствует обводке */
padding: 1px 8px;
border-radius: 5px;
}

/* Убираем плейсхолдер для совместимости с меткой */
.ro-login-container .form-control::placeholder {
  color: transparent;
}


/* Кнопка входа */
.ro-login-container .btn-primary {
  display: block;
  padding: 12px 20px;
  background: linear-gradient(to right, #00b7ff, #706dfd); /* Градиентный фон */
  border: none; /* Убираем обводку */
  border-radius: 10px; /* Закругленные углы */
  color: white;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  margin-top: 15px;
  box-sizing: border-box;
  width: 100%;
  height: 50px; /* Фиксированная высота */
  transition: background 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  background-clip: padding-box; /* Гарантируем, что градиент не выйдет за границы */
}

.ro-login-container .btn-primary:hover {
  background: linear-gradient(to right, #0097ff, #506dfd); /* Темнее на ховере */
  filter: drop-shadow(0 7px 10px rgba(3, 86, 180, 0.5)); /* Shift glow downwards */
    background-clip: padding-box; /* Гарантируем, что градиент не выйдет за границы */
}

/* Ссылка на создание аккаунта */
.ro-login-container .form-footer {
  margin-top: 8px;
  text-align: center;
  color: #9da3b3;
  font-size: 0.8rem;
}

.ro-login-container .form-footer a {
  color: #80D7FF;
  text-decoration: none;
}

/* Адаптивность */
@media (max-width: 768px) {
  .ro-login-container {
    flex-direction: column;
    height: auto;
  }

  .ro-login-container .kafra {
    left:-140px; 
  }
  .ro-login-container .card {
    width: 100%;
    height: auto;
    
  }

  .ro-login-container .kafra {
    border-radius: 20px 20px 0 0; /* Закругляем верхний край для мобильных */
  }

  .ro-login-container .card {
    padding: 15px;
  }
}



/* Стиль заголовков и подзаголовков */
.panel-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f273d; /* Темный цвет текста */
  margin: 0;
}

.panel-title {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  margin: 0;
}

.align-middle {
  -ms-flex-line-pack: center;
      align-content: center;
}

.panel-subtitle {
  line-height: 1rem;
  font-weight: 200;
  margin: 0;
  text-transform: uppercase;
}

.ro-login-menu-container {
  display: flex;
  flex-direction: column; /* Кнопки выстраиваются в столбец */
  align-items: flex-start; /* Выравнивание кнопок по левому краю контейнера */
  margin: 1rem;
  width: 80%; /* Контейнер занимает всю ширину */
}

.ro-login-key {
  height: 48px;
}

.ro-login-menu {
  background: #ddd;
  padding: 0.5rem;
  border-radius: 10px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.75rem; /* Немного увеличиваем размер текста */
  letter-spacing: 1px;
  width: auto; /* Автоматическая ширина, подстраивается под контент */
  display: flex; /* Flexbox для кнопки, чтобы выстроить иконку и текст в строку */
  align-items: center; /* Вертикальное выравнивание элементов */
  margin: 0.20rem;
  width: 100%; /* Кнопка занимает всю ширину контейнера */
}

.ro-login-menu:hover {
  background: #bababa;
}

.ro-login-menu.ro-logout {
  background: #dc3747 !important;
}

.ro-login-menu.ro-logout a {
  color: white;
}

.ro-login-menu img {
  margin-right: 12px !important; /* Принудительный отступ между иконкой и текстом */
  width: 18px;
  height: 18px;
  display: inline-block; /* Убедимся, что иконка ведет себя как блок */
  vertical-align: middle; /* Вертикальное выравнивание, чтобы иконка и текст были по центру */
}

.ro-login-menu a {
  color: #131313;
  display: flex;
  align-items: center; /* Вертикальное выравнивание текста и иконки */
  text-decoration: none; /* Убираем подчеркивание */
}

/* Секция с фичами */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Блоки растягиваются на всю ширину */
  gap: 20px; /* Отступы между блоками */
  width: 100%; /* Занимаем всю доступную ширину */
  box-sizing: border-box; /* Включаем отступы и паддинги в расчет ширины */
}

.feature {
  background-color: rgba(44, 54, 77, 0.96); /* Прозрачный фон */
  border-radius: 12px; /* Закругленные углы */
  padding: 15px 20px;
  flex-grow: 1; /* Растягиваем блоки равномерно */
  flex-basis: 0; /* Каждый блок начнет с нулевой ширины и будет растягиваться */
  display: flex;
  align-items: center; /* Центрируем контент по вертикали */
  justify-content: center; /* Центрируем контент по горизонтали */
  color: #ffffff;
}

.feature img {
  width: 30px; /* Размер иконки */
  height: auto;
  margin-right: 15px; /* Отступ между иконкой и текстом */
}

.feature p {
  font-size: 16px;
  margin: 0;
  white-space: nowrap; /* Текст не переносится на следующую строку */
}

/* Общая стилизация для текста */
.article-title {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 20px;
  /*text-transform: uppercase;*/
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .features {
    flex-direction: column; /* Фичи будут располагаться вертикально */
  }

  .feature {
    justify-content: center; /* Центрируем содержимое на мобильных */
  }

  .feature img {
    margin-right: 0; /* Убираем отступ для иконок на мобильных */
    margin-bottom: 10px; /* Добавляем отступ снизу */
  }
}


.bar-right {
  font-size: 28px;
  color: #ffffff;
}

/*.char-about {
  background: url("../img/highpriest.png") no-repeat;
  background-position: left bottom;
  min-height: 450px;
}*/

#about {
  width: 100%;
  /*margin: 15px 0;*/ /* Отступ сверху и снизу по 10px, по бокам — 0 */
  margin-bottom: 32px;
  /*margin-top:32px;*/
}

/* About2 - Основной блок */
#about2 {
  /*width: 822px;*/ /* Фиксированная ширина */
  width: auto;
  height: 430px; /* Фиксированная высота */
  backdrop-filter: blur(5.5px); /* Применение размытия фона */
  display: flex;
  flex-direction: row; /* Горизонтальное расположение */
  align-items: center;
  justify-content: space-between; /* Распределение пространства между элементами */
  padding: 20px; /* Внутренние отступы */
  background-color: rgba(44, 54, 77, 0.5); /* Полупрозрачный фон */
  border-radius: 20px; /* Закругление углов */
  /*margin-left: auto;*/ /* Выравнивание по правому краю */
  /*overflow: hidden;*/ /* Обрезаем содержимое, если выходит за границы */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Легкая тень */
/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 1;
/*margin-left: 20px;*/
padding-left: 54px;
padding-top: 30px;
/*  Image */
}

#about3 {
/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 0px;
gap: 24px;
width: 327px;
height: 25px;
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;
}
/* Заголовок и информация */
#about2 .col-sm-7 {
  flex-grow: 1;
  text-align: right; /* Выравнивание текста по правому краю */
}

#about2 .article-title {
  font-size: 26px;
  font-weight: bold;
  color: white;
  
}

#about2 p {
  color: white;
  font-size: 16px;
  margin-bottom: 5px;
  white-space: nowrap; /* Запрещаем перенос строк для информации */
  line-height: 24px;
}

/* Стиль для картинки справа */
#about2 .char-about {
  width: 150px;
  height: 100%; /* Картинка занимает всю высоту блока */
  background: url('../img/char.png') no-repeat center center; /* Путь к изображению */
  background-size: contain;
  border-radius: 12px; /* Закругленные углы для картинки */
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  #about2 {
    flex-direction: column; /* Элементы располагаются вертикально на мобильных устройствах */
    height: auto;
    width: 100%; /* Занимаем всю ширину экрана */
    margin-left: 0; /* Сбрасываем выравнивание */
  }

  #about2 .char-about {
    width: 100%; /* Картинка будет на всю ширину */
    height: 150px; /* Уменьшаем высоту на мобильных */
    margin-top: 20px; /* Отступ сверху */
  }

  #about2 .col-sm-7 {
    text-align: center; /* Текст выравнивается по центру */
  }
}


#footer {
  color: #ECF3FACC;
  padding: 1.2rem;
  padding-top: 150px;
  background: url("../img/footer.png") no-repeat center bottom;
  margin-top:auto;
}

#footer a {
  color: #aaa;
}

/*
Showcase
*/

iframe {
  border-radius:15px;
  position: absolute;
  top:-115px;
  margin-left: 70px;
  box-shadow: rgb(17, 27, 36) 0px 20px 30px -10px;
}

#showcase {
  padding: 2rem;
  background: url("../img/banner.png") no-repeat;
  background-size: cover;
  height: 390px;
  border-radius: 20px;
  margin-top: 100px;
  
  background-color: #293349;
  background-position: right;
  
}

.woe-sura {
  background: url("../img/woe-sura.png") no-repeat;
  background-position: right bottom;
  height: 490px;
}

/*
    Page: Download
*/
.page-download {
  margin-top: 2rem;
  padding-bottom: 2rem;
  background: url(../img/header-tail.png) repeat-x, white url(../img/bg-prontera.jpg) no-repeat;
  background-position: center top, center bottom;
  background-size: 100%, cover;
}

.article-alchemist {
  background: url("../img/alchemist.png") no-repeat;
  background-position: right bottom;
}

.page-download-img {
  width: 66px;
  height: 62px;
}

/*
    fluxcp
*/
.info-text {
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  background-color: transparent;
  border: 0;
}

.vertical-table th {
  padding: 5px 10px;
  color: white;
  background-color: #47556e;
  font-weight: 400;
}

/*# sourceMappingURL=main.css.map */


/*                         */
.pages .page-num {
	/*padding: 6px 13px;*/
	background: #2c3757;
	border-radius: 20px;
  width: 40px;
  height: 40px;
  padding-top:6px;
  display: flex;
  justify-content: center;
}

.pages .page-num:hover {
	background: #38466e;
}

.pages {
  border-top: 0px;
  color: transparent;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 5px;
}

.pages .current-page {
  color: #000;
  background: #fff;
}

.pages .current-page:hover {
  color: #000;
  background: #fff;
  cursor:default;
}

.pages .page-next {
  color:transparent;
  
  margin-top: -5px;
}

.pages .page-next:after {
  content: "→";
  font-size: 30px;
  color: #fff;
  margin-left: -30px;
}

.pages .page-prev {
  color:transparent;
  
  margin-top: -5px;
}

.pages .page-prev:after {
  content: "←";
  font-size: 30px;
  color: #fff;
  margin-left: -50px;
}

.pages a:not([href]):not([tabindex]) {
  color:#000;
  text-decoration: none;
}

.pages a {
  color:#fff;
  text-decoration: none;
}

.jump-to-page {
  display: none;
}

#unitip {
  border-radius: 5px !important;
  display: none !important;
  /* width: 50px;
  display: none !important;
  width: 20px;*/  
}

/*

  RULES

*/

.rules {
  min-height: 300px;
  border-radius: 20px;
  padding: 43px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /*background: radial-gradient(32.23% 56.5% at 100% 100%, rgba(137, 201, 255, 0.2) 0%, rgba(192, 226, 255, 0) 100%), radial-gradient(33.9% 83.09% at 0% 100%, rgba(243, 149, 255, 0.4) 0%, rgba(238, 166, 247, 0) 100%), rgba(192, 226, 255, 0.1);*/
  background-color: #2B86C5;
  background-image: linear-gradient(135deg, #2B86C5 0%, #784BA0 50%, #960049 100%);
  
  
  position: relative;
  font-size: 14pt;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.rules .jail {
  background: url('../img/jail.png') no-repeat center center; /* Изображение персонажа */
  position: absolute;
  width: 424px;
  height: 389px;
  right: -212px;
  bottom: -134px;
  animation: float 3s ease-in-out infinite; /* Добавляем анимацию плавания */
  /*filter: drop-shadow(66px 62px 97px rgba(248,55,81,1));*/
}

.rules h1 {
  font-size: 28pt;
  font-weight: bold;
  font-family: 'Manrope';
  padding-bottom: 18px;
  margin-top: 20px;
  margin-left: 50px;
}

.rules h2 {
  font-family: 'Manrope';
  font-size: 18pt;
  padding-bottom: 75px;
  margin-left: 50px;
}

.rules .table {
  display: flex;
}

.rules .table .col2 {
  width: 110px;
}

.rules .table .col3 {
  width: 100px;
}

.rules .table .vert {
  writing-mode:vertical-rl;
  font-size: 30pt;
/*  padding-top: 200px;*/
  display: flex;
  justify-content: center;
  align-items: center;
}

.rules .table .round {
  background: url('../img/Rectangle.png') no-repeat center center;
  background-size: 5px 100%;
  opacity: 0.2;
}

.rules .rule {
  display: flex;
  flex-wrap: nowrap;
}

.rules .rule .number {
  font-size: 60pt;
  padding-right: 18px;
  min-width: 90px;
  display: flex;
  justify-content: end;
}

.rules .rule .desc {
  margin-top:26px;
  font-size: 16px;
}

.rules .table .punish {
  /*margin-top: 20px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.rules .nemuro {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  align-items: center;
}

.rules .sign {
  margin-top: 50px;
  border-top: 1px solid #e46db8;
  width: 100px;
}

/*

  DOWNLOAD

*/

.download {
  min-height: 300px;
  border-radius: 20px;
  padding: 43px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: radial-gradient(32.23% 56.5% at 100% 100%, rgba(137, 201, 255, 0.2) 0%, rgba(192, 226, 255, 0) 100%), radial-gradient(33.9% 83.09% at 0% 100%, rgba(243, 149, 255, 0.4) 0%, rgba(238, 166, 247, 0) 100%), rgba(192, 226, 255, 0.1);
  position: relative;
  font-size: 14pt;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  padding: 50px;
  position: relative;
}

.download h1 {
  font-size: 28pt;
  font-weight: bold;
  font-family: 'Manrope';
  padding-bottom: 18px;
  text-transform: none;
  margin-top: 20px;
  margin-left: 50px;
}

.download h2 {
  font-family: 'Manrope';
  font-size: 18pt;
  text-transform: none;
  margin-left: 50px;
}

.download .round {
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  padding: 20px;
  justify-content: space-around;
  margin: 50px;
  align-items: center;
  min-height: 200px;
  margin-top:150px;
  flex-wrap: wrap;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background-image: linear-gradient( 174.2deg,  rgba(255,244,228,1) 7.1%, rgba(240,246,238,1) 67.4% );

}

.download .article-alchemist {
  background: url("../img/alchemist.png") no-repeat;
  background-position: right bottom;
  height: 473px;
  width: 300px;
  position: absolute;
  left: -100px;
  filter: drop-shadow(-66px 62px 97px rgba(255,0,182,0.35));
}

.download .faq {
  display: flex;
  justify-content: center;
}

.download .faq a {
  margin-left: 5px;
}

.download .line {
  border-left: solid 1px #d8d8d8;
  width: 1px;
  height: 100px;
}


/*

  MONSTER SEARCH

*/

.monster_view {
  min-height: 300px;
  border-radius: 20px;
  padding: 43px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: radial-gradient(32.23% 56.5% at 100% 100%, rgba(137, 201, 255, 0.2) 0%, rgba(192, 226, 255, 0) 100%), radial-gradient(33.9% 83.09% at 0% 100%, rgba(243, 149, 255, 0.4) 0%, rgba(238, 166, 247, 0) 100%), rgba(192, 226, 255, 0.1);
  position: relative;
  font-size: 14pt;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  padding: 50px;
  overflow: hidden;
}

.monster {
  position: relative;
}
.monster_preview {
  position: absolute;
  left: 450px;
  min-width: 100px;
  max-width: 400px;
  max-height: 400px;
  bottom: 0px;
}
.monster_preview img {

  width: 300%;
  height:auto;
  max-height: 400px;
  max-width: 400px;
  object-fit: contain;/*точно подогнать сохраняя пропорции*/
  image-rendering: pixelated;/*четкие контуры*/
  filter: contrast(1.4);/*сила контраста*/
  /*filter: drop-shadow(-66px 62px 0px rgba(44, 42, 43, 0.35));*/

}

.monster_preview_bg {
  position: absolute;
  bottom: -100px;
  right: 200px;
  
}
.monster_preview_bg img {
  width: 600%;
  height: 600%;
  object-fit: cover;/*точно подогнать сохраняя пропорции*/
  image-rendering: pixelated;/*четкие контуры*/
  filter: contrast(1.4);/*сила контраста*/
  opacity: 0.05;
  /*filter: drop-shadow(-66px 62px 0px rgba(44, 42, 43, 0.35));*/

}

.monster_shadow {
  position: absolute;
  bottom: -33px;
  left: 443px;
  background: url("../img/shadow.png") no-repeat center center;
  width: 309px;
  height: 65px;
}

.monster_name {
  font-size: 26px;
  text-transform: uppercase;
  color: #fff;
}

.monster_id {
  font-size: 26px;
  font-weight: bold;
  color: #565C6F;
}

.monster_id:hover {
  cursor: pointer;
}

.d-flex a {
  margin-top:-5px;
}

.monster_mvp {
  position: absolute;
/*  top: 86px;
  left: 321px;*/
  top: 567px;
  left: 349px;
  background: url("../img/mvp.png") no-repeat center center;
  background-size: cover;
  image-rendering: pixelated;
  width:120px;
  height:120px;
  z-index: 100000;
}

.monster_stats {
  background-color: #fff;
  border-radius: 5px;
  width: 320px;
  height: 501px;
  /*padding-top: 14px;*/
  margin-top: 42px;
  margin-left: 44px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.flare {
  /*border-image: linear-gradient(to right, #ee0979, #ff6a00) 1;*/
  border: double 5px transparent;
  border-radius: 10px;
  background-image: linear-gradient(white, white), 
                    linear-gradient(to right, #ee0979, #ff6a00);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.monster_elem_lvl {
  font-size: 8px;
  color: #333;
  text-transform: uppercase;
  padding-top: 4px;
  padding-left: 5px;
}

.monster_stats hr {
  color: #e2e2e2;
  width: 97px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.monster_stat_name {
  margin-left: 30px;
  font-size: 14px;
  color: #939393;
  align-content: flex-end;
  min-width: 130px;
}

.monster_stat_val {
  font-size: 14px;
  color: #000;
  align-content: flex-end;
  text-transform: uppercase;
  padding-right: 10px;
}

.monster_lvl {
  padding-top: 14px;
  font-size: 48px;
  color: #000;
  line-height: 50px;
  align-content: flex-end;  
}


.monster_stats_mini {
  position: absolute;
  z-index: 10000;
  top:10px;
  left: 260px;
  background-color: #DCDCDC;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 10px;
  padding-left: 0px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.monster_stats_mini:before {
  content: "";
  position: absolute;
  width: 0; 
  height: 0; 
  border-top: 30px solid transparent;
  border-bottom: 32px solid transparent;
  border-right:15px solid #DCDCDC; 
  top: 0;
  left: -15px;
  
}

.monster_stats_mini_stat {
  font-size: 14px;
  color: #939393;
  margin-left: 14px;
  margin-right: 14px;
  width: 20px;
}

.monster_stats_mini_val {
  font-size: 14px;
  color: #000;
  min-width: 30px;
}

.monster_vertical {
  font-size: 70px;
  color: fff;
  opacity: 0.03;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  right: 146px;
  top:123px;
  text-transform: uppercase;
  height: 592px;
}

.monster_drop {
  margin-top:61px;
  margin-left: 44px;
  margin-right: 77px;
  position: relative;
  justify-content: space-between;
}

.monster_drop h2{
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 34px;
}

.monster_drop table {
  border: 1px solid #fff;
  border-radius: 10px;
  border-spacing:0;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  border-collapse: separate;
  overflow: hidden;
}

.monster_drop td,
.monster_drop tr,
.monster_drop th {
  border: 0px;
}

.monster_drop td {
  background-color: #fff;
}

.monster_treasure {
  position: absolute;
  top: 62px;
  left: -250px;
  background: url("../img/monster_treasure.png") no-repeat center center;
  width:450px;
  height:450px;
  z-index: -1;
}

.monster_drop .extended_drop {
  gap: 50px;
}

.monster_map {

  position: absolute;
  border-radius: 5px;
  top: 132px;
  right: 89px;
  background-color: #fff;
  color: #000;
  font-size: 9pt;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  overflow: hidden;
  min-width: 300px;
  max-height: 501px;
  overflow-y: scroll;
  scrollbar-width: none;
}

.monster_map h2{
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #000 !important;
  
}

.monster_map .pointer {
  position: absolute;
  top: 5px;
  right: -64px;
  background: url("../img/map_point.png") no-repeat center center;
  width:128px;
  height:128px;
  filter: grayscale(0.3);
}

.monster_map table {
  border: 1px solid #fff;
  border-radius: 10px;
  border-spacing:0;
  
  border-collapse: separate;
  overflow: hidden;
  font-size: 9pt !important;
}

.monster_map td,
.monster_map tr,
.monster_map th {
  border: 0px;
  min-width: 70px;
}

.monster_map td {
  background-color: #fff;
  padding-right: 10px;
  padding-bottom: 5px;
}

.monster_map .monster_map_link {
  opacity: 0.3;

}

.monster_map .monster_map_link:hover {
  opacity: 1;
  cursor: pointer;
}

.monster_map img {
  padding-left: 5px;
  padding-right: 5px;
}

.item_stats {
  background-color: #fff;
  border-radius: 5px;
  max-width: 500px;
  min-height: 501px;
  /*padding-top: 14px;*/
  margin-top: 42px;
  margin-left: 44px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.item_stats hr {
  color: #e2e2e2;
  width: 97px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.item_stats .desc {
  color:#000;
  font-size:14px;
  padding-left:30px;
  padding-right:30px;
  padding-bottom:30px;
  /*text-align: justify;*/
}

.item_stats .item_image {
  margin: 20px;
  position: absolute;
  right: 40px;
  top: 180px;
}




.search-form input,select {
  padding: 12px 12px;
  background-color: rgba(192, 226, 255, 0.15) !important; /* Прозрачный фон */
  border: 2px solid transparent !important; /* Без обводки по умолчанию */
  border-radius: 12px;
  color: white !important;
  font-size: 16px !important;
  height: 50px;
  transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease;
}


.search-form input:hover {
  background-color: rgba(192, 226, 255, 0.445) !important;
}

.search-form select:hover {
  background-color: rgba(192, 226, 255, 0.445) !important;
}

.search-form #name {
  width: 200px;
}

.search-form option {
  color:#000 !important;
}

.search-form label {
  font-size: 16px;
  font-style: normal;
  cursor:default;
} 

.search-form p{
  color: transparent;
}

.search-form {
  border-top: none;
  display: block;
}

.search-form p {
  border: none;
}

.toggler {
  display: none;
}

.search-form2 input,select {
  padding: 12px 12px;
  background-color: rgba(192, 226, 255, 0.15) !important; /* Прозрачный фон */
  border: 2px solid transparent !important; /* Без обводки по умолчанию */
  border-radius: 12px;
  color: white !important;
  font-size: 16px !important;
  height: 50px;
  transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease;
}


.search-form2 input:hover {
  background-color: rgba(192, 226, 255, 0.445) !important;
}

.search-form2 select:hover {
  background-color: rgba(192, 226, 255, 0.445) !important;
}

.search-form2 #name {
  width: 200px;
}

.search-form2 option {
  color:#000 !important;
}

.search-form2 label {
  font-size: 16px;
  font-style: normal;
  cursor:default;
} 

.search-form2 p{
  color: transparent;
}

.search-form2 {
  border-top: none;
}

.search-form2 p {
  border: none;
}

#submenu {
  color:transparent;
  margin-bottom: 20px;
}

.sub-menu-item {
  background-color: #252A3F !important; 
  border-radius: 10px;
  border: solid 1px #252A3F !important;
  padding: 10px;
  color:#434a66;
}

.current-sub-menu {
  background-color: #3C4459 !important; 
  border-radius: 10px;
  border: solid 1px #3C4459;
  color: #fff;
}

.horizontal-table {
  min-height: 200px;
}

.go_prev {
  font-size: 30px;
  color:#fff;
  margin-right: 10px;
}

.go_prev:hover {
  color:#fff;
  text-decoration: none;
}


/*

  SERVER STATUS

*/

.server h3 {
  /*display: none;*/
}

.server {
  min-height: 300px;
  border-radius: 20px;
  padding: 43px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: radial-gradient(32.23% 56.5% at 100% 100%, rgba(137, 201, 255, 0.2) 0%, rgba(192, 226, 255, 0) 100%), radial-gradient(33.9% 83.09% at 0% 100%, rgba(243, 149, 255, 0.4) 0%, rgba(238, 166, 247, 0) 100%), rgba(192, 226, 255, 0.1);
  position: relative;
  font-size: 14pt;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  padding: 50px;
  position: relative;
}

.meister {
  background: url("../img/RO_Meister.png") no-repeat right;
  width: 211px;
  height: 367px;
  position: absolute;
  bottom: -50px;
  right: -50px;
  filter: drop-shadow(66px 62px 97px rgba(112,109,543,0.75));
}

#server_status .status  {
  padding: 30px;
  background-color: transparent;
  border-bottom: none;
  text-align:center;
  color: #7e7e7e;
  font-size: 18px;
}

#server_status .server {
  color: #fff;
  border: none;
  font-size: 18px;
}

#server_status th {
  vertical-align:middle;
  text-align: center;
}

#server_status {
  background-color: transparent !important;
  border: none;
}

#server_status .up {
  border: 0px solid #16A085;
  border-radius: 10px;
  padding: 10px;
  background-color: #F4D03F;
  background-image: linear-gradient(132deg, #F4D03F 0%, #16A085 100%);
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;

}

/*

  REG & AUTH FORMS

*/

table {
  font-size: 16px !important;
  background: transparent;
}

.generic-form {
  background-color: transparent;
  border: none;

}
.generic-form-table td {
  color: #fff;
}

.generic-form-table input,select,button {
  padding: 12px 12px;
  background-color: rgba(192, 226, 255, 0.15) !important; /* Прозрачный фон */
  border: 2px solid transparent !important; /* Без обводки по умолчанию */
  border-radius: 12px;
  color: white !important;
  font-size: 16px !important;
  height: 50px;
  transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease;
}


.generic-form-table input:hover {
  background-color: rgba(192, 226, 255, 0.445) !important;
}

.generic-form-table select:hover {
  background-color: rgba(192, 226, 255, 0.445) !important;
}

.generic-form-table button:hover {
  background-color: rgba(192, 226, 255, 0.445) !important;
}

.generic-form-table button:disabled {
  background-color: rgba(70, 83, 94, 0.445) !important;
  color: #1F273D !important;
}

.generic-form-table .rul_label {
  display: flex;
}

.generic-form-table #name {
  width: 200px;
}

.generic-form-table th {
  text-wrap: nowrap;
}

.generic-form-table option {
  color:#000 !important;

}

.generic-form-table p {
  color:#fff !important;
}

.generic-form-table label {
  font-size: 16px;
  font-style: normal;
  cursor:default;
  color: #fff;
  padding-top:14px !important; 
} 

.generic-form {
  position: relative;
}

.generic-form .req {
  position: absolute;
  border-radius: 10px;
  background-color: #FBAB7E;
  background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
  color: #000 !important;
  padding: 20px;
  padding-right: 30px;
  left:450px;
  top:139px;
}

.generic-form .req p{

  color: #313131 !important;
}

.generic-form .sq {
  position: absolute;
  color: #fc6d1b;
  left:433px;
  top:112px;
  font-size: 88px;
}

.reg_img {
  background: url("../img/kafra_blonde.png") no-repeat;
  width: 265px;
  height: 398px;
  position: absolute;
  bottom: -133px;
  left: -28px;
  filter: drop-shadow(-66px 62px 97px rgba(255,0,182,0.35));
}

.login_img {
  background: url("../img/kafra_blonde.png") no-repeat;
  width: 265px;
  height: 398px;
  position: absolute;
  bottom: -162px;
  left: -34px;
  filter: drop-shadow(-66px 62px 97px rgba(255,0,182,0.35));
}

.reset_img {
  background: url("../img/kafra_glasses.png") no-repeat;
  width: 266px;
  height: 398px;
  position: absolute;
  bottom: -67px;
  left: -88px;
  filter: drop-shadow(-66px 62px 97px rgba(255,0,182,0.35));
}

.resend_img {
  background: url("../img/kafra_glasses.png") no-repeat;
  width: 266px;
  height: 398px;
  position: absolute;
  bottom: -67px;
  left: -88px;
  filter: drop-shadow(-66px 62px 97px rgba(255,0,182,0.35));
}

/*

  VENDORS

*/

.location-info {
  color: #000 !important;
  text-decoration: none !important;
}

/*span[id*="location-"] {
  color: #fff !important;
}*/
/*

  ENOT

*/

.generic-form-table td {
  color: #fff;
}

.generic-form-div input,select,button {
  padding: 12px 12px;
  background-color: rgba(192, 226, 255, 0.15) !important; /* Прозрачный фон */
  border: 2px solid transparent !important; /* Без обводки по умолчанию */
  border-radius: 12px;
  color: white !important;
  font-size: 16px !important;
  height: 50px;
  transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease;
}


.generic-form-div input:hover {
  background-color: rgba(192, 226, 255, 0.445) !important;
}

.generic-form-div select:hover {
  background-color: rgba(192, 226, 255, 0.445) !important;
}

.generic-form-div button:hover {
  background-color: rgba(192, 226, 255, 0.445) !important;
}

.generic-form-div button:disabled {
  background-color: rgba(70, 83, 94, 0.445) !important;
  color: #1F273D !important;
}

.generic-form-div .rul_label {
  display: flex;
}

.generic-form-div #name {
  width: 200px;
}

.generic-form-div th {
  text-wrap: nowrap;
}

.generic-form-div option {
  color:#000 !important;

}

.generic-form-div p {
  color:#fff !important;
}

.generic-form-div label {
  font-size: 16px;
  font-style: normal;
  cursor:default;
  color: #000;
  padding-top:14px !important; 
} 

.generic-form-div p {
  color: #000 !important;
} 

.custom-select-sm {
  padding: 12px 12px;
  background-color: rgba(192, 226, 255, 0.15) !important; /* Прозрачный фон */
  border: 2px solid transparent !important; /* Без обводки по умолчанию */
  border-radius: 12px;
  color: white !important;
  font-size: 16px !important;
  height: 50px;
  transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease;
}

.custom-select-sm option{
  color: #000 !important;
}

/* 
  NEWS
*/
.newsDiv h2 {
  padding-bottom: 0px;
  margin-left: 0px;
}
.newsDiv pre {
  color: #fff;
  overflow: visible;
  word-wrap: break-word;
  white-space: pre-wrap;
  font-family: "Manrope";
}
.newsCont {
  display: flex;
  margin-bottom: 50px;
}
.newsDate {
  display: block;
  margin-right: 30px;
}

.newsDate .day {
  color: #000;
  font-size: 60pt;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #fff;
  padding: 10px;
  padding-top: 0px;

}

.newsDate .month {
  margin-top: -20px;
  text-transform: uppercase;
  text-align: center;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  font-size: 16px;
  padding-top:5px;
  padding-bottom: 5px;

}