.banners.active {
  display: block;
}

.banners .banners-item--header {
  display: none;
}

@media screen and (max-width: 767px) {
  .banners .banners-item {
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
  }

  .banners .banners-item .banners-item--body {
    display: flex;
    flex-grow: 1;
  }

  .banners .banners-item .banners-item--body>a {
    width: 100%;
    flex-grow: 1;
  }

  .banners .banners-item .banners-item--body>a>img {
    width: 100%;
    border: 0px;
    max-width: 100%;
    position: absolute;
    height: 100%;
    object-fit: contain;
    max-height: 100%;
  }

  .banners .banners-item--header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 15px;
    border-bottom: var(--main-border);
  }

  .banners .banners-item--header .cls {
    font-family: normal;
    cursor: pointer;
    display: flex;
    font-size: 18px;
    width: 24px;
    height: 24px;
    line-height: 1;
    align-items: center;
    justify-content: center;
    border: var(--main-border);
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.7);
	user-select: none;
  }
}