.popup-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 250ms;
  visibility: hidden;
  opacity: 0;
  z-index: 9999999999;
}
.popup-overlay.active{
  visibility: visible;
  opacity: 1;
}

.popup {
  padding: var(--gap);
  background: #fff;
  border-radius: 0px;
  
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;

  transition: all 1s ease-in-out;
}

.popup p b{
	color: var(--color-primary);
}

[data-popup-close] {
  position: absolute;
  top: 0px;
  right: var(--gap);
  transition: none;      
  color: var(--color-p);
  font-size: 60px;
  line-height: 30px;
}
[data-popup-close]:hover {
  color: var(--color-primary);
}

#popup_login .content .actions{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 15px 0 25px 0;
  border-bottom: 1px solid lightgray;
  padding-bottom: 25px; 
}

#popup_login .content .actions .btn{
  background-color: var(--color-p);
  color:  #FFF;
}
#popup_login .content .actions .btn.active{
  background-color: var(--color-primary); 
  color:  #FFF;
}

.popup h4{
  padding-bottom: 15px;
  border-bottom: 1px solid lightgray;
}

@media screen and (max-width: 700px){
  .popup{
    width: 90vw;
    /*height: 90vh;*/
    overflow-y: auto;
    text-align: justify;    
  }
}