.partners_list .items {
  opacity: 0;
  animation: fadeIn 1.2s ease-in-out;
  animation-fill-mode: forwards;
  -webkit-animation: fadeIn 1.2s ease-in-out;
  -webkit-animation-fill-mode: forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.basket .btn.btn_white:hover {
  background-color: #1a99c7;
  color: #ffffff !important;
}

.header .basket_top .btn.btn_white:hover {
  background-color: #1a99c7;
  color: #ffffff !important;
}