/**
 * 2021 SOONECT
 *
 * NOTICE OF LICENSE
 *
 * @author    SOONECT <contact@soonect.com>
 * @copyright 2021 SOONECT
 * @license   GNU General Public License version 2
 *
 * You can not resell or redistribute this software.
 */

.pop-up{
  height: 100vh;
  width: 100vw;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
}

.background{
  height: 100vh;
  width: 100vw;
  position: fixed;
}

.pop-up_fenetre{
  position: absolute;
  padding: 40px;
  max-width: calc(100vw-50px);
  min-height: calc(100vh-50px);
  margin-top: 50vh;
  margin-left: 50vw;
  transform: translate(-50%,-50%);
}

.texte_pop-up{
  padding: 20px;
}

.closebtn{
  position: absolute;
  top: 3px;
  right: 10px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.7s;
  font-size: 40px !important;
  user-select: none;
}

.closebtn:hover{
  transform: rotateZ(45deg);
  color: #ff0000;
}