.popup {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background-color: rgba(37, 37, 37, 0.5);
	transition: all 0.3s ease-in-out;
	opacity: 0;
	visibility: hidden;
}

.popup-open .popup.active {
	opacity: 1;
	visibility: visible;
}

.popup__wrapper {
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	height: 100%;
	padding: 30px 16px;
}

.popup-open .popup.active .popup__content {
	transform: translateY(0);
	display: block;
}

.popup-order-deliver-info .popup__content, .popup-free-deliver-info .popup__content, .popup-satisfaction-info .popup__content {
	max-width: 840px;
	width: 100%;
	max-height: calc(100% - 60px);
	overflow: auto;
}
.popup-forget .popup__content, .popup-delete .popup__content, .popup-answer .popup__content, .popup-add-comment .popup__content, .popup-add-review .popup__content, .popup-question .popup__content, .popup-order-deliver-info .popup__content, .popup-free-deliver-info .popup__content, .popup-satisfaction-info .popup__content {
	padding: 0;
}
.popup__content {
	position: relative;
	padding: 30px 40px;
	border-radius: 5px;
	background-color: #FEFEFE;
	min-width: 620px;
	width: 620px;
	transition: all 0.3s ease-in-out;
	transition-delay: 0.3s;
	transform: translateY(50px);
}

.popup-order-deliver-info .popup__head, .popup-free-deliver-info .popup__head, .popup-satisfaction-info .popup__head {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: #FEFEFE;
	margin-bottom: 0;
	padding-right: 80px;
}

.popup-forget .popup__head, .popup-delete .popup__head, .popup-answer .popup__head, .popup-add-comment .popup__head, .popup-add-review .popup__head, .popup-question .popup__head, .popup-order-deliver-info .popup__head, .popup-free-deliver-info .popup__head, .popup-satisfaction-info .popup__head {
	padding: 30px 40px;
	border-bottom: 0.10px dashed #B9C1C6;
}
.popup__head {
	position: relative;
	margin-bottom: 20px;
}

.popup-forget .popup__body, .popup-delete .popup__body, .popup-answer .popup__body, .popup-add-comment .popup__body, .popup-add-review .popup__body, .popup-question .popup__body, .popup-order-deliver-info .popup__body, .popup-free-deliver-info .popup__body, .popup-satisfaction-info .popup__body {
	padding: 30px 40px;
}

.popup__head h2, .popup__head h3, .popup__head h4 {
	color: #252525;
}

.popup-forget .popup__head .popup-close, .popup-delete .popup__head .popup-close, .popup-answer .popup__head .popup-close, .popup-add-comment .popup__head .popup-close, .popup-add-review .popup__head .popup-close, .popup-question .popup__head .popup-close, .popup-order-deliver-info .popup__head .popup-close, .popup-free-deliver-info .popup__head .popup-close, .popup-satisfaction-info .popup__head .popup-close {
	right: 4rem;
	top: 4rem;
}

.popup__head .popup-close {
	position: absolute;
	right: 0;
	top: -20px;
	width: 2rem;
	height: 2rem;
	padding: 0;
	background-color: transparent;
	border: none;
	outline: none;
	cursor: pointer;
}

.popup__head .popup-close:before {
	transform: rotate(-45deg);
}
.popup__head .popup-close:before, .popup__head .popup-close:after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 1.7rem;
	height: 0.1rem;
	background-color: #878787;
}

.popup__head .popup-close:after {
	transform: rotate(45deg);
}

.popup__body * {
	color: #111111;
}

.popup__body a {
	text-decoration: underline;
}

.popup__body strong {
	color: #252525;
}

.popup figure.wp-block-table {
	margin-left: 0;
	margin-top: 0;
	margin-bottom: 0;
	margin-right: 0;
}


.table, .popup .wp-block-table table {
	position: relative;
	width: 100%;
	border-collapse: collapse;
	background-color: #F9F8F5;
	font-size: 1.40px;
	line-height: 20px;
	font-weight: 400;
	max-width: 620px;
}

.popup figure.wp-block-table th {
	color: #575757;
	border-bottom: 0.10px dashed #B9C1C6;
}
.popup figure.wp-block-table td, .popup figure.wp-block-table th {
	text-align: center;
	padding: 20px;
}

.popup__body h2:not(:last-child), .popup__body h3:not(:last-child), .popup__body h4:not(:last-child), .popup__body h5:not(:last-child), .popup__body h6:not(:last-child) {
	margin-bottom: 10px;
}
.popup__body h2:not(:first-child), .popup__body h3:not(:first-child), .popup__body h4:not(:first-child), .popup__body h5:not(:first-child), .popup__body h6:not(:first-child) {
	margin-top: 40px;
}
.popup__body h2, .popup__body h3, .popup__body h4, .popup__body h5, .popup__body h6 {
	color: #252525;
}

.popup__body p {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 25px;
}

.popup__body ul {
	padding-left: 20px;
	list-style: none;
}

.popup__body ul li:not(:last-child) {
	margin-bottom: 10px;
}

.popup__body ul li {
	position: relative;
}

.popup__body ul li:before {
	content: "";
	position: absolute;
	width: 0.70px;
	height: 0.70px;
	background-color: #3BAC85;
	border-radius: 100%;
	left: -20px;
	top: 0.40px;
}

.popup__buttons {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding-top: 30px;
}

.popup__body .button {
	color: #fff;
}
.popup .button-secondary {
	color: #3BAC85 !important;
	background-color: transparent;
}
.popup__buttons .button {
	min-width: inherit;
	width: calc((100% - 20px)/2);
}

.language_popup .popup__head h3 {
	padding-right: 10px;
	font-size: 30px;
}

.popup__head .h3 {
	font-size: 22px;
	margin-bottom: 30px;
	font-weight: 600;
}

.popup__content {
	display: none;
}

@media (max-width: 991px) {
	.popup__body p {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.popup-order-deliver-info .popup__content, .popup-free-deliver-info .popup__content, .popup-satisfaction-info .popup__content {
		border-radius: 0;
		height: 100%;
		overflow: auto;
		max-height: 100%;
	}

	.popup__content {
		min-width: 100%;
		width: 100%;
	}

	.popup-order-deliver-info .popup__wrapper, .popup-free-deliver-info .popup__wrapper, .popup-satisfaction-info .popup__wrapper {
		padding: 0;
	}

	.popup-order-deliver-info .popup__head, .popup-free-deliver-info .popup__head, .popup-satisfaction-info .popup__head {
		position: sticky;
		top: 0;
		left: 0;
		z-index: 1;
		background-color: #FEFEFE;
		margin-bottom: 0;
		padding: 160x;
		padding-right: 40px;
	}

	.popup-order-deliver-info .popup__body, .popup-free-deliver-info .popup__body, .popup-satisfaction-info .popup__body {
		padding: 16px;
	}

	.popup-order-deliver-info .popup__head .popup-close, .popup-free-deliver-info .popup__head .popup-close, .popup-satisfaction-info .popup__head .popup-close {
		right: 16px;
		top: 2.20px;
	}
}
