/* CSS code icons from http://codepen.io/jthiller/pen/icDtL */

.image-hits {
    position: absolute;
    bottom: 15px;
    right: 0;
    background: url(../img/transparent/black-0.6.png);
    background: rgba(0, 0, 0, .6);
    color: #fff;
    padding: 2px 5px;
    margin: 0;
    font-size: 9px;
}

.circleOut {
  position: relative;
  margin: 0 auto;
  padding: 0;
  /*width: 0.2em;
  height: 0.4em;*/
  /*width: 4.49px;
  height: 8.4px;*/
  border: 0.2em solid #FFFFFF;
  border-radius: 100%;
  background-color: #2196f3;
  /*width: 1em;
  height: 1em;*/
  width: 20px;
  height: 20px;
  /*width: 0;
  height: 0;*/
}

.circleOut:before {
  position: relative;
  /*top: -.8em;*/
  /*left: -1em;*/
  /*top: -0.5em;
  left: -0.5em;*/
  top: -16px;
  left: -16px;
  display: block;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  margin: 0 auto;
  width: 4em;
  height: 4em;
  border: 0.5em solid #42a5f5;              
  border-radius: 100%;
  content: "";
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: forwards;
          animation-direction: forwards;
}
.circleOut:after {
  position: absolute;
  /*top: -.8em;
  left: -1em;*/
  /*top: -0.5em;
  left: -0.5em;*/
  top: -16px;
  left: -16px;
  display: block;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  margin: 0 auto;
  width: 4em;
  height: 4em;
  border: 0.2em solid #64b5f6;
  border-radius: 100%;
  content: "";
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: -.5s;
          animation-delay: -.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: forwards;
          animation-direction: forwards;
}

.circlePink { background-color: #e91e63; }
.circlePink:before { border: 0.5em solid #f06292; }
.circlePink:after { border: 0.2em solid #f06292; }

.circleGreen {  background-color: #4caf50; }
.circleGreen:before { border: 0.5em solid #81c784; }
.circleGreen:after { border: 0.2em solid #81c784; }

.circleOrange {  background-color: #ff9800; }
.circleOrange:before { border: 0.5em solid #ffb74d; }
.circleOrange:after { border: 0.2em solid #ffb74d; }

.circleBrown {  background-color: #795548; }
.circleBrown:before { border: 0.5em solid #a1887f; }
.circleBrown:after { border: 0.2em solid #a1887f; }

.circleRed {  background-color: #f44336; }
.circleRed:before { border: 0.5em solid #e57373; }
.circleRed:after { border: 0.2em solid #e57373; }

.circlePurple {  background-color: #9c27b0; }
.circlePurple:before { border: 0.5em solid #ba68c8; }
.circlePurple:after { border: 0.2em solid #ba68c8; }

@-webkit-keyframes fadeOut {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

.cursor_pointer {
  cursor: pointer;
}

#bottomsheet .ui-panel-inner
{
  padding :0px;
}