.single__slot-container {
  max-width: 1440px;
}
.single__slot_wrapper {
  display: flex;
  width: 100%;
  margin: 0 auto !important;
.slot__title-wrapper {
  width: 100%;
}
 .single__slot-header {
   display: flex;
   width: 100%;
   align-items: center;
   justify-content: space-between;
 }

  .slot__body {

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    section {
      background-color: #eef7f8;
      padding: 2rem;
      border-radius: 4px;
    }
    @media (max-width: 1024px) {
      max-width: 100%;
    }

    .slot__image {
      background: linear-gradient(180deg,#092426,#0f3e42);
      border-radius: 4px;
      width: 100%;
      position: relative;
      height: 640px;
      background-color: #fff;
      margin-bottom: 2rem;
      iframe {
        width: 100%;
        height: 100%;
      }
      picture {
        img {
          width: 100%;
          object-fit: cover;
          opacity: .35;
          height: 100%;
        }
      }
      .gbpp {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        flex-direction: column;
        .gbpi {
          cursor: pointer;
          transition: .3s opacity;
          background: linear-gradient(180deg,#ff7819,#ff944a);
          width: 64px;
          height: 64px;
          border-radius: 50%;
          padding: 10px;
          display: flex;
          justify-content: center;
          align-items: center;
          &:hover {
            opacity: .85;
          }
          svg {
            width: 24px
          }
        }
        .cta {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: .5rem;
          font-size: 24px;
          text-align: center;
          span {
            font-size: 16px;
          }
        }
      }

    }
  }

  .slot__cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .slot__title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .slot__sidebar {
    padding: 0 0 0 5rem;
    @media (max-width: 1024px) {
      max-width: 100%;
      padding: 0;
      margin-top: 1rem;
      flex-basis: 100%;
    }
  }
}
.relink-games__row {
  width: 100%;
}
.slots__swiper {
  .swiper__slot {
    height: 240px;

    background: linear-gradient(180deg,#092426,#0f3e42);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    &:hover {
      .ma {
        visibility: visible;
        opacity: 1;
        transition: .3s opacity;

      }
    }
    .ma {
      position: absolute;
      top: 50%;
      left: 50%;
      font-size: 24px;
      transform: translate(-50%,-50%) rotate(15deg);
      color: #fff;
      border: 2px solid #fff;
      text-transform: uppercase;
      text-align: center;
      width: 140px;
      transition: .3s opacity;
      opacity: 0;
      visibility: hidden;
    }
    a {
      display: flex;
      width: 100%;
      flex-direction: column;
      align-items: center;
      padding: 1rem;
      border-radius: 4px;
      .image {
        width: 100%;
        height: 150px;
        border-radius: 4px;
        object-fit: cover;
      }
      .brand__image {
        display: block;
        text-align: center;
        margin-bottom: 16px;
         img {
           width: 100%;
           height: 16px;
           object-fit: contain;
         }
        .ic {
          height: 16px;
          display: block;
          text-align: center;
        }
      }
    }
  }

}
.breadcrumbs {
  @media (max-width: 1024px) {
    display: flex;
    gap: .25rem;
    flex-wrap: wrap;
    li {
      display: flex;
      align-items: center;
      gap: .25rem;
      white-space: nowrap;
      overflow-x: hidden;
      text-overflow: ellipsis;
      a {
        display: flex;
        background: linear-gradient(180deg,#092426,#0f3e42);
        color: #fff;
        padding: 5px;
      }
    }
  }
  a {
    color: #0c88b4;
  }
}