[id^="sign_"]:not([id$="Title"], [id$="_title"]) {
	display: none;
}

#light-signup,#user_information,#bottle_verification,#validperioddiv
 {
	display: none;
}

.jquery_popup {
	margin: auto;
	position: relative;
	display: none;
}

.jquery_popup,
.modal-content {
	min-width: 450px;
	background: #fff;
	border-radius: 16px;
	box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0) 0px 1px 2px;
	max-width: 90%;
	width: min-content;
}

.popup-head,
.modal-header {
	padding: 12px 16px;
	border-bottom: 1px solid #ddd;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	font-size: 1.125rem;
	font-weight: var(--fw-bold);
	color: var(--primary-color);
	border-radius: 16px 16px 0 0;
	background: rgba(from var(--primary-color) r g b / 0.1);
}
.modal-header {
	flex-direction: row-reverse;
}
.modal-body {
	display: inline-block;
}
.modal-body::after {
	content: " ";
  	clear: both;
}
.modal-body::before {
	display: table;
	content: " ";
}

.modal-header::before, .modal-header::after {
	display: none;
}


.popup-head h4,
.popup-head h2,
.modal-header h2 {
	font-size: inherit !important;
	line-height: inherit !important;
	font-weight: inherit;
	margin: 0 10px 0 0;
}

.popup-heading {
	font-size: 2rem;
}

.popup-head button.close,
.modal-header button.close {
	height: 34px;
	width: 34px;
	border-radius: 50%;
	font-size: 24px;
	background: none;
	border: none;
	cursor: pointer;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.popup-head button.close svg {
	width: 12px;
	height: 12px;
	fill: inherit;
}

.popup-head button.close:hover,
.modal-header button.close:hover {
	opacity: 1;
	color: #fff;
	fill: #fff;
	background: var(--primary-color);
}

.popup-head .actions {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: var(--fs-body);
}

.popup-body {
	max-height: 450px;
	overflow: auto;
	margin: 15px 0;
  	padding: 0 15px;
}


.popup-footer,
.modal-footer {
	border-top: 1px solid #ddd;
	text-align: center;
	margin-top: 12px;
	padding: 16px;
	border-radius: 0 0 16px 16px;
	background: #f5f5f5;
	display: flex;
	align-content: center;
	justify-content: center;
	gap: 5px;
}

.popup-head button.close {
	font-size: 22px;
	opacity: 0.5;
}

.popup-wrapper {
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	flex-direction: column;
	position: fixed;
	top: 0;
	overflow: auto;
	inset: 0;
	background: rgba(0, 0, 0, 0.3); /* overlay */
}

.popup-wrapper::after,
.popup-wrapper::before {
	content: "";
	display: inline-block;
	margin: 20px;
}
.popup-head .actions *[onclick],
.popup-head .actions a[href]:not([href="#"]) {
    background: #F8F8F8;
    border: 1px solid var(--primary-color) !important;
    border-radius: 4px;
    color: var(--primary-color);
    padding: 5px 10px;
    display: inline-block;
    cursor: pointer;

    &:hover,
    &:focus,
    &:focus-visible,
    &:active {
        background: var(--primary-color);
        color: #fff;
        border: 1px solid var(--primary-color);
    }
}

#sign_up_tp {
	width: 100%;
}
#sign_up_tp .popup-body {
	max-height: none;
}

@media screen and (max-width: 1300px) {
	.jquery_popup {
		max-width: 95%;
	}
}

@media (min-width: 320px) and (max-width: 767px) {

	.popup-head,
	.modal-header {
		padding: 12px;
		font-size: var(--fs-body);
		;
	}

	.jquery_popup {
		min-width: 320px;
	}
}