*{
    box-sizing: border-box;
}

/* Invoice Item Discount Info */
.invoice-item-discount-info {
    font-size: 11px;
    color: #069;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}

.invoice-item-discount-info:hover {
    text-decoration: underline;
    color: #C00;
}

.invoice-item-discount-info .discount-info-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    line-height: 14px;
    text-align: center;
    background-color: #069;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    margin-right: 4px;
    vertical-align: middle;
}

.discountable-discount-tooltip-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.discountable-discount-tooltip-popup {
    position: fixed;
    z-index: 10000;
    background: white;
    border: 2px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 12px;
    max-width: 500px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.discountable-discount-tooltip {
    max-width: 500px;
    font-size: 12px;
}

.discountable-discount-tooltip .discount-group {
    margin-bottom: 15px;
}

.discountable-discount-tooltip .discount-group:last-child {
    margin-bottom: 0;
}

.discountable-discount-tooltip .discount-group-title {
    font-weight: bold;
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid #ccc;
}

.discountable-discount-tooltip .discount-group-title.applied {
    color: #5a801b;
}

.discountable-discount-tooltip .discount-group-title.not-applied {
    color: #D23333;
}

.discountable-discount-tooltip .discount-item {
    margin-bottom: 10px;
    padding: 8px;
    background-color: #f9f9f9;
    border-left: 3px solid #ddd;
}

.discountable-discount-tooltip .discount-item:last-child {
    margin-bottom: 0;
}

.discountable-discount-tooltip .discount-name {
    font-weight: bold;
    margin-bottom: 4px;
}

.discountable-discount-tooltip .discount-date {
    font-size: 10px;
    color: #666;
    margin-left: 8px;
}

.discountable-discount-tooltip .discount-values {
    margin: 4px 0;
    font-size: 11px;
}

.discountable-discount-tooltip .discount-value {
    display: inline-block;
    margin-right: 12px;
}

.discountable-discount-tooltip .discount-value-label {
    color: #666;
    margin-right: 4px;
}

.discountable-discount-tooltip .discount-value-amount {
    font-weight: bold;
}

.discountable-discount-tooltip .discount-value-amount.positive {
    color: #5a801b;
}

.discountable-discount-tooltip .discount-value-amount.negative {
    color: #D23333;
}

.discountable-discount-tooltip .discount-value-amount.zero {
    color: #666;
}

.discountable-discount-tooltip .discount-explanation {
    font-size: 10px;
    color: #666;
    margin-top: 4px;
    line-height: 1.4;
}

/** discountable info button **/
.discountable-discount-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #ced4da;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    color: #495057;
    transition: all 0.2s ease;
}

.discountable-discount-info:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: #adb5bd;
    color: #212529;
}

.discountable-discount-info.loading {
    opacity: 0.7;
    cursor: wait;
}

.discountable-discount-info .discount-info-icon {
    font-size: 14px;
}

.discount-empty-message {
    padding: 12px;
    text-align: center;
    color: #6c757d;
    font-style: italic;
}

.select2-container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    width: 100% !important;
}

.expand-content {
    position: relative;
}

.expand-content::after {
    content: '\21B4';
    color: rgb(172, 172, 172);
    font-weight: 700;
    transform: translateY(50%);
    font-size: 14px;
    position: absolute;
    bottom: 50%;
    right: 0;
}
@media (min-width: 576px) {
    .tags-filter .select2-container {
        max-width: 250px !important;
    }
}

.select2-container .select2-selection--single {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding: 8px 10px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
    position: relative;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px;
}

.select2-container .select2-selection--multiple {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline-block;
    overflow: hidden;
    padding-left: 8px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container .select2-search--inline {
    float: left;
}

.select2-container .select2-search--inline .select2-search__field {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 5px;
    padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.select2-dropdown {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

.select2-results {
    display: block;
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.select2-results__option {
    padding: 6px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
    cursor: pointer;
}

.select2-container--open .select2-dropdown {
    left: 0;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-search--dropdown {
    display: none;
    padding: 4px;
}

.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
    display: none;
}

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
    background-color: #acacac;
    border-bottom: 1px solid #d7d7d7;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: white;
    line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none;
}

.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
    padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #333;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
    float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid black 1px;
    outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
    padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
    color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em;
}

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

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 4px;
    outline: 0;
    background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), to(#eeeeee));
    background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(#cccccc));
    background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left: 1px;
    right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(50%, #eeeeee));
    background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(white));
    background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #555;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    float: right;
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.select2-container--classic .select2-dropdown {
    background-color: white;
    border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
    border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
    border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
    padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
    color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
    background-color: #3875d7;
    color: white;
}

.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb;
}

.select2-container .select2-selection__arrow {
    color: black;
    padding: 4px 12px;
}

.select2-container .select2-selection__arrow i {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.select2-container--open .fa-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
    font-family: sans-serif;
    /* 1 */
    line-height: 1.15;
    /* 2 */
    -ms-text-size-adjust: 100%;
    /* 3 */
    -webkit-text-size-adjust: 100%;
    /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
    margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
    display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
    /* 1 */
    display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
    margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
    background-color: transparent;
    /* 1 */
    -webkit-text-decoration-skip: objects;
    /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
    outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
    font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
    font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
    background-color: #ff0;
    color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
    display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
    border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
    overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
    font-family: sans-serif;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 1 */
    margin: 0;
    /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
    /* 1 */
    overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
    /* 1 */
    text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
    overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
    display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
    display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
    display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
    display: none;
}

/**
 * Set up a decent box model on the root element
 */
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

* {
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
}

body {
    min-height: 100vh;
}

body:after {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    background-image: url("../images/geometric.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.fixed-nav .nav {
    position: fixed;
    -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.19);
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.19);
    z-index: 15;
}
@media  only screen and (min-width: 1430px) {
    .fixed-nav .sub-nav-v2.fix {
        position: fixed;
        -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.19);
        box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.19);
        top: 66px;
        width: 100%;
        z-index: 10;
    }

    .fixed-nav .arrow-down.rotate i{
        transform: rotateX(180deg);
    }
    .fixed-nav .arrow-down {
        display: flex;
    }
}


.arrow-down {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translate(-50%, 0);
    background: red;
    color: #fff;
    font-weight: 700;
    width: 28px;
    display: none;
    justify-content: center;
    align-items: center;
    height: 28px;
    z-index: 20;
}
/**
 * Basic styles for images
 */
img {
    max-width: 100%;
}

* {
    outline: none !important;
}

/**
 * Basic styles for links
 */
a {
    color: black;
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

a:hover, a:active, a:focus {
    color: #e7c612;
    text-decoration: none;
}

@font-face {
    font-family: 'CenturyGothic';
    src: url("../app/fonts/CenturyGothic.eot?#iefix") format("embedded-opentype"), url("../app/fonts/CenturyGothic.woff") format("woff"), url("../app/fonts/CenturyGothic.ttf") format("truetype"), url("../app/fonts/CenturyGothic.svg#CenturyGothic") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CenturyGothic-Bold';
    src: url("../app/fonts/CenturyGothic-Bold.eot?#iefix") format("embedded-opentype"), url("../app/fonts/CenturyGothic-Bold.woff") format("woff"), url("../app/fonts/CenturyGothic-Bold.ttf") format("truetype"), url("../app/fonts/CenturyGothic-Bold.svg#CenturyGothic-Bold") format("svg");
    font-weight: normal;
    font-style: normal;
}

/**
 * Basic typography style for copy text
 */
body {
    font-size: 14px;
    line-height: 22px;
    font-family: 'Century Gothic';
}

@media (min-width: 990px) {
    body {
        font-size: 16px;
    }
}

h1, h2, h3 {
    font-family: 'Century Gothic';
    font-weight: normal;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 40px;
    color: white;
}

@media (min-width: 990px) {
    h1 {
        font-size: 38px;
        line-height: 42px;
    }
}

h2 {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 30px;
}

h3 {
    font-size: 16px;
    line-height: 28px;
}

h4 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

p {
    margin: 0;
    padding: 0;
    font-size: 12px;
    line-height: 22px;
}

@media (min-width: 990px) {
    p {
        font-size: 14px;
        line-height: 24px;
    }
}

.btn {
    font-family: 'Century Gothic';
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container {
    max-width: 100%;
    /* 1 */
    margin-left: auto;
    /* 2 */
    margin-right: auto;
    /* 2 */
    padding-left: 15px;
    /* 3 */
    padding-right: 15px;
    /* 3 */
    width: 100%;
    /* 1 */
}

.index-list {
    margin: 20px 0;
}

.index-list li {
    display: block;
    font-size: 20px;
}

.index-list a {
    color: black;
}

.index-list a:hover {
    color: #e7c612;
}

@-webkit-keyframes bounce {
    from {
        -webkit-transform: translateY(0px) translateX(-50%);
        transform: translateY(0px) translateX(-50%);
    }
    to {
        -webkit-transform: translateY(-5px) translateX(-50%);
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes bounce {
    from {
        -webkit-transform: translateY(0px) translateX(-50%);
        transform: translateY(0px) translateX(-50%);
    }
    to {
        -webkit-transform: translateY(-5px) translateX(-50%);
        transform: translateY(-5px) translateX(-50%);
    }
}

.hiddenelement {
    opacity: 0;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.header {
    border-bottom: 7px solid #998675;
}

.header__content {
    margin-top: 10px;
}

.header__content .header__logo {
    text-align: center;
}

.header__content .header__logo span {
    margin-left: 15px;
    display: inline-block;
    align-self: center;
    font-size: 19pt;
}

@media (min-width: 990px) {
    .header__content {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 3px 0;
    }

    .header__logo {
        margin: 0;
        display: inherit;
        min-height: 50px;
    }
}

.header .superadmin {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.header .superadmin i {
    font-size: 17px;
    color: #26a65b;
}

.header .superadmin i:hover {
    color: #e7c612;
}

.login-panel {
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.login-panel__content {
    max-width: 1050px;
    margin: 0 auto;
}

.login-panel__wrapper {
    max-width: 480px;
    margin: 20px auto;
}

.login-panel__logo {
    max-width: 680px;
    margin: 10px auto;
}

.login-panel__form {
    padding: 20px;
    margin: 20px 0 40px;
    background: rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.5);
}

.login-panel h1 {
    text-align: center;
}

.login-panel .form-group {
    min-width: 100%;
}

.form {
    width: 100%;
    margin-top: 12px;
    color: white;
}

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

.form input {
    border: none;
}

.form input {
    color: black;
    width: 100%;
    padding: 14px 10px;
}

@media (min-width: 1430px) {
    .form input {
        padding: 18px 12px;
        font-size: 20px;
    }
}

.form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 16px;
}

@media (min-width: 1430px) {
    .form input::-webkit-input-placeholder {
        font-size: 20px;
    }
}

.form input::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 16px;
}

@media (min-width: 1430px) {
    .form input::-moz-placeholder {
        font-size: 20px;
    }
}

.form input:-ms-input-placeholder {
    /* IE 10+ */
    font-size: 16px;
}

@media (min-width: 1430px) {
    .form input:-ms-input-placeholder {
        font-size: 20px;
    }
}

.form input:-moz-placeholder {
    /* Firefox 18- */
    font-size: 16px;
}

@media (min-width: 1430px) {
    .form input:-moz-placeholder {
        font-size: 20px;
    }
}

.form__actions {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.form .remember-me {
    margin-right: 10px;
    width: 25px;
    height: 25px;
}

.form .checkbox {
    display: inherit;
}

.form .checkbox input[type=checkbox] + label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.form .forgot {
    color: white;
    text-decoration: underline;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.form .forgot:hover {
    color: #e7c612;
}

@media (max-width: 768px) {
    .login-panel__content .form__actions {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .login-panel__content .btn--register {
        order: 2;
        margin-bottom: 15px !important;
    }

    .login-panel__content .submit.btn--primary {
        order: 1;
        margin-bottom: 30px !important;
    }

    .links-container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .links-container a {
        font-size: 0.9em;
    }
}

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.login-panel .alert-danger {
    color: #fff;
    background-color: rgba(220, 53, 69, 0.8);
    border-color: #dc3545;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}

.login-panel .invalid-feedback {
    color: #fff;
    background-color: rgba(220, 53, 69, 0.8);
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

.search-form {
    width: 100%;
    margin-bottom: 50px;
}

@media (min-width: 990px) {
    .search-form {
        max-width: 400px;
    }
}

@media (min-width: 1430px) {
    .search-form {
        min-width: 185px;
        max-width: 185px;
        margin-right: 30px;
    }
}

.search-form h4 {
    position: relative;
    cursor: pointer;
    padding-right: 20px;
}

.search-form h4.active i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.search-form h4 i {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.search-form .collapse-wrapper {
    display: none;
}

.search-form__item {
    margin: 20px 0;
}

.search-form__item:first-child {
    margin-top: 20px;
}

.search-form__group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 25px;
}

.search-form__group input {
    border: none;
    background-color: transparent;
    border-bottom: 2px solid #898989;
    padding: 10px 0;
}

.search-form__group-date {
    margin: 40px 0;
}

.search-form__group-date input {
    max-width: 115px;
    padding: 8px 10px;
    position: relative;
    cursor: pointer;
}

.search-form__group-date input:focus {
    outline: none;
}

.search-form__group-date i {
    font-size: 25px;
    color: #898989;
    padding: 0 8px;
}

@media (min-width: 1430px) {
    .search-form__actions {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}
.form-container .form-section {
    padding: 10px;
}

.form-container .form-section:nth-child(3n + 1) {
    background-color: #E3DEDA;
}
.form-container .form-section:nth-child(3n + 2) {
    background-color: #F5F3F1;
}
.form-container .form-section:nth-child(3n + 3) {
    background-color: #FFFEFA;
}

.form-add {
    padding: 20px;
}

.form-add__heading {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-add input, .form-add select, .form-add textarea {
    border: 1px solid #000;
    padding: 10px 15px;
    width: 100%;
}

.form-add input.labelled {
    width: auto;
}

.form-add textarea {
    resize: none;
}

.form-add__actions {
    margin-top: 20px;
    width: 100%;
}

@media (min-width: 576px) {
    .form-add__actions {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.form-add__actions .btn {
    max-width: 100%;
}

.form-add__actions .btn--secondary {
    margin-top: 10px;
}

@media (min-width: 576px) {
    .form-add__actions .btn--secondary + .btn--secondary {
        margin-left: 10px;
    }
}

.form-group--full-width {
    width: 100%;
}

.card-info {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.card-info__header {
    background-color: #faf5da;
    margin: 0 -10px -40px;
    padding-bottom: 25px;
}

@media (min-width: 990px) {
    .card-info__header {
        margin: 0 -10px -25px;
    }
}

.card-info__header .rwd-table {
    border-collapse: unset;
    font-size: 14px;
    padding: 20px;
}

@media (min-width: 990px) {
    .card-info__header .rwd-table {
        font-size: 16px;
    }
}

.card-info__header .rwd-table td, .card-info__header .rwd-table th {
    padding: 0 !important;
}

.card-info__header .rwd-table tr:hover:not(:first-child) {
    background-color: transparent;
}

.card-info__header .rwd-table th, .card-info__header .rwd-table td:before {
    color: #e7c612;
}

.card-info__content {
    padding: 20px 5px;
    background-color: white;
    -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.19);
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.19);
}

.card-info__content .form-add {
    background: transparent;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.card-info__content .form-add__heading {
    color: #e7c612;
}

.card-info__content .form-add small {
    display: block;
    color: #e7c612;
}

.card-info__content .form-add input[type="date"] {
    background: url("https://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/calendar_2.png");
    background-position: 93% 50%;
    background-repeat: no-repeat;
}

.card-info__content .form-add input[type="date"]::-webkit-inner-spin-button {
    display: none;
}

.card-info__content .form-add input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
}

@media (min-width: 576px) {
    .card-info__actions {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-right: 5px;
    }
}

.card-info form {
    width: inherit;
}

.new-correspondence {
    width: 100%;
    background-color: #faf5da;
}

.new-correspondence__heading {
    padding: 20px;
}

.new-correspondence .rwd-table {
    padding: 0;
}

.new-correspondence h4 {
    margin-bottom: 40px;
}

.new-correspondence__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
}

@media (min-width: 576px) {
    .new-correspondence__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.new-correspondence__item + .new-correspondence__item {
    margin-bottom: 20px;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
}

@media (min-width: 576px) {
    .new-correspondence__item + .new-correspondence__item {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        margin-bottom: 0;
    }
}

@media (min-width: 576px) {
    .new-correspondence__item {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .new-correspondence__item:first-child {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

.new-correspondence .card-info__header {
    margin: 0;
}

.new-correspondence .message-box {
    width: 100%;
    padding: 20px;
    background-color: white;
    -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.19);
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.19);
}

.new-correspondence .message-box a:not(.cke_button) {
    color: black;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.new-correspondence .message-box a:hover {
    color: #e7c612;
}

.footer {
    background-color: #998675;
    color: white;
}

.footer__content {
    text-align: center;
    padding: 30px 0;
}

.footer__logo {
    max-width: 88px;
    width: 100%;
    margin: 0 auto;
}

.footer p span {
    display: block;
}

@media (min-width: 990px) {
    .footer p span {
        display: inline-block;
    }
}

.nav {
    position: relative;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    z-index: 1;
    top: 0;
    width: 100%;
}

.nav .icon-test {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
}

@media (min-width: 1430px) {
    .nav .icon-test {
        display: inline-block;
        margin: 0;
    }
}

.nav__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    min-width: 100%;
    text-align: center;
}

@media (min-width: 1430px) {
    .nav__items {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
}

.nav__item {
    background-color: #e7c612;
    color: white;
    width: 50%;
    min-height: 60px;
    padding: 10px 5px;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (min-width: 576px) {
    .nav__item {
        width: -webkit-calc(100% / 3);
        width: calc(100% / 3);
    }
}

@media (min-width: 1430px) {
    .nav__item {
        padding: 12px 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.nav__item i {
    padding: 5px;
    font-size: 32px;
}

.nav__item:hover, .nav__item.active {
    background-color: white;
    color: black;
}

.nav__item:hover i, .nav__item.active i {
    color: #e0420b;
}

.nav .active {
    color: black;
}

.sub-nav__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
}

@media (min-width: 576px) {
    .sub-nav__items {
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}

.sub-nav__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #e7c612;
    color: white;
    width: 100%;
    min-height: 20px;
    padding: 3px 2px;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    margin-top: 4px;
}

@media (min-width: 767px) {
    .sub-nav__item {
        width: -webkit-calc(100% / 3);
        width: calc(100% / 3);
    }
}

@media (min-width: 1430px) {
    .sub-nav__item {
        width: -webkit-calc(100% / 4);
        width: calc(100% / 3);
    }
}

.sub-nav__item:hover, .sub-nav__item.active {
    background-color: #d7d7d7;
    color: black;
}

.sub-nav .active {
    color: black;
}

button {
    background: none;
    padding: 0;
    border: 0;
}

.btn {
    color: white;
    background-color: #e7c612;
    border: 3px solid #e7c612;
    min-width: 100%;
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    display: block;
    text-align: center;
}

@media (min-width: 576px) {
    .btn {
        min-width: 174px;
        font-size: 14px;
    }
}

.btn:hover, .btn:active, .btn:focus {
    background-color: white;
    color: #e7c612;
}

.btn--register {
    color: white;
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    display: flex;
    text-align: center;
    background: #F9BA55;
    border: 3px solid #F9BA55;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.btn--register span {
    font-size: 9px;
}
.btn--register:hover, .btn--register:active, .btn--register:focus {
    background-color: white;
    color: #F9BA55;
}

.btn--primary {
    -webkit-box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.5);
    padding: 9px 10px;
}

@media (min-width: 1430px) {
    .btn--primary {
        padding: 14px 10px;
    }
}

.btn--secondary {
    padding: 7px 10px;
}

@media (min-width: 576px) {
    .btn--secondary {
        max-width: 120px;
    }
}

.btn--delete {
    color: #e0420b;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.btn--delete:hover {
    opacity: .7;
}

.btn--gray {
    background-color: #acacac;
    border-color: transparent;
}

.btn--gray:hover, .btn--gray:active, .btn--gray:focus {
    background-color: #d7d7d7;
    color: black;
}

@media (min-width: 990px) {
    .user {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

@media (min-width: 990px) {
    .user__content {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.user h3 {
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
}

@media (min-width: 990px) {
    .user h3 {
        margin-top: 0;
        margin-right: 10px;
    }
}

.user h3 i {
    cursor: pointer;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    color: black;
    font-size: 22px;
}

.user h3 i:hover {
    color: #e0420b;
}

.user h3 span {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    display: block;
}

@media (min-width: 576px) {
    .user h3 span {
        display: inline-block;
    }
}

.user__photo {
    max-width: 60px;
    width: 100%;
    height: 60px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #d7d7d7;
    margin: 0 auto;
}

@media (min-width: 990px) {
    .user__photo {
        margin: 0;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
        width: 40px;
        height: 40px;
    }
}

.dropdown {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.dropdown.active {
    z-index: 2;
}

.dropdown.active ul {
    visibility: visible;
    pointer-events: all;
    opacity: 1;
}

.dropdown.active button {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dropdown button {
    position: relative;
    z-index: 2;
    cursor: pointer;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.dropdown ul {
    list-style-type: none;
    position: absolute;
    top: -5px;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    width: 250px;
    padding: 20px;
    background-color: white;
    -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.19);
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.19);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    z-index: 1;
}

@media (min-width: 576px) {
    .dropdown ul {
        right: -5px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.dropdown ul li {
    border-bottom: 2px solid #555555;
}

.dropdown ul li:last-child {
    border-bottom: 0;
}

.tags-filter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100%;
}

.table-actions__box .tags-filter.left {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media (min-width: 576px) {
    .tags-filter {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.rwd-table {
    margin: auto;
    min-width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

@media (min-width: 1500px) {
    .rwd-table {
        font-size: 16px;
    }
}

.rwd-table tr:first-child {
    border-top: none;
}

.rwd-table tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.rwd-table tr:nth-child(odd):not(:first-child) {
    background-color: rgba(215, 215, 215, 0.1);
}

.rwd-table th {
    display: none;
}

.rwd-table td {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    word-break: break-all;
}

@media (min-width: 576px) {
    .rwd-table td {
        word-break: unset;
    }
}

.rwd-table td:first-child {
    margin-top: .5em;
}

.rwd-table td:last-child {
    margin-bottom: .5em;
}

.rwd-table td:before {
    content: attr(data-th);
    font-weight: bold;
    width: 50%;
    min-width: 50%;
    display: inline-block;
    color: #000;
    word-break: break-all;
    padding-right: 10px;
}

.rwd-table th,
.rwd-table td {
    text-align: left;
}

.rwd-table tr {
    border-color: #bfbfbf;
}

.rwd-table th,
.rwd-table td {
    padding: .5em 10px;
}

@media (min-width: 990px) {
    .rwd-table tr:hover:not(:first-child) {
        background-color: rgba(215, 215, 215, 0.4);
    }

    .rwd-table td:before {
        display: none;
    }

    .rwd-table th,
    .rwd-table td {
        display: table-cell;
        padding: .25em .5em;
    }

    .rwd-table th:first-child,
    .rwd-table td:first-child {
        padding-left: 0;
    }

    .rwd-table th:last-child,
    .rwd-table td:last-child {
        padding-right: 0;
    }

    .rwd-table th,
    .rwd-table td {
        padding: 7px !important;
    }
}

.rwd-table tfoot td {
    display: none;
}

@media (min-width: 990px) {
    .rwd-table tfoot td {
        display: table-cell;
    }
}

.rwd-table tfoot td[data-th] {
    display: block;
}

@media (min-width: 990px) {
    .rwd-table tfoot td[data-th] {
        display: table-cell;
    }
}

.table {
    background-color: white;
    padding: 20px 0;
    -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.19);
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.19);
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (min-width: 576px) {
    .table {
        padding: 20px;
    }
}

.table__heading {
    background-color: #d7d7d7;
}

.table__select {
    border: none;
    padding: 10px;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    background-color: #acacac;
    cursor: pointer;
}

.table option:hover {
    background-color: #e7c612;
}

.table .sort {
    display: none;
    font-size: 10px;
    cursor: pointer;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

@media (min-width: 990px) {
    .table .sort {
        display: inline-block;
        min-width: 25px;
    }
}

.table .sort:hover {
    opacity: 0.8;
}

.table .sort.asc .sort-id-desc {
    display: none;
}

.table .sort.desc .sort-id-asc {
    display: none;
}

.table .sort button {
    cursor: pointer;
}

.table h2 {
    margin-bottom: 30px;
    text-align: center;
}

@media (min-width: 576px) {
    .table h2 {
        text-align: left;
    }
}

.table a:hover {
    color: #e7c612;
}

.table .pagination {
    padding: 20px 10px 0;
    text-align: right;
}

@media (min-width: 576px) {
    .table .pagination {
        padding: 20px 0 0;
    }
}

.table .pagination .active {
    font-size: 22px;
    font-weight: 600;
}

.table .pagination-chart a {
    border: 1px solid black;
    padding: 2px 10px;
}

.table-actions__show {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 10px;
}

@media (min-width: 990px) {
    .table-actions__show {
        display: none;
    }
}

.table-actions__show i {
    font-size: 35px;
    color: #acacac;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    cursor: pointer;
}

.table-actions__show i:hover {
    color: #e7c612;
}

.table-actions__show i.active {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.table-actions__content {
    background-color: #acacac;
    padding: 10px 0;
    text-align: center;
    display: none;
}

@media (min-width: 990px) {
    .table-actions__content {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: left;
    }
}

.table-actions__content.active {
    display: block;
}

.table-actions__box {
    padding: 5px;
}

.table-actions__box:first-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

@media (min-width: 576px) {
    .table-actions__box {
        width: 50%;
        margin: 0 auto;
    }
}

@media (min-width: 990px) {
    .table-actions__box {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.table-actions__box .tags-filter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 120px;
    width: 100%;
}

@media (min-width: 990px) {
    .table-actions__box .tags-filter + .tags-filter {
        border-left: 1px solid rgba(0, 0, 0, 0.4);
    }
}

@media (min-width: 990px) {
    .table-actions__item {
        font-size: 12px;
    }
}

@media (min-width: 1330px) {
    .table-actions__item {
        font-size: 14px;
    }
}

.table-actions__item a {
    color: white;
}

.table-actions__item + .table-actions__item {
    margin-top: 10px;
}

@media (min-width: 990px) {
    .table-actions__item + .table-actions__item {
        margin-top: 0;
        margin-left: 10px;
    }
}

.table-actions__item--button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (min-width: 990px) {
    .table-actions__item--button {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.table-actions__item--button a + a {
    margin-top: 10px;
}

@media (min-width: 990px) {
    .table-actions__item--button a + a {
        margin-left: 10px;
    }
}

.table-actions__item .checkbox {
    display: inherit;
    color: white;
}

.table-actions__item .checkbox input[type=checkbox] + label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.table-actions__item .checkbox label {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.table-actions__item .checkbox label:hover {
    color: #e7c612;
}

.table .rwd-table tbody .row--warning {
    background-color: #fcddeb;
}

.table .rwd-table tbody .row--danger {
    background-color: #d2a8b5;
}

.table .company-summary-portlet {
    margin-bottom: 20px;
    padding-left: 5px;
    padding-right: 5px;
}

@media (min-width: 990px) {
    .table .company-summary-portlet {
        padding-left: 0;
        padding-right: 0;
    }
}

.checkbox input[type=radio], .checkbox input[type=checkbox] {
    display: none;
}

.checkbox input[type=radio] + label, .checkbox input[type=checkbox] + label {
    display: block;
    margin: 4px 0;
    cursor: pointer;
    padding: 4px 0;
}

.checkbox input[type=radio] + label:before, .checkbox input[type=checkbox] + label:before {
    content: "\2714";
    border: 1px solid #d7d7d7;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 5px;
    margin-right: 10px;
    color: transparent;
    background-color: white;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-align: center;
}

.checkbox input[type=radio] + label:active:before, .checkbox input[type=checkbox] + label:active:before {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.checkbox input[type=radio]:checked + label:before, .checkbox input[type=checkbox]:checked + label:before {
    color: black;
}

.checkbox input[type=radio]:disabled + label:before, .checkbox input[type=checkbox]:disabled + label:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.checkbox input[type=radio]:checked:disabled + label:before, .checkbox input[type=checkbox]:checked:disabled + label:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

@media (min-width: 990px) {
    .row {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}

@media (min-width: 990px) {
    .row--extended {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.row--extended .panel-edit {
    width: 100%;
}

@media (min-width: 576px) {
    .row--extended .panel-edit {
        margin-right: 5px;
    }
}

@media (min-width: 990px) {
    .row--extended .form-group {
        max-width: 320px;
        width: 100%;
    }
}

.row--table {
    color: white;
    padding: 20px 10px;
    background-color: #998675;
}

.row--table .btn {
    margin-top: 20px;
}

@media (min-width: 990px) {
    .row--contract {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
}

.column-wrapper {
    margin: 36px 0;
}

@media (min-width: 1430px) {
    .column-wrapper__content {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.panel-edit {
    padding: 20px 10px;
    margin: 10px 0;
}

.panel-edit.active input {
    border: 1px solid #acacac;
    padding: 2px 5px;
}

.panel-edit.active input + input {
    margin: 5px 0;
}

.panel-edit.active .btn--save, .panel-edit.active .btn--cancel {
    display: block;
}

.panel-edit.active .btn--edit {
    display: none;
}

.panel-edit h4 {
    color: #e7c612;
    padding-bottom: 10px;
}

.panel-edit input {
    background-color: inherit;
    border: none;
    padding: 0;
}

.panel-edit__actions {
    padding-top: 20px;
}

.panel-edit .btn + .btn {
    margin-top: 10px;
}

.panel-edit .btn--save, .panel-edit .btn--cancel {
    display: none;
}

.panel-edit .form-group--inline {
    max-width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid #e7c612;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 990px) {
    .panel-edit .form-group--inline {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

@media (min-width: 1430px) {
    .panel-edit .form-group--inline {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.panel-edit .form-group--inline .change-mark {
    color: #e7c612;
    font-weight: 600;
}

.panel-edit .form-group--inline .purchaser-checkbox-label {
    color: #e7c612;
    font-weight: 600;
}

.panel-edit .form-group--inline .inline-checkbox {
    width: 100%;
}

@media (min-width: 1430px) {
    .panel-edit .form-group--inline .inline-checkbox {
        width: 180px;
        max-width: 100%;
    }
}

.panel-edit .form-group--input-value {
    max-width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 20px 0;
}

.panel-edit .form-group--input-value .input-value input {
    text-align: center;
    font-weight: 600;
}

.panel-edit .edit .columns__item {
    margin: 0;
}

.panel-edit .edit__actions {
    margin-top: 20px;
}

@media (min-width: 990px) {
    .position-texture {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (min-width: 990px) {
    .position-texture__content {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (min-width: 990px) {
    .position-texture__wrapper {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media (min-width: 990px) {
    .position-texture .form-group:first-child {
        width: 50%;
    }
}

.position-texture__actions {
    margin-bottom: 50px;
}

@media (min-width: 576px) {
    .position-texture__actions {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.modal {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.modal.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.modal__content {
    margin: 0 auto;
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    max-width: 1040px;
    max-height: 95%;
    overflow-y: auto;
}

.modal__content--small {
    max-width: 500px;
}

.modal__content h3 {
    text-align: center;
}

.modal__content textarea {
    width: 100%;
    margin-top: 20px;
}

.modal__border {
    position: relative;
    background-color: white;
    border: 10px solid #998675;
    padding: 20px;
}

.modal__actions {
    margin-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.modal__actions .btn {
    margin: 10px 0;
}

@media (min-width: 576px) {
    .modal__actions .btn {
        margin: 0;
    }
}

@media (min-width: 576px) {
    .modal__actions {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media (min-width: 576px) {
    .columns {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        width: 100%;
    }
}

@media (min-width: 576px) {
    .columns__item {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin: 20px;
    }
}

.columns__item + .columns__item {
    margin-top: 20px;
}

.columns__title {
    margin-bottom: 20px;
}

.columns-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 576px) {
    .info-details {
        margin-top: 20px;
    }
}

.info-details__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #998675;
    padding: 10px;
}

@media (min-width: 990px) {
    .info-details__item {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.info-details__item + .info-details__item {
    margin-top: 5px;
}

.info-details__item--light-brown {
    background-color: #c7b299;
}

.info-details--textures {
    margin: 0 auto;
    max-width: 800px;
    padding-top: 20px;
}

.info-details--textures .info-details__item {
    cursor: pointer;
}

.info-details .btn {
    margin: 20px 0;
}

@media (min-width: 990px) {
    .address {
        width: 457px;
        margin: 0 auto;
    }
}

.address__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.address__item {
    padding: 10px 5px;
}

.address__item p {
    font-size: 14px;
    line-height: 15px;
}

@media (min-width: 990px) {
    .address__item {
        padding: 20px 10px;
    }
}

.consumer {
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .consumer {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
}

.consumer p {
    margin-right: 40px;
}

.consumer__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.consumer select {
    background-color: #faf5da;
}

.fileupload-button {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.message-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.message-box label {
    color: #e7c612;
    font-weight: 600;
    margin: 20px 0 5px;
}

.message-box label.fileupload-label {
    margin: unset;
}

.message-box input, .message-box textarea {
    padding: 7px 10px;
}

.message-box label, .message-box input {
    display: block;
    width: 100%;
}

.message-box textarea {
    resize: none;
    width: 100%;
}

.message-box__actions {
    margin: 20px 0;
}

@media (min-width: 990px) {
    .message-box__actions {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.message-box__attachments {
    position: relative;
    width: 100%;
}

.message-box__attachments label {
    color: white;
}

.message-box__attachments .MultiFile-wrap {
    margin-top: 10px;
}

.message-box__attachments .MultiFile-wrap .multi {
    position: absolute;
    width: 100%;
    height: 38px;
    left: 0;
    top: 0;
    opacity: 0;
}

.message-box__attachments i {
    cursor: pointer;
    margin-left: 20px;
    font-size: 20px;
    color: #acacac;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.message-box__attachments i:hover {
    color: #d7d7d7;
}

.chat__header {
    padding: 20px;
    background-color: #d7d7d7;
}

@media (min-width: 576px) {
    .chat__header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (min-width: 990px) {
    .chat__header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (min-width: 1430px) {
    .chat__header {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.chat__header .btn {
    margin-top: 10px;
}

@media (min-width: 576px) {
    .chat__header .btn {
        margin-left: 20px;
    }
}

@media (min-width: 1430px) {
    .chat__header .btn {
        margin-top: 0;
    }
}

.chat__items {
    padding-top: 40px;
    font-style: italic;
}

.chat-message {
    padding: 20px 0;
}

@media (min-width: 576px) {
    .chat-message__content {
        margin-left: 100px;
    }
}

@media (min-width: 576px) {
    .chat-message__heading {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
}

.chat-message__text {
    position: relative;
    background-color: #c7b299;
    -webkit-box-shadow: 0px 4px 5.04px 0.96px rgba(0, 0, 0, 0.71);
    box-shadow: 0px 4px 5.04px 0.96px rgba(0, 0, 0, 0.71);
    padding: 20px;
}

.chat-message__actions {
    position: absolute;
    right: 10px;
}

.chat-message__actions .btn {
    -webkit-box-shadow: 0px 4px 5.64px 0.36px rgba(0, 0, 0, 0.71);
    box-shadow: 0px 4px 5.64px 0.36px rgba(0, 0, 0, 0.71);
}

.chat-message + .chat-message--system {
    margin-top: 40px;
    border-top: 2px solid #acacac;
}

.chat-message--system {
    padding-bottom: 40px;
    border-bottom: 2px solid #acacac;
}

@media (min-width: 576px) {
    .chat-message--system .chat-message__content {
        margin-left: 0;
        margin-right: 100px;
    }
}

.chat-message--system .chat-message__text {
    background-color: #faf5da;
}

.chat-message--system + .chat-message--system {
    margin-top: 0;
    border-top: none;
}

.templates {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.templates h4 {
    color: #e7c612;
    padding: 10px;
    margin-bottom: 0;
}

@media (min-width: 990px) {
    .templates h4 {
        padding: 0 20px 20px;
    }
}

.templates__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.templates__item {
    color: black;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    padding: 10px;
    width: 100%;
}

@media (min-width: 990px) {
    .templates__item {
        padding: 15px 20px;
    }
}

.templates__item:hover {
    background-color: white;
}

.mail_unread td {
    font-weight: bold;
    background-color: rgba(132, 56, 22, 0.5);
}

.show-correspondence {
    display: none;
}

.show-correspondence .columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 990px) {
    .show-correspondence .columns {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.show-correspondence .columns__item {
    width: 100%;
    margin: 20px 0;
}

@media (min-width: 990px) {
    .show-correspondence .columns__item {
        margin: 20px;
    }
}

.show-correspondence > td:before {
    display: none;
}

.show-texture > td {
    position: relative;
}

.show-texture table {
    font-size: 12px;
}

.show-texture > td:before {
    display: none;
}

.show-texture h3 {
    padding: 10px 0;
}

@media (min-width: 990px) {
    .show-texture h3 {
        padding: 10px;
    }
}

.show-texture .columns {
    min-width: 100%;
}

.show-texture .columns__title {
    margin-top: 20px;
}

.show-texture--tr-border tr {
    border-top: 3px solid #c7b299;
    border-bottom: 3px solid #c7b299;
}

@media (min-width: 576px) {
    .show-texture--tr-border tr {
        border-top: none;
    }
}

.show-texture--tr-border tfoot tr {
    border-bottom: none;
}

.close-content__actions {
    position: absolute;
    right: 10px;
    top: 10px;
}

.close-content__actions .times {
    display: block;
}

.close-content__actions .times i {
    font-size: 20px;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.close-content__actions .times i:hover {
    color: #e0420b;
}

.show-status {
    width: 100%;
}

.show-status .toggle-status {
    cursor: pointer;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.show-status .toggle-status:hover {
    color: #e7c612;
}

.show-status .statuses {
    overflow: hidden;
}

.show-status .statuses ul {
    list-style-type: none;
}

.show-status .statuses.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.show-status .statuses > div {
    width: 50%;
    min-width: 50%;
    max-width: 50%;
    position: relative;
    float: left;
}

.show-status .statuses .fa-times, .show-status .statuses .fa-trash-alt, .show-status .statuses .fa-plus {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    padding: 0 3px;
}

.show-status .statuses .fa-times:hover, .show-status .statuses .fa-trash-alt:hover, .show-status .statuses .fa-plus:hover {
    color: #acacac;
}

.show-status .statuses .fa-times {
    color: #e0420b;
}

.show-status .statuses .fa-trash-alt, .show-status .statuses .fa-plus {
    color: #e7c612;
}

.show-status .status_list li {
    position: relative;
    display: block;
    cursor: move;
    color: #222;
    margin: 3px 3px 3px 0;
    padding: 4px;
    width: auto;
    height: auto;
    font-size: 11px;
    text-align: left;
    border: 1px solid #d7d7d7;
    background-color: #faf5da;
}

.show-status .add_status {
    margin-top: 10px;
}

.panel-add {
    margin: 40px 0 20px;
}

.panel-add input {
    width: 100%;
    padding: 10px 7px;
}

.panel-add input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
}

@media (min-width: 576px) {
    .panel-add input::-webkit-input-placeholder {
        font-size: 12px;
    }
}

@media (min-width: 990px) {
    .panel-add input::-webkit-input-placeholder {
        font-size: 16px;
    }
}

.panel-add input::-moz-placeholder {
    /* Firefox 19+ */
}

@media (min-width: 576px) {
    .panel-add input::-moz-placeholder {
        font-size: 12px;
    }
}

@media (min-width: 990px) {
    .panel-add input::-moz-placeholder {
        font-size: 16px;
    }
}

.panel-add input:-ms-input-placeholder {
    /* IE 10+ */
}

@media (min-width: 576px) {
    .panel-add input:-ms-input-placeholder {
        font-size: 12px;
    }
}

@media (min-width: 990px) {
    .panel-add input:-ms-input-placeholder {
        font-size: 16px;
    }
}

.panel-add input:-moz-placeholder {
    /* Firefox 18- */
}

@media (min-width: 576px) {
    .panel-add input:-moz-placeholder {
        font-size: 12px;
    }
}

@media (min-width: 990px) {
    .panel-add input:-moz-placeholder {
        font-size: 16px;
    }
}

.panel-add__status {
    display: none;
    margin-top: 10px;
}

.panel-add .btn-add {
    color: black;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    font-size: 12px;
}

@media (min-width: 990px) {
    .panel-add .btn-add {
        font-size: 16px;
    }
}

.panel-add .btn-add:hover {
    color: #e7c612;
}

.panel-add__actions {
    margin-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media (min-width: 990px) {
    .panel-add__actions {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media (min-width: 576px) {
    .panel-add__actions .btn {
        min-width: 100px;
    }
}

.panel-add__actions .btn + .btn {
    margin-top: 5px;
}

@media (min-width: 990px) {
    .panel-add__actions .btn + .btn {
        margin-top: 0;
        margin-left: 5px;
    }
}

.panel-add__deposit {
    margin: 0;
}

.panel-add__deposit__wrapper {
    margin: 20px 0;
}

@media (min-width: 1430px) {
    .panel-add__deposit__content {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.panel-add__deposit__content .deposit_form_column {
    margin-top: 10px;
}

@media (min-width: 1430px) {
    .panel-add__deposit__content .deposit_form_column {
        width: -webkit-calc(100% / 3.3);
        width: calc(100% / 3.3);
        min-width: -webkit-calc(100% / 3.3);
        min-width: calc(100% / 3.3);
        margin-top: 0;
        margin-left: 5px;
    }
}

@media (min-width: 1430px) {
    .panel-add__deposit__content input {
        margin-left: 0;
    }
}

.panel-add__deposit__content select {
    width: 100%;
    padding: 10px 7px;
}



@media (min-width: 990px) {
    .panel-add__deposit__content .panel-add__deposit__actions {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 15px;
    }
}

@media (min-width: 990px) {
    .panel-add__deposit .panel-add__deposit__actions .btn + .btn {
        margin-left: 10px;
    }
}

.info-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 990px) {
    .info-box__item {
        width: 30%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.info-box__item span {
    width: 100%;
    border: 1px solid #d7d7d7;
    padding: 10px 15px;
    font-weight: 600;
    display: block;
    text-align: center;
}

.info-box__item a {
    color: black;
}

.info-box__wrapper {
    width: 100%;
}

@media (min-width: 990px) {
    .info-box__wrapper {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}

.info-box__wrapper strong {
    margin: 10px 0;
}

.info-box p {
    width: 100%;
    margin: 15px 0;
}

.info-box p a {
    color: #e7c612;
    font-weight: 600;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.info-box p a:hover {
    color: #d7d7d7;
}

.datepicker {
    position: relative;
}

.datepicker span {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
    color: #acacac;
    font-size: 20px;
}

.texture-page .rwd-table th, .texture-page .rwd-table td {
    padding: 5px !important;
}

.texture-page .table--textures tr:nth-child(odd):not(:first-child) {
    background-color: transparent;
}

.texture-page .table--textures tr:hover:not(:first-child) {
    background-color: transparent;
}

.texture-page .tags-filter .select2-container--default .select2-selection--single {
    background-color: #d7d7d7;
    border-bottom: 1px solid #acacac;
}

.texture-page .tags-filter .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: black;
}

.message-page .table--correspondence .columns {
    margin: 20px 0;
}

.message-page .table--correspondence .rwd-table .show-correspondence:nth-child(odd):not(:first-child) {
    background-color: transparent;
}

.message-page .table--correspondence .rwd-table .show-correspondence:hover:not(:first-child) {
    background-color: transparent;
}

.message-page .table--correspondence .expand-content {
    cursor: pointer;
}

.message-page .table--correspondence .expand-content i {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.message-page .table--correspondence .expand-content i.active {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.message-page .templates {
    width: 100%;
    margin: 40px 0 0;
}

.message-page .templates .columns {
    margin: 0;
}

.message-page .templates .columns__item {
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 990px) {
    .message-page .templates .columns__item + .columns__item {
        padding-left: 10px;
    }
}

.message-page .templates__actions {
    margin-bottom: 10px;
}

.message-page .templates__actions .btn {
    max-width: 100%;
}

.message-page .templates__items {
    padding: 10px;
    background-color: #faf5da;
    -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.35);
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.35);
    display: block;
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
}

@media (min-width: 576px) {
    .message-page .templates__items {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}

@media (min-width: 1430px) {
    .message-page .templates__items {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
    }
}

.message-page .templates__item {
    padding: 0;
    background-color: transparent;
    font-size: 14px;
    display: block;
    line-height: 1.2;
}

@media (min-width: 1430px) {
    .message-page .templates__item + .templates__item {
        margin-top: 6px;
    }
}

.card-user {
    width: 100%;
}

.card-user .border {
    border: 2px solid #c7b299;
    border-top: 2px solid #c7b299;
}

.card-user .rwd-table tr:nth-child(odd):not(:first-child) {
    background-color: transparent;
}

.card-user .rwd-table tr:hover:not(:first-child) {
    background-color: transparent;
}

@media (min-width: 576px) {
    .card-user .card-info__content {
        padding: 30px;
    }
}

.card-user .card-info__header {
    margin: 0 -10px -25px;
}

.card-user .card-info__header h3 {
    padding: 10px 20px;
}

.card-user .panel-edit {
    background: white;
    padding: 0;
    margin: 0;
    width: 100%;
}

.card-user .panel-edit.active strong, .card-user .panel-edit.active hr {
    display: none;
}

.card-user .panel-edit.active textarea {
    border: 1px solid #d7d7d7;
}

.card-user .panel-edit textarea {
    max-width: 100%;
    width: 100%;
    resize: none;
    border: none;
    padding: 5px 0;
    min-height: 70px;
}

.card-user .panel-edit h4 {
    color: black;
    margin-top: 10px;
}

.card-user .panel-edit hr {
    margin: 10px 0;
    background-color: #d7d7d7;
    opacity: 0.3;
}

.card-user .panel-edit .btn--hidden.hidden {
    display: none;
}

.card-user .info-details {
    margin-top: 0;
    width: 100%;
}

.card-user .form-group {
    width: 100%;
    padding: 0;
    margin: 0;
}

.card-user .form-group select {
    padding: 10px 15px;
    width: 100%;
}

@media (min-width: 990px) {
    .card-user .columns {
        margin-bottom: 100px;
    }
}

.card-user .columns__item {
    margin: 0;
}

.card-user .columns__item--small {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
    max-width: 300px;
    width: 100%;
}

@media (min-width: 576px) {
    .card-user .columns__item + .columns__item {
        margin-left: 25px;
    }
}

@media (min-width: 990px) {
    .card-user .columns__item + .columns__item {
        margin-left: 125px;
    }
}

.card-user .row {
    margin-top: 15px;
}

.card-user .dropdown a {
    color: black;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.card-user .dropdown a:hover {
    color: #e7c612;
}

.card-user .deposit {
    display: block;
    font-size: 14px;
}

.card-user .pobox a:not(.btn) {
    color: white;
}

.card-user .pobox_deposits {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.card-user .pobox_deposits tbody {
    width: 100%;
}

.card-user .pobox_deposits tr {
    display: block;
    border-bottom: none;
}

.card-user .pobox_deposits tr + tr {
    border-top: 1px solid #acacac;
}

.card-user .pobox_deposits td {
    padding: 0;
}

.card-user .pobox_deposits td:before {
    display: none;
}

.card-user .add-deposit {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-user .add-deposit__actions {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.card-user .icon-square {
    cursor: pointer;
}

.card-user .icon-square .active:before {
    content: '\f146';
}

.card-user__textures {
    margin-top: 20px;
}

.card-user__textures .columns {
    margin: 10px 0;
}

@media (min-width: 990px) {
    .card-user__textures .columns {
        margin: 20px 0;
    }
}

.hidden {
    display: none !important;
}

.cursor-pointer, .run-function-on-click {
    cursor: pointer;
}

.user-payment-check td {
    background-color: #e7c612 !important;
}

.user_status_points--2, .user-status--2:not(.user-payment-check) td {
    background-color: #DCBBC5 !important;
    text-transform: uppercase;
}

.user_status_points--1, .user-status--1:not(.user-payment-check) td {
    background-color: #FDE4EF !important;
}

.user_status_points-1, .user-status-1:not(.user-payment-check) td {
    background-color: #8ae88a !important;
}

.user_status_points-2, .user-status-2:not(.user-payment-check) td {
    background-color: #38b547 !important;
}

.color-red {
    color: red !important;
}

.expand-content {
    cursor: pointer;
}

.content-to-expand.not-loaded {
    display: none;
}

.content-to-expand.not-loaded .expanded-content {
    display: block;
}

.content-to-expand .expanded-content {
    min-height: 200px;
}

.content-to-expand .expanded-content::before {
    display: none;
}

.no_contract_active {
    color: orangered;
    font-size: 16px;
    font-weight: 700;
}

.sum-row, .sum-head {
    cursor: pointer;
}

.sum-row.active {
    background-color: lavender !important;
}

.inline-checkbox input[type="checkbox"] {
    width: auto;
}

.pagination-chart a {
    border: 1px solid black;
    padding: 2px 10px;
}

.folden_toggle.expanded {
    background: transparent url("../images/smallminus.png") right 3px no-repeat !important;
}

.folden_toggle {
    background: transparent url("../images/smallplus.png") right 3px no-repeat;
    cursor: pointer;
    min-height: 9px;
    min-width: 9px;
    padding-right: 20px;
}

td.invoice_icon.bg_paid {
    background: url("../images/invoice_paid_bg.png") no-repeat right 5px center;
}

td.invoice_icon.bg_unpaid {
    background: url("../images/invoice_unpaid_bg.png") no-repeat right 5px center;
}

td.invoice_icon.bg_outstanding {
    background: url("../images/invoice_outstanding_bg.png") no-repeat right 5px center;
}

td.paid.no {
    color: red;
}

td.paid.yes {
    color: green;
}

td.contract_icon.signed {
    background: url("../images/contract_signed_bg.png") no-repeat right 5px center;
}

td.contract_icon.unsigned {
    background: url("../images/contract_unsigned_bg.png") no-repeat right 5px center;
}

td.contract_icon.terminated {
    background: url("../images/contract_terminated_bg.png") no-repeat right 5px center;
}

.invoice_suspended_icon {
    display: inline-block;
    background: url("../images/invoice_suspended.jpg") no-repeat;
    width: 32px;
    height: 32px;
}

.check_invoices_icon {
    display: inline-block;
    background: url("../images/invoice_check.png") no-repeat;
    width: 32px;
    height: 32px;
}

.inline-checkbox input[type=checkbox] + label {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.img-contract {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.icon-contract {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-vertical-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 576px) {
    .mobile-hide {
        display: none;
    }
}

@media (min-width: 576px) {
    .mobile-hide {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (min-width: 576px) {
    .desktop-hide {
        display: none;
    }
}

@media (max-width: 576px) {
    .desktop-hide {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.is-soft-invalid {
    color: blue;
}

.is-invalid {
    color: #dc3545 !important;
}

.is-invalid input {
    border-color: #dc3545 !important;
}

.user_notices .info-details__item {
    color: white;
}

.user_notices .info-details__item h4 {
    color: #000000;
}

.user_info_scans .btn {
    min-width: 100% !important;
}

.text-center {
    text-align: center;
}

.red {
    color: red;
}

.orange {
    color: darkorange;
}

.green {
    color: darkgreen;
}

select.e-documentation + span .select2-selection--single, .e-documentation {
    background-color: #8bbc21;
}

.e-documentation .table-actions__box:first-child {
    border-bottom: 0;
}

.table-actions__content.e-documentation-actions {
    padding: 0;
}

.table-actions__content.e-documentation-actions .table-actions__box {
    padding: 0;
}

.table-actions__content.e-documentation-actions .table-actions__item {
    padding: 15px 5px;
}

.table-actions__content.e-documentation-actions img {
    height: 26px;
}

.added-field-container:first-of-type .remove-phone {
    display: none;
}

.is-loading {
    background: url(../../../images/admin/upload/loading.gif) dimgrey no-repeat center center!important;
    color: transparent!important;
    position: relative;
}

button.is-loading {
    background-size: contain!important;
}

/* Seller Balance Table Styles */
.seller-balance-summary {
    margin-bottom: 20px;
    background-color: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.19);
}

.seller-balance-summary h4 {
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

@media (min-width: 576px) {
    .seller-balance-summary h4 {
        text-align: left;
    }
}

.seller-balance-table {
    border-collapse: collapse;
    margin-top: 10px;
}

.seller-balance-table th,
.seller-balance-table td {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
}

.seller-balance-table th {
    background-color: #d7d7d7;
    text-align: left;
    font-weight: 600;
}

.seller-balance-table .text-right {
    text-align: right;
}

.seller-balance-table .total-row {
    background-color: #f5f5f5;
}

.seller-balance-table .total-row td {
    border-top: 2px solid #acacac;
}

@media (max-width: 576px) {
    .seller-balance-summary {
        width: 100%;
    }
    .seller-balance-table {
        font-size: 14px;
        width: 100%;
    }

    .seller-balance-table th,
    .seller-balance-table td {
        padding: 6px 8px;
    }
}

/* Action links - used for expand/collapse and similar interactive links */
.action-link {
    color: #069;
}

.action-link:hover, .action-link:focus {
    color: #047;
    text-decoration: underline;
}

/* Register packages: stack cards on mobile */
@media (max-width: 768px) {
    #form-user .swiper { overflow: visible !important; }

    #form-user .swiper-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        transform: none !important;
        transition-property: none !important;
    }

    #form-user .swiper-slide {
        width: 100% !important;
        height: auto !important;
    }

    #form-user .swiper-button-prev,
    #form-user .swiper-button-next,
    #form-user .swiper-pagination {
        display: none !important;
    }
}
@media (max-width: 768px) {
    #form-user .swiper { overflow: visible !important; }

    #form-user .swiper-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        transform: none !important;
        transition: none !important;
    }

    #form-user .swiper-slide {
        width: 100% !important;
        height: auto !important;
    }

    #form-user .swiper-button-prev,
    #form-user .swiper-button-next,
    #form-user .swiper-pagination {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .form-add { padding: 10px 12px !important; }
}

@media (max-width: 768px) {
    /* więcej szerokości dla całej sekcji formularza */
    #form-user .container,
    #form-user .container.form-add,
    #form-user .form-add {
        max-width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* karta: mniej "powietrza" i większa użyteczna szerokość */
    #form-user .card {
        margin: 0 !important;
        border-radius: 0 !important; /* opcjonalnie, jak chcesz bardziej "mobile" */
    }

    #form-user .card-header,
    #form-user .card-body,
    #form-user .card-footer {
        padding: 12px !important;
    }

    /* lista: mniejsze wcięcia i odstępy */
    #form-user ul,
    #form-user .lista-z-plusem {
        padding-left: 18px !important;
        margin: 8px 0 !important;
    }

    #form-user li {
        margin-bottom: 6px !important;
    }

    /* przycisk: żeby nie był przy samej krawędzi i miał sensowną wysokość */
    #form-user .btn,
    #form-user button {
        width: 100% !important;
        padding: 5px 5px !important;
        border-radius: 2px;
        box-shadow: #1F1F20;
    }
}

@media (max-width: 480px) {
    #form-user .container,
    #form-user .container.form-add,
    #form-user .form-add {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    #form-user .card-header,
    #form-user .card-body,
    #form-user .card-footer {
        padding: 10px !important;
    }
}

