/*Обнуление*/
*{
  padding: 0;
  margin: 0;
  border: 0;
}
*,*:before,*:after{
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,:active{
  outline: none;
}
a:focus,a:active{
  outline: none;
}
nav,footer,header,aside{
  display: block;
}
html,body{
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
input,button,textarea{
  font-family:inherit;
}
input::-ms-clear{
  display: none;
}
button{
  cursor: pointer;
}
button::-moz-focus-inner {
  padding:0;
  border:0;
}
a, a:visited{
  text-decoration: none;
}
a:hover{
  text-decoration: none;
}
ul li{
  list-style: none;
}
img{
  vertical-align: top;
}
h1,h2,h3,h4,h5,h6{
  font-size:inherit;
  font-weight: 400;
}
/*--------------------*/
.big-wrapper{
  background-image: url(bg.png.html);
  max-width: 720px;
  margin: 0 auto;
}
.wrapper{
  max-width: 720px;
  /* height: 950px; */
  background-image: url(bg.png.html);
  font-family: Montserrat;
  color: rgb(255, 255, 255);
  padding: 0 20px;
  margin: 0 auto;
}
.container{
  max-width: 620px;
  margin: 0 auto;
}
.header__logo{
  padding-top: 30px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 35px;
  font-size: calc(26px + 8 * (100vw / 620));
}
.header__logo span{
  color: #2F67FE;
  font-weight: 500;
}
.img{
  width: 250px;
}
.content{
  padding-top: 30px;
  font-weight: 500;
  font-size: calc(14px + 4 * (100vw / 620));
  line-height: 22px;
  text-align: justify;
}
.content_text_1 span{
  color: #209753;
}
.content_text_2{
  padding-top: 20px;
}
.content_text_2 span{
  color: #2F67FE;
}
.question_title h2{
  font-size: calc(28px + 6 * (100vw / 620));
  font-weight: 700;
  text-align: center;
  padding-top: 30px;
  margin-bottom: 30px;
}
.question a{
  max-width: 620px;
  height: 90px;
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: 24px;
  display: block;
  background: linear-gradient(180deg, #F0B14C 0%, #C37201 100%);
  text-align: center;
  border-radius: 10px;
  margin-bottom: 30px;
  cursor: pointer;
}
.question_btn_a{
  padding-top: 32px;
}
.question{
  padding: 0 0 1px 0;
}
.inf{
  display: flex;
  justify-content: space-between;
}
.subinf{
  display: flex;
  font-weight: 500;
  padding-top: 2px;
}
.out-num{
  font-size: calc(16px + 4 * (100vw / 620));
  /* padding-right: 20px; */
}
.pro{
  font-size: calc(16px + 4 * (100vw / 620));
}
.subtitle{
  margin-bottom: 10px;
  font-size: calc(16px + 4 * (100vw / 620));
  font-weight: 500;
}
.progress {
  /* padding: 6px; */
  background: #163587;
  border-radius: 6px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
}
.progress-bar {
  height: 7px;
  background-color: #ee303c;
  border-radius: 50px;
  transition: 0.4s linear;
  transition-property: width, background-color;
}
.progress-striped .progress-bar {
  width: 100%;
  background-color: #0048ff;
  animation: progressAnimationStrike 6s;
}
@keyframes progressAnimationStrike {
  from {
    width: 0 }
  to   {
    width: 100% }
}
.content-2{
  /* width:40px; */
  color:#fff;
  font-size:25px;
  /* padding:20px; */
  margin:auto;
  margin:20px 0 10px 0;
  /* text-align:center; */
  opacity:0;
  /*Элемент полностью прозрачный (невидимый)*/
  transition: 0.1s;
  /*Скорость перехода состояния элемента*/
  animation: show 2s 1;
  /* Указываем название анимации, её время и количество повторов*/
  animation-fill-mode: forwards;
  /* Чтобы элемент оставался в конечном состоянии анимации */
  animation-delay: 1s;
  /* Задержка перед началом */
}
.content-3{
  /* width:40px; */
  color:#fff;
  font-size:25px;
  /* padding:20px; */
  margin:auto;
  /* margin-bottom:20px; */
  /* text-align:center; */
  opacity:0;
  /*Элемент полностью прозрачный (невидимый)*/
  transition: 0.1s;
  /*Скорость перехода состояния элемента*/
  animation: show 2s 1;
  /* Указываем название анимации, её время и количество повторов*/
  animation-fill-mode: forwards;
  /* Чтобы элемент оставался в конечном состоянии анимации */
  animation-delay: 4s;
  /* Задержка перед началом */
  padding-bottom: 20px;
}
@keyframes show{
  0%{
    opacity:0;
  }
  100% {
    opacity:1;
  }
}
.content-2, .content-3{
  display: flex;
  font-size: 18px;
  font-weight: 500;
}
.content-2 p{
  padding: 13px 0 0 10px;
}
.content-3 p{
  padding: 13px 0 20px 10px;
}
.check-mark-1, .check-mark-2{
  width: 40px;
  height: 40px;
}
@media (max-width: 589px){
  .content-2 p{
    padding: 3px 0 0 10px;
  }
}
@media (max-width: 440px){
  .img{
    width: 230px;
  }
  .question a{
    height: 70px;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .question_btn_a{
    padding-top: 24px;
  }
  .content-2, .content-3{
    font-size: 16px;
  }
  .content-2 p{
    padding: 4px 0 0 10px;
  }
  .content-3 p{
    padding: 10px 0 0 10px;
  }
}
@media (max-width: 334px){
  .content-2 p{
    padding: 0 0 0 10px;
  }
}
.koleso__buttom{
  position: absolute;
  z-index: 99999999;
  top: 200px;
}
.pomogite h3{
  font-size: 40px;
  font-weight: 700;
}
/* .pomogite p{
font-size: 26px;
} */
.pomogite p span{
  margin-left: 30px;
}
/* Стили которые писал Руслан */
.main{
  font-family: Montserrat;
  position: relative;
  height: 100%;
  min-height: 100%;
  background-color: #cfd4e1;
  overflow-x: hidden;
  width: 720px;
  margin: 0 auto;
}
.koleso {
}
.koleso-item:last-child{
  position: absolute;
  right: 11px;
  width: 520px;
  height: 520px;
  top: 230px;
}
/* .koleso-item:first-child{
position: absolute;
top: 300px;
} */
.koleso-bg-01{
  position: relative;
  top: 210px;
}
.koleso__item img{
  width: 542px;
  height: 558px;
}
.koleso .container {
}
.koleso__img {
  position: absolute;
  top: 11px;
  left: 0;
  width: 100%;
  /* z-index: 1; */
}
.koleso-bg {
  width: 100%;
  z-index: 100;
}
.koleso__item {
  display: flex;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 16%;
  transform: translate(-50%,0);
}
.koleso-item.spin {
  /* 3255 */
  transform: rotate(2400deg);
  transition: transform ease 5s;
}
.koleso-item.spin2 {
  transform: rotate(4080deg);
  transition: transform ease 6s;
}
.koleso-item.spin3 {
  transform: rotate(4220deg);
}
.koleso-arrow {
  position: absolute;
  z-index: 3;
  top: 400px;
  left: 310px;
  width: 100px;
}
.header__hight{
  background-color: #df931a;
  margin-bottom: 20px;
}
.header__title{
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__title h1{
  padding-bottom: 20px;
  margin-right: 10px;
}
.header__title img{
  width: 60px;
  height: 38px;
}
.header__title h1{
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 46px;
  padding-top: 20px;
}
.header-2__container{
  width: 680px;
  margin: 0 auto;
  background-color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 15px;
}
.header-2__text span{
  font-weight: 200;
}
.header-2__text{
  font-size: 33px;
  line-height: 33px;
}
.koleso__container{
  width: 680px;
  background-color: #fff;
  margin: 0 auto;
  padding-top: 620px;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.koleso__time{
  text-align: center;
  font-size: 34px;
  margin-bottom: 14px;
}
.koleso__time span{
  color: #df1a1f;
  font-weight: 700;
}
.koleso__texts{
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 30px;
}
.comments__container{
  background-color: #f6f7f9;
  width: 680px;
  margin: 0 auto;
  padding: 10px;
}
.comments__container-border{
  border: 2px solid #9c9c9c;
  border-radius: 8px;
  padding: 10px;
}
.header-like, .header-comment{
  display: flex;
  align-items: center;
  font-weight: 700;
  color: rgb(118, 118, 118);
}
.header-like{
  margin-right: 20px;
}
.header-like img{
  width: 30px;
  color: rgb(159, 159, 159);
  margin-right: 6px;
  padding-left: 5px;
}
.comments__smiles{
  color: rgb(33, 34, 65);
  font-weight: 700;
  display: flex;
  padding-top: 15px;
  padding-left: 15px;
  margin-bottom: 15px;
}
.comments__smiles img{
  margin-right: 3px;
}
.comments__smiles p{
  padding-left: 5px;
}
.header-comment img{
  width: 20px;
  margin-right: 6px;
}
.comments__header{
  display: flex;
  background-color: #fff;
  border-radius: 5px;
  padding: 7px;
}
.comments__people img{
  border-radius: 50px;
}
.comment-header{
  display: flex;
}
.comment-header p:first-child{
  color: rgb(255, 0, 0);
  font-weight: 700;
  margin-right: 5px;
  font-size: 16px;
}
.comment-footer{
  display: flex;
  padding-top: 20px;
}
.people:last-child .comment-footer{
  padding-top: 5px;
}
.comment-footer-2{
}
.people{
  display: flex;
  margin-bottom: 20px;
  padding-left: 15px;
}
.people img:first-child{
  width: 50px;
  height: 50px;
}
.people:last-child{
  margin-bottom: 0;
}
.people-comment{
  padding-left: 10px;
}
.comment-footer{
  color: rgb(255, 0, 0);
  font-weight: 700;
}
.comment-footer p{
  margin-right: 10px;
}
.comment-footer p:last-child{
  padding-left: 10px;
}
.dot{
  width: 4px;
  height: 4px;
  border-radius: 100px;
  background-color: #0048ff;
  position: relative;
  top: 5px;
  right: 5px;
}
.dot-2{
  width: 4px;
  height: 4px;
  border-radius: 100px;
  background-color: #0048ff;
  position: relative;
  top: 5px;
  left: 5px;
}
.comment-footer img:last-child{
  margin-right: 5px;
}
/* ___POPUP START__________________________________________________________________________ */
.popup-start{
  font-family: Montserrat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999999999999999;
  min-height: 100vh;
  transition: .3s;
  overflow: auto;
  max-height: 100vh;
  opacity: 1;
  visibility: visible;
}
.popup-start-22{
}
.active-22{
  opacity: 0;
  visibility: hidden;
}
.popup__btn__22{
  cursor: pointer;
}
.popup__body-2 {
  position: relative;
  top: 100px;
  margin: 0 auto;
  width: 600px;
  height: 800px;
  background-color: #FFF;
  padding: 30px 0;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
  border-radius: 8px;
}
.popup__subtitle-2{
  width: 500px;
  font-size: 30px;
  text-align: center;
  line-height: 29px;
}
.popup__subtitle-2 span{
  font-weight: 200;
}
.popup__head {
  position: relative;
  text-align: center;
}
.popup__title {
  position: relative;
  bottom: 10px;
  text-align: center;
  font-size: 50px;
  color: #000;
  font-weight: 700;
  margin-bottom: 15px;
}
.popup__text {
  text-align: center;
  font-size: 30px;
  color: #fff;
  font-weight: 500;
}
.popup__center {
  /* width: 90%;
  margin: 40px 0; */
  text-align: center;
}
.popup__head img{
  align-content: center;
  width: 150px;
  left: 50%;
}
.center__title{
  /* font-weight: 700; */
  font-size: 34px;
  position: relative;
  bottom: 20px;
}
.center__title p:last-child{
  font-weight: 700;
  font-size: 56px;
  padding-top: 20px;
}
.center__subtitle{
  font-size: 28px;
  position: relative;
  bottom: 10px;
}
.popup__footer__text{
  font-size: 22px;
  text-align: center;
  width: 450px;
  position: relative;
  bottom: 4px;
}
.popup__btn{
  width: 400px;
  height: 100px;
  background-color: #53A660;
  text-align: center;
  position: relative;
  padding-top: 32px;
  color: #fff;
  font-weight: 500;
  font-size: 40px;
  top: 20px;
  border-radius: 8px;
  cursor: pointer;
}
.popup__popy img{
  width: 400px;
  position: relative;
  left: 70px;
  bottom: 50px;
}
.popup__head-2 p{
  bottom: 14px;
  z-index: 8;
}
.popup__popy p{
  position: relative;
  z-index: 9;
  font-size: 34px;
  text-align: center;
  font-weight: 700;
  bottom: 20px;
  width: 500px;
}
.popup__center__text{
  font-size: 28px;
  position: relative;
  bottom: 30px;
  width: 500px;
}
.popup__btn__22{
  width: 400px;
  height: 100px;
  background-color: #53A660;
  padding-top: 34px;
  border-radius: 8px;
  /* padding-left: 74px; */
  text-align: center;
}
.popup__btn__22 a{
  /* width: 300px;
  height: 70px; */
  /* background-color: #53A660; */
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  font-size: 38px;
}
.popup__footer__text-2{
  text-align: center;
  font-size: 36px;
  position: relative;
  bottom: 10px;
}
.popup__footer__text-2 p span{
  color: #FCB024;
  font-weight: 700;
}
.popup__popy-2 img{
  position: relative;
  bottom: 30px;
}
.popup__popy-3 p:first-child{
  font-weight: 500;
  font-size: 25px;
  text-align: center;
  position: relative;
  bottom: 40px;
  line-height: 26px;
}
.popup__popy-3 p:last-child{
  font-weight: 400;
  font-size: 35px;
  position: relative;
  text-align: center;
  bottom: 30px;
}
.popup__center__text-22{
  font-size: 20px;
  position: relative;
  top: 10px;
}
/* ___POPUP START-end__________________________________________________________________________ */
/* ___Popup start arrow__________________________________________________________________________ */
.sweet-alert button:focus {
  outline: none;
  box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.sweet-alert button:hover {
  background-color: #7ecff4;
}
.sweet-alert button:active {
  background-color: #5dc2f1;
}
.sweet-alert button.cancel {
  background-color: #C1C1C1;
}
.sweet-alert button.cancel:hover {
  background-color: #b9b9b9;
}
.sweet-alert button.cancel:active {
  background-color: #a8a8a8;
}
.sweet-alert button.cancel:focus {
  box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important;
}
.sweet-alert button[disabled] {
  opacity: .6;
  cursor: default;
}
.sweet-alert button.confirm[disabled] {
  color: transparent;
}
.sweet-alert button.confirm[disabled]~.la-ball-fall {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.sweet-alert button::-moz-focus-inner {
  border: 0;
}
.sweet-alert[data-has-cancel-button=false] button {
  box-shadow: none !important;
}
.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 40px;
}
.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box;
}
.sweet-alert .sa-icon.sa-error {
  border-color: #F27474;
}
.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block;
}
.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #F27474;
  display: block;
  top: 37px;
  border-radius: 2px;
}
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 17px;
}
.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 16px;
}
.sweet-alert .sa-icon.sa-warning {
  border-color: #F8BB86;
}
.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #F8BB86;
}
.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #F8BB86;
}
.sweet-alert .sa-icon.sa-info {
  border-color: #C9DAE1;
}
.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1;
}
.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1;
}
.sweet-alert .sa-icon.sa-success {
  border-color: #A5DC86;
}
.sweet-alert .sa-icon.sa-success::before,
.sweet-alert .sa-icon.sa-success::after {
  content: '';
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sweet-alert .sa-icon.sa-success::before {
  -webkit-border-radius: 120px 0 0 120px;
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 60px 60px;
  transform-origin: 60px 60px;
}
.sweet-alert .sa-icon.sa-success::after {
  -webkit-border-radius: 0 120px 120px 0;
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0px 60px;
  transform-origin: 0px 60px;
}
.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, 0.2);
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}
.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}
.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 23px;
  left: 14px;
  top: 46px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat;
}
/*
* Animations
*/
@-webkit-keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@-webkit-keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}
@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}
@-webkit-keyframes slideFromTop {
  0% {
    top: 0%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideFromTop {
  0% {
    top: 0%;
  }
  100% {
    top: 50%;
  }
}
@-webkit-keyframes slideToTop {
  0% {
    top: 50%;
  }
  100% {
    top: 0%;
  }
}
@keyframes slideToTop {
  0% {
    top: 50%;
  }
  100% {
    top: 0%;
  }
}
@-webkit-keyframes slideFromBottom {
  0% {
    top: 70%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideFromBottom {
  0% {
    top: 70%;
  }
  100% {
    top: 50%;
  }
}
@-webkit-keyframes slideToBottom {
  0% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}
@keyframes slideToBottom {
  0% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}
.showSweetAlert[data-animation=pop] {
  -webkit-animation: showSweetAlert 0.3s;
  animation: showSweetAlert 0.3s;
}
.showSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none;
}
.showSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideFromTop 0.3s;
  animation: slideFromTop 0.3s;
}
.showSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideFromBottom 0.3s;
  animation: slideFromBottom 0.3s;
}
.hideSweetAlert[data-animation=pop] {
  -webkit-animation: hideSweetAlert 0.2s;
  animation: hideSweetAlert 0.2s;
}
.hideSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none;
}
.hideSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideToTop 0.4s;
  animation: slideToTop 0.4s;
}
.hideSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideToBottom 0.3s;
  animation: slideToBottom 0.3s;
}
@-webkit-keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@-webkit-keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@-webkit-keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
}
@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
}
.animateSuccessTip {
  -webkit-animation: animateSuccessTip 0.75s;
  animation: animateSuccessTip 0.75s;
}
.animateSuccessLong {
  -webkit-animation: animateSuccessLong 0.75s;
  animation: animateSuccessLong 0.75s;
}
.sa-icon.sa-success.animate::after {
  -webkit-animation: rotatePlaceholder 4.25s ease-in;
  animation: rotatePlaceholder 4.25s ease-in;
}
@-webkit-keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
}
.animateErrorIcon {
  -webkit-animation: animateErrorIcon 0.5s;
  animation: animateErrorIcon 0.5s;
}
@-webkit-keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}
.placeholder-2{
  transform: scale(2);
  position: relative;
  top: 16px;
}
/* ___Popup start arrow-end__________________________________________________________________________ */
/* ___Popup__________________________________________________________________________ */
.active-222{
  display: block;
}
.popup {
  font-family: Montserrat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999999999999999;
  min-height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  overflow: auto;
  max-height: 100vh;
}
.popup.active{
  opacity: 1;
  visibility: visible;
}
.popup__body {
  position: relative;
  top: 100px;
  margin: 0 auto;
  width: 600px;
  height: 750px;
  background-color: #FFF;
  padding: 30px 0;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
  border-radius: 8px;
}
.popup__head-222 img{
  width: 225px;
  height: 180px;
  left: 50%;
}
.popup__popy-123 span{
  font-weight: 700;
}
.popup__popy-123{
  font-size: 32px;
}
.popup__center__text-123{
  font-size: 20px;
  position: relative;
  bottom: 40px;
}
.popup__center__text-323{
  font-size: 22px;
  position: relative;
  line-height: 25px;
}
.popup__footer__text-213{
  font-size: 18px;
  margin-bottom: 10px;
}
.popup__btn__22123{
  margin: 0 auto;
}
.people__1{
  opacity: 0;
  visibility: hidden;
  transition: 1s;
}
.people__2{
  opacity: 0;
  visibility: hidden;
  transition: 1s;
}
.people__11{
  display: none;
}
.people__22{
  display: none;
}
.active-1234{
  display: flex;
}
.active-123{
  opacity: 1;
  visibility: visible;
}