.textwidget {
  word-break: break-word;
}

.widget.widget_nav_menu {
  width: 25%;
  list-style: none;
}

.footer-1-widget {
  width: 66%;
  display: flex;
  justify-content: space-between;
  padding-left: 43px;
}

.copyright-text li {
  list-style: none;
}

.footer.copyrights {
  color: #9f9f9f;
  padding-top: 35px;
  padding-bottom: 50px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.newsletter input[type='email'] {
  margin: 0 20px;
}

.newsletter p {
  margin-bottom: 0;
}

.newsletter .wpcf7-spinner {
  display: none;
}

@media (max-width: 785px) {
  .footer-1-widget {
    width: 100%;
    padding-left: 10px;
  }
}

@media (max-width: 550px) {
  .footer-1-widget {
    display: block;
  }

  .social-icon {
    margin-bottom: 25px;
  }

  .widget.widget_nav_menu {
    width: auto;
  }
}

.cta-banner {
  display: none;
  border: 1px solid #3f3a4d;
  background: #27262c url('../images/cta-banner.svg') no-repeat center left / cover;
  box-shadow: 0px -6px 60px 0px rgba(0, 0, 0, 0.4);
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
  border-radius: 6px 6px 0 0;
  padding: 24px;
  max-height: 122px;
  animation: slideIn 0.5s ease-in-out;
  transition: 0.5s ease-in-out;

  @media screen and (max-width: 840px) {
    border-radius: 0;
    height: 202px;
    max-height: 202px;
    padding: 16px 0 24px;
    background-position: right;
  }

  &.show {
    display: block;
  }

  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;

    @media screen and (max-width: 840px) {
      flex-direction: column;
      gap: 16px 24px;
      max-width: 100%;
      width: 100%;
    }

    .cta-banner__casino {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 16px;
      color: #fff;
      font-size: 24px;
      font-style: normal;
      font-weight: 700;
      line-height: 120%;
      text-decoration: none;

      @media screen and (max-width: 840px) {
        width: 100%;
      }

      img {
        width: 72px;
        height: 72px;
        border-radius: 50%;

        @media screen and (max-width: 840px) {
          width: 40px;
          height: 40px;
        }
      }
    }

    .cta-banner__offer {
      color: rgba(255, 255, 255, 0.8);
      font-size: 24px;
      font-style: normal;
      font-weight: 700;
      line-height: 120%;
      display: flex;
      align-items: center;
      gap: 16px;

      @media screen and (max-width: 840px) {
        flex: 1 1 100%;
        width: 100%;
        flex-direction: column-reverse;
        align-items: flex-start;
        font-size: 12px;
      }

      span {
        color: #7bf78b;
        font-size: 28px;

        @media screen and (max-width: 840px) {
          font-size: 20px;
        }
      }
    }

    .cta-banner__button {
      display: flex;
      width: 215px;
      height: 58px;
      padding: 17px 62.5px 17px 64.5px;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
      border-radius: 5px;
      background: #62d395;
      color: #000;
      text-align: center;
      font-size: 20px;
      font-style: normal;
      font-weight: 700;
      line-height: 120%;
      text-decoration: none;

      @media screen and (max-width: 840px) {
        flex: 1 1 100%;
        width: 100%;
        padding: 17px;
      }
    }

    @media screen and (min-width: 1500px) {
      &::after {
        content: '';
        position: absolute;
        background: url('../images/trophy.svg') no-repeat center center;
        width: 145px;
        height: 145px;
        right: -145px;
      }
    }
  }

  .cta-banner__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 50px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;

    @media screen and (max-width: 840px) {
      bottom: 140px;
    }

    &::before {
      content: '';
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Cpath d='M14.9999 13.2325L21.1874 7.04504L22.9549 8.81254L16.7674 15L22.9549 21.1875L21.1874 22.955L14.9999 16.7675L8.81242 22.955L7.04492 21.1875L13.2324 15L7.04492 8.81254L8.81242 7.04504L14.9999 13.2325Z' fill='white'/%3E%3C/svg%3E");
      display: block;
      width: 30px;
      height: 30px;
    }
  }
}

@keyframes slideIn {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}


body.show-footer-banner {
    padding-bottom: 119px;

    @media screen and (max-width: 840px) {
        padding-bottom: 202px;
    }
}