﻿/*
.js-dialogtooltip {
	position: absolute;
    top: 0;
    left: -15em;
    width: 20em;
}
*/

.medias-sociaux.popup {
	margin-top: 2px;
    float: left;
}

.medias-sociaux.popup .medias-sociaux-lien {
    width: auto;
    height: auto;
    padding: 5px;
    float: left;
}

.simple-tooltip-container {
    position: relative;
    float: left;
    width: 100%;
}
 
.simple-tooltip-tooltip {
  position: absolute;
  z-index: 666;
  top: -6em;
  right: 0;
  width: 23em;
  
  background: #ececec;
  background: rgba (255, 255, 255, .9);
  border: 1px solid #0181a1;
  border-radius: .5em;
  padding: 1em;
  text-align: left;
}
.simple-tooltip-tooltip__title {
  margin: 0;
  line-height: 1;
}
.simple-tooltip-tooltip p {
  font-size: 1em;
}
.simple-tooltip-tooltip__close {
  float: right;
  /** fix typo inputs **/
  font-family: inherit;
  font-size: 1em;
  margin-top: -5px;
  /*background: #882525;
  color: #000;
  border-radius: 1em;*/
    background: none;
    border: none;
}



/* it can be easily adapted in media-queries for tablets/mobile */

/* for this example: tablets */
@media (max-width: 479px) {
	.simple-tooltip-tooltip {
		right: auto;
		left: 0;
		background: #fff;
	}
  
}