  .banner-ifr {
    background: #EC173C;
    background: linear-gradient(45deg, rgba(236, 23, 60, 1) 0%, rgba(63, 0, 11, 1) 88%);
  }

  .banner-ifr a {
    color: #fff !important;
    font-weight: 300;
  }

  .banner-ifr a:hover {
    text-decoration: none;
  }

  .banner-ifr .collapse-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: white;
    position: relative;
    margin-right: 10px;
    vertical-align: middle;
    transition: transform 0.3s ease;
  }

  .banner-ifr .collapse-icon::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-bottom: 1.5px solid black;
    border-right: 1.5px solid black;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.3s ease;
  }

  a[aria-expanded="true"] .collapse-icon {
    transform: rotate(180deg);
  }

  a[aria-expanded="true"] .collapse-icon::before {
    transform: translate(-50%, -50%) rotate(-315deg);
  }

  .banner-ifr .ifr-phone {
    color: #fff;
    font-weight: 500;
    text-align: right;
    font-size: 2em;
  }

  #ifr-expanded .container {
    background-color: #f1f1f1;
    border-radius: 30px;
  }

  #ifr-expanded .container .col-phone {
    border-left: 2px solid #fff;
  }

  #ifr-expanded form input[type='email'] {
    background-color: transparent;
    border: 0;
    border-bottom: 0.5pt solid #686868;
    border-radius: 5px;
    outline: none;
    margin: 30px auto;
    text-align: center;
  }

  #ifr-expanded form input[type='email']::placeholder {
    color: #686868 !important;
  }

  #ifr-expanded .webform-submission-form .webform-button--submit {
    width: 60%;
    height: auto;
    color: #FFF;
    background: #ED002A;
    padding: 15px 17px;
    font-weight: 400;
    margin: 0 auto;
    border-radius: 30px;
    line-height: 20px;
  }

  @media (max-width: 992px) {
    #ifr-expanded .webform-submission-form .webform-button--submit {
      width: 75%;
    }
  }

  @media (max-width: 768px) {
    #ifr-expanded .container .col-phone {
      border-left: none;
    }

    .banner-ifr .ifr-phone {
      text-align: center;
    }
  }