body {
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
    font-family: 'Roboto', sans-serif;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}
* {
    outline: none;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.text-center {
    text-align: center;
}
.m-top {
    margin-top: 40px;
}

.item {
    margin-top: 60px;
    margin-bottom: 40px;
    display: none;
}
.back-btn {
    position: absolute;
    left: 15px;
    top: 0;
    font-size: 14px;
    font-weight: 400;
}
.back-btn svg {
    margin-right: 10px;
    height: 11px;
}
.next-btn {
    box-shadow: 0px 10px 40px #F9CADF;
    border-radius: 18px;
    font-size: 30px;
    color: #fff;
    background-color: #F9CADF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 400px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}
.next-btn__error {
    color: red;
    font-size: 12px;
    display: none;
}
.next-btn__error.active {
    display: inline-block;
}
.submit-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.submit-btn>span {
    color: red;
    font-size: 12px;
    display: none;
}
.submit-btn>span.active {
    display: inline-block;
}
/* .next-btn.active {
    background-color: #f69ec6;
} */

#start {
    display: none;
}
.active#start {
    display: block;
}
.wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    position: relative;
    padding-right: 15px;
}
.header {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 20px;
}
.header img {
    width: 300px;
}

.targets {
    display: flex;
    justify-content: center;
    width: 100%;
}
.targets__item {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 20px;
}
.targets__wrapper {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0px 0px 50px #00000029;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}
.targets__item span {
    font-size: 30px;
    line-height: 36px;
    font-weight: 300;
    display: block;
    margin-bottom: 20px;
}
.targets__item svg {
    max-width: 100%;
    height: auto;
}

.top-title {
    text-align: center;
    display: block;
    font-size: 30px;
    font-weight: 300;
}
.top-subtitle {
    display: block;
    text-align: center;
    font-size: 18px;
    position: relative;
    margin-top: 10px;
    padding-bottom: 40px;
    overflow: hidden;
}
.top-subtitle svg {
    position: absolute;
    left: 46%;
    bottom: 0;
    max-width: 100%;
    height: auto;
}
.form-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    margin-bottom: 20px;
}
.questions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}
.question {
    display: flex;
}
.question__number {
    background-color: #F9CADF;
    border-radius: 50%;
    color: #fff;
    width: 45px;
    min-width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}
.question-title {
    margin-top: 10px;
    display: block;
}
.question__items {
    display: flex;
    flex-direction: column;
}
.question__heading {
    margin-top: 15px;
}
.question__heading label,
.question__heading {
    display: flex;
    align-items: center;
}
.question__heading p {
    margin: 0 0 0 0;
    font-weight: 500;
}
.question__item--first,
.question__item-new {
    display: none;
}
.question__heading input {
    margin-left: 20px;
}
.question__item {
    margin-top: 20px;
}
.question__item-title {
    display: block;
    margin-bottom: 10px;
}
.question__item label {
    margin-right: 20px;
}
.question__item label input {
    margin-right: 10px;
    position: relative;
    top: -1px;
}
.question__item.required {
    border-bottom: 1px solid red;
}
.question__item input[type='text'] {
    border: none;
    border-bottom: 1px dotted #000;
    padding: 3px;
    margin-left: 2px;
}
.question__item input[type='text'].required {
    border-bottom: 1px dotted red;
}

input[type="date"] {
    max-height: 52px;
    background-color: #fff;
}
input[type="date"]:not(.has-value):before{
    content: attr(placeholder);
    color: rgba(0,0,0, .3);
    margin-right: 5px;
}

.lang.active {
    display: block;
}
.lang-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-items: baseline;
}
.lang-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 60px auto 40px auto;
    box-shadow: 0px 0px 50px #00000029;
    border-radius: 18px;
    padding: 40px 60px 60px 60px;
}
.lang-item span {
    display: block;
    margin: 5px 0;
}
.lang-btns {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.lang-btns button {
    border: none;
    background-color: transparent;
    color: transparent;
    font-size: 0;
    margin: 2px 10px;
    border: 2px solid transparent;
    border-radius: 6px;
}
.lang-btns button.active {
    border: 2px solid rgb(43, 209, 43);
}

.qr.active {
    display: block;
}
.qr-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}
.qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.qr-item span {
    display: block;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 60px;
    position: relative;
}
.qr-item span svg {
    position: absolute;
    bottom: -30px;
    right: -80px;
    max-width: 100%;
    height: auto;
}
.qr-item figure {
    position: relative;
}
.qr-item figure svg {
    position: absolute;
    left: -70px;
    top: 130px;
    max-width: 100%;
    height: auto;
}
.qr-item figure img {
    width: 300px;
}

.item.active {
    display: block;
}
.tattoo__second .question__item {
    padding-left: 30px;
}

.datas.active {
    display: block;
}
.datas .top-title {
    display: none;
}
.datas .top-title.active {
    display: block;
}
.datas-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}
.datas-content input {
    border: 1px solid #E5E5E5;
    border-radius: 18px;
    font-size: 16px;
    color: #000;
    display: inline-block;
    width: 400px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    padding: 15px 15px;
}
.datas-content input::placeholder {
    color: rgba(0,0,0, .3)
}
.datas-content input.required {
    border-color: red;
}
.datas-content .next-btn {
    margin-top: 40px;
}

.consent {
    margin-top: 40px;
}

.signature {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.signature__wrapper {
    border: 1px solid #E5E5E5;
    border-radius: 18px;
    height: 120px;
    padding: 4px;
}
.signature__wrapper.required {
    border: 1px solid red;
}
.signature__wrapper.disabled,
.signature__wrapper.required.disabled {
    border: 2px solid rgb(43, 209, 43);
}
.signature__item {
    border: none !important;
    width: 400px;
    height: 100%;
    max-width: 100%;
}
.signature__item canvas {
    height: 100%;
}
.signature__title {
    display: block;
    margin-left: auto;
    font-size: 14px;
}
.signature__btns {
    display: flex;
    justify-content: space-between;
    width: 400px;
    margin-top: 5px;
    max-width: 100%;
}
.signature__btns span {
    font-size: 14px;
    color: #ff99c7;
    font-weight:500;
    padding: 2px 3px;
    cursor: pointer;
}
.signature__output {
    visibility: hidden;
    position: absolute;
    z-index: -9;
}
.signature__date {
    color: #ff99c7;
    font-weight: 500;
}
.signature img {
    visibility: hidden;
    position: absolute;
    z-index: -9;
}
.consent-input {
    border: none;
    border-bottom: 1px dotted #000;
    font-size: 16px;
    color: #000;
    display: inline-block;
    padding: 3px;
    margin: 0 5px;
}
.consent-input.required {
    border-bottom: 1px dotted red;
}

.info-data {
    margin-top: 60px;
}

.progress-wrapper {
    padding-left: 15px;
    padding-right: 15px;
}
.progress {
    margin-top: 60px;
    max-width: 100%;
    width: 1090px;
    max-width: 100%;
    border: 1px solid #E5E5E5;
    border-radius: 5px;
    height: 10px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.progress span {
    border-radius: 5px;
    height: 10px;
    background-color: #E5E5E5;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}
.lang .progress span {
    width: 20%;
}
.qr .progress span {
    width: 40%;
}
.datas .progress span {
    width: 50%;
}
.makeup__first .progress span,
.laser__first .progress span,
.tattoo__first .progress span {
    width: 70%;
}
.tattoo__second .progress span {
    width: 90%;
}
.makeup__second .progress span,
.laser__second .progress span,
.tattoo__third .progress span {
    width: 100%;
}


/* @ @ MEDIA START @ @  */
@media(max-width: 1280px) {
    .targets__item span {
        font-size: 22px;
        line-height: 32px;
    }
}
@media(max-width: 1070px) {
    .targets__item span {
        font-size: 24px;
        line-height: 34px;
    }
}
@media(min-width: 993px) {
 
}
@media(max-width: 992px) {
    .question__item input[type='text'] {
        margin-bottom: 15px;
    }
    .next-btn {
        font-size: 20px;
        line-height: 24px;
        height: 55px;
    }

    .targets__item {
        padding: 10px;
    }
    .targets__item span {
        font-size: 20px;
        line-height: 30px;
    }
}
@media(max-width: 767px) {
    .marg-top-big {
        margin-top: 60px;
    }

    .top-title {
        padding-top: 60px;
        font-size: 28px;
    }

    .targets {
        flex-wrap: wrap;
    }
    .targets__item {
        flex: 0 0 50%;
        max-width: 50%;
    }


    .question__item label {
        display: flex;
    }
    
  }
@media(max-width: 501px) {
    .targets__item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* @ @ MEDIA END @ @  */