/* --- Popup --- */
.popup{
  border-radius: 5px;
  display: none;
  width: 100%;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,.98);
  z-index: 1000;

    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}

@media(min-width: 600px){
  .popup{
    width: 600px;
  }
}

.popup .popup__content{
  position: relative;
}

.popup .popup__content .popup__container{
  position: relative;
  width: 100%;
  top: 30px;
  height: 320px;
  padding: 20px;
  box-sizing: border-box;
  text-align: justify;
  overflow-y: auto;
/*  box-shadow: inset 0 -10px 15px 0 rgba(0,0,0,0.1);*/
}

.popup .popup__content .popup__container h2{
    text-align: center;
    font-family: sans-serif;
    font-size: 15pt;
    font-weight: bold;
    margin-top: 0;
}

.popup .popup__content .popup__footer{
  position: relative;
  width: 100%;
    height: 100px;
    text-align: center
}

.popup .popup__content .popup__footer img{
    width: auto;
    width: 100%;
    position: relative;
}

.popup .popup__content .popup--close{
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent;
  border: none;
  font-size: 20px;
  height: 30px;
  width: 30px;
  font-variant: all-small-caps;
  color: rgba(0,0,0,0.7);
  outline: none !important;
  font-weight: bold;
  cursor: pointer;
}
