/**
* @license lyradesigns.com v1
* Updated: Dec 17, 2014
* Add pin buttons to images
* Copyright (c) 2014 Jonas Goslow - LYRA
* Released under the MIT license
* https://github.com/timmywil/jquery.panzoom/blob/master/MIT-License.txt

Customize these however you like.

*/

.imgPinWrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
  -webkit-transition:all .25s ease-in-out;
  -moz-transition:all .25s ease-in-out;
  -o-transition:all .25s ease-in-out;
  transition:all .25s ease-in-out;
}

.imgPinWrap .pin {
  opacity: 0;
  position: absolute;
  display: block;
  width: 100px;
  height: 100px;
  line-height: 20px;
  border-radius: 50% 50%;
  -moz-border-radius: 50% 50%;
  -webkit-border-radius: 50% 50%;
  margin: -50px 0 0 -50px !important;
  text-align:  center;
  z-index: 11;
  -webkit-transition:all .25s ease-in-out;
  -moz-transition:all .25s ease-in-out;
  -o-transition:all .25s ease-in-out;
  transition:all .25s ease-in-out;
  background: #a7dce2;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding-top: 30px;
  border: 2px solid white;
}
.imgPinWrap .pin:after {
  content: 'PIN THIS IMAGE!';
  color: white;
}
.imgPinWrap .pin img {
  display: none;
}
.imgPinWrap .pin:hover {
  box-shadow: 0 0 5px #fff;
  background: #f2cd5b;
  text-decoration: none;
}

.imgPinWrap:after {
  position: absolute;
  top:0;
  right:0;
  left:0;
  z-index: 10;
  bottom:0;
  display:block;
  content: '';
  -webkit-transition:all .25s ease-in-out;
  -moz-transition:all .25s ease-in-out;
  -o-transition:all .25s ease-in-out;
  transition:all .25s ease-in-out;
}

.imgPinWrap:hover:after {
  background: rgba(255,255,255,.3);
}

.imgPinWrap:hover .pin {
  opacity: 1;
}

.imgPinWrap .left { left: 15px; }
.imgPinWrap .right { right: 15px; }
.imgPinWrap .bottom { bottom: 15px; }
.imgPinWrap .top { top: 15px; }
.imgPinWrap .center {
  left: 50%;
  top:50%;
}
