/* -------- Product Options --------- */

.table-options {
    display: table;
    width: 100%;
}

.table-options .table-options__header {
    display: table-header-group;
    background-color: var(--blue-smooth);
    color: #fff;
}

.table-options .table-options__body {
    display: table-row-group;
}

.table-options .table-options__row {
    display: table-row;
}

.table-options .table-options__cell {
    display: table-cell;
    padding: 5px;
    position: relative;
}

.table-options .table-options__cell input.hide {
    visibility: hidden;
}

.table-options .table-options__cell.check {
    width: 50px;
}

.table-options .table-options__body .table-options__row {

}
.table-options .table-options__body .table-options__cell {
    padding: 10px 5px;
    border-bottom: 1px solid #8b776e;
    width: 50px;
}

.table-options .table-options__row:last-child .table-options__cell {
    border-bottom: none;
}

.table-options .table-options__cell input[type=radio]{
    display:none;
}

.table-options .table-options__cell input[type=radio] + label {
    box-shadow: 0 0 0 1pt #666;
    outline: none;
    transition: .1s;
    border: 2px solid #fff;
    background: none;
    border-radius: 50%;
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 15px;
}

.table-options .table-options__cell input[type=radio]:checked + label{
    background-color: #666;
}

.table-options .table-options__cell label {
    margin-bottom: 0;
}

/* ------ MODALS ------ */

.my-modal .modal-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    text-align: center;
    padding: 0;
}

.my-modal .modal-body p {
    padding: 30px;
    color: #000;
}

.my-modal .modal-body .modal-title {
    background: var(--blue);
    color: #fff;
    padding: 23px 0;
    font-weight: 300;
}

.my-modal .modal-body .modal-control {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 30px;
}

.my-modal .btn-modal-close {
    background: none;
    top: 15px;
    right: 10px;
}

.my-modal .btn-modal-close i {
    color: #fff;
}


.ajax_form span.error {
    position: absolute;
    width: 100%;
    font-size: 13px;
    font-weight: 400;
}

@media (max-width: 767px) {
    .ajax_form span.error {
        position: static;
    }
}
