.box-modal {
    position: relative;
    width: 500px;
    padding: 16px;
    background: #fafafa;
    color: #3c3c3c;
    font: 14px/18px Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
    box-shadow: 0 0 0 6px #f0f0f0;
}

@media screen and (max-width: 767px){
    .box-modal {
        width: 90% !important;
    }
}


.box-modal_close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 11px;
    line-height: 15px;
    color: #999;
    cursor: pointer;
    background: transparent url(cancel.svg) no-repeat 50% 50%;
    background-size: 66%;
    display: block;
    width: 25px;
    height: 25px;
    opacity: .3;
}

.box-modal_close:hover {
    color: #666;
    opacity: .6;
}

.box-modal_container-title {
    border-bottom: 1px solid #f0f0f0;
    font-size: 18px;
    margin: 0 -16px 20px;
    padding: 0 16px 16px;
}

.box-modal_container-title small {
    font-size: 0.7em;
    margin-top: 10px;
    display: block;
    color: #ac8f68;
}

.box-modal_container-title span {
    color: #333;
    margin-right: 10px;
}

.box-order-input,
.box-order-textarea {
    width:100%;
    margin: 5px 0 14px 0;
    padding: 10px;
   -webkit-appearance: none;
    border: none;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    background: #f1f1f1;
    border:1px solid #e1e1e1;
    font-size:1.1em;
    font-family:'Arimo', sans-serif;
}

.box-order-input:focus,
.box-order-textarea:focus {
    outline: none;
}

.orders-error {
    margin: -11px 3px 11px;
    color: #c72414;
}

.box-text-right {
    text-align: right;
}

.box-modal-button {
    padding: 0.4em 1em;
    display:inline-block;
    -moz-transition: 500ms ease-in;
    -o-transition: 500ms ease-in;
    -webkit-transition: 500ms ease-in;
    -ms-transition: 500ms ease-in;
    transition: 500ms ease-in;
    border: 0;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 300;
}

.box-modal-button:hover,
.box-modal-button:focus{
    cursor: pointer;
    background-color: #2A363B !important;
}

.box-order-success {
    background: #ac8f68;
    padding: 10px;
    margin-bottom: 14px;
    color: #fff;
    text-align: center;
    border-bottom: 4px solid #ccc;
}

.box-small {
    font-size: .9em;
    margin-top: 5px;
}