.order-popup {
	display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000000;
    opacity: 0.6;
    z-index: 3;
}

.order-form {
	display: none;
    position: fixed;
    top: 10%;
    left: 50%;
    margin-left: -200px;
    width: 360px;
    z-index: 4;
    background: white;
    padding: 20px;
}

input.order-form__input {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-bottom: 15px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

input.order-form__input:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}

span.order-form__close {
    position: absolute;
    right: -35px;
    top: -26px;
    background-color: white;
    width: 65px;
    height: 65px;
    border-radius: 50px;
    font-size: 47px;
    cursor: pointer;
    text-align: center;
}

.order-form__title {
    font-size: 23px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.order-form__item_name {
    font-size: 16px;
    margin-bottom: 15px;
    border: 1px dashed gray;
    padding: 5px;
}

.order-form__submit {
    background: #005E00;
    color: white;
    width: 100%;
    padding: 10px 0px;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 28px;
    border: none;
}

.order-form__submit:hover {
    background: #FF744B;
}
