@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
button,
input,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

fieldset,
img {
  border: 0;
}

img,
object,
embed {
  vertical-align: bottom;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

q:before,
q:after {
  content: '';
}

a *,
a {
  cursor: pointer;
}

input,
textarea {
  outline: none;
}

:root {
  --font-size-general: 16px;
  --line-height-general: 1.2;
  --default-font: "Outfit", sans-serif;
  --color-main: #000;
  --color-second: #8296b0;
  --color-third: #4d678a;
  --color-link: #133662;
  --color-active: #B4252E;
  --color-active-second: #d61e2a;
  --color-white: #fff;
  --color-white-rgba: 255, 255, 255;
  --color-active-rgba: 180, 37, 46;
  --color-green: #14ae30;
  --bg-main: #FCFCFC;
  --bg-white: #fff;
  --bg-dark: 0, 0, 0;
  --bg-tools: #dde5ef;
  --bg-video: linear-gradient(90deg, #181718 0%, #0f2f68 100%), rgba(0, 0, 0, 0.3);
  --bg-gradient: linear-gradient(90deg, #181718 0%, #0f2f68 100%);
  --header-height: 60px;
}

html {
  height: 100%;
  min-width: 320px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font: var(--font-size-general)/var(--line-height-general) var(--default-font);
  height: 100%;
  min-width: 320px;
  font-weight: 500;
  position: relative;
  color: var(--color-main);
  background: var(--bg-main);
}

@media screen and (max-width: 1180px) {
  body.show-search .search {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }

  body.show-search .logo,
  body.show-search .hamburger {
    opacity: 0;
    visibility: hidden;
  }

  body.show-search .search-view use[href="#icon-close"] {
    display: block;
  }

  body.show-search .search-view use[href="#icon-search"] {
    display: none;
  }
}

@media screen and (max-width: 1180px) {
  body.open-menu .aside-box {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  body.open-menu .hamburger {
    background: url("../images/close.svg");
  }

  body.open-menu .mask {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}

@media screen and (max-width: 1180px) {
  body.scroll-locked {
    height: 100%;
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}

a {
  color: #2600ff;
  text-decoration: none;
}

input,
textarea,
button {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 500;
}

input {
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

* {
  box-sizing: border-box;
  outline: none;
}

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

* ::-moz-selection {
  background: #2600ff;
  color: #fff;
}

* ::selection {
  background: #2600ff;
  color: #fff;
}

.svg-icon {
  display: inline-block;
  vertical-align: top;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #fff;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #fff;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #fff;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: transparent;
}

input.placeholder,
textarea.placeholder {
  color: #fff !important;
}

.comments-box input::-webkit-input-placeholder,
.comments-box textarea::-webkit-input-placeholder {
  color: #133662;
}

.comments-box input:-moz-placeholder,
.comments-box textarea:-moz-placeholder {
  color: #133662;
  opacity: 1;
}

.comments-box input::-moz-placeholder,
.comments-box textarea::-moz-placeholder {
  color: #133662;
  opacity: 1;
}

.comments-box input:-ms-input-placeholder,
.comments-box textarea:-ms-input-placeholder {
  color: #133662;
}

.comments-box input:focus::-webkit-input-placeholder,
.comments-box textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

.comments-box input:focus:-moz-placeholder,
.comments-box textarea:focus:-moz-placeholder {
  color: transparent;
}

.comments-box input:focus::-moz-placeholder,
.comments-box textarea:focus::-moz-placeholder {
  color: transparent;
}

.comments-box input:focus:-ms-input-placeholder,
.comments-box textarea:focus:-ms-input-placeholder {
  color: transparent;
}

.comments-box input.placeholder,
.comments-box textarea.placeholder {
  color: #133662 !important;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

@media screen and (max-width: 1440px) {
  .container {
    max-width: 690px;
  }
}

@media screen and (max-width: 1180px) {
  .container {
    max-width: 900px;
  }
}

@media screen and (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 640px) {
  .container {
    padding: 0 10px;
  }
}

.header {
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background: var(--bg-gradient);
  position: relative;
}

@media screen and (max-width: 1180px) {
  .header {
    gap: 0 15px;
    padding: 10px;
    justify-content: space-between;
  }
}

.hamburger {
  width: 30px;
  height: 30px;
  background: url("../images/burger.svg");
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transition: opacity .3s, visibility .3s;
}

@media screen and (max-width: 1180px) {
  .hamburger {
    display: flex;
  }
}

.logo {
  flex-grow: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  opacity: 1;
  visibility: visible;
  transition: opacity .3s, visibility .3s;
  max-width: 170px;
}

.logo img {
  max-width: 100%;
}

.search {
  flex-shrink: 1;
  flex-grow: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

@media screen and (max-width: 1180px) {
  .search {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, -50%, 0);
    transition: transform .3s, opacity .3s, visibility .3s;
    position: absolute;
    left: 10px;
    right: 50px;
    z-index: 3;
  }
}

.search form {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search .wrap {
  display: flex;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: rgba(var(--color-white-rgba), 0.1);
  border-radius: 10px;
  max-width: 840px;
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 40px;
}

@media screen and (max-width: 1440px) {
  .search .wrap {
    max-width: 630px;
  }
}

@media screen and (max-width: 1180px) {
  .search .wrap {
    max-width: 100%;
  }
}

.search input {
  background: none;
  border: none;
  width: 100%;
  height: 100%;
  padding: 10px 0 10px 20px;
  font-weight: 400;
  color: var(--color-white);
}

.button-search {
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform .3s, color .3s;
  transform: scale(1);
  font-size: 20px;
  color: var(--color-white);
  padding: 0 20px;
}

.header-panel {
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1px;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 1180px) {
  .header-panel {
    display: none;
  }
}

.btn-panel {
  line-height: 1.25;
  padding: 10px 30px;
  border-radius: 10px;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-second);
  transition: color .3s, background .3s;
}

@media screen and (min-width: 1025px) {
  .btn-panel:hover {
    color: var(--color-active);
  }
}

@media screen and (max-width: 1160px) {
  .btn-panel {
    padding: 0;
    min-width: 40px;
    height: 100%;
  }
}

.btn-panel.secondary {
  background: var(--color-active);
  color: var(--color-white);
}

@media screen and (min-width: 1025px) {
  .btn-panel.secondary:hover {
    background: var(--color-active-second);
  }
}

.search-view {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 30px;
}

@media screen and (max-width: 1180px) {
  .search-view {
    display: flex;
    align-items: center;
  }
}

.search-view use[href="#icon-close"] {
  display: none;
}

.main {
  flex-shrink: 1;
  flex-grow: 1;
  padding: 30px 0;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .main {
    padding: 20px 0;
  }
}

.aside-box {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  bottom: 0;
  min-width: 1px;
  padding: 20px 15px;
  max-width: 270px;
  width: 100%;
  background-color: var(--bg-main);
  max-height: 100%;
  overflow: auto;
  transition: transform .3s, visibility .3s, opacity .3s;
}

@media screen and (max-width: 1180px) {
  .aside-box {
    position: fixed;
    padding: 10px;
    top: var(--header-height);
    left: 0;
    bottom: 0;
    max-width: 260px;
    overflow: auto;
    height: calc(100svh - var(--header-height));
    z-index: 20;
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
    opacity: 0;
  }
}

.aside-box::-webkit-scrollbar {
  display: none;
}

.aside-box .block {
  border-bottom: 2px solid #DDE5EF;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.aside-box .block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.aside-box .title {
  font-size: 20px;
  margin-bottom: 16px;
}

.aside-box .list {
  display: flex;
  flex-direction: column;
}

.aside-box .item {
  margin-bottom: 2px;
}

.aside-box .item:last-child {
  margin-bottom: 0;
}

.aside-box .item.active a {
  background-color: var(--color-active);
  color: var(--color-white);
}

.aside-box a {
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 10px;
  padding: 13px 20px;
  line-height: 1.25;
  color: var(--color-main);
  transition: background-color .3s;
}

@media screen and (min-width: 1025px) {
  .aside-box a:hover {
    background-color: var(--bg-tools);
  }
}

.aside-box .svg-icon {
  font-size: 24px;
  flex-grow: 0;
  flex-shrink: 0;
}

.mask {
  position: fixed;
  bottom: 0;
  left: 0;
  opacity: 0;
  right: 0;
  top: var(--header-height);
  transition: transform .4s, visibility .4s, opacity .4s;
  visibility: hidden;
  z-index: 10;
  -webkit-backdrop-filter: blur(17px);
  backdrop-filter: blur(17px);
  background: rgba(var(--color-white-rgba), 0.6);
}


.section:has(.columns) {
  max-width: calc(100% - 270px);
  margin-left: auto;
}

.columns {
  display: flex;
  gap: 0 10px;
  justify-content: center;
}

.columns .column:first-child {
  max-width: 900px;
  width: 100%;
}

@media screen and (max-width: 1440px) {
  .columns .column:first-child {
    max-width: 690px;
  }
}

@media screen and (max-width: 1180px) {
  .columns .column:first-child {
    max-width: 900px;
  }

  .columns .column.second {
    display: none;
  }

  .section:has(.columns) {
    max-width: 100%;
    margin: 0;
  }
}

.columns .column.second {
  position: relative;
}

.columns .column .spots-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 0;
  padding-top: 10px;
  margin-top: -10px;
}


.card-headline {
  margin-bottom: 20px;
}

.card-headline .title {
  margin-bottom: 7px;
  font-weight: 700;
  font-size: 24px;
}

@media screen and (max-width: 390px) {
  .card-headline .title {
    font-size: 22px;
  }
}

.card-headline .title a {
  color: inherit;
  transition: color .3s;
}

@media screen and (any-hover: hover) {
  .card-headline .title a:hover {
    color: var(--color-active);
  }
}

.card-headline .subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: var(--color-second);
}

.card-headline .subtitle a {
  color: var(--color-link);
  transition: color .3s;
}

@media screen and (min-width: 1025px) {
  .card-headline .subtitle a:hover {
    color: var(--color-active);
  }
}

.card-headline .box {
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-headline svg {
  font-size: 16px;
  flex-grow: 0;
  flex-shrink: 0;
}

.card-headline .detail {
  font-weight: 400;
  font-size: 18px;
  margin-top: 20px;
  line-height: 1.39;
}

.link-more {
  display: inline-flex;
  vertical-align: middle;
  margin-top: 15px;
  color: var(--color-link);
  transition: color .3s;
}

@media screen and (min-width: 1025px) {
  .link-more:hover {
    color: var(--color-active);
  }
}

.card-post, .card-seo {
  padding: 20px;
  box-shadow: 0 15px 30px 0 rgba(var(--bg-dark), 0.05);
  background: var(--bg-white);
  border-radius: 10px;
  margin-bottom: 20px;
}

@media screen and (max-width: 568px) {
  .card-post, .card-seo {
    margin: 0 -10px 10px;
    padding: 20px 10px;
  }
}

.card-seo .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin-top: 20px;
}

.card-seo .card-tag {
  background-color: var(--bg-tools);
  color: var(--color-third);
  padding: 5px 13px;
  font-size: 16px;
  border-radius: 10px;
  transition: color .3s, background-color .3s;
}
@media (any-hover: hover) {
  .card-seo .card-tag:hover {
    background-color: var(--color-active);
    color: var(--color-white);
  }
}



.card-post:last-child {
  margin-bottom: 0;
}

.card-post .media {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-video);
  aspect-ratio: 16 / 9;
  display: block;
}


.card-post .img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.card-post .img-media {
  max-height: 800px;
  height: 100%;
  aspect-ratio: 16 / 9;
}

.card-post .img-media img {
  width: auto;
  height: 100%;
}


.btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transition: transform .3s;
  transform: translate3d(-50%, -50%, 0) scale(1);
  font-size: 100px;
  color: rgba(var(--color-white-rgba), 0.5);
  border: none;
  background: none;
  cursor: pointer;
  transition: color .3s;
}

/* .touch-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
} */

.media:has(video) .btn-play,
.media:has(video) .touch-preview {
  display: none;
}

@media screen and (min-width: 1025px) {
  .btn-play:hover {
    color: rgba(var(--color-active-rgba), 0.5);
  }
}

@media screen and (max-width: 767px) {
  .btn-play {
    font-size: 80px;
  }
}

@media screen and (max-width: 390px) {
  .btn-play {
    font-size: 65px;
  }
}

.btn-play svg {
  display: block;
}

.card-tools {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 20px;
}

@media screen and (max-width: 390px) {
  .card-tools {
    gap: 10px;
  }
}

.card-tools .col {
  flex-grow: 1;
  flex-shrink: 1;
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media screen and (max-width: 390px) {
  .card-tools .col {
    gap: 10px;
  }
}

.card-tools .col.second {
  flex-grow: 0;
  flex-shrink: 0;
}

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

.tools-box.manage {
  margin-top: 20px;
  justify-content: flex-end;
}

.tools-box .link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-link);
  transition: color .3s;
  cursor: pointer;
}

.tools-box .link.fixed {
  color: var(--color-active);
}

@media screen and (min-width: 1025px) {
  .tools-box .link:hover {
    color: var(--color-active);
  }
}

.tools-box svg {
  font-size: 25px;
}

.reaction-box {
  display: flex;
  min-height: 50px;
  position: relative;
}

@media screen and (max-width: 390px) {
  .reaction-box {
    min-height: 46px;
  }
}

.reaction-box .voters {
  position: absolute;
  white-space: nowrap;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  font-size: 11px;
  color: var(--color-active-second);
}

.reaction-box svg {
  font-size: 24px;
  flex-grow: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 390px) {
  .reaction-box svg {
    font-size: 20px;
  }
}

.reaction-box .btn {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-third);
  border: none;
  cursor: pointer;
  background: var(--bg-tools);
  border-radius: 10px 0 0 10px;
  padding: 0 5px 0 15px;
  transition: color .3s, background .3s;
}

.reaction-box .btn.disabled {
  pointer-events: none;
}

.reaction-box .btn.disabled .svg-icon {
  opacity: 0.5;
}

@media screen and (min-width: 1025px) {
  .reaction-box .btn:hover {
    color: var(--color-active);
  }
}

.reaction-box .btn.second {
  border-radius: 0 10px 10px 0;
  padding: 0 15px 0 5px;
}

.reaction-box .btn.active,
.reaction-box .btn.voted {
  color: var(--color-link);
}

.social-list {
  display: flex;
  align-items: center;
  gap: 10px !important;
}

@media screen and (max-width: 390px) {
  .social-list {
    gap: 5px;
  }
}

.social-list .link {
  display: flex;
  align-items: center;
  background: var(--bg-tools);
  color: var(--color-third);
  padding: 13px;
  font-size: 24px;
  border-radius: 10px;
  transition: color .3s, background .3s;
}

@media screen and (min-width: 1025px) {
  .social-list .link:hover {
    background: var(--color-active);
    color: var(--color-white);
  }
}

@media screen and (max-width: 390px) {
  .social-list .link {
    font-size: 20px;
  }
}

.load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1.25;
  color: var(--color-third);
  background: var(--bg-tools);
  padding: 15px 20px;
  border-radius: 10px;
  transition: color .3s, background .3s;
}

@media screen and (min-width: 1025px) {
  .load-more:hover {
    background: var(--color-active);
    color: var(--color-white);
  }
}

.content-box {
  margin-bottom: 20px;
}

@media screen and (max-width: 480px) {
  .content-box {
    margin: 0 -10px 20px;
    padding: 0 10px;
  }
}

.content-box:last-child {
  margin-bottom: 0;
}

.content-box .row {
  margin-bottom: 20px;
}

.content-box .row:last-child {
  margin-bottom: 0;
}

.content-box .hold {
  box-shadow: 0 15px 30px 0 rgba(var(--bg-dark), 0.05);
  background: var(--bg-white);
  border-radius: 10px;
  padding: 20px;
}

@media screen and (max-width: 480px) {
  .content-box .hold {
    padding: 20px 10px;
    margin: 0 -10px;
    border-radius: 0;
  }
}

@media screen and (max-width: 480px) {
  .content-box .hold.second {
    padding: 20px;
  }
}

.content-box .description {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 20px;
}

.content-box .statistic {
  display: flex;
  align-items: center;
  font-weight: 400;
  gap: 5px;
  color: var(--color-second);
  font-size: 16px;
}

.content-box .group {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .content-box .group {
    gap: 10px;
  }
}

@media screen and (max-width: 390px) {
  .content-box .group {
    flex-direction: column;
  }
}

.content-box .group .item {
  width: auto;
  flex: 1 0 auto;
}

@media screen and (max-width: 390px) {
  .content-box .group .item {
    width: 100%;
  }
}

.content-box .item {
  width: 100%;
}

.link-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bg-tools);
  color: var(--color-third);
  text-transform: uppercase;
  min-height: 50px;
  padding: 10px 13px;
  line-height: 1.25;
  border-radius: 10px;
  transition: background .3s, color .3s;
}

@media screen and (min-width: 1025px) {
  .link-box:hover {
    background: var(--color-active);
    color: var(--color-white);
  }
}

.link-box svg {
  font-size: 24px;
  flex-grow: 0;
  flex-shrink: 0;
}

.list-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 10px;
  margin-bottom: 20px;
}

@media screen and (max-width: 480px) {
  .list-tags {
    margin-bottom: 10px;
  }
}

.list-tags a {
  color: var(--color-link);
  transition: color .3s;
}

@media screen and (min-width: 1025px) {
  .list-tags a:hover {
    color: var(--color-active);
  }
}

.list-tags span {
  font-weight: 400;
  color: var(--color-second);
}

.author-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.author-box .wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-main);
  transition: color .3s;
}

@media screen and (min-width: 1025px) {
  .author-box .wrap:hover {
    color: var(--color-active);
  }
}

.author-box .name {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-second);
}

.author-box img {
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 100%;
  flex-grow: 0;
  flex-shrink: 0;
}

.watch-full {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  border-radius: 10px;
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-white);
  background: var(--color-active);
  padding: 15px;
  line-height: 1.25;
}

@media screen and (max-width: 480px) {
  .watch-full {
    font-size: 20px;
  }
}

@media screen and (max-width: 390px) {
  .watch-full {
    font-size: 16px;
  }
}

.watch-full strong {
  font-weight: 700;
}

.list-top li:first-child .list-link {
  padding-top: 0;
}

.list-top li:last-child .list-link {
  padding-bottom: 0;
  border-bottom: none;
}

.list-top svg {
  font-size: 16px;
  flex-grow: 0;
  flex-shrink: 0;
}

.list-top img {
  max-width: 100%;
  width: 100%;
  border-radius: 10px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.list-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: var(--color-link);
  transition: color .3s;
  padding: 16px 0;
  border-bottom: 2px solid var(--bg-tools);
}

@media screen and (min-width: 1025px) {
  .list-link:hover {
    color: var(--color-active);
  }
}

@media screen and (max-width: 390px) {
  .list-link {
    font-size: 16px;
  }
}

.block-album .images {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.block-album .images a {
  padding-bottom: 136%;
  position: relative;
}

.block-album .images img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.video-frame {
  border-radius: 10px;
  overflow: hidden;
  padding: 30px 10px;
  max-width: 1390px;
  min-width: 680px;
  width: 71.3545vw;
  margin: 0 auto;
  position: relative;
  background: var(--color-link);
}

@media screen and (max-width: 767px) {
  .video-frame {
    padding: 30px 0;
  }
}

.video-frame::before,
.video-frame::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.video-frame::before {
  background: var(--bg-video);
  z-index: 2;
}

.video-frame:after {
  background: rgba(var(--bg-dark), 0.3);
  z-index: 3;
}

.video-frame>.container {
  z-index: 4;
  position: relative;
}

@media screen and (max-width: 1680px) {
  .video-frame {
    width: 58vw;
  }
}

@media screen and (max-width: 1180px) {
  .video-frame {
    width: calc(100% - 20px);
    min-width: auto;
  }
}

@media screen and (max-width: 768px) {
  .video-frame {
    width: 100%;
    border-radius: 0;
    margin-top: -20px;
  }
}

.video-frame .video {
  position: relative;
  padding-bottom: 56.31%;
  border-radius: 10px;
  overflow: hidden;
  z-index: 5;
}

@media screen and (max-width: 410px) {
  .video-frame .video {
    min-height: 220px;
    padding-bottom: 0;
  }
}

.video-frame .media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-frame .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transition: transform .3s;
  transform: translate3d(-50%, -50%, 0) scale(1);
  font-size: 100px;
  color: rgba(var(--color-white-rgba), 0.5);
  border: none;
  background: none;
  cursor: pointer;
  transition: color .3s;
}

@media screen and (min-width: 1025px) {
  .video-frame .btn:hover {
    color: rgba(var(--color-active-rgba), 0.5);
  }
}

@media screen and (max-width: 767px) {
  .video-frame .btn {
    font-size: 60px;
  }
}

@media screen and (max-width: 390px) {
  .video-frame .btn {
    font-size: 55px;
  }
}

.video-frame .btn svg {
  display: block;
}

@media screen and (max-width: 767px) {
  .video-frame .content-box {
    padding: 0;
    margin: 0;
  }
}

.video-tools {
  margin-top: 20px;
}

.video-tools:first-child {
  margin-top: 0;
}

.watch-video {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 24px;
  color: var(--color-white);
  margin-bottom: 9px;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 390px) {
  .watch-video {
    font-size: 20px;
  }
}

.watch-video svg {
  font-size: 16px;
  flex-grow: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 390px) {
  .watch-video svg {
    font-size: 14px;
  }
}

.content-row {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .content-row {
    margin-bottom: 30px;
  }
}

.content-row:last-child {
  margin-bottom: 0;
}

.adv-box img {
  max-width: 100%;
  border-radius: 10px;
  width: 100%;
}

.comments-section {
  margin-bottom: 20px;
}

.comments-box .row+.row {
  margin-top: 20px;
}

.comments-box .content {
  margin-top: 30px;
}

.load-more-container {
  margin-top: 20px;
}

.comments-box .ava {
  flex-grow: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tools);
  color: var(--color-link);
  font-size: 20px;
}

.comments-box img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.comments-box .textfield {
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  border: none;
  height: 40px;
  padding: 0 15px;
  border-radius: 10px;
  background: var(--bg-tools);
  max-width: 250px;
}

@media screen and (max-width: 480px) {
  .comments-box .textfield {
    max-width: 100%;
  }
}

.comments-box textarea {
  width: 100%;
  resize: none;
  padding: 15px 20px;
  font-weight: 500;
  font-size: 16px;
  border: none;
  height: 100px;
  border-radius: 10px;
  background: var(--bg-tools);
}

.captcha-control .image {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.captcha-control .image img {
  max-width: 160px;
  height: auto;
  margin-block: 5px 10px;
}

.comments-box .button {
  display: block;
  margin-top: 20px;
  border: none;
  background: var(--color-active);
  color: var(--color-white);
  padding: 13px 30px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .3s;
}

@media screen and (min-width: 1025px) {
  .comments-box .button:hover {
    background: var(--color-active-second);
  }
}

.comments-title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 15px;
}

.comments-item {
  display: flex !important;
  margin-bottom: 25px;
  gap: 10px;
}

.comments-item:last-child {
  margin-bottom: 0;
}

.comments-item .about {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.comments-item .name {
  color: var(--color-main);
  transition: color .3s;
}

@media screen and (min-width: 1025px) {
  .comments-item .name:hover {
    color: var(--color-active);
  }
}

.comments-item .date {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 5px;
  color: var(--color-second);
}

.comments-item .date svg {
  font-size: 14px;
}

.comments-item .comment {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}

.comments-tools {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  margin-top: 6px;
}

.comments-tools .btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--color-second);
  cursor: pointer;
  transition: color .3s;
}

.comments-tools .btn.disabled {
  pointer-events: none;
}

@media screen and (min-width: 1025px) {
  .comments-tools .btn:hover {
    color: var(--color-link);
  }
}

.comments-tools .btn.active {
  color: var(--color-link);
}

@media screen and (min-width: 1025px) {
  .comments-tools .btn.like:hover {
    color: var(--color-link);
  }
}

.footer {
  background: var(--bg-gradient);
  flex-shrink: 0;
  flex-grow: 0;
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  margin-bottom: 25px;
  max-width: 250px;
}

.footer-logo img {
  max-width: 100%;
}

.footer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px 60px;
}

@media screen and (max-width: 1024px) {
  .footer-list {
    gap: 15px 30px;
  }
}

.footer-list li {
  color: var(--color-active);
}

.footer-list a,
.footer-list span {
  text-transform: uppercase;
  text-align: center;
}

.footer-list a {
  color: var(--color-white);
  transition: color .3s;
}

@media screen and (min-width: 1025px) {
  .footer-list a:hover {
    color: var(--color-active);
  }
}

.copyright {
  margin-top: 25px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  color: var(--color-second);
}


.empty-content p {
  margin-bottom: 10px;
}

.empty-content ol,
.empty-content ul {
  padding-left: 30px;
  list-style: disc;
  margin-bottom: 10px;
}

.empty-content h2 {
  margin-bottom: 5px;
}

.empty-content p+h2 {
  margin-top: 20px;
}

.empty-content li+li {
  margin-top: 10px;
}

/* POPUPS */
.popup-title {
  display: block;
  color: var(--color-second);
  font-size: 14px;
  padding: 25px 50px 25px 30px;
  font-size: 24px;
  font-weight: 500;
  background-image: var(--bg-gradient);
}

.popup-holder {
  padding: 24px;
  min-width: 670px;
  background-color: #f9f9f9;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(#e7e7e7));
  background-image: linear-gradient(to top, #ffffff 0%, #e7e7e7 100%);
  background-image: var(--bg-main);

}

form .generic-error {
  text-align: center;
  padding: 10px;
  color: #f30702;
  border: 2px solid #f30702;
  font-size: 14px;
  font-weight: bold;
  line-height: 16px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  margin: 0 0 10px;
}

.hidden {
  display: none;
}

form .row {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 0 15px;
  line-height: 0;
}

form .success {
  padding: 8px 10px;
  border: 2px solid var(--color-active);
  border-radius: 10px;
  margin-bottom: 15px;
  text-align: center;
  color: var(--color-active);
}

form label,
form .section-title {
  display: block;
  margin: 0 0 5px;
  font-weight: 500;
  line-height: 1.2;
  font-size: 14px;
}

form .section-title {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0 5px;
  margin-bottom: 15px;
  transition: margin-bottom .3s;
}

form .section-title.collapse {
  margin-bottom: 5px;
}

form .section-title .svg-icon {
  rotate: 0;
  transition: rotate .3s;
  font-size: 12px;
}

form .section-title.collapse .svg-icon {
  rotate: 180deg;
}

form .row-radio {
  margin-bottom: 5px;
}

form .row-radio label {
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  width: auto;
  display: inline-block;
}

form .row-radio label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--bg-tools);
  ;
}

form .row-radio input:checked+label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  translate: 0 -50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-second);
}

.checkbox+label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
}

.checkbox+label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: block;
  border: 1px solid var(--bg-tools);
  background-color: transparent;
}

.checkbox:checked+label::before {
  background-color: var(--color-active);
  border-color: var(--color-active);
}

.checkbox:checked+label::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 5px;
  translate: 0 -50%;
  font-size: 12px;
  color: #fff;
}


form .textfield,
form .textarea,
form .selectbox,
form .file {
  padding: 12px 20px;
  color: #000;
  background-color: var(--bg-tools);
  width: 100%;
  border-radius: 20px;
  height: 40px;
  border: none;
  border-radius: 10px;
}

form .textarea {
  height: auto;
  min-height: 60px;
  max-height: 120px;
  resize: vertical;
}

form .field-error {
  display: none;
  padding: 5px 0 0 0;
  color: #f30702;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

form .radio,
form .checkbox {
  display: none;
}

form .bottom {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
}

form .submit {
  line-height: 1.25;
  padding: 10px 30px;
  border-radius: 10px;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-second);
  transition: color .3s, background .3s;
  background: var(--color-active);
  color: var(--color-white);
  border: none;
  cursor: pointer;
}

form .bottom .links {
  width: 100%;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin-top: 15px;
}

form .bottom a {
  color: #212121;
  font-size: 12px;
  line-height: 20px;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

form .bottom .links p:first-child a {
  font-weight: bold;
  color: #276fdb;
}

.fancybox-close {
  top: 22px !important;
  right: 15px !important;
}

.player-wrap {
  position: relative;
}

#kt_player {
  position: absolute !important;
}

form .file-control+.file-control {
  margin-top: 15px;
}

form .file-control {
  position: relative;
}

form .file-control .textfield {
  padding-left: 24px;
}

form .file-control .button {
  position: absolute;
  left: 6px;
  top: 5px;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
  padding: 15px 14px;
  font-size: 13px;
  color: var(--color-white);
  background-color: var(--color-active);
}

form .file {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  padding: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  cursor: pointer;
}

.form-upload {
  position: relative;
}

.form-upload.uploading {
  height: 80px;
  cursor: wait;
}

.form-upload.uploading * {
  opacity: 0;
  visibility: hidden;
}

.form-upload.uploading .progressbar,
.form-upload.uploading .progressbar * {
  opacity: 1;
  visibility: visible;
}

.form-upload.uploading-finished {
  cursor: default;
}

/* .progressbar */
form .progressbar {
  position: absolute;
  z-index: 990;
  width: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 30px;
  border: 2px solid var(--color-active);
  padding: 3px;
  border-radius: 15px;
  background: #fff;
}

form .progressbar .text {
  position: absolute;
  width: 100%;
  top: 50%;
  translate: 0 -50%;
  font-size: 12px;
  line-height: 1;
  text-align: center;
}

form .progressbar.half-done .text {
  color: #ffffff;
}

form .progressbar .progress {
  width: 0;
  height: 20px;
  background: var(--color-active);
  border-radius: 15px;
}

form .preview {
  max-width: 400px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

@media screen and (max-width: 480px) {
  form .preview {
    max-width: 100%;
  }
}

form .preview img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

form .preview .left,
form .preview .right {
  position: absolute;
  bottom: 4px;
  left: 4px;
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--color-main);
  font-size: 12px;
  padding: 2px 5px;
  border-radius: 5px;
}

form .preview .right {
  left: auto;
  right: 4px;
}


form .list-selector-popup {
  position: absolute;
  width: 100%;
  height: 160px;
  left: 0;
  bottom: 52px;
  border-radius: 5px;
  -webkit-box-shadow: -1px 1px 5px rgba(207, 207, 207, 0.65);
  box-shadow: -1px 1px 5px rgba(207, 207, 207, 0.65);
  z-index: 10000;
  background-color: #f9f9f9;
}

form .list-selector-popup:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #f9f9f9;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  -webkit-box-shadow: -1px 1px 5px rgba(207, 207, 207, 0.65);
  box-shadow: -1px 1px 5px rgba(207, 207, 207, 0.65);
  bottom: -5px;
  z-index: 10000;
}

form .list-selector-popup:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 7px;
  background-color: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  z-index: 10001;
}

form .list-selector-popup .button-group {
  overflow-y: scroll;
  overflow-x: hidden;
  position: absolute;
  top: 8px;
  left: 8px;
  bottom: 30px;
  right: 8px;
}

form .list-selector-popup .button-group .group-title {
  margin: 0 5px 10px 0;
  padding: 3px;
  line-height: 1.2;
  background: #c8c8c8;
  font-weight: 800;
}

form .list-selector-popup .button-group .item {
  display: inline-block;
  width: 31%;
  padding: 3px 0 10px;
  vertical-align: top;
}

.fancybox-inner form .list-selector-popup .button-group .item {
  width: 49%;
}

.fancybox-outer,
.fancybox-inner {
  height: auto !important;
}

form .list-selector-popup .button-group .item label {
  color: #212121;
  font-size: 12px;
  cursor: pointer;
  position: relative;
  padding: 0 0 0 25px;
}

form .list-selector-popup .filter {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #c8c8c8;
  border: none;
}

form .list-selector-popup .filter input {
  width: 100%;
  height: 100%;
  padding: 8px 10px;
  border: none;
  background-color: #fff;
  color: #212121;
  font-weight: 400;
  line-height: 14px;
}

.list-screenshots,
.block-screenshots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 15px;
  margin-bottom: 15px;
}

.tab-content {
  margin-bottom: 20px;
}

@media screen and (max-width: 480px) {

  .list-screenshots,
  .block-screenshots {
    grid-template-columns: repeat(2, 1fr);
  }
}

.list-screenshots .tools-box {
  margin-top: 5px;
}

.list-screenshots .tools-box .row-radio,
.list-screenshots .tools-box label {
  margin-bottom: 0;
}

.list-screenshots .img,
.block-screenshots a {
  position: relative;
  aspect-ratio: 10 / 9;
  overflow: hidden;
  border-radius: 4px;
}

.block-screenshots a {
  aspect-ratio: 16 / 9;
}

.list-screenshots .img a {
  display: block;
}

.list-screenshots .img img,
.block-screenshots a img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.embed-button {
  padding: 12px 20px;
  color: #000;
  background-color: var(--bg-tools);
  border-radius: 20px;
  height: 40px;
  border: none;
  border-radius: 10px;
  display: inline-block;
  line-height: 1;
  transition: color .3s, background .3s;
}

@media (any-hover: hover) {
  .embed-button:hover {
    background: var(--color-active);
    color: var(--color-white);
  }
}

.custom-size {
  margin-top: 20px;
}

.custom-size_wrap,
.block-size_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.custom-size_wrap .textfield {
  text-align: center;
  width: 100px;
}

.player-related-videos {
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
  width: 100%;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  box-sizing: border-box !important;
}
.player-related-videos a{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 320px;
}

.player-related-videos-container {
  display: flex;
  align-items: center;
  gap: 0 10px;
  overflow-y: hidden;
  overflow-x: auto;
}

.player-related-videos .title {
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  max-width: calc(100% - 50px);
  display: inline-block;
  text-overflow: ellipsis;
}

.player-related-videos .duration {
  color: var(--color-active);
}

@media screen and (max-width: 570px) {
 .player-related-videos a {
    flex-shrink: 0;
    width: 250px;
  }

 .player-related-videos .thumb {
    width: 100% !important;
    height: 100px !important; 
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }
}
@media screen and (max-width: 480px) {
  .player-related-videos-container {
    margin-top: -30px;
  }
}
@media screen and (max-width: 411px) {
 .player-related-videos a {
    width: 150px;
  }
  .player-related-videos .thumb {
    height: 75px !important; 
  }
}

.player-related-videos-container {
  --sb-track-color: var(--bg-tools);
  --sb-thumb-color: var(--color-second);
  --sb-size: 10px; 
}

.player-related-videos-container::-webkit-scrollbar {
  height: var(--sb-size);
}

.player-related-videos-container::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 2px;
}

.player-related-videos-container::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 2px;
}

@supports not selector(::-webkit-scrollbar) {
  .player-related-videos-container {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}

@media screen and (max-width: 480px) {
  .player-related-videos-container::-webkit-scrollbar {
    display: none;
  }

  .player-related-videos-container {
    -ms-overflow-style: none;
    scrollbar-width: none;  
  }
}

.list-related {
  display: flex;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
}

.list-related li {
  width: calc(33.33% - 7px);
}
@media screen and (max-width: 690px){
  .list-related li {
    width: calc(50% - 5px);
  }
}
.list-related .list-link {
  flex-direction: column;
  font-size: 13px;
  padding: 0;
  height: 100%;
  border-radius: 5px;
  border-bottom: none;
  overflow: hidden;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.list-related .img-holder{
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
}

.list-link span{
  padding: 0 5px;
}
.list-related .img-holder img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.list-link-info {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding: 0 5px 5px;
}

.page-error {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
  padding: 40px 0;
}

@media screen and (max-width: 767px) {
  .page-error {
    font-size: 24px;
  }
}

.go_back-link {
  font-size: 16px;
  margin-bottom: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.go_back-link a{
  font-size: 18px;
}
@media (any-hover: hover) {
  .go_back-link a:hover{
    text-decoration: underline;
  }
}
