/* popup button */

.portal-popup-btn a {
    background: #b54c55;
    color: white !important;
    cursor: pointer;
}

/*Popup Styles*/
#portal-popup{
	display:none;
	background: rgba(0, 0, 0, 0.6);
	text-align: center;
	position: fixed;
	z-index: 900;
  	top: 0;
    bottom: 0;
	left: 0;
    right: 0;
}

#portal-popup .popup-inner {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: white;
    border: 1px solid black;
    padding: 30px;
    max-width: 50%;
}

@media screen and (max-width: 768px){
	#portal-popup .popup-inner{
		max-width: 90%;
	}
}

#portal-popup span.close {
    position: absolute;
    right: 2%;
    top: 5%;
	cursor:pointer;
	color: black;
    opacity: .5;
}


#portal-popup span.builder-message {
    display: none;
}

body.logged-in #portal-popup span.builder-message {
    display: block;
}

.portal-popup-btn.mobile {
    text-align: center;
}

.portal-popup-btn.mobile a {
    width: 100%;
    display: block;
    padding: 5px 0;
    font-weight: bold;
}

@media screen and (max-width: 992px){
	li#menu-item-2538.portal-popup-btn {
    display: none;
}
}