/* stylelint-disable */
[data-color-mode="dark"] {
  .footer-links-col{
   .form-floating > .form-control:not(:placeholder-shown) ~ label,
   .form-floating > .form-select ~ label {
        color: #adadad;
    }
  }
}
/* stylelint-enable */

.footer-wrapper{
  background: var(--#{$variable-prefix}eerie-black-footer);
  .footer-logo{
    width: 80px;
    filter: invert(1);
  }
  @media (max-width: 991px) {
    .copyright-flex-wrapper{
      flex-direction: column-reverse;
    }
  }
}

.footer-links-col{
  h1{
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }
  ul{
    padding: 0;
    list-style: none;
  }
  li{
    margin: 0 0 10px;
    p{
      font-size: .75rem;
      color: #fff;
    }
    a{
      font-size: .75rem;
      text-decoration: none;
      color: #fff;
    }
  }
  &.col-2-content{
    @media (min-width: 991px) { 
      ul{
        columns: 2;
      }
    }
  }
  .form-control{
    color: #fff;
    background: var(--#{$variable-prefix}dark-gray);
    border-color: var(--#{$variable-prefix}dark-gray);
    &:hover,
    &:focus,
    &:focus:hover {
      color: #fff;
      background: var(--#{$variable-prefix}dark-gray);
      border-color: var(--#{$variable-prefix}dark-gray);
    }
  }
  textarea{
    &.form-control{
      height: 85px;
    }
  }

}

// [data-color-mode="dark"]{
//   .footer-logo{
//     filter: initial;
//   }
// }

.footer-separator{
  border-top: 1px solid #333;
}

.footer-left-content-wrapper{
  border-right: 1px solid #333;
  @media (max-width: 991px) {
    border: 0;
  }
}

.copyright-content{
  font-size: 12px;
  color: #fff;
  @media (max-width: 991px) {
    margin: 0 0 15px;
    text-align: center;
  }
}

.footer-payment-options{
  float: right;
  @media (max-width: 991px) {
    float: none;
    text-align: center;
  }
  ul{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0 0 5px;
    list-style: none;
    @media (max-width: 991px) {
      justify-content: center;
      margin: 0 0 15px;
    }
    li{
      padding: 0;
      background-color: #fff;
      border-radius: 2px;
      a{
        display: block;
        width: 52px;
        height: 23px;
        padding: 5px;
      }
      img{
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }
  }
  p{
    margin: 0 0 5px;
    font-size: 12px;
    letter-spacing: 0;
    text-align: right;
    color: #989898;
    @media (max-width: 991px) {
      text-align: center;
    }
  }
}

