/*   HighFinesse Website /// Iteration 01 /// February 2019   */


/*   M E S S A G E R  */

.messager-container {
  display: none;
  position: fixed;
  width: 280px;
  height: 80px;
  top: 60px;
  right: -500px;
  text-align: left;
  background-color: rgba(217, 220, 220, 0.75);
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  opacity: 0.0;
  z-index: 1000;
}

.messager-on {
  right: 2.0vw;
  opacity: 1.0;
}

.messager-off {
  right: -500px;
}

.messager-info-icon {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 45px;
  height: 60px;
}

.messager-info-icon img {
  height: 100%;
}

.messager-close-icon {
  position: absolute;
  right: 11px;
  top: 11px;
  width: 16px;
  height: 16px;
  background: url(../img/icons_navigation/icon_nav_close_message_pos.svg) no-repeat center center/cover;
}

.messager-arrow {
  position: absolute;
  right: 85px;
  top: 2px;
  width: 15px;
  height: 15px;
  background: url(../img/icons_navigation/icon_arrow_background.png) no-repeat center center/cover;
  opacity: 0.0;
}

.messager-arrow-up {
  top: -15px;
  opacity: 0.75;
}

.messager-text-container {
  position: absolute;
  left: 70px;
  top: 12px;
  width: 160px;
  height: 60px;
  font-family: 'sourcesanspro-regular';
  font-size: 12px;
  letter-spacing: 0.055em;
  line-height: 125%;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  color: rgba(0,0,0, 1.0);
}


/*   M E D I A  Q U E R Y /// Show only on desctop devices   */

@media only screen and (min-width: 1170px) {
  .messager-container {
    display: block; }
}


/*   A N I M A T I O N   */

.trans-cubic-750 {
	-webkit-transition: all 0.75s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	-moz-transition: all 0.75s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	-ms-transition: all 0.75s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	-o-transition: all 0.75s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	transition: all 0.75s cubic-bezier(0.87, -0.41, 0.19, 1.44);
}
