/* Root */

:root {
    --backgroundColor: #0d2c4f;
    --widgetBackColor: #c0c3cb;
    --widgetHeaderBackColor: #0e192b;
    --widgetColor: #0e192b;
    --widgetHeaderColor: white;
    --tableHeaderBgColor: #65778c;
    --color1: #091f24;
    --color2: #cddddd;
    --color3: #6b95c1;
    --menuColor: black;
    --menuFont: 'Bebas Neue', sans-serif;
    --generalFont: 'Montserrat', sans-serif;
}


/* 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 > ul{*/


/*    display: flex;*/


/*}*/


/*.menu-navigation li{*/


/*    position: relative;*/


/*    padding: 5px 1rem;*/


/*    list-style: none;*/


/*}*/


/*.menu-navigation li > a{*/


/*    color: white;*/


/*    text-transform: uppercase;*/


/*    text-decoration: none;*/


/*    cursor: pointer;*/


/*    transition: 0.3s;*/


/*}*/


/*.menu-navigation li > 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;
}

.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;
}

@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>.selector {
    padding: 6px 10px;
    cursor: pointer;
    transition: 0.3s;
}

.tabSelector>.selector>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: absolute;
    min-width: 20vw;
    max-width: 20vw;
    top: 0;
    left: 40vw;
    transition: 0.3s;
    z-index: 100000;
}

@media (max-width: 1000px) {
    .notifyContainer {
        min-width: 20vw;
        max-width: 100vw;
        left: 0;
        width: 100%;
    }
}

.notifyBox {
    display: none;
    color: white;
    padding: 8px 15px;
    margin-top: 10px;
    font-family: Arial, serif;
    box-shadow: 0 0 10px white;
    /*border-radius: 5px;*/
}

.notifyInfo {
    background-color: #0000cd;
}

.notifySuccess {
    background-color: #00d410;
}

.notifyWarning {
    background-color: #d40601;
}


/*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%;
    top: 0;
    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;
}


/* 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);
}

.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)>div {
    position: relative;
    padding: 4px 5px;
    max-height: 30px;
    overflow: hidden;
}

.table-tableRow:not(.table-tableHeader)>div>span {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--widgetHeaderBackColor);
}

.table-tableRow:not(.table-tableHeader):nth-child(even) {
    background-color: #dfe2e6;
}

.table-tableRow:not(.table-tableHeader):nth-child(odd) {
    background-color: #abb6c2;
}

.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(--tableHeaderBgColor);
    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>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>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;
}

.scCheckbox {
    display: none;
}

.scLabel {
    /*border: 2px solid #666;*/
    /*border-radius: 20px;*/
    cursor: pointer;
    display: block;
    overflow: hidden;
}

.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: 25px;
    line-height: 25px;
    padding: 0;
    width: 50%;
}

.scInner:before {
    background-color: var(--widgetHeaderBackColor);
    color: white;
    content: attr(data-text-true);
    padding-left: .75em;
}

.scInner:after {
    background-color: white;
    color: var(--widgetHeaderBackColor);
    content: attr(data-text-false);
    padding-right: .75em;
    text-align: right;
}

.scCircle {
    background-color: var(--widgetHeaderBackColor);
    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: #eee;
    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>div {
    gap: 1rem;
}

.fu-fileItem>div>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;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.bc-button:hover,
.bc-icon: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;
}

.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>.tree-row>.tree-mainIcon {
    transform: rotate(-90deg);
}

.tree-selected {
    background-color: #7f0000 !important;
}

.tree-dragHover {
    background-color: rgba(150, 250, 0, 0.5)!important;
}

.tree-dropZone>.tree-row {
    pointer-events: none;
}

.tree-separator {
    position: relative;
    height: 10px;
    background-color: yellow;
}

.tree-separator>.tree-row {
    height: 100%;
}

.tree-1 {
    width: 20px;
    height: 26px;
}

.tree-2 {
    width: 20px;
    height: 26px;
}

.tree-arrows {
    position: absolute;
    left: -30px;
    width: 30px;
    height: 30px;
}

.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;
    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(/a0/domains/mh11/images/nyil.png);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.al-bottomRow {
    display: flex;
    flex-direction: column;
    ;
}

.al-listBox {
    display: flex;
    justify-content: center;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 600;
    gap: 10px;
    overflow-x: auto;
    /* Firefox scroll bar */
    scrollbar-width: thin;
    scrollbar-color: #8cd7b3 #dbfff0;
}


/* Chrome és Safari számára */

.al-listBox::-webkit-scrollbar {
    width: 12px;
}


/* Chrome és Safari számára */

.al-listBox::-webkit-scrollbar-thumb {
    background: #8cd7b3;
}

.al-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: black;
    cursor: pointer;
}

.al-selectedDot {
    background-color: white;
}

.al-thumbnail {
    cursor: pointer;
}

.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: 300px;
    margin-bottom: 1rem;
}


/*Calendar*/

.cal-table {
    /* background: white;*/
    background-color: #f5f6f3;
    font-family: Arial, sans-serif;
}

.cal-days {
    display: flex;
    font-size: 20px;
}

.cal-weeks {
    display: flex;
}

.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-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);
}


/* Datagrid */

.dg-grid {
    display: grid;
    width: 100%;
}

.dg-controlBar {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dg-itemWrapper {
    justify-self: center;
    align-self: center;
}

.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: red;
}

.dg-activePage {
    background-color: blue;
}

.dg-btnPrev {
    border: none;
}

.dg-btnNext {
    transform: rotate(180deg);
    border: none;
}

.dg-noButton {
    pointer-events: none;
}


/* cmsAccordion */

.acc-titleBar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}

.acc-icon {
    align-items: center;
    width: 100%;
    cursor: pointer;
}


/* 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;
    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;
    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;
}


/* Button checkbox overwrite */

.bc-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    width: 100%;
}

.bc-button {
    font-size: 12px;
    border: none;
    padding: 3px 10px;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    color: #222;
    width: 70%;
    cursor: pointer;
    transition: 0.3s;
    height: 30px;
    border-radius: 10px;
}

@media (max-width: 1000px) {
    .bc-button {
        width: 100%;
        height: inherit;
        min-height: 40px;
    }
}

.bc-button:hover,
.bc-icon:hover {
    background-color: #3a4b39;
    color: white;
}

.bc-checked {
    background-color: #3a4b39 !important;
    color: white;
}

.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;
}


/* ÖK calculator */

.cal-title {
    font-family: Montserrat, sans-serif;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 40px;
}

.Calcontainer {
    padding-left: 16rem;
    padding-right: 16rem;
    margin: 50px 0;
}

.Calculator {
    width: 100%;
    /* background-color: #90a295;
    border-radius: 15px; */
}

.calHeader {
    padding: 16px 0;
    position: relative;
    bottom: 40px;
}

.calBody {
    background-color: #90a295;
    border-radius: 15px;
}

.cal-resultContainer {
    min-height: 250px;
    height: 100%;
    width: 50%;
    align-content: space-between;
    justify-content: center;
    padding: 45px 0;
    background-color: #344f40;
    border-radius: 0px 15px 15px 0px;
}


/* calculator select */

.calSelect {
    background-color: #f9f9f9 !important;
    color: #344f40 !important;
    min-height: 30px;
    height: 50px;
    border-radius: 10px;
    padding-left: 20px;
    border: none;
}

.calInput {
    background-color: #f9f9f9 !important;
    color: #344f40 !important;
    min-height: 30px;
    height: 50px;
    border-radius: 10px;
    padding-left: 20px;
    border: none;
    font-size: 20px !important;
    width: 100%;
}

.calSelect .selectInput {
    border-radius: 10px;
    font-size: 20px !important;
    padding-right: 35px;
}

.calSelect .selectArrow {
    font-size: 35px;
    right: 25px;
    top: 5px;
}

.calSelect .selectList {
    background-color: transparent;
    padding: 0 17px;
}

.calSelect .selectList .selectListItem {
    color: #344f40;
    font-family: inherit;
    background-color: #f9f9f9;
    font-size: 20px;
    padding: 10px 5px;
}

.resultTitle {
    text-align: center;
    font-family: Montserrat, sans-serif;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    font-size: 25px;
    margin-bottom: 38px;
    margin-top: 0;
}

.calSelect .selectList .selectListItem:hover {
    background-color: #1e2e25;
    color: #fff;
}

.cal-itemsContainter {
    width: 50%;
    padding: 45px;
    justify-content: center;
}

.calHeader .cal-title {
    color: #fff;
    margin: 0;
    font-family: PPGatwick-Bold, sans-serif;
    font-size: 27px;
}

.calSelect .selectList .selectListItem {
    font-family: Montserrat, sans-serif !important;
}

.calSalary,
.availabilityFeePrice,
.newContractingPrice,
.scholarsipPrice,
.salarySum {
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    text-align: center;
    /* border-top: 2px solid #c7d0ca; */
    width: 100%;
    /* min-height: 115px; */
    display: flex;
    justify-content: space-between;
    /* align-items: end; */
}

.price {
    color: #fff;
    font-weight: bolder;
}

.calSalary .label,
.availabilityFeePrice .label,
.newContractingPrice .label,
.scholarsipPrice .label,
.salarySum .label {
    font-family: Montserrat, sans-serif;
    color: #fff;
    text-align: left;
    width: fit-content;
}

.salarySum .label {
    font-weight: bolder;
}

.calResultButton {
    transition: 0.3s;
    font-family: Montserrat, sans-serif;
    color: #fff;
    text-transform: uppercase;
    padding: 16px;
    background-color: #ad8505;
    border-radius: 20px;
    cursor: pointer;
    width: 80%;
}

@media(max-width: 768px) {
    .label {
        font-size: 15px;
    }
    .price {
        font-size: 15px;
    }
    .calResultButton p {
        font-size: 20px;
    }
    .calResultButton {
        padding: 10px !important;
    }
    .salaryContainer {
        margin-bottom: 0px !important;
    }
    .cal-itemsContainter {
        padding: 20px 0;
    }
    .cal-resultContainer {
        border-radius: inherit;
    }
    .calHeader .cal-title {
        font-size: 20px !important;
    }
    .calHeader {
        padding: 16px 0;
        position: inherit;
        bottom: 0;
    }
    .calSelect,
    .calInput {
        height: 40px;
    }
    .calSelect .selectArrow {
        font-size: 27px;
    }
    .calSelect .selectInput,
    .calInput {
        font-size: 16px !important;
    }
    .calHeaderTitle .cal-title {
        font-size: 20px !important;
    }
}

@media(max-width: 1000px) {
    .cal-resultContainer {
        border-radius: 0px 0px 15px 15px;
    }
    .row.Calcontainer {
        padding: 15px !important;
    }
    .row.calBody {
        padding: 10px !important;
    }
}

@media (max-width: 1200px) {
    .calHeader .cal-title {
        font-size: 22px;
    }
    .calHeader {
        padding: 16px 0;
        position: relative;
        bottom: 30px;
    }
    .cal-title {
        font-size: 16px;
    }
    .calResultButton {
        width: 100%;
        padding: 10px;
    }
    .calSelect .selectList .selectListItem {
        font-size: 15px;
    }
    .row.ButtonContainer {
        padding: 35px 25px !important
    }
    .label {
        font-size: 15px;
    }
    .price {
        font-size: 15px;
    }
}

.calResultButton:hover {
    transition: 0.3s;
    transform: translateY(-10px);
    box-shadow: 0px 3px 0px 0px #939393;
}

.calResultButton:hover p {
    color: #fff;
    transition: 0.3s;
}

.calResultButton:active {
    transition: 0.1s;
    transform: translateY(-7px);
    box-shadow: 0px 0px 0px 0px #939393;
}

.calResultButton p {
    text-align: center;
    width: 100%;
    font-size: 25px;
    margin: 0px;
    font-weight: bold;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
}

.salaryContainer {
    border-radius: 20px;
    width: 80%;
    padding: 35px 25px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    /* margin-bottom: 45px; */
}

.calWarning {
    border: 3px solid #e6a300;
}

.row.ButtonContainer {
    justify-content: center;
}

.calResult {
    margin: 13px 0px;
}

.calResult:nth-last-child(-n+1) {
    border-bottom: 2px solid #ffffff;
    padding-bottom: 16px !important;
}

.calResultTitle {
    border-bottom: 2px solid #ffffff;
}

.CalculatorContainer {
    width: 100%;
}

.calHeaderTitle .cal-title {
    color: #344f40;
    font-family: PPGatwick-Bold, sans-serif;
    color: #344f40;
    text-transform: uppercase;
    width: 100%;
    font-size: 35px;
    margin: 40px auto;
    text-align: center;
}

.calResultSubTitle {
    font-family: Montserrat, sans-serif;
    color: #fff;
    text-align: left;
    width: 100%;
    font-style: italic;
    font-size: 12px;
}

.calSubTitle {
    font-family: Montserrat, sans-serif;
    color: #fff;
    text-align: left;
    width: 100%;
    font-style: italic;
    font-size: 12px;
    text-align: center;
}

p.resultSubtitle {
    margin: 3px;
}

.calborder {
    padding-top: 10px;
    border-top: 2px solid #fff;
}

span.specialMenuItem {
    color: #ad8505;
}

.Calculator input::placeholder {
    font-style: italic;
}

.calInput[data-name=daysofactiveInput] {
    font-family: Montserrat, sans-serif;
}

.schoolLvL .cal-title {
    margin-top: 10px;
}

.countdown {
    color: #fff;
}

.FormLabel1[data-id="5013"] {
    margin-top: 20px !important;
}