/* Morph Button: Default Styles */

.morph-button {
	position: relative;
	display: block;
	margin: 0 auto;
}

.morph-button > button {
	position: relative;
	border: none;
	color: #fff;
	overflow: hidden;
}

.morph-button >button:focus {
  box-shadow: 0 !important;
}

.morph-button.open > button {
	pointer-events: none;
}


.morph-content {
	pointer-events: none;
}

.morph-button.open .morph-content {
	pointer-events: auto;
}

/* Common styles for overlay and modal type (fixed morph) */
.morph-button-fixed,
.morph-button-fixed .morph-content {
	width: 135px;
	height: 50px;
}

.morph-button-fixed > button {
	/* width: 100%; */
	/* height: 100%; */
	-webkit-transition: opacity 0.1s 0.5s;
	transition: opacity 0.1s 0.5s;
}

.morph-button-fixed.open > button {
	opacity: 0;
	-webkit-transition: opacity 0.1s;
	transition: opacity 0.1s;
}

.morph-button-fixed .morph-content {
	position: fixed;
	opacity: 0;
	-webkit-transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
	transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
}

.morph-button-fixed.open .morph-content {
	opacity: 1;
}

.morph-button-fixed .morph-content > div {
	visibility: hidden;
	height: 0;
	opacity: 0;
	-webkit-transition: opacity 0.1s, visibility 0s 0.1s, height 0s 0.1s;
	transition: opacity 0.1s, visibility 0s 0.1s, height 0s 0.1s;
}

.morph-button-fixed.open .morph-content > div {
	visibility: visible;
	height: auto;
	opacity: 1;
	-webkit-transition: opacity 0.3s 0.5s;
	transition: opacity 0.3s 0.5s;
}

.morph-button-fixed.active > button {
	z-index: 2000;
}

.morph-button-fixed.active .morph-content {
	z-index: 1900;
}


.morph-button-overlay .morph-content {
	overflow: hidden;
	background: #e85657;
}

.morph-button-overlay.open .morph-content {
	top: 0 !important;
	left: 0 !important;
	width: 100%;
	height: 100%;
}

/* Morph Button Style: Modal */
.morph-button-modal::before {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 800;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
	pointer-events: none;
}

.morph-button-modal.open::before {
	opacity: 1;
	pointer-events: auto;
}

.morph-button-modal.active::before {
	z-index: 1800;
}

.morph-button-modal .morph-content {
	overflow: hidden;
	-webkit-transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
	transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
}

.morph-button-modal.open .morph-content {
	top: 50% !important;
	left: 50% !important;
	margin: -210px 0 0 -300px;
	width: 600px;
	height: 450px;
	-webkit-transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
	transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
}

/* Colors and sizes for individual modals */
.morph-button-modal-btn {
	text-align: center;
}

.morph-button-modal-btn > button {
	background: transparent;
	color: var(--pry-color);
	font-weight: bold;
	padding: 10px;
	height: 100%;
}
.morph-button-modal-btn .morph-content {
	background-color: var(--pry-light-color);
}


.morph-button-modal-btn::before {
	background: rgba(0,0,0,0.5);
}

/* Helper classes */
.noscroll {
	overflow: hidden;
}

/* No JS fallback: let's hide the button and show the content */
.no-js .morph-button > button {
	display: none;
}

.no-js .morph-button {
	margin: 10px 0;
	float: none;
}

.no-js .morph-button,
.no-js .morph-button .morph-content,
.no-js .morph-button .morph-content > div {
	position: relative;
	width: auto;
	height: auto;
	opacity: 1;
	visibility: visible;
	top: auto;
	left: auto;
	-webkit-transform: none;
	transform: none;
	pointer-events: auto;
}

.no-js .morph-button .morph-content .icon-close {
	display: none;
}

.no-transition {
	-webkit-transition: none !important;
	transition: none !important;
}

.icon-close {
	z-index: 100;
	display: block;
	overflow: hidden;
	width: 3em;
	height: 3em;
	text-align: center;
	line-height: 3;
	cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
	background: var(--pry-color);
	border-bottom-left-radius: 10px;
}

.content-style-text .clear-field::placeholder {
	font-weight: normal;
}
.content-style-text .clear-field{
	text-align: center;
	color: #000000;
	padding: 14px;
	font-weight: bold;
}
.content-style-text .clear-field {
	background-color: var(--pry-dark-color);
	border: 2px dashed var(--pry-color);
	background: rgba(255, 255, 255, 0.8);
}
.content-style-text .clear-field, .content-style-text .btn-pry {
	text-transform: uppercase;
	width: 60%;
}

.content-style-text {
	padding: 50px;
	text-align: left;
	z-index: 1000;
}

.content-style-text  h2 > i, .content-style-text h2 > img {
	padding: 20px 22px;
	border-radius: 100%;
	background: #fff;
}

.content-style-text .icon-close {
	top: 0;
	right: 0;
}

.morph-content .alert-warning {
	bottom:0;
	border-radius: 0;
	text-align: center;
}
.digits {
	display: flex;
	gap: 5px;
}

@media screen and (max-width: 991px) {
	.morph-button-modal-btn > button {
		height: auto;
		text-align: center;
		padding: 10px 17px;
		background-color: var(--pry-color);
		color: #fff;
	}
	.lines li:not(:last-child) {
		border-right: none !important;
	}
}
@media screen and (max-width: 600px) {
	.morph-button-modal.open .morph-content {
		top: 20% !important;
		left: 0% !important;
		margin: 0;
		width: 100%;
		overflow-y: scroll;
		-webkit-transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
		transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
	}
  .morph-button-fixed {
    height: auto;
  }
}

@media screen and (max-width: 425px) {
  .morph-button-fixed > button {
    font-size: 13px;
  }
	.content-style-text .clear-field, .content-style-text .btn-pry {
		width: 100%;
		text-align: center;
	}
	.content-style-text {
		padding: 30px;
	}
}
