html {
  scroll-behavior: smooth;
}

body {
  background-color: white;
  margin: 0;
}

b {
  font-weight: 500;
}

header {
  display: flex;
  position: fixed;
  justify-content: center;
  align-items: center;
  padding: 32px;
  left: 50%;
  background-color: #FAFBFD;
  transform: translateX(-50%);
  border-radius: 16px;
  border: 1px solid transparent;
  z-index: 3;
  transition: border 0.5s, box-shadow 0.35s, background-color, 0.35s;
}

.not-pinned {
  background-color: white;
  border: 1px solid #E0E1E7;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08), 0 6px 30px rgba(0, 0, 0, 0.02);
  transition: border 0.5s, box-shadow 0.35s, background-color, 0.35s;
}

header a {
  color: black;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  margin-left: 44px;
  padding: 6px 12px;
  border-radius: 8px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

header div {
  white-space: nowrap;
  z-index: 3;
}

header a:nth-child(1) {
  margin-left: 0;
}

#snackbar span, #snackbar .LinkIsOpenedInNewTab {
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.35s ease-in-out;
  animation: fadein 0.35s ease-in-out;
}

.selected-check {
  position: fixed;
  visibility: hidden;
}

.text-button:hover {
  color: rgba(0, 0, 0, 0.50);
  transition: color 0.20s;
}

.yes-no {
  color: #535479;
  text-decoration: none;
}

.text-button:active {
  color: rgba(0, 0, 0, 0.30);
  transition: color 0.075s;
}

.opacity-button:hover {
  opacity: 0.60;
  transition: opacity 0.20s;
  cursor: pointer;
}

.opacity-button:active {
  opacity: 0.45;
  transition: opacity 0.075s;
}

.header-transition-button, .text-button {
  cursor: pointer;
}

.header-transition-button:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transition: background-color 0.20s;
}

.header-transition-button:active {
  background-color: rgba(0, 0, 0, 0.05);
  transition: background-color 0.075s;
}

.header-download-button {
  font-weight: 500;
  padding: 10px 32px;
  font-size: 15px;
  border-radius: 100px;
  background: linear-gradient(90deg, #0080EF 0%, #00D6DA 100%);
  cursor: pointer;
  color: white;
  text-decoration: none;
  transition: opacity 0.125s;
}

.title-block .header-download-button {
  align-items: center;
  display: flex;
  text-align: center;
}

.header-download-button {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.extended-margins-button {
  padding: 14px 32px;
}

.header-download-button:hover {
  opacity: 0.65;
  transition: opacity 0.20s;
}

.header-download-button:active {
  opacity: 0.45;
  transition: opacity 0.075s;
}

header img {
  margin-right: 280px;
}

header div img {
  width: 24px;
  height: 24px;
  background-color: transparent;
  margin: 0;
}

.upper-block-mods {
  padding-top: 24px;
  background-color: transparent;
}

.mods-header {
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(16px);
  border: none;
}

.language-selection {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 150px;
  padding: 4px 8px;
  border-radius: 8px;
  cursor: pointer;
}

.for-developers {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 8px;
  border-radius: 8px;
  cursor: pointer;
  margin-left: 44px;
}

.language-selection img {
  margin-right: 4px;
}

.language-selection span {
  padding-right: 4px;
}

.dropdown {
  position: relative;
  display: flex;
}

.dropdown span {
  line-height: 24px;
}

.dropdown-content {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 275ms ease-in-out;
  position: absolute;
  min-width: 130px;
  /* max-height: 440px; */
  overflow-y: auto;
  padding: 8px 0;
  z-index: 1;
  background: #FFFFFF;
  border: 1px solid #E0E1E7;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08), 0 6px 30px rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  font-weight: 400;
  font-size: 15px;
  cursor: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  top: 20px;
  right: 0;
  margin-top: 0;
}

.dropdown-content a:hover {
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.2s;
  border-radius: 0;
}

.dropdown-content a:active {
  background: rgba(0, 0, 0, 0.05);
  transition: background 0.1s;
  border-radius: 0;
}

.dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1.0;
}

.dropdown .dropdown-content, .dropdown:hover .dropdown-content {
  margin-top: 0;
}

.dropdown:hover .developers {
  min-width: 450px;
}

.dropdown .developers {
  grid-template-columns: repeat(1, 1fr);
}

.item {
  margin: 0;
  padding: 10px 0;
  cursor: pointer;
  min-width: 130px;
  display: block;
  text-align: center;
}

.counter {
  background: linear-gradient(90deg, rgba(0, 128, 239, 0.12) 0%, rgba(0, 214, 218, 0.12) 100%);
  border-radius: 4px;
  display: inline-block;
  padding: 4px 8px;
}

.counter p {
  margin: 0;
  font-weight: 400;
  display: inline-block;
}

.counter span:nth-child(2), .counter span:nth-child(3) {
  font-weight: 500;
}

.counter span:nth-child(4) {
  font-weight: 400;
}

.main-block {
  display: flex;
  justify-content: right;
  overflow: hidden;
}

.avatar {
  width: 40px;
  height: 40px;
}

.main-block-mods-page {
  display: flex;
  justify-content: center;
  width: 100%;
}

.main-block-content {
  width: 1110px;
  display: flex;
  justify-content: left;
}

.main-info h4 {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -2px;
  color: black;
  display: inline-block;
  margin: 0;
}

.gradient-title {
  margin: 24px 0 24px 0;
}

.main-info h1, .main-info h3, .main-info p:nth-child(2) {
  font-weight: 400;
  color: #535479;
  font-size: 16px;
  display: inline;
}

.opacity-card {
  color: red;
  opacity: 0.50;
}

.main-info .header-download-button {
  margin-top: 36px;
  display: inline-block;
}

.main-info .architecture {
  font-weight: 400;
  font-size: 14px;
  color: #535479;
}

.main-info .architecture-block {
  margin-top: 16px;
}

.gradient-span {
  background: linear-gradient(90deg, #00D6DA 0%, #0080EF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -2px;
  color: black;
  display: inline;
}

.images-preview {
  width: 674px;
  height: 538px;
  display: inline-block;
  transform: rotate(14deg);
}

.images-preview .blue {
  position: absolute;
  width: 816px;
  height: 456px;
  top: 250px;

  background: linear-gradient(90deg, #0080EF 0%, #00D6DA 100%);
  border-radius: 8px;
  transform: rotate(-6deg);
}

.images-preview .purple {
  position: absolute;
  width: 816px;
  height: 456px;
  top: 254px;

  background: linear-gradient(90deg, #7F27C7 0%, #F90284 100%);
  border-radius: 8px;
  transform: rotate(0deg);
}

.images-preview .image {
  position: absolute;
  width: 816px;
  height: 456px;
  top: 254px;

  color: white;
  background: linear-gradient(90deg, rgb(40, 40, 40) 0%, rgb(20, 40, 60) 100%);
  border-radius: 8px;
  transform: rotate(6deg);
}

.games {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.supported-games, .latest-updates {
  font-size: 40px;
  color: black;
  margin: 0;
  font-weight: 700;
}

.game-title {
  margin-right: 6px;
}

.mod-cards, .mod-cards-main {
  margin-top: 40px;
  display: grid;
  column-gap: 40px;
  row-gap: 30px;
}

.mod-cards-main {
  margin-top: 32px;
}

.config-cards {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  margin-left: 20px;
  margin-right: 20px;
}

.config-card {
  padding: 32px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.config-avatar-title-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.config-avatar-title-block .review-votes {
  margin-left: auto;
}

.title-date-config p, .config-description p, .downloads-images-part p, .complain-or-add-review-cfg p {
  margin: 0;
}

.complain-or-add-review-cfg p {
  font-size: 12px;
  font-weight: 600;
}

.config-date {
  opacity: 0.75;
  font-size: 14px;
}

.config-description {
  margin-top: 20px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  width: calc(100% - (24px * 2));
}

.downloads-images-part, .complain-or-add-review-cfg {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}

.complain-or-add-review-cfg {
  gap: 8px;
}

.cfg-download-button {
  margin-left: auto;
}

.downloads-images-part .downloads-counter {
  margin-left: 8px;
  font-size: 18px;
}

.cfg-download-icon {
  width: 24px;
  height: 24px;
}

.title-date-config {
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.games .card {
  background: #F7F9FC;
  border-radius: 4px;
  width: 100px;
  display: inline-block;
  transform: scale(1.0);
  cursor: pointer;
  text-decoration: none;
  transition: transform 125ms;
  white-space: nowrap;
  overflow: hidden;
}

.mod-card {
  background: #F7F9FC;
  border-radius: 4px;
  width: 344px;
  min-height: 200px;
  display: inline-block;
  transform: scale(1.0);
  cursor: pointer;
  text-decoration: none;
  transition: transform 125ms;
  padding: 4px;
  border: 1px solid #E0E1E7;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.06), 0 6px 30px rgba(0, 0, 0, 0.02);
  align-self: flex-start;
}

.mod-description-main {
  width: 100%;
}

.games .card:active, .mod-card:active {
  background: rgba(0, 0, 0, 0.05);
  transition: background 350ms;
}

.games .card:hover, .mod-card:hover {
  transform: scale(1.035);
  transition: transform 125ms;
}

.games .card img {
  width: 100px;
  height: 160px;
}

.mod-card .img-container img {
  width: 336px;
  height: 188px;
  object-fit: fill;
  border-radius: 4px;
  transform: scale(2.0);
}

.mod-card .img-container {
  border-radius: 4px;
  width: 100%;
  height: 188px;
  overflow: hidden;
}

.mod-card .ad-block-image {
  width: 344px;
  height: 344px;
}

.games .card h2, .mod-card h2, .mod-card .cropped-card-title {
  font-weight: 500;
  font-size: 16px;
  margin: 10px 0 0 16px;
  line-height: 24px;
  color: black;
  overflow: hidden;
  width: 80%;
  text-overflow: ellipsis;
}

.games .card h2 a {
  text-decoration: none;
  color: black;
}

.mod-card h2, .mod-card .cropped-card-title {
  display: inline;
  margin: 6px 0 0 8px;
}

.mod-card .cropped-card-title {
  display: inline;
  margin: 6px 0 4px 8px;
}

.description {
  display: flex;
  align-items: center;
}

.background {
  position: absolute;
  top: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56) 0%, #FFFFFF 100%), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%), url(background.webp) no-repeat;
  height: 100vh;
  z-index: -1;
  opacity: 0.50;
  background-size: cover;
}

.games .card p, .mod-card p {
  font-weight: 400;
  font-size: 14px;
  color: #535479;
  line-height: 20px;
  display: inline-block;
  margin: 0 0 16px 16px;
}

.mod-card .mod-description, .mod-card .outdated, .mod-card .working-and-updated {
  margin: 4px 0 4px 8px;
  width: 96%;
  display: block;
  overflow-wrap: break-word;
}

.mod-card .mod-description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.mod-description-main .mod-description {
  -webkit-line-clamp: inherit;
  line-clamp: inherit;
  display: inherit;
}

.mod-card .outdated, .mod-card .working-and-updated {
  display: inline-block;
  margin-bottom: 10px;
}

.ad-warning {
  padding: 12px 20px;
  background: rgba(255, 165, 0, 0.20);
  border-radius: 8px;
  margin-bottom: 20px;
}

.ad-warning p, .ad-warning a {
  color: orangered;
}

.left-block .mod-card {
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

.left-block .mod-card:hover, .left-block .mod-card:active {
  transform: scale(1.0);
  cursor: default;
}

.mod-card .outdated p, .rate-info-block .outdated, .rate-info-block .working-and-updated, .mod-card .working-and-updated p {
  color: black;
  padding: 2px 6px;
  font-weight: 500;
  display: inline;
  margin: 0;
  background: linear-gradient(90deg, rgba(254, 93, 72, 0.12) 0%, rgba(249, 194, 42, 0.12) 100%);
  border-radius: 4px;
  font-size: 13px;
}

.mod-card .working-and-updated .BeforeUpdateDate {
  margin-right: 8px;
}

.mod-card .working-and-updated p {
  background: linear-gradient(90deg, rgba(0, 128, 0, 0.12) 0%, rgba(0, 100, 0, 0.12) 100%);
}

.rate-info-block .outdated, .rate-info-block .working-and-updated {
  display: inline-block;
  margin: 0 0 0 20px;
  border: 1px solid #E0E1E7;
}

.mod-description-en, .mod-description-ua, .mod-description-ru, .game-description-ru, .game-description-en, .game-description-ua, .mod_custom_message_ru, .mod_custom_message_ua, .mod_custom_message_en {
  display: none;
  visibility: hidden;
}

.img-container {
  color: black;
  text-decoration: none;
  font-size: 12px;
  text-align: center;
}

.game-seo {
  background: #F7F9FC;
  border: 1px solid #E0E1E7;
  border-radius: 8px;
  padding: 32px;
}

.game-description-seo, .task-description-seo {
  background: #F7F9FC;
  border: 1px solid #E0E1E7;
  border-radius: 8px;
  padding: 16px 20px;
}

.game-description-seo {
  display: flex;
  align-items: center;
}

.game-description-seo p {
  padding: 0;
  margin: 0;
  color: #525378;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.FullExtended {
  padding: 0;
  color: #525378;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  margin: 8px 0 0 0;
}

.UnlockLink {
  text-decoration: underline;
  color: #525378;
}

.game-description-seo img {
  width: 100px;
  height: 70px;
  margin-right: 12px;
  border-radius: 4px;
}

.game-description-seo .folder-image {
  width: 100px;
  height: 100px;
}

.arrow-right, .gear, .selected-check {
  filter: invert(100%);
  margin-left: 8px;
}

.task-description-seo, .task-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: black;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.task-description-seo {
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, #FFFFFF 100%), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%), url(Warhammer.jpg) no-repeat;
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
}

.open-task-button-text {
  max-width: 580px;
}

.not-allowed-button:hover {
  cursor: not-allowed;
}

.complete {
  margin: 0 0 10px;
  text-align: center;
}

.more-cubic-button {
  border-radius: 6px;
  width: 100%;
  padding: 10px 10px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-ring-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.seo-item {
  background: #FFFFFF;
  border: 1px solid #E0E1E7;
  border-radius: 8px;
  padding: 16px 16px;
  margin-top: 12px;
}

.seo-item:nth-child(1) {
  margin: 0;
}

.seo-item h3, .seo-item h1 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.seo-item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535479;
  margin: 4px 0 0 0;
}

.seo-item .WeDoNotLikeAdsAsAll {
  margin: 0;
  color: white;
}

.adsnolikewrapper {
  background: #DAA06D;
}

.title {
  display: flex;
  align-items: center;
}

.back-button {
  margin-right: 10px;
  border-radius: 8px;
  color: black;
}

.back-button img {
  padding-top: 4px;
  padding-left: 8px;
  padding-right: 8px;
}

.mod-card h2,  .mod-card .cropped-card-title {
  font-size: 17px;
  text-decoration: none;
  margin: 6px 0 0 8px;
}

.mod-card h2 a,  .mod-card .cropped-card-title a {
  text-decoration: none;
  color: black;
}

.mod-cards-main .mod-card a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  color: black;
}

.mod-card .mod-rate {
  display: flex;
  margin: 6px 8px 0 8px;
  justify-content: center;
  align-items: center;
}

.mod-card .mod-rate p, .rate-number {
  color: black;
  font-weight: 500;
  margin: 0 0 0 6px;
  background: linear-gradient(90deg, rgba(254, 93, 72, 0.12) 0%, rgba(249, 194, 42, 0.12) 100%);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 15px;
}

.games .card .mods-amount {
  margin: 0;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #F3F5FB;
  margin-top: 80px;
  margin-bottom: 70px;
}

.darker-divider {
  width: 100%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.075);
  margin-top: 30px;
  margin-bottom: 20px;
}


.black-button {
  font-weight: 500;
  padding: 10px 32px;
  font-size: 15px;
  border-radius: 100px;
  background: black;
  cursor: pointer;
  color: white;
  text-decoration: none;
  transition: background 0.125s;
  display: flex;
  align-items: center;
}

.task-description-seo {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.smaller-black-button {
  padding: 0 32px;
  border-radius: 8px;
  opacity: 0.50;
}

.smaller-black-button2 {
  padding: 0 12px;
  border-radius: 8px;
  opacity: 1.0;
  display: flex;
  align-content: center;
  text-align: center;
  justify-content: center;
}

.spare-links {
  width: 100%;
  /* replaced with visible */
  visibility: hidden;
  /* replaced with grid */
  display: none;
}

.LinksDoNotWorkTitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 4px;
  color: #ED0A34;
}

.LinksDoNotWorkDescription {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 8px;
  color: #535479
}

.spare-links-flex-box {
  margin-top: 12px;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  align-content: center;
  text-align: center;
  justify-content: center;
  display: grid;
}

.black-button:hover {
  background: rgba(0, 0, 0, 0.7);
}

.black-button:active {
  background: rgba(0, 0, 0, 0.55);
}

.downnload-mod-button {
  color:white;
  margin: 0;
  padding: 14px 20px;
  border-radius: 8px;
  display: flex;
  align-content: center;
  height: min-content;
  width: min-content;
  justify-content: center;
}

.second-mod-download-button {
  width: auto;
}

.language-suggestion p {
  margin: 0 0 20px 0;
  color: black;
  font-size: 24px;
}

.Yes-No-Buttons-Block {
  display: flex;
}

.No {
  margin-left: 12px;
}

.mascot {
  width: 160px;
  height: 160px;
  display: inline-block;
  margin-left: auto;
}

.mascot404 {
  width: 200px;
  height: 200px;
  display: inline-block;
}

.mascot404 img {
  width: 100%;
  height: 100%;
  transform: scale(-1, 1);
}

.mascot img {
  width: 100%;
  height: 100%;
  transform: scale(-1, 1);
}

.lds-ring, .lds-ring-2 {
  display: inline-block;
  position: fixed;
  width: 30px;
  height: 30px;
  visibility: hidden;
}

.toFadeInAndOut {
  animation: fadeInOut 350ms ease-in-out forwards;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.lds-ring {
  margin-left: 8px;
}

.lds-ring-2 {
  z-index: 1;
  position: absolute;
  margin: 0;
  top: 48%;
  left: 48%;
  padding: 0;
  transform: translate(-48%, -48%);
}

.lds-ring div, .lds-ring-2 div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  border: 5px solid;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: white transparent transparent transparent;
}

.lds-ring-2 div {
  border: 8px solid;
  border-color: black transparent transparent transparent;
  width: 64px;
  height: 64px;
}

.lds-ring .ring-counter {
  display: none;
  justify-content: center;
  align-items: center;
}

.lds-ring .ring-counter p {
  width: 0;
  display: inline;
}

.lds-ring div:nth-child(1), .lds-ring-2 div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2), .lds-ring-2 div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3), .lds-ring-2 div:nth-child(3) {
  animation-delay: -0.15s;
}

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

@keyframes lds-ring-2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

footer .h5, .contacts .h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: black;
  margin: 0 0 20px 0;
}

.contacts p, .contacts a {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  text-decoration: none;
  color: #535479;
  display: block;
  font-style: normal;
}

.copyright {
  background: #F7F9FC;
  border-radius: 8px;
  margin-top: 40px;
  padding: 24px;
  display: flex;
}

.copyright p, .copyright a {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #535479;
  margin: 0;
}

.copyright a {
  margin-left: 4px;
  text-decoration: none;
}

.circle {
  background: #E0E1E7;
  height: 24px;
  width: 24px;
  border-radius: 30px;
  margin-right: 32px;
}

.circle:nth-last-child(1) {
  margin-right: 0;
}

.spare-complete-task-button {
  margin-top: 12px;
  display: none;
  visibility: hidden;
  opacity: 1.0;
  align-items: center;
}

.main-advert-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 90px;
  min-height: 90px;
  margin-top: 40px;
}

.mod-advert-block-wrapper {
  overflow: hidden;
  width: 440px;
  min-height: 300px;
  display: grid;
  align-content: center;
  text-align: center;
  justify-content: center;
  background: #E0E1E7;
  border-radius: 8px;
}

.mod-advert-block-wrapper .ad-block-image {
  width: 440px;
  height: 440px;
}

.main-advert-block {
  overflow: hidden;
  max-height: 90px;
  min-height: 90px;
  align-content: center;
  text-align: center;
  justify-content: center;
  background: #F7F9FC;
  display: grid;
}

.custom-ad-block {
  z-index: 1;
}

.main-advert-wrapper-mod-page {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 250px;
  margin-top: 20px;
}

.main-advert-block-mod-page {
  overflow: hidden;
  min-width: 970px;
  min-height: 250px;
  align-content: center;
  text-align: center;
  justify-content: center;
  background: #F7F9FC;
}

.title-block {
  display: flex;
}

.title-block a {
  margin-left: auto;
}

.title-block .supported-games, .title-block .latest-updates {
  line-height: 48px;
}

.latest-updates {
  margin-top: 40px;
}

.game-icon-wrapper {
  padding: 4px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 4px;
  margin-top: 8px;
}

.mod-card-stats {
  margin-left: 8px;
  margin-right: 8px;
  margin-bottom: 4px;
  display: flex;
}

.small-divider {
  height: 1px;
  background: grey;
  opacity: 0.25;
  margin: 0 8px 8px 8px;
}

.mod-card-stats-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mod-card-stats-block p {
  margin: 2px 0 0 2px;
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.title-block .back-button {
  line-height: 20px;
}

.basic-info-block {
  background: #000000;
  border-radius: 8px;
  padding: 32px;
  margin-top: 20px;
  display: flex;
  column-gap: 30px;
}

.rate-info-block, .stars-block {
  display: flex;
  align-items: center;
}

.stars-block {
  margin-top: 0;
}

.total-reviews {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #535479;
  margin: 0 0 0 20px;
}

.total-reviews-amount {
  margin: 0;
  color: black;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.rate-info-block img {
  margin-right: 4px;
}

.type {
  display: inline-block;
}

.basic-info-single-data h6, .basic-info-single-data p {
  margin: 0;
}

.basic-info-single-data h6 {
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  text-transform: uppercase;
  color: #7A7B85;
}

.basic-info-block p, .basic-info-block p a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  margin-top: 10px;
}

.main-content {
  display: flex;
  width: 100%;
  margin-top: 30px;
}

.left-block h5 {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: black;
  margin: 0;
}

.complete-task-button {
  transition: opacity 0.25s ease-in;
}

.container-timer {
  position: relative;
  filter: contrast(20);
  background-color: black;
  overflow: hidden;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: none;
}

.container-timer span {
  color: rgb(230,255,230);
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  transition: all 1.5s ease;
  opacity: 0;
  filter: blur(0.6rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  &:nth-child(1) {
    animation: letteranim 11s infinite ease;
    animation-delay: 0s;
  }
  &:nth-child(2) {
    animation: letteranim 11s infinite ease;
    animation-delay: 1s;
  }
  &:nth-child(3) {
    animation: letteranim 11s infinite ease;
    animation-delay: 2s;
  }
  &:nth-child(4) {
    animation: letteranim 11s infinite ease;
    animation-delay: 3s;
  }
  &:nth-child(5) {
    animation: letteranim 11s infinite ease;
    animation-delay: 4s;
  }
  &:nth-child(6) {
    animation: letteranim 11s infinite ease;
    animation-delay: 5s;
  }
  &:nth-child(7) {
    animation: letteranim 11s infinite ease;
    animation-delay: 6s;
  }
  &:nth-child(8) {
    animation: letteranim 11s infinite ease;
    animation-delay: 7s;
  }
  &:nth-child(9) {
    animation: letteranim 11s infinite ease;
    animation-delay: 8s;
  }
  &:nth-child(10) {
    animation: letteranim 11s infinite ease;
    animation-delay: 9s;
  }
  &:nth-child(11) {
    animation: letteranim 11s infinite ease;
    animation-delay: 10s;
  }
}

@keyframes letteranim {
  0% {
    opacity: 0;
    filter: blur(0.6rem);
  }
  5% {
    opacity: 1;
    filter: blur(0.2rem);
  }
  10% {
    opacity: 1;
    filter: blur(0.2rem);
  }
  20% {
    opacity: 0;
    filter: blur(0.6rem);
  }
  100% {
    opacity: 0;
    filter: blur(0.6rem);
  }
}

.task-wrapper {
  position: relative;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 0;
  pointer-events: none;
  cursor: default;
}

.comments h3, .SimillarMods {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: #000000;
}

.left-block p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #535479;
  margin: 10px 0 0 0;
}

.right-block {
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: end;
  width: 440px;
}

.feature-card {
  display: flex;
  align-content: center;
}

.feature-card p {
  font-weight: 400;
  font-size: 16px;
  line-height: 8px;
  margin-left: 8px;
}

.feature-card img {
  width: 24px;
  height: 24px;
}

.configs-data {
  margin-top: 20px;
}

.launch-guide {
  margin-bottom: 20px;
}

.CfgPath, .cfg-path {
  color: black;
}

.screenshots {
  width: 440px;
  display: flex;
  align-items: end;
  justify-content: end;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 16px;
  margin-top: 20px;
}

.screenshots img, .cfg-screenshot {
  border-radius: 8px;
  width: 440px;
  background-color: #E0E1E7;
  transition: filter 150ms;
  border: none;
  text-indent: -10000px;
  filter: brightness(90%);
  cursor: zoom-in;
}

.cfg-screenshot {
  height: 240px;
}

.screenshot[alt]:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-weight: 300;
  line-height: 2;
  text-align: center;
  content: attr(alt);
}

.screenshots img .opened, .cfg-screenshot img .opened {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
}

.screenshots img:hover, .cfg-screenshot:hover {
  filter: brightness(50%);
}

.screenshots img:active, .cfg-screenshot:hover {
  filter: brightness(25%);
}

.screenshot-viewer, .language-suggestion-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  opacity: 0.0;
  transform: scale(0.95);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
  transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-suggestion-wrapper {
  box-shadow: rgba(17, 17, 26, 0.1) 0 4px 16px, rgba(17, 17, 26, 0.1) 0 8px 24px, rgba(17, 17, 26, 0.1) 0 16px 56px;
}

.text-wrapper-download-button {
  text-align: center;
}

.text-wrapper-download-button span {
  display: inline;
}

.mod-download-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  border-radius: 12px;
  padding: 10px 20px;
}

#mod-title-in-button, #mod-title-in-button-2 {
  display: block;
}

.screenshot-viewer {
  visibility: hidden;
  top: 50%;
  left: 50%;
  padding: 10px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%) scale(1.0);
  background-color: rgba(0, 0, 0, 0.75);
  height: 100%;
  backdrop-filter: blur(16px);
  cursor: zoom-out;
}

.language-suggestion {
  background-color: #F7F9FC;
  border: 1px solid #E0E1E7;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08), 0 6px 30px rgba(0, 0, 0, 0.02);
  border-radius: 0;
  bottom: 0;
  padding: 30px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
  transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-button {
  border: 2px solid #E0E1E7;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shown {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.visible {
  opacity: 1 !important;
}

.screenshot-viewer, .language-suggestion-wrapper {
  pointer-events: none;
}

.visible, .shown {
  pointer-events: auto;
  visibility: visible;
}

.screenshot-viewer-object {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1280px;
  height: 720px;
  border-radius: 16px;
  overflow: hidden;
}

.screenshot-object {
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100%;
  border-radius: 16px;
}

.review {
  padding: 32px;
  background: #F7F9FC;
  border: 1px solid #E0E1E7;
  border-radius: 8px;
  width: 100%;
  margin-top: 30px;
  min-height: 40px;
}

p.empty-advert {
  position: absolute;
  margin-top: 90px;
  left: 0;
  right: 0;
  text-align: center;
  margin-left: 0;
  z-index: -1;
  color: #535479;
}

p.empty-advert-wide {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  margin: 35px 0 0 0;
  color: #535479;
}

.review img {
  border-radius: 100px;
  width: 48px;
  height: 48px;
  display: inline-block;
}

.review p {
  display: inline-block;
}

.upper-review-data {
  display: flex;
  align-items: center;
}

.upper-review-data p {
  font-weight: 400;
  font-size: 16px;
  line-height: 42px;
  color: #535479;
  margin: 0 0 0 20px;
}

.upper-review-data .nickname, .upper-review-data .review-date {
  margin: 0 0 0 10px;
  display: block;
  line-height: 24px;
}

.upper-review-data .nickname {
  color: black;
  max-width: 100px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.upper-review-data .review-date {
  font-size: 14px;
  line-height: 20px;
}

.review-votes {
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.review-translation {
  margin-left: auto;
  margin-bottom: 6px;
}

.review-votes img {
  width: 24px;
  height: 24px;
}

.review-votes img:nth-child(3) {
  transform: rotate(180deg);
}

.review-votes p {
  margin: 2px 8px 0 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: black;
}

.review-votes .black {
  color: black;
}

.review-votes .red {
  color: red;
}

.review-data {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #535479;
  margin: 20px 0 0 0;
  max-width: 100%;
  overflow: hidden;
}

.upper-review-data .YourReview {
  color: black;
}

.review-translation {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.review-translation img {
  width: 28px;
  height: 28px;
  border-radius: 0;
}

.review-translation p {
  margin: 0;
  color: #535479;
}

.hidden-element, .contacts .hidden-element {
  display: none;
  visibility: hidden;
}

.block404 {
  top: 50%;
  left: 50%;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(1, 1fr);
}

.block404 p {
  margin-top: 30px;
  width: 300px;
  text-align: center;
  color: #535479;
}

.block404 a {
  margin-top: 10px;
}

.download-info {
  display: flex;
  align-items: center;
}

.download-info img {
  width: 80px;
  height: 80px;
  margin-right: 12px;
}

.pagination-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
  grid-gap: 10px;
  position: relative;
  max-width: 800px;
  align-items: center;
  justify-items: center;
}

.pagination-block-wrapper {
  justify-content: center;
  display: flex;
}

.pagination-block a, .pagination-block p {
  display: flex;
  background: rgba(0, 0, 0, 0.1);
  font-weight: 400;
  font-size: 18px;
  color: black;
  text-decoration: none;
  padding: 10px;
  border-radius: 4px;
  transition: background 0.20s;
  width: 20px;
  justify-content: center;
  margin: 0;
}

.pagination-block a:active {
  background: rgba(0, 0, 0, 0.1);
}

.pagination-block a:hover {
  background: rgba(0, 0, 0, 0.2);
}

.pagination-block .active {
  background: linear-gradient(90deg, #0080EF 0%, #00D6DA 100%);
  color: white;
  transition: opacity 0.125s;
  opacity: 1.0;
  cursor: not-allowed;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.pagination-block .active:active {
  background: linear-gradient(90deg, #0080EF 0%, #00D6DA 100%);
}

.pagination-block .active:hover {
  background: linear-gradient(90deg, #0080EF 0%, #00D6DA 100%);
}

.games .cards {
  margin-top: 40px;
  display: grid;
  row-gap: 30px;
}

.cfg-screenshot {
  width: 64px;
  height: 32px;
  border-radius: 8px;
  margin-left: 12px;
}

.cfg-screenshot:last-of-type {
  margin-right: 20px;
}

@media only screen and (max-width: 500px) {
  .main-info {
    width: 94%;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
  }

  .cfg-download-button {
    margin-left: 24px;
    margin-right: 24px;
    justify-content: center;
  }

  p.empty-advert-wide {
    margin: 0;
    display: none;
  }

  .mod-download-button {
    padding: 10px 20px;
  }

  .second-mod-download-button {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .ad-warning {
    margin-left: 20px;
    margin-right: 20px
  }

  .in-app-example {
    width: 100%;
    display: flex;
  }

  .in-app-example img {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }

  .monthly-geo-users {
    display: flex;
    flex-direction: column;
  }

  .monthly-geo-users img {
    width: 100%;
  }

  .monthly-geo {
    margin: 10px 0 0;
  }

  /* The snackbar - position it at the bottom and in the middle of the screen */
  #snackbar {
    visibility: hidden;
    width: 80%;
    background-color: rgba(230, 115, 0, 1.0);
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    bottom: 36px;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;

    left: 50%;
    transform: translateX(-50%);
  }

  /* Animations to fade the snackbar in and out */
  @-webkit-keyframes fadein {
    from {
      bottom: 36px;
      opacity: 0;
    }
    to {
      bottom: 36px;
      opacity: 1;
    }
  }

  @keyframes fadein {
    from {
      bottom: 36px;
      opacity: 0;
    }
    to {
      bottom: 36px;
      opacity: 1;
    }
  }

  .games-inside-wrapper {
    width: 100%;
  }

  .games .cards {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    column-gap: 0;
  }

  .mod-cards, .mod-cards-main {
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }

  .main-advert-block {
    max-width: 95%;
    min-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .main-advert-wrapper {
    max-width: 100%;
    min-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }

  .contacts {
    display: grid;
    justify-items: center;
  }

  .contacts address:nth-child(2) {
    width: 240px;
    margin-left: 0;
    text-decoration: none;
    font-style: normal;
    text-align: center;
  }

  .contacts address:nth-child(3) {
    width: 240px;
    margin-left: 0;
    font-style: normal;
    text-align: center;
  }

  footer {
    display: grid;
    justify-content: center;
  }

  .mascot {
    margin-right: auto;
    margin-left: auto;
    margin-top: 40px;
  }

  header .AdsOnWebsiteOrClient, header .GamesTranslation, header .ContactsTranslation,
  header .for-developers, header .Agreement, header .Download {
    display: none;
  }

  header img {
    margin-right: 0;
  }

  .language-selection {
    margin-left: 32px;
  }

  .main-block {
    margin-top: 0;
  }

  .main-info {
    margin-top: 130px;
  }

  .main-block {
    flex-direction: column;
  }

  .main-info .architecture {
    width: 100%;
  }

  .supported-games, .latest-updates, .PopularReviews, .SimillarMods {
    text-align: center;
  }

  .game-seo, .game-description-seo, .task-description-seo {
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  }

  .game-description-seo, .task-description-seo {
    width: 80%;
  }

  .divider {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  footer .h5, footer a, .contacts .h5 {
    text-align: center;
  }

  .ForDevelopersTranslation {
    margin-top: 16px;
  }

  .contacts .Company {
    margin-top: 30px;
  }

  .copyright div:nth-last-child(1) {
    margin-left: 0;
    display: none;
  }

  .copyright {
    margin-bottom: 0;
  }

  .CopyrightTranslation {
    text-align: center;
  }

  .main-block-mods-page {
    margin-top: 100px;
  }

  .main-block-mods-page-advanced-padding {
    margin-top: 150px;
  }

  .mod-page-ad-wrapper {
    margin-top: 40px;
  }

  .title {
    margin-left: 20px;
    margin-right: 20px;
  }

  .images-preview .purple, .images-preview .image, .images-preview .blue {
    top: 120px;
  }

  .upper-block {
    padding-top: 24px;
    background-color: #FAFBFD;
  }

  .upper-block-mods {
    padding-top: 24px;
  }

  .title-block {
    flex-direction: column;
    align-items: center;
  }

  .title-block a {
    margin-right: auto;
  }

  .title-block .back-button {
    margin-right: 10px;
  }

  .review {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .download-info, .rate-info-block {
    flex-direction: column;
  }

  .HowToDownload, .configs-data p, .LaunchGuideDefault {
    text-align: center;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
  }

  .feature-card, .configs-data .CanIInstallConfigs {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .download-info img {
    margin-right: 0;
  }

  .total-reviews, .rate-info-block .working-and-updated {
    margin: 0 0 0 0;
  }

  .rate-info-block, .download-info {
    margin-top: 24px;
  }

  .feature-card p {
    line-height: 20px;
  }

  .main-content {
    flex-direction: column;
  }

  .basic-info-block {
    flex-direction: column;
    align-items: center;
    width: 74%;
    margin-left: auto;
    margin-right: auto;
    row-gap: 18px;
  }

  .upper-review-data p {
    line-height: 28px;
  }

  .comments-divider {
    display: none;
  }

  .basic-info-single-data h6, .basic-info-block p {
    text-align: center;
  }

  .basic-info-block p {
    margin-top: 0;
  }

  .left-block, .right-block {
    width: 100%;
  }

  .screenshots img, .mod-advert-block-wrapper, .screenshots {
    width: 94%;
    margin-right: auto;
    margin-left: auto;
  }

  .left-block h5 {
    text-align: center;
  }

  .left-block .mod-card p {
    text-align: center;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }

  .title-block h1 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word
  }

  .title-description {
    width: 94%;
  }

  .left-block .LaunchGuideDefault {
    margin: 10px auto 0 auto;
  }

  .mod-advert-block-wrapper ins {
    min-height: 240px;
    min-width: 340px;
  }

  .main-advert-wrapper ins {
    max-height: 90px;
    min-width: 400px;
  }

  .pagination-block {
    max-width: 90%;
  }

  .title-block .header-download-button {
    margin-left: auto;
  }

  .second-mod-advert-block-wrapper {
    margin-top: 20px;
    width: 88%;
  }
}

@media only screen and (min-width: 500px) {
  .main-info {
    width: 740px;
    margin-top: 100px;
    margin-right: 96px;
    display: inline-block;
  }

  .ad-warning {
    margin-left: 0;
    margin-right: 0;
  }

  .monthly-geo-users img {
    width: 48%;
  }

  .monthly-geo {
    margin: 0 0 0 10px;
  }

  .games-inside-wrapper {
    width: 1100px;
  }

  .games .cards {
    grid-template-columns: repeat(8, 1fr);
    justify-items: center;
    column-gap: 40px;
  }

  .mod-cards, .mod-cards-main {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  }

  .main-advert-block {
    max-width: 970px;
    min-width: 970px;
    margin-left: 0;
    margin-right: 0;
  }

  .main-advert-wrapper {
    width: 100%;
  }

  .contacts {
    display: flex;
    justify-items: center;
  }

  .contacts address:nth-child(2) {
    width: 144px;
    margin-left: 64px;
    text-decoration: none;
    font-style: normal;
    text-align: left;
  }

  .contacts address:nth-child(3) {
    width: 244px;
    margin-left: 64px;
    font-style: normal;
    text-align: left;
  }

  footer .h5, footer a, .contacts .h5 {
    text-align: left;
  }

  footer {
    display: flex;
  }

  header .AdsOnWebsiteOrClient, header .GamesTranslation, header .Agreement, header .Download {
    display: inline;
  }

  .ForDevelopersTranslation, .Company {
    margin-top: 0;
  }

  .main-block, .main-info {
    margin-top: 100px;
  }

  .main-info .architecture {
    width: 700px;
  }

  .supported-games, .latest-updates, .PopularReviews, .SimillarMods {
    text-align: left;
  }

  .game-seo, .task-description-seo {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .task-description-seo {
    margin-left: auto;
    margin-right: auto;
    width: 660px;

    transition: height 0.35s ease;
    overflow: hidden;
  }

  .divider {
    width: 100%;
  }

  .mascot {
    margin-right: 0;
    margin-top: 0;
    margin-left: auto;
  }

  .copyright div:nth-last-child(1) {
    margin-left: auto;
    display: flex;
  }

  .copyright {
    margin-bottom: 64px;
  }

  .CopyrightTranslation {
    text-align: left;
  }

  .main-block-mods-page {
    margin-top: 150px;
  }

  .main-block-mods-page .games-inside-wrapper .main-advert-wrapper {
    margin-top: 40px;
  }

  .title {
    margin: 0;
  }

  .main-block {
    flex-direction: row;
  }

  .images-preview .purple, .images-preview .image, .images-preview .blue {
    top: 250px;
  }

  .upper-block {
    padding-top: 24px;
    background-color: #FAFBFD;
  }

  .upper-block-mods {
    padding-top: 24px;
  }

  .title-block {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .title-block a {
    margin-right: 0;
  }

  .review {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .download-info, .rate-info-block {
    flex-direction: row;
  }

  .HowToDownload, .configs-data p, .LaunchGuideDefault, .configs-data .CanIInstallConfigs {
    text-align: left;
    width: 100%;
  }

  .download-info img {
    margin-right: 12px;
  }

  .total-reviews, .rate-info-block .working-and-updated {
    margin: 0 0 0 20px;
  }

  .download-info {
    margin-top: 0;
  }

  .feature-card p {
    line-height: 8px;
  }

  .main-content {
    flex-direction: row;
  }

  .basic-info-block {
    flex-direction: row;
    align-items: start;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    row-gap: 0;
  }

  .upper-review-data p {
    line-height: 42px;
  }

  .comments-divider {
    display: block;
  }

  .basic-info-single-data h6, .basic-info-block p {
    text-align: left;
  }

  .basic-info-block p {
    margin-top: 10px;
  }

  .left-block {
    width: 560px;
  }

  .right-block, .screenshots img, .mod-advert-block-wrapper, .screenshots {
    width: 440px;
  }

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

  .left-block .mod-card p {
    text-align: left;
    margin: 10px 0 0 0;
    width: 96%;
  }

  .feature-card {
    width: auto;
  }

  .title-block .back-button {
    margin-right: 10px;
  }

  .title-block h1 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word
  }

  .title-description {
    width: auto;
  }

  header img {
    margin-right: 280px;
  }

  .language-selection {
    margin-left: 150px;
  }

  .mod-page-ad-wrapper {
    margin-top: 0;
  }

  .left-block .LaunchGuideDefault {
    margin: 10px 0 0 0;
  }

  .mod-advert-block-wrapper ins {
    min-height: 240px;
    min-width: 440px;
  }

  .main-advert-wrapper ins {
    max-height: 90px;
    min-width: 970px;
  }

  .pagination-block {
    max-width: 800px;
  }

  .title-block .downnload-mod-button {
    margin-left: 20px;
  }

  .second-mod-advert-block-wrapper {
    margin-top: 20px;
    width: 560px;
  }

  /* The snackbar - position it at the bottom and in the middle of the screen */
  #snackbar {
    visibility: hidden;
    width: 350px;
    right: 36px;
    background-color: rgba(230, 115, 0, 1.0);
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    bottom: 36px;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
  }

  /* Animations to fade the snackbar in and out */
  @-webkit-keyframes fadein {
    from {
      bottom: 36px;
      opacity: 0;
    }
    to {
      bottom: 36px;
      opacity: 1;
    }
  }

  @keyframes fadein {
    from {
      bottom: 36px;
      opacity: 0;
    }
    to {
      bottom: 36px;
      opacity: 1;
    }
  }
}