.app-wrap {
	max-width: 1365px;
	margin: 0 auto;
	border-radius: var(--radius-35);
	overflow: hidden;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.15);
}
.app-wrap img {
	height: 100%;
    object-fit: cover;
}
.app-inner {
	padding: 40px 40px;
}
.form-field {
	margin-bottom: 15px;
}
.form-field label {
	display: block;
	font-size: var(--f-fs-font-14);
    line-height: var(--f-fs-font-20);
    margin-bottom: 5px;
}
.form-field :is(input, select, textarea) {
	width: 100%;
	border: none;
	border-bottom: 1px solid #C1C7CD;
	background-color: #F2F4F8;
	padding: 13px 16px;
	color: #697077;
}
.form-field textarea {
	height: 102px;
	resize: none;
}
.check-notice .wpcf7-form-control-wrap {
    display: inline-block;
    line-height: 100%;
}
.check-notice .wpcf7-list-item {
	margin: 0;
}
.check-notice .wpcf7-list-item label {
	margin: 0;
    padding-left: 26px;
}
.check-notice .wpcf7-list-item input[type="checkbox"] {
    opacity: 0;
    width: 0;
}
.check-notice .wpcf7-list-item span::before {
    content: "";
    position: absolute;
    left: 0;
    /*top: 2px;*/
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid #121619;
    background-color: #fff;
    transition: all 0.2s ease;
}
.check-notice .wpcf7-list-item input[type="checkbox"]:checked + span:before {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.check-notice .wpcf7-list-item input[type="checkbox"]:checked + span::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.cv-wrap {
    border: 1px dashed #667085;
    border-radius: 8px;
    padding: 14px;
    text-align: center;
}
.cv-wrap input[type="file"] {
    display: none;
}
.cv-wrap label {
    background-color: #F2F4F7;
    color: #1D2939;
    margin: 0 auto;
    border-radius: 4px;
    cursor: pointer;
    padding: 5px 15px;
    font-weight: 300;
    font-size: 15px;
    margin-bottom: 8px;
    width: fit-content;
}
.notes {
	color: #667085;
    font-size: 12px;
    line-height: 16px;
}
.cv-wrap #num-of-files {
    font-weight: 400;
    text-align: center;
    margin: 1.25em 0 1.87em 0;
    display: none;
}
.cv-wrap li {
    color: #000;
    margin-top: 4px;
    font-size: 12px;
    line-height: 16px;
}
.file-input {
	position: relative;
}
.cv-wrap .wpcf7-form-control-wrap {
    position: initial;
}
.cv-wrap .wpcf7-not-valid-tip {
	position: absolute;
    bottom: -20px;
    left: 0;
}
.cv-wrap:has(.wpcf7-not-valid-tip) {
    margin-bottom: 25px;
}
.btn-submit .wpcf7-submit {
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 16px;
    font-weight: var(--f-fw-medium);
    color: var(--color-white);
    padding: 10px 15px;
    width: 100%;
    transition: all 0.5s ease;
}
.btn-submit .wpcf7-submit:hover {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-submit {
	position: relative;
}
.btn-submit .wpcf7-spinner {
    position: absolute;
    right: 0;
    top: 12px;
}
.app-form .custom-dropd .select-styled {
    border-bottom: 1px solid #C1C7CD;
    background-color: #F2F4F8;
    padding: 13px 16px;
    color: #697077;
}
.job-fwrap .app-inner .sec-info h2 {
    font-size: 32px;
    line-height: 36px;
}
@media only screen and (max-width: 991px) {
    .app-inner {
        padding: 40px 17px;
    }
}
@media only screen and (max-width: 767px) {
    .app-wrap {
        box-shadow: 0px 0px 8.7px rgba(0, 0, 0, 0.25);
        border-radius: 10px;
    }
    .btm-logo {
        margin-top: 40px;
    }
    .btm-logo:empty {
        margin-top: 0;
    }
    .app-wrap img {
        width: 100%;
    }
}