.custom-cta__close button {
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background-color: transparent;
    position: absolute;
    z-index: 99;
    top: 10px;
    right: 10px;
    width: 1rem;
    height: 1rem;
    cursor: pointer;
  }

  .custom-cta:not(.active) {
    display: none;
  }
  
  :not([data-type*='announcement']) .custom-cta__close button {
    top: 10px;
    right: 10px;
  }
  
  .custom-cta__close button svg {
    width: 1rem;
    height: 1rem;
  }
  
  [data-type='popup'] {
    max-height: 80vh !important;
    max-width: 80vw;
    overflow: scroll;
    background-color: var(--light-color);
    padding: 60px;
    position: relative;
    z-index: 999999999;
  }
  
   .custom-cta__image {
    position: relative;
    aspect-ratio: 16 / 9;
    max-width: 70%;
    margin: 0 auto;
  }
  
   .custom-cta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .custom-cta[data-type*='announcement'],
  .custom-cta[data-type*='slide']  {
    position: fixed;
    transition: all .5s ease-in-out;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
  }
  
  .custom-cta.active:not([data-type='popup']) {
    transform: translate(0);
    z-index: 1 !important;
  }
  
  .announcement-bar-bottom {
    bottom: 0;
    top: unset !important;
  }
  
  [data-type*='announcement'] {
    left: 0;
    width: 100%;
    height: auto;
  }

  [class*='slide-in'] {
    bottom: 0;
    top: unset !important;
    width: 400px !important;
    padding: 60px;
  }
  
  [data-type*='announcement'] .custom-cta__content {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .static .custom-cta__close {
    display: none;
  }

  .static {
    position: relative !important;
  }
  
  [data-type*='announcement'] .custom-cta__content * {
    margin: 0;
  }
  
  [id='announcement-bottom'] {
    transform: translateY(100%) !important;
    top: unset !important;
    bottom: 57px;
  }
  
  [id='announcement-top'] {
    transform: translateY(-350%);
  }
  
  [id='slide-in-left'] {
    left: 0;
    transform: translateX(-100%);
  }
  
  [id='slide-in-right'] {
    right: 0;
    transform: translateX(100%);
  }

  #cta_three,
  #cta_four {
    padding: 10% 10% 5% 40%;
    aspect-ratio: 2 / 1;
    background-size: cover;
  }

  .custom-cta__content span:first-child {
    font-size: 1.1rem;
    font-weight: bold;
  }

  .custom-cta__content span {
    display: block;
    line-height: 1;
  }
  
  @media screen and (max-width: 767px) {
    [data-type='popup'] {
      padding: 30px;
    }
    [id='announcement-bottom'] {
        bottom: 65px;
      }
  }