.entry-content-wrap {
	padding: 0 !important;
}

body::-webkit-scrollbar {
  width: 0.1em !important;
}

body::-webkit-scrollbar-thumb {
  background-color: transparent !important;
}

label {
	transition: all 0.3s ease-in-out !important;
}

#loader-min {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 1);
	z-index: 9999;
	display: block;
}

.container {
	height: 570px;
	background-color: #fff;
	width: 80%;
	max-width: 800px;
	padding: 50px !important;
	position: relative;
	overflow: hidden;
	box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.3);
	margin: 0 auto;
	
	font-size: 18px;
}

@media screen and (max-width: 991px) {
	.container {
		padding: 20px 15px !important;
		font-size: 16px;
	}
}

.target-form {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	justify-content: space-around;
}

.step-wrapper {
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.form-step {
	width: 100%;
	height: 100%;
	right: -100%;
	align-items: center;
	justify-content: space-around;
	display: flex;
	position: absolute;
}

.form-step.active {
	display: flex;
}

.step-title {
	font-weight: bold;
	font-size: 22px !important;
	text-transform: capitalize !important;
	text-align: center;
	margin: 0 !important;
	color: #000;
}

.step-subtitle {
	font-size: 16px !important;
	font-weight: bold;
	text-align: center;
	margin: -15px !important;
	color: #000;
}

.step-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	gap: 25px;
	height: 60%;
}

@media screen and (max-width: 991px) {
	.step-title {
		font-size: 17px !important;
	}
}

input[type="radio"], input[type="checkbox"] {
  display: none;
}

.button-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 25px;
}
#next {
	padding: 10px 20px;
    background: #2B6CB0;
    border-radius: 10px;
    font-weight: 900;
    font-size: 20px;
    line-height: 150%;
	text-align: center;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
	border: none;
	outline: none;
	min-width: 160px;
	cursor: pointer;
}

.btn-disable {
	background: #96add9 !important;
	cursor: default !important;
}

.input-wrapper {
	margin: 0 1rem;
	position: relative;
	width: 92%;
	padding: 5px 7px;
	border-radius: 5px;
	border: 1px solid #ccc;
	display: flex;
	align-items: center;
	gap: 5px;
}
@media screen and (max-width: 678px) {
	.input-wrapper {
		align-items: flex-start;
		flex-direction: column;
	}
}
#site-buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: 100%;
}
.input-wrapper input {
	min-width: 150px;
}
.site-link {
	border-radius: 10px;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: bold;
	padding: 2px 10px;
	background: #2B6CB0;
	text-align: center;
	color: #fff;
	cursor: pointer;
	width: 80%;
	max-width: 280px;
}
.selected-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	flex-shrink: 0;
	max-width: 100%;
}
.selected-item {
	position: relative;
	border-radius: 5px;
	height: 100%;
	padding: 5px 10px;
    font-size: 20px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis !important;
	background: #2B6CB0;
	color: #fff;
	max-height: 50px;
}
.selected-item span {
	display: none;
	z-index: 2;
	background: #2B6CB0;;
	font-size: 20px;
	position: absolute;
	width: 100%;
	height: 100%;
	text-align: center;
	left: 50%;
	top: 50%;
	cursor: pointer;
	color: #fff;
	transform: translate(-50%, -50%);
}
.selected-item:hover span {
	display: inline-block;
}
.searchbar {
	border: none !important;
	outline: none;
	transition: all .1s;
	transition-delay: .1s;
	width: 100%;
}
.input-wrapper img {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	right: 10px;
	width: 25px;
	transition: all .1s;
	transition-delay: .1s;
}
.searchbar::placeholder {
	opacity: .3;
}

.js-pop-up-error-validation {
	position:fixed;
	top:70px;
	text-align:center;
	width:100%;
	z-index:99999;
	opacity:0;
	pointer-events:none;
	left: 50%;
  	transform: translate(-50%);
}
.js-pop-up-error-validation > span {
	display:inline-block;
	background-color: #2B6CB0;
	padding:1rem 1.5rem;
	border-radius:0.5rem;
	font-size:0.8rem;
	color:white;
	font-weight:600;
	margin:0;
}
@media (min-width:560px) {
	.js-pop-up-error-validation > span { 
		font-size:1rem 
	}
}
@media (min-width:900px) {
	.js-pop-up-error-validation > span {
		font-size:1.2rem
	}
}
@media (min-width:1400px) {
	.js-pop-up-error-validation > span {
		font-size:1.4rem
	}
}

