html, body {
    background-color: #ffffff;
    height: 100%;
    width: 100%;
    margin: 0px;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

:root {
    --textColor: #ffffff;
    --textColorShadow: #000000;
    --itemSize: 150px;
}
.darkenText * {
    color: var(--textColor);
    text-shadow: 1.5px 1.5px var(--textColorShadow);
}
li {
    list-style-type: none;
}
.collapsing {
    -webkit-transition: none;
    transition: none;
    display: none;
}
#button_1:disabled, #button_2:disabled {
    opacity: 1;
    background-color: #f8f9fa;
}
#button_1:not(:disabled), #button_2:not(:disabled) {
    opacity: 0.7;
    background-color: #f8f9fa;
}
.icon {
    height: 48px;
    width: 48px;
}

.darkButton {
    /* border: 3px solid #333333!important; */
    background-color: #02979d;
    border-radius: 10px;
    color: #ffffff;
}
.lightButton {
    border: 1px solid #02979d;
    background-color: #ffffff;
    border-radius: 10px;
}
.table {
    background-color: #f4f7fa;
    border: 1px solid #324550;
}
.table > thead {
    background-color: #324550;
    color: #ffffff;
}
.toggleBox {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 26px;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #02979d;
}

input:focus + .slider {
  box-shadow: 0 0 1px #02979d;
}

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

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

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

.pointer {
  cursor: pointer;
}
.default-bg-img {
  background-image: url('/media/icons/background.jpg');
}

.wait_cursor {
  cursor: wait!important;
}
.wait_cursor * {
  cursor: wait!important;
}
