.annotationsAnim {
  visibility: hidden;
/*  pointer-events: none;
  z-index: 100;*/
}

.papersheet {
  position: absolute;
  color: white;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
  -webkit-transition: all 0ms;
  transition: all 0ms;
  width: 320px;
  height: 180px;  
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;

  border-radius: 5px;
  display: block;
  visibility: hidden;
  opacity: 1;
  pointer-events: none;
  z-index: 20;
}



.papersheet:hover {
  cursor: pointer;
}
.papersheet.opened {
  -webkit-transition: all 900ms;
  transition: all 900ms;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
}
.papersheet__trigger {
  display: inline-block;
  pointer-events: auto;
  margin-bottom: 1em;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;

  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
}

.opened .papersheet__trigger {
  /*background-color: #ECEFF1;*/
  top: 32px;
}
.opened .papersheet__trigger:before {
  content: " ";
}



.papersheet__trigger:active:before {
  background-color: #d5d5d5;
}
.papersheet__trigger:before {
  content: " ";
  background-color: rgba(200, 20, 20, 0.5);
  line-height: 30px;
  display: block;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  bottom: 50%;
  right: 50%;
  width: 32px;
  height: 32px;
  z-index: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
  -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.opened .papersheet__trigger:before {
  width: 3000px;
  height: 3000px;
  line-height: 3000px;
  -webkit-transition: all 2.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}
.papersheet__trigger-icon {
  fill: #37474F;
  vertical-align: bottom;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
  width: 1.8rem;
  height: 1.8rem;
}
.opened .papersheet__trigger-icon {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.papersheet__face-item {

  margin: 2em 1.5rem;
  z-index: 1;
  height: 100%;
  /*width: 100%;*/
  display: none;
  overflow: hidden;
  -webkit-animation-duration: 500ms;
          animation-duration: 500ms;
}

.opened .papersheet__face-item  p{
  margin-top: 5px;
  line-height: 24px;
  text-align: justify;
  text-indent: 2em;
}

.opened .papersheet__face-item  strong{
  margin-top: 32px;
  line-height: 32px;
  text-align: justify;
  text-align: center;
}



.papersheet__face-item:nth-child(2) {
  -webkit-animation-delay: 50;
          animation-delay: 50;
}
.papersheet__face-item:nth-child(3) {
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
}
.papersheet__face-item:nth-child(4) {
  -webkit-animation-delay: 150ms;
          animation-delay: 150ms;
}
.papersheet__face-item img {
  max-width: 100%;
}
.opened .papersheet__face-item {
  -webkit-transform: translateX(60%);
          transform: translateX(60%);
  display: block;

  margin-top: 50px;
}










.annotationsCont {
    /*pointer-events: none;*/
    
}

.annotationsCont i {
    position: relative;
    line-height: 32px;
    color: white;

}

.annotationsCont .tip {
    position: absolute;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    text-align: center;
    background-color: #214070;
    cursor: pointer;
    z-index: 1;
}

.annotationsCont .tipText {
    width: 200px;
    border-radius: 5px;
    line-height: 32px;
    text-align: center;
    color: white;
    visibility: hidden;
    background-color: #323232;
}

.annotationsCont .tipText p {
    padding: 0;
    margin: 0;
    line-height: 24px;
    text-align: center;
}