/* FollowUpload CSS: copy only necessary rules from ApplyStatus to keep same look without import */

/* base colors */
#service {
	color: #202020;
}

/* hero section */
#service .followupload-section {
	position: relative;
}

#service .followupload-bg {
	background-image: url("/static/images/ApplyStatus/bg/applystatus-bg-desktop.webp");
	z-index: 0;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: top;
	background-size: cover;
	height: 100vh;
}

/* content spacing */
#service .followupload-content {
	padding-top: 92px;
}

#service .followupload-content h1 {
	font-weight: 500;
	font-size: 64px;
	line-height: 66px;
	text-align: center;
	color: #ffffff;
}

/* card */
#service .card {
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 4px 14px 30px rgba(9, 30, 66, 0.1);
	border-radius: 30px;
	margin: 0 10%;
}

#service .card-followupload {
	margin-top: 30px;
}

#service .card-followupload .card-body {
	height: auto;
	width: 100%;
	padding: 46px 95px;
}

#service .card-followupload h1 {
	font-weight: 500;
	font-size: 64px;
	line-height: 68px;
	text-align: center;
	color: #003f67;
}

#service .card-followupload h2 {
	font-weight: 500;
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	color: #202020;
}

#service .card-followupload h4 {
	font-weight: 500;
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	color: #202020;
}

#service .card-followupload h5 {
	font-weight: 400;
	font-size: 20px;
	line-height: 22px;
	text-align: center;
	color: #626262;
}

/* buttons */
#service .btn-blue {
	background: #00b4f1;
	border-radius: 40px;
	color: #fff;
	font-weight: 500;
	font-size: 24px;
	line-height: 28px;
	padding: 0px;
}

#service .followupload-actions {
	margin-top: 26px;
}

#service .btn-followupload-agree {
	width: 216px;
	height: 56px;
	font-weight: 500;
	font-size: 24px;
	line-height: 36px;
	text-align: center;
	color: #ffffff;
}

#service button.btn-followupload-close {
	padding: 7px 42px;
	background: #00b4f1;
	border-radius: 40px;
	border: none;
	color: #fff;
}

/* disabled state (used by page JS) */
#service .btn-disabled {
	background-color: #62626280 !important;
	pointer-events: none;
	cursor: not-allowed;
	opacity: 0.8;
}

/* message response */
#service .msg-respone {
	text-align: center;
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	color: #202020;
	margin-bottom: 24px;
}

/* loader (used in modal) */
.loader {
	border: 5px solid #f3f3f3;
	border-top: 5px solid #3498db;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 2s linear infinite;
	-webkit-animation: spin 2s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

/* responsive: mobile */
@media (max-width: 575px) {
	#service .card-followupload .card-body {
		height: auto;
		width: 100%;
		padding: 34px 23px;
	}

	#service .followupload-bg {
		background-image: url("/static/images/ApplyStatus/bg/applystatus-bg-mobile.webp");
		z-index: 0;
		background-repeat: no-repeat;
		background-attachment: scroll;
		background-position: top;
		background-size: 100%;
		height: 100%;
	}

	#service .followupload-content {
		padding: 0px 0 50px 0;
	}

	#service .card-followupload {
		margin: 25px;
		height: 400px;
	}

	#service .followupload-content h1 {
		font-weight: 500;
		font-size: 48px;
		line-height: 50px;
		text-align: center;
		color: #ffffff;
	}

	#service .card-followupload h1 {
		font-weight: 500;
		font-size: 48px;
		line-height: 50px;
		text-align: center;
		color: #003f67;
	}

	#service .card-followupload h2 {
		font-weight: 700;
		font-size: 24px;
		line-height: 28px;
		text-align: center;
		color: #202020;
	}

	#service .card-followupload h4 {
		font-weight: 700;
		font-size: 24px;
		line-height: 28px;
		text-align: center;
		color: #202020;
	}

	#service .card-followupload h5 {
		font-weight: 400;
		font-size: 20px;
		line-height: 22px;
		text-align: center;
		color: #626262;
	}

	#service .btn-red {
		height: 45px;
	}

	#service .btn-apply-status-agree {
		font-weight: 500;
		font-size: 24px;
		line-height: 28px;
	}
}

/* responsive: small devices */
@media (min-width: 576px) and (max-width: 767px) {
	#service .card-followupload .card-body {
		height: auto;
		width: 100%;
		padding: 34px 23px;
	}

	#service .followupload-bg {
		background-image: url("/static/images/ApplyStatus/bg/applystatus-bg-mobile.webp");
		z-index: 0;
		background-repeat: no-repeat;
		background-attachment: scroll;
		background-position: top;
		background-size: cover;
		height: 170vh;
	}

	#service .followupload-content {
		padding: 51px 24px;
	}

	#service .followupload-content h1 {
		font-weight: 500;
		font-size: 48px;
		line-height: 50px;
		text-align: center;
		color: #ffffff;
	}

	#service .card-followupload h1 {
		font-weight: 500;
		font-size: 48px;
		line-height: 50px;
		text-align: center;
		color: #003f67;
	}

	#service .card-followupload h2 {
		font-weight: 700;
		font-size: 24px;
		line-height: 28px;
		text-align: center;
		color: #202020;
	}

	#service .card-followupload h4 {
		font-weight: 700;
		font-size: 24px;
		line-height: 28px;
		text-align: center;
		color: #202020;
	}

	#service .card-followupload h5 {
		font-weight: 400;
		font-size: 20px;
		line-height: 22px;
		text-align: center;
		color: #626262;
	}

	#service .btn-red {
		height: 45px;
	}

	#service .btn-followupload-agree {
		font-weight: 500;
		font-size: 24px;
		line-height: 28px;
	}
}