
/*----------------------------------------------------
  .photo_detail
--------------------------------------------------- */
#photo_detail{
  position: relative;
  background: #84b555;
  text-align: center;
  padding: 120px 0;
}
#photo_detail .entry{
    width: 980px;
    margin: 0 auto;
    background: #FFF;
    padding: 40px 0;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(51, 51, 51, 0.2);
    box-shadow: 0px 10px 30px 0px rgba(51, 51, 51, 0.2);
}
#photo_detail .entry .inner{
  padding: 0 30px;
  text-align: left;
}
#photo_detail .entry ul{
  overflow: hidden;
}
#photo_detail .entry ul li{
  float: left;
  width: 48%;
  margin: 0 1%;
  margin-bottom: 20px;
}
#photo_detail .entry .profile{
  margin-top: 40px;
  margin: 0 30px;
  overflow: hidden;
  text-align: left;
  background: #eee;
  padding: 20px;
}
#photo_detail .entry .profile .profile_image{
  float: left;
  width: 20%;
}
#photo_detail .entry .profile .profile_text{
  float: right;
  width: 78%;
  text-align: left;
  font-size: 12px;
}
#photo_detail .entry .profile .profile_text a{
      text-decoration: underline;
    color: #0f4f34;
}
#photo_detail .entry .profile .profile_text small{
  font-size: 10px;
}

#photo_detail a.back{
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #0f4f34;
  color: #FFF;
  font-family: 'Lilita One',cursive;
  font-size: 18px;
  letter-spacing: 0.1em;
  width: 240px;
  text-align: center;
  line-height: 80px;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(51, 51, 51, 0.2);
    box-shadow: 0px 10px 30px 0px rgba(51, 51, 51, 0.2);
    -webkit-transition: all 0.5s 0s ease;
       -moz-transition: all 0.5s 0s ease;
        -ms-transition: all 0.5s 0s ease;
         -o-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
#photo_detail a.back:before{
    content: "\f104";
    margin-right: 20px;
    font-size: 28px;
    display: inline-block;
    vertical-align: -2px;
    font-family: FontAwesome;
}
#photo_detail a.back:hover{
  background: #FFF;
  color: #0f4f34;
}
@media only screen and (max-width: 768px) {
  #photo_detail{
    padding: 120px 0 40px;
  }
  #photo_detail .entry{
      width: auto;
      margin: 0 20px;
      padding: 20px 0;
  }
  #photo_detail .entry .inner{
    padding: 0 20px;
  }
  #photo_detail .entry ul{
    overflow: hidden;
  }
  #photo_detail .entry ul li{
    float: none;
    width: 100%;
    margin: 0%;
    margin-bottom: 20px;
  }
  #photo_detail a.back{
    display: block;
    position: static;
    bottom: 0;
    left: 0;
    margin: 0 10px;
    margin-top: 10px;
    background: #0f4f34;
    color: #FFF;
    font-family: 'Lilita One',cursive;
    font-size: 18px;
    letter-spacing: 0.1em;
    width: auto;
    text-align: center;
    line-height: 80px;
      -webkit-transition: all 0.5s 0s ease;
         -moz-transition: all 0.5s 0s ease;
          -ms-transition: all 0.5s 0s ease;
           -o-transition: all 0.5s 0s ease;
              transition: all 0.5s 0s ease;
  }
  #photo_detail a.back:before{
      content: "\f104";
      margin-right: 20px;
      font-size: 28px;
      display: inline-block;
      vertical-align: -2px;
      font-family: FontAwesome;
  }
  #photo_detail a.back:hover{
    background: #FFF;
    color: #0f4f34;
  }

  #photo_detail .entry .profile{
    margin-top: 40px;
    margin: 0 20px;
    padding: 20px;
  }
  #photo_detail .entry .profile .profile_image{
    float: none;
    width: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  #photo_detail .entry .profile .profile_text{
    float: none;
    width: 100%;
    text-align: left;
    font-size: 12px;
    word-break: break-all;
  }
}


