
.hidden{
    visibility: hidden;
}

.panels{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    z-index: 100;
}

.close_btn{
    width: 20px;
    height: 20px;
    background: linear-gradient(rgb(204, 20, 20), rgb(235, 38, 38));
    border-radius: 50%;
    border: none;
    outline: none;
}

.close_btn:hover{
    width: 20px;
    height: 20px;
    background: linear-gradient(rgb(255, 0, 0), rgb(235, 38, 38));
    border-radius: 50%;
    border: none;
}

.modal-dialog {
    max-width: 100%;
}

@media (min-width: 600px) {
    .modal-dialog {
      max-width: 80%;
    }
}

.xsm_fnt{
  font-size: 12px;
}

/*------scroll bar---------------------*/

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
::-webkit-scrollbar-thumb {
  background: #6777EF;
  border: 0px none #ffffff;
  border-radius: 5px;
  width: 5px;
}
*:hover::-webkit-scrollbar {
  transition: 1s;
}
::-webkit-scrollbar-thumb:hover {
  background: #3abaf4;
}
::-webkit-scrollbar-thumb:active {
  background: linear-gradient(
    #1732fa,
    #394eea,
    #1732fa
  );
}
::-webkit-scrollbar-track {
  background: transparent;
  border: 0px none #ffffff;
  border-radius: 50px;
}
::-webkit-scrollbar-track:hover {
  background: transparent;
}
::-webkit-scrollbar-track:active {
  background: transparent;
}
::-webkit-scrollbar-corner {
  background: transparent;
}

/*------scroll bar---------------------*/

/* ------Toggle---------------------*/

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

/* 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: 17px;
  width: 17px;
  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%;
}

.dt-button{
  background-color: rgb(19, 100, 138);
  color: white;
}

.icon{
  background-color: #6777EF;
  background: #6777EF;
}