.banner__subtitle {
    font-size: 16px;
    color: #ff0000;
    background: #fff;
    font-weight: bold;
    float: left;
    padding: 10px 16px 9px;
    border-radius: 10px;
}
.full-owerlay {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 99999;
    background: #000000a1;
    top: 0;
    left: 0;
	display: none;
    align-items: center;
    justify-content: center;
}
.full-owerlay.show {
    display: flex;
}
.form-box {
    width: 400px;
    height: auto;
    background: #fff;
    padding: 0 25px;
    box-shadow: 0 0 25px #000;
    position: relative;
}
.full-owerlay .predfinal__form {
    width: 100%;
}
.close-btn {
    position: absolute;
    top: -36px;
    right: -36px;
	cursor: pointer;
}
.close-btn svg {
    width: 36px;
    height: 36px;
}
.form-box form {
    padding: 30px 25px 0 25px;
}

@media (max-width: 767px) {
.form-box {
    width: 330px;
    padding: 0;
}
}