@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  background: #f8f9fa;
  min-height: 100vh;
  position: relative;
}

a {
  text-decoration: none;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
}

#form_message {
  background-color: #3b823e;
  color: white;
  padding: 10px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

#scrollToTopBtn {
  font-size: 16px;
  width: 45px;
  height: 45px;
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background: #3b82f6;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 15px;
  box-sizing: border-box;
  box-shadow: 0px 4px 16px rgba(59, 130, 246, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
  color: #ffffff;
  font-weight: 600;
}

#scrollToTopBtn:hover {
  background: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0px 6px 20px rgba(59, 130, 246, 0.4);
}

.inf {
  font-size: 16px;
}

#pagination {
  width: 100%;
  display: none;
  justify-content: center;
}

#hosters_pagination {
  display: none;
}

.pagination_block {
  width: 85%;  max-width: 1400px;
}

.pagination_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 30px 0;
  width: 100%;
  height: 45px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #374151;
  font-weight: 600;
  border-radius: 8px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination_btn:hover {
  border-color: #3b82f6;
  background: rgba(45, 50, 55, 0.9);
  color: #3b82f6;
}

input:focus {
  outline: none;
}

textarea:focus {
  outline: none;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.menu nav {
  display: flex;
  width: 85%;
  max-width: 1400px;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.menu img {
  height: 50px;
  cursor: pointer;
  object-fit: contain;
}

.menu_items {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.menu_item {
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  position: relative;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.menu_item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: #3b82f6;
  transition: transform 0.2s ease;
}

.menu_item_active {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  font-weight: 600;
}

.menu_item_active::after {
  transform: translateX(-50%) scaleX(1);
}

.menu_item:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.menu_item:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.mob_menu {
  display: none;
  width: 100%;
  justify-content: center;
}

.mob_menu nav {
  width: 100%;
  display: none;
}

.mob_menu_line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;  max-width: 1400px;
}

.mob_menu_logo {
  height: 50px;
  width: 200px;
  cursor: pointer;
}

.mob_menu_img {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.close_menu {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

#servers_block {
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.filters_block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
}

.filters {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 85%;
  max-width: 1400px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.filters:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.filters_line {
  display: flex;
  gap: 3px;
}

.mob_filters {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 20px 26px 20px 20px;
  box-sizing: border-box;
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.input_filter {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 33%;
  height: 60px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px 0 0 8px;
  box-sizing: border-box;
  font-size: 16px;
  padding: 0 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #374151;
}

.input_filter_unborder {
  border-radius: 0px;
}

.input_filter_border_right {
  border-radius: 0 10px 10px 0;
}

.active_input_filter {
  border: 2px solid #3b82f6 !important;
  background: #ffffff;
}

.input_filter_name {
  font-size: 12px;
  color: #6b7280;
  transition: 0.2s;
}

.active_input_filter_name {
  font-size: 12px;
  margin-bottom: 2px;
}

.input_values {
  display: flex;
}

.input_values input {
  width: 100%;
  border: none;
  height: 20px;
  padding: 1.6px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  background-color: transparent;
  color: #1f2937;
  outline: none;
}

.input_unit {
  display: none;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
}

.choose_filter:hover,
.input_filter:hover {
  border: 1px solid #3b82f6;
  background: #ffffff;
}

.show_result_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  height: 50px;
  background: #3b82f6;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 20px 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  transition: all 0.2s ease;
}

.show_result_btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.show_result_btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.more_filters_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 60px;
  min-width: 16%;
  background: #ffffff;
  color: #374151;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 0.5%;
  transition: all 0.2s ease;
}

.more_filters_btn:hover {
  border-color: #3b82f6;
  background: #f9fafb;
  color: #3b82f6;
}

.show_more_filters {
  height: 16px;
  width: 16px;
  opacity: 0.9;
}

.checkbox_componets {
  position: absolute;
  z-index: 10;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2px;
}

#ssd_checkbox_mob {
  height: 16px;
  width: 16px;
  position: absolute;
  top: 32%;
  right: 10%;
}

#ssd_checkbox {
  height: 16px;
  width: 16px;
  position: absolute;
  top: 32%;
  right: 10%;
}

.ssd_checkbox_name {
  height: 16px;
  width: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  position: absolute;
  top: 34%;
  right: 5%;
}

.input_filter_name span {
  color: #3b82f6;
  cursor: pointer;
  font-weight: 600;
}

.currency_choice {
  height: 16px;
  width: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #3b82f6;
  position: absolute;
  top: 34%;
  right: 6%;
  cursor: pointer;
  transition: color 0.2s ease;
}

.currency_choice:hover {
  color: #2563eb;
}

.filter_popup {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border: 1px solid #e5e7eb;
}

#change_period_popup {
  position: absolute;
  top: 85%;
  left: 8.5%;
  z-index: 1000;
}

#change_currency_popup {
  position: absolute;
  top: 85%;
  right: 1%;
  z-index: 1000;
}

.filter_popup::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ffffff;
}

.period_item {
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #d1d5db;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  color: #374151;
}

.period_item:hover:not(.period_item_active) {
  background-color: rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
  color: #3b82f6;
}

.period_item1 {
  border-radius: 10px 10px 0 0;
}

.period_item2 {
  border-top: none;
  border-bottom: none;
}

.period_item3 {
  border-bottom: none;
}

.period_item4 {
  border-radius: 0 0 10px 10px;
}

.period_item_active {
  color: #ffffff;
  background: #3b82f6;
  border-color: #3b82f6;
}

.main_page_text {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.mob_main_page_text {
  display: none;
  width: 100%;
  justify-content: center;
  margin-bottom: 40px;
}

.mob_main_page_content_line {
  display: flex;
  justify-content: space-between;
}

.mob_main_page_content_line img {
  width: 20px;
  height: 20px;
}

.main_page_content {
  width: 85%;  max-width: 1400px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 30px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  color: #374151;
  position: relative;
  z-index: 1;
}

.main_page_content h1,
.main_page_content h2,
.main_page_content h3 {
  color: #1f2937;
}

.main_page_content p,
.main_page_content li {
  color: #4b5563;
  line-height: 1.6;
}

.main_page_title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.main_page_description {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  text-align: justify;
}

#mob_main_page_arrow {
  transition: 0.6s;
  cursor: pointer;
}

#sort_block {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

#more_sort_popup {
  position: fixed;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 12px;
  background: #ffffff;
  color: #374151;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  z-index: 1001;
  min-width: 280px;
}

.sort_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  color: #374151;
  transition: all 0.2s ease;
  border-radius: 8px;
}

.sort_item:hover {
  background-color: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.sort_name {
  font-size: 15px;
  font-weight: 500;
  color: inherit;
}

.sort_item input {
  appearance: none;
  border-radius: 50%;
  width: 19px;
  height: 19px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: 0.2s all linear;
  position: relative;
  top: 4px;
  margin: 0;
  box-sizing: border-box;
  background: transparent;
}

.sort_item input:checked {
  border: 5px solid #3b82f6;
  box-sizing: border-box;
}

.more_sort_btn {
  width: 85%;  max-width: 1400px;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.more_sort_btn_block {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  background: rgb(74 85 104);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.more_sort_btn_block:hover {
  background: #f3f4f6;
  border-color: #3b82f6;
  color: #3b82f6;
}

.show_more_sort {
  height: 20px;
  width: 20px;
  opacity: 0.9;
  color: #ffffff;
}

#servers_card_container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
  width: 85%;
  max-width: 1400px;
  margin: 0 auto;
}

.skeleton-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  gap: 20px;
}

.skeleton-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}

.skeleton-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.skeleton-line {
  height: 16px;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

.skeleton-line-short {
  width: 60%;
}

.skeleton-line-medium {
  width: 80%;
}

.skeleton-price {
  width: 120px;
  height: 40px;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-hoster-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 340px;
  height: 340px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 20px;
  box-sizing: border-box;
}

.skeleton-hoster-name {
  height: 60px;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 12px 12px 0 0;
}

.skeleton-hoster-logo {
  width: 280px;
  height: 120px;
  margin: 0 auto;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}

.skeleton-hoster-button {
  height: 50px;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}

.server_card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 24px;
  box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}

.server_card:hover {
  border: 1px solid #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
  background: #f9fafb;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  width: 85%;  max-width: 1400px;
  height: 80px;
  color: #374151;
  font-weight: 400;
}

.mob_row {
  display: contents;
}

.country_column {
  min-width: 22%;
}

.card_characteristics {
  font-size: 14px;
  text-align: center;
}

.card_characteristics_value {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.flex_countries {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.server_country_img {
  height: 35px;
  width: 35px;
}

.card_characteristics_value p {
  font-size: 12px;
  margin: 0;
}

.outline_charac {
  color: #667eea;
}

.company_logo {
  width: 110px;
  height: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.company_logo img {
  height: 28px;
  width: 100%;
  object-fit: contain;
}

.company_site_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: 110px;
  background-color: rgb(182, 230, 252, 0.4);
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.5s;
}

.company_site_btn:hover {
  background-color: rgb(0, 175, 255, 0.6);
  color: #fff;
}

.price_and_info_group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card_info_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  width: 35px;
  background-color: rgba(59, 130, 246, 0.2);
  box-sizing: border-box;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card_info_btn:hover {
  background-color: rgba(59, 130, 246, 0.3);
}

.card_info_btn img {
  height: 25px;
  width: 25px;
  opacity: 0.9;
}

.card_price_btn {
  height: 35px;
  width: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  box-sizing: border-box;
  background-color: #4a5568;
  color: #fff;
  cursor: pointer;
  transition: 0.5s;
}

.card_comparison_btn {
  height: 35px;
  min-width: 155px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: #4a5568;
  color: #fff;
  cursor: pointer;
  transition: 0.5s;
}

.card_comparison_btn:hover,
.card_price_btn:hover {
  background-color: #efefef;
  color: #171d23;
}

.card_comparison_btns {
  display: none;
  gap: 10px;
  height: 35px;
  width: 155px;
  justify-content: space-between;
}

.card_comparison_btns img {
  width: 20px;
  height: 20px;
}

.comparison_btn {
  height: 35px;
  width: 70.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.comparison_btn:hover {
  background-color: rgba(59, 130, 246, 0.3);
}

.comparison_btn img {
  opacity: 0.9;
}

.comparison_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
  min-height: calc(100vh - 200px);
}

.comparison_block_header {
  width: 85%;  max-width: 1400px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 160px;
}

.comparison_block_title {
  width: auto;
  font-size: 26px;
  font-weight: 600;
  color: #1f2937;
}

.delete_all_comparisons_btn {
  width: 120px;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(239, 68, 68, 0.2);
  box-sizing: border-box;
  cursor: pointer;
  color: #ef4444;
  transition: all 0.3s ease;
}

.delete_all_comparisons_btn:hover {
  background-color: rgba(239, 68, 68, 0.3);
  border-color: rgba(239, 68, 68, 0.5);
}

.delete_all_comparisons_btn img {
  width: 15px;
  height: 15px;
  opacity: 0.9;
}

.naming_hosters_line_container {
  width: 85%;  max-width: 1400px;
  display: flex;
}

#naming_hosters_line {
  width: 85%;  max-width: 1400px;
  overflow-x: auto;
  padding-top: 20px;
  box-sizing: border-box;
  display: flex;
  gap: 50px;
}

.delete_comparison_btn {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.delete_comparison_btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.comparison_block_column {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.comparison_block_column_hoster_name {
  width: 85%;  max-width: 1400px;
  font-size: 22px;
  font-weight: 600;
  height: 60px;
  color: #1f2937;
}

.comparison_block_hoster_img {
  width: 150px;
}

.comparison_block_column_name {
  font-size: 18px;
  font-weight: 500;
  height: 60px;
  color: #1f2937;
}

.comparison_block_hoster_value {
  text-align: center;
  font-size: 18px;
  max-height: 30px;
  min-height: 60px;
  white-space: nowrap;
  color: #4b5563;
}

.comparison_block_hoster_value span {
  font-size: 14px;
}

.hosters_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
  min-height: calc(100vh - 200px);
}

.hosters_block input {
  width: calc((340px * 3) + 60px);
  margin-top: 80px;
  display: flex;
  align-items: center;
  height: 60px;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  box-sizing: border-box;
  font-size: 16px;
  padding: 20px 10px;
  margin-bottom: 20px;
  color: #374151;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hosters_block input::placeholder {
  color: #9ca3af;
}

.hosters_block input:hover {
  border: solid 1px rgba(59, 130, 246, 0.5);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.hosters_block input:focus {
  border: solid 1px #3b82f6;
  outline: none;
}

#sorry_text {
  display: none;
  margin-top: 20px;
  font-size: 22px;
  font-weight: 600;
  color: #1f2937;
}

#hosters_container {
  width: 85%;  max-width: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px 30px;
}

.hoster_card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 340px;
  height: 340px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.hoster_card:hover {
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
  transform: translateY(-2px);
}

.hoster_name {
  padding: 20px;
  background: rgba(59, 130, 246, 0.08);
  color: #1f2937;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid #e5e7eb;
}

.hoster_card img {
  height: 90px;
  width: 100%;
  object-fit: contain;
}

.hoster_tarif {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 270px;
  height: 50px;
  background-color: rgba(59, 130, 246, 0.1);
  font-size: 16px;
  font-weight: 600;
  margin-left: 35px;
  border-radius: 8px;
  cursor: pointer;
  color: #1f2937;
  transition: all 0.3s ease;
}

.hoster_tarif:hover {
  background-color: rgba(59, 130, 246, 0.15);
}

.hoster_site {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 270px;
  height: 50px;
  background-color: #3b82f6;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  margin-left: 35px;
  margin-bottom: 20px;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
}

.hoster_site:hover {
  background-color: #2563eb;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.hoster_card a {
  color: #fff;
}

.ssl_card_container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 70px;
}

.ssl_card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 62%;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}

.cert_name {
  color: #667eea;
  cursor: pointer;
  transition: 0.5s;
}

.cert_name:hover {
  color: #4a5568;
}

.ssl_img {
  height: 25px;
  width: 25px;
}

.ssl_img2 {
  height: 20px;
  width: 20px;
}

.ssl_year_price {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 40px;
  background-color: #4a5568;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
}

.ssl_year_price:hover {
  background-color: #efefef;
  color: #171d23;
}

.about_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-bottom: 70px;
}

.about_page_title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-top: 160px;
}

.about_page_content {
  width: 85%;  max-width: 1400px;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
}

.about_page_description {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #667eea;
  border-bottom: 1px solid #c6c6c6;
  padding-bottom: 20px;
}

.about_page_text p {
  margin: 0;
  padding: 20px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #c6c6c6;
}

.about_form {
  width: 85%;  max-width: 1400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about_form_description {
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.about_form_description a {
  color: #667eea;
}

.decor {
  position: relative;
  width: 85%;  max-width: 1400px;
  margin: 20px;
  background: white;
  border-radius: 30px;
}
.form-left-decoration,
.form-right-decoration {
  content: "";
  position: absolute;
  width: 50px;
  height: 20px;
  background: #667eea;
  border-radius: 20px;
}
.form-left-decoration {
  bottom: 60px;
  left: -30px;
}
.form-right-decoration {
  top: 60px;
  right: -30px;
}
.form-left-decoration:before,
.form-left-decoration:after,
.form-right-decoration:before,
.form-right-decoration:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 20px;
  border-radius: 30px;
  background: white;
}
.form-left-decoration:before {
  top: -20px;
}
.form-left-decoration:after {
  top: 20px;
  left: 10px;
}
.form-right-decoration:before {
  top: -20px;
  right: 0;
}
.form-right-decoration:after {
  top: 20px;
  right: 10px;
}
.circle {
  position: absolute;
  bottom: 80px;
  left: -55px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
}
.form-inner {
  padding: 100px;
}
.form-inner input,
.form-inner textarea {
  display: block;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 10px;
  background: #efefef;
  line-height: 40px;
  border-width: 0;
  border-radius: 20px;
  box-sizing: border-box;
}

#about_form_btn {
  width: 100%;
  padding: 0 20px;
  height: 40px;
  border-width: 0;
  border-radius: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  background: #667eea;
  border-bottom: 4px solid #667eea;
  color: white;
  font-size: 14px;
  cursor: pointer;
}
.form-inner textarea {
  resize: none;
}

.form-inner textarea:focus {
  border: 1px solid #667eea;
}

#hoster_tarifs {
  width: 85%;  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
}

#hoster_tarifs span {
  width: 100%;
}

.tarif_card_name {
  text-align: center;
  background-color: #fff;
  display: flex;
  justify-content: center;
  width: 100%;
  border-radius: 10px 10px 0 0;
  border: 1px solid #efefef;
  padding: 15px;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 500;
}

.hoster_tarif_card {
  width: 100%;
  border-radius: 0 0 10px 10px;
}

#hoster_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
  width: 100%;
}

.own_hoster_card {
  width: 85%;  max-width: 1400px;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px;
  margin-top: 160px;
}

.own_hoster_data {
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.own_hoster_name {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
}

.own_hoster_data img {
  width: 85%;  max-width: 1400px;
}

.own_hoster_site {
  width: 33%;
  border-radius: 10px;
  cursor: pointer;
}

.own_main_hoster_characteristics {
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.own_hoster_row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 5px;
  border-radius: 5px;
}

.own_hoster_value {
  font-size: 16px;
  font-weight: 500;
}

.own_hoster_value a {
  color: #667eea;
  cursor: pointer;
}

.own_hoster_btns {
  display: flex;
  width: 85%;  max-width: 1400px;
  gap: 10px;
}

.own_hoster_btns a {
  width: 50%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4a5568;
  color: #fff;
  font-size: 16px;
  border-radius: 10px;
  margin-top: 20px;
  cursor: pointer;
}

#reviews {
  display: flex;
  width: 85%;  max-width: 1400px;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.reviews_title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

#reviews_container {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.review_card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
}

.review_row {
  display: flex;
  justify-content: space-between;
}

.review_row div {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.reviews_name {
  color: #667eea;
}

.review_decor {
  width: 100%;
}

#biger_screen_popup {
  display: none;
  justify-content: center;
  z-index: 300;
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  background-color: #fff;
  border-radius: 10px;
}

.title_bigger_hoster_site {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 18px;
  font-weight: 500;
}

.bigger_own_hoster_site {
  width: 100%;
  height: 100%;
  margin-top: 50px;
  border-radius: 0 0 10px 10px;
}

#more_info_popup {
  display: none;
  z-index: 1100;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  height: 85%;
  overflow: auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}

.tarif_name {
  font-size: 20px;
  font-weight: 600;
}

.close_popup {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 24px;
  width: 24px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.close_popup:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.more_info_popup_content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 10px;
}

.more_info_popup_btns {
  padding: 0;
  border: none;
  margin-bottom: 10px;
}

.colored_row {
  border: none;
  background-color: #efefef;
}

.more_info_popup_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 49.5%;
  height: 60px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  box-sizing: border-box;
  cursor: pointer;
}

.tarif_btn {
  background-color: #667eea;
}

.site_btn {
  background-color: #4a5568;
}

.more_info_popup_key {
  font-size: 16px;
  font-weight: 500;
}

#more_info_popup_value {
  font-size: 16px;
  font-weight: 500;
}

.more_info_price_table {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.more_info_price_column {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  border: 2px solid #c6c6c6;
  border-radius: 10px;
}

.more_info_price_period {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #c6c6c6;
  padding: 5px;
  box-sizing: border-box;
  color: #667eea;
}

.more_info_price {
  padding: 5px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #c6c6c6;
  box-sizing: border-box;
}

.more_info_noborder_bottom {
  border: none;
}

.faq_block {
  width: 100%;
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
}

.faq_title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-top: 160px;
  color: #1f2937;
}

.faq_container {
  width: 85%;  max-width: 1400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq_card {
  padding: 15px;
  box-sizing: border-box;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
  transition: all 0.3s ease;
}

.faq_card:hover {
  border-color: #3b82f6;
  background: #ffffff;
}

.faq_line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 5px 0;
}

.faq_line img {
  width: 25px;
  height: 25px;
  cursor: pointer;
  transition: 0.5s;
  opacity: 0.7;
}

.faq_line:hover img {
  opacity: 1;
}

.faq_card_title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

.faq_text {
  display: none;
  color: #a0a0a0;
  line-height: 1.6;
}

.active_faq_text {
  display: block;
  color: #a0a0a0;
  line-height: 1.6;
}

#more_filters_popup {
  display: none;
  z-index: 1001;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  max-width: 90vw;
  max-height: 85vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid #e5e7eb;
}

.sort_popup_name {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
}

.filters_container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.choose_filter {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-width: 48%;
  height: 60px;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  box-sizing: border-box;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.choose_filter_radius {
  border-radius: 0 10px 10px 0;
}

.choose_filter_radius_left {
  border-radius: 0 10px 10px 0;
}

.filter_block {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.show_filter_options {
  height: 20px;
  width: 20px;
  transition: 0.6s;
  cursor: pointer;
}

.filter_name {
  font-size: 12px;
  color: #6b7280;
}

.filter_value {
  font-size: 15px;
  color: #1f2937;
}

.all_word {
  display: none;
}

.popup_input_filter {
  width: 48%;
  border-radius: 8px;
  background: #f9fafb;
  border: 1px solid #d1d5db;
}

#trafic_checkbox {
  height: 16px;
  width: 16px;
  position: absolute;
  top: 32%;
  right: 30%;
}

.trafic_checkbox_name {
  height: 16px;
  width: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  position: absolute;
  top: 34%;
  right: 25%;
}

.popup_filters_btns {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.popup_filters_show_btn {
  height: 50px;
  width: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background: #3b82f6;
  border-radius: 10px;
  box-sizing: border-box;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.popup_filters_show_btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.popup_filters_clear_btn {
  background: #f3f4f6;
  color: #374151;
  font-weight: 600;
  border: 1px solid #d1d5db;
}

.popup_filters_clear_btn:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#countries_popup {
  width: 300px;
  height: 300px;
}

.filter_choice_popup {
  max-height: 400px;
  overflow-y: auto;
  position: absolute;
  z-index: 1002;
  top: 105%;
  left: 1%;
  flex-direction: column;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: #fff;
  color: #171d23;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
}

.filter_choice_popup_item {
  min-width: 200px;
  font-size: 16px;
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.4s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter_choice_popup_item:hover {
  background-color: #efefef;
}

.filter_chice_icon {
  width: 25px;
  height: 25px;
}

.filter_choice_popup_item_active {
  background-color: #4a5568;
  color: #fff;
}

.filter_choice_popup_item_active:hover {
  background-color: #3b82f6;
  color: #fff;
}

.choice_item1 {
  border-radius: 10px 10px 0 0;
}

.choice_item2 {
  border-radius: 0 0 10px 10px;
}

.country_card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #efefef;
  border-radius: 10px;
  box-sizing: border-box;
  min-width: 50%;
  height: 50px;
  cursor: pointer;
  transition: 0.4s;
}

.country_row {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 5px;
}

.country_card:hover {
  background-color: #4a5568;
  color: #fff;
}

.country_card img {
  width: 45px;
  height: 45px;
}

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.site_map {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 40px;
  box-sizing: border-box;
  margin-top: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}

.site_map_content {
  width: 85%;  max-width: 1400px;
}

.site_map_title {
  font-size: 22px;
  margin-bottom: 40px;
  font-weight: normal;
  cursor: pointer;
  transition: 0.4s;
  border-bottom: 1px solid #c6c6c6;
  padding-bottom: 20px;
}

.site_map_title {
  color: #1f2937;
}

.site_map_title:hover {
  color: #3b82f6;
}

.site_map_columns {
  display: flex;
  flex-wrap: wrap;
  font-size: 20px;
}

.site_map_column {
  width: 33%;
}

.list_title {
  font-size: 18px;
  font-weight: 500;
}

.site_map_list {
  padding: 0;
  margin-top: 10px;
}

.site_map_list li {
  list-style-type: none;
}

.list_title {
  color: #1f2937;
  font-weight: 600;
}

.site_map_list a {
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #4b5563;
  position: relative;
  display: inline-block;
  padding: 4px 0;
}

.site_map_list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #3b82f6;
  transition: width 0.2s ease;
}

.site_map_list a:hover {
  color: #3b82f6;
}

.site_map_list a:hover::after {
  width: 100%;
}

.global_site_map_block {
  width: 100%;
  display: flex;
  justify-content: center;
}

.global_site_map_content {
  width: 85%;  max-width: 1400px;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 35px;
  box-sizing: border-box;
}

.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip_country {
  position: relative;
  display: inline-block;
  border-bottom: 2px dotted black;
}

.tooltip_country .tooltiptext_country {
  visibility: hidden;
  width: 240px;
  min-width: 240px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  white-space: pre-wrap;

  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -300%;

  opacity: 0;
}

.tooltip_country:hover .tooltiptext_country {
  visibility: visible;
  opacity: 1;
}

.tooltip .tooltiptext {
  min-width: 140px;
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -90px;
  opacity: 0;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 1800px) {
  .hosters_block input {
    width: calc((340px * 4) + 90px);
  }
}
@media (max-width: 1542px) {
  .hosters_block input {
    width: calc((340px * 2) + 30px);
  }
}
@media (max-width: 1014px) {
  .hosters_block input {
    width: 340px;
  }
}

@media (max-width: 1400px) {
  .menu_item {
    font-size: 15px;
  }
  .input_filter {
    height: 70px;
  }
  .more_filters_btn {
    height: 70px;
    font-size: 15px;
  }
  .active_input_filter_name {
    font-size: 15px;
  }
  .ssd_checkbox_name {
    font-size: 12px;
    right: 4%;
  }
  .trafic_checkbox_name {
    font-size: 12px;
    right: 24%;
  }
  .currency_choice {
    right: 8%;
  }
  .popup_input_filter {
    height: 60px;
  }
}

@media (max-width: 1220px) {
  .menu_items {
    width: 85%;  max-width: 1400px;
    justify-content: space-between;
    gap: 0px;
  }
  .trafic_checkbox_name {
    font-size: 11px;
  }
  .ssd_checkbox_name {
    font-size: 11px;
  }
}

@media (max-width: 1150px) {
  .menu {
    display: none;
  }
  .mob_menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .menu_items {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    border-radius: 10px;
    margin-top: 20px;
    padding: 20px;
    box-sizing: border-box;
    font-size: 14px;
  }
  .mob_menu_line {
    width: 750px;
  }
  .mob_menu nav {
    width: 750px;
  }
  .filters {
    width: 750px;
    margin-top: 30px;
  }
  .trafic_checkbox_name {
    font-size: 10px;
  }
  .main_page_content {
    width: 750px;
  }
  .more_sort_btn {
    width: 750px;
  }
  .server_card {
    width: 750px;
    overflow-x: auto;
  }
  .column {
    flex-shrink: 0;
    max-width: 100px;
  }
  .country_column {
    min-width: 220px;
  }
  .server_card img {
    max-width: 100%;
  }
  .pagination_block {
    width: 750px;
  }
  .faq_container {
    width: 750px;
  }
  .site_map_content {
    width: 750px;
  }
  .hosters_block {
    margin-bottom: 20px;
  }
  .more_info_popup_content {
    margin-top: 20px;
  }
  .comparison_block_header {
    margin-top: 20px;
  }
  .comparison_block {
    width: 750px;
  }
  .faq_title {
    margin-top: 20px;
  }
  .about_page_title {
    margin-top: 20px;
    font-size: 18px;
  }
  .own_hoster_card {
    margin-top: 20px;
    width: 750px;
  }
  .own_hoster_btns {
    width: 750px;
  }
  #hoster_tarifs {
    width: 750px;
  }
  .hosters_block input {
    margin-top: 20px;
  }
  .price_column {
    min-width: 140px !important;
  }
}

@media (max-width: 800px) {
  body {
    padding: 20px;
    box-sizing: border-box;
  }
  .pagination_block {
    width: 100%;
  }
  .pagination_btn {
    width: 100%;
    margin-bottom: 0;
  }
  .mob_menu {
    margin-top: 0;
  }
  .mob_menu_line {
    width: 100%;
    display: flex;
  }
  .mob_menu nav {
    width: 100%;
  }
  .mob_filters {
    display: flex;
  }
  .filters_block {
    margin-bottom: 30px;
  }
  .filters {
    display: none;
  }
  .mob_filters {
    padding: 20px;
  }
  .input_filter {
    height: 60px;
    border-radius: 10px;
  }
  .more_filters_btn {
    height: 50px;
    font-size: 14px;
  }
  .show_result_btn {
    font-size: 14px;
  }
  .choose_filter {
    width: 100%;
    border-radius: 10px;
  }
  .popup_input_filter {
    width: 100%;
  }
  #trafic_checkbox {
    width: 15px;
    height: 15px;
  }
  .input_filter_name {
    font-size: 13px;
  }
  .active_input_filter_name {
    font-size: 13px;
  }
  .trafic_checkbox_name {
    font-size: 12px;
  }
  #more_filters_popup {
    width: 80%;
    max-height: 90%;
    overflow: auto;
  }
  .currency_choice {
    font-size: 12px;
  }
  .sort_popup_name {
    font-size: 16px;
  }
  .filter_value {
    font-size: 14px;
  }
  .popup_filters_btns {
    flex-direction: column;
  }
  .popup_filters_show_btn {
    width: 100%;
    height: 50px;
    font-size: 14px;
  }
  .main_page_text {
    display: none;
  }
  .mob_main_page_text {
    display: flex;
  }
  .main_page_content {
    width: 100%;
  }
  .main_page_title {
    font-size: 18px;
  }
  .main_page_description {
    font-size: 14px;
  }
  .server_card {
    width: 100%;
    flex-direction: column;
    align-items: baseline;
    gap: 10px;
    overflow: unset;
  }
  .mob_row {
    max-width: 100%;
    width: 100%;
    display: flex;
    gap: 40px;
  }
  .column {
    width: auto;
    height: 80px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: unset;
    text-align: unset;
  }
  .company_logo {
    margin-bottom: 10px;
  }
  .company_site_btn {
    height: 40px;
  }
  .country_column {
    min-width: auto;
  }
  .price_column {
    max-width: unset;
    width: 100% !important;
    height: auto !important;
    margin-top: 20px;
  }
  .card_comparison_btns {
    width: 100%;
  }
  .comparison_btn {
    width: 50%;
    height: 40px;
  }
  .comparison_btn img {
    width: 20px;
    height: 20px;
  }
  .card_comparison_btn {
    width: 100%;
    height: 40px;
    font-size: 14px;
  }
  .price_and_info_group {
    width: 100%;
    gap: 10px;
  }
  .card_price_btn {
    font-size: 14px;
    height: 40px;
    width: 90%;
  }
  .card_info_btn {
    width: 40px;
    height: 40px;
  }
  .card_info_btn img {
    width: 20px;
    height: 20px;
  }
  .company_logo img {
    height: 18px;
  }
  .card_characteristics {
    font-size: 12px;
  }
  .card_characteristics_value {
    font-size: 14px;
    text-align: unset;
  }
  .server_country_img {
    width: 25px;
    height: 25px;
  }
  .faq_container {
    width: 100%;
  }
  .faq_card_title {
    font-size: 14px;
  }
  .site_map_columns {
    gap: 30px;
  }
  .site_map_content {
    width: 100%;
  }
  .list_title {
    font-size: 14px;
  }
  .site_map_list a {
    font-size: 12px;
  }
  #more_info_popup {
    width: 81%;
    max-height: 90%;
    overflow: auto;
  }
  .tarif_name {
    font-size: 16px;
  }
  .more_info_popup_btns {
    flex-direction: column;
    gap: 10px;
  }
  .more_info_popup_btn {
    width: 100%;
    height: 50px;
    font-size: 14px;
  }
  .more_info_price_period {
    font-size: 12px;
  }
  .more_info_price {
    font-size: 12px;
  }
  .more_info_price_table {
    gap: 0;
  }
  .tooltip img {
    width: 25px !important;
    height: 25px !important;
  }
  .more_info_popup_key {
    font-size: 14px;
  }
  .more_info_popup_value {
    font-size: 14px;
  }
  .more_info_popup_value img {
    width: 15px !important;
    height: 15px !important;
  }
  #hosters_container {
    width: 100%;
  }
  .hoster_card {
    width: 100%;
  }
  .hoster_tarif {
    width: 95%;
    margin-left: 0;
  }
  .hoster_card a {
    display: flex;
    justify-content: center;
  }
  .hoster_card img {
    width: 90%;
  }
  .hoster_site {
    width: 95%;
    margin-left: 0;
  }
  .delete_all_comparisons_btn {
    width: 50%;
  }
  #naming_hosters_line {
    width: 100%;
  }
  .comparison_block_header {
    width: 100%;
    margin-bottom: 20px;
  }
  .comparison_block {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  .comparison_block_title {
    font-size: 18px;
  }
  .comparison_block_column {
    margin-right: 0 !important;
    gap: 0px;
  }
  .comparison_block_column_hoster_name {
    font-size: 16px;
  }
  .comparison_block_column_name {
    font-size: 14px;
  }
  .comparison_block_hoster_value {
    font-size: 14px;
  }
  .faq_title {
    font-size: 18px;
  }
  .about_block {
    margin-bottom: 0px;
  }
  .about_page_title {
    font-size: 18px;
  }
  .about_page_content {
    width: 100%;
    padding: 10px;
  }
  .faq_text p {
    font-size: 14px;
  }
  .about_page_description {
    font-size: 16px;
  }
  .about_page_text p {
    font-size: 14px;
  }
  .decor {
    width: 100%;
    margin: 0px;
    margin-top: 20px;
  }
  .form-right-decoration {
    display: none;
  }
  .form-left-decoration {
    display: none;
  }
  .form-inner {
    padding: 20px;
  }
  .about_form_description {
    font-size: 16px;
  }
  #hoster_block {
    margin-bottom: 0;
  }
  .hosters_block input {
    width: 100%;
  }
  .own_hoster_card {
    margin-top: 20px;
    width: 100%;
    flex-direction: column;
  }
  .own_hoster_data {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .own_hoster_name {
    font-size: 16px;
  }
  .own_hoster_data img {
    width: 100%;
  }
  .own_hoster_site {
    width: 100%;
  }
  .own_main_hoster_characteristics {
    width: 100%;
  }
  .own_hoster_btns {
    margin-top: 10px;
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .own_hoster_btns a {
    width: 100%;
    margin-top: 0;
  }
  #hoster_tarifs {
    width: 100%;
  }
  #reviews {
    width: 100%;
  }
  .reviews_title {
    font-size: 16px;
  }
  .reviews_name {
    font-size: 14px;
  }
  .reviews_date {
    font-size: 14px;
  }
  .title_bigger_hoster_site {
    font-size: 16px;
  }
  #biger_screen_popup {
    width: 90%;
  }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 750px) {
  .skeleton-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }
  
  .skeleton-logo {
    width: 60px;
    height: 60px;
  }
  
  .skeleton-content {
    width: 100%;
  }
  
  .skeleton-price {
    width: 100%;
  }
}
