/* *************************************************************************************************************************************** */
/* GLOBAL - 2020-05-17                                                                                                                     */
/* *************************************************************************************************************************************** */
/* ****************************** */
/* GLOBAL - Variablar. 2021-05-19 */
/* ****************************** */
:root {
    /* Färger */
    --global-bg: rgb(239, 242, 234);
    --global-bg-orange-1: rgb(255, 90, 0);
    --global-bg-orange-05: rgba(255, 90, 0, 0.5);
    --global-bg-orange-hover: rgb(235, 90, 11);
    --global-bg-orange-active: rgb(222, 82, 6);
    --global-bg-purple-1: rgb(195, 30, 170);
    --global-bg-purpl-05: rgba(195, 30, 170, 0.5);
    --global-bg-purple-hover: rgb(175, 26, 152);
    --global-bg-purple-active: rgb(156, 25, 136);
    --global-bg-blue-1: rgb(49, 161, 189);
    --global-bg-blue-07: rgba(49, 161, 189, 0.7);
    --global-bg-blue-05: rgba(49, 161, 189, 0.5);
    --global-bg-blue-03: rgba(49, 161, 189, 0.3);
    --global-bg-blue-hover: rgb(42, 137, 161);
    --global-bg-blue-active: rgb(34, 113, 133);
    --global-bg-green-1: rgb(25, 170, 115);
    --global-bg-green-05: rgba(25, 170, 115, 0.5);
    --global-bg-green-hover: rgb(22, 154, 104);
    --global-bg-green-active: rgb(19, 133, 90);
    --global-bg-yellow-1: rgb(255, 255, 102);
    --global-bg-yellow-05: rgba(255, 255, 102, 0.5);
    --global-bg-yellow-hover: rgb(231, 231, 91);
    --global-bg-yellow-active: rgb(214, 214, 85);
    --global-bg-red-1: rgb(232, 0, 0);
    --global-bg-red-05: rgba(232, 0, 0, 0.5);
    --global-bg-red-hover: rgb(224, 47, 47);
    --global-bg-red-active: rgb(238, 62, 62);
    --global-bg-transparent-hover: rgba(17, 17, 17, 0.2);
    --global-bg-transparent-active: rgba(17, 17, 17, 0.4);
    --global-bg-grey-1: rgb(46, 45, 45);
    --global-bg-grey-07: rgba(46, 45, 45, 0.7);
    --global-bg-grey-05: rgba(46, 45, 45, 0.5);
    --global-bg-grey-03: rgba(46, 45, 45, 0.3);
    --global-bg-grey-01: rgba(46, 45, 45, 0.1);
    --global-bg-light-1: rgb(255, 255, 255);
    --global-bg-light-09: rgba(255, 255, 255, 0.9);
    --global-bg-light-08: rgba(255, 255, 255, 0.8);
    --global-bg-light-07: rgba(255, 255, 255, 0.7);
    --global-bg-light-05: rgba(255, 255, 255, 0.5);
    --global-bg-light-03: rgba(255, 255, 255, 0.3);
    --global-bg-light-01: rgba(255, 255, 255, 0.1);
    --global-bg-message-prio: rgb(232, 0, 0);
    --global-bg-message-alert: rgb(255, 255, 102);
    --global-bg-message-work: rgb(255, 90, 0);
    --global-bg-message-done: rgb(25, 170, 115);
    --global-bg-message-ok: rgb(3, 135, 84);
    --global-bg-message-future: rgb(156, 156, 156);
    --global-text-color-light: rgb(255, 255, 255);
    --global-text-color-light-07: rgba(255, 255, 255, 0.7);
    --global-text-color-dark: rgb(8,8,8);
    --global-text-color-dark-07: rgba(10, 10, 10, 0.7);
    --global-text-color-dark-05: rgba(10, 10, 10, 0.5);
    --global-text-color-dark-03: rgba(10, 10, 10, 0.3);
    /* Text storlek */
    /* Övrigt */
    --global-boxshadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.4);
    --global-boxshadow-1: 0px 4px 8px 0px rgba(0, 0, 0, 1);
    --global-radius: 5px;
    --global-fontsize-small: 12px;
    --global-fontsize-medium: 15px;
    --global-fontsize-big: 20px;
    --global-border: 2px solid var(--global-bg-grey-07);
}

/* *********************************** */
/* GLOBAL - Allmäna objekt. 2020-05-17 */
/* *********************************** */
body {
    width: 100vw;
    height: 100vh;
    font-family: "ABeeZee";
    overflow: hidden;
    cursor: default;
    background-color: var(--global-bg);
}

.global-bg {
    width: 100vw;
    height: 100vh;
    position: absolute;
    background-image: url("../../img/bg.jpg");
    background-size: cover;
    background-position: bottom;
    filter: opacity(30%);
    z-index: -100;
}

/* *********************************** */
/* GLOBAL - Buttons objekt. 2021-05-20 */
/* *********************************** */
button {
    background-color: var(--global-bg-blue-1);
    color: var(--global-text-color-light);
    border: 0px;
    border-radius: var(--global-radius);
    padding: 0 15px;
    text-align: center;
    cursor: pointer;
    outline: none;
}

button span {
    color: var(--global-text-color-light-07);
    margin-left: 10px;
}

button[data-button="1"] {
    height: 30px;
    font-size: var(--global-fontsize-big);
}

button[data-button="2"] {
    height: 25px;
    font-size: var(--global-fontsize-medium);
    background-color: var(--global-bg-blue-1);
}

button[data-button="3"] {
    height: 40px;
    font-size: var(--global-fontsize-medium);
    background-color: transparent;
    color: var(--global-text-color-dark);
}

button[data-button="3"] span {
    color: var(--global-text-color-dark-07);
    margin-left: 10px;
}

button[data-button="4"] {
    background-color: #ffff66 !important;
    width: 100%;
    color: var(--global-text-color-dark);
    font-size: var(--global-fontsize-medium);
    margin: 0 0 5px 0;
    padding: 2.5px;
    line-height: 20px;
    height: 25px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
    text-align: center;
    border-radius: 0;
}

button:hover, button[data-active="hover"] {
    background-color: var(--global-bg-blue-hover);
    color: var(--global-text-color-light);
}

button[data-active="true"] {
    background-color: var(--global-bg-blue-active);
    color: var(--global-text-color-light);
}

button[data-button="2"][data-active="true"] {
    background-color: var(--global-bg-blue-active) !important;
    color: var(--global-text-color-light);
}

button[data-button="3"]:hover {
    background-color: transparent;
    color: var(--global-text-color-dark);
    text-decoration: underline;
}

button[data-button="3"][data-active="true"] {
    background-color: transparent;
    color: var(--global-text-color-dark);
    font-weight: bold;
}

button[data-button="4"]:hover {
    background-color: #cccc00 !important;
    color: var(--global-text-color-dark);
}

button[data-button="4"][data-active="true"] {
    background-color: #cccc00 !important;
    color: var(--global-text-color-dark);
}

button[disabled] {
    background-color: rgb(210, 210, 210) !important;
    color: rgb(129, 129, 129) !important;
}

/* *********************************** */
/* GLOBAL - Select objekt. 2021-05-20 */
/* *********************************** */
select {
    height: 28px;
    border-radius: var(--global-radius);
    border: 0px;
    padding-left: 10px;
    font-size: var(--global-fontsize-medium);
    outline: none;
}

/* *********************************** */
/* GLOBAL - Input objekt. 2021-05-20 */
/* *********************************** */
input[type=text], input[type=password], input[type=time] {
    height: 28px;
    border-radius: var(--global-radius);
    border: 0px;
    padding-left: 10px;
    font-size: var(--global-fontsize-medium);
    outline: none;
}

input[type=text]:hover, input[type=text]:focus, input[type=password]:hover, input[type=password]:focus {
    box-shadow: var(--global-boxshadow);
}

input[disabled] {
    background-color: var(--global-bg-grey-05) !important;
    color: var(--global-text-color-dark-07) !important;
}

/* *********************************** */
/* GLOBAL - Label objekt. 2021-05-20 */
/* *********************************** */
.global-label {
    position: relative;
    padding: 0 10px 0 35px;
    margin-bottom: 12px;
    width: fit-content;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.global-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0 !important;
    width: 0 !important;
}

.global-label-span {
    position: absolute;
    top: 0;
    left: 0;
    height: 28px;
    width: 28px;
    border-radius: var(--global-radius);
    background-color: var(--global-bg-light-1);
}

.global-label:hover input~.global-label-span {
    box-shadow: var(--global-boxshadow);
}

.global-label input:checked~.global-label-span {
    background-color: #2196F3;
}

.global-label-span:after {
    content: "";
    position: absolute;
    display: none;
}

.global-label input:checked~.global-label-span:after {
    display: block;
}

.global-label .global-label-span:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* *********************************** */
/* GLOBAL - Autocomplete objekt. 2021-05-20 */
/* *********************************** */
.ui-autocomplete {
    position: absolute;
    cursor: default;
    z-index: 4000 !important
}

/* *********************************** */
/* GLOBAL - Object objekt. 2021-05-20 */
/* *********************************** */
object {
    width: 100%;
    height: 99.5%;
}

/* ******************************* */
/* GLOBAL - Autoupdate. 2021-01-19 */
/* ******************************* */
.global-auto-update {
    position: absolute;
    z-index: 1000;
    height: 3px;
    width: 0vw;
    background-color: red;
    box-shadow: var(--global-boxshadow);
}

/* ****************************** */
/* GLOBAL - Container. 2020-05-17 */
/* ****************************** */
.global-container {
    width: 100vw;
    height: calc(100vh - 120px);
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: fit-content(300px) fit-content(300px) 1fr;
    grid-template-areas:
        "container-header container-header"
        "container-fixed container-map"
        "container-content container-map";
}

/* *************************************** */
/* GLOBAL - Container - Header. 2020-05-17 */
/* *************************************** */

.global-container .global-container-header {
    grid-area: container-header;
    font-size: var(--global-fontsize-medium);
    width: 100%;
    box-shadow: var(--global-boxshadow);
    margin: 5px 0 5px 0;
    background-color: var(--global-bg-blue-1);
    color: var(--global-text-color-light);
    display: grid;
    grid-template-columns: 1fr fit-content(300px);
    grid-template-rows: auto auto auto auto auto;
    grid-template-areas:
        "container-header-name container-header-update"
        "container-header-alert container-header-alert"
        "container-header-info-1 container-header-info-1"
        "container-header-info-2 container-header-info-2"
        "container-header-button container-header-button";
}

.global-container .global-container-header .global-container-header-name {
    grid-area: container-header-name;
    padding: 0 10px;
    font-size: var(--global-fontsize-medium);
    line-height: 25px;
}

.global-container .global-container-header .global-container-header-update {
    grid-area: container-header-update;
    width: fit-content;
    padding: 0 10px 0 0;
    font-size: var(--global-fontsize-small);
    line-height: 25px;
    text-align: right;
    font-style: italic;
    cursor: pointer;
}

.global-container .global-container-header .global-container-header-alert {
    grid-area: container-header-alert;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.global-container .global-container-header .global-container-header-info-1 {
    grid-area: container-header-info-1;
}

.global-container .global-container-header .global-container-header-info-2 {
    grid-area: container-header-info-2;
}

.global-container .global-container-header .global-container-header-info-1,
.global-container .global-container-header .global-container-header-info-2 {
    display: flex;
    flex-direction: row;
    line-height: 25px;
    max-height: 25px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.global-container .global-container-header .global-container-header-info-1 p,
.global-container .global-container-header .global-container-header-info-2 p {
    line-height: 25px;
    padding: 0 0 0 10px;
}

.global-container .global-container-header .global-container-header-info-1 button,
.global-container .global-container-header .global-container-header-info-2 button {
    color: var(--global-bg-grey-1);
    height: 25px;
    line-height: 25px;
    width: fit-content;
    padding: 0;
    margin: 0 0 0 5px;
}

.global-container .global-container-header .global-container-header-info-1 span,
.global-container .global-container-header .global-container-header-info-2 span {
    font-weight: bold;
    margin: 0 0 0 5px;
}

.global-container .global-container-header .global-container-header-button {
    grid-area: container-header-button;
    padding: 0 10px 0 5px;
}

.global-container .global-container-header .global-container-header-button button {
    margin: 5px 5px 5px 5px;
}

.global-container .global-container-header .global-container-header-button button[data-show="false"] {
    display: none;
}

/* ************************************** */
/* GLOBAL - Container - Fixed. 2020-05-17 */
/* ************************************** */
.global-container .global-container-fixed {
    grid-area: container-fixed;
    overflow: auto;
    padding: 10px;
}

/* **************************************** */
/* GLOBAL - Container - Content. 2020-05-17 */
/* **************************************** */
.global-container .global-container-content {
    grid-area: container-content;
    overflow: auto;
    padding: 10px;
}

.global-container .global-container-content::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border-radius: var(--global-radius);
    background-color: transparent;
}

.global-container .global-container-content::-webkit-scrollbar:hover {
    background-color: var(--global-bg-grey-03);
}

.global-container .global-container-content::-webkit-scrollbar-thumb {
    background-color: var(--global-bg-grey-05);
    border-radius: var(--global-radius);
}

/* ************************************ */
/* GLOBAL - Container - Map. 2020-05-20 */
/* ************************************ */
.global-container .global-container-map {
    grid-area: container-map;
    position: relative;
}

.global-container .global-container-map #global-container-map-id {
    width: 500px;
    height: 100%;
    z-index: 1;
    transition: 0.3s;
}

.global-container .global-container-map .global-container-map-resize {
    position: absolute;
    z-index: 100;
    width: 10px;
    padding: 0px !important;
    bottom: 0px;
    left: 0px;
    height: 100%;
    transition: 0.3s;
    border-radius: 0px;
    background-color: var(--global-bg-grey-03);
}

.global-container .global-container-map .global-container-map-resize[data-active="true"] {
    background-color: var(--global-bg-grey-03) !important;
}

.global-container .global-container-map .global-container-map-resize:hover,
.global-container .global-container-map .global-container-map-resize[data-active="true"]:hover {
    width: 30px;
    background-color: var(--global-bg-grey-05) !important;
}

.global-container .global-container-map .global-container-map-resize p {
    display: inline-block;
    color: transparent;
    writing-mode: vertical-rl;
    width: 30px;
    line-height: 30px;
    letter-spacing: 6px;
    transition: 0.5s;
}

.global-container .global-container-map .global-container-map-resize:hover p {
    color: var(--global-text-color-light);
}

.global-container-map-marker {
    width: 30px;
    height: 30px;
    border-radius: 50% 50% 50% 0;
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -15px 0 0 -15px;
    box-shadow: var(--global-boxshadow);
}

.global-container-map-marker::after {
    content: '';
    width: 24px;
    height: 24px;
    margin: 3px 0 0 3px;
    background-color: var(--global-bg-light-1);
    position: absolute;
    border-radius: 50%;
}

.global-container-map-marker img {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 0;
    margin: 4px;
    z-index: 100;
    transform: rotate(45deg);
}

.global-container-map-marker-cluster {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -15px 0 0 -15px;
    box-shadow: var(--global-boxshadow);
}

.global-container-map-marker-cluster::after {
    content: '';
    width: 24px;
    height: 24px;
    margin: 3px 0 0 3px;
    background-color: var(--global-bg-light-1);
    position: absolute;
    border-radius: 50%;
}

.global-container-map-marker-cluster img {
    position: absolute;
    width: 16px;
    height: 16px;
    right: 0;
    margin: 4px;
    z-index: 100;
    transform: rotate(45deg);
}

.global-container-map-marker-cluster p {
    position: absolute;
    width: 16px;
    height: 16px;
    right: 0;
    margin: 12px;
    z-index: 100;
    text-align: center;
    font-size: 10px;
    transform: rotate(45deg);
}

.global-container-map-tooltip {
    border-left: var(--global-border);
    min-width: 200px;
    width: fit-content;
    max-width: 400px;
    margin: 10px;
    padding: 5px;
}

.global-container-map-tooltip p:nth-child(1) {
    line-height: 20px;
    font-size: var(--global-fontsize-medium);
    font-weight: bold;
    white-space: normal;
}

.global-container-map-tooltip p:nth-child(2) {
    line-height: 16px;
    font-size: var(--global-fontsize-small);
    white-space: pre-line;
}

.global-container-map-popup {
    border-left: var(--global-border);
    padding-left: 3px;
}

.global-container-map-popup p {
    font-size: var(--global-fontsize-medium);
}

.global-container-map-popup select {
    height: 20px;
    border-radius: 0px;
    padding-left: 0px;
    font-size: var(--global-fontsize-medium);
}

/* **************************** */
/* GLOBAL - Message. 2020-12-16 */
/* **************************** */
.global-message {
    display: flex;
    flex-direction: column;
    color: var(--global-text-color-dark);
    width: 100%;
    overflow: hidden;
    box-shadow: var(--global-boxshadow);
}

.global-message .global-message-head {
    background-color: var(--global-bg-grey-01);
    display: flex;
    flex-wrap: nowrap;
    height: 60px;
    width: 100%;
    color: var(--global-text-color-dark);
}

.global-message[data-size="small"] .global-message-head {
    height: 30px;
}

.global-message .global-message-head img {
    height: 50px;
    width: 50px;
    margin: 5px 10px;
}

.global-message[data-size="small"] .global-message-head img {
    height: 20px;
    width: 20px;
}

.global-message .global-message-head div:nth-child(2) {
    height: 60px;
    width: calc(100% - 270px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.global-message[data-size="small"] .global-message-head div:nth-child(2) {
    height: 30px;
}

.global-message[data-deleted="1"] .global-message-head div:nth-child(2) {
    color: var(--global-text-color-dark-07);
    font-style: italic;
}

.global-message .global-message-head div:nth-child(2) p:nth-child(1) {
    line-height: 35px;
    font-size: var(--global-fontsize-big);
}

.global-message[data-size="small"] .global-message-head div:nth-child(2) p:nth-child(1) {
    line-height: 30px;
    font-size: var(--global-fontsize-medium);
}

.global-message .global-message-head div:nth-child(2) p:nth-child(2) {
    line-height: 25px;
    font-size: var(--global-fontsize-medium);
}

.global-message[data-size="small"] .global-message-head div:nth-child(2) p:nth-child(2) {
    display: none;
}

.global-message .global-message-head div:nth-child(3) {
    width: 200px;
    display: flex;
    justify-content: space-between;
}

.global-message .global-message-head div:nth-child(3) .global-message-textarea {
    display: none;
}

.global-message .global-message-head div:nth-child(3) button:nth-child(2) {
    width: 120px;
    height: 30px;
    margin: 15px auto;
    font-size: var(--global-fontsize-medium);
}

.global-message[data-size="small"] .global-message-head div:nth-child(3) button:nth-child(2) {
    height: 20px;
    margin: 5px auto;
}

.global-message .global-message-head div:nth-child(3) button:nth-child(3) {
    width: 60px;
    height: 60px;
    font-size: 40px;
    background-color: transparent;
    color: var(--global-text-color-dark);
}

.global-message[data-size="small"] .global-message-head div:nth-child(3) button:nth-child(3) {
    height: 30px;
    width: 30px;
    font-size: 20px;
}

.global-message .global-message-head div:nth-child(3) button:nth-child(2):hover {
    background-color: var(--global-bg-blue-hover) !important;
}

.global-message .global-message-head div:nth-child(3) button:nth-child(2):active {
    background-color: var(--global-bg-blue-active) !important;
}

.global-message .global-message-head div:nth-child(3) button:nth-child(3)[data-active=true] {
    background-color: transparent !important;
}

.global-message .global-message-body {
    padding: 10px;
    background-color: var(--global-bg-light-1);
    border-left: var(--global-border);
    margin-bottom: 5px;
}

.global-message[data-active="false"] .global-message-body {
    display: none;
}

.global-message[data-active="true"] .global-message-body {
    display: block;
}

.global-message .global-message-body div:nth-child(1) {
    white-space: pre-line;
    line-height: 30px;
    font-size: var(--global-fontsize-big);
    margin: 0 0 5px 0;
}

.global-message .global-message-body div:nth-child(2) {
    margin: 0 0 5px 0;
    line-height: 25px;
    font-size: var(--global-fontsize-medium);
}

.global-message .global-message-body div:nth-child(2) p:nth-child(1) {
    font-weight: bold;
}

.global-message .global-message-body div:nth-child(2) p:nth-child(2) {
    font-style: italic;
}

.global-message .global-message-body div:nth-child(3) {
    margin: 0 0 5px 0;
    line-height: 22px;
    font-size: var(--global-fontsize-medium);
    color: var(--global-text-color-dark-07);
}

.global-message .global-message-body div:nth-child(3) p:nth-child(1) {
    font-weight: bold;
}

.global-message .global-message-body div:nth-child(3) p:nth-child(2) {
    font-style: italic;
}

.global-message .global-message-body-title {
    white-space: pre-line;
    line-height: 30px;
    font-weight: bold;
    font-size: var(--global-fontsize-medium);
}

.global-message .global-message-body-text {
    margin: 0 0 5px 0;
    line-height: 25px;
    font-size: var(--global-fontsize-medium);
}

.global-message .global-message-body div:nth-child(4) {
    margin: 0 0 5px 0;
    line-height: 20px;
    font-size: var(--global-fontsize-medium);
}

.global-message .global-message-body div:nth-child(4) p:nth-child(1) {
    font-weight: bold;
}

.global-message .global-message-body div:nth-child(4) p:nth-child(2) {
    font-style: italic;
}

.global-message .global-message-body div:nth-child(5) {
    line-height: 20px;
    font-size: var(--global-fontsize-medium);
    font-style: italic;
}

/* ************************** */
/* GLOBAL - Popup. 2020-12-16 */
/* ************************** */
.global-popup {
    position: absolute;
    display: flex;
    flex-direction: column;
    color: var(--global-text-color-grey);
    width: 1000px;
    z-index: 1000;
    top: 300px;
    left: calc(50vw - 500px);
    box-shadow: var(--global-boxshadow);
}

.global-popup .global-popup-head {
    background-color: var(--global-bg-grey-01);
    display: flex;
    flex-wrap: nowrap;
    height: 60px;
    width: 100%;
    color: var(--global-text-color-dark);
    cursor: move;
}

.global-popup .global-popup-head img {
    height: 50px;
    width: 50px;
    margin: 5px 10px;
}

.global-popup .global-popup-head div:nth-child(2) {
    height: 60px;
    width: calc(100% - 270px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.global-popup[data-deleted="1"] .global-popup-head div:nth-child(2) {
    color: var(--global-text-color-dark-07);
    font-style: italic;
}

.global-popup .global-popup-head div:nth-child(2) p:nth-child(1) {
    line-height: 35px;
    font-size: var(--global-fontsize-big);
}

.global-popup .global-popup-head div:nth-child(2) p:nth-child(2) {
    line-height: 25px;
    font-size: var(--global-fontsize-medium);
}

.global-popup .global-popup-head div:nth-child(3) {
    width: 200px;
    display: flex;
    justify-content: space-between;
}

.global-popup .global-popup-head div:nth-child(3) .global-popup-textarea {
    display: none;
}

.global-popup .global-popup-head div:nth-child(3) button {
    width: 120px;
    height: 30px;
    margin: 15px 5px;
    font-size: var(--global-fontsize-medium);
}

.global-popup .global-popup-head div:nth-child(3) button:nth-child(2)[data-active=true],
.global-popup .global-popup-head div:nth-child(3) button:nth-child(3)[data-active=true] {
    background-color: var(--global-bg-blue-1) !important;
}

.global-popup .global-popup-head div:nth-child(3) button:nth-child(2):hover,
.global-popup .global-popup-head div:nth-child(3) button:nth-child(3):hover {
    background-color: var(--global-bg-blue-hover) !important;
}

.global-popup .global-popup-head div:nth-child(3) button:nth-child(2):active,
.global-popup .global-popup-head div:nth-child(3) button:nth-child(3):active {
    background-color: var(--global-bg-blue-active) !important;
}

.global-popup .global-popup-body {
    padding: 10px;
    background-color: var(--global-bg-light-1);
    border-left: var(--global-border);
}

.global-popup .global-popup-body div:nth-child(1) {
    white-space: pre-line;
    line-height: 30px;
    font-size: var(--global-fontsize-big);
    margin: 0 0 5px 0;
}

.global-popup .global-popup-body div:nth-child(2) {
    margin: 0 0 5px 0;
    line-height: 25px;
    font-size: var(--global-fontsize-medium);
}

.global-popup .global-popup-body div:nth-child(2) p:nth-child(1) {
    font-weight: bold;
}

.global-popup .global-popup-body div:nth-child(2) p:nth-child(2) {
    font-style: italic;
}

.global-popup .global-popup-body div:nth-child(3) {
    margin: 0 0 5px 0;
    line-height: 22px;
    font-size: var(--global-fontsize-medium);
    color: var(--global-text-color-dark-07);
}

.global-popup .global-popup-body div:nth-child(3) p:nth-child(1) {
    font-weight: bold;
}

.global-popup .global-popup-body div:nth-child(3) p:nth-child(2) {
    font-style: italic;
}

.global-popup .global-popup-body div:nth-child(4) {
    margin: 0 0 5px 0;
    line-height: 20px;
    font-size: var(--global-fontsize-medium);
}

.global-popup .global-popup-body div:nth-child(4) p:nth-child(1) {
    font-weight: bold;
}

.global-popup .global-popup-body div:nth-child(4) p:nth-child(2) {
    font-style: italic;
}

.global-popup .global-popup-body div:nth-child(5) {
    line-height: 20px;
    font-size: var(--global-fontsize-medium);
    font-style: italic;
}

/* ************************* */
/* GLOBAL - Card. 2021-10-18 */
/* ************************* */
.global-card {
    color: var(--global-text-color-dark);
    box-shadow: var(--global-boxshadow);
    width: 100%;
    overflow: hidden;
    margin: 40px 0 40px 0;
    position: relative;
    transition: all 0.2s ease;
}

.global-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background-color: var(--global-bg-light-09);
    z-index: -1;
}

.global-card:first-child {
    margin-top: 10px;
}

.global-card:hover {
    box-shadow: var(--global-boxshadow-1);
}
