 .download-btn {
	background: #348376;
	color: white;
	border: none;
	border-radius: 50px;
	padding: 12px 32px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	width: 65%;
	margin-bottom: 15px;
	/*transition: transform 0.2s ease, box-shadow 0.2s ease;*/
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.download-btn:hover {
	/*transform: translateY(-2px);*/
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}
@supports (-webkit-appearance: none) and (hanging-punctuation: first) {
  /* CSS rules specific to Safari */
  .download_cta_icon_new {
    display: none;
  }
  .option-card {
	margin-top: 24px;
  }

}
.option-card {
	background: #348376;
	border: 1px solid #1e7b74;
	border-radius: 20px;
	padding: 8px 16px;
	margin-bottom: 10px;
	cursor: pointer;
	/*transition: all 0.2s ease;*/
	text-align: left;
	
	width: 46%;
	float: left;
	margin-right: 25px;
	font-weight: 500;
	text-align: center;
}

.option-card:hover {
	border-color: #E8FAF7;
	background: #0E5C4F;
	color:#E8FAF7;
}

.option-title {
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 5px;
	text-align: center;
}

.option-desc {
	font-size: 14px;
	color: #718096;
}

.system-info {
	background: #edf2f7;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 15px;
	margin: 20px 0;
	font-size: 14px;
	color: #4a5568;
	display: none;
}

.other-platforms-btn {
	background: transparent;
	border: none; /*2px solid #348376*/
	color: #348376;
	border-radius: 8px;
	padding: 6px 24px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	
}

.other-platforms-btn:hover {
	background: #348376;
	color: white;
}

/* Modal */
/*.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}*/

.modal-content {
	background: white;
	margin: 5% auto;
	border-radius: 16px;
	width: 90%;
	max-width: 600px;
	max-height: 80vh;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
	    border-bottom: none;
	color: #141414;
	padding: 25px 25px 5px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-title {
	font-size: 32px;
	font-weight: 600;
}
.modal-subtitle{
	font-size: 13px;
}
.close {
	background: none;
	border: none;
	color: #1e7874;
	font-size: 24px;
	cursor: pointer;
	padding: 5px;
	border-radius: 4px;
	/*transition: background 0.2s ease;*/
	position: absolute;
  top: 0rem; /* Adjust as needed */
  right: 1.5rem; /* Adjust as needed */
  width:16px;
  height:16px;
}

.close:hover {
	background: rgba(255, 255, 255, 0.2);
}

.modal-body {
	padding: 25px;
	max-height: 60vh;
	overflow-y: auto;
}

.platform-group {
	margin-bottom: 15px;
}

.platform-title {
	font-size: 18px;
	font-weight: 600;
	color: #2d3748;
	margin-bottom: 15px;
	/*display: flex;*/
	align-items: center;
	gap: 10px;
	display: none;
}

.download-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 16px;
	background: #f7fafc;
	border: 1px solid #1e7b74;
	border-radius:20px;
	text-decoration: none;
	color: #2d3748;
	margin-bottom: 8px;
	transition: all 0.2s ease;
	width: 45%;
	margin-right: 10px;
}

.download-link:hover {
	background-color: #348376;
	color:#E8FAF7;
	
}

.download-info {
	display: flex;
	flex-direction: column;
}

.download-name {
	font-weight: 500;
	font-size: 15px;
	margin-bottom: 3px;
}

.download-size {
	font-size: 13px;
	color: #718096;
}

.download-icon {
	font-size: 18px;
	color: #667eea;
}
.download-icon:hover {
	
	color: #ffffff;
}

.loading {
	color: #718096;
	font-size: 16px;
	padding: 40px 20px;
}
.download_cta_icon_new {
    float: right;
    position: relative;
    bottom: 3px;
    right: 165px;
}



/* Tablets: 601px to 768px */
@media screen and (min-width: 601px) and (max-width: 768px) {
	.download-btn{
		width: 88%;
		font-size: 10px;
		padding: 12px 26px;
	}
   .download_cta_icon_new {
		bottom: 3px;
		right: 72px;
		
	}
	.download-link{
		width: 99%;
		margin-right: 0px;
	}
	#platformModal .modal-title {
		font-size: 26px;
		font-weight: 600;
	}
	.option-card {
		width: 100%;
		margin-bottom: 10px;
	}
	.latestversion{
		display: none;
	}
	.comingsoon {
		margin-top: 5px !important;
	}
}
/* Small devices: 481px to 600px */
@media screen and (min-width: 481px) and (max-width: 600px) {
 .modal-content {
		margin: 10% auto;
		width: 95%;
	}

	.modal-header, .modal-body {
		padding: 20px;
	}
	.download-btn{
		width: 89%;
    	
    	padding: 12px 26px;
	}
	.download_cta_icon_new {
		bottom: -19px;
    	right: 43px;
	}
	.download-link{
		width: 99%;
		margin-right: 0px;
	}
	#platformModal .modal-title {
		font-size: 26px;
		font-weight: 600;
	}
	.option-card {
		width: 100%;
		margin-bottom: 10px;
	}
	.latestversion{
		display: none;
	}
	.download-link {
		width: 99%;
		margin-right: 0px;
	}
	.comingsoon {
		margin-top: 5px !important;
	}
}

/* Extra small: up to 480px */
@media screen and (max-width: 480px) {
	.download-btn{
		width: 87%;
		font-size: 10px;
		padding: 12px 26px;
	}
	
  .download_cta_icon_new {
		bottom: -19px;
    	right: 40px;
	}
	.latestversion{
		display: none;
	}
	.comingsoon {
		margin-top: 5px !important;
	}
	.download-link {
		width: 99%;
		margin-right: 0px;
	}
	#platformModal .modal-title {
		font-size: 26px;
		font-weight: 600;
	}

}


