/*
Generic Styling, for Desktops/Laptops
*/
table {
    width: 100%;
    border-collapse: collapse;
}
/* Zebra striping */
tr:nth-of-type(odd) {
    background: #eee;
}
th {
    background: #333;
    color: white;
    font-weight: bold;
}
td,
th {
    padding: 6px;
    border: 1px solid #ccc;
    /*text-align: left; */
}
.logo {
    margin: 5px 12px;
}
/*
 * Author: Thuan
 * DateCr: 10/11/2016
 */

.custom-tool {
    width: 100%;
    clear: both;
    float: left;
    margin-top: 5px;
    margin-bottom: 15px;
}
.open-panel-box {
    position: relative;
}
.open-panel-popup {
    display: none;
}
.open-panel-popup.active {
    display: block;
}
.close-panel {
    position: absolute;
    right: -10px;
    top: -10px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    text-align: center;
    line-height: 32px;
    color: #fff;
    border-radius: 50%;
    background: #717372 url(../img/close.png) no-repeat;
    background-size: 16px 16px;
    background-position: center center;
}

.form.register_form {
    clear: both;
}

.summary {
    display: flex;
    flex-wrap: wrap;
}

.summary-report {
    min-width: 65%;
}

.rate-report {
    min-width: 35%;
}

.summary-title {
    display: block;
    font-weight: bold;
    font-size: 30px;
}

.summary-label {
    width: 100%;
    height: 12px;
    border-bottom: 1px solid black;
    text-align: center;
    margin-bottom: 20px;
}
.summary-label span {
    background-color: white;
    padding: 0px 10px;
    font-size: 15px;
}
/*
* @author: duc.tuan
* @date: 2018-05-02 //Y-m-d
*/

/*
* end
*/

/*
* @author: sang.nguyen
* @date: 2024-22-11 //Y-m-d
*/
.custom-select2 .select2-container .select2-selection--single {
    height: 34px;
    border-radius: 4px !important;
}
.custom-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 4px;
}
.custom-select2 .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #555 transparent transparent transparent;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: #555 transparent transparent transparent;
    border-width: 5px 4px 0 4px;
}
.custom-select2 .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 34px;
}
.select2-container--open .select2-dropdown--below {
    min-width: 330px;
    top: 2px;
    border-top: solid 1px #c5c5c5;
    border-radius: 4px;
    padding-bottom: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.select2-container--default .select2-results>.select2-results__options {
    max-height: 55vh;
}
.select2-container--default .select2-results__group {
    font-weight: normal;
    color: #777;
    text-align: center;
}
.select2-container--default .select2-results__option .select2-results__option {
    padding: 2px 10px 2px 20px;
    border: solid 2px transparent;
}
.select2-container--default .select2-results__option.select2-results__option--selected {
    background-color: #f5f5f5;
    color: #000;
    border: solid 2px #000;
    border-radius: 4px !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #f5f5f5;
    color: #000;
}
.select2-container--open .select2-selection--single {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.select2-results__option {
    padding: 2px 6px;
}
/*
* end
*/
@media only screen and (max-width: 760px),
    (min-device-width: 768px) and (max-device-width: 1024px) {
    .custom-header {
        width: 100%;
    }

    /* Force table to not be like tables anymore */
    .lstTable table,
    .lstTable thead,
    .lstTable tbody,
    .lstTable th,
    .lstTable td,
    .lstTable tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .lstTable thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .lstTable tr {
        border: 1px solid #ccc;
    }

    .lstTable td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }

    .lstTable td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }
}
