@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');


* {
	box-sizing: border-box;
}

.content {
	padding: 100px;
}

.disable-scroll {
	overflow: hidden !important;
}

.swipe-modals {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0, 0.6);
	display: none;
}

.swipe-modal {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 300px;
	background-color: #fff;
	padding: 30px;
}

.modal__btn {
	position: absolute;
	right: 30px;
	top: 30px;
	width: 15px;
	height: 15px;
	background-image: url("close.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: transparent;
}


.mobile-close {
	display: none;
}

.is-open {
	z-index: 999;
	display: block;
}

@media (max-width: 576px) {
	.swipe-modal {
		padding: 50px 30px;
		top: auto;
		bottom: 0;
		left: 0;
		transform: none;
		transform: translateY(150vh);
		width: 100%;
		/* height: 75vh; */
		height: auto;
		max-height: 95vh;
		border-top-right-radius: 25px;
		border-top-left-radius: 25px;
		transition: transform 0.3s;
		overflow-y: auto;
	}
	.swipe-modal.fullpage {
		height: 95vh;

	}
	.visible {
		transform: translateY(0);
		transition: transform 0.3s;
	}

	.modal__btn {
		display: none;
	}


	.mobile-close {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 50px;
		display: block;
		background-color: transparent;
		border: 0;
	}

	.mobile-close::before {
		content: "";
		position: absolute;
		left: 50%;
		top: 30%;
		transform: translate(-50%, -50%);
		width: 50px;
		height: 2px;
		background-color: #bfbfbf;
	}

}