/* === GLOBAL RESETS & ELEMENTS === */
* {
    outline: none;
}

html {
    font-size: 100%;
    height: 100%;
}

body {
    min-height: 100vh; 
    font-size: 1.125rem;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
    color: #000;
    line-height: 1;
    margin: 0;
    overflow-x: hidden;
    background: #f9f9fc;
    position: relative;
    display: flex;
    flex-direction: column;
}

a {
    color: #929292;
    transition: all 0.5s ease;
    text-decoration: none !important;
}

a:hover {
    color: #179d86;
}

/* === STICKY FOOTER LAYOUT === */
.main-content {
    flex-grow: 1;
    background: #f9f9fc;
    padding-left: 2.5rem;
    padding-right: 1.5625rem;
    padding-bottom: 1.875rem;
    padding-top: 1.5625rem;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
}

h1 {
    font-size: 2.4375rem;
    color: #158f7a;
    margin: 1.375rem 0;
    margin-top: 0px;
    position: relative;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.625rem;
    color: #158f7a;
    margin: 0;
    padding: 0.9375rem 0 2.8125rem 0;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
    margin-bottom: 1.875rem;
}

/* === REUSABLE COMPONENT: CONTENT BOX === */
.content-box {
    padding: 1.25rem 1.25rem 0.9375rem 1.25rem;
    background: #fff;
    border: 0;
    box-shadow: 0px 0px 18px rgba(69, 92, 199, 0.1);
    position: relative;
}

.content-box .content-head {
    position: relative;
    margin: 0px 0 30px 0;
    border-bottom: 1px solid #ededed;
}

.content-box .content-head h2 {
    font-weight: 300;
    padding-bottom: 0.875rem;
    padding-top: 0;
}

.content-box .content-head:after {
    position: absolute;
    content: "";
    width: 50px;       
    height: 75px;
    background: url("/static/dashboard/images/icons/five-dots-icon.png") no-repeat center center;
    background-size: contain;
    top: 40%;
    right: 0px;
    transform: translateY(-50%);
}

input[type='checkbox'] {
    display: inline-block;
    appearance: checkbox;
    width: 20px;
    height: 20px;
    accent-color: #179d86;    
    vertical-align: middle;
    margin: 0;
}

[dir="rtl"] .content-box .content-head:after {
    right: auto;
    left: 0px;
}

/* === REUSABLE COMPONENT: BUTTONS === */
.btn {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    display: inline-block;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 0;
    outline: none;
    line-height: 1;
    border-radius: 50px;
    transition: all .5s ease;
    font-size: 1.0625rem;
    min-width: 135px;
    text-align: center;
    color: #fff;
    padding: 0.6875rem 1.25rem;
    width: auto;
}

.btn.btn-default {
    background: #158f7a
}

.btn.btn-default:hover {
    opacity: .8;
    color: #fff
}

.btn.btn-default:focus {
    box-shadow: 0 0 0 .2rem rgb(21 143 122 / .61)
}

.btn.btn-primary {
    background: #dbb086
}

.btn.btn-primary:focus {
    box-shadow: 0 0 0 .2rem rgb(219 176 134 / .53)
}

.btn.btn-primary:not(:disabled):hover {
    opacity: .8;
    color: #fff
}

/* Outline button variants - restore Bootstrap styling */
.btn.btn-outline-primary,
.btn.btn-outline-secondary,
.btn.btn-outline-success,
.btn.btn-outline-danger,
.btn.btn-outline-warning,
.btn.btn-outline-info {
    background: transparent;
    border: 1px solid;
    min-width: auto;
}

.btn.btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd;
}

.btn.btn-outline-primary:hover {
    background: #0d6efd;
    color: #fff;
}

.btn.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.btn.btn-outline-secondary:hover {
    background: #6c757d;
    color: #fff;
}

.btn.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}

.btn.btn-outline-danger:hover {
    background: #dc3545;
    color: #fff;
}

.btn.btn-outline-success {
    color: #198754;
    border-color: #198754;
}

.btn.btn-outline-success:hover {
    background: #198754;
    color: #fff;
}

.btn.btn-sm {
    font-size: 0.875rem;
    padding: 0.4rem 0.75rem;
    min-width: auto;
    border-radius: 0.25rem;
}

.button-row {
    text-align: center;
    margin: 2.1875rem 0 0rem 0;
    padding-top: 1.625rem;
    border-top: solid 1px #ededed;
    padding-bottom: 1.5625rem;
}

.inline-buttons {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}

.inline-buttons .btn:not(:last-child) {
    margin-right: 1.375rem;
}

[dir="rtl"] .inline-buttons .btn:not(:last-child) {
    margin-right: 0;
    margin-left: 1.375rem;
}

/* === REUSABLE COMPONENT: FORMS === */
form {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.25rem;
}

.control-label {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    color: #606161;
    margin-bottom: 0;
    text-transform: uppercase;
}

.form-control {
    height: 30px;
    font-size: 1.125rem;
    color: #333333;
    background-color: white;
    outline: none;
    padding: 6px 10px;
    border: 1px solid #d8d8d8;
    border-radius: 0px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #127c6a;
}

.form-select {
    border-radius: 0;
}

/* === REUSABLE COMPONENT: LANGUAGE SELECTOR === */
.lang-selector {
    font-family: 'DroidArabicKufiRegular';
}

/* === RESPONSIVE STYLES === */
@media screen and (max-width: 1200px) {
    html {
        font-size: 80%;
    }
}
@media screen and (max-width: 414px) {
    .button-row {
        margin: 1.25rem 0;
        margin-bottom: 0px;
    }
}

.btn .material-icons {
    line-height: 16px;
    padding-right: 0;
    vertical-align: top
}

#sub_list {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  transform: translateY(100%);
  background: white;
  z-index: 100;
  box-shadow: 1px 1px 12px 1px rgba(53, 71, 153, 0.2);
}

#sub_list .item {
  position: relative;
  padding: 10px;
  font-size: 1rem;
  cursor: pointer;
  border-bottom: solid 1px #f8f8f8;
  transition: 0.2s;
}

#sub_list .item:hover {
  color: #158f7a;
}

#sub_list .item:hover:before {
  position: absolute;
  background-color: #158f7a;
  content: "";
  width: 3px;
  height: 100%;
  top: 0;
  left: 0;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #158f7a;
}

.select2-container--default .select2-selection--single {
    background: transparent;
    border: 0;
}

.select2-container--default .select2-selection--single:focus {
    outline: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #989898 !important;
    font-size: 1.25rem;
    line-height: 22px;
    padding: 2px 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered span img {
    margin-top: -5px;
}

.select2-container {
    width: 100% !important;
    outline: none;
}

.select2-container:focus {
    outline: none;
    box-shadow: none;
}

.select2-container--open .select2-dropdown--below {
    border: 0;
    margin-top: 0.625rem;
    box-shadow: 1px 1px 12px 1px rgba(53, 71, 153, 0.2);
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #d8d8d8;
}

.select2-container--default .select2-results__option {
    font-family: 'Source Sans Pro', 'DroidArabicKufiRegular';
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #179d86 !important;
    color: white !important;
    font-family: 'Source Sans Pro', 'DroidArabicKufiRegular';
}

.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #d8d8d8;
    border-radius: 0;
    cursor: text;
    height: auto;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #1e8b7b;
    color: #fefefe;
    font-size: 1.25rem;
    border-radius: 0;
    border: 0;
    padding-bottom: 4px;
    font-family: 'Source Sans Pro', 'DroidArabicKufiRegular';
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #ffffff;
    font-weight: 400;
    margin-left: 5px;
    float: right;
    margin-right: 0;
    font-size: 1rem;
    margin-top: 4px;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #f7f7f7 !important;
    cursor: not-allowed !important;
}

.text-danger span.select2 {
    border-color: #dc3545 !important;
    border-style: solid;
    border-width: 1px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 6px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: 0px;
    border-top: 5px solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    color: #179d86;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #179d86 transparent;
    border-width: 0 5px 5px 5px;
}

.form-group .telephone .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 1rem;
    color: #333333 !important;
}

.placeholder-image {
    opacity: 0.6;
}

.form-group.row {
    align-items: center;
}

/* --- Custom Pagination Styles --- */
ul.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
}

ul.pagination li {
    list-style: none;
}

ul.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s ease;
}

ul.pagination li a:hover {
    background-color: #f1f1f1;
    color: #179d86;
}

ul.pagination li.active a {
    background-color: #179d86;
    color: #fff;
    box-shadow: 0 2px 6px rgba(23, 157, 134, 0.35);
}

ul.pagination li a .material-icons {
    font-size: 1.25rem;
}

ul.pagination li a.arrows {
    background-color: transparent;
    color: #179d86;
}

ul.pagination li a.arrows:hover {
    background-color: #f1f1f1;
    color: #179d86;
}

ul.pagination li.disabled a,
ul.pagination li a.disabled,
ul.pagination li a[href="#"] {
    color: #ccc;
    background-color: #f8f9fa;
    border-color: #e9ecef;
    pointer-events: none;
    cursor: not-allowed;
}

.endless_separator {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: #999;
    font-weight: 500;
    letter-spacing: 2px;
}

.table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.paging-label {
    font-size: 1rem;
    color: #606161;
    font-weight: 300;
}

.quill-wrapper {
    position: relative;
}

.rich-editor {
    display: none !important;
}

.quill-editor-container {
    background: white;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.ql-toolbar.ql-snow {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    background: #f8f9fa;
}

.ql-container.ql-snow {
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    min-height: 150px;
    font-size: 14px;
}

.ql-editor {
    min-height: 150px;
}

/* RTL support */
.ql-editor[dir="rtl"] {
    text-align: right;
}

.ql-editor[dir="ltr"] {
    text-align: left;
}

/* Ensure consistent text colors inside Quill editor */
.ql-editor,
.ql-editor p,
.ql-editor li,
.ql-editor span {
    color: #333333;
}

.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
    color: #333333;
}

/* RTL list styling for Arabic */
.ql-editor[dir="rtl"] ol,
.ql-editor[dir="rtl"] ul {
    padding-left: 0;
    padding-right: 1.5em;
}

.ql-editor[dir="rtl"] li {
    padding-left: 0;
    padding-right: 1.5em;
}

.ql-editor[dir="rtl"] li::before {
    margin-left: 0.3em;
    margin-right: -1.5em;
    text-align: right;
}

/* Quill Font Size Dropdown Labels */
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
    content: 'Normal';
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="10px"]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="10px"]::before {
    content: '10px';
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="12px"]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="12px"]::before {
    content: '12px';
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="14px"]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="14px"]::before {
    content: '14px';
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="16px"]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="16px"]::before {
    content: '16px';
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="18px"]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="18px"]::before {
    content: '18px';
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="20px"]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="20px"]::before {
    content: '20px';
    font-weight: bold;
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="24px"]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="24px"]::before {
    content: '24px';
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="28px"]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="28px"]::before {
    content: '28px';
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="32px"]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="32px"]::before {
    content: '32px';
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="36px"]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="36px"]::before {
    content: '36px';
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="48px"]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="48px"]::before {
    content: '48px';
}

/* Quill toolbar styling */
.quill-wrapper .ql-container {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.quill-wrapper .ql-toolbar {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background-color: #f8f9fa;
}

/* === LIST RESETS === */
ol,
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* === COMMON TABLE STYLES === */
.custom-table {
    display: table;
    width: 100%;
    margin-top: 0;
}

.custom-table .thead {
    background-color: #ededed;
}

.custom-table .thead .trow .table-cell {
    font-weight: 400;
    padding: 19px 5px;
}

.custom-table .trow {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-bottom: 1px solid #ededed;
}

.custom-table .trow:nth-child(even) {
    background: #fafafa;
}

.custom-table .trow .table-cell {
    display: table-cell;
    padding: 14px 8px;
    font-size: 0.925rem;
    font-weight: 300;
    color: #000;
    word-wrap: break-word;
}

@media screen and (min-width: 1600px) {
    .custom-table .trow .table-cell {
        font-size: 1rem;
    }
}

.custom-table .trow .table-cell:first-child {
    padding-left: 1.0625rem;
}

.custom-table .trow .table-cell:first-child a {
    color: #000;
}

.custom-table .trow .table-cell:first-child a:hover {
    color: #158f7a;
}

.custom-table .trow .table-cell label {
    margin-bottom: 0;
}

.custom-table .trow .table-cell[data-label="Actions"] {
    vertical-align: middle;
    gap: 0.5rem;
}

/* === ACTION CONTROLS === */
ul.action-controls {
    display: inline-flex;
}

ul.action-controls li:not(:last-child) {
    margin-right: 0.4375rem;
}

ul.action-controls li a {
    background-color: #179d86;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.action-controls li a:hover {
    background-color: #dbb086;
}

ul.action-controls li a i {
    color: #fff;
    font-size: 1rem;
}

ul.action-controls div {
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.action-controls div a img {
    height: 30px;
    width: 40px;
}

/* === TABLE BUTTON ROW === */
.table-button-row {
    margin-bottom: 0.9375rem;
    margin-top: 0.9375rem;
    text-align: right;
}

.table-button-row h3 {
    padding-bottom: 0;
    padding-top: 0;
    line-height: 17px;
}

/* === SEARCH & FILTER COMPONENTS === */
.fields-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.icon-holder {
    position: relative;
}

.icon-holder .form-control,
.icon-holder .flatpickr-input {
    padding-left: 40px !important;
}

.icon-holder .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.icon-holder .icon .material-icons {
    font-size: 20px;
    vertical-align: middle;
}

.search-box {
    position: relative;
}

.search-box span {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb1c4;
    font-size: 1.5625rem;
}

.search-box span i {
    line-height: 32px;
}

/* === CHECKBOX & RADIO === */
.radio_dash {
    display: flex;
}

.checkbox-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
}

.checkbox-label-front {
    padding-left: 0 !important;
}

/* === BUTTON PRIMARY STATES === */
.btn:disabled {
    opacity: 0.4;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    background-color: #dbb086;
    border-color: #dbb086;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: none !important;
}

/* === BOOTSTRAP SELECT === */
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 100%;
    outline: none;
}

.bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
}

.bootstrap-select .dropdown-item {
    padding: 10px 20px;
    border-bottom: solid 1px #f8f8f8;
}

/* === EASY AUTOCOMPLETE === */
.easy-autocomplete {
    width: 100% !important;
}

/* === VALIDATION STYLES === */
.text-danger input,
.text-danger button {
    border-color: #dc3545 !important;
}

/* === RESPONSIVE TABLE (max-width: 991px) === */
@media screen and (max-width: 991px) {
    .responsive-table-big .thead {
        display: none;
    }

    .responsive-table-big .trow {
        display: block;
        border: solid 2px #eaeaea;
        border-bottom: 0;
        margin-bottom: 10px;
    }

    .responsive-table-big .trow:nth-child(even) {
        background: none;
    }

    .responsive-table-big .trow > .table-cell {
        display: flex !important;
        align-items: center;
        width: 100% !important;
        padding-left: 0 !important;
        border-bottom: solid 2px #dee2e6 !important;
        padding: 0;
    }

    .responsive-table-big .trow > .table-cell.actions:before {
        display: none;
    }

    .responsive-table-big .trow > .table-cell:before {
        color: #999;
        padding-left: 6px;
        text-align: left;
        font-weight: 400;
        font-size: 0.9375rem;
        content: attr(data-label);
        display: table-cell;
        width: 35%;
        border-right: solid 2px #dee2e6;
        vertical-align: middle;
        padding: 0.9375rem 0.625rem;
        margin-right: 0.9375rem;
        line-height: 1.3;
    }

    .responsive-table-big .trow > .table-cell:last-child {
        padding-right: 0;
        padding: 0.4375rem 0;
    }

    .responsive-table-big .trow > .table-cell:last-child:before {
        border: 0;
    }

    .responsive-table-big .trow > .table-cell:nth-child(even) {
        background: #fafafa;
    }
}

/* === RESPONSIVE TABLE (max-width: 767px) === */
@media screen and (max-width: 767px) {
    .responsive-table .trow {
        display: block;
        border: solid 2px #eaeaea;
        border-bottom: 0;
        margin-bottom: 10px;
    }

    .responsive-table .trow:nth-child(even) {
        background: none;
    }

    .responsive-table .trow > .table-cell {
        display: flex !important;
        align-items: center;
        width: 100% !important;
        padding-left: 0 !important;
        border-bottom: solid 2px #dee2e6 !important;
        padding: 0;
    }

    .responsive-table .trow > .table-cell:before {
        color: #999;
        padding-left: 6px;
        text-align: left;
        font-weight: 400;
        font-size: 0.9375rem;
        content: attr(data-label);
        display: table-cell;
        width: 35%;
        border-right: solid 2px #dee2e6;
        vertical-align: middle;
        padding: 0.9375rem 0.625rem;
        margin-right: 0.9375rem;
        line-height: 1.3;
    }

    .responsive-table .trow > .table-cell:last-child {
        padding-right: 0;
        padding: 0.4375rem 0;
    }

    .responsive-table .trow > .table-cell:last-child:before {
        border: 0;
    }

    .responsive-table .trow > .table-cell:nth-child(even) {
        background: #fafafa;
    }

    .control-label {
        margin-bottom: 0.75rem;
        margin-top: 0.75rem;
    }

    .inline-buttons .btn:not(:last-child) {
        margin-right: 0.5rem;
    }

    .content-box .content-head h2 a {
        margin-right: 0;
    }
}

@media screen and (max-width: 768px) {
    .inline-buttons .btn {
        margin-bottom: 0.5rem;
    }
}

@media screen and (max-width: 575px) {
    .table-button-row.d-flex {
        flex-direction: column;
    }

    .table-button-row h3 {
        margin-bottom: 1.25rem;
    }

    .margin-top-sm {
        margin-top: 1rem;
    }

    .content-box .content-head h2 a {
        float: none;
        display: block;
        max-width: 177px;
        margin-top: 1.25rem;
    }
}

@media screen and (max-width: 500px) {
    .inline-buttons.wrap-in-responsive {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (max-width: 450px) {
    .responsive-table-big.sm .trow > .table-cell:before {
        width: 28%;
    }
}

@media screen and (max-width: 414px) {
    .inline-buttons {
        justify-content: center;
    }
}

@media screen and (max-width: 400px) {
    .inline-buttons.wrap-in-responsive {
        flex-direction: column;
        display: inline-block;
    }

    .inline-buttons.wrap-in-responsive .btn {
        width: 100%;
    }
}

@media screen and (max-width: 350px) {
    .inline-buttons .btn {
        min-width: 110px;
    }
}

/* === TABLE WRAPPER RESPONSIVE === */
@media screen and (min-width: 991px) and (max-width: 1200px) {
    .table-wrapper {
        overflow: hidden;
        overflow-x: auto;
    }

    .table-wrapper > div {
        width: 1250px;
    }
}