@mixin infoBanner() {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: $maxTextBodyWidth;
  padding: 0;
  
  // Hide animation
  overflow: hidden;
  &.hidden {
    animation: infobanner-content-hide 0.4s forwards ease-out;
  }
  
  > img {
    width: 176px;
    margin: 30px;
  }
  
  .info {
    margin: 30px;
    flex: 1;
    min-width: 250px;
    max-width: 100vw;
  }
  
  .actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@keyframes infobanner-content-hide {
    0% {
      max-height: 400px;
    }
    100% {
      max-height: 0px;
      opacity: 0;
      display: none;
    }
}

@mixin image-wrap-shadow() {
  position: relative;
  
  // Shadow
  &::before {
    content: '';
    position: absolute;
    width: 70%;
    left: 15%;
    height: 20%;
    bottom: 5px;
    border-radius: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0, 0.15);
  }
  
  img {
    position: relative;
    width: 100%;
  }
}