.modal-overlay{
  display:none;
  background-color: #212529cd;
  position:fixed;
  width:100%;
  height:100%;
  z-index:100000;
  top:0;
  left:0;
}
.modal-wrapper, .modal-wrapper-desktop, .modal-wrapper-mobile{
  top:50%;
  left:50%;

  width: 600px;
  height:600px;
  margin-top:-300px;
  margin-left:-300px;

  padding: 20px;
  overflow-y:auto;
  overflow-x:hidden;
  position:fixed;


  z-index:10000000000;
  -webkit-box-shadow: 0px 0px 8px 1px rgba(50, 50, 50, 1);
  -moz-box-shadow:    0px 0px 8px 1px rgba(50, 50, 50, 1);
  box-shadow:         0px 0px 8px 1px rgba(50, 50, 50, 1);

  border-radius: 20px;
}
.modal-wrapper {
  z-index:10000000001;
}
.modal-wrapper h2
{
 margin-top:0px;
	}
.modal-wrapper .h2
{
	display:none;
}
@-webkit-keyframes btn {
    from {
        left: -100rem
    }

    to {
        left: 300%
    }
}

@keyframes btn {
    from {
        left: -100rem
    }

    to {
        left: 300%
    }
}

@-webkit-keyframes button {
    from {
        left: -120rem
    }

    to {
        left: 280%
    }
}

@keyframes button {
    from {
        left: -120rem
    }

    to {
        left: 280%
    }
}
.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition-property: background-color,color,border-color,-webkit-box-shadow;
    transition-property: background-color,color,border-color,-webkit-box-shadow;
    -o-transition-property: background-color,color,box-shadow,border-color;
    transition-property: background-color,color,box-shadow,border-color;
    transition-property: background-color,color,box-shadow,border-color,-webkit-box-shadow;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-duration: .3s;
    -o-transition-duration: .3s;
    transition-duration: .3s;
    width: intrinsic;
    width: -moz-max-content;
    width: -webkit-max-content;
    max-width: 100%;
    outline: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    overflow: hidden;
    -webkit-transition-property: -webkit-filter;
    transition-property: -webkit-filter;
    -o-transition-property: filter;
    transition-property: filter;
    transition-property: filter,-webkit-filter;
    transition-duration: .3s;
    transition-timing-function: linear
}

.btn:focus,.btn:hover {
    cursor: pointer;
    opacity: 1;
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1)
}

.btn--animation::before {
    content: "";
    position: absolute;
    height: 150px;
    width: 40px;
    background: #fff;
    -webkit-filter: blur(10px);
    filter: blur(10px);
    left: -100px;
    top: -40px;
    -webkit-transform: rotate(37deg);
    -ms-transform: rotate(37deg);
    transform: rotate(37deg);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    opacity: .6;
    -webkit-animation: btn 2s linear 0s infinite;
    animation: btn 2s linear 0s infinite
}

.btn--animation:hover::before {
    left: 110%
}

.btn--animation-2::before {
    content: "";
    position: absolute;
    height: 200px;
    width: 60px;
    background: #fff;
    -webkit-filter: blur(10px);
    filter: blur(10px);
    left: -120px;
    top: -40px;
    -webkit-transform: rotate(37deg);
    -ms-transform: rotate(37deg);
    transform: rotate(37deg);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    opacity: .6;
    -webkit-animation: button 2s linear 1s infinite;
    animation: button 2s linear 1s infinite
}

.btn--animation-2:hover::before {
    left: 110%
}

.btn--large {
    font-size: 15px;
    line-height: 17px;

    font-weight: 700;
    text-transform: uppercase;
    min-height: 56px;
    max-height: 56px;
    padding: 0 28px;
    border-radius: 28px;
    background-color: #F21010;
    color: #fff
}

.btn--big-size {
    font-size: 18px;
    line-height: 20px;

    font-weight: 700;
    text-transform: uppercase;
    min-height: 98px;
    max-height: 98px;
    padding: 0 10px;
    width: 318px;
    border-radius: 40px;
    background-color: #F21010;
    color: #fff
}

.btn--size-sm {
    font-size: 15px;
    line-height: 16px;

    font-weight: 700;
    text-transform: uppercase;
    min-height: 44px;
    max-height: 44px;
    width: 143px;
    padding: 0 10px;
    border-radius: 22px;
    background-color: #F21010;
    color: #fff
}
.btn a
{
	color:#fff;
}
.block-form__inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 40px;
}
.m-input {
    width: 100%;
    max-width:300px;
    margin-bottom:5px;
    height: 56px;
    background-color: #fff;
    border: none;
    outline: none;
    color: #000;
    padding-left:15px;
    position: relative;
    z-index: 0;
    width: 100%;
    border-radius:5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    -webkit-transition-property: border-color;
    -o-transition-property: border-color;
    transition-property: border-color;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;

}
.m-input2 {
    width: 100%;
    height: 200px;
        max-width:300px;
            margin-bottom:5px;
    background-color: #fff;
    border: none;
    outline: none;
    color: #000;
    padding-left:15px;
    position: relative;
    z-index: 0;
    width: 100%;
    border-radius:5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    -webkit-transition-property: border-color;
    -o-transition-property: border-color;
    transition-property: border-color;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;

}
.modal-wrapper-desktop, .modal-wrapper-mobile{
  background-color:#fff;
  background-position:center;
  background-size:cover;
}
.modal-wrapper-mobile {
  display:none;
}
.modal-wrapper-desktop {
  display:block;
}
.modal-wrapper .modal-close{
  width:20px;
  position:absolute;
  right:20px;
  height:20px;
  cursor:pointer;
  background-size: contain;
  background-repeat:no-repeat;
  background-image:url('close.png');
}
.modal-wrapper .modal-content{

}
.modal-error {
  color:yellow;
  margin-left:10px;
  height:auto;
  min-height:0px;
  display:flex;
}
.sdvig
{
	    margin: 0 auto;
    margin-top: 470px;
}
.modal-loading {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.5);
    top: 0;
    margin-left: -20px;
}
@media (max-width: 768px) {
  .modal-wrapper, .modal-wrapper-desktop, .modal-wrapper-mobile{
    width: 320px;
    height:450px;
    margin-top:-250px;
    margin-left:-160px;
  }
  .modal-wrapper-mobile{
    display:block;
  }
  .modal-wrapper-desktop {
    display:none;
  }
  .m-input {
    width: 100%;
    max-width:300px;
    height: 26px;
    background-color: #fff;
    border: none;
    outline: none;
    color: #000;
    padding-left:15px;
    position: relative;
    z-index: 0;
    width: 100%;
    border-radius:5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    -webkit-transition-property: border-color;
    -o-transition-property: border-color;
    transition-property: border-color;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;

}
.m-input2 {
    width: 100%;
    height: 80px;
        max-width:300px;
    background-color: #fff;
    border: none;
    outline: none;
    color: #000;
    padding-left:15px;
    position: relative;
    z-index: 0;
    width: 100%;
    border-radius:5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    -webkit-transition-property: border-color;
    -o-transition-property: border-color;
    transition-property: border-color;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;

}
.sdvig
{
	    margin: 0 auto;
    margin-top: 345px;
}
}
.modal-content--hidden {
  display:none;
}
.sst
{
 color:#fff;
 padding-top:20px;
	}
.sst .h3
{
 color:#fff;
 font-size:24px;
	}
.sst p
{
	color:#fff;
	width:100%;
	max-width:300px;
	font-size:18px;
}
