/* 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: 150px;
	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 > button {
	background: transparent;
	width: 145px;
}
.morph-button-modal-btn .morph-content {
	background-color: #fff;
}


.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;
}

.circ-1,
.circ-2,
.circ-3 {
	z-index: -1;
	position: absolute;
	background: rgba(0, 0, 0, 0.09);
	height: 300px;
	width: 300px;
	border-radius: 100%;
}

.circ-1 {
	top: -245px;
	left: 15%;
}

.circ-2 {
	bottom: -230px;
	left: 5%;
}

.circ-3 {
	right: -225px;
  top: 15%;
}
.content-style-text .clear-field::placeholder {
	color: #333;
	font-weight: normal;
}
.content-style-text .clear-field{
	text-align: center;
	color: #000000;
	padding: 14px 40px;
	font-weight: bold;
}
@media screen and (max-width: 600px) {
	.content-style-text .clear-field{
		padding: 14px 0;
	}
}
.content-style-text .clear-field {
	background-color: #fff;
	border: 2px dashed var(--pry-color);
	background: rgba(255, 255, 255, 0.8);
}
.content-style-text .clear-field, .content-style-text .btn-light {
	width: 50%;
}

.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;
}
.bnw {
	padding: 10px !important;
	height: 80px;
}

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

.morph-content .alert-warning {
	bottom:0;
	border-radius: 0;
	text-align: center;
}

@media screen and (max-width: 991px) {
	.morph-button-fixed, .morph-button-fixed .morph-content {
    width: 120px;
  }
}
@media screen and (max-width: 768px) {
	.morph-button-fixed,
	.morph-button-fixed .morph-content {
		width: 140px;
	}
}
@media screen and (max-width: 600px) {
	.morph-button-modal.open .morph-content {
		top: 20% !important;
		left: 0% !important;
		margin: 0 auto;
		right: 0;
		width: 95%;
		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;
	}
	.content-style-text {
		padding: 25px;
	}
	.content-style-text .clear-field, .content-style-text .btn {
		width: 80% !important;
	}
}

@media screen and (max-width: 425px) {
  .morph-button-fixed > button {
    font-size: 13px;
  }
	.morph-button-fixed, .morph-button-fixed .morph-content {
    width: 120px;
  }
	.content-style-text {
		padding: 20px 8px;
	}
	.circ-2 {
		display: none;
	}
	.content-style-text .clear-field, .content-style-text .btn-pry {
		width: 70% !important;
		text-align: center;
	}
}

.icon-16 {
	width: 16px;
}