html {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

a * {
    color: inherit;
    font: inherit;
}

body {
    min-width: inherit;
    max-width: inherit;
}

.order-form {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.order-form *, .order-form *:before, .order-form *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

.order-form, .order-form * {
    font-family: 'RotondaC', Arial, sans-serif;
}

.order-form {
    display: inline-block;
    padding: 2rem;
    color: #fff;
    font-size: 20px;
    text-align: center;
}

.order-form a {
    color: #fff;
}

.order-form_title {
    margin: 0 0 .7em;
    color: #fff;
    font-size: 38px;
    text-align: center;
}

.order-form_title2 {
    margin: 0 0 24px;
    color: #fff;
    font-size: 20px;
    line-height: 1em;
    text-align: center;
}

.order-form_row {
    margin: 0 0 15px;
}

.order-form_submit {
    margin: 15px 0 0;
}

.order-form_row > *, .order-form_submit > * {
    width: 100%;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.popup.is-shown {
    display: flex;
}

.popup_window_block {
    position: relative;
    margin: auto;
    padding: 10px 20px;
    max-width: 650px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .25);

    background: #36aee0;
    background: linear-gradient(to bottom, rgba(54, 173, 224, 1) 0%, rgba(138, 208, 235, 1) 50%, rgba(54, 173, 224, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#36ade0', endColorstr='#36ade0', GradientType=0);
}

.popup_window_block .order-form {
    background: none;
}

.popup_close {
    position: absolute;
    top: 17px;
    right: 17px;
    display: block;
    color: #fff;
    font-weight: bold;
    font-size: 34px;
    line-height: 1em;
    font-family: 'RotondaC', cursive;
    text-decoration: none;
}

.popup_close:hover {
    opacity: .7;
}

body.popup-shown {
    overflow: hidden;
}

.formfield2 {
    display: none !important;
    visibility: hidden;
}

.inp {
    padding: 8px 24px;
    color: #d90375;
    font-size: 20px;
    line-height: 1em;
    text-decoration: none;
    background: #fff;
    border: none;
    border-radius: 25px;
    outline: none;
}

.inp::placeholder {
    color: #c0c0c0;
}

/*.inp:focus {}*/
.inp_but, .inp_but:hover {
    padding: 4px 39px;
    color: #fff;
    font-size: 21px;
    text-decoration: none;
    background: #d90375;
    border: 3px solid #d90375;
    border-radius: 25px;
    outline: none;
    transition: .4s ease all;
}

.inp_but:hover {
    background: #53325a;
    border-color: #53325a;
}

/*.inp_but:focus {}*/
.inp_but, button, .img_captcha {
    cursor: pointer;
}

.t-form {
    text-align: center;
}

.t-tildalabel {
    height: 0;
    overflow: hidden;
}

.t-tildalabel__wrapper {
    margin: 0 0 0 auto;
}

.t-mbfix {
    pointer-events: none;
}

@media (max-width: 760px) {
    .popup_window_block {
        margin: 0 15px;
        padding: 10px 15px;
    }

    .order-form {
        padding: 25px 0;
        font-size: 17px;
    }

    .order-form_row {
        margin: 0 0 5px;
    }

    .order-form_title {
        font-size: 27px;
    }

    .inp {
        font-size: 17px;
    }

    .inp_but, .inp_but:hover {
        font-size: 19px;
    }
}
