@keyframes wave1 {
  0% {
    transform: scale(1);
    opacity: 0
  }

  40% {
    opacity: .7
  }

  80% {
    transform: scale(1.6);
    opacity: 0
  }
}

@keyframes wave2 {
  40% {
    transform: scale(1);
    opacity: 0
  }

  55% {
    opacity: .6
  }

  90% {
    transform: scale(1.6);
    opacity: 0
  }
}

@keyframes wave3 {
  60% {
    transform: scale(1);
    opacity: 0
  }

  80% {
    opacity: .5
  }

  100% {
    opacity: 0;
    transform: scale(1.6)
  }
}

.button-arrow, .button-download {
  display: flex;
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50px
}

.button-arrow:hover::before, .button-download:hover::before {
  transform: translateZ(0) scale(1.2)
}

.button-arrow::before, .button-download::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 3px 4px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
  background-color: #fff;
  border-radius: 50px;
  transform: translateZ(0);
  transition: transform .5s
}

.button-arrow svg, .button-download svg {
  position: absolute;
  top: 20px;
  left: 18px;
  fill: #111111;
  width: 26px;
  height: 22px
}

.button-open, .button-play {
  display: flex;
  align-items: center;
  background: 0 0;
  outline: 0;
  border: 0
}

.button-open--inverse, .button-play--inverse {
  flex-direction: row-reverse
}

@media (max-width:1199px) {
  .button-open--inverse, .button-play--inverse {
    flex-direction: row
  }
}

.button-open--inverse .button-open__button, .button-play--inverse .button-open__button {
  margin-right: 0;
  margin-left: 13px
}

@media (max-width:1199px) {
  .button-open--inverse .button-open__button, .button-play--inverse .button-open__button {
    margin-right: 13px;
    margin-left: 0
  }
}

.button-open--inverse .button-open__text--content, .button-play--inverse .button-open__text--content {
  margin-left: 0;
  margin-right: 20px
}

@media (max-width:1199px) {
  .button-open--inverse .button-open__text--content, .button-play--inverse .button-open__text--content {
    margin-left: 20px;
    margin-right: 0
  }
}

.button-open--close svg, .button-play--close svg {
  transform: rotate(45deg)
}

.button-open:hover .button-open__button, .button-open:hover .button-play__button, .button-play:hover .button-open__button, .button-play:hover .button-play__button {
  transform: translateZ(0) scale(1.2)
}

.button-open:hover .button-open__button span, .button-open:hover .button-play__button span, .button-play:hover .button-open__button span, .button-play:hover .button-play__button span {
  display: none
}

.button-long__icon, .button-open__button, .button-play__button {
  flex: none;
  position: relative;
  background-color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 13px;
  transform: translateZ(0);
  will-change: transform;
  transition: transform .4s
}

.button-long__icon::before, .button-open__button::before, .button-play__button::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 14px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid #111111
}

.button-long__icon span, .button-open__button span, .button-play__button span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  border: 1px solid #807f80;
  transform: translateZ(0);
  will-change: transform, opacity;
  animation-timing-function: linear;
  animation-duration: 1.5s;
  animation-iteration-count: infinite
}

.button-long__icon span:first-child, .button-open__button span:first-child, .button-play__button span:first-child {
  animation-name: wave1
}

.button-long__icon span:nth-child(2), .button-open__button span:nth-child(2), .button-play__button span:nth-child(2) {
  animation-name: wave2
}

.button-long__icon span:nth-child(3), .button-open__button span:nth-child(3), .button-play__button span:nth-child(3) {
  animation-name: wave3
}

.button-open__text, .button-play__text {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase
}

.button-open__button {
  box-shadow: 0 3px 4px rgba(0, 0, 0, .16), 0 0 6px rgba(0, 0, 0, .23)
}

.button-open__button svg {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 16px;
  height: 16px
}

.button-open__button::before {
  display: none
}

.button-open__text {
  font-size: 1.2rem;
  letter-spacing: .083em;
  color: #000
}

.button-open__text--content {
  max-width: 200px;
  margin-left: 20px
}

.button-open__text-par, .button-open__text-title {
  display: block;
  letter-spacing: .083em;
  line-height: 1.25
}

.button-open__text-title {
  font-weight: 700;
  padding-right: 20%
}

.button-open__text-par {
  margin-top: 10px;
  text-transform: none;
  font-weight: 500
}

.button-download {
  width: 42px;
  height: 42px
}

.button-download svg {
  top: 11px;
  left: 13px;
  width: 15px;
  height: 21px
}

.button-long {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 40px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: #111111;
  padding: 20px 30px 20px 45px
}

@media (max-width:599px) {
  .button-long {
    padding: 10px 15px 10px
  }
}

.button-long:hover .button-long__icon {
  transform: translateZ(0) scale(1.2)
}

.button-long__text {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
  margin-right: 20px
}

.button-blue {
  font-family: "Avenir Next", sans-serif;
  text-align: center;
  width: 227px;
  height: 55px;
  border-radius: 32px;
  background-color: #111111;
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 1.3;
  letter-spacing: .0556em;
  color: #fff;
  font-weight: 500;
  margin-top: 16px;
  cursor: pointer;
  transition: background-color .2s, color .2s;
  box-shadow: 0 5px 10px .5px #807f80
}

.button-blue:hover {
  background-color: #002175
}

.button-blue--white {
  color: #111111;
  background-color: #fff;
  box-shadow: none
}

.button-blue--white:hover {
  background-color: #d4872b;
  color: #fff
}

@media (max-width:599px) {
  .button-blue {
    width: 100%
  }
}

.button-blue--sent {
  text-align: center;
  padding-top: 17px;
  text-transform: none;
  font-size: 1.6rem
}

.button-blue--sent:hover {
  background-color: #111111
}

.button-blue:disabled {
  cursor: not-allowed;
  background-color: #c5c5c5;
  color: #8a8a8a;
  box-shadow: none
}

.neue-button {
  background-color: #111111;
  border: 1px solid #111111;
  color: #fff;
  display: inline-block;
  font-family: "Avenir Next", sans-serif;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .0556em;
  transition: all .2s;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 50px;
  max-width: 100%;
  width: auto;
  margin-top: 30px;
}

@media (max-width: 899px) {
  .neue-button {
    font-size: 14px;
    padding: 12px 26px;
  }
}

.neue-button:hover {
  color: #111111;
  background-color: #fff;
  border-color: #111111;
}

.neue-button + .neue-button {
  margin-left: 15px;
}

.neue-button--white {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.neue-button--white:hover {
  color: #111;
  background-color: #fff;
  border-color: #fff;
}

.neue-button--white-fill {
  color: #111;
  background-color: #fff;
  border-color: #fff;
}

.neue-button--white-fill:hover {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}

.neue-button--light {
  background-color: transparent;
  border: 1px solid #111;
  color: #111;
}

.neue-button--light:hover {
  color: #fff;
  background-color: #111;
  border-color: #111;
}
