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

/* Hide default HTML checkbox */
.switchslide input {display:none;}

/* 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: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:checked + .slider_red {
  background-color: red;
}

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

/* Separator */

span.separator{
	background:#d4d4d4;
	height:1px;
	width:100%;
	float:left;
	margin-bottom:5px;	
}

/* Galery */

.photo_container{
	overflow:hidden;
	margin-bottom:10px;
	/*width: 162px;
    height: 162px;
	*/
	width: 131px;
    height: 131px;
    float: left;
    border: 1px solid black;
    padding: 5px;
    display: block;
    background: white;
}

.photo_container a{
	text-align: center;
    float: left;
    width: 120px;
    height: 120px;
    /*width: 150px;
    height: 150px;*/
    display: block;
    overflow: hidden;	
	position: relative;
}
.photo_container a img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.photo_present{
	text-align:center;
}
.photo_present img{
	max-width:80%;
	max-height:300px;
}
.photo_add{
	width:100%;
	text-align:right;
	float:left;
}
.more_height a img{
	max-height:100%;
	max-width: none;
}
.more_width a img{
	max-width:100%;
	max-height: none;
}