/*
  GAYLE PRINTZ THEME - MODALS & POPUPS STYLES
  ============================================================================
  This file contains custom popup and modal styles
  Last Updated: [Current Date]
  ============================================================================
*/

/* ============================================================================
   CUSTOM POP-UP STYLES
   ============================================================================ */

.custom-popup-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}
.custom-popup-modal.active {
    display: flex;
}
.custom-popup-inner {
	width: fit-content;
	height: fit-content;
	overflow: visible;
	position: relative;
	max-width: 90%
}
span.modal-close-icon,
.popup-close-icon {
  position: absolute;
  top: 10px;
  right: 0;
  cursor: pointer;
  width: 28px;
  background: transparent;
  z-index: 99;
  height: 28px;
}
span.modal-close-icon {
    top: 0 !important;
    right: 0 !important;
}
.icon_close {
    font-family: 'ETMODULES';
    font-size: 26px;
    color: #000;
	transition: all 0.2s ease-in-out;
}
span.icon_close:hover {
    box-shadow: 2px 2px 5px 2px #00000063;
}
p.share-modal-wrap {
    text-align: center !important;
}
.custom-popup-inner .et-l {
    max-height: 90vh;
    overflow: scroll;
    scrollbar-width: none;
    margin: auto;
    width: 600px;
    max-width: 100%;
    box-shadow: 8px 8px 8px 0px rgba(0, 0, 0, 0.25);
    border-top: 8px solid #000;
    border-bottom: 8px solid #000;
}
.custom-popup-modal{
	animation: popupmodal .2s linear;
}
.custom-popup-modal.active .et_pb_section {
    display: block !important;
}
.custom-popup-modal .et_pb_section {
    display: none !important;
}
@keyframes popupmodal {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
.logged-in .custom-popup-modal {
    height: calc(100vh - 30px);
    top: 30px;
}
