.price-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.price-dots {
    flex-grow: 1;
    border-bottom: 2px dotted currentColor;
    margin: 0 10px;
}
.price-block+p{
    text-align: left;
}
.check-block ul{
    list-style-type: '\2713';
}
.check-block ul li{
    font-size: 1.1em;
    margin-bottom: 5px;
    margin-left: 15px;
    padding-left: 5px;
    text-align: left;
}
.steps-block ol {
    list-style: none;
    counter-reset: step-reset;
    padding-left: 0;
}

.steps-block ol li {
    counter-increment: step-reset;
    position: relative;
    font-size: 1.4em;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
}

.steps-block ol li::before {
    content: counter(step-reset);
    color: #ff4500;
    font-weight: bold;
    margin-right: 8px;
    background-color: #f2d1a5;
    border-radius: 50%;
    display: inline-flex;
    font-size: 1.4em;
    width: 2em;
    height: 2em;
    align-items: center;
    justify-content: center;
    padding: 10px;
    line-height: 1;
}

.form-detail.big-subscribe .form-group {
    display: flex;
}
.form-detail.big-subscribe .form-group>*{
    margin: 10px
}
@media (max-width: 768px){
    .form-detail.big-subscribe .form-group {
        flex-wrap: wrap;
        justify-content: center;
    }
}
.screen-reader-response,
.wpcf7-not-valid-tip{
    display: none!important;
}

form.wpcf7-form{position: relative}
form.wpcf7-form.loading,
form.wpcf7-form.submitting{
    pointer-events: none;
}

form.wpcf7-form:after{
    content: "";
    z-index: 2;
    display: block;
    position: absolute;
    inset: -20px;
    background-color: rgba(255,255,255,.4);
    background-image: url(../images/loading.svg);
    background-size: 40% 40%;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 7px;
    pointer-events: none;
    opacity: 0;
}
form.wpcf7-form.loading:after,
form.wpcf7-form.submitting:after{
    pointer-events: auto;
    opacity: 1;
}
.wpcf7-response-output{
    margin-top: 25px;
    font-size: 1.2em;
}
.footer-form input[type=submit]{
    margin: 15px 0;
    width: 100%;
}