body,
html {
	overflow-x: hidden;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
}

.overlay--visible {
	display: block;
}

.modal {
	max-width: 900px;
	width: 100%;
	padding: 30px;
	background: #fff;
	border-radius: 12px;
	position: fixed;
	top: 100px;
	left: 50%;
	transform: translate(-50%);
	display: flex;
	flex-direction: column;
	display: none;
}

@media screen and (max-width: 1000px) {
	.modal {
		max-width: 95% !important;
		padding: 20px !important;
	}
	.left__img {
		max-width: 100px !important;
	}
}
@media screen and (max-width: 400px) {
	.modal {
		padding: 15px !important;
	}
}

.modal--visible {
	display: block;
}

.modal__header {
	display: flex;
	justify-content: space-between;
}

.header__left {
	display: flex;
}

.left__info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: flex-end;
    padding-left: 30px;
    padding-bottom: 20px;
}

.left__info h3 {
	margin: 0;
	font-family: "Roboto";
	font-size: 45px;
	font-weight: 700;
}

@media screen and (max-width: 768px) {
	.left__info h3 {
		font-size: 30px !important;
	}
}

@media screen and (max-width: 420px) {
	.left__info h3 {
		font-size: 20px !important;
		padding-top: 10px;
	}
}

p.info__position {
	margin-bottom: 0;
	font-family: "Roboto";
	font-weight: 400;
}

.header__right button {
	background: none;
	border: 2px solid black;
	border-radius: 50%;
	color: #000;
}

.left__img {
	max-width: 150px;
}

.modal__content {
	margin-top: 20px;
}

/* Categories Shortcode */

.categories-bar {
	display: flex;
	width: 100%;
	justify-content: center;
	padding-top: 30px;
	padding-bottom: 30px;
}

.categories-bar ul {
	display: flex;
	justify-content: center;
	width: 100%;
	flex-wrap: nowrap;
	list-style-type: none;
	padding-left: 0;
	gap: 20px;
}

@media screen and (max-width: 1024px) {
	.categories-bar ul {
		flex-wrap: wrap;
	}
}

.categories-bar ul li {
	cursor: pointer;
	font-family: "Roboto";
	font-weight: 500;
	font-size: 18px;
	padding-left: 40px;
	padding-right: 20px;
	white-space: nowrap;
}

.active-cat {
	font-weight: 900 !important;
}

section#comments {
	display: none;
}

.blur {
	filter: blur(7px);
}

.otp-popup {
	background: #ec6059;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 50px;
	border-radius: 20px;
	width: 650px;
	display: none;
	z-index: 999999999999999999;
}

@media screen and (max-width: 768px) {
	.otp-popup {
		width: 95% !important;
		padding: 30px!important;
		max-height: 80vh;
		overflow: scroll;
		top: 57%!important;
	}
	.otp-popup h2 {
		font-size: 26px!important;
	}
}

.otp-popup h2 {
	color: #fff;
	font-family: "Roboto";
	font-weight: 700;
}

.otp-popup p {
	color: #fff;
	font-family: "Roboto";
	font-weight: 500;
}

.otp-popup-content input, .otp-popup-content select {
	margin-bottom: 10px;
	border-radius: 6px;
	border: none;
}

button#otp-send,
button#otp-submit {
	background: #000;
	color: #fff;
	margin-top: 10px;
	min-width: 200px;
	border-radius: 6px;
	font-weight: 700;
}

.accept-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 21px;
    margin-bottom: 20px;
    color: #fff;
    font-family: "Roboto";
}

.accept-terms input {
    position: relative;
    top: 4px;
}

select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
    margin-top: -14px!important;
}

.otp-criteria {
	display: none;
	flex-direction: column;
	gap: 20px;
}

.otp-criteria__buttons {
	display: flex;
	gap: 20px;
}

.otp-criteria h1 {
    color: #fff;
    font-size: 30px;
}

.otp-criteria ol {
    padding-left: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.otp-criteria__buttons a {
    border: 1px solid #fff;
    width: 100px;
    display: flex;
    justify-content: center;
    height: 40px;
    align-items: center;
    border-radius: 12px;
    color: #fff!important;
	cursor: pointer;
}