.modal-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: scroll;
}

.modal-form {
    position: relative;
    width: 220px;
    background: #f9f9f9;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    border: 3px solid #ffd304;
}

.modal-form .title-form {
    font: 20px 'SourceSansPro-Semibold';
    color: #000;
    text-align: center;
    margin-bottom: 15px;
}

.modal-form .close {
    font: bold 18px Arial;
    color: #000;
    position: absolute;
    display: block;
    right: 20px;
    top: 10px;
    line-height: 1;
    cursor: pointer;
}

.modal-form form {

}

.modal-form label {
    display: block;
    font: 12px Arial;
    color: #222;
}

.modal-form .form-group {
    margin-bottom: 15px;
    position: relative;
}


.modal-form input[type="text"],
.modal-form select,
.modal-form textarea {
    border: 1px solid #e2dedb;
    height: 28px;
    padding: 0 5px;
    width: 200px;
    box-sizing: content-box;
}

.modal-form textarea {
    height: 100px;
    padding: 2px 5px;
}

.modal-form .product .name {
    font: 16px Arial;
    color: #222;
    margin-bottom: 10px;
}

.modal-form .product .photo {
    margin-bottom: 20px;
}

.modal-form .product .price {
    font: bold 14px Arial;
    color: #000;
}

.modal-form .product .price span {
    padding-right: 5px;
}

.modal-form input[type="submit"] {
    background: #25a5dd;
    border: none;
    font: 14px/28px Arial;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    height: 28px;
    width: 210px;
}

.modal-form input[type="submit"]:hover {
    background: #136caa;
}

.modal-form input[type="submit"]:active {
    font-size: 13px;
}

.modal-cont .product {
    float: left;
    width: 250px;
}

.modal-cont .form-group {
    position: relative;
}

#form-msg {
    background: #000;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px;
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 5000;
}
