@font-face {
  font-family: "Roboto Condensed";
  src: url('fonts/RobotoCondensed-VariableFont_wght.ttf') format('truetype');
}
body {
  overflow: hidden;
  font-family: "Roboto Condensed";
  margin: 0px;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, #a0e2ff 0%, #c1f5ff94 100%);
}
body::before,
body::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: opacity 1s ease;
}
body.theme-day::before {
  background: linear-gradient(135deg, #a0e2ff 0%, #c1f5ff94 100%);
  opacity: 1;
}
body.theme-day::after {
  background: linear-gradient(135deg, #634398 0%, #e8184694 100%);
  opacity: 0;
}
body.theme-night::before {
  background: linear-gradient(135deg, #a0e2ff 0%, #c1f5ff94 100%);
  opacity: 0;
}
body.theme-night::after {
  background: linear-gradient(135deg, #634398 0%, #e8184694 100%);
  opacity: 1;
}
.blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(100px);
  border-radius: 50%;
  transition: all 3s ease;
}
.blob:nth-child(1) {
  top: -100px;
  left: -100px;
}
.blob:nth-child(2) {
  bottom: -100px;
  right: -100px;
}
.theme-day .blob:nth-child(1) {
  background: rgb(82 222 255 / 54%);
}
.theme-day .blob:nth-child(2) {
  background: rgb(255 255 255);
}
.theme-night .blob:nth-child(1) {
  background: rgba(232, 24, 79, 0.396);
}
.theme-night .blob:nth-child(2) {
  background: rgba(252, 222, 255, 0.62);
}
main {
  display: flex;
}
main div.base {
  overflow: auto;
  scrollbar-width: none;
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 32px 0;
}
.containers_all {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
/*.containers_half,
.containers_full {
  min-width: 480px;
}*/
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: auto;
  scrollbar-width: none;
}
main {
  display: flex;
  position: relative;
  height: calc(100vh - var(--header-height) - var(--footer-height));
  overflow: hidden;
}
:root {
  --sidebar-width: 320px;
  --sidebar-hidden-width: 15px;
  --header-height: 60px;
  --footer-height: 40px;
}
.left-block, .right-block {
  position: absolute;
  top: 0;
  width: var(--sidebar-width);
  height: 100%;
  transition: transform 0.5s ease;
  z-index: 1000;
  background: rgb(255 255 255 / 15%);
  backdrop-filter: blur(0.5em);
  box-shadow: 0px 0px 25px 10px rgb(0 0 0 / 15%);
}
.theme-day .left-block,
.theme-day .right-block {
  background: rgb(255 255 255 / 15%);
}
.theme-night .left-block,
.theme-night .right-block {
  background: rgb(0 0 0 / 15%);
}
.left-block {
  left: 0;
  transform: translateX(calc(-1 * (var(--sidebar-width) - var(--sidebar-hidden-width))));
  overflow: auto;
  scrollbar-width: none;
}
.right-block {
  right: 0;
  transform: translateX(calc(var(--sidebar-width) - var(--sidebar-hidden-width)));
/*overflow: auto;*/
  scrollbar-width: none;
}
.left-block:hover {
  transform: translateX(0);
}
.right-block:hover {
  transform: translateX(0);
}
.right-block hr {
  margin: 0;
  border-top: 0;
  border-bottom: solid #0001 1px;
}
.right-block .container {
  height: inherit;
  overflow: auto;
  scrollbar-width: none;
}
aside.right-block::after {
  position: absolute;
  left: -35px;
  padding: 10px;
  margin: 4px 0 4px 0;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  color: #eee;
  content: "\f0f3";
  rotate: 45deg;
  top: -2px;
}
aside.right-block::before {
  position: absolute;
  left: -40px;
  color: #0000;
  padding: 10px;
  margin: 4px 0 4px 0;
  border-radius: 30px 0 0 30px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  content: "\f0f3";
}
aside.right-block.info::before {
  border-left: solid #03a9f4 4px;
  border-right: solid #03a9f4 2px;
  background: #3e8497;
}
aside.right-block.success::before {
  border-left: solid #4caf50 4px;
  border-right: solid #4caf50 2px;
  background: #3e9742;
}
aside.right-block.warning::before {
  border-left: solid #E91E63 4px;
  border-right: solid #E91E63 2px;
  background: #973e63;
}
aside.right-block.xmark::before {
  border-left: solid #ff9800 4px;
  border-right: solid #ff9800 2px;
  background: #976c3e;
}
aside.right-block.alert::before {
  border-left: solid #9c27b0 4px;
  border-right: solid #9c27b0 2px;
  background: #8d3e97;
}
.base {
  flex: 1;
  margin: 0 auto;
  padding: 1rem;
  max-width: 1200px;
  height: 100%;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.message-popup .alert {
/*   border-top: solid white 1px; */
/*   border-bottom: solid black 1px; */
  color: #333;
  transition: transform 0.5s ease;
  box-shadow: 0 -1px 0px #0001;
}
.theme-day .message-popup .alert {
  color: #333;
}
.theme-night .message-popup .alert {
  color: #eee;
}
.message-popup .alert.alert-success,
.message-popup .alert.alert-info,
.message-popup .alert.alert-warning,
.message-popup .alert.alert-xmark,
.message-popup .alert.alert-alert {
  padding: 2px 5px 2px 0;
}
.message-popup .alert.alert-success {
  border: solid #4caf5010 1px;
  border-left: solid #4caf50 5px;
}
.message-popup .alert.alert-info {
  border: solid #03a9f410 1px;
  border-left: solid #03a9f4 5px;
}
.message-popup .alert.alert-warning {
  border: solid #ff076610 1px;
  border-left: solid #E91E63 5px;
}
.message-popup .alert.alert-xmark {
  border: solid #f4983610 1px;
  border-left: solid #ff9800 5px;
}
.message-popup .alert.alert-alert {
  border: solid #ce36f410 1px;
  border-left: solid #9c27b0 5px;
}
.message-popup .alert.alert-success i.fa-solid::before,
.message-popup .alert.alert-alert i.fa-solid::before,
.message-popup .alert.alert-info i.fa-solid::before,
.message-popup .alert.alert-warning i.fa-solid::before,
.message-popup .alert.alert-xmark i.fa-solid::before {
  padding: 4px;
  border-radius: 0 14px 14px 0;
}
.message-popup .alert.alert-success i.fa-solid,
.message-popup .alert.alert-alert i.fa-solid,
.message-popup .alert.alert-info i.fa-solid,
.message-popup .alert.alert-warning i.fa-solid,
.message-popup .alert.alert-xmark i.fa-solid {
  color:#eee;
}
.message-popup .alert.alert-success i.fa-solid::before {
  background: #4caf50;
}
.message-popup .alert.alert-info i.fa-solid::before {
  background: #03a9f4;
}
.message-popup .alert.alert-warning i.fa-solid::before {
  background: #E91E63;
}
.message-popup .alert.alert-xmark i.fa-solid::before {
  background: #ff9800;
}
.message-popup .alert.alert-alert i.fa-solid::before {
  background: #9c27b0;
}
.message-popup .alert .alert-body {
  display: flex;
}
.message-popup .alert .alert-body i {
  padding: 8px 0 0 0;
}
.message-popup .alert .alert-body .alert-text {
  padding: 6px 0 0 12px;
  margin: 0;
}
.message-popup .alert .alert-time {
  font-size: 10pt;
  color: #3338;
  display: flex;
  justify-content: flex-end;
}
.theme-day .message-popup .alert .alert-time {
  color: #3338;
}
.theme-night .message-popup .alert .alert-time {
  color: #eee8;
}



/* Шапка */
.header {
  backdrop-filter: blur(20px);
  padding: 12px 32px;
  align-content: center;
  display: flex;
  justify-content: space-between;
  font-size: 28px;
  font-weight: 600;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  background: rgb(255 255 255 / 35%);
}
.theme-day .header {
  background: rgb(255 255 255 / 35%);
  color: #333;
}
.theme-night .header {
  background: rgb(0 0 0 / 35%);
  color: #eee;
}
.header .home-link {
  color: #333;
  transition: all 0.5s ease;
  text-decoration: auto;
}
.theme-day .header .home-link {
  color: #333;
}
.theme-night .header .home-link {
  color: #eee;
}
.header .logo {
  display: flex;
}
.theme-switcher {
  display: inherit;
  margin: 0 20px 0;
}
.theme-switcher button {
  width: 35px;
  text-align: center;
  border: 0;
  transition: all 0.5s ease;
}
.theme-switcher button.day_button {
  width: 35px;
  text-align: center;
  border-radius: 12px 0 0 12px;
  color: #333;
  background: rgb(0 196 255 / 50%);
}
.theme-switcher button.night_button {
  width: 35px;
  text-align: center;
  border-radius: 0 12px 12px 0;
  color: #333;
  background: rgb(0 196 255 / 50%);
}
.theme-day .theme-switcher button {
  color: #333;
  background: rgb(0 196 255 / 50%);
}
.theme-night .theme-switcher button {
  color: #eee;
  background: rgb(57 0 61 / 50%);
}
.theme-switcher button.active {
  color: #333;
  background: rgb(91 216 254 / 50%);
  box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.1);
}
.theme-day .theme-switcher button.active {
  color: #333;
  background: rgb(91 216 254 / 50%);
  box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.1);
}
.theme-night .theme-switcher button.active {
  color: #eee;
  background: rgb(159 0 170 / 50%);
  box-shadow: inset -3px 3px 3px rgba(0, 0, 0, 0.1);
}
.header nav {
  display: flex;
}
.header nav span.username {
  font-size: 20px;
  margin: auto;
  padding: 0 12px;
}
.header a {
  color: #333;
  transition: all 0.5s ease;
}
.theme-day .header a {
  color: #333;
}
.theme-night .header a {
  color: #eee;
}

/* Карточки */
.card {
  backdrop-filter: blur(20px);
  border-radius: 12px;
  height: fit-content;
  /* min-width: 350px; */
  transition: all 1s ease;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
  border: 0;
  margin: 0 12px 16px;
  background: rgb(255 255 255 / 15%);
}
.theme-day .card {
  background: rgb(255 255 255 / 15%);
}
.theme-night .card {
  background: rgb(0 0 0 / 15%);
}
.card .card_title {
  padding: 12px;
  border-radius: 12px 12px 0 0;
  font-size: 24px;
  transition: all 1s ease;
  background: rgb(255 255 255 / 15%);
}
.theme-day .card .card_title {
  background: rgb(255 255 255 / 15%);
  color: #333;
}
.theme-night .card .card_title {
  background: rgb(0 0 0 / 15%);
  color: #eee;
}
.card .card_title h3 {
  text-align: center;
  margin: 0;
}
.card .card_body p.user {
  margin: 0 0 6px 0;
  padding: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  transition: all 1s ease;
  background: rgb(255 255 255 / 20%);
  color: #333;
}
.theme-day .card .card_body p.user {
  background: rgb(255 255 255 / 20%);
  color: #333;
}
.theme-night .card .card_body p.user {
  background: rgb(0 0 0 / 20%);
  color: #eee;
}
.card .card_body {
  padding: 6px;
}


/* Карточка входа */
.card .card_login_body {
  padding: 12px;
  font-size: 20px;
}
.card .card_login_body .label {
  display: flex;
  padding: 0 20px;
  transition: all 0.5s ease;
  color: #333;
}
.theme-day .card_login_body .label {
  color: #333;
}
.theme-night .card_login_body .label {
  color: #eee;
}
.card .card_login_body .input {
  border-radius: 16px;
  padding: 8px 12px;
  margin: 8px 20px 12px;
  border: 0;
  min-width: -webkit-fill-available;
  font-size: 20px;
  text-align: center;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  background: rgb(255 255 255 / 25%);
  color: #333;
}
.theme-day .card_login_body .input {
  background: rgb(255 255 255 / 25%);
  color: #333;
}
.theme-night .card_login_body .input {
  background: rgb(0 0 0 / 25%);
  color: #eee;
}
.card .card_login_button {
  font-weight: 600;
  padding: 12px;
  border-radius: 0 0 12px 12px;
  font-size: 24px;
  border: 0;
  min-width: inherit;
  width: -webkit-fill-available;
  transition: all 0.5s ease;
  background: rgb(0 196 255 / 50%);
  color: #333;
}
.theme-day .card .card_login_button {
  background: rgb(0 196 255 / 50%);
  color: #333;
}
.theme-night .card .card_login_button {
  background: rgb(57 0 61 / 50%);
  color: #eee;
}
.card .card_login_button:hover {
  background: rgb(34 229 255 / 75%);
}
.theme-day .card .card_login_button:hover {
  background: rgb(34 229 255 / 75%);
}
.theme-night .card .card_login_button:hover {
  background: rgb(202 0 86 / 75%);
}
.registration {
  margin: 12px 0;
  text-align: center;
}
.registration a {
  color: #333;
  transition: all 0.5s ease;
  text-decoration: auto;
}
.theme-day .registration a {
  color: #333;
}
.theme-night .registration a {
  color: #eee;
}

/* Сброс пароля */
.card .card_auth_reset_body form {
  display: grid;
  padding: 12px 20px;
}
.card .card_auth_reset_body form label {
  font-size: 20px;
  margin: 0 0 12px 0;
}
.card .card_auth_reset_body form label p {
  margin: 0 12px 8px;
  text-align: center;
  transition: all 0.5s ease;
  color: #333;
}
.theme-day .card .card_auth_reset_body form label p {
  color: #333;
}
.theme-night .card .card_auth_reset_body form label p {
  color: #eee;
}
.card .card_auth_reset_body form input,
.card .card_auth_reset_body form button {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 18px;
  text-align: center;
  margin: 0 0 12px 0;
  border: 0;
  transition: all 0.5s ease;
  color: #333;
}
.card .card_auth_reset_body form input {
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
  background: rgb(255 255 255 / 25%);
  color: #333;
}
.theme-day .card .card_auth_reset_body form input {
  background: rgb(255 255 255 / 25%);
  color: #333;
}
.theme-night .card .card_auth_reset_body form input {
  background: rgb(0 0 0 / 25%);
  color: #eee;
}
.card .card_auth_reset_body form button {
  background: rgb(0 196 255 / 50%);
}
.card .card_auth_reset_body form button:hover {
  background: rgb(34 229 255 / 75%);
}
.theme-day .card .card_auth_reset_body form button {
  background: rgb(0 196 255 / 50%);
}
.theme-day .card .card_auth_reset_body form button:hover {
  background: rgb(34 229 255 / 75%);
}
.theme-night .card .card_auth_reset_body form button {
  background: rgb(57 0 61 / 50%);
  color: #eee;
}
.theme-night.card .card_auth_reset_body form button:hover {
  background: rgb(202 0 86 / 75%);
}
/* Регистрация */
.card .card_register_body .card_register_element {
  display: flex;
  margin: 8px 0;
  border-radius: 25px;
  padding: 0 0 0 8px;
  background: rgb(255 255 255 / 15%);
  transition: all 0.5s ease;
}
.theme-day .card .card_register_body .card_register_element {
  background: rgb(255 255 255 / 15%);
}
.theme-night .card .card_register_body .card_register_element {
  background: rgb(0 0 0 / 15%);
}
.card .card_register_body label {
  width: 50%;
}
.card .card_register_body input {
  width: auto;
}
.card .card_register_body .card_register_element label {
  color: #333;
  font-size: 16px;
  margin: auto 8px;
  transition: all 0.5s ease;
}
.theme-day .card .card_register_body .card_register_element label {
  color: #333;
}
.theme-night .card .card_register_body .card_register_element label {
  color: #eee;
}
.card .card_register_body .card_register_element input {
  border-radius: 16px;
  padding: 8px 12px;
  border: 0;
  background: rgb(255 255 255 / 25%);
  color: #333;
  font-size: 16px;
  transition: all 0.5s ease;
}
.theme-day .card .card_register_body .card_register_element input {
  background: rgb(255 255 255 / 25%);
  color: #333;
}
.theme-night .card .card_register_body .card_register_element input {
  background: rgb(0 0 0 / 25%);
  color: #eee;
}
.card .card_register_button {
  font-weight: 600;
  padding: 12px;
  border-radius: 0 0 12px 12px;
  font-size: 24px;
  border: 0;
  min-width: -webkit-fill-available;
  transition: all 0.5s ease;
  background: rgb(0 196 255 / 50%);
  color: #333;
}
.theme-day .card .card_register_button {
  background: rgb(0 196 255 / 50%);
  color: #333;
}
.theme-night .card .card_register_button {
  background: rgb(57 0 61 / 50%);
  color: #eee;
}
.card .card_login_button:hover {
  background: rgb(34 229 255 / 75%);
}
.theme-day .card .card_login_button:hover {
  background: rgb(34 229 255 / 75%);
}
.theme-night .card .card_register_button:hover {
  background: rgb(202 0 86 / 75%);
}

/* Инвайты */
.vpn_users_table input {
    width: 100%;
    max-width: 126px;
}
.card_body p:last-child{
  text-align: center;
}
.card .card_body .invite_list_table,
.card .card_body .invitees_list_table,
.card .card_body .admin_user_table,
.card .card_body .vpn_users_table,
.card .card_body .my_vpn_users_table,
.card .card_body .server_statuses_table,
.card .card_body .user_info_table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  transition: all 0.5s ease;
  color: #333;
}
.theme-day .card .card_body .invite_list_table,
.theme-day .card .card_body .invitees_list_table,
.theme-day .card .card_body .admin_user_table,
.theme-day .card .card_body .vpn_users_table,
.theme-day .card .card_body .my_vpn_users_table,
.theme-day .card .card_body .server_statuses_table,
.theme-day .card .card_body .user_info_table {
  color: #333;
}
.theme-night .card .card_body .invite_list_table,
.theme-night .card .card_body .invitees_list_table,
.theme-night .card .card_body .admin_user_table,
.theme-night .card .card_body .vpn_users_table,
.theme-night .card .card_body .my_vpn_users_table,
.theme-night .card .card_body .server_statuses_table,
.theme-night .card .card_body .user_info_table {
  color: #eee;
}
.card .card_body .invite_list_table th,
.card .card_body .invite_list_table td,
.card .card_body .invitees_list_table th,
.card .card_body .invitees_list_table td,
.card .card_body .admin_user_table th,
.card .card_body .admin_user_table td,
.card .card_body .vpn_users_table th,
.card .card_body .vpn_users_table td,
.card .card_body .my_vpn_users_table th,
.card .card_body .my_vpn_users_table td,
.card .card_body .server_statuses_table th,
.card .card_body .server_statuses_table td,
.card .card_body .user_info_table th,
.card .card_body .user_info_table td {
  padding: 2px 6px;
}
.card .card_body .invite_list_table th,
.card .card_body .invitees_list_table th,
.card .card_body .admin_user_table th,
.card .card_body .vpn_users_table th,
.card .card_body .my_vpn_users_table th,
.card .card_body .server_statuses_table th,
.card .card_body .user_info_table th {
  background: rgb(255 255 255 / 20%);
}
.theme-day .card .card_body .invite_list_table th,
.theme-day .card .card_body .invitees_list_table th,
.theme-day .card .card_body .admin_user_table th,
.theme-day .card .card_body .vpn_users_table th,
.theme-day .card .card_body .my_vpn_users_table th,
.theme-day .card .card_body .server_statuses_table th,
.theme-day .card .card_body .user_info_table th {
  background: rgb(255 255 255 / 20%);
}
.theme-night .card .card_body .invite_list_table th,
.theme-night .card .card_body .invitees_list_table th,
.theme-night .card .card_body .admin_user_table th,
.theme-night .card .card_body .vpn_users_table th,
.theme-night .card .card_body .my_vpn_users_table th,
.theme-night .card .card_body .server_statuses_table th,
.theme-night .card .card_body .user_info_table th {
  background: rgb(0 0 0 / 20%);
}
.card .card_body .invite_list_table tr,
.card .card_body .invitees_list_table tr,
.card .card_body .admin_user_table tr,
.card .card_body .vpn_users_table tr,
.card .card_body .my_vpn_users_table tr,
.card .card_body .server_statuses_table tr,
.card .card_body .user_info_table tr {
  background: rgb(255 255 255 / 15%);
}
.theme-day .card .card_body .invite_list_table tr,
.theme-day .card .card_body .invitees_list_table tr,
.theme-day .card .card_body .admin_user_table tr,
.theme-day .card .card_body .vpn_users_table tr,
.theme-day .card .card_body .my_vpn_users_table tr,
.theme-day .card .card_body .server_statuses_table tr,
.theme-day .card .card_body .user_info_table tr {
  background: rgb(255 255 255 / 15%);
}
.theme-night .card .card_body .invite_list_table tr,
.theme-night .card .card_body .invitees_list_table tr,
.theme-night .card .card_body .admin_user_table tr,
.theme-night .card .card_body .vpn_users_table tr,
.theme-night .card .card_body .my_vpn_users_table tr,
.theme-night .card .card_body .server_statuses_table tr,
.theme-night .card .card_body .user_info_table tr {
  background: rgb(0 0 0 / 15%);
}
/*.card .card_body .invite_list_table tr:first-child th:first-child,
.card .card_body .invitees_list_table tr:first-child th:first-child,
.card .card_body .admin_user_table tr:first-child th:first-child,
.card .card_body .vpn_users_table tr:first-child th:first-child,
.card .card_body .my_vpn_users_table tr:first-child th:first-child,
.card .card_body .server_statuses_table tr:first-child th:first-child,
.card .card_body .user_info_table tr:first-child td:first-child {
  border-radius: 10px 0 0 0;
}
.card .card_body .invite_list_table tr:first-child th:last-child,
.card .card_body .invitees_list_table tr:first-child th:last-child,
.card .card_body .admin_user_table tr:first-child th:last-child,
.card .card_body .vpn_users_table tr:first-child th:last-child,
.card .card_body .my_vpn_users_table tr:first-child th:last-child,
.card .card_body .server_statuses_table tr:first-child th:last-child,
.card .card_body .user_info_table tr:first-child td:last-child {
  border-radius: 0 10px 0 0;
}*/
.card .card_body .invite_list_table tr:last-child td:last-child, 
.card .card_body .invitees_list_table tr:last-child td:last-child, 
.card .card_body .admin_user_table tr:last-child td:last-child, 
.card .card_body .vpn_users_table tr:last-child td:last-child, 
.card .card_body .my_vpn_users_table tr:last-child td:last-child, 
.card .card_body .server_statuses_table tr:last-child td:last-child, 
.card .card_body .user_info_table tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}
.card .card_body .invite_list_table tr:last-child td:first-child,
.card .card_body .invitees_list_table tr:last-child td:first-child,
.card .card_body .admin_user_table tr:last-child td:first-child,
.card .card_body .vpn_users_table tr:last-child td:first-child,
.card .card_body .my_vpn_users_table tr:last-child td:first-child,
.card .card_body .server_statuses_table tr:last-child td:first-child,
.card .card_body .user_info_table tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}
.card .card_body .invite_list_table .remove_invite,
.card .card_body .admin_user_table .remove_user,
.card .card_body .vpn_users_table .remove_user_button,
.card .card_body .my_vpn_users_table .remove_user_button,
.page_faq_body .btn.mx-2 {
  border: 0;
  border-radius: 20px;
  padding: 4px 12px;
  background: #e81846;
  color: #eee;
}
.card .card_body .invite_list_table .remove_invite:hover,
.card .card_body .admin_user_table .remove_user:hover,
.card .card_body .vpn_users_table .remove_user_button:hover,
.card .card_body .my_vpn_users_table .remove_user_button:hover,
.page_faq_body .btn.mx-2:hover {
  background: #ff4c74;
}
.card .card_body .invite_list_table .remove_invite:active,
.card .card_body .admin_user_table .remove_user:active,
.card .card_body .vpn_users_table .remove_user_button:active,
.card .card_body .my_vpn_users_table .remove_user_button:active,
.page_faq_body .btn.mx-2:active {
  background: #ff819d;
}
.card .card_body .admin_user_table .edit_user_group,
.card .card_body .vpn_users_table .change_password_button,
.card .card_body .vpn_users_table .create_vpn_user_button,
.card .card_body .my_vpn_users_table .create_vpn_user_button,
.card .card_body .my_vpn_users_table .change_password_button,
.card .card_body .create_vpn_user_table .create_vpn_user_button,
.page_faq_body .btn.mx-3 {
  border: 0;
  border-radius: 20px;
  padding: 4px 12px;
  background: #228bff;
  color: #eee;
}
.card .card_body .admin_user_table .edit_user_group:hover,
.card .card_body .vpn_users_table .change_password_button:hover,
.card .card_body .vpn_users_table .create_vpn_user_button:hover,
.card .card_body .my_vpn_users_table .create_vpn_user_button:hover,
.card .card_body .my_vpn_users_table .change_password_button:hover,
.card .card_body .create_vpn_user_table .create_vpn_user_button:hover,
.page_faq_body .btn.mx-3:hover {
  background: #449dff;
}
.card .card_body .admin_user_table .edit_user_group:active,
.card .card_body .vpn_users_table .change_password_button:active,
.card .card_body .vpn_users_table .create_vpn_user_button:active,
.card .card_body .my_vpn_users_table .create_vpn_user_button:active,
.card .card_body .my_vpn_users_table .change_password_button:active,
.card .card_body .create_vpn_user_table .create_vpn_user_button:active,
.page_faq_body .btn.mx-3:active  {
  background: #6cb2ff;
}
.card .card_body .card_empty_content {
  margin: 12px 0 0 0;
}
.card .card_body .card_empty_content .card_empty_content_icon {
  display: flex;
  justify-content: center;
}
.card .card_body .card_empty_content .card_empty_content_icon .fa-solid {
  font-size: 50px;
  transition: all 0.5s ease;
  color: #3338;
}
.theme-day .card .card_body .card_empty_content .card_empty_content_icon .fa-solid {
  color: #3338;
}
.theme-night .card .card_body .card_empty_content .card_empty_content_icon .fa-solid {
  color: #eee8;
}
.card .card_body .card_empty_content p,
.card .card_body p:last-child {
  text-align: center;
  margin: 8px 0;
  transition: all 0.5s ease;
  color: #333;
}
.theme-day .card .card_body .card_empty_content p,
.theme-day .card .card_body p:last-child {
  color: #333;
}
.theme-night .card .card_body .card_empty_content p,
.theme-night .card .card_body p:last-child {
  color: #eee;
}
.card .card_create_invite {
  margin: 0;
}
.card .create_invite_element button {
  font-weight: 600;
  padding: 12px;
  border-radius: 0 0 12px 12px;
  font-size: 24px;
  border: 0;
  min-width: -webkit-fill-available;
  transition: all 0.5s ease;
  background: rgb(0 196 255 / 50%);
  color: #333;
}
.theme-day .card .create_invite_element button {
  background: rgb(0 196 255 / 50%);
  color: #333;
}
.theme-night .card .create_invite_element button {
  background: rgb(57 0 61 / 50%);
  color: #eee;
}
.card .create_invite_element button:hover {
  background: rgb(34 229 255 / 75%);
}
.theme-day .card .create_invite_element button:hover {
  background: rgb(34 229 255 / 75%);
}
.theme-night .card .create_invite_element button:hover {
  background: rgb(202 0 86 / 75%);
}
.card .card_body .vpn_users_table input.create_user_username,
.card .card_body .my_vpn_users_table input.create_user_username,
.card .card_body .create_vpn_user_table input.create_user_username {
  text-align: center;
}
.card .card_body .vpn_users_table input,
.card .card_body .my_vpn_users_table input,
.card .card_body .create_vpn_user_table input {
  background: rgb(255 255 255 / 15%);
  border: 0;
  border-radius: 6px;
  padding: 4px 8px;
  transition: all 0.5s ease;
  color: #333;
}
.theme-day .card .card_body .vpn_users_table input,
.theme-day .card .card_body .my_vpn_users_table input,
.theme-day .card .card_body .create_vpn_user_table input {
  background: rgb(255 255 255 / 15%);
  color: #333;
}
.theme-night .card .card_body .vpn_users_table input,
.theme-night .card .card_body .my_vpn_users_table input,
.theme-night .card .card_body .create_vpn_user_table input {
  background: rgb(0 0 0 / 15%);
  color: #eee;
}
.card .card_body .user_info_table tr td:first-child {
  text-align: right;
}
.card .card_body .user_info_table tr td:last-child {
  text-align: center;
}
.theme-day .card .card_body .user_info_table tr:first-child td {
  background: rgb(255 255 255 / 15%);
}
.theme-night .card .card_body .user_info_table tr:first-child td {
  background: rgb(0 0 0 / 15%);
}
/* Статусы серверов */
.status_online {
  color: #28c76f;
}
.status_offline {
  color: #ea5455;
}
/* Сообщения */
.card .card_messages_body .message_card {
  padding: 6px 20px;
}
.card .card_messages_body .message_card .message {
  color: #333;
  padding: inherit;
  transition: all 0.5s ease;
}
.theme-day .card .card_messages_body .message_card .message {
  color: #333;
}
.theme-night .card .card_messages_body .message_card .message {
  color: #eee;
}
.card .card_messages_body .message_card p.message {
  margin: 0;
  text-align: center;
}
.card .card_messages_body .message_card li.message {
  margin: 6px 0;
}
.message_card.popup .messages p.message {
  text-align: center;
  margin: 12px 6px;
  transition: all 0.5s ease;
  color: #333;
}
.theme-day .message_card.popup .messages p.message {
  color: #333;
}
.theme-night .message_card.popup .messages p.message {
  color: #eee;
}
/* FAQ */
.page_faq_body {
  background: rgb(255 255 255 / 15%);
  border-radius: 20px;
  overflow: auto;
  scrollbar-width: none;
  transition: all 0.5s ease;
}
.page_faq_body h2 {
  background: rgb(255 255 255 / 15%);
  margin: 0;
  padding: 20px 0;
  text-align: center;
  color: #333;
  transition: all 0.5s ease;
}
.page_faq_body .page_faq_table .block {
  padding: 4px 24px;
  border-radius: 20px;
  background: rgb(255 255 255 / 15%);
  transition: all 0.5s ease;
}
.theme-day .page_faq_body .page_faq_table .block {
  background: rgb(255 255 255 / 15%);
}
.theme-night .page_faq_body .page_faq_table .block {
  background: rgb(0 0 0 / 15%);
}
.page_faq_body .page_faq_table {
  display: flex;
  justify-content: center;
  border-spacing: 8px;
  text-align: center;
  color: #333;
  transition: all 0.5s ease;
}
.theme-day .page_faq_body {
  background: rgb(255 255 255 / 15%);
  color: #333;
}
.theme-day .page_faq_body h2 {
  background: rgb(255 255 255 / 15%);
  color: #333;
}
.theme-day .page_faq_body .page_faq_table {
  color: #333;
}
.theme-night .page_faq_body {
  background: rgb(0 0 0 / 15%);
  color: #eee;
}
.theme-night .page_faq_body h2 {
  background: rgb(0 0 0 / 15%);
  color: #eee;
}
.theme-night .page_faq_body .page_faq_table {
  color: #eee;
}
.theme-night .page_faq_body .page_faq_table tbody:first-child {
  overflow: auto;
  scrollbar-width: none;
}
.page_faq_body .page_faq_table h4 {
  font-size: 18px;
  margin: 0;
  padding: 12px 0;
  color: #333;
  transition: all 0.5s ease;
}
.theme-day .page_faq_body .page_faq_table h4 {
  color: #333;
}
.theme-night .page_faq_body .page_faq_table h4 {
  color: #eee;
}
.slider-header h4 {
  text-align: left;
  padding: 12px 20px;
  margin: 0;
  font-size: 20px;
}
.slider-header h2 {
  text-align: left;
  padding: 12px 20px;
  margin: 0;
  font-size: 24px;
}
.page_faq_body .slide-container .slide-content .slider_header,
.page_faq_body .slide-container .slide-content .slider_text,
.page_faq_body .slide-container .slide-content .slider_attachments {
  padding: 6px 20px;
}
.page_faq_body .slide-container .slide-content .slider_text code {
    font-size: 14px;
    font-weight: 100;
    background: #fff;
    padding: 0 8px;
}
.theme-day .page_faq_body .slide-container .slide-content .slider_text code {
    background: #fff;
}
.theme-night .page_faq_body .slide-container .slide-content .slider_text code {
    background: #000;
}
.page_faq_body .slide-container .slide-content .slider_attachments {
  border-radius: 0 0 12px 12px;
  background: rgb(255 255 255 / 15%);
  transition: all 0.5s ease;
}
.theme-day .page_faq_body .slide-container .slide-content .slider_attachments {
  background: rgb(255 255 255 / 15%);
}
.theme-night .page_faq_body .slide-container .slide-content .slider_attachments {
  background: rgb(0 0 0 / 15%);
}
.page_faq_body .slide-container .slide-content .slider_attachments a {
  font-size: 20px;
}
.page_faq_body .slide-container .slide-content .slider_attachments i {
  font-size: 24px;
  color: #333;
}
.theme-day .page_faq_body .slide-container .slide-content .slider_attachments i {
  font-size: 24px;
  color: #333;
}
.theme-night .page_faq_body .slide-container .slide-content .slider_attachments i {
  font-size: 24px;
  color: #eee;
}
.page_faq_body .slide-container .slide-content a,
.page_faq_body .slide-container .slide-content strong {
  color: hotpink;
  font-weight: 300;
  transition: all 0.5s ease;
}
.theme-day .page_faq_body .slide-container .slide-content a,
.theme-day .page_faq_body .slide-container .slide-content strong {
  color: hotpink;
}
.theme-night .page_faq_body .slide-container .slide-content a,
.theme-night .page_faq_body .slide-container .slide-content strong {
  color: aqua;
}
.theme-day .page_faq_body .slide-container .slide-content a:hover {
  color: deeppink;
}
.theme-night .page_faq_body .slide-container .slide-content a:hover {
  color: mediumaquamarine;
}

/* PRIVACY */
.privacy_effective_date { font-style: italic; color: #777; }
.privacy_section { margin-bottom: 1.5rem; }
.privacy_section h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.privacy_section ul { padding-left: 1.5rem; }
.privacy_section li { margin-bottom: 0.3rem; }
.privacy_email_link { color: #4a90e2; text-decoration: underline; }
.page_privacy_body {
  overflow: auto;
  scrollbar-width: none;
  border-radius: 20px;
  color: #333;
  background: rgb(255 255 255 / 15%);
  transition: all 0.5s ease;
}
.theme-day .page_privacy_body {
  background: rgb(255 255 255 / 15%);
  color: #333;
}
.theme-night .page_privacy_body {
  background: rgb(0 0 0 / 15%);
  color: #eee;
}
.page_privacy_body .card_privacy_policy_title {
  border-radius: 18px 18px 0 0;
  padding: 4px 20px;
  background: rgb(255 255 255 / 15%);
  transition: all 0.5s ease;
}
.theme-day .page_privacy_body .card_privacy_policy_title {
  background: rgb(255 255 255 / 15%);
}
.theme-night .page_privacy_body .card_privacy_policy_title {
  background: rgb(0 0 0 / 15%);
}
.page_privacy_body .privacy_section {
  padding: 0 20px;
  margin: 0;
}
.privacy_accept p {
  padding: 16px 0;
  text-align: center;
  border-radius: 0 0 18px 18px;
  background: rgb(255 255 255 / 15%);
  transition: all 0.5s ease;
  margin: 0;
}
.theme-day .privacy_accept p {
  background: rgb(255 255 255 / 15%);
}
.theme-night .privacy_accept p {
  background: rgb(0 0 0 / 15%);
}

/* Подвал */
.footer {
  backdrop-filter: blur(20px);
  padding: 12px 32px;
  align-content: center;
  display: flex;
  justify-content: center;
  box-shadow: 0 -3px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  background: rgb(255 255 255 / 35%);
  color: #333;
  text-align: center;
}
.theme-day .footer {
  background: rgb(255 255 255 / 35%);
  color: #333;
}
.theme-night .footer {
  background: rgb(0 0 0 / 35%);
  color: #eee;
}
.footer .footer-content p {
  margin: 6px 0;
}
.footer .footer-content a {
  color: hotpink;
  transition: all 0.5s ease;
}
.theme-day .footer .footer-content a {
  color: hotpink;
}
.theme-night .footer .footer-content a {
  color: aqua;
}
.theme-day .footer .footer-content a:hover {
  color: deeppink;
}
.theme-night .footer .footer-content a:hover {
  color: mediumaquamarine;
}


@media (max-width: 768px) {
  body {
    overflow: auto;
    height: auto;
  }

  .header {
    flex-direction: column;
    font-size: 20px;
    padding: 8px 16px;
    align-items: center;
    text-align: center;
  }

  .theme-switcher {
    margin-top: 10px;
  }

  .card {
    /* min-width: 90%; */
    margin: 0;
  }
  .containers_all .container {
    margin: 8px auto;
  }
  .card .card_title {
    font-size: 20px;
  }

  .card .card_login_body .input,
  .card .card_login_body .label {
    margin: 4px 8px;
    font-size: 18px;
  }

  .card .card_login_button {
    font-size: 20px;
  }

  .card .card_create_user_body .create_user_element,
  .card .card_vpn_users_body .vpn_user_element {
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
  }

  .card .card_vpn_users_body .vpn_user_element input,
  .card .card_create_user_body .create_user_element input {
    border-radius: 12px;
    margin-bottom: 6px;
  }

  .card .card_vpn_users_body .vpn_user_element button,
  .card .card_create_user_body .create_user_element button {
    width: 100%;
    border-radius: 12px;
    margin-top: 6px;
  }

  .footer {
    font-size: 14px;
    padding: 8px;
    flex-direction: column;
    text-align: center;
  }
}
