﻿

/*******   SWITCH GRID VIEW- start *******/
/* The switch - the box around the slider */
.Grid_switch {
   position: relative;
   top: 0px; 
   left: 0px; 
   display: inline-block;
   width: 44px;
   height: 20px;
   margin: 4px 54px ; 
   color: white;
   font-size: 10pt;
   font-weight: 400;
}

.Grid_label {
  position: absolute;
  top: 0;
  margin-left: 50px;
}

/* Hide default HTML checkbox */
.Grid_switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.Grid_slider {
  z-index: 700;
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.Grid_slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .Grid_slider {
  background-color: #398ED9;
}

input:disabled + .Grid_slider {
  background-color: #C0C0C0;
}
input:focus + .Grid_slider {
  box-shadow: 0 0 1px #398ED9;
}

input:checked + .Grid_slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.Grid_slider.round {
  border-radius: 20px;
}

.Grid_slider.round:before {
  border-radius: 50%;
}
/*******   SWITCH - end *******/




@media (max-width: 1300px) {

 

}

@media (max-width: 1100px) {


}

@media (max-width: 900px) {


}

@media (max-width: 700px) {


}

@media (max-width: 580px) {



}