:root {
  --turqoise: #1D8187;
  --yellow: #FFE40E;
}
body {
	font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
	color: var(--turqoise);
}
select, input[type=text], input[type=email], input[type=date], textarea {
	width: 100%;
	padding: 2.5px !important;
	/*min-width: 200px;*/
}
.sparkling {
	animation: rotate-bg-color 10s infinite;
}
@keyframes rotate-bg-color {
  0% {
    background-color: steelblue;
  }
  10% {
    background-color: red;
  }
  20% {
    background-color: orange;
  }
  30% {
    background-color: yellow;
  }
  40% {
    background-color: green;
  }
  50% {
    background-color: blue;
  }
  60% {
    background-color: indigo;
  }
  70% {
    background-color: violet;
  }
  80% {
    background-color: pink;
  }
  90% {
    background-color: brown;
  }
  100% {
    background-color: black;
  }
}
input:read-only {
	background-color: var(--bs-secondary-bg);
}
a, button{
	border: 2px solid var(--turqoise);
	border-radius: 5px;
	background-color: transparent;
	color: var(--turqoise);
	font-weight: bold;
}
a.none {
	border: none;
	color: inherit !important;
	font-weight: inherit !important;
	text-decoration: none;
}
option {
  color: black;
}
input[type=number], input[type=time] {
	max-width: 100px;
	padding: 2.5px;
	text-align: right;
	display: inline-block;
}
input[type=radio] {
	width: 15px !important;
}
.outer { position:relative; }
.inner { position:absolute; top:50%; height:100%; margin-top:-38%; }
.fourty {
	height: 40px;
}
.hm {
	width: calc(100% + 2rem) !important;
	margin-right: -1rem;
	margin-left: -1rem;
}
table {
	width: 100% !important;
}
table:not(.sorttable):not(.inputs) td, table:not(.sorttable):not(.inputs) th {
	padding: 0rem 1rem;
}
.npr {
	padding-right: 0px !important;
}
.npl {
	padding-left: 0px !important;
}
.card-header, .card-header2 {
	color: var(--turqoise);
	font-size: 1rem;			
	font-weight: bolder; 
}
.card-bordered {
	border-left: 5px solid var(--turqoise); padding: 1rem;
}
.tr {
	text-align: right;
}
.tab_head {
	border: 1px solid var(--turqoise);
	border-radius: 10px 10px 0px 0px;
	height: 1.5rem;
}
.tab_card {
	padding: 0.8rem;
	border-width: 0px 1px 1px 1px;
	border-style: solid;
	border-color: var(--turqoise);
}
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 30px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #4caf50;
}

input:checked + .slider:before {
  transform: translateX(22px);
}
