* {
  box-sizing: border-box;
}

body{
  font-family: arial, sans-serif;
  padding: 30px;
  padding-top: 10px;
  background-color: #fff;
  color: #000;
}

h1 {
  font-family: 'Saira Extra Condensed', sans-serif;
  font-weight: 600;
  font-size: 50px;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}
td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}
tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.1);
}

.fixBtnRight{
  position: fixed;
  background-color: green;
  color: white;
  box-shadow: 0 0 13px 4px rgba(0, 0, 0, 0.2);
  height: 50px;
  width: 50px;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  margin: 10px;
  cursor: pointer;
  z-index: 100;
}

.fixBtnLeft{
  position: fixed;
  background-color: green;
  color: white;
  box-shadow: 0 0 13px 4px rgba(0, 0, 0, 0.2);
  height: 50px;
  width: 50px;
  left: 0;
  bottom: 0;
  border-radius: 50%;
  margin: 10px;
  cursor: pointer;
  z-index: 100;
}

.btnCenter{
  background-color: green;
  color: white;
  box-shadow: 0 0 13px 4px rgba(0, 0, 0, 0.2);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin: 10px;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
}

.center{
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.btnIcon {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

input{
  width: 100%;
  height: 30px;
  border: solid 1px lightgray;
  background-color: rgba(0, 0, 0, 0);
  font-size: medium;
  padding: 0;
  border-radius: 0;
  padding: 0 8px 0 8px;
}
input:focus{
  outline: 0;
}

.tooltiptext {
  visibility: hidden;
  width: 60px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  bottom: 105%;
  left: 105%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.7s;
  font-size: small;
  z-index: inherit;
}

.tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.fixBtnRight:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.btnCenter:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.fixBtnLeft:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.fa {
  -ms-transform: translate(100%, 100%);
  transform: translate(100%, 100%);
}

.tag {
  line-height: 0.5rem;
  padding: 0.4rem;
  border: 0.5px solid rgb(116, 116, 116);
  border-radius: 10px;
}

.beta {
  background-image: linear-gradient(darkblue, rgb(128, 0, 255));
  color: white !important;
  border-width: 0;
}

.stevecTock {
  float: right;
  padding: 10px;
  background-color: rgb(0, 161, 128);
  border-radius: 10px;
  margin: 10px;
}

.nastavitve {
  float: right;
  padding: 18px;
  padding-right: 7px;
  cursor: pointer;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.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: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .3s;
  transition: .3s;
  transition-timing-function: cubic-bezier(0, 0, 0.8, 1.36);
}

input:checked + .slider {
  background-color: #2196F3;
}

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

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

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

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


.dark {
  background-color: rgb(24, 24, 26);
  color: rgb(173, 163, 119);
}
.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
  color: rgb(213, 151, 19);
}
.dark .tooltiptext {
  background-color: rgb(173, 163, 119);
  color: #000;
}
.dark .tooltiptext::after {
  border-color: rgb(173, 163, 119) transparent transparent transparent;
}
.dark input {
  color: rgb(173, 163, 119);
}
.dark tr {
  background-color: rgb(24, 24, 26) !important;
}
.dark .stevecTock {
  color: #fff;
}
.dark .modal-header, .dark .modal-body {
  background-color: rgb(24, 24, 26);
}
.dark .btn-close {
  background-color: white;
}
.dark .modal-footer {
  background-color: #282828 !important;
}
