#ll-popup-overlay {
    position: fixed;
	z-index: 9999999;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(20, 20, 20, 0.8);
    display: none;
}

#ll-popup-container {
    position: relative;
    width: 98%;
    height: 96%;
	max-width: 1095px;
	border-radius: 9px;
	border-color: #0b4d3d;
	border-width: 6px 8px 8px 7px;
	border-style: solid;
	box-shadow: 0px 0px 0px #FFFFFF;
}

#ll-popup-container iframe {
	height: 100%;
	max-height: 100%;
    border-radius: 5px;
}

#ll-popup-close {
	position: absolute;
    top: 35px;
    right: auto;
	left: 35px;
    width: 1em;
    height: auto;
    background: #ffffff;
    color: #666666;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Lexend', sans-serif;
    z-index: 100000;
    font-size: 35px;
    line-height: 1em;
    padding: 5px 7px 7px 7px;
}

#ll-popup-close svg {
    fill: #141414;
}

.activatePopupBtn {
    cursor: pointer;
}

@media (max-width: 767px) {
	#ll-popup-container {
		height: 99%;
		width: 99%;
		border-radius: 0px;
		border-width: 6px;
	}
}

@media (min-width: 580px) {
	#ll-popup-close {
		padding: 0 4px;
	}	
}

@media (max-width: 580px) {
	#ll-popup-container {
		padding: 0px;
		margin: 0px;
	}
	
	#ll-popup-close {
		top: 3px;
		left: 3px;
	}
}