﻿
/*ОБЩЕЕ*/

#background {
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9;
}

    #background > #window {
        position: relative;
        /* display: block; */
        padding: 30px 50px;
        background-color: white;
        border-radius: 5px;
        text-align: center;
        height: 80%;
        width: 1200px;
        overflow:auto;
    }

#background > #window > div {
    overflow-y: auto;
    min-height:400px;
}

#background > #window div img {
    display: block;
    margin: auto;
    min-height: 400px;
}

#window #exit {
    position: absolute;
    top: 11px;
    right: 11px;
    height: 17px;
    cursor: pointer;
}




/*КНОПКА ЗАКАЗА ФОРМЫ*/

[name='orderAssembly']{
    display: flex;
    flex-direction: column;
}

[name='orderAssembly'] label {
    color: red;
    font-size: 8pt;
    padding-left: 7px;
    line-height: 16pt;
}

[name='orderAssembly'] div:last-of-type {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
}

[name='orderAssembly'] > b {
    font-size: 20pt;
    text-align: center;
}

[name='orderAssembly'] input {
    outline:0;
}

[name='orderAssembly'] input[type="text"] {
    display: block;
    border: 1px solid;
    /* box-sizing: border-box; */
    border-radius: 0.1vw;
    height: 20pt;
    width: 480px;
    outline: 0;
    outline-offset: 0;
    font-size: 10pt;
    padding-left: 5px;
}

[name='orderAssembly'] > textarea {
    resize: none;
    width: 480px;
    height: 60px;
    border: 1px solid;
    font-size: 10pt;
    padding-left: 5px;
    outline: 0;
    outline-offset: 0;
}

[name='orderAssembly'] input[type="button"] {
    cursor: pointer;
    border-radius: 15px;
    background: black;
    border: none;
    color: white;
    font-size: 10.5pt;
    line-height: 23pt;
    padding: 0 23px;
    outline: 0;
    outline-offset: 0;
}
