:root {
	--site-color: #1967D2;
	--grey: #FAFBFC;
	--dark-grey: #eee;
	--light-blue: #EFF6FF;
}

.shortlist-inner-page {
	padding: 100px 0;
}
.shortlist-inner-page h1, .shortlist-inner-page h2, .shortlist-inner-page h3, .shortlist-inner-page h4, .shortlist-inner-page h5, .shortlist-inner-page h6, .shortlist-inner-page p {
	margin-top: 0;
	margin-bottom: 0;
}

.relative {
	position: relative;
}
.flex {
	display: flex;
}
.flex.stretch > * {
	width: 100%;
}
.shrink-0 {
	flex-shrink: 0;
}
.flex.column {
	flex-direction: column;
}
.space-between {
	justify-content: space-between;
}
.align-center {
	align-items: center;
}
.justify-center {
	justify-content: center;
}
.flex-start {
	align-items: flex-start;
}
.gap-20 {
	gap: 20px;
}
.gap-30 {
	gap: 30px;
}
.gap-15 {
	gap: 15px;
}
.gap-10 {
	gap: 10px;
}
.gap-5 {
	gap: 5px;
}

.applicants-list {
	margin-top: 50px;
	gap: 40px;
}
.applicant {
	padding: 30px;
	border-radius: 8px;
	background-color: #fff;
	border: 1px var(--dark-grey) solid;
	gap: 50px;
}
.applicant .info {
	gap: 20px;
}
.applicant .info .names .icon-user {
	width: 80px;
	height: 80px;
	border-radius: 6px;
	background-color: var(--grey);
	display: flex;
	align-items: center;
	justify-content: center;
}
.applicant .review {
	width: 280px;
}
.separator {
	width: 100%;
	height: 0;
	border-top: 1px var(--dark-grey) solid;
}
.applicant .experiences {
	gap: 100px;
}
.applicant .text-label {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 16px;
	color: #77838F;
}
.applicant .experiences .value {
	font-size: 20px;
	line-height: 1;
}
.applicant .education-list {
	gap: 5px;
}
.applicant .education-list span {
	padding: 0 10px;
	border-radius: 100px;
	display: block;
	color: var(--site-color);
	background-color: var(--light-blue);
	border: 1px var(--dark-grey) solid;
}
.applicant .education-list span.main-education {
	color: #77838F;
	background-color: var(--grey);
	border: 1px var(--dark-grey) solid;
}
.applicant .history-items {
	background-color: var(--grey);
	padding: 20px;
	border-radius: 6px;
	gap: 100px;
	border: 1px var(--dark-grey) solid;
}
.applicant .media > div {
	border: 1px #efefef solid;
	border-radius: 5px;
	background-color: var(--grey);
	padding: 10px;
}
.applicant .media .video {
	background-color: var(--light-blue);
}
.applicant .media .video .heading {
	color: var(--site-color);
	text-decoration: underline;
}
.applicant .media .video .video-access-code {
	background-color: #fff;
	border-radius: 50px;
	padding: 0 10px;
}
.applicant .media .video .icon-holder {
	background-color: var(--site-color);
    width: 43px;
    height: 43px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.applicant .media .video .icon-holder svg {
	fill: #fff;
	stroke: #fff;
}
.applicant .recommendation {
	background-color: #cfffcf;
	padding: 0 15px;
    border-radius: 100px;
    gap: 10px;
}
.applicant .other-details span.icon {
	width: 14px;
	height: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.applicant .other-details span.icon svg {
	width: 14px;
	height: 14px;
}
.applicant .recommendation span svg {
	fill: #609f60;
	stroke: #609f60;
	width: 14px;
	height: 14px;
}
.applicant .recommendation .stars span {
	width: 14px;
	height: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.applicant .recommendation .stars {
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 1;
}

.applicant .recommendation .stars .stars-empty {
  color: #ccc;
  font-size: 20px;
}

.applicant .recommendation .stars .stars-filled {
  color: #609f60;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  font-size: 20px;
}
.applicant .media .video .contents .icon,
.applicant .media .other-files .icon {
	width: 16px;
	height: 16px;
	display: block;
	display: flex;
	align-items: center;
	justify-content: center;
}
.applicant .media .video .sub-text .text {
	color: var(--site-color);
	font-weight: 600;
	margin: 0 5px;
}
.applicant .media .other-files a {
	padding: 0 10px;
	border-radius: 100px;
	background-color: #fff;
	border: 1px var(--dark-grey) solid;
}
.applicant .comment {
	background-color: var(--grey);
	border: 1px #efefef solid;
	padding: 15px 20px;
	border-radius: 5px;
	margin-top: 10px;
}
.applicant .comment p {
	font-style: italic;
}
.access-code-form {
	width: 430px;
	max-width: 100%;
	margin: 0 auto;
	background-color: #fff;
	padding: 40px;
	border-radius: 8px;
	border: 1px var(--dark-grey) solid;
	gap: 20px;
}
.access-code-form form input[type="text"] {
	width: 100%;
	padding: 0 15px 0 40px;
	height: 42px;
	border: 1px var(--dark-grey) solid;
	border-radius: 6px;
}
.access-code-form form input[type="text"]:focus {
	border: 1px var(--site-color) solid;
}
.access-code-form form button {
	height: 42px;
	padding: 0 15px;
	text-align: center;
	background-color: var(--site-color);
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	border: 1px var(--site-color) solid;
	border-radius: 6px;
	transition: all 0.3s ease;
}
.access-code-form form button span.icon {
	width: 14px;
	height: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.access-code-form form button:hover {
	background-color: var(--light-blue);
	color: var(--site-color);
}
.access-code-form .support {
	font-size: 13px;
}
.access-code-form h4 {
	font-size: 24px;
}
.access-code-form .input-handler span.icon {
	position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 8px;
    width: 24px;
    height: 24px;
}
.access-code-error {
	color: #e75a5a;
    background-color: #ffe4e4;
    border-radius: 3px;
    padding: 3px 10px;
}

@media screen and (max-width: 1199px) {
	.applicant {
		flex-direction: column;
	}
	.applicant .review {
		width: 100%;
	}
}
@media screen and (max-width: 991px) {
	.applicant .main-details {
		flex-direction: column;
		gap: 30px;
	}
}
@media screen and (max-width: 721px) {
	.applicant {
		padding: 20px;
	}
	h2.applicant-id {
		font-size: 24px;
	}
}
@media screen and (max-width: 652px) {
	.applicant-details,
	.other-details {
		flex-wrap: wrap;
	}
	.other-details {
		gap: 10px;
	}
	.applicant .names {
		align-items: flex-start;
	}
	.applicant .experiences,
	.applicant .history-items {
		gap: 30px;
		flex-direction: column;
	}
	.applicant .media {
		flex-wrap: wrap;
	}
}
@media screen and (max-width: 535px) {
	.applicant .info .names .icon-user {
		display: none;
	}
}
@media screen and (max-width: 456px) {
	.applicant .recommendation {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
        padding: 10px 15px 5px;
        border-radius: 5px;
	}
	.applicant-details {
		gap: 5px;
	}
	.other-details {
		gap: 2px 10px;
	}
	.applicant .media .other-files {
		flex-wrap: wrap;
	}
	.applicant .media .other-files .icon {
		display: none;
	}
}