.notify {
  position: fixed;
  left: -0.5rem;
  right: -0.5rem;
  z-index: -1;
  width: 100vw;
  opacity: 0;
  transition: top 0.2s linear, visibility 0s, opacity 0.2s linear;
  color: #fff;
  visibility: hidden;
  max-width: 100%;
  padding: 0;
  top: 6.2rem;
  --duration: 1s;
  --duration-content: 0.7s;
}
@media (min-width: 992px) {
  .notify {
    top: 7rem;
  }
}
.notify__wrap {
  background: #18bcc6;
  padding: 0.8rem 3rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media only screen and (min-width: 992px) {
  .notify__wrap {
    width: 6rem;
    padding: 1.2rem;
    align-items: center;
    transform: matrix(0.001, 0, 0, 0.01, 0, -100);
    border-radius: 50%;
    overflow: hidden;
    transition: 0.5s linear;
  }
}
.notify__icon {
  width: 3.2rem;
}
@media only screen and (min-width: 992px) {
  .notify__icon {
    min-width: 100%;
    transition: 0.2s linear;
  }
}
.notify__icon svg,
.notify__icon img {
  width: 100%;
  height: auto;
  width: 2.5rem;
  min-width: 2.5rem;
}
.notify__content {
  margin-left: 0.8rem;
}
@media only screen and (min-width: 576px) {
  .notify__content {
    display: flex;
    align-items: center;
  }
}
@media only screen and (min-width: 992px) {
  .notify__content {
    max-height: 0;
    opacity: 0;
  }
}
.notify__descr p {
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 140%;
  letter-spacing: -0.004em;
  color: #fff;
}
@media only screen and (min-width: 992px) {
  .notify__descr p {
    font-size: 1.3rem;
  }
}
.notify__descr p strong {
  font-weight: 600;
}
.notify__descr p .small {
  font-size: 1.1rem;
}
.notify__link {
  font-size: 1.2rem;
  padding: 0.6rem 1.6rem;
  width: 100%;
  margin-top: 0.8rem;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  transition: visibility 0s, opacity 0.2s linear;
  background-color: #fff;
  color: #18bcc6;
}
.notify__link:hover {
  background-color: #fff;
}
@media (max-width: 576px) {
  .notify__link {
    min-height: unset;
    height: auto;
  }
}
@media only screen and (min-width: 576px) {
  .notify__link {
    margin-left: 1rem;
    margin-top: 0;
    width: auto;
    min-height: auto;
  }
}
@media only screen and (min-width: 992px) {
  .notify__link {
    font-size: 1.4rem;
    margin-left: 3.2rem;
  }
}
.notify__close {
  width: 2.6rem;
  height: 2.6rem;
  margin-left: 0.8rem;
  position: absolute;
  cursor: pointer;
  transition: 0.2s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  right: 0.3rem;
}
@media only screen and (min-width: 992px) {
  .notify__close {
    opacity: 0;
    right: 1.2rem;
    transition: opacity 0.1s linear 1.2s;
    margin-left: 1.2rem;
  }
}
.notify__close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
@media only screen and (min-width: 992px) {
  .notify {
    --duration: 1.6s;
    --duration-content: 1.2s;
  }
}
.notify.show {
  opacity: 1;
  z-index: 20;
  visibility: visible;
}
.notify.show .bttn {
  opacity: 1;
  visibility: visible;
  transition: 0.2s linear;
  color: #18bcc6;
}
.notify.show .bttn:hover {
  color: #ff622f;
}
@media only screen and (min-width: 992px) {
  .notify.show .notify__wrap {
    animation: notify_wrap var(--duration) linear forwards;
  }
  @keyframes notify_wrap {
    0% {
      transform: matrix(0.001, 0, 0, 0.01, 0, -100);
    }
    25% {
      transform: matrix(1.1, 0, 0, 1.1, 0, 20);
    }
    40% {
      transform: matrix(1, 0, 0, 1, 0, 0);
      border-radius: 50%;
    }
    50% {
      transform: matrix(1, 0, 0, 1, 0, 0);
      width: 6rem;
      border-radius: 0.8rem;
    }
    75% {
      transform: matrix(1, 0, 0, 1, 0, 0);
      border-radius: 0.8rem;
      width: 100%;
    }
    100% {
      transform: matrix(1, 0, 0, 1, 0, 0);
      border-radius: 0.8rem;
      width: 100%;
    }
  }
  .notify.show .notify__icon {
    animation: notify_icon var(--duration) linear forwards;
  }
  @keyframes notify_icon {
    20% {
      min-width: 100%;
    }
    40% {
      min-width: 3.2rem;
    }
    100% {
      min-width: 3.2rem;
    }
  }
  .notify.show .notify__content {
    animation: notify_content 0.25s linear forwards;
    animation-delay: var(--duration-content);
  }
  @keyframes notify_content {
    0% {
      opacity: 0;
      max-height: 0;
    }
    100% {
      opacity: 1;
      max-height: 40rem;
    }
  }
  .notify.show .notify__close {
    opacity: 1;
  }
}