.cookie-container {
  margin-top: 20px;
  .banner {
    position: relative;
    width: 90%;
    max-width: 700px;
    margin: 0 auto;

    .banner-buttons {
      position: absolute;
      top: 60%;
      left: 50%;
      transform: translateX(-50%);

      .banner-button {
        background-color: #3095A3;
        color: white;
        box-shadow: 0 0 3px gray;
        padding: 15px 5px;
        width: 100%;
        max-width: 700px;
        border-radius: 8px;
        margin-top: 10px;

        @media screen and (max-width: 768px) {
          padding: 5px 10px;
          margin-top: 3px;
        }

        .btn-tel-link {
          display: flex;
          flex-direction: row;
          align-items: center;
          color: white;
          column-gap: 7.5px;
          justify-content: center;

          @media screen and (max-width: 768px) {
            font-size: 10px;
          }
          .btn-header-img {
            img {
              width: 20px;
              height: 20px;

              @media screen and (max-width: 768px) {
                width: 16px;
                height: 16px;
              }
            }
          }
        }
      }
    }
  }
}
