@font-face {
    font-family: 'Gilroy-Regular';
    src:
        url('/assets/fonts/Gilroy-Regular.ttf'); format('ttf')/*,
        url('assets/fonts/Gilroy-Medium.ttf') format('ttf'),
        url('assets/fonts/Gilroy-Light.ttf') format('ttf'),
        url('assets/fonts/Gilroy-Thin.ttf') format('ttf'),
        url('assets/fonts/Gilroy-SemiBold.ttf') format('ttf'),
        url('assets/fonts/Gilroy-Bold.ttf') format('ttf'),
        url('assets/fonts/Gilroy-ExtraBold.ttf') format('ttf')*/;
    /* Add more src declarations if necessary for different file formats */
}
html {
    font-family: Gilroy-Regular, serif !important;
}

a {
    text-decoration: none;
    color: inherit;
}
a:visited {
    color: inherit;
}
a:focus,  a:hover {
    color: inherit;
}

.t-full-anchor {
    color: var(--t-color-primary, #0070d2);
    text-decoration: underline;
}
.t-full-anchor:visited {
    color: var(--t-color-primary, #0070d2);
}
.t-full-anchor:focus,
.t-full-anchor:hover {
    color: var(--t-color-primary_hover, #005fb2);
    text-decoration: underline;
}

/*region ----- GIF ----- */
.t-gif-wrap {
    position: relative;
    display: block;
}

.t-gif-attr {
    position: absolute;
    bottom: 6px;
    right: 6px;
    cursor: pointer;
    line-height: 0;
}
.t-gif-attr svg {
    width: 1rem;
    height: 1rem;
    opacity: 0.6;
}
.t-gif-attr:hover svg {
    opacity: 1;
}

.t-gif-attr-tip {
    display: none;
    position: absolute;
    bottom: 100%;
    right: 0;
    background: #fff;
    border: 1px solid var(--t-color-light_gray, #ccc);
    border-radius: .25rem;
    padding: .35rem .6rem;
    font-size: .7rem;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
    z-index: 10;
    line-height: 1.4;
}
.t-gif-attr:hover .t-gif-attr-tip {
    display: block;
}
/*endregion*/

/*region ----- HEADER ----- */

.t-header {
    display: grid;
    grid-template-columns: 1.5fr 2fr .5fr 1.5fr;
    justify-content: center;
    align-items: center;
    color: hsla(178, 100%, 26%, 1);
    padding-top: .5rem;
}

.t-header-logo {
    justify-self: end;
}

.t-header-menu {
    display: grid;
    grid-template-columns: .6fr .7fr 1fr .7fr .6fr .6fr;
    justify-content: left;
    padding-left: 0;
}
.t-header-menu li {
    list-style-type: none;
    font-size: 14px;
}

.t-header-dropdown{
    display: none;
}
.t-header-dropdown > li {
    list-style-type: none;
}

.t-header-button {
    color: white;
    font-weight: 1000;
    font-size: 16px;
    background-color: var(--color-primary);
    cursor: pointer;
    padding: .5rem 1rem .5rem 1rem;
}
.t-header-button:hover {
    background-color: white;
    color: var(--color-primary);
    box-shadow: var(--color-primary);
}

.t-header-search {
    justify-self: start;
}
.t-header-search-container {
    position: relative;
    border-bottom: 1px solid var(--color-primary);
    width: 50%;
}
.t-header-search input {
    border: 1px solid transparent;
}
.t-header-search input:focus {
    outline: none;
}
.t-header-search svg {
    width: 15px;
    height: 15px;
}

/*endregion*/

/*region ----- FOOTER ----- */

/*footer {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
}*/
/*.footer > div {
    justify-self: center;
}*/

.t-footer {
    display: grid;
    grid-template-areas:
    "logo      empty1    empty2        empty3  nav"
    "social    empty4    empty5        empty6  nav"
    "email     empty7    empty8        empty9  nav"
    "trademark trademark empty10       empty11 nav"
    "empty12   empty13   empty14       empty15 nav"
    "copyright copyright accessibility privacy refund";
    color: hsla(178, 100%, 26%, 1);
    font-family: inherit;
    font-size: 14px;
    /*max-width: 1000px;*/
    margin: 0 15% 0 15%;
    height: 270px;
    /*justify-self: center;*/
}
.t-footer-grid-logo {
    grid-area: logo;
    height: 5rem;
}
.t-footer-grid-social {
    grid-area: social;
    justify-self: start;
    height: 2.5rem;
}
.t-footer-grid-email {
    grid-area: email;
    height: 2.5rem;
}
.t-footer-grid-trademark {
    grid-area: trademark;
    height: 2.5rem;
}
.t-footer-grid-copyright {
    grid-area: copyright;
    justify-self: center;
    font-weight: bold;
}
.t-footer-grid-accessibility {
    grid-area: accessibility;
    font-weight: bold;
}
.t-footer-grid-privacy {
    grid-area: privacy;
    font-weight: bold;
    justify-self: end;
}
.t-footer-grid-nav {
    grid-area: nav;
    justify-self: start;
    font-weight: bold;
}
.t-footer-grid-nav > ul {
    padding-top: 2rem;
}
.t-footer-grid-nav li {
    margin: 1rem 0 .5rem 0;
}
.t-footer-grid-refund {
    grid-area: refund;
    font-weight: bold;
    justify-self: start;
    margin-left: 2.5rem;
}
/*.empty0 {
    grid-area: empty0;
    width: 25% !important;
}*/
.empty1 {
    grid-area: empty1;
}
.empty2 {
    grid-area: empty2;
}
.empty3 {
    grid-area: empty3;
}
.empty4 {
    grid-area: empty4;
}
.empty5 {
    grid-area: empty5;
}
.empty6 {
    grid-area: empty6;
}
.empty7 {
    grid-area: empty7;
}
.empty8 {
    grid-area: empty8;
}
.empty9 {
    grid-area: empty9;
}
.empty10 {
    grid-area: empty10;
}
.empty11 {
    grid-area: empty11;
}
.empty12 {
    grid-area: empty12;
}
.empty13 {
    grid-area: empty13;
}
.empty14 {
    grid-area: empty14;
}
.empty15 {
    grid-area: empty15;
}

.t-footer-logo {

}
.t-footer-social {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-self: start;
    padding: 0;
}
.t-footer-social > li {
    list-style-type: none;
}
.t-footer-social-icon {
    margin-right: 1rem;
}
.t-footer-nav {

}
.t-footer-nav > li {
    list-style-type: none;
}
/*endregion*/

/*region---- BUTTONS -----*/
.t-btn {
    position: relative;
    display: inline-block;
    padding: 0 1rem; /*top-bottom right-left*/
    color: var(--t-color);
    background-color: white;
    border: 1px solid transparent;
    border-radius: .25rem;
    line-height: 1.875rem;
    text-decoration: none;
    text-align: center;
    text-overflow: ellipsis;
    font-family: inherit;
    font-size: inherit;
    white-space: normal;
    /*white-space: nowrap;*/
    text-justify: auto;
    margin-left: .5rem;
    margin-right: .5rem;
    cursor: pointer;
    overflow: hidden;
}

/*region types */
.t-btn_basic {
     color: hsla(0, 0%, 50%, 1);
     fill: hsla(0, 0%, 50%, 1);
     border-color: hsla(0, 0%, 85%, 1);
 }
.t-btn_basic:visited {
    color: hsla(0, 0%, 50%, 1);
    fill: hsla(0, 0%, 50%, 1);
}
.t-btn_brand {
    color: hsla(0, 0%, 95%, 1); !important;/* #FFFFFF */
    fill: hsla(0, 0%, 95%, 1); !important;/* #FFFFFF */
    background-color: var(--color-primary); /* #006863 */
}
.t-btn_brand:visited {
    color: hsla(0, 0%, 95%, 1); !important;
    fill: hsla(0, 0%, 95%, 1); !important;
}
.t-btn_brand:hover {
    color: hsla(0, 0%, 95%, 1); /* #FFFFFF */
    fill: hsla(0, 0%, 95%, 1); /* #FFFFFF */
    background-color: hsla(178, 100%, 25%, 1); /* #00807B */
}
.t-btn_secondary {
    color: hsla(0, 0%, 95%, 1); !important;
    fill: hsla(0, 0%, 95%, 1); !important;
    background-color: var(--t-color-secondary); /* #00B0A4 */
}
.t-btn_secondary:visited {
    color: hsla(0, 0%, 95%, 1); !important;
    fill: hsla(0, 0%, 95%, 1); !important;
}
.t-btn_secondary:hover {
    color: hsla(0, 0%, 95%, 1);
    fill: hsla(0, 0%, 95%, 1);
    background-color: var(--t-color-secondary_hover); /* #00CCBE */
}
.t-btn_neutral {
    color: hsla(178, 100%, 20%, 1) !important; /* #006863 */
    fill: hsla(178, 100%, 20%, 1) !important; /* #006863 */
    background-color: hsl(0, 0%, 100%);
    border-color: hsl(20, 4%, 86%);
}
.t-btn_neutral:visited {
    color: hsla(178, 100%, 20%, 1) !important;
    fill: hsla(178, 100%, 20%, 1) !important;
}
.t-btn_neutral:hover {
    color: hsla(178, 100%, 25%, 1) !important; /* #00807B */
    fill: hsla(178, 100%, 25%, 1) !important; /* #00807B */
    background-color: hsla(178, 50%, 90%, 1); /* #00807B */
}
/*endregion*/

/*region actions */
.t-btn_success {
    color: white !important;/* #FFFFFF */
    fill: white !important;/* #FFFFFF */
    background-color: var(--t-color-success); /* #CC461A */
}
.t-btn_success:visited {
    color: white !important;
    fill: white !important;
}
.t-btn_success:hover {
    color: white !important;
    fill: white !important;
    background-color: var(--t-color-success_hover); /* #E24E1D */
    text-decoration: none;
}
.t-btn_warning {
    color: dimgray !important;/* #FFFFFF */
    fill: dimgray !important;/* #FFFFFF */
    background-color: var(--t-color-warning); /* #CC461A */
}
.t-btn_warning:visited {
    color: dimgray !important;
    fill: dimgray !important;
}
.t-btn_warning:hover {
    color: gray !important;
    fill: gray !important;
    background-color: var(--t-color-warning_hover); /* #E24E1D */
}
.t-btn_info {
    color: white !important;/* #FFFFFF */
    fill: white !important;/* #FFFFFF */
    background-color: var(--t-color-info); /* #CC461A */
}
.t-btn_info:visited {
    color: white !important;
    fill: white !important;
}
.t-btn_info:hover {
    color: white !important;
    fill: white !important;
    background-color: var(--t-color-info_hover); /* #E24E1D */
}
.t-btn_destroy {
    color: hsla(0, 0%, 95%, 1) !important;/* #FFFFFF */
    fill: hsla(0, 0%, 95%, 1) !important;/* #FFFFFF */
    background-color: hsla(15, 77%, 45%, 1); /* #CC461A */
}
.t-btn_destroy:visited {
    color: hsla(0, 0%, 95%, 1) !important;
    fill: hsla(0, 0%, 95%, 1) !important;
}
.t-btn_destroy:hover {
    color: hsla(8, 65%, 90%, 1) !important;
    fill: hsla(8, 65%, 90%, 1) !important;
    background-color: hsla(15, 77%, 50%, 1); /* #E24E1D */
}
/*endregion*/

/*region special*/
.t-btn_transparent {
    background-color: transparent !important;
    fill: hsla(0, 0%, 50%, 1);
    color: hsla(0, 0%, 50%, 1);
    width: 1.5rem;
    height: 1.5rem;
}
.t-btn_transparent:visited {
    color: hsla(0, 0%, 50%, 1);
    fill: hsla(0, 0%, 50%, 1);
}
.t-btn_transparent:hover {
    box-shadow: 0 0 .5rem hsla(0, 0%, 50%, 1);;
}
/*endregion*/

/*region positioning*/
.t-btn_center-50percent {
    width: 50%;
}
/*endregion*/

/*region btn icons*/
.t-btn_icon {
    position: absolute;
    max-width: .875rem;
    max-height: .875rem;
    fill: currentColor;
}
.t-btn_icon-action-button{
    position: relative;
    width: 2rem !important;
    height: 2rem !important;
    left: auto;
}
.t-btn_icon-for-modal {
    top: .25rem;
    left: .25rem;
}
/*endregion*/

a.t-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.t-dropdown {
    position: relative;
    display: inline-block;
}
.t-dropdown-content {
    display: none;
    /*position: absolute;
    z-index: 1;
    left: 50%;
    float: left;
    min-width: 10rem;
    max-width: 20rem;
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
    border: 1px solid #dddbda;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    background: white;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.16);
    transform: translateX(-90%);*/
}
.t-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.t-dropdown-content a {
    color: #0070d2;
    text-decoration: none;
    display: block;
    padding: 0.5rem 1.2em;
}
.t-dropdown-content a:hover {
    background-color: #f1f1f1;
}

/*endregion*/

/*region ----- DATATABLES ------*/

.t-datatables {
    color: #3E3E3C;
    width: 100% !important;
    table-layout: fixed;
}
.t-datatables thead {
    color: #706E6B;
    text-transform: uppercase;
}
.t-datatables tbody td {
    height: 1.875rem;
    width: 100%;
    max-height: 1.875rem !important;
    padding: 0 !important;
}
.t-datatables tbody td .t-datatables-menu-btn {
    padding: 0;
    width: 1.5rem;
    height: 1.5rem;
    color: hsla(0, 0%, 50%, 1);
    fill: hsla(0, 0%, 50%, 1);
    border-color: hsla(0, 0%, 85%, 1);
}
.t-datatables tbody td .t-datatables-menu-btn_icon {
    top: .25rem;
    left: .25rem;
}
/*.t-datatables tbody td.t-datatables-menu {
    padding: .25rem 0 !important;
}*/
.t-datatables-overflow_hidden {
    overflow: hidden;
}
.t-datatables-nowrap {
    display: block;
    white-space: nowrap;
    /*text-wrap: none;*/
    overflow: hidden;
    text-overflow: ellipsis;
}
.t-datatables-view {
    color: hsla(178, 100%, 26%, 1);
}
.t-datatables-view:visited {
    color: #0070d2;
}
.t-datatables-container {
    padding: 1rem;
}

/*endregion*/

/*region ----- GRID ----- */

.t-grid {
    display: grid;
    padding: 1rem;
}
.t-grid_2-col-fr{
    grid-template-columns: 1fr 1fr;
}
.t-grid-self-center {
    justify-self: center;
    align-self: center;
}

.t-header {
    grid-template-columns: 1fr auto;
    border: 1px solid hsla(0, 0%, 75%, 1);
    border-radius: .25rem;
}
.t-action-buttons {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.t-btn_group {
    display: inline-flex;
}
.t-btn_group > .t-btn {
    margin: 0;
    border-right-width: 0;
    border-radius: 0;
    padding: 0 .4rem;
}
.t-btn_group > .t-btn:first-child {
    border-radius: .3rem 0 0 .3rem;
}
.t-btn_group > .t-btn:last-child {
    border-radius: 0 .3rem .3rem 0;
    border-right-width: 1px;
}
.t-btn_group > .t-btn:only-child {
    border-radius: .3rem;
}
.t-btn_group > .t-btn span[data-t-text]::before {
    content: attr(data-t-text);
}
.t-btn_group > span > a.t-btn {
    padding: .4rem;
}
.t-btn_group > span > .t-btn {
    margin: 0;
    border-right-width: 0;
    border-radius: 0;
    display: inline;
}
.t-btn_group > span:first-child > .t-btn {
    border-radius: .3rem 0 0 .3rem;
}
.t-btn_group > span:last-child > .t-btn {
    border-radius: 0 .3rem .3rem 0;
    border-right-width: 1px;
}
.t-btn_group > span:only-child > .t-btn {
    border-radius: .3rem;
}
.t-btn_group > span > .t-btn span[data-t-text]::before {
    content: attr(data-t-text);
}
.t-finalize {
    justify-items: center;
    align-items: center;
}

/*endregion*/

/*region ----- MISC ----- */
.t-hide {
    display: none;
}
.t-no-click {
    pointer-events: none;
}
.t-hide {
    display: none !important;
}
/*endregion*/

/*region ----- DASHBOARD ----- */
.t-dashboard {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.t-dashboard_panel-heading {
    margin: .5rem 0 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--t-color, #333);
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--color-primary, #006863);
}
.t-dashboard_kpi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.t-dashboard_card {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border: 1px solid var(--t-color-light_gray, #e0e0e0);
    border-radius: .5rem;
    border-left: 4px solid var(--color-primary, #006863);
}
.t-dashboard_card--sent   { border-left-color: #00B0A4; }
.t-dashboard_card--pending { border-left-color: #e0a800; }
.t-dashboard_card--danger  { border-left-color: #c0392b; }
.t-dashboard_card-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #888;
}
.t-dashboard_card-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--t-color, #333);
    line-height: 1;
}
.t-dashboard_charts {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}
.t-dashboard_chart-wrap {
    background: white;
    border: 1px solid var(--t-color-light_gray, #e0e0e0);
    border-radius: .5rem;
    padding: 1.25rem;
    height: 320px;
    display: flex;
    flex-direction: column;
}
.t-dashboard_chart-wrap canvas {
    flex: 1;
    min-height: 0;
    max-width: 100%;
}
.t-dashboard_chart-wrap--donut {
    align-items: center;
}
.t-dashboard_recent canvas {
    max-height: 280px;
}
.t-dashboard_chart-title {
    margin: 0 0 1rem;
    font-size: .875rem;
    font-weight: 600;
    color: #555;
}
.t-dashboard_recent {
    background: white;
    border: 1px solid var(--t-color-light_gray, #e0e0e0);
    border-radius: .5rem;
    padding: 1.25rem;
}
.t-dashboard_section-title {
    margin: 0 0 1rem;
    font-size: .875rem;
    font-weight: 600;
    color: #555;
}
.t-dashboard_table {
    width: 100%;
    border-collapse: collapse;
    font-size: .875rem;
}
.t-dashboard_table th {
    text-align: left;
    padding: .4rem .75rem;
    border-bottom: 2px solid var(--t-color-light_gray, #e0e0e0);
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    font-size: .7rem;
    letter-spacing: .05em;
}
.t-dashboard_table td {
    padding: .5rem .75rem;
    border-bottom: 1px solid var(--t-color-light_gray, #f0f0f0);
    color: var(--t-color, #333);
}
.t-dashboard_table tbody tr:last-child td { border-bottom: none; }
.t-dashboard_table tbody tr:hover td { background: #f9f9f9; }
.t-dashboard_empty {
    text-align: center;
    color: #aaa;
    padding: 1.5rem !important;
}
.t-dashboard_badge {
    display: inline-block;
    padding: .1rem .45rem;
    border-radius: 999px;
    background: var(--color-primary, #006863);
    color: white;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.t-dashboard_mono {
    font-family: monospace;
    font-size: .8rem;
    max-width: 18rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*endregion*/