.box-modal {
    background: #fff;
    color: #3c3c3c;
    font: 14px/18px Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
    max-width: 1000px;
    padding: 16px;
    position: relative;
    width: auto;
    box-shadow: 0 3px 3px rgba(0, 0, 0, .3);
}

.box-modal__close {
    position: absolute;
    right: 13px;
    top: 16px;
    font-size: 22px;
    line-height: 15px;
    color: #f1f1f1;
    cursor: pointer;
}

.box-modal__close:hover {
    color: rgba(255, 255, 255, .5);
}

.box-modal__header {
    border-bottom: 1px solid #ccc;
    margin: -16px -16px 0;
    padding: 16px 40px 16px 16px;
    position: relative;
    background: #33ccff;
    color: #fff;
}

.box-modal__header_title {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.box-modal__body {
    margin: 0 -16px 0;
}

.box-modal__body .table-price {
    width: 100%;
    margin-bottom: -10px !important;
}

.box-modal__body .table-price th {
    padding: 11px 16px;
    background: #f5f5f5;
}


.box-modal__body .table-price td {
    padding: 12px 16px;
}

.box-modal__body .table-price tr:nth-child(even) {
    background: #fdfdfd;
}

.box-modal__body .table-price tr:hover {
    background: #f1f1f1;
}

.box-modal__body {
    padding: 20px;
}

/* Support devices XS
----------------------------------------------------------*/
@media (max-width: 767px) {
    .box-modal__body .table-price,
    .box-modal__body .table-price th,
    .box-modal__body .table-price td {
        display: block;
        width: 100% !important;
        text-align: center !important;
    }

    .box-modal__body .table-price th:last-child {
        display: none !important;
    }
}

/* Support devices SM
----------------------------------------------------------*/
@media (min-width: 768px) {
    /* The some stylesheet */
}

/* Support devices MD
----------------------------------------------------------*/
@media (min-width: 992px) {
    .box-modal__body .table-price {
        width: 900px;
    }
}

/* Support devices LG
----------------------------------------------------------*/
@media (min-width: 1200px) {
    /* The some stylesheet */
}