:root {
    --primaryColor: rgb(22, 25, 37);
    --canvasBackColor: rgb(27, 30, 42);
    --secondaryColor: rgb(35, 57, 91);
    --thirdColor: rgb(64, 110, 142);
    --fourthColor: rgb(142, 168, 195);
    --fifthColor: rgb(203, 247, 237);
    --buttonUpdateHoverColor: rgb(45, 67, 101);
    --alarmColor: rgb(220, 160, 80);
    --chartIconColor: rgb(84, 130, 162);
    --chartBackColor: rgba(22, 25, 37, 0.2);
    --modalBackColor: rgba(22, 25, 37, 0.9);
    --modalCloseColor: rgb(220, 160, 80);
    --modalButtonSaveHoverColor: rgb(203, 247, 237);
    --modalButtonSaveActiveColor: rgb(163, 207, 197);
    --modalButtonCancelHoverColor: rgb(220, 160, 80);
    --modalButtonCancelActiveColor: rgb(200, 140, 60);
    --modalSliderBorderColor: rgba(22, 25, 37, 0.9);
    --modalListHoverBackColor: rgba(22, 25, 37, 0.5);
}


body {
    box-sizing: border-box;
    font-family: "Roboto";
    background-color: var(--primaryColor);
    margin: 0px;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    height: 46px;
    background-color: var(--secondaryColor);
    width: 100%;
    text-align: center;
    display: block;
}

.headerButton {
    float: left;
    width: 56px; 
    height: 100%; 
    cursor: pointer; 
    border: none;
    background-color: var(--secondaryColor);
    color: var(--fifthColor);
    text-decoration: none;
    cursor: pointer;
    transition: 0.4s;
    font-size: 40px;
}

.headerButton:hover {
    background-color: var(--buttonUpdateHoverColor);
}

.headerButton:active  {
    background-color: var(--thirdColor);
}

.headerIconMeteo {
    float: left;
    width: 48px;
    height: 100%;
    border: none;
    background-color: var(--secondaryColor);
    color: var(--fifthColor);
    cursor: pointer;
    scale: 0.8;
    margin-top: 1px;
}

.headerIconMeteo:active {
    scale: 0.6;
}

.headerTextMeteo {
    float: left;
    width: 64px;
    height: calc(100% - 6px);
    border: none;
    background-color: var(--secondaryColor);
    color: var(--fifthColor);
    font-size: 16px;
    padding-top: 6px;
    text-align: center;
}

.headerImageContainer {
    width: calc(100% - 224px); 
    float: left;
}


.controlsContainer {
    padding-bottom: 30px; 
    width: 100%; 
    position: absolute; 
    left: 0; 
    top: 46px; 
    z-index: -1;
}


.breadcrumbContainer {
    margin: 10px;
}

ul.breadcrumb {
    padding: 6px 2px;
    list-style: none;
    border-bottom-width: 2px;
    border-bottom-color: var(--thirdColor);
    border-bottom-style: solid;
}

ul.breadcrumb li {
    display: inline;
    font-size:14px;
    font-weight: 600;
    color: var(--fifthColor);
    cursor: default;
}

ul.breadcrumb li+li:before {
    padding: 2px;
    color: var(--fourthColor);
    content: "/\00a0";
}

ul.breadcrumb li a {
    font-weight: 100;
    color: var(--fourthColor);
    text-decoration: none;
    cursor: pointer;
    transition-duration: 0.4s;
}

ul.breadcrumb li a:hover {
    color: var(--fifthColor);
}

ul.breadcrumb li a:active {
    color: var(--fourthColor);
}


.canvasContainer {
    margin-left: 10px;
    margin-right: 10px; 
    background-color: var(--canvasBackColor); 
    border-color: var(--secondaryColor);
    box-shadow: 0 4px 8px 0 var(--secondaryColor), 0 6px 20px 0 var(--secondaryColor);
    border-style: solid; 
    border-width: 1px; 
    border-radius: 10px; 
    padding-top: 4px; 
    padding-left: 6px; 
    padding-right: 6px;
    animation-name: canvasContainerEffect;
    animation-duration: 0.4s;
    animation-timing-function: ease-out;
}

@keyframes canvasContainerEffect {
    from {transform: scale(0.5, 0.5);}
    to {transform: scale(1.0, 1.0);}
}

.pdfContainer {
    margin-left: 10px;
    margin-right: 10px; 
    background-color: white; 
    border-color: var(--secondaryColor);
    box-shadow: 0 4px 8px 0 var(--secondaryColor), 0 6px 20px 0 var(--secondaryColor);
    border-style: solid; 
    border-width: 1px; 
    border-radius: 10px; 
    padding-top: 4px; 
    padding-left: 6px; 
    padding-right: 6px;
    padding-bottom: 4px;
    animation-name: pdfContainerEffect;
    animation-duration: 0.4s;
    animation-timing-function: ease-out;
}

@keyframes pdfContainerEffect {
    from {transform: scale(0.5, 0.5);}
    to {transform: scale(1.0, 1.0);}
}

.mapContainer {
    margin-left: 10px;
    margin-right: 10px; 
    background-color: white; 
    border-color: var(--secondaryColor);
    box-shadow: 0 4px 8px 0 var(--secondaryColor), 0 6px 20px 0 var(--secondaryColor);
    border-style: solid; 
    border-width: 1px; 
    border-radius: 10px; 
    padding-top: 4px; 
    padding-left: 6px; 
    padding-right: 6px;
    padding-bottom: 4px;
    animation-name: pdfContainerEffect;
    animation-duration: 0.4s;
    animation-timing-function: ease-out;
}

@keyframes mapContainerEffect {
    from {transform: scale(0.5, 0.5);}
    to {transform: scale(1.0, 1.0);}
}


.accordion {
    margin: 10px;
    border-style: solid;
    border-radius: 10px;
    border-color: var(--secondaryColor);
    border-width: 1px;
    animation-name: accordionEffect;
    animation-duration: 0.4s;
    animation-timing-function: ease-out;
    box-shadow: 0 4px 8px 0 var(--secondaryColor), 0 6px 20px 0 var(--secondaryColor);
}

@keyframes accordionEffect {
    from {transform: scale(0.5, 0.5);}
    to {transform: scale(1.0, 1.0);}
}

.accordionTopItem {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: var(--primaryColor);
    border-color: var(--thirdColor);
    border-bottom-style: solid;
    border-width: 1px;
    transition: 0.4s;
}

.active, .accordionTopItem:hover {
    background-color: var(--thirdColor);
}


.accordionCenterItem {
    border-color: var(--thirdColor);
    border-bottom-style: solid;
    border-width: 1px;
    background-color: var(--primaryColor);
    transition: 0.4s;
}

.active, .accordionCenterItem:hover {
    background-color: var(--thirdColor);
}


.accordionBottomItem {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background-color: var(--primaryColor);
    transition: 0.4s;
}

.active, .accordionBottomItem:hover {
    background-color: var(--thirdColor);
}


.accordionHeader {
    width: auto;
    height: 36px;
    font-size: 20px;
    padding-top: 10px;
    padding-left: 12px;
    padding-right: 12px;
    color: var(--fifthColor);
    cursor: pointer;
}

.accordionHeaderTitle {
    float: left; 
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.accordionHeaderCursor {
    float: right; 
}


.accordionContent {
    overflow: hidden;
    transition: 0.2s ease-out;
    max-height: 0;
    background-color: var(--primaryColor);
}

.accordionBottomContent {
    overflow: hidden;
    transition: 0.2s ease-out;
    max-height: 0;
    background-color: var(--primaryColor);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}



.controlContainer {
    float: left;
    width: 25%;
    animation-name: controlContainerEffect;
    animation-duration: 0.4s;
    animation-timing-function: ease-out;
}

.controlModalContainer {
    float: left;
    width: 33.3%;
    animation-name: controlContainerEffect;
    animation-duration: 0.4s;
    animation-timing-function: ease-out;
}

@keyframes controlContainerEffect {
    from {transform: scale(0.5, 0.5);}
    to {transform: scale(1.0, 1.0);}
}


.controlContent {
    width: auto;
    height: 100px;
    background-color: var(--secondaryColor);
    border-style: solid;
    border-width: 1px;
    border-color: var(--thirdColor);
    border-radius: 6px;
    margin: 10px;
    box-shadow: 2px 2px 6px var(--thirdColor);
    transition: 0.1s ease-out;
    cursor: pointer;
    color: var(--fifthColor);
}

.controlContentReadOnly {
    width: auto;
    height: 100px;
    background-color: var(--secondaryColor);
    border-style: solid;
    border-width: 1px;
    border-color: var(--thirdColor);
    border-radius: 6px;
    margin: 10px;
    box-shadow: 2px 2px 6px var(--thirdColor);
    transition: 0.1s;
    color: var(--fifthColor);
}

.controlContentDisabled {
    width: auto;
    height: 100px;
    background-color: var(--thirdColor);
    border-style: solid;
    border-width: 1px;
    border-color: var(--fourthColor);
    border-radius: 6px;
    margin: 10px;
    box-shadow: 2px 2px 6px var(--thirdColor);
    transition: 0.1s;
    color: var(--fourthColor);
}

.controlContent:hover {
    box-shadow: 6px 6px 20px var(--thirdColor);
}

.controlContent:active {
    transform: scale(0.9, 0.9);
}


.controlBar {
    float: left;
    width: 1%;
    height: 100%;
    background-color: var(--fifthColor);
    border-style: solid;
    border-width: 1px;
    border-color: var(--fifthColor);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.controlBarSwitchOff {
    background-color: var(--thirdColor);
    border-color: var(--thirdColor);
}


.controlBarStatusOn {
    background-color: var(--thirdColor);
    border-color: var(--thirdColor);
    animation-name: controlBarStatusOnEffect;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes controlBarStatusOnEffect {
    from {background-color: var(--thirdColor); border-color: var(--thirdColor);}
    to {background-color: var(--fifthColor); border-color: var(--fifthColor);}
}


.controlBarAlarmOn {
    float: left;
    width: 1%;
    height: 100%;
    background-color: var(--thirdColor);
    border-style: solid;
    border-width: 1px;
    border-color: var(--thirdColor);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    animation-name: controlBarAlarmOnEffect;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes controlBarAlarmOnEffect {
    from {background-color: var(--thirdColor); border-color: var(--thirdColor);}
    to {background-color: var(--alarmColor); border-color: var(--alarmColor);}
}


.controlBarDisabled {
    float: left;
    width: 1%;
    height: 100%;
    background-color: var(--fourthColor);
    border-style: solid;
    border-width: 1px;
    border-color: var(--fourthColor);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}


.controlLabelContainer {
    width: 99%;
    height: 20px;
    padding-top: 6px;
    padding-left: 16px;
}

.controlLabel {
    width: calc(100% - 20px);
    height: 20px;
    font-size: 14px;
    border-bottom-color:var(--fourthColor);
    border-bottom-style: solid;
    border-width: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.controlButton {
    float: left;
    width: calc(100% - 100px);
    text-align: left;
    font-size: 20px;
    font-weight: 100;
    margin-top: 40px;
    margin-left: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.controlButtonIcon {
    float: right;
    width: 40px;
    text-align: center;
    font-size: 28px;
    margin-top: 40px;
    margin-right: 10px;
}

.controlButtonIconActive {
    float: right;
    width: 40px;
    text-align: center;
    font-size: 28px;
    margin-top: 40px;
    margin-right: 10px;
}

.controlButtonIconActive:hover {
    transform: scale(1.4);
}

.controlSwitch {
    float: left;
    width: 70%;
    height: 60%;
    text-align: left;
    font-size: 36px;
    font-weight: 600;
    margin-top: 14px;
    margin-left: 10px;
    margin-right: 10px;
}

.controlSwitchOff {
    color: var(--thirdColor);
    text-shadow: 1px 1px 20px var(--thirdColor), 0 0 25px var(--thirdColor), 0 0 5px var(--thirdColor);
}

.controlSwitchOn {
    color: var(--fifthColor);
    text-shadow: 1px 1px 20px var(--fifthColor), 0 0 25px var(--fifthColor), 0 0 5px var(--fifthColor);
}

.controlSwitchDisabled {
    color: var(--fourthColor);
    text-shadow: 1px 1px 20px var(--fourthColor), 0 0 25px var(--fourthColor), 0 0 5px var(--fourthColor);
}


.controlStatus {
    float: left;
    width: 20px;
    height: 20px;
    margin-top: 28px;
    margin-left: 12px;
    border-radius: 50%;
}

.controlStatusOff {
    background-color: var(--thirdColor);
    box-shadow: 1px 1px 20px var(--thirdColor), 0 0 25px var(--thirdColor), 0 0 5px var(--thirdColor);
}

.controlStatusOn {
    animation-name: controlStatusEffect;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes controlStatusEffect {
    from {background-color: var(--thirdColor); box-shadow: 1px 1px 20px var(--thirdColor), 0 0 25px var(--thirdColor), 0 0 5px var(--thirdColor);}
    to {background-color: var(--fifthColor); box-shadow: 1px 1px 20px var(--fifthColor), 0 0 25px var(--fifthColor), 0 0 5px var(--fifthColor);}
}


.controlAlarm {
    float: left;
    width: 20px;
    height: 20px;
    margin-top: 28px;
    margin-left: 12px;
    border-radius: 50%;
}

.controlAlarmOff {
    background-color: var(--thirdColor);
    box-shadow: 1px 1px 20px var(--thirdColor), 0 0 25px var(--thirdColor), 0 0 5px var(--thirdColor);
}

.controlAlarmOn {
    animation-name: controlAlarmEffect;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes controlAlarmEffect {
    from {background-color: var(--thirdColor); box-shadow: 1px 1px 20px var(--thirdColor), 0 0 25px var(--thirdColor), 0 0 5px var(--thirdColor);}
    to {background-color: var(--alarmColor); box-shadow: 1px 1px 20px var(--alarmColor), 0 0 25px var(--alarmColor), 0 0 5px var(--alarmColor);}
}


.controlText {
    float: left;
    width: calc(100% - 30px);
    height: 40%;
    text-align: left;
    font-size: 16px;
    font-weight: 100;
    margin-top: 16px;
    margin-left: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.controlNumber {
    float: left;
    width: calc(100% - 160px);
    height: 30px;
    text-align: left;
    font-size: 36px;
    font-weight: 600;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 14px;
}

.controlUnitOfMeasure {
    float: right;
    width: 70px;
    height: 30px;
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
}


.controlCombo {
    float: left;
    width: calc(100% - 80px);
    height: 40%;
    text-align: left;
    font-size: 20px;
    font-weight: 60;
    margin-top: 24px;
    margin-left: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.controlComboIcon {
    float: right;
    width: 40px;
    height: 30px;
    text-align: center;
    font-size: 28px;
    margin-top: 20px;
    margin-right: 10px;
}


.controlChart {
    float: left;
    width: calc(100% - 144px);
    height: 64px;
    text-align: left;
    margin-top: 6px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 16px;
    background-color: var(--thirdColor);
    border-color: var(--fourthColor);
    border-style: solid;
    border-width: 1px;
    border-radius: 4px;
}

.controlChartIcon {
    float: right;
    width: 40px;
    height: 30px;
    text-align: center;
    font-size: 28px;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 20px;
}

.controlChartIcon:hover {
    background-color: var(--thirdColor);
}

.controlChartIcon:active {
    background-color: var(--chartIconColor);
}


.controlTimeSlot {
    float: left;
    width: calc(100% - 30px);
    height: 33px;
    text-align: left;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 20px;
    font-weight: 100;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.controlTimeSlotFunction {
    float: left;
    width: calc(100% - 30px);
    height: 33px;
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 20px;
    font-weight: 600;
}



.footer {
    height: 28px; 
    background-color: var(--secondaryColor); 
    position: fixed; 
    width: 100%; 
    left: 0; 
    bottom: 0; 
}

.footerTitle {
    text-align: center; 
    color: var(--fifthColor); 
    margin-top: 8px; 
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}










.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: var(--modalBackColor); 
}

.waitModal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: var(--modalBackColor); 
}

.modalTitle {
    text-align: center; 
    width: 96%; 
    position: absolute; 
    top: 36px; 
    font-size: 24px; 
    margin-left: 2%; 
    margin-right: 2%;
    color: var(--fifthColor);
}

.modalTitleSeparator {
    width: 96%; 
    position: absolute; 
    left: 0; 
    top: 100px; 
    margin-left: 2%; 
    margin-right: 2%;
    color: var(--fifthColor);
}

.modal-content {
    border-radius: 20px;
    position: fixed;
    top: 10px;
    background-color: var(--secondaryColor);
    left: 30%;
    width: 40%;
    height: calc(100% - 20px);
}

.modal-extended-content {
    border-radius: 20px;
    position: fixed;
    top: 10px;
    background-color: var(--secondaryColor);
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
}

.animate {
    -webkit-animation: animatezoom 0.4s ease-out;
    animation: animatezoom 0.4s ease-out;
}

@-webkit-keyframes animatezoom {
    from {transform: scale(0.0)} 
    99% {transform: scale(1.05)}
    100% {transform: scale(1.0)}
}

@keyframes animatezoom {
    from {transform: scale(0.0)} 
    99% {transform: scale(1.05)}
    100% {transform: scale(1.0)}
}

.close {
    position: absolute;
    right: 16px;
    top: 0;
    color: var(--fifthColor);
    font-size: 35px;
    font-weight: bold;
}

.close:hover, .close:focus {
    color: var(--modalCloseColor);
    cursor: pointer;
}


.modalContainerCanvas {
    width: calc(100% - 34px);
    overflow-x: hidden;
    overflow-y: auto;
    top: 110px;
    position: absolute;
    padding-top: 6px;
    padding-left: 34px;
    height: calc(100% - 124px);
}

.modalContainerCanvasButtons {
    width: calc(100% - 34px);
    overflow-x: hidden;
    overflow-y: auto;
    top: 110px;
    position: absolute;
    padding-top: 6px;
    padding-left: 34px;
    height: calc(100% - 160px);
}

.modalContainer {
    width: calc(100% - 20px);
    overflow-x: hidden;
    overflow-y: auto;
    top: 110px;
    position: absolute;
    padding: 10px;
    height: calc(100% - 170px);
}

.modalContainerInfo {
    width: calc(100% - 40px);
    overflow-x: hidden;
    overflow-y: auto;
    top: 110px;
    position: absolute;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    height: calc(100% - 170px);
    color: var(--fifthColor);
}


.buttonModalSave {
    width: calc(50% - 26px);
    position: absolute;
    border-bottom-left-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    bottom: 0;
    left: 0;
    text-align: center;
    background-color: var(--thirdColor);
    border-color: var(--thirdColor);
    border-width: 1px;
    border-style: solid;
    padding: 12px;
    transition: 0.4s;
    cursor: pointer;
    color: var(--fifthColor);
}

.buttonModalSave:hover {
    background-color: var(--modalButtonSaveHoverColor);
    border-color: var(--modalButtonSaveActiveColor);
    color: var(--secondaryColor);
}

.buttonModalSave:active {
    background-color: var(--modalButtonSaveActiveColor);
    border-color: var(--modalButtonSaveActiveColor);
    color: var(--secondaryColor);
}

.buttonModalSaveDisabled {
    width: calc(50% - 26px);
    position: absolute;
    border-bottom-left-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    bottom: 0;
    left: 0;
    text-align: center;
    background-color: var(--fourthColor);
    border-color: var(--fourthColor);
    border-width: 1px;
    border-style: solid;
    padding: 12px;
    transition: 0.4s;
    cursor: default;
    color: var(--fifthColor);
}

.buttonModalCancel {
    width: calc(50% - 26px);
    position: absolute;
    border-bottom-right-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    bottom: 0;
    left: 50%;
    text-align: center;
    background-color: var(--thirdColor);
    border-color: var(--thirdColor);
    border-width: 1px;
    border-style: solid;
    padding: 12px;
    transition: 0.4s;
    cursor: pointer;
    color: var(--fifthColor);
}

.buttonModalCancel:hover {
    background-color: var(--modalButtonCancelHoverColor);
    border-color: var(--modalButtonCancelHoverColor);
    color: var(--fifthColor);
}

.buttonModalCancel:active {
    background-color: var(--modalButtonCancelActiveColor);
    border-color: var(--modalButtonCancelActiveColor);
    color: var(--fifthColor);
}


.modalControlLabel {
    width: calc(100% - 9px);
    font-family: 'Roboto';
    font-size: 14px;
    font-weight: 100;
    color:var(--fifthColor);
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-width: 1px;
    border-color: var(--secondaryColor);
    border-style: solid;
    background-color: var(--primaryColor);
    margin-bottom: 10px;
    padding: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.slidecontainer {
    width: calc(100% - 2px);
    height: 110px;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    background-color: var(--thirdColor);
    border-color: var(--secondaryColor);
    transition: 0.4s ease;
}

.slideDisplay {
    width: calc(100% - 120px);
    font-family: 'Roboto';
    font-size: 24px;
    color: var(--primaryColor);
    text-align: center;
    margin-left: 60px;
    background-color: var(--fourthColor);
    border-color: var(--fifthColor);
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sliderButton {
    width: 40px;
    height: 40px;
    background-color: var(--secondaryColor);
    border: none;
    border-radius: 50%;
    float: left;
    font-size: 26px;
    color: var(--fifthColor);
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
    scale:0.8;
    margin-left: 6px;
}

.sliderButton:hover {
    background-color: var(--primaryColor);
    color: var(--fifthColor);
    scale:1.0;
}

.sliderButton:active {
    background-color: var(--primaryColor);
    color: var(--fifthColor);
    scale:0.8;
}

.slider {
    appearance: none;
    float: left;
    width: calc(100% - 118px);
    height: 6px;
    border-radius: 5px;
    background: var(--secondaryColor);
    outline: none;
    opacity: 0.7;
    margin-top: 18px;
    margin-left: 14px;
    margin-right: 6px;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider:active {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--secondaryColor);
    cursor: pointer;
    transition: 0.4s;
    border-color: var(--fourthColor);
}

.slider::-moz-range-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--secondaryColor);
    cursor: pointer;
    transition: 0.4s;
    border-color: var(--fourthColor);
}

.slider::-webkit-slider-thumb:hover {
    background-color: var(--fifthColor);
    border-color: var(--modalSliderBorderColor);
    border-width: 6px;
    border-style: solid;
}

.slider::-moz-range-thumb:hover {
    background-color: var(--fifthColor);
    border-color: var(--modalSliderBorderColor);
    border-width: 6px;
    border-style: solid;
}

.slider::-webkit-slider-thumb:active {
    background-color: var(--fifthColor);
    border-color: var(--modalSliderBorderColor);
    border-width: 8px;
    border-style: solid;
}

.slider::-moz-range-thumb:active {
    background-color: var(--fifthColor);
    border-color: var(--modalSliderBorderColor);
    border-width: 8px;
    border-style: solid;
}


.textContainer {
    width: calc(100% - 2px);
    height: 90px;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    background-color: var(--thirdColor);
    border-color: var(--secondaryColor);
}

.text {
    width: calc(100% - 38px);
    padding: 6px;
    font-size: 24px;
    font-family: 'Roboto';
    text-align: center;
    background-color: var(--fourthColor);
    border-color: var(--fifthColor);
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    transition: 0.4s;
    margin-left: 12px;
    margin-right: 12px;
    color: var(--primaryColor);
}

.text:hover {
    cursor: pointer;
}

.text:focus {
    border-color: var(--fifthColor);
    background-color: var(--fifthColor);
    cursor: auto;
}


.select {
    width: calc(100% - 24px);
    padding: 6px;
    border-radius: 10px;
    font-size: 24px;
    font-family: 'Roboto';
    text-align: center;
    background-color: var(--fourthColor);
    border-color: var(--fifthColor);
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    transition: 0.4s;
    margin-left: 12px;
    margin-right: 12px;
    color: var(--primaryColor);
}

.select:hover {
    cursor: pointer;
}

.select:focus {
    border-color: var(--thirdColor);
    cursor: pointer;
}

select option {
    font-size: 24px;
    font-family: 'Arial';
    text-align: center;
    border-radius: 10px;
    background-color: var(--fourthColor);
    color: var(--primaryColor);
}


.radiosContainer {
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    background-color: var(--thirdColor);
    border-color: var(--secondaryColor);
}

.radiosContent {
    margin-top: 20px;
    margin-left: 12px;
    margin-bottom: 6px;
    color: var(--fifthColor);
}

.radioContainer {
    font-size: 20px;
    font-family: 'Roboto';
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radioContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radiomark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: var(--fourthColor);
    border-radius: 50%;
    transition: 0.4s;
}

.radioContainer:hover input ~ .radiomark {
    background-color: var(--fourthColor);
    scale: 1.5;
}

.radioContainer input:checked ~ .radiomark {
    background-color: var(--secondaryColor);
}

.radiomark:after {
    content: "";
    position: absolute;
    display: none;
}

.radioContainer input:checked ~ .radiomark:after {
    display: block;
}

.radioContainer .radiomark:after {
    top: 6px;
    left: 6px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--fifthColor);
}


.toggleContainer {
    height: 80px;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    background-color: var(--thirdColor);
    border-color: var(--secondaryColor);
}

.toggleContent {
    text-align: center;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.toggleSlider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--fourthColor);
    -webkit-transition: .4s;
    transition: .4s;
}

.toggleSlider:hover {
    scale: 1.2;
}

.toggleSlider:active {
    scale: 1.1;
}

.toggleSlider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--fifthColor);
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .toggleSlider {
    background-color: var(--secondaryColor);
}

input:focus + .toggleSlider {
    box-shadow: 0 0 1px var(--secondaryColor);
}

input:checked + .toggleSlider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.toggleSlider.round {
    border-radius: 34px;
}

.toggleSlider.round:before {
    border-radius: 50%;
}


.list {
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    background-color: var(--thirdColor);
    border-color: var(--fourthColor);
    text-align: center;
    font-size: 20px;
    font-family: 'Roboto';
    color: var(--fifthColor);
    transition: 0.4s;
}


.listTopItem {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: var(--fourthColor);
    cursor: pointer;
    padding: 6px;
    transition: 0.4s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.listTopItem:hover {
    background-color: var(--modalListHoverBackColor); 
}

.listTopItem:active {
    background-color: var(--primaryColor);
    color: var(--fifthColor);
}

.listTopItemDisabled {
    background-color: var(--fourthColor); 
    color: var(--fifthColor);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: var(--fourthColor);
    cursor: default;
    padding: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.listItem {
    cursor: pointer;
    padding: 6px;
    transition: 0.4s;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: var(--fourthColor);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.listItem:hover {
    background-color: var(--modalListHoverBackColor);  
}

.listItem:active {
    background-color: var(--primaryColor);
    color: var(--fifthColor);
}

.listItemDisabled {
    background-color: var(--fourthColor); 
    color: var(--fifthColor);
    padding: 6px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: var(--fourthColor);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.listBottomItem {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    cursor: pointer;
    padding: 6px;
    transition: 0.4s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.listBottomItem:hover {
    background-color: var(--modalListHoverBackColor); 
}

.listBottomItem:active {
    background-color: var(--primaryColor);
    color: var(--fifthColor);
}

.listBottomItemDisabled {
    background-color: var(--fourthColor); 
    color: var(--fifthColor);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    cursor: default;
    padding: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.listItemActive {
    background-color: var(--primaryColor); 
}



#popup {
    visibility: hidden;
    position: fixed;
    background-color: var(--thirdColor);
    border-style: solid;
    border-width: 2px;
    border-color: var(--fourthColor);
    border-radius: 6px;
    color: var(--fifthColor);
    text-align: center;

    padding: 10px;
    width: 200px;
    top: 30px;
    left: calc(50% - 110px);

    font-size: 14px;
    font-family: 'Roboto';
    z-index: 1;
}

#popup.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {top: 0; opacity: 0;} 
    to {top: 30px; opacity: 1;}
}

@keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {top: 30px; opacity: 1;} 
    to {top: 0; opacity: 0;}
}

@keyframes fadeout {
    from {top: 30px; opacity: 1;}
    to {top: 0; opacity: 0;}
}


.divButtons {
    position: fixed;
    top: 48px;
    left: calc(100% - 510px);
    z-index: 1;
    height: 30px;
    margin-top: 6px;
    margin-bottom: 6px;
    overflow: hidden;
    transition: 0.4s ease-out;
    animation-name: divButtonsEffect;
    animation-duration: 0.4s;
    animation-timing-function: ease-out;
}

@keyframes divButtonsEffect {
    from {scale: 0.1; opacity: 0;} 
    to {scale: 1.0; opacity: 1;}
}

.button {
    background-color: var(--canvasBackColor);
    border: 1px solid var(--canvasBackColor);
    color: var(--fifthColor);
    text-align: center;
    height: 100%;
    width: 50px;
    transition: 0.4s;
    cursor: pointer;
    float: left;
    padding-top: 3px;
}

.buttonDisabled {
    background-color: var(--secondaryColor);
    border: 1px solid var(--secondaryColor);
    color: var(--fourthColor);
    cursor: not-allowed;
}

.button:hover:enabled {
    background-color: var(--thirdColor);
    border: 1px solid var(--thirdColor);
}

.button:active:enabled {
    background-color: var(--fifthColor);
    border: 1px solid var(--fifthColor);
    color: var(--primaryColor);
}

.buttonLeft {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px
}

.buttonRight {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px
}

.buttonActive {
    background-color: var(--fifthColor);
    border: 1px solid var(--fifthColor);
    color: var(--primaryColor);
}

.button i {
    font-size: 20px;
}


.divToolTip {
    padding: 10px 10px;
    border-radius: 6px;
    border-width: 2px;
    border-style: solid;
    border-color: var(--fifthColor);
    position: fixed;
    background-color: var(--secondaryColor);
    color: var(--fifthColor);
    transition: 0.8s;
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
    animation-name: divToolTipEffect;
    animation-duration: 0.4s;
    animation-timing-function: ease-out;
}


.pure-material-progress-linear {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-style: solid;
    border-radius: 10px;
    border-width: 0px;
    width: 160px;
    height: 8px;
    color: var(--fourthColor);
    background-color: var(--secondaryColor);
    font-size: 16px;
    position: fixed;
    left: calc(50% - 80px);
    top: calc(50% - 4px);
}

.pure-material-progress-linear::-webkit-progress-bar {
    background-color: transparent;
}

.pure-material-progress-linear::-webkit-progress-value {
    background-color: currentColor;
    transition: all 0.2s;
}

.pure-material-progress-linear::-moz-progress-bar {
    background-color: currentColor;
    transition: all 0.2s;
}

.pure-material-progress-linear::-ms-fill {
    border: none;
    background-color: currentColor;
    transition: all 0.2s;
}

.pure-material-progress-linear:indeterminate {
    background-size: 200% 100%;
    background-image: linear-gradient(to right, transparent 50%, currentColor 50%, currentColor 60%, transparent 60%, transparent 71.5%, currentColor 71.5%, currentColor 84%, transparent 84%);
    animation: pure-material-progress-linear 2s infinite linear;
}

.pure-material-progress-linear:indeterminate::-moz-progress-bar {
    background-color: transparent;
}

.pure-material-progress-linear:indeterminate::-ms-fill {
    animation-name: none;
}

@keyframes pure-material-progress-linear {
    0% {background-size: 200% 100%; background-position: left -31.25% top 0%;}
    50% {background-size: 800% 100%; background-position: left -49% top 0%;}
    100% {background-size: 400% 100%; background-position: left -102% top 0%;}
}


@keyframes divToolTipEffect {
    from {scale: 0.1; opacity: 0;} 
    to {scale: 1.0; opacity: 1;}
}

@media screen and (max-width: 1500px) {
    .controlContainer {
        width: 33%;
    }
    .controlModalContainer {
        width: 33.3%;
    }
    .modal-content {
        top: 10px;
        left: 25%;
        width: 50%;
        height: calc(100% - 20px);
    }
}

@media screen and (max-width: 1300px) {
    .controlContainer {
        width: 50%;
    }
    .controlModalContainer {
        width: 50%;
    }
    .modal-content {
        top: 10px;
        left: 25%;
        width: 50%;
        height: calc(100% - 20px);
    }
}

@media screen and (max-width: 700px) {
    .controlContainer {
        width: 100%;
    }
    .controlModalContainer {
        width: 100%;
    }
    .modal-content {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    .buttonModalSave {
        border-bottom-left-radius: 0px;
    }
    .buttonModalCancel {
        border-bottom-right-radius: 0px;
    }
    .divButtons {
        top: 120px;
        left: calc(50% - 150px);
    }
    .button {
        width: 30px;
    }
    .button i {
        font-size: 16px;
    }
}