.d-none{
  display: none!important;
}
.aclr{
  clear: both;
}

/*Different buttons*/
.rjBtn{
  cursor: pointer;
  opacity: 0.8;
  transition: 0.1s ease-in-out;
}
.rjBtn:hover{
  opacity: 1;
}
.button-div{
  width: 100%;
}

.nbtn-fr{
  padding: 5px 8px;
  background-color: #006fce;
  float: right;
  outline: none;
  border:none;
  color: #fff;
  border-radius:5px;
}

/* ------------For On Off Button---------*/

.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}

.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: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .2s;
  transition: .2s;
}

input:checked + .slider {
  background-color: #47a4c6;
}

input:focus + .slider {
  box-shadow: 0 0 1px #47a4c6;
}

input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/*Box radio btn*/

.boxed label {
  display: inline-block;
  width:30px;
  height:30px;
  text-align: center;
  border: solid 1px #ccc;
  transition: all 0.3s;
  font-size: 12px;
  line-height: 30px;
  cursor: pointer;
}

.boxed input[type="radio"] {
  display: none;
}

.boxed input[type="checkbox"] {
  display: none;
}

.boxed input[type="radio"]:checked + label {
  background: #7594ce;
  border: solid 1px #7594ce;
  color:#fff;
  cursor: pointer;
}


.boxed input[type="checkbox"]:checked + label {
  background: #7594ce;
  border: solid 1px #7594ce;
  color:#fff;
  cursor: pointer;
}

/*loading Animation*/

.loading-div {
  font-size: 30px;
}

.loading-div i{
  animation-name: rotate;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}



/*Popup Style*/

.popUp {
  width: 100%;
  height: 100vh;
  background-color: #000000c5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
}

.popUpB{
  width: 60%;
  max-height: 80vh;
  overflow-y: scroll;
  margin:10vh auto;
  padding: 10px;
  box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.5);
  background-color: #fff;
  box-sizing: border-box;
  animation-name: scaleZtO;
  animation-duration: 0.2s;
}

.popUpH{
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}

.cPopUp{
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99999999999;
  background-color: #d05f5f;
  outline: none;
  border:#d05f5f;
  transition: 0.2s ease-in-out;
  color: #fff;
  cursor: pointer;
}

.cPopUp:hover{
  background-color: #5f1d1d;
}

/*//Search Ul LI*/

.searchUl{
  width: 100%;
  list-style-type: none;
  background: #fff;
  box-shadow: -1px 1px 3px 0px rgba(0, 0, 0, 0.32);
  padding: 0px;
}

.searchUl li{
  width: 100%;
  padding: 5px;
  transition: 0.2s ease-in-out;
  background: #fff;
  cursor: pointer;
}

.searchUl li:hover{
  background: #dcdcdc;
}


/*all Animation*/

/*rotate Div*/
@keyframes rotate{
  100% { transform: rotate(360deg)};
}

/*Scale Zero to one*/
@keyframes scaleZtO{
  0% { transform: scale(0)};
  70% { transform: scale(1.5)};
  100% { transform: scale(1)};
}

.sSection{
  width: 100%;
  margin-bottom: 15px;
  font-family: arial;
}