.slwrapper {
  position: fixed;
  width: 100%;
  background: #fff;
  padding: 25px 25px 30px 25px;
  /* border-radius: 15px 15px 0 0; */
  box-shadow: 1px 7px 14px -5px rgb(0 0 0 / 15%);
  text-align: center;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  z-index: 999;
}
.slwrapper.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
.slwrappercont {
  background-color: rgba(0,0,0,0.4);
  z-index: 10000;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
}
.hidden {
  display: none;
}

.custom {
  position: fixed;
  max-width: 500px;
  height: fit-content;
  background: #fff;
  padding: 25px 25px 30px 25px;
  border-radius: 15px;
  box-shadow: 1px 7px 14px -5px rgb(0 0 0 / 15%);
  text-align: center;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 99999;
}
::selection {
  color: #fff;
  background: #FCBA7F;
}
.slwrapper img {
  max-width: 90px;
}
.slcontent header {
  color: black;
  font-size: 25px;
  font-weight: 600;
}
.slcontent {
  margin-top: 10px;
}
.slcontent p {
  color: #858585;
  margin: 5px 0 20px 0;
}
.slcontent .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.buttons button {
  padding: .5rem 1rem;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  color: #1863dc;
  border: 1px solid #1863dc;
  transition: all 0.3s ease;
}
.buttons button:hover {
  transform: scale(0.96);
}
.buttons .item {
  margin: 0 10px;
}
.buttons a {
  color: #FEDD01;
}
.textbox {
  color: #858585;
  height: fit-content !important;
  padding: 1em;
  text-align: left;
}
/* toggle slide */

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

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

.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: .4s;
  transition: .4s;
}

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%;
}