@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700,900&subset=latin-ext");
/* html {
  position: relative;
  overflow-x: hidden !important;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  background: #f2f7fd;
} */

a, a:hover {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

.wrapper {
  display: flex;
  align-items: center;
  min-height: 100vh;
  background-image: linear-gradient(-225deg, #231557 0%, #44107A 29%, #FF1361 67%, #fa9b48 100%);
}

.scroll-list {
  width: 100%;
  max-width: 700px;
  padding: 25px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .scroll-list {
    margin-top: 20px;
  }
}
.scroll-list__wrp {
  width: 100%;
  height: 380px;
  overflow: auto;
  padding: 20px;
  /* box-shadow: 0px 7px 46px 0px rgba(41, 53, 108, 0.45); */
  /* background: #4b1079;
  background: #4b1079; */
  border-radius: 8px;
  /* background-image: linear-gradient(147deg, #6e0777 0%, #380c70 74%); */
}
.scroll-list__wrp .scrollbar-track {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .scroll-list__wrp {
    padding: 25px;
  }
}
.scroll-list__item {
  width: 100%;
  /* height: 75px; */
  display: block;
  margin-bottom: 15px;
  border-radius: 8px;
  /* background-image: linear-gradient(147deg, #ff7c34 0%, #c31269 74%); */
  transition: all 0.35s ease-in-out;
  opacity: 0;
  transform: scale(0.7);
  box-shadow: 0px 7px 16px 0px rgba(41, 53, 108, 0.25);
  border: 1px solid #212529;
  
}
.scroll-list__item.item-hide {
  opacity: 0;
  transform: scale(0.7);
}
.scroll-list__item.item-focus {
  opacity: 1;
  transform: scale(1);
}
.scroll-list__item.item-next {
  opacity: 1;
  transform: scale(1);
}
.scroll-list__item.item-next + .scroll-list__item {
  opacity: 1;
  transform: scale(1);
}
.scroll-list__item:last-child {
  margin-bottom: 155px;
}