#switchInfo {
  position: relative;
  top: -45px;
  left: 40px;
}

#switchInfo > span {
  font-size:25px;
  font-weight:bold;
  color:#753c05;
}

#switch{
	height: 0;
	width: 0;
	visibility: hidden;
	float: right;
}

#switchInfo > label {
	cursor: pointer;
	width: 100px;
	height: 55px;
	background: grey;
	display: block;
	border-radius: 50px;
	position: relative;
	transform:translateY(10px)
}

#switchInfo > label:after {
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 45px;
	height: 45px;
	background: #fff;
	border-radius: 45px;
	transition: 0.3s;
}

.switch-txt::before,
.switch-txt::after {
  display: block;
  color: #fff;
  font-weight: bold;
  box-sizing: border-box;
}
.switch-txt::before {
  position: absolute;
  top: 10px;
  left: 15px;
  content: attr(turnOn);
  color: #fff;
}
.switch-txt::after {
  position: absolute;
  top: 10px;
  left: 55px;
  content: attr(turnOn);
  color: #fff;
  content: attr(turnOff);
  color: #ccc;
}

#switch:checked + label {
	background: #6f42c1;;
}

#switchInfo > label:active:after {
	width: 65px;
}

#switch:checked + label:after {
	left: calc(100% - 5px);
	transform: translateX(-100%);
}

#getData {
  cursor:pointer;
  background:#e0cbf5;
  color:red;
  display:block;
  text-align:center;
  font-size:18px;
  width:100px;
  height:50px;
  border:2px solid #8b008b;
  font-weight:bold;
}

#import {
  width:100px;
  height:50px;
  cursor:pointer;
  border:5px #056608;
}

.delete {
  width: 120px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 5px;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.15);
  background: #e62222;
}

.delete, .delete span {
  transition: 200ms;
}

.delete .deletetext {
  transform: translateX(2px);
  color: white;
  font-weight: bold;
  font-size:16px;
  text-align:left;
  width: 90px;
}

.delete .deleteicon {
  border-left: 1px solid #c41b1b;
  height: 40px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delete svg {
  width: 15px;
  fill: #eee;
}

.delete:hover {
  background: #ff3636;
}

.delete:hover .deletetext {
  color: transparent;
}

.delete:hover .deleteicon {
  width: 100px;
  border-left: none;
  transform: translateX(-50%);
}

.delete:focus {
  outline: none;
}

.delete:active .deleteicon svg {
  transform: scale(0.8);
}

.return {
  display: flex;
  height: 50px;
  width: 100px;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  background-color: #eeeeee4b;
  border-radius: 3px;
  letter-spacing: 1px;
  transition: all 0.2s linear;
  cursor: pointer;
  border: none;
  background: #98fb98;
}

.return > svg {
  margin-right: 5px;
  margin-left: 5px;
  font-size: 20px;
  transition: all 0.4s ease-in;
}

.return:hover > svg {
  font-size: 1.2em;
}

.return:hover {
  box-shadow: 9px 9px 33px #d1d1d1, -9px -9px 33px #ffffff;
}

.update {
  display: flex;
  justify-content: center;
  align-items: center;  
  width: 70px;
  text-align:center;
  padding: 0.75rem 1.0rem;
  border-radius: 10rem;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.update:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0cf;
  border-radius: 10rem;
  z-index: -2;
}
.update:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #008fb3;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.update:hover {
  color: #fff;
}
.update:hover:before {
  width: 100%;
}

.download {
 --width: 110px;
 --height: 50px;
 --button-color: #1163ff;
 --tooltip-color: #fff;
 width: var(--width);
 height: var(--height);
 background: var(--button-color);
 position: relative;
 text-align: center;
 border-radius: 0.45em;
 font-family: "Arial";
 transition: background 0.3s;
}

.download::before {
 position: absolute;
 content: attr(data-tooltip);
 width: var(--tooltip-width);
 height: var(--tooltip-height);
 background-color: var(--tooltip-color);
 font-size: 0.9rem;
 color: #111;
 border-radius: .25em;
 line-height: var(--tooltip-height);
 bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) + 10px);
 left: calc(50% - var(--tooltip-width) / 2);
}

.download::after {
 position: absolute;
 content: '';
 width: 0;
 height: 0;
 border: 10px solid transparent;
 left: calc(50% - 10px);
}

.download::after,.button::before {
 opacity: 0;
 visibility: hidden;
 transition: all 0.5s;
}

.download {
 display: flex;
 align-items: center;
 justify-content: center;
}

.download-wrapper, .download .words, .download .icon {
 overflow: hidden;
 position: absolute;
 width: 100%;
 height: 100%;
 left: 0;
 color: #fff;
}

.download .words {
 top: 30%;
}

.download .words, .download .icon {
 transition: top 0.5s;
}

.download .icon {
 color: #fff;
 top: 100%;
 display: flex;
 align-items: center;
 justify-content: center;
}

.download:hover {
 background: #6c18ff;
}

.download:hover .words {
 top: -100%;
}

.download:hover .icon {
 top: 0;
}

.download:hover:before,.download:hover:after {
 opacity: 1;
}

.button-68 {
  height:50px;
  width:105px;
  appearance: none;
  background-color: #27ae60;
  border-radius: 8px;
  box-shadow: rgba(39, 174, 96, .15) 0 4px 9px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-family: Inter,-apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.5;
  outline: none;
  overflow: hidden;
  padding: 13px 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
  border: 5px #056608;
}

.button-68:hover {
  background-color: #1e8449;
  opacity: 1;
  transform: translateY(0);
  transition-duration: .35s;
}

.button-68:active {
  transform: translateY(2px);
  transition-duration: .35s;
}

.button-68:hover {
  box-shadow: rgba(39, 174, 96, .2) 0 6px 12px;
}


input[type=reset] {
  cursor:pointer;
  height:40px;
  width:75px;
}

input[type=reset]:hover {
  animation: shake 1s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

input[type=submit] {
  height:40px;
  width:120px;
  cursor:pointer;
  background:dodgerblue;
  color:white;
  border-radius:6px;
}

.selections {
  font-size:16px;
  background:pink;
  width:80px;
  height:25px;
  top: calc(50% - 12.5px);
  display:block;
  margin:0 auto;
  text-align:center;
  position:relative;
}

#confirmModify {
  background:rgb(245, 91, 2);
  color:white;
  font-size:16px;
  border-radius:6px;
  font-weight:bold;
  height:50px;
  width:120px;
  cursor:pointer;
  float:right;
  border:2px solid black;
}

.update-button {
  display: flex;
  justify-content: center;
  align-items: center;  
  width: 100px;
  text-align:center;
  padding: 0.75rem 1.0rem;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.1rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.update-button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0cf;
  z-index: -2;
}
.update-button:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #008fb3;
  transition: all 0.3s;
  z-index: -1;
}
.update-button:hover {
  color: #fff;
}
.update-button:hover:before {
  width: 100%;
}





