<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Root */

:root {
    --backgroundColor: #0d2c4f;
    --widgetBackColor: #c0c3cb;
    --widgetHeaderBackColor: #0e192b;
    --modalUserHeaderColor: #dddddd;
    --widgetColor: #0e192b;
    --widgetHeaderColor: white;
    --tableHeaderBgColor: #65778c;
    --color1: #091f24;
    --color2: #cddddd;
    --color3: #6b95c1;
    --color4: #444a3d;
    --color5: #a995a9;
    --menuColor: black;
    --menuFont: 'Bebas Neue', sans-serif;
    --generalFont: 'Montserrat', sans-serif;
    --modalbgWhite: #fff;
}

/* TimeInterval */

.ti-container {
    display: flex;
    width: fit-content;
    border: 1px solid rgb(144, 144, 196);
    padding: 5px 20px;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    border-radius: 4px;
}

.ti-member {
    display: flex;
    justify-content: center;
    width: 20px;
    border: none !important;
}

.ti-focus {
    background-color: rgb(144, 144, 196);
    color: white;
}

/* Horizontal menu */
/*.menu{*/
/*    position: fixed;*/
/*    display: flex;*/
/*    width: 100%;*/
/*    padding: 1rem 2rem;*/
/*    font-family: var(--menuFont);*/
/*    background-color: rgb(25, 41, 97);*/
/*}*/
/*.menu-navigation &gt; ul{*/
/*    display: flex;*/
/*}*/
/*.menu-navigation li{*/
/*    position: relative;*/
/*    padding: 5px 1rem;*/
/*    list-style: none;*/
/*}*/
/*.menu-navigation li &gt; a{*/
/*    color: white;*/
/*    text-transform: uppercase;*/
/*    text-decoration: none;*/
/*    cursor: pointer;*/
/*    transition: 0.3s;*/
/*}*/
/*.menu-navigation li &gt; a:hover{*/
/*    color: yellow;*/
/*}*/

/* FlyingIconMenu */
.fim-button {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.fim-container {
    position: absolute;
    display: none;
    bottom: 0;
    right: 0;
}

/* Modal */
.modalContainer {
    position: absolute;
    display: none;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 20;
    background-color: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(4px);
}

.modalContent {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: inherit;
    width: inherit;
}

.fixOnTop {
    align-items: start !important;
}

.modalFrame {
    display: flex;
    flex-direction: column;
    color: var(--widgetHeaderBackColor);
    background-color: var(--widgetBackColor);
    border: none;
    box-shadow: 0 0 6rem rgba(187, 187, 187, 0.6);
}

.modalFrame .tableRow:not(.tableHeader) {
    color: black !important;
}

.modalTitle {
    font-family: var(--menuFont);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.8rem 1rem !important;
    background-color: var(--widgetHeaderBackColor);
    color: white;
}

.modalUserTitle {
    font-family: var(--menuFont);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.8rem 1rem !important;
    background-color: var(--modalUserHeaderColor);
    color: var(--color4);
}

.modalUserFrame {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: var(--widgetHeaderBackColor);
    background-color: var(--modalbgWhite);
    border: none;
}

.modalUserClose {
    width: 30px;
    height: 30px;
    background-color: #fff !important;
    border-radius: 10px;
    color: red;
}

.modalClose {
    position: relative;
    min-width: 30px;
    min-height: 30px;
}

.modalUserClose:hover {
    background-color: var(--color5) !important;
    filter: invert(1);
}



.modalFooter {
    background-color: var(--widgetHeaderBackColor);
}

.modalInner {
    padding: 1.5rem 1rem;
    max-height: 80vh;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    overflow-y: auto;
    overflow-x: hidden;
}

.modalControls {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.btnCancel {
    color: white;
    padding: 5px 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
    cursor: pointer;
    background-color: rgba(252, 101, 101, 0.2);
    border: none;
}

.btnCancel:hover {
    background-color: rgba(157, 46, 46, 0.9);
}

.btnOK {
    color: white;
    padding: 5px 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
    background-color: rgba(144, 255, 75, 0.2);
    border: none;
}

.btnOK:hover {
    background-color: rgba(83, 150, 53, 0.9);
}

.btnPulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    70% {
        transform: scale(0.7);
        box-shadow: 0 0 0 5px #bedfff;
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #bedfff;
    }
}

.modalRow {
    display: flex;
    padding: 3px 0;
    column-gap: 1rem;
}

.modalInput {
    min-height: 24px;
    outline: none;
    border: 1px solid #656565;
    padding: 3px 5px;
    font-size: 14px;
}

.modalSelect {
    border: 1px solid #656565;
    background-color: white !important;
    color: black !important;
    min-height: 25px;
    height: 25px;
}

.modalInner label {
    font-size: 13px;
    font-weight: 600;
}

.modalButton {
    color: var(--mainColor);
    padding: 5px 10px;
    font-size: 1rem;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid #1345fc;
    border-radius: 4px;
    transition: 0.3s;
    cursor: pointer;
}

.modalButton:hover {
    background-color: #1d36b3;
}

.modalGridRow {
    display: inline-grid;
    width: 100%;
    padding: 3px;
    grid-template-columns: 10% 10% 10% 10% 10% 10% 10% 10% 10% 10%;
}

.modalGridRow12 {
    display: inline-grid;
    width: 100%;
    padding: 3px;
    grid-template-columns: 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33%;
}

.innerTitle {
    background-color: #1d2c5a;
    color: var(--mainColor);
    font-weight: bolder;
    padding: 5px 10px;
    margin: 10px;
}

.isActiveLamp {
    width: 30px;
}

.error {
    /*background-color: #ff5858 !important;*/
    background-color: #ecab8e !important;
}

@media (max-width: 500px) {
    .modalRow {
        flex-direction: column;
    }
}

/* RadioButton */
.rb-title {
    padding: 10px;
    font-weight: 600;
}

.rb-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rb-horizontalOptionsContainer {
    display: flex;
}

.rb-verticalOptionsContainer {
    display: flex;
    flex-direction: column;
}

.rb-option {
    display: flex;
    align-items: center;
    padding: 2px 10px 2px 0px;
    transition: 0.3s;
    cursor: pointer;
}

.rb-sign {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    background-color: white;
    border: 1px solid grey;
    border-radius: 9px;
    transition: 0.3s;
}

.rb-selected {
    background-color: #414040;
}

/* Select */
.selectContainer,
.selectContainer * {
    font-family: Calibri, serif;
    font-size: 16px;
}

.selectContainer {
    position: relative;
    display: flex;
    justify-content: space-between;
    /*min-width: 100px;*/
    min-height: 25px;
    padding: 0px 20px 1px 5px;
    background-color: transparent;
    color: white;
    cursor: pointer;
}

.selectInput {
    background-color: inherit;
    color: inherit;
    border: none;
    width: 100%;
}

.inputReadOnly {
    /*pointer-events: none;*/
}

.selectArrow {
    position: absolute;
    font-size: 20px;
    font-weight: 700;
    right: 8px;
    /*top: 4px;*/
    transform: rotate(-90deg);
    transition: 0.3s;
}

.selectOpen {
    transform: rotate(90deg);
    right: 6px;
}

.selectList {
    position: absolute;
    width: 100%;
    left: 0;
    background-color: white;
    border: inherit;
    max-height: 200px;
    overflow-y: auto;
}

.selectListItem {
    color: black;
    font-family: inherit;
    padding: 3px 3px;
    cursor: pointer;
    transition: 0.3s;
}

.selectListItem:not(.selectListItemGroup):hover {
    color: white;
    background-color: grey;
}

.selectListItemGroup {
    background-color: grey;
    font-weight: bolder;
    cursor: auto;
}

.selectedListItem {
    color: white;
    background-color: darkslategrey;
}

.selectNonResult {
    display: none;
}

.selectDisabledItem {
    color: darkgrey;
    pointer-events: none;
}

/* TabControl */
.tabLabel {
    padding: 10px 5px;
    background-color: rgba(118, 118, 118, 0.3);
    border-bottom: 2px solid #aaaaaa;
    color: #6c6c6c;
    /*box-shadow: 2px 0 3px gray;*/
    cursor: pointer;
    transition: 0.3s;
}

.tabLabel:hover {
    background-color: transparent;
}

.tabLabel * {
    pointer-events: none;
}

.activeTabLabel {
    background-color: transparent;
    color: white;
    border: none;
    font-weight: bolder;
    padding: 10px 8px;
}

.activeTab {
    background-color: #727272;
}

.tabSelector {
    position: relative;
    display: flex;
    /*justify-content: space-between;*/
    padding: 0 10px;
    margin-bottom: 2rem;
    width: 100%;
    overflow-y: auto;
}

.tabSelector&gt;.selector {
    padding: 6px 10px;
    cursor: pointer;
    transition: 0.3s;
}

.tabSelector&gt;.selector&gt;span {
    text-transform: uppercase;
}

.tc-disabledTab {
    color: red !important;
    cursor: default;
    pointer-events: none;
}

.tabPage {
    padding: 0 1rem;
}

/* ListSelector */
.ls-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.menuButton {
    padding: 4px 15px;
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.3s;
}

.menuButton:hover {
    background-color: grey;
}

.ls-button {
    position: relative;
    padding: 4px 30px 4px 5px;
    background-color: grey;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.ls-button:hover {
    background-color: #575757;
}

.ls-btnWithRemove {
    position: absolute;
    display: block;
    font-size: 9px;
    right: 3px;
    top: 5px;
}

.ls-btnWithRemove:hover {
    color: white;
}

/* Notify */
.notifyContainer {
    display: flex;
    flex-direction: column;
    /* gap: 0.5rem; */
    position: fixed;
    min-width: 20vw;
    max-width: 20vw;
    top: 0;
    left: 40vw;
    transition: 0.3s;
    z-index: 100000;
}

@media (max-width:1000px) {
    .notifyContainer {
        min-width: 60vw;
        max-width: 60vw;
        left: 20vw;
    }
}

.notifyContainer .notifyWarning:last-child {
    border-radius: 0px 0px 10px 10px;
}

.notifyBox {
    display: none;
    color: white;
    padding: 8px 15px;
    margin-top: 0px;
    font-family: Arial, serif;
    /* box-shadow: 0 0 10px white;*/
    /*border-radius: 5px;*/
}

.notifyInfo {
    background-color: #0000cd;
}

.notifySuccess {
    /* background-color: #00d410;*/
    background-color: #416643;
}

.notifyWarning {
    /* background-color: #d40601;*/
    background-color: #a1563a;
}

/*Tooltrip*/
.tooltripWrapper {
    display: none;
    position: absolute;
    padding: 2px 4px;
    z-index: 5001;
    background-color: white;
    box-shadow: 0 0 4px black;
}

.tooltripWrapper * {
    pointer-events: none;
}

.left-bottomTool:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
    bottom: -8px;
    left: 8px;
}

.right-bottomTool:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
    bottom: -8px;
    right: 8px;
}

.left-topTool:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    top: -8px;
    left: 8px;
}

.right-topTool:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    top: -8px;
    right: 8px;
}

.tooltripContainer {
    position: relative;
    display: flex;
    flex-direction: column;
    font-family: Calibri, serif;
    padding: 3px 6px;
    color: black;
}

.tooltripHeader,
.tooltripFooter {
    padding: 1px 5px;

}

/*NumberInput*/
.ni-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.numberInputSuffix {
    display: flex;
    align-items: center;
    background-color: #a3a3a3;
    color: white;
    padding-left: 2px;
    padding-right: 2px;
    font-size: 12px;
    min-height: 24px;
}

.ni-inputBox {
    position: relative;
    width: 100%;
    background-color: white;
}

.ni-controlBox {
    position: absolute;
    display: flex;
    flex-direction: column;
    right: 0;
    top: 0;
}

.ni-button {
    border: none;
    background-color: transparent;
    font-size: 13px;
    color: black;
    padding: 0;
    width: 18px;
    line-height: 12px;
    outline: none;
    cursor: pointer;
    transition: 0.2s;
}

.ni-button:hover {
    background-color: #e0e0e0;
}

.ni-sliderLine {
    position: relative;
    height: 0;
    width: 65%;
    border: 1px solid white;
    margin-right: 10px;
}

.ni-sliderCircle {
    position: absolute;
    left: 0;
    top: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bebebe;
    cursor: pointer;
}

.ni-sliderCircle:hover {
    background-color: white;
}

.ni-unitListContainer {
    background-color: #a3a3a3;
    cursor: pointer;
}

.ni-unitListWrapper {
    position: absolute;
    display: none;
    background-color: inherit;
    width: 100%;
    left: 0;
}

.ni-unitList {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ni-unitItem {
    padding: 2px;
}

.ni-unitItem:hover {
    background-color: #0e192b;
}

.ni-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.ni-cartStyle {
    display: flex;
    width: auto !important;
}

.ni-btnMinus {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #344f40;
    color: white;
    border-radius: 3px;
    padding: 0 3px;
    width: 20px;
    cursor: pointer;
}

.ni-btnPlus {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #344f40;
    color: white;
    border-radius: 3px;
    padding: 0 3px;
    width: 20px;
    cursor: pointer;
}

.ni-cartStyle .modalInput {
    width: 40px !important;

}

/* Table */
.table-mainTable {
    position: relative;
    display: flex;
    flex-direction: column;
    font-family: "Calibri", serif;
    height: fit-content;
    box-shadow: 0 0 5px #656565;
    background-color: rgba(14, 25, 43, 0.8);
    -webkit-user-select: none;
    /* Chrome, Safari, Opera */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
}

.table-controlBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.headerSelect {
    background-color: var(--menuBackground2);
    color: white;
    border: 1px solid white;
    border-radius: 3px;
    padding: 3px;
    font-size: 16px;
}

.tableControlBtn {
    border: none;
    background-color: transparent;
    color: black;
    padding: 0 10px;
    font-family: var(--mainFontFamily);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    height: 36px;
    transition: 0.3s;
}

.tableControlBtn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.squareBtn {
    padding: 0;
    margin: 0 3px;
    width: 36px;
}

.textBtn {
    height: 36px;
    background: linear-gradient(to right, var(--menuBackground1), #404f86);
    color: white;
    font-family: var(--mainFontFamily);
    font-size: 16px;
    padding: 0 10px;
    text-transform: uppercase;
}

.table-tableRow {
    color: white;
}

.table-tableRow:not(.table-tableHeader) {
    position: relative;
    display: flex;
    cursor: pointer;
    transition: 0.2s;
    border-bottom: 1px solid #c7c7c7;
    border-left: 1px solid #c7c7c7;
    border-right: 1px solid #c7c7c7;
    color: var(--widgetHeaderBackColor);
}

.table-tableRow:not(.table-tableHeader):hover {
    background-color: #626262;
}

.table-tableRow:not(.table-tableHeader)&gt;div {
    position: relative;
    padding: 4px 5px;
    max-height: 30px;
    overflow: hidden;
}

.table-tableRow:not(.table-tableHeader)&gt;div&gt;span {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--widgetHeaderBackColor);
}

.table-tableRow:not(.table-tableHeader):nth-child(even) {
    background-color: #bbc5b3;
}

.table-tableRow:not(.table-tableHeader):nth-child(odd) {
    background-color: #efffe4;
}

.tableRowDisabled {
    pointer-events: none;
    color: lightgrey;
}

.table-tableCol {
    overflow: hidden;
    white-space: nowrap;
}

.table-tableHeader {
    display: flex;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 25px;
    background-color: var(--bgDark1);
    color: white;
    border: 1px solid white;
}

.table-orderable {
    position: absolute;
    right: 5px;
    font-size: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.table-orderNone {
    color: #9c9c9c;
}

.table-orderAsc {
    color: var(--backgroundColor);
    text-shadow: 1px 1px white;
}

.table-orderDesc {
    transform: rotate(180deg);
    color: var(--backgroundColor);
    text-shadow: 1px 1px white;
}

.table-tableHeader div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px 20px 3px 5px;
}

.table-tableFooter div {
    text-align: center;
}

.table-tableHeader span {
    word-wrap: normal;
    text-align: center;
}

.table-tableRow&gt;div:not(:first-child) {
    border-left: 1px solid #c7c7c7;
}

.table-tableBody {
    max-height: 78vh;
    overflow-y: auto;
    font-weight: 400;
}

.table-selectedRow {
    background-color: #5e78fc !important;
}

.selectedRow {
    background-color: #5e78fc !important;
}

.mainSelector {
    height: 32px;
    min-width: 250px !important;
    background: linear-gradient(to right, var(--btnInactive), var(--btnActive));
    color: white;
    border: 1px solid var(--border);
    cursor: pointer;
}

.mainSelector option {
    color: black;
}

.table-tableCell {
    overflow: hidden;
}

.controlSigns {
    display: flex;
    align-items: center;
    min-width: 100px;
    height: 32px;
    border-radius: 5px;
    background-color: black;
    box-shadow: inset -1px -1px 0 0 #747373;
    margin: 0 1rem;
    padding: 0 5px;
}

.controlSignBtn {
    width: 24px;
    height: 24px;
    border: none;
}

.controlSignFilter {
    background-color: black;
    color: green;
}

.checkableHeader {
    padding-left: 30px;
}

.tableRowCheckbox {
    align-self: center;
    width: 20px;
    height: 20px;
    margin: 0 5px;
}

.table-hoverBox {
    position: absolute !important;
    display: flex;
    gap: 3px;
    right: 0;
}

.table-hoverButton {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.table-hoverButton:hover {
    background-color: #141414;
}

/* Responsive table */
@media (max-width: 1800px) {
    .dNone-w1800 {
        display: none !important;
    }
}

@media (max-width: 1700px) {
    .dNone-w1700 {
        display: none !important;
    }
}

@media (max-width: 1600px) {
    .dNone-w1600 {
        display: none !important;
    }
}

@media (max-width: 1500px) {
    .dNone-w1500 {
        display: none !important;
    }
}

@media (max-width: 1400px) {
    .dNone-w1400 {
        display: none !important;
    }
}

@media (max-width: 1300px) {
    .dNone-w1300 {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .dNone-w1200 {
        display: none !important;
    }
}

@media (max-width: 1100px) {
    .dNone-w1100 {
        display: none !important;
    }
}

@media (max-width: 1000px) {
    .dNone-w1000 {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .dNone-w900 {
        display: none !important;
    }
}

@media (max-width: 800px) {
    .dNone-w800 {
        display: none !important;
    }
}

@media (max-width: 700px) {
    .dNone-w700 {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .dNone-w600 {
        display: none !important;
    }
}

@media (max-width: 500px) {
    .dNone-w500 {
        display: none !important;
    }
}

@media (max-width: 400px) {
    .dNone-w400 {
        display: none !important;
    }
}

/* ImageStorage */
.is-imageWrapper {
    position: relative;
}

.is-selectedImage {
    height: 120px;
    width: fit-content;
    border: 1px solid white;
}

.is-imageStorage {
    height: 120px;
    width: fit-content;
    border: 1px solid white;
    margin: 0 1rem;
}

.is-imgButton {
    position: absolute;
    display: none;
    width: 16px;
    height: 16px;
    font-size: 6px;
    text-shadow: 1px 1px 1px black;
    background-color: #aaaaaa88;
    color: white;
    border: none;
    padding: 3px;
    cursor: pointer;
}

.removeImage {
    right: 1px;
    top: 1px;
}

.favoriteImage {
    left: 1px;
    top: 1px;
    font-size: 9px !important;
}

/* Carousel */
.carousel&gt;img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.car-control {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.car-control:hover {
    color: white;
}

.car-toPrev {
    background: url("/a0/domains/mh11/images/leftArrow.png") no-repeat;
    left: 2rem;
}

.car-toNext {
    background: url("/a0/domains/mh11/images/rightArrow.png") no-repeat;
    right: 2rem;
}

.car-imageButtonsBox {
    position: absolute;
    display: flex;
    gap: 1rem;
    bottom: 2rem;
    left: 50%;
}

.car-imageButton {
    width: 20px;
    height: 20px;
    border: 2px solid #1BA098FF;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.car-imageButton:hover {
    border-color: white;
}

.car-activeButton {
    background-color: #1BA098FF;
}

/* IconList */
.il-listContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 1rem;
    max-height: 400px;
    overflow: auto;
}

.il-iconBox {
    position: relative;
    width: 50px !important;
    height: 50px !important;
    padding: 4px;
}

.il-iconBox img {
    width: 100% !important;
    height: 100% !important;
}

.il-selectedIcon {
    border: 2px solid white !important;
    animation: il-flash 1s infinite;
}

@keyframes il-flash {
    0% {
        border-color: white !important;
    }

    50% {
        border-color: black !important;
    }
}

/* FastDateSelector */
.fds-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.fds-dayButton {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: content-box;
    background-color: rgb(140, 89, 89);
    border: 2px solid transparent;
    border-radius: 4px;
    color: black;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.fds-selectedDay {
    background-color: rgb(92, 140, 89);
    color: white;
    border: 2px solid rgb(92, 140, 89);
}

.fds-month {
    padding: 0;
    font-size: 9px;
}

.fds-day {
    padding: 0;
}

/*Accordion*/
.accChild {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.accTitle {
    display: flex;
    padding: 5px 40px 5px 10px;
    background-color: rgb(89, 110, 140);
    color: white !important;
    font-weight: 600;
    font-stretch: extra-expanded;
    cursor: pointer;
    margin-bottom: 5px;
}

.accTitleDisabled {
    background-color: rgba(118, 118, 118, 0.3);
    font-weight: 400;
    pointer-events: none;
}

.accToggleIcon {
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 15px;
    transition: 0.3s;
}

.accToggleIconOpened {
    transform: rotate(90deg);
    top: 8px;
    right: 7px;
}

.container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

/*sliderCheckbox*/
.scContainer {
    border: none;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 125px;
    border-radius: 8px;
}

.scCheckbox {
    display: none;
}

.scLabel {
    /*border: 2px solid #666;*/
    /*border-radius: 20px;*/
    cursor: pointer;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.scInner {
    display: block;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
    width: 200%;
}

.scInner:before,
.scInner:after {
    box-sizing: border-box;
    display: block;
    float: left;
    /*font-family: sans-serif;*/
    font-size: 12px;
    ;
    height: 29px;
    line-height: 29px;
    padding: 0;
    width: 50%;
}

.scInner:before {
    background: linear-gradient(to right, #0e5d0e, white);
    color: #444a3c;
    content: attr(data-text-true);
    padding-left: .75em;
}

.scInner:after {
    background: linear-gradient(to right, white, #831414);
    color: #444a3c;
    content: attr(data-text-false);
    padding-right: .75em;
    text-align: right;
}

.scCircle {
    background-color: white;
    border: 2px solid #666;
    border-radius: 3px;
    bottom: 0;
    display: block;
    margin: 5px;
    position: absolute;
    right: 71px;
    top: 0;
    transition: all 0.3s ease-in 0s;
    width: 6px;
}

.scCheckbox:checked+.scLabel .scInner {
    margin-left: 0;
}

.scCheckbox:checked+.scLabel .scCircle {
    background-color: white;
    right: 0 !important;
}

.accText {
    display: flex;
    background-color: rgba(256, 256, 256, 0.8);
    padding: 5px;
    margin-bottom: 1rem;
}

/* Loading Indicator*/
@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

@keyframes rotate-plane {
    0% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }
}

.li-loadingContainer {
    position: absolute;
    display: none;
    top: 30vh;
    left: calc(50vw - 140px);
    align-self: center;
    z-index: 10000;
    border-radius: 100%;
    background: radial-gradient(circle at center, rgba(80, 80, 80, 1) 0, rgba(80, 80, 80, 0) 100%);
    padding: 35px;
}

.li-innerContainer {
    position: relative;
    height: 200px;
    width: 200px;
}

.li-border {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border-left: 2px solid white;
    box-shadow: 0 0 3px white;
    -moz-animation: rotate-loading 2s linear 0s infinite normal;
    -o-animation: rotate-loading 2s linear 0s infinite normal;
    -webkit-animation: rotate-loading 2s linear 0s infinite normal;
    animation: rotate-loading 2s linear 0s infinite normal;
}

.li-planeBox {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    -moz-animation: rotate-plane 3s linear 0s infinite normal;
    -o-animation: rotate-plane 3s linear 0s infinite normal;
    -webkit-animation: rotate-plane 3s linear 0s infinite normal;
    animation: rotate-plane 3s linear 0s infinite normal;
}

.li-plane {
    position: absolute;
    width: 30px;
    height: 30px;
    transform: rotate(-90deg);
    top: 0;
    right: 0;
}

.li-switchOn {
    display: flex !important;
}

/* FilesList */
.fl-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fl-itemContainer {
    display: flex;
    padding: 0.5rem 1rem;
    background-color: white;
    transition: 0.3s;
}

.fl-icon {
    width: 80px;
    height: 80px;
}

.fl-container .strechedLink {
    cursor: pointer;
}

.fl-itemContainer:hover {
    background-color: #6c6c6c;
}

/* HelpWindow */
.h-window {
    position: absolute !important;
    display: none;
    bottom: 0;
    right: 0;
    width: 1000px;
    height: 666vh;
    max-height: 666px;
    max-width: 1000px;
    background-color: var(--widgetHeaderBackColor);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.h-header {
    display: flex;
    justify-content: space-between;
    padding: 3px 10px;
}

.h-itemList {
    display: flex;
    flex-direction: column;
}

.h-item {
    cursor: pointer;
}

/* FileUploader */
.fu-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    background-color: white;
    width: 100%;
    align-items: center;
}

.fu-filesContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.fu-btnAddFile {
    width: 150px;
}

.fu-fileItem {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 10px;
    padding: 3px 10px;
    gap: 1rem;
}

.fu-fileItem&gt;div {
    gap: 1rem;
}

.fu-fileItem&gt;div&gt;div {
    text-align: center;
}

.fu-uploaded {
    background-color: var(--widgetHeaderBackColor);
    color: white;
}

.fu-newFile {
    background-color: #436d22;
    color: white;
}

.fu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid white;
    border-radius: 50%;
    background-color: transparent;
    padding: 1px;
    float: right;
    cursor: pointer;
    transition: .3s;
}

.fu-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* ButtonCheckbox */
.bc-container {
    display: flex;
    justify-content: space-around;
    gap: 3px;
}

.bc-button {
    font-size: 12px;
    padding: 3px 5px;
    min-height: 24px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.bc-icon:hover {
    background-color: #9a5252;
    color: white;
}

.bc-hover {
    background-color: #9a5252;
    color: white;
}

.bc-checked {
    background-color: #9a5252 !important;
}

.bc-icon {
    width: 40px;
    height: 40px;
    padding: 2px;
    background-color: white;
    background-size: 34px 34px;
    background-repeat: no-repeat;
    background-position: center center;
}

.bc-disabled {
    background-color: grey;
    pointer-events: none;
}

/* Direction selector */
.ds-directionBox {
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid white;
}

.ds-directions {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    font-size: 14px;
    background-color: white;
    color: black;
    cursor: pointer;
    transition: 0.3s;
}

.ds-n {
    top: 0;
    left: 35px;
}

.ds-ne {
    top: 0;
    right: 0;
}

.ds-e {
    top: 35px;
    right: 0;
}

.ds-se {
    bottom: 0;
    right: 0;
}

.ds-s {
    bottom: 0;
    left: 35px;
}

.ds-sw {
    bottom: 0;
    left: 0;
}

.ds-w {
    top: 35px;
    left: 0;
}

.ds-nw {
    top: 0;
    left: 0;
}

.ds-directionSelected {
    background-color: #7070cc;
}

.ds-centralControl {
    position: absolute;
    background-color: grey;
    cursor: pointer;
}

.ds-centralControl:hover {
    background-color: white;
}

.ds-horizontalControl {
    width: 30px;
    height: 2px;
    top: 48px;
    left: 34px;
}

.ds-verticalControl {
    width: 2px;
    height: 30px;
    top: 34px;
    left: 48px;
}

.ds-allControl {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 45px;
    left: 45px;
}

/* Tree */
.tree-icon {
    background-image: url(/a0/domains/mh11/images/a1.png);
    background-size: cover;
    width: 24px;
    height: 24px;
}

.tree-node {
    display: flex;
    flex-direction: column;
}

.tree-disabled {
    color: #b0b0b0;
}

.tree-row {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 3px 5px;
    cursor: pointer;
    transition: 0.3s;
}

.tree-row:hover {
    background-color: #6c6c6c;
}

.tree-row span {
    margin-left: 10px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tree-nodes {
    padding-left: 16px;
    display: none;
}

.tree-mainIcon {
    width: 10px;
    height: 10px;
    background-size: contain;
    margin-right: 10px;
    transition: 0.3s;
}

.tree-typeIcon {
    width: 20px;
    height: 20px;
    background-size: contain;
}

.tree-closeNode&gt;.tree-row&gt;.tree-mainIcon {
    transform: rotate(-90deg);
}

.tree-selected {
    background-color: #b5850f !important;
}

.tree-dragHover {
    background-color: rgba(150, 250, 0, 0.5) !important;
}

.tree-dropZone&gt;.tree-row {
    pointer-events: none;
}

.tree-separator {
    position: relative;
    height: 10px;
    background-color: yellow;
}

.tree-separator&gt;.tree-row {
    height: 100%;
}

.tree-1 {
    width: 20px;
    height: 26px;
    background-image: url(/Public/icons/tree-1.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.tree-2 {
    width: 20px;
    height: 26px;
    background-image: url(/Public/icons/tree-2.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.tree-arrows {
    position: absolute;
    left: -30px;
    width: 30px;
    height: 30px;
    background-image: url(/Public/icons/rightArrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.tree-beforeArrow {
    top: -15px;
}

.tree-thisArrow {
    top: calc(50% - 15px);
}

.tree-afterArrow {
    bottom: -15px;
}

.tree-disabledNode {
    pointer-events: none;
    color: grey;
}

.tree-hoverBox {
    position: absolute;
    display: flex;
    right: 0;
}

.tree-hoverButton {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.tree-hoverButton:hover {
    filter: invert(79%) sepia(28%) saturate(4234%) hue-rotate(149deg) brightness(100%) contrast(103%);
}

/* Sortable */
.s-targetArea {
    min-width: 50px;
    min-height: 50px;
    background-color: white;
}

.s-targetAreaOK {
    background-color: green;
}

/* Tag Selector*/
.ts-buttonContainer {
    display: flex;
    flex-wrap: wrap;
    min-height: 32px;
    margin-top: 5px;
    padding: 3px;
    border: 1px solid #868686;
    gap: 1rem;
}

.ts-button {
    position: relative;
    background-color: darkgrey;
    padding: 3px 20px 3px 10px;
    cursor: pointer;
    transition: 0.3s;
}

.ts-btnAdd {
    padding: 3px 10px;
    background-color: #9a5252 !important;
}

.ts-button:hover {
    background-color: #3f3f3f;
}

.ts-selectedButton {
    background-color: #199622 !important;
}

.ts-btnRemove {
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    right: -5px;
    top: 3px;
    text-shadow: 0 0 1px black;
}

.ts-btnRemove:hover {
    color: black;
    text-shadow: 0 0 2px white;
}

/* MessageBox */
/*messageBox*/
.mbCover {
    position: absolute;
    display: none;
    background-color: rgba(0, 0, 0, 0.55);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10200;
}

.mbLayer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-family: Calibri, serif;
}

.mbTitle {
    padding: 6px 16px;
    color: white;
    font-family: var(--mainFontFamily);
    text-transform: uppercase;
    min-width: 350px;
}

.mbContent {
    display: flex;
    border-top: 1px solid #999999;
    border-bottom: 1px solid #999999;
    color: white;
    min-height: 150px;
}

.mbIcon {
    align-self: center;
    justify-self: center;
    margin: 2rem;
}

.mbIcon-info {
    font-size: 60px;
    font-weight: bold;
    color: #18275f;
    text-shadow: 0 0 3px white;
}

.mbIcon-ok {
    font-size: 60px;
    font-weight: bold;
    color: #185f1e;
    text-shadow: 0 0 3px white;
}

.mbIcon-warning {
    font-size: 60px;
    font-weight: bold;
    color: #822122;
    text-shadow: 0 0 3px white;
}

.mbIcon-question {
    font-size: 60px;
    font-weight: bold;
    color: #8e3923;
    text-shadow: 0 0 3px white;
}

.mbIcon-input {
    font-size: 60px;
    font-weight: bold;
    color: #7f6f21;
    text-shadow: 0 0 3px white;
}

.mbIcon-save {
    font-size: 60px;
    font-weight: bold;
    color: #7f6f21;
    text-shadow: 0 0 3px white;
}

.mbIcon-answer {}

.mbMessage {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.messageBox {
    display: flex;
    position: relative;
    width: fit-content;
    background-color: white;
}

.mbSide {
    position: relative;
    width: 25px;
    border-right: 1px solid lightgrey;
}

.mbContentSide {
    display: flex;
    flex-direction: column;
}

.mb-bg-ok {
    background-color: #185f1e;
}

.mb-bg-info {
    background-color: #18275f;
}

.mb-bg-warning {
    background-color: #822122;
}

.mb-bg-input {
    background-color: #7f6f21;
}

.mb-bg-question {
    background-color: #8e3923;
}

.mb-bg-save {
    background-color: #8e3923;
}

.mbSide-bg-ok {
    background: linear-gradient(to right, #185f1e, 70%, white);
}

.mbSide-bg-info {
    background: linear-gradient(to right, #18275f, 70%, white);
}

.mbSide-bg-warning {
    background: linear-gradient(to right, #822122, 70%, white);
}

.mbSide-bg-input {
    background: linear-gradient(to right, #7f6f21, 70%, white);
}

.mbSide-bg-question {
    background: linear-gradient(to right, #8e3923, 70%, white);
}

.mbSide-bg-save {
    background: linear-gradient(to right, #8e3923, 70%, white);
}

.mbSideTitle {
    position: absolute;
    color: lightgrey;
    text-transform: uppercase;
    text-shadow: 1px 0 black;
    letter-spacing: 3px;
    font-size: 20px;
    font-weight: bolder;
    transform: rotate(-90deg);
}

.mbSideTitle-info {
    bottom: 45px;
    left: -15px;
}

.mbSideTitle-warning {
    bottom: 65px;
    left: -40px;
}

.mbSideTitle-save {
    bottom: 45px;
    left: -15px;
}

.mbSideTitle-input {
    bottom: 50px;
    left: -22px;
}

.mbSideTitle-ok {
    bottom: 30px;
    left: -3px;
}

.mbSideTitle-question {
    bottom: 70px;
    left: -45px;
}

.mbFooter {
    display: flex;
    justify-content: space-between;
    padding: 6px 16px;
}

.mbButton {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    min-width: 22%;
    padding: 5px 10px;
    transition: 0.3s;
    cursor: pointer;
}

.mbButton:hover {
    background-color: white;
    color: black;
}

.mbButton:disabled {
    color: #898989;
    border: 1px solid #898989;
}

/* Row toggle button/label */
.rowToggle {
    color: #00d900;
    cursor: pointer;
    transition: 0.3s;
}

.rowToggleDisabled {
    color: red;
}

/* DropTarget */
.dt-selectedTarget {
    border: 3px solid green;
}

/* Resizable */
.r-resizable {
    position: relative;
}

.r-wrapper {
    position: absolute;
    background-color: yellow;
}

.r-wrapperTop {
    top: -5px;
    left: 5px;
}

.r-wrapperBottom {
    bottom: -5px;
    left: 5px;
}

.r-wrapperTop,
.r-wrapperBottom {
    cursor: ns-resize;
}

.r-wrapperLeft {
    top: 5px;
    left: -5px;
}

.r-wrapperRight {
    top: 5px;
    right: -5px;
}

.r-wrapperLeft,
.r-wrapperRight {
    cursor: ew-resize;
}

.r-wrapperCorner {
    width: 10px;
    height: 10px;
}

.r-wrapperCornerTopLeft {
    top: -5px;
    left: -5px;
}

.r-wrapperCornerBottomRight {
    bottom: -5px;
    right: -5px;
}

.r-wrapperCornerTopLeft,
.r-wrapperCornerBottomRight {
    cursor: nwse-resize;
}

.r-wrapperCornerTopRight {
    top: -5px;
    right: -5px;
}

.r-wrapperCornerBottomLeft {
    bottom: -5px;
    left: -5px;
}

.r-wrapperCornerBottomLeft,
.r-wrapperCornerTopRight {
    cursor: nesw-resize;
}

/* HorizontalMenu */
.hm-container {
    display: flex;
    align-items: center;
    z-index: 100;
}

.hm-menuItem {
    position: relative;
    text-decoration: none;
}

.hm-menuIcon {
    display: none;
    background-image: url(/Public/icons/menu.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
}

.hm-subMenu {
    position: absolute;
    display: none;
    flex-direction: column;
}

@media (max-width: 600px) {
    .hm-menuIcon {
        display: block;
    }

    .hm-menuItem {
        display: none;
    }

    .hm-container {
        flex-direction: column;
    }
}

/* Album */
.al-container {
    position: relative;
    display: flex;
    flex-direction: column;
}

.al-mainImageRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.al-controlBox {
    display: flex;
    align-items: center;
}

.al-controlNext {
    transform: rotate(180deg);
}

.al-control {
    width: 50px;
    height: 50px;
    background-image: url(/Public/images/nyil.png);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.al-bottomRow {
    display: flex;
    flex-direction: column;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    height: 150px;
    justify-content: center;
    width: 100%;
    position: relative;
}

.al-listBox {
    display: flex;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 600;
    gap: 10px;
}

.al-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: black;
    cursor: pointer;
}

.al-selectedDot {
    background-color: white;
}

.al-thumbnail {
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
    border: 2px solid #fff;
}

.al-thumbnail:hover {
    transform: scale(1.2);
    transition: 0.2s;
    box-shadow: 0px 0px 10px 1px #5858588c;
    border-radius: 5px;
    border: 2px solid #fff;
}

.al-selectedThumbnail {
    border: 2px solid orange;
}

.al-mainImage {
    position: absolute;
    left: 50%;
    top: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.al-mainImageBox {
    position: relative;
    height: 450px;
    margin-bottom: 1rem;
}

/*Calendar*/
.cal-container {
    background-color: #f5f6f3;
    font-family: Montserrat, sans-serif;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.cal-filterBar {
    display: flex;
    column-gap: 1rem;
    align-items: center;
    padding: 10px;
}

.cal-filterBar input {
    font-family: Montserrat, sans-serif;
    font-size: 1rem;
    padding: 10px;
}

.cal-select {
    background-color: #344f40;
    border-radius: 5px;
}

.cal-header {
    display: flex;
    flex-direction: column;
}

.cal-headerBar {
    display: flex;
    padding: 10px 30px;
}

.cal-headerBar&gt;span {
    display: block;
    width: 14%;
    font-weight: 600;
    text-align: center;
}

.cal-controlBar {
    display: flex;
    justify-content: center;
    background-color: #344f40;
    color: white;
}

.cal-titleDate {
    font-size: 40px;
    font-weight: 600;
}

.cal-wrapper {
    display: flex;
    max-height: 700px;
    overflow-y: auto;
}

.cal-monthLeft,
.cal-monthRight {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50px;
    gap: 1px;
}

.cal-month {
    writing-mode: vertical-lr;
    text-orientation: upright;
    background-color: #344f40;
    padding: 0 5px;
    border-radius: 5px;
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}

.cal-body {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(100% - 100px);
    gap: 1px;
}

.cal-weekHeader {
    position: sticky;
    padding: 0 50px;
    top: 0;
}

.cal-week {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 2px 0;
}

.cal-day {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2px;
    width: 14%;
    min-height: 70px;
    background-color: white;
    border-radius: 10px;
}

.cal-colorEven {
    background-color: #bb9351aa;
}

.cal-colorOdd {
    background-color: #bb9351;
}

.cal-dayHeader {
    text-align: center;
    color: white;
    font-weight: 800;
    border-bottom: 1px solid white;
}

.cal-dayBody {
    display: flex;
    flex-direction: column;
    padding-top: 1px;
    gap: 1px;
}

.cal-event {
    background-color: #344f40;
    color: white;
    border-radius: 3px;
    font-size: 10px;
    padding: 2px 10px;
    height: 17px;
    cursor: pointer;
    transition: 0.3s;
}

.cal-event:hover {
    transform: translateX(-10px);
}

.cal-oneDayEvent {
    width: 100%;
}

.cal-moreDayEvent {
    position: absolute;
    z-index: 2;
}

.cal-typeReserved {
    background-color: #a43b26 !important;
}

.cal-pseudo {
    position: relative;
    width: 1px;
    height: 17px;
}

.cal-today {
    background-color: #e4dfca;
}

.cal-table-th {
    width: 14.28%;
    padding: 5px;
    background-color: #c8cec1;
    border-bottom: 1px solid #b3b8ae;
}

.cal-table-td {
    width: 14.28%;
    height: 50px;
    padding: 5px;
    margin: 5px;
    background: white;
    border-bottom: 1px solid #b3b8ae;
    border-right: 1px solid #b3b8ae;

}

.cal-control {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 5px;
    gap: 10px;
}

.cal-viewInfo {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 1px solid #b3b8ae;
    padding: 5px;
    background: white;
}

.cal-currentDate {
    font-weight: bold;
    font-size: 23px;
}

.cal-stepButtons {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-image: url(/Public/images/cal-btnNext.svg);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    border: 1px solid #b3b8ae;
    background-color: white;
}

.cal-btnNext {
    right: 0;
}

.cal-btnPrev {
    left: 0;
    transform: rotate(180deg);
}

@media (max-width: 500px) {
    .cal-filterBar {
        flex-direction: column;
    }
}

/* Datagrid */
.dg-grid {
    display: grid;
    width: 100%;
}

.dg-controlBar {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dg-itemWrapper {
    justify-self: center;
    align-self: center;
    width: 100%;
    height: 100%;
    min-height: 500px;
    /* overflow: hidden; */
}

.dg-pageButton {
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    border: 1px solid black;
    padding: 6px;
    font-family: Montserrat, sans-serif;
    font-weight: bolder;
    min-width: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.dg-pageButton:hover {
    background-color: #e4dfca;
}

.dg-activePage {
    background-color: #262a3d;
    color: white;
}

.dg-btnPrev {
    background-image: url(/Public/icons/nyil.png);
    background-size: cover;
    background-repeat: no-repeat;
    border: none;
}

.dg-btnNext {
    background-image: url(/Public/icons/nyil.png);
    background-size: cover;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    border: none;
}

.dg-noButton {
    pointer-events: none;
}

@media (min-width: 348px) {
    .dg-grid {
        grid-template-columns: repeat(1, 3fr) !important;
    }
}

@media (min-width: 576px) {
    .dg-grid {
        grid-template-columns: repeat(2, 3fr) !important;
    }
}

@media (min-width: 768px) {
    .dg-grid {
        grid-template-columns: repeat(2, 3fr) !important;
    }
}

@media (min-width: 1200px) {
    .dg-grid {
        grid-template-columns: repeat(4, 3fr) !important;
    }
}



/* cmsAccordion */
.acc-titleBar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}

.acc-icon {
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.acc-iconClosed {
    width: 30px;
    height: 30px;
    background-image: url(/Public/icons/plus2.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.acc-iconOpened {
    background-image: url(/Public/icons/minus.svg) !important;
}

/* Chatbox */
.cb-mainIcon {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    inset: auto 10px 50px auto;
    width: 100px;
    height: 40px;
    border: 2px solid white;
    border-radius: 6px;
    box-shadow: 0 0 10px 10px grey;
    font-family: Montserrat, sans-serif;
    font-weight: bolder;
    text-transform: uppercase;
    text-shadow: 0 0 4px black;
    color: white;
    background: url(/Public/icons/army01.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}

.cb-chatWindow {
    position: fixed;
    display: none;
    inset: auto 10px 100px auto;
    width: 300px;
    height: 500px;
    background-color: black;
    border-radius: 6px;
    font-family: Montserrat, sans-serif;
}

.cb-inner {
    display: flex;
    flex-direction: column;
}

.cb-talkBox {
    width: 300px;
    height: 450px;
    background-color: #c1c1c1;
    overflow-y: auto;
}

.cb-inputBox {
    display: flex;
    width: 300px;
    height: 50px;
    background-color: white;
}

.cb-input {
    width: 250px;
    height: 50px;
    padding-left: 10px;
    border: none;
    border-right: 1px solid grey;
}

.cb-submit {
    width: 50px;
    height: 50px;
    background: url(/Public/icons/nyil.png);
    background-size: 30px 30px;
    background-position: center center;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    cursor: pointer;
}

.cb-talkFlow {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 10px 5px;
}

.cb-text {
    padding: 5px;
    width: 80%;
    font-size: 13px;
    border-radius: 10px;
}

.cb-meText {
    border: 2px solid white;
    background-color: #344f40;
    color: white;
}

.cb-youText {
    border: 2px solid grey;
    background-color: white;
    margin-left: 20%;
}

/* inputPhone */
.ip-container {
    display: flex;
    gap: 5px;
    /*padding: 3px 5px;*/
    background-color: white;
}

.ip-container * {
    color: black;
}

.ip-separator {
    border: 1px solid #b2b2b2;
}

.ip-phoneNumber {
    border: none;
}

.l-container {
    display: flex;
    gap: 1rem;
}

.l-elem {
    position: relative;
    padding: 3px 20px 3px 10px;
    background-color: #0e192b;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.l-btnRemove {
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    right: -5px;
    top: 3px;
    text-shadow: 0 0 1px black;
}

.l-btnRemove:hover {
    color: black;
    text-shadow: 0 0 2px white;
}

/* CheckBox */
.chb-container {
    background-color: white;
    border-radius: 5px;
    margin-right: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.chb-checked {
    background-image: url(/Public/icons/checkbox-ok.svg);
}

/* CookieBar */
.cookieBar {
    position: fixed;
    display: flex;
    flex-direction: column;
    bottom: 10%;
    left: 0;
    right: 0;
    min-height: 100px;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.82);
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    color: white;
}

.cookieBtn {
    border: 2px solid green;
    border-radius: 10px;
    background-color: transparent;
    color: white;
    text-transform: uppercase;
    padding: 10px;
    margin: 10px;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    transition: 0.4s;
    cursor: pointer;
}

.cookieBtnInfo {
    border-color: #6a6aef;
}

.cookieBtnOK:hover {
    background-color: #309a30;
}

.cookieBtnInfo:hover {
    background-color: #8585ee;
}

/* Dropdown */
.dd-container {
    position: relative;
}

.dd-mainIcon {
    width: 30px;
    height: 30px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border: 3px solid transparent;
}

.dd-itemContainerWrapper {
    position: absolute;
    display: none;
    top: 30px;
    left: 0;
    box-shadow: 2px 2px 3px 0 #519137;
}

.dd-itemContainer {
    display: flex;
    background-color: #3f3f3f;
    z-index: 10;
}

.dd-selectedItem {
    background-color: #1d2c5a;
    color: white !important;
    line-height: 0.8;
    font-size: 12px;
}

.dd-selectedItem::after {
    display: block;
    font-size: 16px;
    content: "\23f7";
}

.dd-item {
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    padding: 2px 5px;
    text-align: center;
    font-size: 12px;
    color: white;
    transition: 0.3s;
}

.dd-item:not(.dd-selectedItem) {
    padding: 5px 0;
}

.dd-item:hover {
    background-color: #1d2c5a;
    color: white;
}

.dd-iconItem {
    display: block;
    padding: 2px 5px;
    transition: 0.3s;
}

.dd-disabled {
    display: none;
}

/* FieldMultiplier */
.fm-container {
    display: flex;
    flex-direction: column;
}

.fm-innerRow {
    display: flex;
    justify-content: space-between;
    margin: 2px 0;
}

/* Counter */
.c-container {
    display: flex;
    flex-direction: column;
    width: fit-content;
    color: #737373;
}

.c-mainLabel {
    display: flex;
    justify-content: center;
    font-size: 18px;
    text-transform: uppercase;
}

.c-counterContainer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.c-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
}

.c-section span {
    text-transform: uppercase;
    font-size: 12px;
}

.c-separator {
    height: 70px;
    border-left: 2px solid #e0e0e0;
}

.c-number {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    font-size: 45px;
    width: 35px;
    height: 80px;
    top: -80px;
}

.c-numberTransparent {
    color: transparent;
    !important;
}

@media (max-width: 600px) {

    .c-mainLabel,
    .c-section {
        font-size: 10px;
    }

    .c-numberBox {
        width: 25px;
        height: 50px;
    }

    .c-number {
        font-size: 20px;
        width: 25px;
        height: 50px;
        top: -50px;
    }

    .c-counterContainer {
        gap: 2px;
    }

    .c-separator {
        height: 40px;
    }
}

/* Spin Numbers*/
.sn-container {
    display: flex;
}

.sn-numberBox {
    position: relative;
    width: 35px;
    height: 80px;
    overflow: hidden;
}

/* Quiz */
.questionBox {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.questionIndex {
    font-weight: 600;
}

.question {
    padding: 0.5rem 1rem 1rem 1rem;
}

.answerBox {
    display: flex;
    flex-direction: column;
}

/* Counter */
.c-container {
    display: flex;
    flex-direction: column;
    width: fit-content;
    color: #737373;
}

.c-mainLabel {
    display: flex;
    justify-content: center;
    font-size: 18px;
    text-transform: uppercase;
}

.c-counterContainer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.c-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
}

.c-section span {
    text-transform: uppercase;
    font-size: 12px;
}

.c-separator {
    height: 70px;
    border-left: 2px solid #e0e0e0;
}

.c-numberBox {
    position: relative;
    width: 35px;
    height: 80px;
    overflow: hidden;
}

.c-number {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    font-size: 45px;
    width: 35px;
    height: 80px;
    top: -80px;
}

.c-numberTransparent {
    color: transparent;
    !important;
}

@media (max-width: 600px) {

    .c-mainLabel,
    .c-section {
        font-size: 10px;
    }

    .c-numberBox {
        width: 25px;
        height: 50px;
    }

    .c-number {
        font-size: 20px;
        width: 25px;
        height: 50px;
        top: -50px;
    }

    .c-counterContainer {
        gap: 2px;
    }

    .c-separator {
        height: 40px;
    }
}

/* Checkbox */
.cbx-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cbx-box {
    width: 25px;
    height: 25px;
    border: 2px solid #344f40;
    border-radius: 4px;
    background-color: white;
    transition: 2s;
    cursor: pointer;
}

.cbx-label {
    color: black;
    font-weight: bold;
}

.cbx-subText {
    padding-left: 4rem;
    font-size: 14px;
    color: black;
}

.cbx-checked {
    background-color: #344f40 !important;
    animation: pulse2 1s
}

@keyframes pulse2 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        /*box-shadow: 0 0 0 0 #344f40;*/
    }
}</pre></body></html>