.products-under-order {
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-under-order .art {
    font-weight: 500;
    font-size: 14px;
    color: rgba(43, 45, 58, 0.7);
    display: block;
    margin-top: 6px;
}

.products-under-order .window-message {
    width: 465px;
    border-radius: 14px;
    overflow: hidden;
    background-color: #fff;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 32px;
    padding-bottom: 40px;
    position: relative;
    box-sizing: border-box;
}

.products-under-order-form {
    width: 100%;
}

.products-under-order .window-message-close {
    border: 0;
    background-color: transparent;
    display: block;
    position: absolute;
    padding: 0;
    margin: 0;
    top: 16px;
    right: 24px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.products-under-order .window-message-close svg {
    fill: var(--main-color-seventh);
    fill-opacity: 0.6;
}

.products-under-order .window-message-close:active svg {
    fill-opacity: 1;
}

.products-under-order .window-message-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: var(--main-color-seventh);
    margin-bottom: 24px;
    text-align: center;
}

.products-under-order .window-message-items {
    margin-bottom: 24px;
}

.products-under-order .window-message-item-name, .products-under-order .window-message-item-pic {
    font-weight: 500;
    font-size: 16px;
    text-align: left;
    vertical-align: middle;
    letter-spacing: -0.02em;
    color: var(--main-color-seventh);
}

.products-under-order .window-message-item-pic {
    padding-right: 32px;
}

.products-under-order .window-message-item-pic img {
    margin: 0;
}

.products-under-order-form .textinput {
    width: 97%;
}

.products-under-order-form .captcha_td_input .captchainput {
    width: 82px;
}

.products-under-order-form .submit {
    background: var(--main-color);
    text-align: center;
    color: #fff;
    border: none;
    border-radius: 8px;
    box-sizing: border-box;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    display: block;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    cursor: pointer;
    margin-top: 8px;
}

.products-under-order-form .submit:hover {
    background-color: var(--main-color-hover);
}

.error.error_message ul li {
    margin-bottom: 6px;
}

.error.error_message ul {
    margin-top: 6px;
}

.products-under-order-form input[type="text"], 
.products-under-order-form input[type="password"], 
.products-under-order-form textarea, 
.products-under-order-form select {
    display: block;
    width: 100%;
    border: 1px solid rgba(43, 45, 58, 0.2);
    box-sizing: border-box;
    border-radius: 8px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
    margin-bottom: 16px;
    background-color: #ffffff;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    color: var(--main-color-seventh);
}

.products-under-order-form input[type="text"]:hover,
.products-under-order-form input[type="password"]:hover,
.products-under-order-form textarea:hover,
.products-under-order-form select:hover {
    border: 1px solid var(--main-color);
}

.products-under-order-form input[type="text"]:focus,
.products-under-order-form input[type="password"]:focus,
.products-under-order-form textarea:focus,
.products-under-order-form select:focus {
    border: 1px solid var(--main-color);
}

.products-under-order-form input[type="text"]::placeholder,
.products-under-order-form input[type="password"]::placeholder,
.products-under-order-form textarea::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: rgba(43, 45, 58, 0.5);
}



.product-info .price .under-order {
    font-weight: 600;
    font-size: 28px;
    display: block;
    margin-bottom: 16px;
}

.products-under-order-form .textarea {
    height: 88px;
    resize: none;
}

@media (min-width: 1024px) {
    .products-under-order .window-message-close:hover svg {
        fill-opacity: 1;
    }
}
