.image{
  width:300px;
  /*float:left;*/
}
.element_block{
  display:block;
}
.element_none{
  display:none;
}
#move_to_left{
  height: 300px;
  width:50px;
  float:left;
}
#move_to_right{
  height: 300px;
  width:50px;
  float:left;
}
#move_to_right img{
  width:30px;
  padding-left:10px;
  padding-top:40px;
}
#move_to_left img{
  width:30px;
  padding-left:10px;
  padding-top:40px;
}

/* картинка на странице */
.minimized {
  width: 300px;
  cursor: pointer;
  border: 1px solid #FFF;
}

.minimized:hover {
  border: 1px solid yellow;
}

/* увеличенная картинка */
#magnify {
  display: none;

  /* position: absolute; upd: 24.10.2016 */
  position: fixed;
  //max-width: 350px;
  height: 100%;
  z-index: 9999;
}

#magnify img {
  //width: 82%;
  height:100%;
}

/* затемняющий фон */
#overlay {
  display: none;

  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.5;
  z-index: 9990;
}

/* кнопка закрытия */
#close-popup {
  width: 30px;
  height: 30px;

  background: #FFFFFF;
  border: 1px solid #AFAFAF;
  border-radius: 15px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
}

#close-popup i {
  width: 30px;
  height: 30px;
  background: url(http://anr-sev.ru/images/images/cross.png) no-repeat center center;
  background-size: 16px 16px;
  display: block;
}

@keyframes rota {
  25% { transform: rotate(360deg); }
}

#close-popup:hover {
  animation: rota 4s infinite normal;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* кнопка вправо */
#div_move_to_right_2 {
  width: 30px;
  height: 30px;

  background: #FFFFFF;
  border: 1px solid #AFAFAF;
  border-radius: 15px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 15px;
}

#div_move_to_right_2 i {
  width: 30px;
  height: 30px;
  background: url(http://anr-sev.ru/images/images/right.png) no-repeat center center;
  background-size: 16px 16px;
  display: block;
}

/* кнопка влево */
#div_move_to_left_2 {
  width: 30px;
  height: 30px;

  background: #FFFFFF;
  border: 1px solid #AFAFAF;
  border-radius: 15px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 15px;
}

#div_move_to_left_2 i {
  width: 30px;
  height: 30px;
  background: url(http://anr-sev.ru/images/images/left.png) no-repeat center center;
  background-size: 16px 16px;
  display: block;
}