
.case-popup {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	overflow-y: auto;
	overflow-x: hidden;
	position: relative;
	width: 100%;
	max-width: 1200px;
	max-height: 90%;
	background-color: white;
	min-height: 200px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .14);
	margin: auto auto;
	padding: 60px 20px;
	border-radius: 10px;
}

.case-popup-img {
	max-height: 450px;
	width: auto;
	margin: 0 auto;
	border-radius: 5px !important;
}

.case-gallery {
	max-height: 450px;
	width: calc(60% - 10px);
	margin: 0 auto;
	border-radius: 5px !important;
}

.case-popup-info {
	width: calc(40% - 10px);
}

.case-popup-title {
	color: rgb(84, 89, 95);
	font-size: 2rem !important;
	margin-bottom: 10px;
}

.case-popup-title:after {
	content: "•";
	color: rgb(171, 22, 36);
	margin-left: 10px;
}

.case-popup-types {
	margin-bottom: 10px;
	display: flex;
}

.case-popup-types .case-popup-type {
	margin: 0px 10px 10px 0px;
	padding: 2px 15px;
	border-radius: 50px;
	color: #06B41F;
	border: 1px solid #06B41F;
	display: flex;
	align-items: center;
}

.case-popup-industries {
	margin-bottom: 10px;
}

.case-popup-content {
	margin-bottom: 10px;
	font-size: 15px;
}

.case-popup-tools {
	display: flex;
	flex-wrap: wrap;
}

.case-popup-tool {
	margin-right: 10px;
}

.case-popup-actions {
	display: flex;
	flex-wrap: wrap;
}

.case-popup-actions button {
	width: 50%;
	font-weight: 700;
	font-size: 1rem;
	padding: 12px 24px;
	justify-content: space-around;
	margin-right: 5px;
}

.case-popup-details-btn,
.case-popup-link-btn {
	font-weight: 700 !important;
}

.case-popup-close-btn {
	position: absolute;
	right: -20px;
	top: 0px;
	background-color: transparent;
	color: black;
}

.case-popup-close-btn:hover {
	background-color: transparent;
	color: #ab1624;
}

.case-popup-wrapper {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #00000045;
	z-index: 99;
	padding: 0px 20px;
}

.case-popup-wrapper .owl-item img {
	max-height: 450px;
	object-fit: contain;
}

.case-popup-wrapper .owl-nav {
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
}

.case-popup-wrapper .owl-nav button {
	width: 35px;
	height: 35px;
	background-color: white !important;
	border-radius: 100% !important;
}

.case-popup-wrapper .owl-nav button img {
	width: 35px;
	height: 35px;
}

@media only screen and (max-width: 768px) {
	.case-gallery {
		width: 100%;
	}
	
	.case-popup-title {
		margin-top: 20px;
	}
	
	.case-popup .case-popup-info {
		width: 100%;
	}

	.case-popup-actions button {
		width: 100%;
	}
}

@media only screen and (max-width: 467px) {
	.case-popup-wrapper {
		padding: 0px 15px;	
	}
	
	.case-popup {
		padding: 30px 15px;
	}
	
}