/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/*## Common CSS ##*/
html {
  scroll-behavior: smooth;
}

/* Buttons */
.site_btn {
    color: #ffffff !important;
	font-size: 17px;
    line-height: 27px;
    font-weight: 500;
	text-align: center !important;
	min-width: 176px;
	padding: 11px 24px !important;
	border-radius: 40px;
	background-color: #99b207 !important;
	transition: all .25s ease !important;
}
.site_btn:hover {
	background-color: #053b85 !important;
}

/* Button Green */
.site_btn_green {
	background-color: #3BC180 !important;
}
.site_btn_green:hover {
	background-color: #49c78a !important;
}

/* Small Button */
.site_btn.btn_sm {
	min-width: unset;
    padding: 9px 32px !important;
}

/* Woocommerce Button */
.woocommerce .button,
.woocommerce .add_to_cart_button {
    color: #ffffff !important;
    font-size: 17px !important;
    line-height: 27px !important;
    font-weight: 500 !important;
    text-align: center !important;
	text-decoration: none !important;
    padding: 9px 24px !important;
    border-radius: 40px !important;
    background-color: #3BC080 !important;
    transition: all .25s ease !important;
}
.woocommerce .button:hover,
.woocommerce .add_to_cart_button:hover {
	background-color: #49c78a !important;
}
/* End Buttons */

/* End Breadcrumbs */
.breadcrumbs {
    margin-bottom: 32px;
}
.breadcrumbs a {
    color: rgba(102,102,102,.7);
	text-decoration: none;
}
/* End Breadcrumbs */

/* Standard Post Card */
.post-card--standard {
    background-color: #fff;
    width: calc(33.33333% - 16px);
    margin: 0 8px 32px;
    outline: 1px solid #f2f2f2;
    transition: outline .2s ease-out;
    box-shadow: 0 4px 4px transparent;
	border-radius: 6px;
    overflow: hidden;
}
.post-card--standard:hover {
	outline: 1px solid #3bc180;
}
.post-card--standard .post-card__image {
    position: relative;
    padding-top: 45.3%;
}
.post-card--standard .post-card__image img,
.post-card--standard .post-card__image picture {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}
.post-card--standard .post-card__content {
    width: 100%;
    padding: 24px;
    transition: all .25s ease;
    background-color: #ffffff;
}
.post-card--standard .post-card__content a {
	display: flex;
    flex-flow: row wrap;
	text-decoration: none;
}
.post-card--standard .post-card__categories {
    width: 100%;
}
.post-card--standard .post-card__categories>ul {
    display: flex;
    flex-flow: wrap;
    column-gap: 16px;
    margin: 0;
    list-style: none;
}
.post-card--standard .post-card__categories>ul li {
    color: #a5a5a5;
    font-size: 11px;
    line-height: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3em;
}
.post-card--standard .post-card__title {
	width: 100%;
    min-height: 57px;
	color: #151515;
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    margin: 8px 0 16px;
}
.post-card--standard .post-card__date,
.post-card--standard .post-card__read-time {
    width: 50%;
    color: #979fa7;
    font-size: 14px;
    line-height: 16px;
}
.post-card--standard .post-card__read-time {
	text-align: right;
}

@media only screen and (max-width: 991px) {
	.post-card--standard {
		width: calc(50% - 16px);
	}
}
@media only screen and (max-width: 767px) {
	.post-card--standard {
		width: calc(100% - 16px);
	}
}
/* End Standard Post Card */

/* Forms */
.gform_wrapper .gfield_label,
.gform_wrapper label {
	color: #0a0c1f;
    font-size: 14px;
    line-height: 20px;
}
.gform_wrapper .gform_fields {
    list-style: none;
    margin: 0;
}
.gfield.hidden_label .gfield_label {
    display: none;
}
.gform_wrapper .gform_body {
    position: relative;
}
.gfield_required_text {
  	color: #f13319;
  	font-size: 11px;
  	line-height: 16px;
  	opacity: .5;
}
.gform_wrapper .gform_submission_error {
    background: #fff1ee;
    padding: 8px;
    color: #99b207;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    width: 100%;
    margin-bottom: 16px;
}
.gform_wrapper .gfield_validation_message {
    color: #99b207;
    font-size: 14px;
    line-height: 20px;
    margin-top: 4px;
}
form input[type=email],
form input[type=password],
form input[type=search],
form input[type=tel],
form input[type=text],
form input[type=url] {
	width: 100%;
	color: #575963;
	font-size: 14px;
    line-height: 18px;
    padding: 16px;
    margin: 0;
    border: none;
	outline: none !important;
    box-shadow: none;
    background: #f7f9fc;
	box-sizing: border-box;
    transition: all .25s ease;
}
form input[type=email][aria-invalid=true],
form input[type=password][aria-invalid=true],
form input[type=search][aria-invalid=true],
form input[type=tel][aria-invalid=true],
form input[type=text][aria-invalid=true],
form input[type=url][aria-invalid=true] {
    border: 1px solid #F7694D !important;
}
form input[type=email]::placeholder,
form input[type=password]::placeholder,
form input[type=search]::placeholder,
form input[type=tel]::placeholder,
form input[type=text]::placeholder,
form input[type=url]::placeholder,
form textarea::placeholder {
    opacity: .5;
}
form textarea {
    width: 100%;
  	color: #575963;
  	font-size: 14px;
  	line-height: 18px;
  	padding: 13.6px 16px;
    background: #f7f9fc;
  	box-sizing: border-box;
  	box-shadow: 0 !important;
    border: none;
  	transition: all .25s ease;
}
form input[type="submit"] {
    font-size: 17px;
    line-height: 25px;
    font-weight: 500;
    background: #3bc180 !important;
	border-color: #3bc180 !important;
    padding: 9px 32px !important;
    transition: all .25s ease !important;
    border-radius: 30px;
}
form input[type=submit]:hover {
	background: #49c78a !important;
}
form select {
  	display: block;
  	width: 100%;
    height: 44px;
    font: caption;
  	color: #575963;
    font-size: 14px;
  	line-height: 14px;
    text-transform: none;
  	padding: 13.4px 16px;
  	background: #f7f9fc !important;
  	border: 0;
}
.gform_wrapper .ginput_recaptcha>div {
  	margin: 0 auto;
}
.gform_submission_error {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: red;
}
.gfield_error .gfield_validation_message {
    color: red;
}
/* End Forms */

/* Responsive CSS */
@media only screen and (max-width: 767px) {
	.hide_on_mobile {
		display: none !important;
	}
}
@media only screen and (max-width: 1240px) {
	.hide_on_small_laptop {
		display: none !important;
	}
}
/* End Responsive CSS */

/* Revice Form CSS */
.revise-form {
    background-color: rgba(219,223,255,.2);
    border: 1px solid rgba(111,121,204,.1);
    margin-bottom: 20px;
    padding: 32px;
}
.revise-form label {
    color: #000;
    font-size: 14px;
    line-height: 20px;
}
.revise-form .form-control {
    height: auto;
    font-size: 15px;
    color: #445461;
    font-weight: 400;
    padding: 10px 0;
    padding-left: 5px;
    display: block;
    width: 100%;
    line-height: 1.5;
    background-color: #ffffff !important;
    border: 1px solid #dde6ef !important;
    margin-bottom: 10px;
    border-radius: 0;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    box-sizing: border-box;
}
.revise-form select.form-control {
    display: block;
    height: 44px;
    color: #575963;
    padding: 9px 21px 7.5px 12px;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #dde6ef !important;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
    appearance: none !important;
    background-color: #fff !important;
    background-image: url(/wp-content/themes/helling/assets/img/icon-select-dropdown.svg) !important;
    background-repeat: no-repeat !important;
    background-position: right 0.7em top 50%,0 0 !important;
    background-size: 0.65em auto,100% !important;
}
.revise-form .search_jobform_submit {
	width: 100%;
	margin-top: 16px;
}

/* Zip Search Section */
#zs_search_container {
    background-color: transparent!important;
    border: none !important;
	padding-bottom: 0 !important;
}
.zs_search_container {
    max-width: 40% !important;
}
.zs_search_label {
	display: block !important;
    margin-bottom: 8px !important;
}
.zs_search_box {
	width: 100% !important;
    height: 51px !important;
	padding: 16px !important;
    box-sizing: border-box !important;
    background: #f7f9fc !important;
    background-color: #fff !important;
    border: 1px solid #dce1e8 !important;
    transition: all .25s ease;
    font-size: 15px !important;
    line-height: 30px !important;
    color: #575963 !important;
    border-radius: 0 !important;
	box-shadow: none;
	margin: 0;
}
#zs_submit {
	opacity: 1;
    margin: 0 !important;
    height: 51px !important;
    color: #fff !important;
    font-size: 16px !important;
    line-height: 14px !important;
    font-weight: 500 !important;
	background: #02a1c3 !important;
    border: 1px solid #02a1c3 !important;
    padding: 12px 24px !important;
    position: relative;
    text-align: center;
    transition: all .25s ease;
    max-width: none !important;
    border-radius: 0 !important;
}
#zs_submit:hover {
    background: #02b2d7 !important;
    border: 1px solid #02b2d7 !important;
}
#zr_pro_widget_filter {
    padding: 0 15px;
}
#zr_pro_widget_filter select {
	color: #666666 !important;
    border: 1px solid #aaa !important;
    border-radius: 3px !important;
	background: transparent !important;
}
#zr_pro_widget_filter .zs_down_arrow {
    z-index: 8;
    cursor: pointer;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    display: inline-block;
    border-top: 7px solid;
    border-top-color: #aaa;
    position: absolute;
    top: 24px;
    left: 112px;
}
#zs_no_jobs_copy {
    font-size: 16px !important;
    line-height: 16px !important;
	margin-bottom: 6px !important;
}
#zs_no_jobs ul {
  	display: flex;
  	flex-flow: row wrap;
  	justify-content: flex-start;
  	list-style: none;
  	padding: 28px 15px !important;
  	margin: 0;
}
#zs_no_jobs ul li a {
	display: inline-block;
    color: #555c6c !important;
    font-size: 16px !important;
    line-height: 16px;
    text-decoration: none !important;
    padding: 12px 19px;
	margin: 0 16px 8px 0;
    background-color: #f3f5f8 !important;
    cursor: pointer;
    transition: all .3s ease;
}
#zs_no_jobs ul li a:hover {
  	background-color: #e3e8ef !important;
}

/* Results */
#zr_widget_jobs {
    display: flex;
    flex-wrap: wrap;
    max-width: 100% !important;
}
#zr_results {
    flex: 0 0 auto;
    width: 100%;
    margin-left: 8px;
}
.zr_job {
    flex: 0 0 auto;
    width: calc(33.33333% - 16px);
    margin: 8px;
    border: 1px solid #dce1e8 !important;
    padding: 32px !important;
    position: relative;
}
.zr_job_title a {
    font-size: 22px;
    line-height: 24px;
    font-weight: 700;
    color: #575963 !important;
    transition: all .25s ease;
    margin-bottom: 24px;
}
.zr_job_posted_time {
    position: absolute;
    top: 16px;
    right: 16px;
}
.zr_job_details {
    display: flex;
    clear: none !important;
    flex: 0 0 auto;
    width: 100%;
    margin: 4px 0 12px !important;
}
.zr_job_detail_container {
    float: none !important;
}
.zr_job_desc {
    color: #575963 !important;
    font-size: 14px !important;
    line-height: 20px !important;
}
#zr_pagination {
    max-width: 100% !important;
	margin: 36px 0 80px !important;
	padding: 0 15px;
}
#zr_pagination ._zr_pager {
    width: auto;
    color: #818a9d !important;
    font-size: 16px !important;
    line-height: 36px !important;
    font-weight: 500 !important;
    border-radius: 4px;
    opacity: .7;
    transition: all .3s ease;
    border: none;
    padding: 1px 14px;
}
#zr_pagination span.pager {
    background-color: #3BC180;
    color: #fff !important;
    position: relative;
    opacity: 1;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 4px;
}

@media only screen and (max-width: 991px) {
	.zr_job {
		width: calc(50% - 16px);
	}
}
@media only screen and (max-width: 767px) {
	#zs_search_module {
		margin-bottom: 24px !important;
	}
	.zs_search_container {
		max-width: 100% !important;
	}
	#zs_results {
		padding: 0 7px;
	}
	.zr_job {
		width: calc(100% - 16px);
	}
}
/* End Zip Search Section */

/*# FAQ Box Design #*/
.faq_box_design {
	padding-bottom: 16px !important;
}
.faq_box_design h2 {
    font-size: 34px !important;
    line-height: 40px !important;
    font-weight: 600;
}
.faq_box_design h3 {
	font-size: 27px !important;
    line-height: 35px !important;
    margin: 16px 0 8px;
}
.faq_box_design h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
}
.faq_box_design p,
.faq_box_design ol {
    font-size: 16px !important;
    line-height: 30px !important;
}
.faq_box_design ol {
    margin: 24px 0 16px 38px;
}
.faq_box_design .wp-block-separator {
    border-color: #ece9e6 !important;
    margin: 16px 0 !important;
}
.faq_box_design .faq_sec .faq_question {
    padding: 16px 0;
    border-bottom: 1px solid #dce1e8;
}
.faq_box_design .c-accordion__title {
    font-size: 20px !important;
    line-height: 28px !important;
    font-weight: 600;
    font-family: inherit;
    margin: 0;
}
.faq_box_design .faq_sec .faq_question .c-accordion__title:after {
    color: transparent;
    width: 25px;
    height: 25px;
    background: url(/wp-content/uploads/2023/02/Plus-Icon.svg);
    background-size: cover;
    transition: .2s;
}
.faq_box_design .faq_sec .faq_question.is-open>.c-accordion__title:after {
    margin-top: -12px;
    transform: rotate(45deg);
}
.faq_box_design.resource_card {
    position: relative;
    min-height: 420px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
    padding: 16px 32px;
    border: none;
}
.faq_box_design.resource_card:before {
    content: "";
    width: 100%;
    height: 10px;
    display: block;
    background: #3bc180;
    position: absolute;
    top: 0;
    left: 0;
}
.faq_box_design.resource_card.four:before {
    background: #99b207;
}
.homepage_accordion .c-accordion__title {
    color: #1d1e28;
    font-size: 20px;
    line-height: 28px;
    padding: 16px 30px 16px 0;
}
.homepage_accordion .c-accordion__title:after {
    content: "";
    width: 28px;
    height: 28px;
    background: url(/wp-content/uploads/2023/02/Plus-Icon.svg);
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: .1s;
}
.homepage_accordion.is-open .c-accordion__title:after {
    transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 767px) {
  	.faq_box_design.resource_card {
		padding: 16px 0 0;
	}
}
/*## End Common CSS ##*/


/*## Header CSS ##*/
/* Header Top */
.top-bar aside {
    width: 100%;
}
.top-bar .menu-item,
.top-bar .menu-item a {
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
}
.top-bar .menu-item a {
	display: flex;
    align-items: center;
	padding: 0 3px;
}
.top-bar .menu-item--wishlist a:after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(/wp-content/themes/my-job-search/assets/img/icon-wishlist.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 16px;
    display: inline-block;
    position: relative;
    top: 0;
}

@media only screen and (max-width: 767px) {
	.top-bar .inside-top-bar {
		padding: 8px 14px 8px 14px !important;
	}
}

/* Header Main */
.site-header {
	width: 100%;
	position: sticky;
    top: 0;
	background: #ffffff;
	box-shadow: 0 40px 60px rgb(73 81 84 / 10%);
	z-index: 99999;
}
.site-header .menu-item {
	margin: 0 8.8px;
	cursor: pointer;
}
.site-header .menu-item a {
    border-top: 5px solid #fff;
    padding: 28px 0 !important;
}
.site-header .menu-item a:hover {
	border-top: 5px solid #395903;
}
.site-header .sub-menu .menu-item {
	margin: 0;
}
.site-header .sub-menu .menu-item a {
	padding: 11.2px 15px !important;
}
.site-header .menu-item--button {
	margin-right: 0;
}
.site-header .menu-item--button a {
	color: #ffffff !important;
	font-size: 14px;
	line-height: 20px !important;
	background: linear-gradient(180deg,#395903 0,#395903 100%);
    padding: 15px 20px !important;
	border: none !important;
	border-radius: 30px;
}
.site-header .menu-item--button a:hover {
    opacity: .85;
}
.site-header .menu-item--button a:after {
	display: none;
}
.cart-contents .gp-icon svg {
	width: 24px;
    height: 24px;
    fill: #000000;
}
.cart-contents .number-of-items {
    position: absolute !important;
    top: -4px !important;
    right: 5px !important;
}


@media only screen and (max-width: 767px) {
	.site-header .header-image {
		width: 150px;
	}
}

/* Header Search */
.header-widget {
	margin: 0 !important;
}
.header__search span {
  	display: block;
  	width: 50px;
  	height: 50px;
  	border-radius: 50%;
  	border: 1px solid #e5e6e9;
 	background: url(/wp-content/uploads/2022/06/Search-Icon.svg) 50% 50%/19px no-repeat #fcfafa;
  	transition: all .25s ease;
  	padding: 0;
    cursor: pointer;
	z-index: 9999 !important;
}
.header__search span:hover {
  	box-shadow: 0 5px 25px -4px rgb(30 30 60 / 17%);
  	border-color: #c8c8c8;
}

.search-module {
  	width: 100%;
  	height: 100vh;
  	position: fixed;
  	top: 0;
  	left: 0;
  	bottom: 0;
  	right: 0;
    opacity: 0;
    color: #ffffff;
  	background: #1e1e1ef2;
    z-index: -1;
    transition: .3s;
}
.search-module.search-module--is-active {
  	opacity: 1;
  	visibility: visible;
  	z-index: 9999;
  	-ms-transform: scale(1) translateY(0);
  	transform: scale(1) translateY(0);
    z-index: 999999;
}
.header-search-module-inner {
  	width: 75rem;
  	max-width: 100%;
    padding: 44px;
    margin: 38px auto 0;
    position: relative;
}
.search-module .container {
  	padding: 48px;
  	background-color: #000;
}
.search-window__title {
	color: #ffffff;
  	font-size: 36px;
  	line-height: 41px;
  	font-weight: 700;
  	margin-bottom: 16px;
}
.search-window__instruction {
  	color: #ffffff;
}
.search-module .form-wrap {
  	background: #ffffff;
  	padding: 18px 32px;
}
.search-module .search-form {
  	display: flex;
}
.search-module .search-field {
  	width: 84%;
  	font-size: 18px;
  	line-height: 26px;
  	color: #575963 !important;
    background: #ffffff !important;
  	border: none !important;
  	padding: 0;
    outline: none;
    margin-right: 20px;
}
.search-result {
  	margin-top: 48px;
}
.search-result .myjob-post-grid-items {
    margin: 0;
}
.search-result>div {
    flex-wrap: wrap;
  	margin-bottom: 38px;
}
.search-result>div button {
    font-size: 14px;
  	line-height: 20px;
    margin-bottom: 10px;
} 
.search-result>div button.cpt-btn.all {
    background: rgb(59, 193, 128);
}
.search-result .post-card {
  	width: calc(33.33333% - 16px);
    margin: 0 8px 32px;
}
.search-result .post-card__content a {
  	position: unset;
  	font-size: unset;
  	line-height: unset;
  	font-weight: unset;
  	text-decoration: unset;
 	color: unset;
  	border-bottom: unset;
  	padding: unset;
  	background: transparent;
}
.search-result .job_listing a {
  	color: #1d1e28;
  	background-color: #fff;
  	border-color: #dce1e8;
}
.search-post-link {
    display: flex;
  	flex-flow: wrap;
  	padding: 48px 2px;
  	border-top: 1px solid #313237;
}
.search-post-link h2 {
	color: #ffffff;
    width: 100%;
  	font-size: 27px;
  	line-height: 35px;
  	font-weight: 600;
    margin-bottom: 48px;
}
.search-post-link a {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    position: relative;
  	font-size: 20px;
  	line-height: 28px;
  	font-weight: 600;
  	text-decoration: none;
  	color: #ffffff;
  	border-bottom: 1px solid #000;
  	padding: 24px 32px;
  	background: #313131;
}
.search-post-link a:after {
  	content: "";
  	width: 20px;
  	height: 11px;
  	background: url(/wp-content/uploads/2022/03/Arrow-Right-Black.svg);
  	position: absolute;
  	top: 50%;
  	right: 32px;
  	transform: translate(0, -50%);
  	filter: brightness(100);
}
.search-post-link a .details-btn {
  	display: flex;
  	align-items: center;
  	justify-content: end;
  	width: 20%;
  	margin-left: 10px;
  	font-size: 16px;
  	line-height: 16px;
  	font-weight: 400;
}
.search-module .search-form .icon {
  	width: 16%;
}
.search-module .search-form .search-submit {
  	width: 100%;
  	margin: 0;
  	background: #02a1c3;
  	border: 1px solid #02a1c3;
	padding: 16px 24px;
}
.search-module .search-form .search-submit:hover {
  	background: #44806d;
  	border: 1px solid #44806d;
}
.search-module .close {
  	width: 40px;
  	height: 40px;
  	position: absolute;
  	top: 40px;
  	right: 8px;
    opacity: .8;
}
.search-module .close svg {
    fill: #ffffff;
}
.search-module .close:hover {
    opacity: 1;
}

@media only screen and (max-width: 991px) {
    .header-search-module-inner {
        margin: 46px auto 0;
    }
    .header-widget {
        position: absolute;
        top: 18px;
        right: 70px;
    }
    .search-module .search-field {
        width: 78%;
    }
    .search-module .search-form .icon {
        width: 22%;
    }
    .search-result .post-card {
    	width: calc(50% - 16px);
    }
}
@media only screen and (max-width: 767px) {
    .header-search-module-inner { 	
    	padding: 0;
    	margin: 0;
		height: 100%;
    }
    .search-module .container {
        padding: 28px;
		height: 100%;
    }
    .search-window__title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .search-window__instruction {
        margin-bottom: 16px;
    }
    .search-module .form-wrap {
        background: #ffffff;
        padding: 12px 16px;
    }
    .search-module .search-field {
        width: 71%;
    }
    .search-module .search-form .icon {
        width: 29%;
    }
    .search-module .search-form .search-submit {
    	font-size: 15px;
        padding: 10px 12px !important;
    }
    .search-result {
        margin-top: 24px;
    }
	.search-result>div:first-child {
		height: 130px !important;
    }
    .search-result>div {
        margin-bottom: 24px;
		height: 410px !important;
    }
    .search-result>div button {
        width: calc(50% - 8px);
        margin: 3px 4px !important;
        padding: 5px 20px;
    }
    .search-result .post-card {
    	width: 100%;
    }
    .search-result .post-card__content {
    	padding: 24px 16px;
    }
    .search-post-link {
        padding: 22px 0;
    }
    .search-post-link h2 {
		color: #ffffff;
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 22px;
        padding-left: 8px;
    }
    .search-post-link a {
    	font-size: 16px;
        line-height: 22px;
        padding: 24px;
    }
    .search-module .close {
        right: 14px;
    }
    .search-post-link a .details-btn {
        display: flex;
    	align-items: center;
    	justify-content: end;
    	width: 16%;
        margin-left: 10px;
    }
}
/* End Header Search */

.site-header .menu-toggle {
  	color: #000000;
  	font-size: 30px !important;
  	padding: 0;
}
.site-header .toggled {
    margin-top: 0 !important;
}

@media only screen and (max-width: 1200px) {
    .site-header {
        padding: 16px 0;
    }
	.site-header .main-navigation {
		background: transparent !important;
	}
    .site-header .menu-item {
        margin: 0;
    }
	.site-header .sub-menu {
		border: none !important;
	}
    .site-header .sub-menu li {
    	padding: 2px 8px;
    }
    .site-header .menu-item a {
        font-size: 17px !important;
    	line-height: 27px !important;
        white-space: initial !important;
        border-top: none !important;
        padding: 18px 4px !important;
    }
	.site-header .menu-item a:after {
    	content: "";
    	width: 13px;
    	height: 12px;
    	background: url(/wp-content/uploads/2022/06/Right-Arrow-Icon.svg);
    	background-repeat: no-repeat;
    	background-size: contain;
    	position: absolute;
    	right: 7px;
    	top: 50%;
    	transform: translate(0px, -50%);
    }
	.site-header .menu-item-has-children .dropdown-menu-toggle {
		float: unset !important;
	}
    .site-header .menu-item--button a,
	.site-header .menu-item-login-button a {
        border: none !important;
		text-align: center;
    	padding: 12.8px 24px !important;
        margin-top: 5px;
    }
	.site-header .menu-item--button a:after,
	.site-header .menu-item-login-button a:after {
		display: none;
	}
	.site-header .header-widget {
		position: absolute;
		width: 100%;
		top: 35px;
		right: 0;
		margin: 0 !important;
	}
    .header__search {
        position: absolute;
        right: 118px;
        top: 52%;
        transform: translate(0, -50%);
		padding-right: 4px;
    }
}
@media only screen and (max-width: 767px) {
	.site-header {
		padding: 24px;
	}
	.site-header .inside-header {
		padding: 0 !important;
	}
	.site-header .site-logo {
		max-width: 60%;
	}
    .header__search {
		right: 108px;
    	transform: translate(0, -42%);
    }
	.mobile-menu-open .site-header .main-navigation {
		margin-top: 20px !important;
	}
	.mobile-menu-open .site-header .main-navigation.mobile-menu-control-wrapper {
		margin-top: 0 !important;
	}
}
/*## End Header CSS ##*/


/*## PopUp CSS ##*/
#popmake-555466 {
	padding: 38px 32px 38px 16px;
    border-radius: 6px;
}
#popmake-555466 .popmake-close {
    color: transparent !important;
    width: 34px !important;
    height: 34px !important;
    background: url(/wp-content/uploads/2022/06/PopUp-Close-Icon.svg);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    text-shadow: none !important;
    padding: 10px !important;
}
.login_pop_up_wraper {
    display: flex;
    flex-flow: row wrap;
}
.login_pop_up_image,
.login_pop_up_body {
    flex: 0 0 auto;
    width: calc(50% - 16px);
    margin: 0 8px;
    color: #fff;
}
.login_pop_up_body {
	padding-right: 18px;
}
.login_pop_up_subtitle {
    font-size: 13px;
    line-height: 17px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.login_pop_up_title {
    font-size: 42px;
    line-height: 48px;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: 8px;
}
.login_pop_up_text {
    font-size: 17px;
    line-height: 28px;
    max-width: 360px;
}
.login_pop_up_form {
    margin-top: 20px;
}
.login_pop_up_form .gform_heading {
    display: none;
}
.login_pop_up_form .gfield {
    margin-bottom: 20px;
}
.login_pop_up_form .gfield label {
    display: inline-block;
    color: #fff !important;
    font-size: 12px !important;
    line-height: 14px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .0112em;
    margin-bottom: 6px;
}
.login_pop_up_form .gfield input {
    background: #fff;
    border: 1px solid #ebebeb;
    box-sizing: border-box;
    border-radius: 8px;
}
.login_pop_up_form .gform_footer {
    text-align: right;
    margin-top: -45px;
}
.login_pop_up_form .gform_footer input[type="submit"] {
    color: #3bc180 !important;
    background: #ffffff !important;
}
.login_pop_up_form .gform_footer input[type="submit"]:hover {
    background: #f5f5f5 !important;
}
.login_pop_up_form .gf_login_links {
    display: flex;
    flex-flow: wrap;
    margin: -10px -8px -8px;
}
.login_pop_up_form .gf_login_links a {
    color: #ffffff;
    font-size: 14px;
    line-height: 14px;
    text-decoration: none;
    margin: 0 8px;
}
.login_pop_up_form .gform_wrapper .gfield_validation_message {
    color: #ffffff !important;
}
#logged-in #pum-555466 {
    display: none !important;
}

@media only screen and (max-width: 767px) {
	.login_pop_up_image,
	.login_pop_up_body {
		width: 100%;
	}
	.login_pop_up_body {
		padding: 24px 0 0;
	}
	.login_pop_up_title {
		font-size: 30px;
		line-height: 36px;
		margin-top: 8px;
	}
	.login_pop_up_form .gf_login_links {
		margin: -14px -8px -8px;
	}
	.login_pop_up_form .gf_login_links a {
		font-size: 13px;
		line-height: 13px;
	}
}
/*## End PopUp CSS ##*/


/*## Homepage CSS ##*/
/* Header Section */
.homepage_hero_section {
	overflow: hidden;
}
.page_hero_img {
	position: relative;
}
.page_hero_img img {
	max-width: 200px;
	border-radius: 100px !important;
}
.page_hero_img_1_vector,
.page_hero_img_4_vector {
    position: absolute;
}
.page_hero_img_1_vector {
    bottom: -10px;
    left: -94px;
}
.page_hero_img_4_vector {
    top: -52px;
    right: -92px;
}
.newsletter_page_hero_img_1_vector {
	left: unset;
	right: -94px;
}
.newsletter_page_hero_img_1_vector.left {
	left: -94px;
	right: unset;
}

@media only screen and (max-width: 1024px) {
	.page_hero_img_wrap {
		display: none !important;
	}
}
/* End Header Section */

/* Explore Job Section */
.explore_job_card_wrap .gb-inside-container,
.explore_job_card {
   	height: 100%;
}
.explore_job_card {
  	border-top: 10px solid #14824c;
  	background-color: #F8F8FB;
  	padding: 32px 32px 16px;
	border-radius: 6px;
}
.explore_job_card .gb-inside-container {
    display: flex;
  	flex-direction: column;
}
.explore_job_card img {
  	width: 70px;
  	height: auto;
  	display: block;
  	margin-bottom: 29px;
}
.explore_job_card h3 {
  	font-size: 20px;
  	line-height: 28px;
	font-weight: 600;
  	margin-bottom: 8px;
}
.explore_job_card p {
	color: #575963;
  	font-size: 14px;
  	line-height: 20px;
    margin-bottom: 16px;
}
.explore_job_card ul {
	list-style: none;
	margin: 0 0 24px 0;
}
.explore_job_card ul li,
.explore_job_card ul li a {
	font-size: 14px;
	line-height: 20px;
	color: #575963 !important;
	margin-bottom: 4px;
}
.explore_job_card ul li a {
	text-decoration: underline;
}
.explore_job_card ul li a:hover {
    opacity: .75;
}
.explore_job_card .gb-button {
   	width: 100%;
	justify-content: space-between !important;
    color: #000000 !important;
    font-size: 14px;
    line-height: 30px;
  	background: #F8F8FB !important;
	box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
  	border: 1px solid rgba(220,225,232,.2);
  	border-radius: 6px;
  	padding: 10px 12px !important;
	margin-bottom: 6px !important;
    transition: all .25s ease !important;
}
.explore_job_card .gb-button:after {
    content: "";
    width: 20px;
    height: 16px;
    background: url(/wp-content/uploads/2022/06/Right-Arrow-Icon-Black.svg);
    background-repeat: no-repeat;
    background-position: 0 3px;
    transition: all .25s ease;
    margin-left: 8px;
}
.explore_job_card .gb-button:hover:after {
  	transform: translateX(8px);
}
.explore_job_card_btn_btm {
    margin-top: auto;
}
.explore_job_card_btn_btm .gb-button {
    justify-content: left !important;
    color: #313131 !important;
	font-weight: 600;
    box-shadow: none;
    border: none;
    padding: 0 !important;
    margin-bottom: 0 !important;
}
.explore_job_card.one,
.explore_job_card.one ul li a {
	color: #14824c !important;
    border-color: #14824c;
}
.explore_job_card.two,
.explore_job_card.two ul li a {
	color: #99b207 !important;
    border-color: #99b207;
}
.explore_job_card.three,
.explore_job_card.three ul li a {
	color: #3bc180 !important;
    border-color: #3bc180;
}
.explore_job_card.four,
.explore_job_card.four ul li a {
	color: #6db5d4 !important;
    border-color: #6db5d4;
}
/* End Explore Job Section */

/* Resumes Section */
.resumes__boxes {
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-flow: row wrap;
    margin: -19px;
}
.resumes__boxes>li {
    flex: 0 0 auto;
    width: 25%;
    padding: 19px;
}
.resume-box {
	display: block;
    border: 1px solid #e3eee9;
    box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
    border-radius: 6px;
    padding: 26px 40px;
	text-decoration: none;
    transition: all .2s ease-out;
}
.resume-box:hover {
    border-color: #3bc180;
    box-shadow: 0 4px 40px rgb(0 0 0 / 20%);
}
.resume-box__icon {
    height: 54px;
    margin-bottom: 26px;
}
.resume-box__icon img {
    display: block;
    width: auto;
    height: 54px;
    max-width: 100%;
}
.resume-box__title {
    color: #3c3b5c;
    font-size: 19px;
    line-height: 27px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
}
.resume-box__counter {
    color: #575963;
    font-size: 14px;
    line-height: 20px;
}
@media only screen and (max-width: 991px) {
	.resumes__boxes>li {
		width: 50%;
	}
}
@media only screen and (max-width: 767px) {
	.resumes__boxes>li {
    	width: 100%;
	}
}
/* End Resumes Section */

/* Featured Products Section */
.featured_products_cards_wrap .products {
    display: flex;
    flex-flow: row wrap;
	padding: 0 !important;
	margin: 0 -10px !important;
}
.woocommerce.columns-2 .products li {
	width: calc(33.33% - 20px) !important;
	margin: 10px !important;
}
.featured_products_cards_wrap .product {
    width: 100% !important;
    background-color: #f8f8f9;
    box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    transition: all .2s ease-out;
    padding: 28px !important;
}
.featured_products_cards_wrap .product:hover {
    border: 1px solid #3bc180;
}
.featured_products_cards_wrap .product .inside-wc-product-image {
    width: 100%;
}
.featured_products_cards_wrap .product .woocommerce-loop-product__title {
    color: #3c3b5c;
    font-size: 13px !important;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 18px !important;
    padding-right: 24px !important;
}
.featured_products_cards_wrap .product .star-rating {
    display: none !important;
}
.featured_products_cards_wrap .product .price {
    color: #3c3b5c !important;
    font-size: 32px !important;
    line-height: 37px;
    font-weight: 300 !important;
    text-align: left;
    margin: 0 !important;
    margin-bottom: 12px !important;
}
.featured_products_cards_wrap .product .button {
	width: 100%;
    display: inline-block;
    color: #3c3b5c !important;
    font-size: 18px;
    line-height: 34px;
    font-weight: 500;
    text-align: center;
    background-color: rgba(60,59,92,0) !important;
    border: 1px solid #3c3b5c;
    border-radius: 30px;
    padding: 5.12px 32px;
    margin-top: 4.8px !important;
    transition: all .25s ease;
}
.featured_products_cards_wrap .product .button:hover {
	color: #ffffff !important;
	background-color: #3c3b5c !important;
}
.featured_products_cards_wrap .product .add_to_cart_button {
    display: none;
}

@media only screen and (max-width: 991px) {
	.woocommerce.columns-2 .products li {
		width: calc(50% - 20px) !important;
	}
}
@media only screen and (max-width: 767px) {
	.woocommerce.columns-2 .products li {
		width: calc(100% - 20px) !important;
	}
}
/* End Featured Products Section */

/* Checklist Section */
@media only screen and (max-width: 1024px) {
	.checklist_items_wrap .gb-container {
		background-position: 30px 15px;
	}
}
@media only screen and (max-width: 767px) {
	.checklist_items_wrap .gb-container {
		background-position: 24px 15px;
	}
}
/* End Checklist Section */

/* Career Advice Section */
/* Myjob Post Grid */
.myjob-post-grid-items {
    display: flex;
    flex-flow: row wrap;
	margin: 0 -8px;
}
@media only screen and (max-width: 767px) {
	.myjob-post-grid-items {
		margin-top: 16px;
	}
}
/* End Myjob Post Grid */
/* End Career Advice Section */
/*## End Homepage CSS ##*/


/*## Contact Page ##*/
/* Form CSS */
.contact_social_icons {
	gap: 24px !important;
	margin-bottom: 16px;
}
.contact_social_icons .wp-social-link a {
    padding: 8px;
}
.conact_form .gform_wrapper .gfield {
  	margin-bottom: 32px;
}
.conact_form form .gform_footer.top_label {
  	display: flex;
  	width: 100%;
  	justify-content: flex-end;
}
@media only screen and (max-width: 1024px) {
  	.conact_form_wrap {
        background: #ffffff !important;
    }
}
/*## End Contact Page ##*/


/*## Shop Page ##*/
/* WC Select */
.wc-block-sort-select {
    text-align: right;
    margin-bottom: 32px;
}
.wc-block-sort-select .wc-block-sort-select__select {
    color: #000000;
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    background-color: #f3f5f8;
    border: none;
    border-radius: 30px;
    padding: 13px 24px 13px 16px;
	appearance: none;
    background-image: url(/wp-content/themes/my-job-search/assets/img/icon-select-dropdown.svg) !important;
    background-repeat: no-repeat,repeat !important;
    background-position: right 12px top 50%,0 0 !important;
    background-size: 0.65em auto,100% !important;
    cursor: pointer;
}
/* End WC Select */

/* WC Filter */
.wp-block-woocommerce-attribute-filter {
    margin-bottom: 42px;
}
.wp-block-woocommerce-attribute-filter .wc-block-attribute-filter__title {
    color: #777;
    font-size: 15px;
    line-height: 19px;
	font-weight: 400;
    letter-spacing: .25rem;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.wp-block-woocommerce-attribute-filter .wc-block-attribute-filter__title:after {
    content: '';
	display: block;
    height: 3px;
    width: 30px;
    background: rgba(0,0,0,.1);
    margin-top: 12.8px;
}
.wp-block-woocommerce-attribute-filter .wc-block-attribute-filter-list li {
	display: flex;
	align-items: center;
    color: #777;
    font-size: 14px;
    line-height: 18px;
    border-bottom: 1px solid #ececec;
    margin-bottom: 6px;
    padding-bottom: 6px;
}
.wp-block-woocommerce-attribute-filter .wc-block-attribute-filter-list input {
	opacity: 0;
}
.wp-block-woocommerce-attribute-filter .wc-block-attribute-filter-list label {
	position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-left: 10px;
}
.wp-block-woocommerce-attribute-filter .wc-block-attribute-filter-list label:before {
    content: "";
    width: 18px;
    height: 18px;
    position: absolute;
	top: 0;
	left: -24px;
    background: #ecf1f3;
    border: 1px solid #3BBD7E;
    border-radius: 6px;
}
.wp-block-woocommerce-attribute-filter .wc-block-attribute-filter-list label:after {
    content: "";
    position: absolute;
    top: 5px;
    left: -19px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
	opacity: 0;
}
.wp-block-woocommerce-attribute-filter .wc-block-attribute-filter-list input:checked ~ label:before {
  	background: #3BBD7E;
}
.wp-block-woocommerce-attribute-filter .wc-block-attribute-filter-list input:checked ~ label:after {
  	opacity: 1;
}
.wp-block-woocommerce-attribute-filter .wc-block-attribute-filter-list .wc-filter-element-label-list-count {
    opacity: 1;
}
/* End WC Filter */

/* Product Card */
.wc-block-grid__products .wc-block-grid__product {
	max-width: 100% !important;
    flex: 0 0 auto !important;
    width: calc(50% - 16px);
	background-color: #f8f8f9;
    box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
    border: 1px solid #e8e8e8;
	border-radius: 8px;
    transition: all .2s ease-out;
	margin: 0 8px 42px;
    padding: 28px !important;
}
.wc-block-grid__products .wc-block-grid__product:hover {
    border: 1px solid #3bc180;
}
.wc-block-grid__products .wc-block-components-product-image {
    margin: 0 0 32px;
}
.wc-block-grid__products .wc-block-components-product-image a {
	display: block;
}
.wc-block-grid__products .wc-block-components-product-image img {
	width: 100%;
}
.wc-block-grid__products .wc-block-components-product-sale-badge {
    background: #f8f8f9;
	border: 1px solid #3bc180;
	border-radius: 8px;
}
.wc-block-grid__products .wc-block-components-product-sale-badge span {
	color: #3bc180;
}
.wc-block-grid__products .wc-block-components-product-image .wc-block-components-product-sale-badge--align-right {
    right: 8px;
    top: 8px;
}
.wc-block-grid__products .wc-block-components-product-title {
	text-align: left;
    margin-bottom: 16px;
}
.wc-block-grid__products .wc-block-components-product-name {
	color: #33334f;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 3px;
	text-decoration: none;
    text-transform: uppercase;
}
.wc-block-grid__products .wc-block-components-product-price {
    color: #3c3b5c;
    font-size: 30px;
    line-height: 37px;
    font-weight: 300;
    text-align: left;
    margin-bottom: 12px;
}
.wc-block-grid__products .wc-block-components-product-price del {
    color: #9A9AAB;
    margin: 0 !important;
}
.wc-block-grid__products .wc-block-components-product-button .wc-block-components-product-button__button {
	width: 100%;
    display: inline-block;
    color: #3c3b5c !important;
    font-size: 18px;
    line-height: 34px;
    font-weight: 500;
    text-align: center;
    background-color: rgba(60,59,92,0) !important;
    border: 1px solid #3c3b5c;
    border-radius: 30px;
    padding: 5.12px 32px;
    margin-top: 4.8px !important;
    transition: all .25s ease;
}
.wc-block-grid__products .wc-block-components-product-button .wc-block-components-product-button__button:hover {
	color: #ffffff !important;
	background-color: #3c3b5c !important;
}

@media only screen and (max-width: 1024px) {
	.wc-block-grid__products .wc-block-grid__product {
		width: calc(100% - 16px);
	}
}
/* End Product Card */

/* Pagination */
.wc-block-pagination .wc-block-pagination-page {
	display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    color: #818a9d;
    font-size: 16px;
    line-height: 36px;
    font-weight: 500;
    border-radius: 4px;
    transition: all .3s ease;
    padding: 0;
    opacity: .7;
}
.wc-block-pagination .wc-block-pagination-page:hover {
	opacity: 1;
}
.wc-block-pagination .wc-block-pagination-page.wc-block-pagination-page--active {
    background-color: #3bc180;
    color: #fff;
    opacity: 1;
}
/* End Pagination */
/*## End Shop Page ##*/


/*## Product Category Page ##*/
.product_archive>.site {
    max-width: 1314px !important;
    padding: 74px 32px 64px;
    margin: 0 auto;
}
.product_archive .site-content {
	display: flex !important;
    flex-flow: wrap;
	margin-left: -70px
}
.product_archive .site-main,
.product_archive .inside-left-sidebar {
	margin: 0 !important;
}
.archive .sidebar,
.archive .content-area {
	padding-left: 70px;
}

/* Sidebar */
.archive .sidebar {
    width: 27%;
}
.archive .sidebar .widget {
    padding: 0;
	margin-bottom: 42px;
}
.archive .sidebar .widget-title {
    color: #777;
    font-size: 15px;
    line-height: 19px;
    font-weight: 400;
    letter-spacing: .25rem;
    text-transform: uppercase;
	margin: 0 0 22px !important;
}
.archive .sidebar .widget-title:after {
    content: '';
    display: block;
    height: 3px;
    width: 30px;
    background: rgba(0,0,0,.1);
    margin-top: 12.8px;
}
.archive .sidebar .widget ul li {
    display: flex;
    align-items: center;
	justify-content: space-between;
    margin-bottom: 6px;
    padding-bottom: 6px;
	border-bottom: 1px solid #ececec;
}
.archive .sidebar .widget ul li:before,
.archive .sidebar .widget ul li:after {
	display: none;
}
.archive .sidebar .widget ul li a,
.archive .sidebar .widget ul li .count {
	color: #777;
    font-size: 14px;
    line-height: 18px;
	text-decoration: none;
}
/* End Sidebar */

/* Content */
.archive .content-area {
    width: 73%;
}
.archive .content-area .inside-article {
	padding: 0;
}
.archive .woocommerce-ordering .orderby {
    color: #000000;
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    background-color: #f3f5f8;
    border: none;
    border-radius: 30px;
    padding: 13px 24px 13px 16px;
    appearance: none;
    background-image: url(/wp-content/themes/my-job-search/assets/img/icon-select-dropdown.svg) !important;
    background-repeat: no-repeat,repeat !important;
    background-position: right 12px top 50%,0 0 !important;
    background-size: 0.65em auto,100% !important;
    cursor: pointer;
}
.archive .woocommerce-ordering:after {
	display: none;
}
.archive .woocommerce-result-count {
    text-align: right;
}
.archive .products {
    display: flex !important;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    margin: 0 -8px 16px;
    background-clip: padding-box;
    grid-gap: 0 !important;
}
.archive .products .product {
    max-width: 100% !important;
    flex: 0 0 auto !important;
    width: calc(50% - 16px) !important;
    background-color: #f8f8f9;
    box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    transition: all .2s ease-out;
    margin: 0 8px 42px !important;
    padding: 28px !important;
}
.archive .products .product a {
	text-decoration: none;
}
.archive .products .product .wc-product-image {
	margin: 0 0 16px;
}
.archive .inside-wc-product-image,
.archive .inside-wc-product-image img {
    width: 100%;
}
.archive .woocommerce-loop-product__title {
	color: #33334f;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 16px;
}
.archive .products .product .star-rating {
    display: none;
}
.archive .products .product .price {
	display: block;
    color: #3c3b5c;
    font-size: 30px;
    line-height: 37px;
    font-weight: 300;
    text-align: left;
    margin-bottom: 12px;
}
.archive .products .product .price del {
    color: #9A9AAB;
    margin: 0 !important;
}
.archive .products .product .button {
    width: 100%;
    display: inline-block;
    color: #3c3b5c !important;
    font-size: 18px;
    line-height: 34px;
    font-weight: 500;
    text-align: center;
    background-color: rgba(60,59,92,0) !important;
    border: 1px solid #3c3b5c;
    border-radius: 30px;
    padding: 5.12px 32px;
    margin-top: 4.8px !important;
    transition: all .25s ease;
}
.archive .products .product .button:hover {
    color: #ffffff !important;
    background-color: #3c3b5c !important;
}
.archive .products .product .button:last-child {
    margin-bottom: 12px;
}
/* End Content */

@media only screen and (max-width: 1024px) {
	.archive .sidebar {
		width: 42%;
	}
	.archive .content-area {
		width: 58%;
	}
	.archive .products .product {
		width: 100% !important;
	}
}
@media only screen and (max-width: 767px) {
	.product_archive>.site {
		padding: 54px 24px 32px;
	}
	.archive .sidebar {
		width: 100%;
	}
	.archive .site-content {
		flex-direction: column-reverse;
	}
	.archive .wc-columns-container {
		display: flex;
		flex-flow: wrap;
	}
	.archive .woocommerce-ordering {
		float: unset;
		width: 160px;
	}
	.archive .woocommerce-result-count {
		display: inline-block;
	}
}
/*## End Product Category Page ##*/


/*## Single Product Page ##*/
.single--product>.site {
    width: 100%;
    max-width: 100%;
}
.single--product>.site .inside-article {
	padding: 0;
}
.single--product .site-main {
	margin: 0;
}
.single--product .site-main .gb-container-75380f14 p {
    color: #ffffff !important;
    text-align: left;
}
.single--product .woocommerce-notices-wrapper .woocommerce-message,
.single--product .woocommerce-notices-wrapper .woocommerce-error {
    width: 100%;
    display: flex;
	flex-flow: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    background-color: #FFFFFF;
    border: 5px solid #99b207;
    border-radius: 8px;
    padding: 10px 32px;
    margin: 0 0 -6px;
}
.single--product .woocommerce-notices-wrapper .woocommerce-error li {
	color: red;
    width: 100%;
    display: flex;
	flex-flow: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
	align-items: center;
}
.single--product .woocommerce-notices-wrapper .woocommerce-message .button,
.single--product .woocommerce-notices-wrapper .woocommerce-error .button {
    color: #ffffff !important;
    background-color: #3BC180 !important;
    border-radius: 30px;
    padding: 10px 20px !important;
}
.single--product .woocommerce-notices-wrapper .woocommerce-message .button:hover,
.single--product .woocommerce-notices-wrapper .woocommerce-error .button:hover {
    background: #49c78a !important;
}
.single--product .woocommerce-notices-wrapper .woocommerce-message::after {
    display: none;
}
@media only screen and (max-width: 767px) {
	.single--product .woocommerce-notices-wrapper .woocommerce-message,
	.single--product .woocommerce-notices-wrapper .woocommerce-error {
		flex-direction: column-reverse;
		justify-content: center;
		text-align: center;
	}
	.single--product .woocommerce-notices-wrapper .woocommerce-error li {
		flex-direction: column-reverse;
		text-align: center;
		justify-content: center;
		align-items: center;
	}
	.single--product .woocommerce-notices-wrapper .woocommerce-message .button,
	.single--product .woocommerce-notices-wrapper .woocommerce-error .button {
		margin: 8px 0 4px;
	}
}

/* Header Section */
.single--product .product__body {
    position: relative;
    background: linear-gradient(90deg,#f7f9fc 55.69%,#fff 55.69%);
    border-bottom: 1px solid #ececec;
}
.single--product .product__body .container {
    max-width: 1102px;
    display: flex;
    flex-flow: wrap;
	justify-content: space-between;
    padding: 74px 32px;
    margin: 0 auto;
}

/* Gallery */
.single--product .woocommerce-product-gallery {
	position: relative;
    width: 50%;
    padding-right: 8px;
	margin: 0;
}
.single--product .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    font-size: 2em;
    z-index: 9;
    width: 36px;
    height: 36px;
    background: #fff;
    text-indent: -9999px;
    border-radius: 100%;
    box-sizing: content-box;
}
.single--product .woocommerce-product-gallery__trigger:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid #9e9e9e;
    border-radius: 100%;
    position: absolute;
    top: 9px;
    left: 9px;
    box-sizing: content-box;
}
.single--product .woocommerce-product-gallery__trigger::after {
    content: "";
    display: block;
    width: 2px;
    height: 8px;
    background-color: #9e9e9e;
    border-radius: 6px;
    position: absolute;
    top: 19px;
    left: 22px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: content-box;
}
.single--product .woocommerce-product-gallery__wrapper {
    transition: all cubic-bezier(.795,-.035,0,1) .5s;
    margin: 0;
    padding: 0;
}
.single--product .woocommerce-product-gallery__image img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: none;
}
.single--product .woocommerce-product-gallery .flex-control-thumbs {
    overflow: hidden;
    zoom: 1;
    margin: 0;
    padding: 0;
}
.single--product .woocommerce-product-gallery .flex-control-thumbs li {
    width: 25%;
    float: left;
    margin: 0;
    list-style: none;
}
.single--product .woocommerce-product-gallery .flex-control-thumbs li:nth-child(4n+1) {
    clear: left;
}
.single--product .woocommerce-product-gallery .flex-control-thumbs li img {
	width: 100%;
    cursor: pointer;
    opacity: .5;
    margin: 0;
}
.single--product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active,
.single--product .woocommerce-product-gallery .flex-control-thumbs li img:hover {
    opacity: 1;
}
/* End Gallery */

/* Summary */
.single--product .summary {
    width: 30%;
	margin: 0 0 32px;
}
.single--product .breadcrumbs {
	display: flex;
    list-style-type: none;
	margin: 0 0 48px;
}
.single--product .breadcrumbs.breadcrumbs>li {
    color: #151515;
    font-size: 13px;
    line-height: 16px;
	text-transform: uppercase;
}
.single--product .breadcrumbs.breadcrumbs>li:after {
    content: '/';
    display: inline-block;
    color: #151515;
    margin: 0 8px;
}
.single--product .breadcrumbs.breadcrumbs>li:last-child:after {
	display: none;
}
.single--product .breadcrumbs.breadcrumbs>li a {
	color: inherit;
}
.single--product .product_title {
    color: #99b207;
    font-size: 23px;
    line-height: 28px;
    font-weight: 700;
    margin: 0 0 13px;
}
.single--product .product_title:after {
    content: '';
    height: 3px;
    width: 30px;
    display: block;
    margin-top: 24px;
    background: rgba(0,0,0,.1);
}
.single--product .price {
    font: 400 1.4375rem/1.2"Neue Einstellung",helvetica,arial,sans-serif;
    color: #111;
    font-size: 23px;
    line-height: 28px;
    margin: 23px 0 16px;
}
.single--product .price del {
    color: #9A9AAB;
    margin: 0 !important;
}
.single--product .woocommerce-product-details__short-description p:last-child {
    margin-bottom: 0;
}
.single--product .cart {
    margin-bottom: 20px;
}
.single--product .quantity.buttons-added {
	margin: 10px 0 0;
}
.single--product .quantity.buttons-added input {
    width: 140px;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 7px 16px;
    margin: 0 10px;
}
.single--product .quantity.buttons-added .plus,
.single--product .quantity.buttons-added .minus {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    color: #ffffff;
    text-decoration: none;
    background: #99b207;
    border-radius: 50%;
}
.single--product .quantity.buttons-added .plus {
	background: #3BC180;
}
.single--product .single_add_to_cart_button {
	width: 100%;
	max-width: 264px;
    color: #ffffff !important;
	font-size: 17px;
    line-height: 27px;
    font-weight: 500;
	text-align: center !important;
	min-width: 176px;
	padding: 11px 24px !important;
	border-radius: 40px;
	background-color: #3BC180 !important;
	transition: all .25s ease !important;
	margin-top: 24px;
}
.single--product .single_add_to_cart_button:hover {
	background-color: #49c78a !important;
}
.single--product .yith-wcwl-wishlistexistsbrowse {
    color: #777;
    font-size: 15px;
    line-height: 18px;
}
.single--product .single_add_to_wishlist {
	color: inherit;
	text-decoration: none;
}
.single--product .single_add_to_wishlist i {
	margin-right: 5px;
}
.single--product .product_meta {
    padding: 16px 0 0;
    margin: 6px 0 0;
}
/* End Summary */
/* End Header Section */

/* Tabs Section */
.single--product .woocommerce-tabs {
    max-width: 1102px;
    display: flex;
    flex-flow: wrap;
    padding: 72px 32px 20px;
    margin: 0 auto;
}
.single--product .woocommerce-tabs .tabs {
	color: #111;
    font-size: 13px;
    line-height: 16px;
	text-transform: uppercase;
	list-style: none;
	margin: 0;
}
.single--product .woocommerce-tabs .tabs li {
	display: inline-block;
	padding-right: 16px;
}
.single--product .woocommerce-tabs .tabs li a {
	color: inherit;
	text-decoration: none;
}
.single--product .woocommerce-tabs .panel {
	width: 100%;
    margin-top: 16px;
}
.single--product .woocommerce-tabs h2 {
    color: #33334f;
    font-size: 23px;
    line-height: 28px;
    font-weight: 700;
	margin: 16px 0;
}
.single--product .woocommerce-tabs table {
	text-align: left;
	border-radius: 6px;
	overflow: hidden;
}
.single--product .woocommerce-tabs table a {
	color: #3bc180;
	text-decoration: none;
}
.single--product .woocommerce-tabs table p:last-child {
	margin: 0;
}
.single--product .woocommerce-tabs table tr:nth-child(odd) {
	background: #F9F9F9;
}
.single--product .woocommerce-tabs table th,
.single--product .woocommerce-tabs table td {
	padding: 8px 16px;
}
.single--product .woocommerce-tabs table tr:first-child td {
    border-radius: 0 6px 0 0;
}
.single--product .woocommerce-tabs table tr:last-child th {
    border-radius: 0 0 0 6px;
}
.single--product .woocommerce-tabs table tr:last-child td {
    border-radius: 0 0 6px 0;
}
.single--product .woocommerce-tabs .reviews_tab {
	display: none !important;
}
/* End Tabs Section */

/* Similar Resumes Section */
.single--product .related.products {
    max-width: 1314px;
    padding: 72px 32px;
    margin: 72px auto 0;
    border-top: 1px solid #ececec;
}
.single--product .related.products h2 {
	text-align: center;
	margin-bottom: 48px;
}

/* Product Card */
.single--product .related.products .products {
    display: flex;
    flex-flow: row wrap;
	list-style: none;
    margin: -10px;
}
.single--product .related.products .products .product {
	max-width: 100% !important;
    flex: 0 0 auto !important;
    width: calc(33% - 16px);
	background-color: #f8f8f9;
    box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
    border: 1px solid #e8e8e8;
	border-radius: 8px;
    transition: all .2s ease-out;
	margin: 0 8px 42px;
    padding: 28px !important;
}
.single--product .related.products .products .product:hover {
    border: 1px solid #3bc180;
}
.single--product .related.products .products .product a {
	text-decoration: none;
}
.single--product .related.products .wc-product-image {
    margin: 0 0 16px;
}
.single--product .related.products .wc-product-image a {
	display: block;
}
.single--product .related.products .inside-wc-product-image,
.single--product .related.products .wc-product-image img {
	width: 100%;
}
.single--product .related.products .woocommerce-loop-product__title  {
    color: #33334f;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 16px;
}
.single--product .related.products .star-rating {
    display: none;
}
.single--product .related.products .price {
    display: block;
    color: #3c3b5c;
    font-size: 30px;
    line-height: 37px;
    font-weight: 300;
    text-align: left;
    margin-bottom: 12px;
}
.single--product .related.products .price del {
    color: #9A9AAB;
    margin: 0 !important;
}
.single--product .related.products .product .button {
    width: 100%;
    display: inline-block;
    color: #3c3b5c !important;
    font-size: 18px;
    line-height: 34px;
    font-weight: 500;
    text-align: center;
    background-color: rgba(60,59,92,0) !important;
    border: 1px solid #3c3b5c;
    border-radius: 30px;
    padding: 5.12px 32px;
    margin-top: 4.8px !important;
    transition: all .25s ease;
}
.single--product .related.products .product .button:hover {
	color: #ffffff !important;
	background-color: #3c3b5c !important;
}
.single--product .related.products .product .button:last-child {
    margin-bottom: 12px;
}

@media only screen and (max-width: 1024px) {
	.single--product .related.products .products .product {
		width: calc(50% - 16px);
	}
}
@media only screen and (max-width: 767px) {
	.single--product .related.products .products .product {
		width: calc(100% - 16px);
	}
}
/* End Product Card */
/* End Similar Resumes Section */

@media only screen and (max-width: 1024px) {
	.single--product .product__body {
		background: #ffffff;
	}
	.single--product .woocommerce-product-gallery,
	.single--product .summary {
		width: 100%;
	}
	.single--product .summary {
		margin: 32px 0 0;
	}
	.single--product .related.products {
		margin: 56px auto 0;
	}
}
@media only screen and (max-width: 767px) {
	.single--product .product__body .container {
		padding: 54px 24px;
	}
	.single--product .woocommerce-tabs {
		padding: 54px 24px 0px;
	}
	.single--product .woocommerce-tabs .tabs li {
		padding-bottom: 8px;
	}
	.single--product .related.products {
		padding: 54px 24px;
	}
}
/*## End Single Product Page ##*/


/*## Blog Page CSS ##*/
.blog .site.container,
.blog .site-content {
    display: block;
  	max-width: unset;
    width: 100%;
}
.blog .content-area {
  	width: 100%;
}
.blog .site-main {
  	margin: 0;
}
/* Hero Section */
.blog-hero {
    background: #ddf0fa;
    margin: 0;
}
.blog-hero .container {
    max-width: 1314px;
  	width: 100%;
    display: flex;
  	column-gap: 160px;
    padding: 0 32px 32px;
    margin: 0 auto;
	overflow: hidden;
}
.blog-hero__content  {
  	width: 55%;
	padding: 116px 0 0;
}
.blog-hero__media {
  	width: 45%;
    position: relative;
	padding: 0 24px;
}
.blog-hero__title {
	font-size: 55px;
    line-height: 65px;
  	letter-spacing: -.1rem;
}
.blog-hero__content span,
.right-hero__filters>span {
  	display: block;
  	color: #383e41;
  	font-size: 14px;
  	line-height: 20px;
  	font-weight: 700;
  	padding: 8px 0;
}
.blog-hero__form {
  	display: flex;
  	flex-flow: row wrap;
}
.blog-hero__form .form-field {
  	flex: 0 0 auto;
  	width: 58.33333%;
  	padding-right: 16px;
}
.blog-hero__form input[type="text"] {
	background-color: #fff;
	padding: 13.6px 16px;
	border-radius: 30px;
}
.blog-hero__form .form-field.form-field--submit {
  	flex: 0 0 auto;
  	width: 33.33333%;
}
.blog-hero__form input[type=submit] {
    width: 100%;
    padding: 17.6px 32px;
}
.blog-hero__form .form-field.form-field--submit .is-loading {
  	position: absolute;
  	left: 50%;
  	top: 50%;
  	margin-top: -9px;
  	margin-left: -15px;
}
.blog-hero__filters {
	max-width: 560px;
  	padding-top: 32px;
}
.blog-hero__filters>ul {
  	max-height: 144px;
    padding: 16px 0 0;
  	overflow: auto;
    margin: 0;
}
.blog-hero__filter {
  	display: inline-block;
  	color: #2f2f33;
  	font-size: 15px;
  	line-height: 16px;
  	font-weight: 400;
  	background-color: #fcfcfc !important;
	border-radius: 30px;
  	padding: 16px 20px;
  	margin: 0 16px 16px 0 !important;
  	transition: all .25s ease;
    cursor: pointer;
}
.blog-hero__filter:hover {
    opacity: .8;
	background: #f5f5f5;
}
.blog-hero__filter.is-active,
.right-hero__filter.is-active {
  	background-color: #3bc180 !important;
  	color: #fff;
  	cursor: default;
}
/* Scroll Bar */
.blog-hero__filters>ul::-webkit-scrollbar {
  	width: 8px;
}
.blog-hero__filters>ul::-webkit-scrollbar-track {
  	background: #cfe4ee; 
	border-radius: 16px;
}
.blog-hero__filters>ul::-webkit-scrollbar-thumb {
  	background: #3BC180; 
	border-radius: 16px;
}

/* Image */
.blog-hero__media .media-item {
    width: 200px;
    height: 360px;
    position: absolute;
    margin-right: 4rem;
    margin-left: auto;
}
.blog-hero__media .media-item--top-left {
    top: -89px;
    left: 0;
}
.blog-hero__media .media-item--bottom-left {
    top: 314px;
    left: 0;
}
.blog-hero__media .media-item--top-right {
    top: -146px;
    right: 0;
}
.blog-hero__media .media-item--bottom-right {
    top: 257px;
    right: 0;
}
.blog-hero__media .media-item--bottom-left:after,
.blog-hero__media .media-item--bottom-right:after {
    content: '';
    width: 188px;
    height: 240px;
    background-image: url(/wp-content/themes/my-job-search/assets/img/vector-graphic-3.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    position: absolute;
    top: -48px;
    left: -118px;
}
.blog-hero__media .media-item--bottom-right:after {
    background-image: url(/wp-content/themes/my-job-search/assets/img/vector-graphic-2.svg);
    top: -120px;
    right: -95px;
	left: unset;
}
.blog-hero__media .media-item img,
.blog-hero__media .media-item picture {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 100px;
}

@media only screen and (max-width: 1024px) {
  	.blog-hero .container {
        flex-flow: wrap;
        padding: 52px 32px 32px;
    }
    .blog-hero__content {
    	width: 100%;
		padding: 0;
    }
    .blog-hero__media {
    	display: none;
    }
	.blog-hero__filters>ul {
		max-height: 140px;
	}
}

@media only screen and (max-width: 767px) {
    .blog-hero .container {
    	padding: 52px 24px 32px;
    }
    .blog-hero__title {
    	font-size: 40px;
    	line-height: 44px;
    }
    .blog-hero__form .form-field {
    	width: 100%;
    	margin-bottom: 8px;
    }
    .blog-hero__form .form-field.form-field--submit {
    	width: 100%;
    }
    .blog-hero__filters>ul {
        max-height: 142px;
    }
}
/* End Hero Section */

/* Search Result */
.blog-results .container,
.archive-results .container {
    max-width: 1314px;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
	padding: 0 32px;
    margin: 0 auto;
}
.blog-results__title {
	width: 100%;
	margin-top: 56px;
}
.blog-hero__no-results {
    display: block;
	max-width: 600px;
    width: 100%;
	color: #99b207;
    font-size: 20px;
    line-height: 30px;
    margin: 0 auto;
    padding: 64px 32px;
    text-align: center;
    background-color: #DDF0FA;
}
.blog-hero__no-results {
	margin-top: 32px;
}

@media only screen and (max-width: 767px) {
	.blog-results .container,
	.archive-results .container {
		padding: 0 24px;
	}
}
/* End Search Result */

/* Featured Posts */
.blog-featured {
	max-width: 1314px;
    width: 100%;
    padding: 60px 32px 0;
	margin: 0 auto;
}
.blog-featured h2 {
	font-size: 38px;
    line-height: 44px;
    margin-bottom: 32px;
}
.post-card.post-card--wide {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    background-color: #fcfcfc;
	border-radius: 6px;
	overflow: hidden;
}
.post-card.post-card--wide:hover {
    outline: 1px solid #3bc180;
}

/* Image */
.post-card.post-card--wide .post-card__image {
	position: relative;
    width: calc(50% - 8px);
	min-height: 240px;
    margin-right: 4px;
}
.post-card.post-card--wide .post-card__image .post-card__image-inner,
.post-card.post-card--wide .post-card__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}
.post-card.post-card--wide .post-card__image span {
    position: absolute;
    left: 30px;
    top: 30px;
	color: #fff;
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
	background-color: #3bc180;
	padding: 0.38rem 0.45rem;
}

/* Content */
.post-card.post-card--wide .post-card__content {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 42px 54px;
}
.post-card.post-card--wide .post-card__content a {
	color: #575963;
	display: flex;
    flex-flow: row wrap;
	text-decoration: none;
}
.post-card.post-card--wide .post-card__categories {
    color: #a5a5a5;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
}
.post-card.post-card--wide .post-card__categories ul {
	list-style: none;
	margin: 0;
}
.post-card.post-card--wide .post-card__title {
	width: 100%;
    color: #151515;
    font-size: 43px;
    line-height: 48px;
    letter-spacing: -.01em;
    margin: 8px 0 16px;
}
.post-card.post-card--wide .post-card__date,
.post-card.post-card--wide .post-card__read-time {
    width: auto;
    color: #979fa7;
    font-size: 14px;
    line-height: 16px;
    margin-right: 32px;
}
.post-card.post-card--wide .post-card__excerpt {
	font-size: 14px;
	line-height: 20px;
    margin-top: 24px;
}
.post-card.post-card--wide .post-card__excerpt p:last-child {
    margin-bottom: 0;
}
.post-card.post-card--wide .post-card__button a {
	display: inline-block;
    color: #ffffff !important;
	font-size: 17px;
    line-height: 27px;
    font-weight: 500;
	text-align: center !important;
	min-width: 262px;
	padding: 11px 24px !important;
	border-radius: 40px;
	background-color: #3BC180 !important;
	transition: all .25s ease !important;
	margin-top: 18px;
}
.post-card.post-card--wide .post-card__button a:hover {
	background-color: #49c78a !important;
}

@media only screen and (max-width: 1024px) {
  	.post-card.post-card--wide .post-card__title {
		font-size: 30px;
		line-height: 33px;
	}
}
@media only screen and (max-width: 767px) {
	.blog-featured {
		padding: 60px 24px 0;
	}
	.post-card.post-card--wide .post-card__image,
	.post-card.post-card--wide .post-card__content {
		width: 100%;
	}
	.post-card.post-card--wide .post-card__content {
		padding: 32px 24px;
	}
}
/* End Featured Posts */

/* Recent Posts */
.blog .blog-posts,
.archive-posts {
  	padding-top: 80px;
}
.blog .blog-posts>.container,
.blog .blog-posts__list.container,
.archive .archive-posts {
    max-width: 1314px;
	padding: 0 32px;
	margin: 0 auto;
}
.archive .archive-posts {
    padding: 64px 32px 0;
}
.blog .blog-posts__list,
.archive .archive-posts>.container {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
}
.blog .blog-posts>.container>h2,
.blog .archive-posts>.container>h2 {
   font-size: 38px;
   line-height: 44px;
   margin-bottom: 32px;
}
.blog .post-card.post-card--browse>.inner {
    background-color: #DDF0FA;
    padding: 16px 50px 28px;
}
.blog .post-card.post-card--browse .post-card__title {
  	font-size: 36px;
  	line-height: 39px;
  	font-weight: 700;
    margin: 16px 0;
}
.blog .post-card.post-card--browse p {
  	margin-bottom: 24px;
}
.blog .post-card.post-card--browse>.inner a {
  	width: 100%;
    display: flex;
    align-items: center;
  	justify-content: space-between;
  	color: #575963;
  	font-size: 16px;
  	line-height: 28px;
    font-weight: 600;
	text-decoration: none;
  	background-color: #fff;
    padding: 16px 24px 16px 16px;
  	box-shadow: 0 1px 2px rgb(0 0 0 / 25%);
    margin-bottom: 16px;
}
.blog .post-card.post-card--browse>.inner a svg {
  	display: inline-block;
  	margin-left: 8px;
  	transition: all .25s ease;
}
.blog .post-card.post-card--browse>.inner a:hover svg {
  	transform: translateX(8px);
}
.pagination {
	display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0 64px;
}
.pagination .page-numbers {
	width: auto;
    color: #818a9d;
    font-size: 16px;
    line-height: 36px;
    font-weight: 500;
    border-radius: 4px;
    display: inline-block;
    transition: all .3s ease;
	text-decoration: none;
    border-radius: 4px;
    padding: 1px 14px;
    margin: 0 4px;
    border: none;
    float: left;
    opacity: .7;
}
.pagination .page-numbers:hover {
    opacity: 1;
}
.pagination .page-numbers.current {
    background-color: #3bc180;
    color: #fff;
    position: relative;
    opacity: 1;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    display: flex !important;
    padding: 0;
    margin: 0;
}
@media only screen and (max-width: 991px) {
	.blog .blog-posts {
		padding-top: 60px;
	}
	.blog .post-card.post-card--browse>.inner {
		padding: 16px 32px 28px;
	}
}
@media only screen and (max-width: 767px) {
	.blog .blog-posts {
		padding-top: 60px;
	}
	.blog .blog-posts>.container,
	.blog .blog-posts__list.container {
		padding: 0 24px;
	}
	.archive .archive-posts {
		padding: 40px 16px 0;
	}
	.blog .blog-posts .post-card--standard {
		width: 100%;
		margin: 0 0 32px;
	}
}
/* End Recent Posts */

/* Subscribe to our Newsletter */
.single-location-subscribe {
    max-width: 1314px;
	padding: 0 32px;
	margin: 0 auto;
}
.blog .subscribe,
.single-location-subscribe .subscribe {
    width: 100%;
    background-color: #ecf1f3;
    margin: 100px auto 100px;
    justify-content: space-between;
    border-radius: 8px;
    border: 1px solid #3bc180;
}
.single-location-subscribe .subscribe {
	margin: 100px auto 32px;
}
.blog .subscribe__form,
.single-location-subscribe .subscribe__form {
    position: relative;
    padding: 39px 76px;
}
.blog .subscribe__media,
.single-location-subscribe .subscribe__media {
    position: relative;
    right: 127px;
    bottom: 0;
}
.blog .subscribe__media-item,
.single-location-subscribe .subscribe__media-item {
    width: 127px;
    position: absolute;
}
.blog .subscribe__media-item img,
.single-location-subscribe .subscribe__media-item img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 7.9375rem 7.9375rem 0 0;
}
.blog .subscribe__media-item:nth-of-type(1),
.single-location-subscribe .subscribe__media-item:nth-of-type(1) {
    bottom: 0;
    right: 147px;
    height: 167px;
}
.blog .subscribe__media-item:nth-of-type(1):after,
.blog .subscribe__media-item:nth-of-type(2):after,
.single-location-subscribe .subscribe__media-item:nth-of-type(1):after,
.single-location-subscribe .subscribe__media-item:nth-of-type(2):after {
    content: '';
    width: 188px;
    height: 240px;
    background-image: url(/wp-content/themes/my-job-search/assets/img/vector-graphic-1.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    position: absolute;
    right: 73px;
    top: -108px;
}
.blog .subscribe__media-item:nth-of-type(2),
.single-location-subscribe .subscribe__media-item:nth-of-type(2) {
    right: 0;
    bottom: 0;
    height: 203px;
}
.blog .subscribe__media-item:nth-of-type(2):after,
.single-location-subscribe .subscribe__media-item:nth-of-type(2):after {
    background-image: url(/wp-content/themes/my-job-search/assets/img/vector-graphic-2.svg);
    width: 128px;
    left: 70px;
    top: -40px;
}

@media only screen and (max-width: 1234px) {
	.blog .subscribe__media,
	.single-location-subscribe .subscribe__media {
		display: none;
	}
}
@media only screen and (max-width: 767px) {
	.blog .subscribe,
	.single-location-subscribe .subscribe {
		margin: 24px auto 54px;
	}
	.blog .subscribe__form,
	.single-location-subscribe .subscribe__form {
		padding: 24px;
	}
	.single-location-subscribe {
		padding: 0 24px;
	}
}
/* End Subscribe to our Newsletter */
/*## End Blog Page CSS ##*/


/*## Blog Single Page CSS ##*/
.blog-single a {
	text-decoration: none;
}
.blog-single .site.grid-container {
  	max-width: 1314px;
  	padding: 0 32px;
	margin: 0 auto;
}
.blog-single .widget-area .widget {
  	padding: 0 !important;
}
.blog-single .sidebar {
  	width: 25%;
}
.blog-single .site-content .content-area {
  	width: 70%;
  	margin-left: 5%;
}
.blog-single .site-main {
    margin: 0;
}

@media only screen and (max-width: 1220px) {
  	.blog-single .sidebar {
    	width: 25%;
    }
    .blog-single .site-content .content-area {
    	width: 75%;
        margin: 0;
    	padding-left: 60px;
    }
}
@media only screen and (max-width: 768px) {
    .blog-single .site-content {
    	flex-direction: row-reverse;
    }
}
@media only screen and (max-width: 767px) {
    .blog-single .site.grid-container {
    	padding: 0 24px;
    }
    .blog-single .sidebar {
    	display: none;
    }
    .blog-single .site-content .content-area {
    	width: 100%;
    	padding: 0;
    }
}

/* TOC CSS */
.toc-widget {
	display: none;
}
.blog-single .toc-widget {
    display: block;
}
.toc_button {
  	display: flex;
	align-items: center;
  	justify-content: center;
  	border-radius: 50%;
  	width: 74px;
  	height: 74px;
  	background: #fff;
  	border: 1px solid #C8C8C8;
    transform: rotate(360deg);
  	transition: all .6s ease;
    cursor: pointer;
}
.toc_button img {
	width: 31px;
	height: 21px;
}
.toc_button.toc_button_click {
  	border: 3px solid #19382E;
  	transform: rotate(0);
}
.toc-widget,
.toc_button {
  	padding: 0px !important;
  	margin: 0px !important;
  	margin: 25px 0 32px !important;
}
.toc_widget_list {
	max-height: 300px;
    overflow-y: auto;
	opacity: 1;
    transition: all .6s ease;
}
.toc_widget_list.show_hide_toc {
  	height: 0px;
  	overflow: hidden;
}
.toc_widget_list.show_hide_toc {
    opacity: 0;
}
.toc_widget .widget-title {
	color: #000000 !important;
    font-size: 20px;
  	line-height: 23px;
  	font-weight: 700;
    text-transform: capitalize;
  	letter-spacing: unset;
    margin-bottom: 25px !important
}
.toc_widget_list {
  	margin: 0 !important;
}
.toc_widget_list ul li {
    list-style-type: circle;
}
.toc_widget_list a {
  	color: #053b85 !important;
  	font-size: 14px;
  	line-height: 22px;
  	text-decoration: underline;
  	margin-bottom: 17px !important;
  	display: block;
}
.mobile_toc {
  	display: none;
    margin: 20px 0 30px;
}

@media only screen and (max-width: 991px) {
	.toc_widget_list {
		max-height: 270px;
	}
}

@media only screen and (max-width: 767px) {
 	.post_author-card {
        width: 85%;
    }
    .post_to-top {
        width: 15%;
    }
    .mobile_toc {
        display: block;
        position: relative;
    }
	.toc-widget {
		margin: 25px 0 !important;
	}
	.toc_widget .widget-title {
		margin-bottom: 8px !important;
	}
    .toc_button {
        border: 3px solid #19382E;
        margin-bottom: 25px;
    }
    .toc_button.toc_button_click {
        border: 1px solid #C8C8C8;
        margin-bottom: 20px;
    }
    .mobile_toc .toc_acf_title {
        position: absolute;
        top: 28px;
        left: 94px;
    }
    .toc_widget_list {
        height: 0px;
        margin: 0;
        overflow: hidden;
    }
    .toc_widget_list.show_hide_toc {
        height: unset;
        margin-bottom: 10px;
    }
    .toc_widget_list {
        opacity: 0;
    }
    .toc_widget_list.show_hide_toc {
        opacity: 1;
    }
}
/* End TOC CSS */

/* Sidebar Explore CSS */
.post-sidebar__categories-list {
  	display: flex;
  	flex-flow: wrap;
}
.post-sidebar__category a {
  	color: #2f2f33;
  	font-size: 14px;
  	line-height: 24px;
  	list-style-type: none;
  	padding: 6px 12px;
  	margin: 0 4px 8px 0;
  	background: #dbdfff;
}
.post-sidebar__category a:hover {
  	opacity: .8;
}
.post-sidebar__category.post-sidebar__category--legal a {
    background: #dbdfff;
}
.post-sidebar__category.post-sidebar__category--companies a {
    background: #fdeede;
}
.post-sidebar__category.post-sidebar__category--housing a {
    background: #e8f4d5;
}
.post-sidebar__category.post-sidebar__category--programs a {
    background: #f8e8e7;
}
/* End Sidebar Explore CSS */

.blog-single .inside-article {
	position: relative;
  	padding: 32px 0 !important;
}
.blog-single .inside-article .featured-image.page-header-image-single img {
    width: 100%;
}
.blog-single .entry-title {
	color: #000000;
  	letter-spacing: -.1rem;
}

/* Meta */
.blog-single .entry-meta {
  	color: #313131;
  	font-size: 14px;
  	line-height: 20px;
  	margin-top: 16px;
  	padding-top: 16px;
  	border-top: 1px solid #ededed;
}
.blog-single .entry-meta .byline {
  	text-transform: capitalize;
}
.blog-single .entry-meta .byline:before {
  	content: '•';
 	display: inline;
  	margin: 0 4px;
}
.blog-single .author-bio {
  	margin-bottom: 16px;
  	padding-bottom: 16px;
  	border-bottom: 1px solid #ededed;
}
.blog-single .author-bio p {
  	color: #000000;
  	font-size: 14px;
  	line-height: 20px;
  	margin: 16px 0 0 0;
}

/* Title Box */
.affiliate_text_blog_title_box,
.aff__content {
  	margin: 32px 0;
  	background-color: #fdeede;
  	padding: 20px;
}
.affiliate_text_blog_title,
.aff__title {
  	color: #231d19;
  	font-size: 18px;
  	line-height: 27px;
  	font-weight: 700;
    padding-left: 28px;
    position: relative;
    margin: 0;
}
.affiliate_text_blog_title:before,
.aff__title:before {
  	content: "";
    width: 20px;
  	height: 20px;
  	display: inline-block;
  	background: url(/wp-content/uploads/2022/06/User-Support-Icon.svg);
  	margin: 5.6px 8px 0 0;
    position: absolute;
  	top: 0;
  	left: 0;
}
.affiliate_text_blog_title_box .user-support__link,
.aff__content .aff__link {
  	color: #000000;
  	font-size: 14px;
  	line-height: 30px;
  	text-decoration: underline;
  	display: inline-block;
  	margin-top: 12px;
  	transition: all .25s ease;
    padding-left: 28px;
}

/* Content */
.blog-single .entry-content>p,
.blog-single .entry-content>ul,
.blog-single .entry-content>ol {
  	color: #231d19;
  	font-size: 19px;
  	line-height: 30px;
}
.blog-single .entry-content h2 {
	color: #000000;
	font-weight: 700;
  	margin: 32px 0 16px;
}
.blog-single .entry-content h3 {
	color: #000000;
  	margin: 16px 0 8px;
}
.blog-single .entry-content>ul,
.blog-single .entry-content>ol {
    padding: 16px 0 25px 36px;
	margin: 0;
}
.blog-single .entry-content .wp-block-separator {
    border-color: #ece9e6;
    border: none;
    height: 0.5px;
    margin: 24px 0;
}
.blog-single .entry-content .wp-block-image {
    margin: 32px 0;
}
.blog-single .entry-content .is-type-video {
	margin: 32px 0 24px;
}

/* Navigation */
.blog-single .entry-meta .post-navigation {
    display: flex;
    flex-flow: wrap;
}
.blog-single .entry-meta .post-navigation a,
.blog-single .entry-meta .cat-links a {
	color: #575963;
}
.blog-single .entry-meta .post-navigation .nav-previous,
.blog-single .entry-meta .post-navigation .nav-next,
.blog-single .entry-meta .cat-links {
    width: 50%;
    padding: 8px;
    background: #F7F9FC;
    border: 1px solid #e5e6e9;
}
.blog-single .entry-meta .cat-links {
	width: 100%;
	text-align: center;
}
.blog-single .entry-meta .post-navigation .nav-next {
    text-align: right;
}
.blog-single .entry-meta .post-navigation .gp-icon {
    opacity: 1;
}
.blog-single .entry-meta .post-navigation .nav-next .gp-icon {
    margin-right: unset;
    margin-left: 0.6em;
	float: right;
}

/* Author Card */
.blog-single .post__author-card {
	display: flex;
    flex-flow: row wrap;
    background: #fdeede;
    padding: 32px 52px;
    margin: 32px 0;
}
.blog-single .post__author-card .author__information {
    width: 62.5%;
}
.blog-single .post__author-card .author__name {
  	color: #000000;
  	font-size: 18px;
  	line-height: 28px;
	font-weight: 400;
  	margin-bottom: 32px;
}
.blog-single .post__author-card .author__bio p {
  	color: #575963;
  	font-size: 14px;
  	line-height: 20px;
    margin: 16px 0 4px;
}
.blog-single .post__author-card .author__image {
    display: flex;
    flex-flow: row wrap;
    width: 37.5%;
    align-items: flex-start;
    justify-content: flex-end;
    margin: 0;
}
.blog-single .post__author-card .author__image img,
.blog-single .post__author-card .author__image picture {
    border-radius: 50%;
    width: 105px;
    height: 105px;
}
.post__to-top {
    position: absolute;
    top: auto;
    bottom: 64px;
    right: -64px;
    transition: all .25s ease;
}

@media only screen and (max-width: 1024px) {
	.post__to-top {
		right: 8px;
		bottom: 0;
	}
}
@media only screen and (max-width: 767px) {
    .blog-single .post__author-card {
		flex-direction: column-reverse;
		padding: 32px;
	}
	.blog-single .post__author-card .author__information {
		width: 100%;
		margin-top: 16px;
	}
	.blog-single .post__author-card .author__image {
		width: 100%;
		justify-content: flex-start;
	}
}

/* Explore More */
.blog-single .explore-post-header {
	color: #ffffff;
  	background: #daedf7;
  	padding: 32px;
  	position: relative;
  	overflow: hidden;
}
.blog-single .explore-post-header .container {
  	max-width: 1250px;
  	margin: 0 auto;
	position: relative;
    z-index: 2;
}
.blog-single .explore-post-header .post-header__back {
    color: #000;
    transition: all .2s ease-out;
}
.blog-single .explore-post-header .post-header__back:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 12px;
    background: url(/wp-content/themes/my-job-search/assets/img/arrow-left.svg);
    transition: all .3s ease;
    margin-right: 16px;
}
.blog-single .explore-post-header .post-header__back:hover {
    opacity: .7;
}
.blog-single .explore-post-header .post-header__back:hover:before {
    transform: translateX(-4px);
}
.blog-single .explore-post-header_title {
    color: #231d19;
    font-size: 29px;
    line-height: 44px;
    font-weight: 700;
    margin: 16px 0 48px;
}
.blog-single .explore-post-header_subtitle {
	color: #313131;
  	font-weight: 600;
  	font-size: 20px;
  	line-height: 28px;
  	margin-bottom: 24px;
}
.blog-single .explore-post-header_list-title {
	color: #575963;
  	font-size: 14px;
  	line-height: 20px;
  	margin-bottom: 8px;
}
.blog-single .explore-post-header_recent-posts,
.blog-single .explore-post-header_post {
  	margin: 0;
  	list-style: none;
}
.blog-single .explore-post-header_recent-posts a {
  	color: #000000;
  	font-size: 14px;
  	line-height: 30px;
  	text-decoration: underline;
  	transition: all .25s ease;
}
.blog-single .explore-post-header_recent-posts a:hover {
    opacity: .63;
}
.blog-single .explore-post-header_image_wrap {
	width: 560px;
    height: 100%;
    position: absolute;
	bottom: 0;
    right: -48px;
}
.blog-single .explore-post-header_image {
    width: 200px;
    position: absolute;
    bottom: -32px;
}
.blog-single .explore-post-header_image img {
	display: block;
	width: 100%;
	height: 100%;
    object-fit: contain;
    object-position: bottom;
	border-radius: 100px 100px 0 0;
}
.blog-single .explore-post-header_image:nth-of-type(1) {
    right: 221px;
    bottom: -48px;
}
.blog-single .explore-post-header_image:nth-of-type(1):after {
    content: '';
    width: 188px;
    height: 240px;
    background-image: url(/wp-content/themes/my-job-search/assets/img/vector-graphic-5.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    position: absolute;
    top: -32px;
    left: -118px;
}
.blog-single .explore-post-header_image:nth-of-type(2) {
    right: 0;
}

@media only screen and (max-width: 1024px) {
    .blog-single .explore-post-header {
    	padding: 32px 24px;
    }
    .blog-single .explore-post-header_image_wrap {
		bottom: -40px;
    	right: -120px;
    	opacity: .5;
    }
}


@media only screen and (max-width: 767px) {
    .blog-single .explore-post-header_image_wrap {
		display: none;
    }
}

/* Related Agencies & Posts */
.blog-single .related-posts {
	position: relative;
  	padding: 64px 32px;
}
.blog-single .related-posts>.container {
	max-width: 1250px;
	margin: 0 auto;
}
.blog-single .related-posts__title {
    color: #3c3b5c;
    text-align: center;
    margin-bottom: 12px;
}
.blog-single .related-posts__text {
    text-align: center;
}
.blog-single .related-posts__wrap {
	display: flex;
    flex-flow: row wrap;
    align-items: center;
	margin-top: 64px;
}
.blog-single .related-posts__wrap .post-card {
	outline: 1px solid #f2f2f2;
}
.blog-single .related-posts__wrap .post-card:hover {
    outline: 1px solid #3bc180;
}
.blog-single .related-posts__button {
    text-align: center;
	margin-top: 46px;
}
.blog-single .related-posts__button .button {
    font-size: 17px;
    line-height: 27px;
    font-weight: 500;
    text-align: center;
    padding: 9px 64px;
    border-radius: 30px;
}
@media only screen and (max-width: 991px) {
	.blog-single .related-posts__button .button {
		padding: 9px 48px;
	}
}
@media only screen and (max-width: 767px) {
	.blog-single .related-posts {
		padding: 50px 16px 24px;
	}
	.blog-single .related-posts__wrap {
		margin-top: 42px;
	}
	.blog-single .related-posts__button {
		margin-top: 24px;
	}
}

/* Comment Box */
.blog-single .comments-area {
  	padding: 0 0 64px !important;
}
.comments-area {
    max-width: 1264px;
	padding: 32px 32px 80px !important;
    margin: 0 auto;
}
.comments-area .comment-form {
    display: flex;
    flex-flow: wrap;
}
.comments-area .comment-form #author,
.comments-area .comment-form #email,
.comments-area .comment-form #url {
	width: calc(33.33% - 16px);
    margin: 8px;
}
.comments-area .comment-form-cookies-consent,
.comments-area .comment-form-comment,
.comments-area .comment-form>.form-submit {
    width: 100%;
    margin: 8px;
}
.comments-area .comment-form-cookies-consent {
    display: flex;
    align-items: self-start;
}
.comments-area .comment-form-cookies-consent input {
	margin-top: 8px;
}
@media only screen and (max-width: 991px) {
	.comments-area .comment-form-cookies-consent input {
		margin-top: 6px;
	}
}
@media only screen and (max-width: 767px) {
	.comments-area {
		padding: 32px 24px 80px !important;
	}
	.comments-area .comment-form #author,
	.comments-area .comment-form #email,
	.comments-area .comment-form #url {
		width: 100%;
		margin: 8px 0;
	}
	.comments-area .comment-form-cookies-consent,
	.comments-area .comment-form-comment,
	.comments-area .comment-form>.form-submit {
		margin: 8px 0;
	}
}
/*## End Blog Single Page CSS ##*/


/*## Blog Single Header2 CSS ##*/
.single.Header2 .site.container {
    padding: 84px 32px 0;
    max-width: 1350px;
    margin: 0 auto;
}
.single.Header2 .site-content {
    flex-direction: row-reverse;
}
.single.Header2 .site-content .content-area {
    width: 70%;
	margin: 0;
}
.single.Header2 .site-content .sidebar {
    width: 30%;
}
.single.Header2 .site-main {
    margin: 0;
}
.single.Header2 .site-main .inside-article {
    padding: 36px 40px 40px 0 !important;
}
.single.Header2 .featured-image {
    margin: 0 0 24px !important;
}
.single.Header2 .featured-image img {
    border-radius: 8px;
}
.single.Header2 .entry-header h1 {
    color: #212121;
    font-size: 36px;
    line-height: 55px;
    font-weight: 700;
    color: #212121;
}
/*# Title Box #*/
.single.Header2 .affiliate_text_blog_title_box {
	border-radius: 8px;
}
/*# End Title Box #*/

/*# Meta #*/
.single.Header2 .entry-meta {
    font-size: 16px;
    line-height: 19px;
    padding: 8px 0 0;
    margin: 0;
	border: none;
}
.single.Header2 .entry-meta .author {
    display: flex;
    padding-top: 24px;
}
.single.Header2 .entry-meta .author .author-pic {
    width: 56px;
    min-width: 56px;
}
.single.Header2 .entry-meta .author .author-pic img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
}
.single.Header2 .entry-meta .author .author-info {
    padding-left: 12px;
}
.single.Header2 .entry-meta .author .author-info a {
    color: #212121;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
	text-decoration: none;
}
.single.Header2 .entry-meta .author .author-info p,
.single.Header2 .entry-meta .author .author-info p a{
    font-size: 14px;
    line-height: 17px;
    padding-top: 8px;
}
/*# End Meta #*/

/*# Content #*/
/* Comments */
.single.Header2 .comments-area {
    padding: 40px 40px 40px 0 !important;
}
.single.Header2 .comments-area .comments-area {
    padding: 0 !important;
}
.single.Header2 .comment-form {
    display: flex;
    flex-flow: wrap;
}
.single.Header2 .comment-form input,
.single.Header2 .comment-form textarea {
    height: 48px;
    padding: 0 24px;
    border-radius: 8px;
}
.single.Header2 .comment-form input#author,
.single.Header2 .comment-form input#email,
.single.Header2 .comment-form input#url {
    width: calc(33% - 6px);
    margin: 4px;
}
.single.Header2 .comment-form .comment-form-comment {
    width: 100%;
}
.single.Header2 .comment-form textarea {
	width: 100%;
	height: 188px;
}
.single.Header2 .comment-form .comment-form-cookies-consent {
    width: 100%;
    align-items: center;
}
.single.Header2 .comment-form .comment-form-cookies-consent input {
    margin-top: 0;
}
/*# End Content #*/

/*# Sidebar #*/
.single.Header2 .inside-right-sidebar {
    position: sticky;
    top: 120px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 rgb(33 33 33 / 15%);
    margin-top: 36px;
    padding: 24px 24px 0;
}
.single.Header2 .inside-right-sidebar .widget-title {
    font-size: 17px;
    line-height: 17px;
    text-transform: unset;
}
.single.Header2 .inside-right-sidebar aside {
    padding: 0 !important;
	margin: 0;
}
/* TOC */
.single.Header2 .inside-right-sidebar .toc-widget {
    padding: 0;
}
.single.Header2 .inside-right-sidebar .toc-widget.widget_custom_html {
	display: none;
    border-top: 1px solid #dddddd;
    padding-top: 16px;
}
.single.Header2 .toc_button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 74px;
    height: 74px;
    background: #fff;
    border: 1px solid #C8C8C8;
    transform: rotate(360deg);
    transition: all .6s ease;
    cursor: pointer;
}
.single.Header2 .toc_button.toc_button_click {
    border: 3px solid #1D6DDB;
    transform: rotate(0);
}
.single.Header2 .toc_widget .widget-title {
    margin-bottom: 25px !important;
}
.single.Header2 .toc_widget_list {
    max-height: 180px;
    overflow-y: auto;
    opacity: 1;
    transition: all .6s ease;
}
.single.Header2 .toc_widget_list a {
    color: #212121 !important;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 17px;
    display: block;
}
.single.Header2 .toc_widget_list a:hover {
	color: #1d6ddb !important;
}
.single.Header2 .toc_widget_list.show_hide_toc {
    height: 0px;
    overflow: hidden;
    opacity: 0;
}
.single.Header2 .toc_widget_list::-webkit-scrollbar {
  	width: 6px;
}
.single.Header2 .toc_widget_list::-webkit-scrollbar-track {
  	background: #F1F1F1;
  	border-radius: 10px;
}
.single.Header2 .toc_widget_list::-webkit-scrollbar-thumb {
  	background: #C1C1C1; 
  	border-radius: 10px;
}
.single.Header2 .inside-right-sidebar #toc-widget-3 {
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    padding: 16px 0 !important;
}
.single.Header2 .mobile_toc,
.single.Header2 .inside-right-sidebar #toc-widget-3 .widget-title {
    display: none;
}
@media only screen and (max-width: 1200px) {
	.single.Header2 .mobile_toc {
		display: flex;
		flex-flow: wrap;
		align-items: center;
		justify-content: space-between;
	}
	.single.Header2 .mobile_toc .toc_area {
		width: 50%;
		position: relative;
	}
	.single.Header2 .mobile_toc .toc_area .toc-widget {
		margin: 0 !important;
	}
	.single.Header2.scroll-page-1300 .mobile_toc {
		padding: 12px 15px;
		position: fixed;
		top: 0;
		width: 100%;
		left: 0;
		z-index: 99;
		background: #fff;
		box-shadow: 0 2px 8px 0 rgb(0 0 0 / 15%);
		animation: smoothScroll 1s forwards;
		transition: position 0.5s ease;
		margin: 0;
	}
	.single.Header2 .toc_button {
		display: none;
	}
	.single.Header2 .sticky_toc_text_button.toc_button {
		display: block;
		width: unset;
		height: unset;
		border: none;
		font-size: 15px;
		line-height: 20px;
		font-weight: 600;
		transform: unset !important;
		margin: 0 !important;
	}
	.single.Header2 .toc_area #toc-widget-3 .widget-title {
		display: none;
	}
	.single.Header2 .toc_area #toc-widget-3 .toc_widget_list {
		width: 240px;
   	 	max-width: 240px;
		height: 0px;
		position: absolute;
		top: 38px;
		background: #ffffff;
		box-shadow: 0 2px 8px 0 rgb(0 0 0 / 15%);
		border-radius: 8px;
		padding: 20px;
		overflow: hidden;
		opacity: 0;
	}
	.single.Header2 .toc_area #toc-widget-3 .toc_widget_list.show_hide_toc {
		height: 260px;
    	max-height: 260px;
		overflow-y: auto;
		opacity: 1;
	}
	.single.Header2 .mobile_toc .cta_area {
		display: flex;
		align-items: center;
		flex-flow: wrap;
	}
	.single.Header2 .mobile_toc .cta_area .hosting-finder-button {
		margin-top: -6px;
	}
	.single.Header2 .mobile_toc .cta_area .hosting-finder-button a {
		height: unset !important;
		color: #ffffff !important;
		font-size: 14px !important;
		line-height: 16px !important;
		font-weight: 500 !important;
		text-align: center !important;
		min-width: 162px !important;
		padding: 8px 14px !important;
		border-radius: 24px !important;
		background: linear-gradient(180deg,#395903 0,#395903 100%) !important;
		transition: all .25s ease !important;
		margin-right: 14px;
	}
	.single.Header2 .mobile_toc .cta_area .social_share {
		margin-bottom: 4px;
	}
}
@media only screen and (max-width: 767px) {
	.single.Header2 .mobile_toc {
		justify-content: center;
	}
}
/* Sidebar Tools Cta */
.single.Header2 .sidebar-tools-cta .tool {
    display: flex;
    padding-bottom: 24px;
}
.single.Header2 .sidebar-tools-cta .tool .img-area img {
    max-width: 42px;
    min-width: 42px;
    width: 100%;
}
.single.Header2 .sidebar-tools-cta .tool .content {
    padding-left: 20px;
}
.single.Header2 .sidebar-tools-cta .tool .content a {
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
}
.single.Header2 .sidebar-tools-cta .tool .content p {
    font-size: 15px;
    line-height: 21px;
}
/* Share Bar */
.single.Header2 .inside-right-sidebar aside.widget_a2a_share_save_widget {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 -24px;
    background: #f7f7f7 !important;
    padding: 20px 24px !important;
}
.single.Header2 .inside-right-sidebar aside.widget_a2a_share_save_widget .widget-title {
    color: #212121;
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
	margin: 0;
}
.single.Header2 .addtoany_list,
.single.Header2 .addtoany_list a {
    font-size: 20px !important;
    line-height: 20px !important;
}
/*# End Sidebar #*/

/*# Responsive #*/
@media only screen and (max-width: 1200px) {
	.single.Header2 .site.container {
		padding: 54px 32px 0;
	}
	.single.Header2 .site-header {
		position: unset;
		box-shadow: unset;
	}
  	.single.Header2 .site-content .content-area {
		width: 100%;
		padding: 0 !important;
	}
	.single.Header2 .site-main .inside-article {
		padding: 0 !important;
	}
	.single.Header2 .sidebar {
		display: none;
	}
}
@media only screen and (max-width: 767px) {
	.single.Header2 .site.container {
		padding: 38px 24px 0;
	}
	.single.Header2 .entry-header h1 {
		font-size: 34px;
		line-height: 46px;
		margin-bottom: 8px;
	}
	.single.Header2 .footer-elements {
		padding: 48px 24px 0;
	}
	.single.Header2 .footer-elements h2 {
		margin-bottom: 20px;
	}
	.single.Header2 .footer-elements .post-card {
		width: 100%;
		margin: 0 0 24px;
	}
	.single.Header2 .comments-area {
		padding: 30px 0 !important;
	}
}
/*## End Blog Single Header2 CSS ##*/


/*## Blog Archive Page CSS ##*/
.blog_archive .blog-hero__content {
    padding: 32px 0 0;
}
.blog_archive .archive-header__back {
    margin-bottom: 72px;
}
@media only screen and (max-width: 1024px) {
	.blog_archive .blog-hero .container {
		padding: 0px 32px 32px;
	}
	.blog_archive .archive-header__back {
		margin-bottom: 52px;
	}
}
@media only screen and (max-width: 767px) {
	.blog_archive .blog-hero .container {
		padding: 0px 24px 32px;
	}
	.blog_archive .archive-header__back {
		margin-bottom: 36px;
	}
}
/*## End Blog Archive Page CSS ##*/


/*## Resume Examples Page ##*/
/* Numbers Section */
.numbers_sec>.gb-inside-container>.gb-container {
	box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
}
/* End Numbers Section */

/* Examples Products Section */
.examples_products .featured_products_cards_wrap .products,
.examples_products .woocommerce.columns-2 .products li {
	width: 100% !important;
	margin: 0 !important;
}
/* End Examples Products Section */
/*## End Resume Examples Page ##*/


/*## How It Works Page ##*/
.checkerboard_item,
.checkerboard_item figure {
	width: 100%;
    box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
	overflow: hidden;
	margin: 0;
}
.checkerboard_item p {
	color: #606060;
	font-size: 19px;
	line-height: 30px;
	margin: 0;
}
.checkerboard_item strong {
    display: inline-block;
    color: #000000;
    margin: 24px 0 12px;
}
.checkerboard_item figure,
.checkerboard_item img {
    border-radius: 32px !important;
}
.checkerboard_item .gb-grid-column {
	height: initial !important;
}
.checkerboard_item .gb-inside-container,
.checkerboard_item .wp-block-image {
    height: 100%;
}
.checkerboard_item img,
.checkerboard_item picture {
    height: 100%;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1024px) {
	.checkerboard_item:nth-child(odd)>.gb-inside-container>.gb-grid-wrapper {
		flex-direction: column-reverse;
	}
}
@media only screen and (max-width: 991px) {
	.checkerboard_item p {
		font-size: 16px;
		line-height: 25px;
	}
}
/*## End How It Works Page ##*/


/*## About Page ##*/
/* Checkerboard Section */
.social_share_box {
    max-width: 512px;
}
.social_share_box .facebook_btn:before,
.social_share_box .twitter_btn:before {
    content: "";
    display: inline-block;
    width: 19px;
    height: 19px;
    background-repeat: no-repeat !important;
    background-position: center !important;
    margin-top: -3px;
    margin-right: 3.5px;
}
.social_share_box .facebook_btn:before {
	background: url(/wp-content/uploads/2022/06/Facebook-Icon-White.svg);
}
.social_share_box .twitter_btn:before {
	width: 21px;
    height: 21px;
	margin-top: -1px;
	background: url(/wp-content/uploads/2022/06/Twitter-Icon-White.svg);
}
.about_checkerboard_sec .checkerboard_item figure,
.about_checkerboard_sec .checkerboard_item img {
    border-radius: 200px !important;
}

@media only screen and (max-width: 991px) {
	.about_checkerboard_sec .checkerboard_item figure,
	.about_checkerboard_sec .checkerboard_item img {
		border-radius: 32px !important;
	}
}
/* End Checkerboard Section */

/* Team Section */
.about_team_sec .wp-block-image,
.about_team_sec .wp-block-image figure {
	width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;
} 
.about_team_sec .wp-block-image img {
	max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_team_sec p {
	color: #151515;
	font-size: 16px;
	line-height: 30px;
	text-align: center;
}
/* End Team Section */

.about_testimonial_sec .gb-inside-container,
.about_testimonial_sec .gb-container {
    height: 100%;
}
/*## End About Page ##*/


/*## Newsletter Page ##*/
.sign-up-hero__form {
	color: #202020;
    text-align: center;
}
.sign-up-hero__form .avatar {
	border-radius: 50%;
}
.sign-up-hero__form .gform_title {
    display: none;
}
.sign-up-hero__form .gform_fields .gfield {
    margin-bottom: 20px;
}
.sign-up-hero__form #gform_fields_login label {
    display: block;
    color: #202020;
    font-size: 12px;
    line-height: 14px;
	font-weight: 600;
    letter-spacing: .0112em;
    text-transform: uppercase;
    text-align: center;
	margin-bottom: 10px;
}
.sign-up-hero__form #gform_fields_login input {
    background: #fff;
    border: 1px solid #ebebeb;
    box-sizing: border-box;
    border-radius: 8px;
}
.sign-up-hero__form #gform_fields_login .gchoice label {
    display: inline-block;
    font-weight: 500;
	margin: 0;
}
.sign-up-hero__form .gform_footer {
    text-align: center;
}
.sign-up-hero__form .gform_footer .gform_button  {
    display: inline-block;
    color: #3bc180;
    font-size: 15px;
    width: 180px;
    padding: 13.4px 16px !important;
	background: #fff !important;
    text-transform: uppercase;
}
.sign-up-hero__form .gf_login_links {
    display: flex;
    justify-content: space-between;
	margin-top: 32px;
}
.sign-up-hero__form .gf_login_links br {
    display: none;
}
/*## End Newsletter Page ##*/


/*## Company Page ##*/
/* Header Section */
.companie_header_sec>.gb-inside-container {
	background-image: url(/wp-content/themes/my-job-search/assets/img/pattern-2.svg);
    background-position: top -108px right 48px;
	background-repeat: no-repeat;
}

/* Subscribe Form Section */
.subscribe__form form {
    display: flex;
    flex-wrap: nowrap;
}
.subscribe__form .gfield_label {
    display: none;
}
.subscribe__form .gform_wrapper .gfield input[type=text] {
    font-size: 15px;
    line-height: 16px;
    padding: 16px;
    height: 46px;
    width: 265px;
    border-radius: 30px;
    border: 1px solid #dce1e8;
	background-color: #fff;
}
.subscribe__form .gform_wrapper .gfield input[type=text]::placeholder {
    color: #000000;
    opacity: 0.7;
}
.subscribe__form .gform_footer {
    position: relative;
}
.subscribe__form .gform_footer::after {
    content: 'No spam, ever.';
    display: block;
	top: 0;
    left: 100%;
	margin-top: 10px;
    margin-left: 16px;
    position: absolute;
    white-space: nowrap;
    color: #000;
}
.subscribe__form .validation_message {
    position: absolute;
    bottom: -30px;
    right: 0;
    top: auto;
}
.companie_page_hero_img img {
	max-width: 127px;
}

@media only screen and (max-width: 767px) {
	.subscribe__form form {
		display: block;
	}
	.subscribe__form .gform_wrapper .gfield input[type=text] {
		width: 100% !important;
	}
	.subscribe__form .gform_footer input[type="submit"] {
		width: 100%;
		margin-top: 12px;
	}
	.subscribe__form .gform_footer::after {
		position: static;
		text-align: center;
		margin-left: 0;
	}
}

/* Companies Search */
.companies__search {
	max-width: 1314px;
  	margin: 0 auto;
  	padding: 0 32px 80px;
}
.companies__title {
	color: #000000;
  	font-size: 29px;
  	line-height: 44px;
  	font-weight: 600;
  	text-align: center;
  	margin-bottom: 56px;
}
.companies__search-top {
  	display: flex;
  	flex-flow: row wrap;
  	flex: 0 0 auto;
  	width: 83.33333%;
  	margin: 0 auto;
}
.companies__search-top .form-field--has-border {
  	width: 41.66667%;
  	margin-right: 16px;
}
.companies__search-top .form-field--has-border input[type=text] {
	width: 100%;
	padding: 15px 16px;
  	background-color: #fff !important;
  	border: 1px solid #dce1e8 !important;
	border-radius: 30px;
}
.companies__search-top .form-field--has-border input[type=text]::placeholder {
    opacity: .8;
}
.companies__search-top .form-field--has-submit {
  	width: 12.5%;
}
.companies__search-top .form-field--has-submit input[type=submit] {
  	display: block;
  	width: 100%;
  	padding: 12.8px 16px !important;
}
.companies__search-bottom {
    display: flex;
  	flex-flow: row wrap;
  	flex: 0 0 auto;
  	width: 83.33333%;
  	align-items: center;
  	justify-content: center;
    margin: 16px auto 0;
}
.companies__search-bottom .companies__search-filter {
    width: 8%;
  	color: #555c6c;
  	font-size: 14px;
  	line-height: 32px;
  	font-weight: 500;
  	margin-right: 8px;
}
.companies__search-select {
  	display: flex;
  	flex-flow: row wrap;
}
.companies__search-select .form-field.form-field--select {
    width: 284px;
  	display: flex;
  	align-self: center;
  	align-items: center;
  	justify-content: space-between;
    background-color: #F3F5F8;
  	padding: 0px 12px 0px 16px;
	border-radius: 30px;
  	margin-right: 16px;
}
.companies__search-select .form-field.form-field--select>label {
	color: #000000;
  	font-size: 14px;
  	line-height: 30px;
	font-weight: 600;
}
.companies__search-select .form-field.form-field--select select {
    display: inline-block;
    max-width: 150px;
    width: 100%;
    height: 44px;
    color: #575963;
    font-size: 14px;
    line-height: 30px;
	font-weight: 500;
    box-sizing: border-box;
    border: none;
    appearance: none;
    margin: 0;
    padding: 0.6em 1.4em 0.5em 0.8em;
    background-color: #f3f5f8 !important;
    background-image: url(/wp-content/themes/my-job-search/assets/img/icon-select-dropdown.svg) !important;
    background-repeat: no-repeat,repeat !important;
    background-position: right 0.7em top 50%,0 0 !important;
    background-size: 0.65em auto,100% !important;
	cursor: pointer;
}
.companies__search-bottom .companies__search-toggle {
    display: flex;
    flex-flow: row wrap;
    margin-top: 16px;
    margin-left: 9%;
}
.companies__search-bottom .form-field.form-field--toggle {
    width: auto;
    display: flex;
    flex-flow: row wrap;
    flex: 0 0 auto;
    padding-right: 12px;
    margin-right: 16px;
}

@media only screen and (max-width: 1024px) {
	.companies__search-top {
    	width: 100%;
  	}
    .companies__search-top .form-field--has-border {
    	width: 41%;
    }
    .companies__search-top .form-field--has-submit {
    	width: 13%;
    }
	.companies__search-bottom {
		width: 100%;
	}
    .companies__search-bottom .companies__search-filter {
    	width: 14%;
        margin-bottom: 8px;
    }
    .companies__search-select .form-field.form-field--select {
        width: 275px;
    }
}
@media only screen and (max-width: 767px) {
    .companies__search {
    	padding: 0 24px 50px;
    }
    .companies__title {
    	margin-bottom: 36px;
    }
    .companies__search-bottom {
        margin-top: 8px !important;
    }
    .companies__search-bottom,
    .companies__search-top .form-field--has-border,
    .companies__search-top .form-field--has-submit,
    .companies__search-bottom .companies__search-filter,
    .companies__search-select .form-field.form-field--select {
    	width: 100%;
        margin: 0 0 16px;
    }
    .companies__search-bottom .companies__search-filter {
    	margin-bottom: 8px;
    }
}

/* Featured Companies */
.companies__featured {    
    background-color: #F7F9FC;
  	border-top: 1px solid #e0e0e0;
  	padding: 56px 32px;
}
.companies__featured .container {
    display: flex;
  	flex-flow: row wrap;
    max-width: 1200px;
  	margin: 0 auto;
	gap: 32px;
}
.companies__featured-title {
	color: #000000;
    width: 100%;
  	font-size: 30px;
  	line-height: 44px;
  	font-weight: 600;
  	text-align: center;
  	margin-bottom: 24px;
}
.companies__featured .company-card {
    min-width: 0;
    width: calc(33.33333% - 22px);
    position: relative;
    display: flex;
    flex-flow: row wrap;
    flex: 0 0 auto;
    background: #ffffff;
    box-shadow: 0 4px 30px 0 rgb(30 30 60 / 13%);
    border-radius: 32px !important;
    overflow: hidden;
    margin: 0;
}
.companies__featured .company-card:hover {
	box-shadow: 0 4px 30px 0 rgb(30 30 60 / 25%);
}
.companies__featured .company-card:first-of-type {
  	margin-left: 0;
}
.companies__featured .company-card:last-of-type {
  	margin-right: 0;
}
.companies__featured .company-card__top {
    width: 100%;
  	display: flex;
  	flex-flow: row wrap;
  	flex: 0 0 auto;
  	align-self: flex-start;
  	padding: 32px;
  	flex-grow: 1;
  	background-color: #fff;
}
.companies__featured .company-card__logo {
    width: 33.33333%;
    height: 100px;
  	display: flex;
  	flex-flow: row wrap;
  	flex: 0 0 auto;
  	justify-content: center;
  	align-items: center;
  	border: 1px solid #dce1e8;
    padding: 10px;
}
.companies__featured .company-card__logo picture {
    display: flex;
}
.companies__featured .company-card__summary {
  	flex: 0 0 auto;
  	width: 66.66667%;
    color: #000000;
    font-size: 12px;
  	line-height: 12px;
  	font-weight: 400;
  	padding-left: 32px;
}
.companies__featured .company-card__rating {
  	width: 100%;
  	display: flex;
  	flex-flow: row wrap;
  	align-items: center;
    color: #313131;
  	font-size: 32px;
  	line-height: 32px;
  	font-weight: 700;
  	margin-bottom: 16px;
}
.companies__featured .company-card__rating img {
  	display: inline-block;
  	margin-left: 8px;
  	width: 24px;
  	height: 24px;
}
.companies__featured .company-card__review-count {
  	display: block;
  	margin-bottom: 8px;
}
.companies__featured .company-card__job-count {
    display: block;
  	border-top: 1px solid #dce1e8;
  	padding-top: 8px;
}
.companies__featured .company-card__company-name {
  	width: 100%;
    color: #313131;
    font-size: 18px;
  	line-height: 23px;
  	font-weight: 600;
  	margin: 24px 0 8px;
}
.company-card__requirements {
	margin: 0;
}
.company-card__requirement {
    display: flex;
    flex-direction: row-reverse;
	align-items: center;
    justify-content: flex-end;
    list-style-type: none;
	margin-bottom: 6px;
}
.company-card__requirement .icon {
    width: 18px;
    height: 18px;
    display: block;
    margin-right: 6px;
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
}
.company-card__requirement.company-card__requirement--true .icon {
    background-image: url(/wp-content/themes/my-job-search/assets/img/icon-filled-check.svg);
}
.company-card__requirement.company-card__requirement--false .icon {
    background-image: url(/wp-content/themes/my-job-search/assets/img/icon-filled-x.svg);
}
.company-card__requirement .label {
    color: #575963;
    font-size: 13px;
    line-height: 22px;
}
.companies__featured .company-card__company-link {
    position: relative;
  	display: block;
  	width: 100%;
    color: #fff;
  	font-size: 16px;
  	line-height: 14px;
    font-weight: 400;
    text-align: center;
    background: #3bc180 !important;
  	border: 1px solid #3bc180 !important;
	border-radius: 30px;
    padding: 12px 24px;
  	margin-top: 8px;
  	margin-bottom: 70px;
    transition: all .25s ease;
}
.companies__featured .company-card__company-link:hover,
.companies__featured .company-card__company-link:focus {
    background: #49c78a !important;
  	border: 1px solid #49c78a !important;
}
.companies__featured .company-card__bottom {
  	flex: 0 0 auto;
  	width: 100%;
  	align-self: flex-end;
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	text-align: center;
	text-decoration: none;
  	background-color: #f7f9fc;
  	padding: 22px 0;
  	border-top: 1px solid #e7e9ec;
}
.companies__featured .company-card__link {
  	display: inline-block;
	color: #313131 !important;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
	text-decoration: none;
  	background: transparent !important;
  	border: none;
  	padding: 0;
  	margin: 0;
}
.companies__featured .company-card__link .icon {
    display: inline-block;
    margin-left: 8px;
    width: 20px;
    height: 16px;
    background-image: url(/wp-content/uploads/2022/06/Right-Arrow-Icon-Black.svg);
    background-repeat: no-repeat;
    background-position: 0 5px;
    transition: all .25s ease;
}
.companies__featured .company-card__link:hover .icon {
    transform: translateX(8px);
}
.companies__featured.is-hidden {
  	padding: 0;
  	max-height: 0;
  	overflow: hidden;
  	z-index: -1;
}
@media only screen and (max-width: 1024px) {
    .companies__featured .container {
        justify-content: center;
    }
    .companies__featured .company-card {
    	width: calc(50% - 16px);
    }
}
@media only screen and (max-width: 767px) {
    .companies__featured {
    	padding: 56px 24px;
    }
    .companies__featured-title {
    	margin-bottom: 4px;
    }
    .companies__featured .company-card {
    	width: 100%;
    }
}

/* Companies List */
.companies__list {
  	padding: 16px 32px 48px;
}
.companies__list .container {
    display: flex;
  	flex-flow: row wrap;
  	max-width: 1064px;
  	margin: 0 auto;
}
.companies__list-title {
  	width: 78%;
	color: #000000;
  	font-size: 18px;
  	line-height: 28px;
  	font-weight: 500;
  	margin: 16px 0 24px;
}
.companies__list-order {
    width: 22%;
  	display: flex;
    align-items: center;
  	align-self: center;
  	flex-flow: row wrap;
  	justify-content: space-between;
  	background-color: #f3f5f8;
	border-radius: 30px;
  	padding: 8px 16px;
}
.companies__list-order label {
  	color: #000000;
  	font-size: 14px;
  	line-height: 28px;
  	font-weight: 600;
}
.companies__list-order select {
  	display: inline-block;
  	max-width: 110px;
    width: 100%;
  	height: auto;
    color: #000000;
  	font-size: 13px;
  	line-height: 13px;
  	font-weight: 500;
  	text-align: left;
  	padding-right: 12px;
    padding: 0;
  	border: 0;
  	background-color: transparent;
	cursor: pointer;
}
.companies__results {
  	width: 100%;
	overflow: hidden;
}
.company-row {
  	width: 100%;
  	display: flex;
  	flex-flow: row wrap;
  	flex: 0 0 auto;
    max-height: none;
    align-items: center;
  	padding: 24px 0;
  	border-top: 1px solid #dce1e8;
  	position: relative;
  	transition: all .25s ease;
  	opacity: 1;
}
.company-row.is-hidden {
    opacity: 0;
    max-height: 0;
    padding: 0;
}
.company-row.is-hidden:hover {
	opacity: 0;
}
.company-row:hover {
    opacity: .75;
}
.company-row__logo {
    width: 8.33333%;
  	display: flex;
  	flex-flow: row wrap;
  	flex: 0 0 auto;
  	justify-content: center;
  	align-items: center;
  	padding: 0 10.5px;
  	height: 54px;
}
.company-row__logo img {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}
.company-row__logo.no-logo {
	height: 60px;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.company-row__logo.no-logo:after {
    content: "No Logo";
    font-size: 12px;
    line-height: 12px;
    color: #afafaf;
}
.company-row__summary {
    display: flex;
  	flex-flow: row wrap;
  	width: 41.66667%;
  	padding-left: 8px;
}
.company-row__company-name {
    width: 100%;
	color: #000000;
  	font-size: 17px;
  	line-height: 28px;
  	font-weight: 500;
}
.company-row__rating {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    font-size: 23px;
    line-height: 23px;
    font-weight: 600;
    margin-left: auto;
}
.company-row__rating img {
  	width: 21px;
  	height: 21px;
  	margin: 0 4px -1px;
}
.company-row__location,
.company-row__industry,
.company-row__job-count {
    color: #575963;
  	font-size: 15px;
  	line-height: 24px;
  	font-weight: 400;
    margin-right: 4px;
}
.company-row__requirements {
    width: 50%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-end;
	margin: 0;
    padding: 0;
}
.company-row__requirement {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    list-style-type: none;
    padding: 0;
    margin-right: 24px;
}
.company-row__requirement .icon {
    width: 25px;
    height: 25px;
    display: block;
    margin-right: 16px;
	background-repeat: no-repeat;
	background-size: 95%;
	background-position: center;
}
.company-row__requirement.company-row__requirement--true .icon {
    background-image: url(/wp-content/themes/my-job-search/assets/img/icon-filled-check.svg);
}
.company-row__requirement.company-row__requirement--false .icon {
    background-image: url(/wp-content/themes/my-job-search/assets/img/icon-filled-x.svg);
}
.company-row__requirement .label {
    color: #575963;
    font-size: 14px;
    line-height: 22px;
}
.company-row__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.companies__list-more {
    width: 100%;
  	text-align: center;
  	padding: 40px 0 16px;
	z-index: 99;
}
.companies__list-more .button {
    display: inline-block;
    color: #fff;
    font-size: 17px;
  	line-height: 17px;
    text-align: center;
	font-weight: 500;
  	background: #99b207;
  	border: 1px solid #99b207;
	border-radius: 30px;
  	padding: 14px 32px;
  	transition: all .25s ease;
}
.companies__list-more .button:hover {
  	background: #053b85;
  	border: 1px solid #053b85;
}
@media only screen and (max-width: 1024px) {
    .companies__list-title {
    	width: 70%;
    }
    .companies__list-order {
        width: 30%;
    }
    .company-row__logo {
        width: 11%;
    }
	.company-row__summary {
		width: 40%;
	}
    .company-row__requirements {
    	width: 49%;
    }
	.company-row__requirement {
		margin: 4px 24px 4px 0;
	}
	.company-row__requirement .icon {
		width: 20px;
		height: 20px;
		margin-right: 10px;
		background-size: 84%;
	}
}
@media only screen and (max-width: 767px) {
    .companies__list-title,
    .companies__list-order {
    	width: 100%;
        text-align: center;
        padding: 8px 56px;
    }
    .company-row__logo {
    	width: 40%;
    	height: unset;
    }
    .company-row__summary {
    	width: 100%;
    	justify-content: start;
		padding: 0;
		margin-top: 8px;
    }
	.companies__search-bottom .form-field.form-field--toggle {
		width: 100%;
		justify-content: center;
		padding-right: 24px;
		margin: 0 0 8px 0;
	}
	.company-row__requirements {
		width: 100%;
		justify-content: flex-start;
		margin-top: 12px;
	}
    .companies__list-more {
    	padding: 30px 0 16px;
    }
}
/*## End Company Page ##*/


/*## Error 404 Page ##*/
.page--404 {
    background: linear-gradient(90deg,#f7f9fc 0,#f7f9fc 56%,#fff 56%,#fff 100%);
}
.page--404 .site.container {
    width: 100%;
    max-width: 100%;
}
.page--404 .site-content {
	width: 100%;
    max-width: 1314px;
    padding: 95px 32px 140px;
	margin: 0 auto;
}
.page--404 .error-404 .container {
    display: flex;
	flex-flow: row wrap;
}
.page--404 .error-404__content-container {
    flex: 0 0 auto;
    width: calc(41.66667% - 16px);
    margin-right: 8px;
}
.page--404 .error-404__subtitle {
    color: #000;
    font-size: 12px;
    line-height: 16px;
	font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3em;
    margin-bottom: 32px;
}
.page--404 .error-404__title {
    color: #000000;
	margin: 16px 0 56px;
}
.page--404 .error-404__content {
    width: 100%;
    max-width: 377px;
    color: #000;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 38px;
}
.page--404 .error-404__button {
    color: #ffffff !important;
	font-size: 17px;
    line-height: 27px;
    font-weight: 500;
	text-align: center !important;
	padding: 9.5px 32px !important;
	border-radius: 40px;
	background-color: #99b207 !important;
	transition: all .25s ease !important;
}
.page--404 .error-404__button:hover {
	background-color: #053b85 !important;
}
.page--404 .error-404__button.button--color-b {
	background-color: #3BC180 !important;
}
.page--404 .error-404__button.button--color-b:hover {
	background-color: #49c78a !important;
}
.page--404 .error-404__button:first-of-type {
    margin-right: 16px;
}
.page--404 .error-404__post {
    display: flex;
    flex-flow: row wrap;
    flex: 0 0 auto;
    width: calc(30.83333% - 16px);
    height: 460px;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    border-radius: 100px;
    overflow: hidden;
    margin-left: auto;
    margin-right: 46px;
	background-position: center;
}
.page--404 .error-404__post .post__content {
    display: flex;
    flex-flow: row wrap;
    background: #fff;
    padding: 20px 16px;
    margin: 0 40px 40px;
    border-radius: 6px;
}
.page--404 .error-404__post .post__content .post__category,
.page--404 .error-404__post .post__content .post__date {
    display: inline-block;
    width: 50%;
    color: #979fa7;
}
.page--404 .error-404__post .post__content .post__category {
	color: #575963;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    letter-spacing: .05rem;
}
.page--404 .error-404__post .post__content .post__category ul {
    margin: 0;
    list-style: none;
}
.page--404 .error-404__post .post__content .post__date {
    font-size: 14px;
    line-height: 16px;
    text-align: right;
}
.page--404 .error-404__post .post__content .post__title {
    color: #000;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin: 16px 0 8px;
}
.page--404 .error-404__post .post__content .button {
	width: 100%;
    color: #ffffff !important;
	font-size: 17px;
    line-height: 27px;
    font-weight: 500;
	text-align: center !important;
    padding: 6px 20px !important;
	border-radius: 40px;
	background-color: #3bc180 !important;
	transition: all .25s ease !important;
	margin-top: 12px;
}
.page--404 .error-404__post .post__content .button:hover {
	background-color: #49c78a !important;
}
.page--404 .error-404__images {
    margin: 0;
    list-style-type: none;
}
.page--404 .error-404__images>li {
    margin-bottom: 24px;
}
.page--404 .error-404__images>li:last-child {
    margin-bottom: 0;
}
.page--404 .error-404__images>li img {
	display: block;
    border-radius: 100px;
}

@media only screen and (max-width: 991px) {
	.page--404 {
		background: #f7f9fc;
	}
	.page--404 .site-content {
		padding: 62px 32px 120px;
	}
	.page--404 .error-404__content-container {
		width: 100%;
		margin-bottom: 52px;
	}
	.page--404 .error-404__post {
		width: 62%;
		margin-left: 0;
	}
}
@media only screen and (max-width: 767px) {
	.page--404 .site-content {
		padding: 40px 24px 50px;
	}
	.page--404 .error-404__subtitle {
		margin-bottom: 24px;
	}
	.page--404 .error-404__title {
		margin: 16px 0 36px;
	}
	.page--404 .error-404__content {
		margin-bottom: 28px;
	}
	.page--404 .error-404__button {
		width: 100%;
	}
	.page--404 .error-404__button:first-of-type {
		margin-right: 0;
		margin-bottom: 16px;
	}
	.page--404 .error-404__post {
		width: 100%;
		height: 400px;
		margin-bottom: 16px;
		border-radius: 6px;
	}
	.page--404 .error-404__post .post__content {
		margin: 0 20px 20px;
	}
	.page--404 .error-404__images {
		display: none;
	}
}
/*## End Error 404 Page ##*/


/*## Careers Page ##*/
/* Breadcrumb */
.archive-header__back {
	display: inline-block;
	color: #000 !important;
    font-size: 18px;
    line-height: 34px;
    font-weight: 500;
	text-decoration: none;
	transition: all .3s ease;
}
.archive-header__back:hover {
    opacity: .7;
}
.archive-header__back svg {
    margin-right: 4px;
	transition: all .3s ease;
}
.archive-header__back:hover svg {
    transform: translateX(-4px);
}
/* End Breadcrumb */

.resource_box_wrap {
    column-gap: 10px;
	flex-direction: unset !important;
}
.resource_box_wrap .gb-button {
    position: relative;
	flex: 0 auto !important;
	width: calc(25% - 7.5px) !important;
	justify-content: space-between !important;
    color: #575963 !important;
    font-size: 17px;
    line-height: 27px;
    font-weight: 500;
	text-align: left !important;
    background-color: #fff !important;
    padding: 12px 24px 12px 16px !important;
    box-shadow: 0 1px 2px rgb(0 0 0 / 25%);
    margin-bottom: 16px;
}
.resource_box_wrap .gb-button:after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    width: 20px;
    height: 16px;
    background-image: url(/wp-content/uploads/2022/06/Right-Arrow-Icon-Black.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: all .25s ease;
}
.resource_box_wrap .gb-button:hover:after {
    transform: translateX(8px);
}

@media only screen and (max-width: 1024px) {
	.resource_box_wrap .gb-button {
		width: calc(33.33% - 7px) !important;
	}
}
@media only screen and (max-width: 991px) {
	.resource_box_wrap .gb-button {
		width: calc(50% - 5px) !important;
	}
}
@media only screen and (max-width: 767px) {
	.resource_box_wrap .gb-button {
		width: 100% !important;
	}
}
/*## End Careers Page ##*/


/*## Company Single Page ##*/
.archive .container.grid-container {
	max-width: 100%;
  	width: 100%;
}
.archive .site-content {
    display: unset;
}
.company_archive .container.grid-container {
	max-width: 100% !important;
  	width: 100% !important;
	padding: 0;
    margin: 0;
}
.company_archive .site-content {
    display: block !important;
	margin: 0;
}

/* Header Section */
.company-header {
  	padding: 32px;
	background: linear-gradient(180deg,rgba(218,237,247,.5) 0,
									   rgba(218,237,247,.5) 60%,#fff 60%,#fff 100%);
}
.company-header .container {
  	max-width: 1250px;
  	margin: 0 auto;
}
.company-header__back {
    display: block;
    color: #000000 !important;
  	font-weight: 500;
  	font-size: 17px;
  	line-height: 27px;
	text-decoration: none;
    margin-bottom: 44px;
}
.company-header__back svg {
	width: 20px;
    transition: all .3s ease;
    margin-right: 8px;
}
.company-header__back:hover {
  	opacity: .7;
}
.company-header__back:hover>svg {
	transform: translateX(-4px);
}
.company-header__content,
.company-header__details,
.company-header__requirements {
  	display: flex;
  	flex-flow: row wrap;
}
.company-header__details:after {
    content: '';
    border-bottom: 1px solid #e0e0e0;
    position: absolute;
    left: 48px;
    right: 0;
    bottom: 0;
    width: calc(100% - 48px);
}
.company-header__logo {
	position: relative;
    width: 18.75%;
	display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #dce1e8;
    padding-bottom: 18.5%;
	height: 0;
}
.company-header__logo img,
.company-header__logo picture {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80%;
    height: auto;
    transform: translate(-50%, -50%);
}
.company-header__details {
	position: relative;
    width: 81.25%;
    justify-content: center;
    align-items: center;
}
.company-header__title {
    width: 75%;
    padding-left: 48px;
	margin-bottom: 8px;
}
.company-header__rating {
    width: 25%;
	color: #000000;
    font-size: 45px;
    line-height: 48px;
    font-weight: 700;
    text-align: right;
}
.company-header__rating img {
    width: 40px;
    height: 40px;
}
.company-header__requirements {
    width: 75%;
    align-self: center;
    padding-left: 48px;
    margin: 0;
}
.company-header__requirements>.company-header__requirement {
    display: inline-block;
   	color: #575963;
    font-size: 14px;
    line-height: 14px;
    margin: 0 32px 16px 0;
}
.company-header__requirements>.company-header__requirement:last-of-type {
    margin-right: 0;
}
.company-header__requirements>.company-header__requirement .icon {
    width: 22px;
    height: 22px;
    display: inline-block;
    transform: translateY(4px);
    margin-right: 8px;
	background-repeat: no-repeat;
}
.company-header__requirements>.company-header__requirement.is-true .icon {
    background-image: url(/wp-content/themes/my-job-search/assets/img/icon-filled-check.svg);
}
.company-header__requirements>.company-header__requirement.is-false .icon {
    background-image: url(/wp-content/themes/my-job-search/assets/img/icon-filled-x.svg);
}
.company-header__review {
    width: 25%;
    text-align: right;
    transform: translateY(-0.425rem);
}
.company-header__review .button {
  	color: #3bc180;
  	font-weight: 600;
  	font-size: 17px;
  	line-height: 27px;
    text-align: center;
  	background: #ddf0fa;
    border: 1px solid #ddf0fa;
	border-radius: 30px;
  	padding: 8px 32px;
  	transition: all .25s ease;
}
.company-header__review .button:hover {
	color: #3bc180;
  	background: #cbe8f7;
    border: 1px solid #cbe8f7;
}
@media only screen and (max-width: 1024px) {
	.company-header__rating {
		font-size: 36px;
		line-height: 46px;
	}
	.company-header__rating img {
		width: 30px;
	}
  	.company-header__requirements {
        width: 100% !important;
    }
    .company-header__review {
    	width: 100% !important;
    	text-align: left !important;
    	transform: translateY(0) !important;
        margin: 16px 0 24px;
        padding-left: 48px;
    }
}
@media only screen and (max-width: 767px) {
    .company-header {
    	padding: 32px 24px;
    }
	.company-header__logo {
		width: 100%;
		padding-bottom: 50%;
		overflow: hidden;
	}
	.company-header__details {
		margin: 16px 0;
		width: 100%;
	}
	.company-header__details:after {
    	width: 100%;
		left: 0;
	}
	.company-header__title {
		width: 72%;
		padding-left: 0;
	}
	.company-header__rating {
    	width: 28%;
		display: flex;
		justify-content: end;
		font-size: 28px;
	}
	.company-header__rating img {
		width: 20px;
		height: 20px;
	}
	.company-header__requirements {
		margin: 16px 0;
    	padding-left: 0;
	}
    .company-header__review {
    	padding: 0;
		margin-top: 0;
    }
}

/* Content Section */
.company-content {
  padding: 0 32px;
}
.company-content .container {
    display: flex;
  	flex-flow: row wrap;
  	max-width: 1250px;
  	margin: 0 auto;
}
/* Sidebar */
.company-content__side {
    width: 20% !important;
    margin: 24px 0 16px;
    padding: 16px 32px 0 0 !important;
    list-style: none;
}
.company-content__side.right {
    padding: 16px 0 0 32px !important;
}
.company-content__side>li {
    position: relative;
    font-size: 14px;
    line-height: 20px;
    padding-left: 36px;
    margin-bottom: 32px !important;
}
.company-content__side>li img {
    position: absolute;
    left: -4px;
    top: 0;
}
/* Content */
.company-content__main {
    width: 60% !important;
	border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}
.company-content__main h2 {
	color: #000000;
	font-size: 22px;
	line-height: 28px;
	font-weight: 700;
}
.company-content__main ol,
.company-content__main ul {
	color: #231d19;
	font-size: 18px;
	line-height: 34PX;
    margin: 32px 0 36px 36px;
}
.company-content__main p {
	color: #231d19;
	font-size: 18px;
	line-height: 30PX;
}
/* Company Stats */
.company-stats {
	width: 100%;
	display: flex;
    flex-flow: row wrap;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 48px;
    padding-bottom: 48px;
}
.company-stat {
    width: 29.16667%;
    padding-right: 12px;
}
.company-stat h3 {
    color: #1d1e28;
    font-size: 30px;
    line-height: 44px;
    font-weight: 600;
    margin: 0;
}
.company-stat p {
    color: #575963;
    font-size: 14px;
    line-height: 20px;
	margin: 0;
}

@media only screen and (max-width: 1024px) {
  	.company-content__side {
    	width: 25% !important;
		margin: 0px 0 16px
    }
    .company-content__main {
    	width: 50% !important;
    }
	.company-stats {
		margin-bottom: 32px;
		padding-bottom: 32px;
	}
	.company-stat {
		width: 33%;
	}
    .company-content__main iframe {
    	width: 100%;
    	height: 290px;
    }
}
@media only screen and (max-width: 767px) {
    .company-content {
    	padding: 0 24px;
    }
    .company-content__side {
    	width: 100% !important;
    	margin: 0;
    	padding: 0 5px !important;
    }
	.company-content__side.right {
		padding: 0!important;
		margin-top: 32px;
	}
    .company-content__main {
    	width: 100% !important;
    }
	.company-content__main ol,
	.company-content__main ul {
		margin-left: 17px;
	}
	.company-stats {
		padding: 24px 0 0;
		border-top: 1px solid #e0e0e0;
	}
	.company-stat {
		width: 100%;
		margin-bottom: 32px;
	}
    .company-content__main iframe {
    	width: 100%;
    	height: 240px;
    }
}

/* Company Jobs Section */
.company-jobs {
  	border: none;
  	padding: 48px 32px;
}
.company-jobs .container {
  	max-width: 1250px;
  	margin: 0 auto;
}
.browse-jobs__title {
    color: #000000;
    font-size: 29px;
    line-height: 44px;
    font-weight: 600;
	margin: 0 0 32px;
}

@media only screen and (max-width: 767px) {
    .company-jobs {
    	padding: 48px 24px;
    }
    .company-jobs .browse-jobs__title {
    	font-size: 30px;
    	line-height: 44px;
    }
}

/* Company Reviews Section */
.company-reviews {
	background-color: #f8fcfd;
  	padding: 80px 32px !important;
}
.company-reviews .container {
  	max-width: 1200px;
  	margin: 0 auto;
}
.company-reviews__title {
    font-size: 30px;
    line-height: 44px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 48px;
}
.company-reviews__list {
    width: 66.66667%;
    margin: 0 auto;
}
.company-reviews .review-card {
  	opacity: 1;
  	transform: translateY(0);
  	transition: all .5s ease;
  	margin-bottom: 48px;
}
.company-reviews .review-card__info {
  	width: 100%;
  	display: flex;
  	flex-flow: row wrap;
  	flex: 0 0 auto;
  	margin-bottom: 16px;
}
.company-reviews .review-card__info>.left,
.company-reviews .review-card__info>.right {
  	width: 50%;
}
.company-reviews .review-card__info>.right {
  	text-align: right;
}
.company-reviews .review-card__name {
  	color: #595959;
  	font-size: 17px;
  	line-height: 28px;
  	font-weight: 500;
  	margin-bottom: 4px;
}
.company-reviews .review-card__date,
.company-reviews .review-card__location {
  	font-size: 14px;
  	line-height: 20px;
  	color: #606060;
}
.company-reviews .review-card__content {
  	background-color: #fff;
  	padding: 48px;
}
.company-reviews .review-card__question {
    color: #595959;
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
	margin-bottom: 8px;
}
.company-reviews .review-card p {
  	font-size: 14px;
  	line-height: 20px;
  	color: #595959;
}
.company-reviews__load-more {
  	text-align: center;
}
.company-reviews__load-more .button {
  	display: inline-block;
  	color: #fff;
  	font-size: 16px;
  	line-height: 14px;
  	text-align: center;
  	background: #99b207;
  	border: 1px solid #99b207;
	border-radius: 30px;
  	padding: 12px 24px;
  	transition: all .25s ease;
}
.company-reviews__load-more .button:hover {
    background: #053b85;
  	border: 1px solid #053b85;
}
@media only screen and (max-width: 767px) {
    .company-reviews {
    	padding: 80px 24px !important;
    }
    .company-reviews__list,
	.company-reviews__form {
    	width: 100% !important;
    }
    .company-reviews .review-card__content {
    	padding: 24px;
    }
}

/* Company Reviews Form */
.company-reviews__form-title {
  	text-align: center;
  	margin: 32px 0;
  	font-size: 30px;
  	line-height: 44px;
  	font-weight: 600;
}
.company-reviews__form-title span {
  	display: block;
 	width: 100%;
  	font-size: 20px;
  	line-height: 28px;
  	font-weight: 600;
  	margin-top: 8px;
}
.company-reviews__form {
    width: 66.66667%;
    margin: 80px auto 0;
    background: #fff;
    box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
    padding: 48px;
}
.company-reviews__form .login-form {
    max-width: 540px;
    margin: 0 auto;
}
.company-reviews__form .form--review .gfield {
    position: relative;
    padding-left: 64px;
}
.company-reviews__form .form--review .gfield_label,
.company-reviews__form .form--review legend.gfield_label {
    font-size: 19px;
    line-height: 28px;
    font-weight: 600;
    margin: 0 0 24px;
}
.company-reviews__form .form--review .gfield_description {
	display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -10px;
    left: 0;
    width: 48px;
    height: 48px;
	color: #ffffff;
    border-radius: 50%;
    background: #3BC080;
}
.company-reviews__form .form--review fieldset {
    border: none;
    margin-bottom: 48px;
}
.company-reviews__form .form--review fieldset .gfield_description {
    top: -65px;
}
.company-reviews__form .form--review .gfield_radio .gchoice {
	position: relative;
	width: 100px;
    height: 40px;
    float: left;
    margin: 0 4px 0 0;
    padding: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
    z-index: 90;
}
.company-reviews__form .form--review .gfield_radio input[type=radio] {
    opacity: .011;
}
.company-reviews__form .form--review .gfield_radio input, .company-reviews__form .form--review .gfield_radio label {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-align: center;
    padding-top: 5%;
	cursor: pointer;
}
.company-reviews__form .form--review .gfield_radio input[type=radio]:checked+label {
    background: rgba(2,161,195,.25);
}
.company-reviews__form .form--review textarea {
    background: #fff;
    border: 1px solid #dce1e8;
    margin-top: 24px;
}
.company-reviews__form .form--review .gform_footer {
    width: 100%;
}
.company-reviews__form .form--review .gform_footer input[type=submit] {
    width: calc(100% - 24px);
    margin: 0 auto;
    display: block;
}
@media only screen and (max-width: 1024px) {
    .company-reviews__form {
		width: 90%;
	}
}
@media only screen and (max-width: 767px) {
    .company-reviews__form {
		padding: 32px;
	}
	.company-reviews__form .form--review .gfield {
		padding: 60px 0 0;
	}
	.company-reviews__form .form--review .gfield_description {
		top: 2px;
	}
	.company-reviews__form .form--review fieldset .gfield_description {
		top: -5px;
	}
	.company-reviews__form .form--review .gform_footer input[type=submit] {
		width: 100%;
	}
}

/* CTA Section */
.post-job-cta-container {
    max-width: 1264px;
    padding: 56px 32px;
    margin: 0 auto;
}

/* Related Posts */
.company-articles {
    padding: 88px 24px;
    position: relative;
}
.company-articles .container {
    max-width: 1200px;
	width: 100%;
    margin: 0 auto;
}
.company-articles__article-container {
    display: flex;
    flex-flow: wrap;
}
.company-articles__title {
	padding: 0 8px;
}
.company-articles__background {
	display: none;
}
.company-articles .post-card--standard {
    box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
}

@media only screen and (max-width: 1024px) {
    .company-articles {
		padding: 56px 32px 88px;
	}
}
@media only screen and (max-width: 767px) { 
	.company-articles {
		padding: 24px 16px 64px;
	}
}
/*## End Company Single Page ##*/


/*## Jobs Page ##*/
/* Header */
.job-search-form__title {
    color: #1d1e28;
    font-size: 29px;
    line-height: 44px;
	font-weight: 600;
    margin-bottom: 24px;
}
.job-search-form__form {
    display: flex;
  	flex-flow: row wrap;
}
.job-search-form__form .form-field {
  	flex: 0 0 auto;
  	width: 37.5%;
  	padding-right: 12px;
}
.job-search-form__form .form-field input {
    padding: 14px 16px;
    background-color: #fff;
    border: 1px solid #dce1e8;
	border-radius: 30px;
}
.job-search-form__form .form-field input::placeholder {
	 color: #000000;
	opacity: 0.7;
}
.job-search-form__form .form-field.form-field--submit {
  	flex: 0 0 auto;
  	width: 25%;
}
.job-search-form__form .form-field.form-field--submit input[type=submit] {
  	display: block;
  	width: 100%;
  	font-size: 16px;
  	line-height: 16px;
  	font-weight: 600;
  	padding: 15px 16px !important;
}
.job-search-form__dropdowns {
    display: flex;
  	flex-flow: row wrap;
  	width: 100%;
  	padding: 24px 0 0;
}
.job-search-form__form .form-field.form-field--instruction {
  	width: 75px;
  	align-self: center;
    color: #000000;
  	font-size: 14px;
  	line-height: 14px;
  	font-weight: 500;
}
.job-search-form__form .form-field.form-field--select {
  	align-self: center;
  	display: flex;
  	width: 250px;
  	margin-right: 16px;
  	justify-content: space-between;
    background-color: #f3f5f8;
  	padding: 8px 12px 8px 16px;
  	border-radius: 30px;
}
.job-search-form__form .form-field.form-field--select>label {
    color: #1d1e28;
  	font-size: 14px;
  	line-height: 30px;
  	font-weight: 600;
  	margin-right: 8px;
}
.job-search-form__form .form-field.form-field--select select {
  	display: inline-block;
  	max-width: 150px;
    width: 100%;
  	height: auto;
    color: #313131;
  	font-size: 13px;
  	font-weight: 500;
  	text-align: left;
    background-color: transparent !important;
    padding: 0 12px 0 0;
    border: 0;
}

/* Job Search Results */
.job-search-results__list--second .container {
  	display: flex;
    justify-content: center;
  	flex-flow: wrap;
  	column-gap: 20px;
}
.job-search-results__load-more {
  	margin-top: 32px;
}
.job-search-results__load-more .button {
  	font-size: 16px;
  	line-height: 14px;
  	font-weight: 600;
    background: #99b207;
  	padding: 16px 56px !important;
    transition: all .25s ease !important;
    border-color: #99b207;
  	border-radius: 30px;
}
.job-search-results__load-more .button:hover {
  	background: #053b85;
}

@media only screen and (max-width: 1024px) {
  	.jobs_page_header_sec {
    	background: #F7694D;
		background-image: unset !important;
   	}
}
@media only screen and (max-width: 767px) {
    .job-search-form__form .form-field {
        width: 100%;
        margin-bottom: 8px;
        padding: 0;
    }
    .job-search-form__form .form-field.form-field--submit {
    	width: 100%;
    }
    .job-search-form__form .form-field.form-field--instruction {
    	width: 100%;
        text-align: center;
    }
    .job-search-form__form .form-field.form-field--select {
    	width: 100%;
        padding: 8px 32px 8px 36px;
    }
}

/* Job Listing */
.browse-jobs_items {
  	display: flex;
  	flex-flow: wrap;
    column-gap: 20px;
}
.job-listing__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.job-listing {
	position: relative;
  	display: flex;
	flex-flow: wrap;
  	justify-content: space-between;
  	align-items: center;
  	width: 100%;
  	background-color: #fff;
  	border: 1px solid #dce1e8;
  	border-radius: 6px;
  	transition: all .5s ease;
  	padding: 8px 39px;
  	margin-bottom: 20px;
}
.job-listing__job-info {
  	width: 52.08333%;
  	padding: 16px 32px 16px 0;
}
.job-job-listing-type,
.job-listing__type {
  	color: #fff;
  	font-size: 16px;
  	line-height: 16px;
    text-align:center;
  	padding: 8px 16px;
    margin-bottom: 16px;
  	margin-right: 16px;
  	display: inline-block;
  	list-style: none;
  	background-color: #3bc180;
}
.job-job-listing-type.part-time,
.job-listing__type.part-time {
  	background-color: #99b207;
}
.job-job-listing-type.freelance,
.job-listing__type.freelance,
.job-job-listing-type.contract,
.job-listing__type.contract,
.job-job-listing-type.temporary,
.job-listing__type.temporary {
    background-color: #99b207;
}
.job-listing__date,
.job-listing__location {
  	font-size: 14px;
  	line-height: 16px;
  	color: #313131;
    margin-right: 4px;
}
.job-listing__location {
    font-weight: 500;
    color: #000000;
}
.job-listing__location:before {
  	content: '•';
  	display: inline-block;
  	margin-right: 4px;
}
.job-listing__job-title {
	width: 100%;
  	color: #1d1e28;
  	font-size: 24px;
  	line-height: 30px;
  	text-transform: capitalize;
  	margin: 0 0 8px;
}
.job-listing__excerpt p {
  	color: #575963;
  	font-size: 14px;
  	line-height: 20px;
    font-family: Helvetica;
  	margin-bottom: 24px;
}
.job-listing__company-info {
	display: flex;
    flex-flow: row wrap;
    flex: 0 0 auto;
    width: 29.16667%;
    padding: 12px 16px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
    z-index: 2;
    position: relative;
}
.job-listing__company-logo {
  	display: flex;
  	width: 25%;
    height: 78px;
  	align-items: center;
  	justify-content: center;
  	border: 1px solid #dce1e8;
  	padding: 5px;
}
.job-listing__company-summary {
    width: 75%;
	display: flex;
	flex-flow: wrap;
}
.job-listing__company-small-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.job-listing__cta .button {
    width: 100%;
  	background-color: rgba(247,249,252,.5);
  	border: none;
  	color: #313131 !important;
  	padding: 32px;
  	font-weight: 600;
}
.job-listing__cta .button:after {
  	content: "";
  	display: inline-block;
  	width: 20px;
  	height: 16px;
  	margin-left: 8px;
  	background-image: url(/wp-content/uploads/2022/06/Right-Arrow-Icon-Black.svg);
  	background-repeat: no-repeat;
  	background-position: 0 5px;
  	transition: all .25s ease;
}
.job-listing:hover {
    border-color: #606060;
}
.job-listing .job-listing__cta .button {
  	background-color: rgba(247,249,252,.5);
}
.job-listing:hover .job-listing__cta .button:after {
   	transform: translateX(8px);
}

/* Job Listing Card */
.job-search-results__list.job-search-results__list--second {
	padding-top: 24px;
}
.job-listing-card {
    flex-flow: wrap;
    align-items: flex-start;
  	width: calc(33.33% - 14px);
    padding: 16px 0 0;
  	margin-bottom: 24px;
	min-height: 486px;
}
.job-listing-card .job-listing__job-info {
  	display: flex;
    width: 100%;
	padding: 16px 32px;
  	flex-flow: wrap;
  	align-items: center;
  	justify-content: space-between;
}
.job-listing-card .job-listing__date {
    display: block;
    color: #737373;
    margin-bottom: 16px;
  	margin-right: unset;
}
.job-listing-card .job-listing__job-title {
  	margin: 16px 0;
}
.job-listing-card .job-listing__location {
  	color: #313131;
  	font-size: 15px;
  	line-height: 15px;
}
.job-listing-card .job-listing__location span {
    font-weight: 400;
}
.job-listing-card .job-listing__cta {
  	width: 100%;
  	text-align: center;
	margin-top: auto;
}
.job-listing__company {
    display: flex;
    flex-flow: row wrap;
  	width: 100%;
  	padding: 16px;
	margin: auto 32px 32px;
  	background: #fff;
  	box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
  	overflow: hidden;
}
.job-listing-card .job-listing__company-logo {
  	display: flex;
  	width: 50px;
  	height: 62px;
  	align-items: center;
  	justify-content: center;
  	border: 1px solid #dce1e8;
  	padding: 5px;
}
.job-listing__company-logo picture {
  	display: flex;
  	height: 100%;
  	align-items: center;
}
.job-listing__company-rating {
	color: #000000;
    position: relative;
  	width: 37.5%;
  	align-self: center;
  	padding-left: 8px;
  	font-size: 23px;
  	line-height: 24px;
  	font-weight: 700;
  	padding-bottom: 8px;
  	margin-left: 8px;
}
.job-listing__company-rating:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	bottom: 0;
  	width: calc(200% - 10px);
  	border-bottom: 1px solid #dce1e8;
}
.job-listing__company-reviews {
  	width: 33.33%;
  	color: #575963;
  	font-size: 14px;
  	line-height: 18px;
  	text-align: right;
  	align-self: center;
  	padding-bottom: 12px;
  	margin-top: 4px;
}
.job-listing__company-link {
    width: 100%;
    margin-top: 8px;
}
.job-listing__company-link .button {
  	display: block;
  	width: 100%;
  	color: #fff;
  	font-size: 16px;
  	line-height: 14px;
  	text-align: center;
  	font-weight: 600;
  	background: #3bc180;
  	border: 1px solid #3bc180;
  	padding: 12px 24px;
  	transition: all .25s ease;
  	border-radius: 30px;
}
.job-listing__company-link .button:hover {
  	background: #49c78a;
  	border: 1px solid #49c78a;
}
@media only screen and (max-width: 1024px) {
	.job-search-form__title {
		text-align: center;
	}
	.job-listing {
		padding: 8px 32px 0px 32px;
	}
  	.job-listing-card {
    	width: calc(50% - 10px);
	  	padding: 0;
    }
	.job-listing__job-info {
		width: 60%;
	}
	.job-listing__company-info {
		width: 40%;
	}
	.job-listing__cta {
		width: 100%;
		text-align: center;
		margin: 6px 0 16px;
	}
	.job-listing-card .job-listing__cta {
		margin: auto 0 0;
	}
}
@media only screen and (max-width: 991px) {
	.job-listing__job-info,
	.job-listing__company-info {
		width: 50%;
	}
	.job-listing__location {
		display: block;
	}
}
@media only screen and (max-width: 767px) {
	.job-search-form__title {
		font-size: 26px;
		line-height: 40px;
		margin-bottom: 18px;
		text-align: center;
	}
  	.browse-jobs_form {
    	display: block;
    }
    .browse-jobs_form .form-field {
    	width: 100%;
    	padding-right: 0;
    	margin-bottom: 16px;
    }
    .job-listing {
        display: block;
        padding: 8px 16px;
    }
    .job-listing__job-info {
    	width: 100%;
    	padding: 16px 0;
    }
    .job-job-listing-type,
	.job-listing__type {
    	width: 100%;
    	margin: 0 0 8px;
    }
    .job-listing__location:before {
        display: none;
    }
    .job-listing__job-title {
    	color: #1d1e28;
    	font-size: 20px;
    	line-height: 30px;
    	text-transform: capitalize;
    	margin: 16px 0 8px;
    }
    .job-listing-card {
		display: flex !important;
    	width: 100%;
    }
    .job-listing__job-info {
    	width: 100%;
    	padding: 16px 0;
    }
    .job-job-listing-type,
	.job-listing__type {
    	width: 100%;
    	margin: 0 0 8px;
    }
    .job-listing__location:before {
        display: none;
    }
    .job-listing__job-title {
    	color: #1d1e28;
    	font-size: 20px;
    	line-height: 30px;
    	text-transform: capitalize;
    	margin: 16px 0 8px;
    }
    .job-listing-card {
    	width: 100%;
		padding: 8px 0 0;
    }
	.job-listing-card .job-listing__job-info {
		padding: 16px;
	}
	.job-listing__company {
		width: calc(100% - 32px);
    	margin: auto 16px;
	}
	.job-listing__company-info {
		width: 100%;
	}
	.job-listing__company-rating {
		width: 50%;
	}
	.job-listing__company-reviews {
		width: 45%;
	}
	.job-listing__cta {
		margin: 6px 0;
	}
}
/*## End Jobs Page ##*/


/*## Job Single Page ##*/
.single--job_listing .site.container,
.single--job_listing .site-content .content-area,
.single--job_listing .site.container .site-main {
    max-width: 100% !important;
    width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}
/* Header Section */
.job-listing-header {
	background-color: #ddf0fa;
    padding: 0 32px;
	margin-bottom: 40px;
}
.job-listing-header .container {
	max-width: 1264px;
	display: flex;
  	flex-flow: row wrap;
    padding: 84px 0 64px;
    margin: 0 auto;
}
.job-listing-header__company {
  	flex: 0 0 auto;
 	width: 20.83333%;
}
.job-listing-header__company-logo {
  	width: 204px;
  	height: 204px;
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	border: 1px solid #dce1e8;
  	background: #fff;
  	position: relative;
    padding: 20px;
	overflow: hidden;
}
.job-listing-header__company-logo>picture,
.job-listing-header__company-logo>picture img {
    width: 100%;
}
.job-listing-header__company-rating {
  	position: absolute;
  	bottom: 4px;
  	right: 4px;
    height: 24px;
}
.job-listing-header__content {
  	flex: 0 0 auto;
  	width: 58.33333%;
}
.job-listing-header__meta {
  	display: flex;
  	flex-flow: row wrap;
  	align-items: center;
}
.job-listing__location {
  	font-size: 14px;
  	line-height: 16px;
  	font-weight: 700;
  	color: #000000;
  	margin-right: 16px;
}
.job-listing__date {
  	font-size: 14px;
  	line-height: 16px;
  	font-weight: 400;
  	color: #979fa7;
}
.job-listing-header__title {
	font-size: 56px;
    line-height: 66px;
  	margin: 16px 0 40px;
}
.job-listing-header__link {
	color: #000000;
  	font-size: 16px;
  	line-height: 16px;
}
.job-listing-header__link a {
    color: #3bc180;
}

/* Details Section */
.job-listing-details {
	padding-bottom: 48px;
	margin: 0;
}
.job-listing-details .container {
  	display: flex;
  	flex-flow: row wrap;
  	align-items: start;
  	max-width: 1314px;
  	margin: 0 auto;
  	padding: 0 32px;
}

/* Left Sidebar */
.job-listing-details__side.job-listing-details__side--left {
  	flex: 0 0 auto;
  	width: 20.83333%;
}
.job-listing-details__jobs-by-area {
  	width: 204px;
  	color: #000000;
  	font-size: 15px;
  	line-height: 16px;
  	font-weight: 700;
    background-color: rgba(1,189,230,.08);
    padding: 16px;
}
.job-listing-details__jobs-by-area ul {
    margin: 0;
    list-style: none;
}
.job-listing-details__jobs-by-area ul li {
    margin: 16px 0;
}
.job-listing-details__jobs-by-area ul li a {
    color: #000000;
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
    text-decoration: none;
    transition: all .25s ease;
}
.job-listing-details__jobs-by-area ul li a:hover {
    color: #3bc180;
}

/* Details */
.job-listing-details__side {
  	flex: 0 0 auto;
  	width: 52.08333%;
  	padding-right: 68px;
}
.job-listing-details__side .job_description h2 {
    color: #313131;
    font-size: 29px;
    line-height: 44px;
    font-weight: 600;
    margin-bottom: 8px;
}
.job-listing-details__side .job_description p {
	color: #313131;
	font-size: 14px;
	line-height: 20px;
}
.job-listing-details__side .application_button {
    border-radius: 30px;
}

/* Right Sidebar */
.job-listing-details__side.job-listing-details__side--right {
  	flex: 0 0 auto;
  	width: 27.08333%;
    padding: 0;
}
.job-listing-details__company h2 {
	color: #000000;
  	font-size: 29px;
  	line-height: 44px;
  	font-weight: 600;
  	margin-bottom: 8px;
}
.job-listing-details__side.job-listing-details__side--right .company-card {
  	display: flex;
  	flex-flow: row wrap;
  	align-items: center;
  	position: relative;
  	box-shadow: 0 4px 30px 0 rgb(30 30 60 / 13%);
  	transition: all .25s ease;
  	border-radius: 6px;
  	margin-bottom: 32px;
    margin: 0;
}
.job-listing-details__side.job-listing-details__side--right .company-card__top {
  	display: flex;
  	flex-flow: row wrap;
  	align-items: center;
  	flex: 0 0 auto;
  	width: 100%;
  	align-self: flex-start;
  	padding: 32px;
  	flex-grow: 1;
  	border-radius: 6px;
}
.job-listing-details__side.job-listing-details__side--right .company-card__logo {
    display: flex;
  	flex-flow: row wrap;
    flex: 0 0 auto;
  	width: 33.33333%;
    height: 100px;
  	justify-content: center;
  	align-items: center;
	align-content: center;
  	border: 1px solid #dce1e8;
  	border-radius: 6px;
  	margin-bottom: auto;
  	overflow: hidden;
}
.job-listing-details__side.job-listing-details__side--right .company-card__logo img {
    display: block;
    max-width: 80%;
  	height: auto;
  	margin: 0 auto;
}
.job-listing-details__side.job-listing-details__side--right .company-card__summary {
  	flex: 0 0 auto;
  	width: 66.66667%;
  	padding-left: 32px;
}
.job-listing-details__side.job-listing-details__side--right .company-card__rating {
    display: flex;
  	flex-flow: row wrap;
  	align-items: center;
  	width: 100%;
  	color: #313131;
  	font-size: 32px;
  	line-height: 32px;
  	font-weight: 700;
  	margin-bottom: 16px;
}
.job-listing-details__side.job-listing-details__side--right .company-card__rating img {
  	display: inline-block;
  	width: 24px;
  	height: 24px;
    margin-left: 8px;
}
.job-listing-details__side.job-listing-details__side--right .company-card__summary-right {
	margin: 0 0 16px;
	list-style: none;
}
.job-listing-details__side.job-listing-details__side--right .company-card__summary-right .count {
  	display: block;
  	color: #000000;
  	font-size: 12px;
  	line-height: 12px;
  	font-weight: 400;
  	margin-bottom: 8px;
}
.job-listing-details__side.job-listing-details__side--right .company-card__summary-right .count:last-child {
  	border-top: 1px solid #dce1e8;
  	padding-top: 8px;
    margin: 0;
}
.job-listing-details__side.job-listing-details__side--right .company-card__company-name {
  	flex: 0 0 auto;
  	width: 100%;
  	color: #313131;
  	font-size: 18px;
  	line-height: 23px;
  	font-weight: 600;
  	margin: 24px 0 16px;
}
.job-listing-details__side.job-listing-details__side--right .company-card__stars {
  	flex: 0 0 auto;
  	width: 100%;
  	margin-bottom: 8px;
}
.job-listing-details__side.job-listing-details__side--right .company-card__stars .company-card__stars-rating {
  	display: flex;
  	flex-flow: row wrap;
  	align-items: center;
  	margin: 4px 0;
}
.job-listing-details__side.job-listing-details__side--right .company-card__stars .stars-rating__stars {
  	display: flex;
  	align-items: center;
  	justify-content: flex-start;
  	position: relative;
  	flex-flow: row wrap;
  	order: 1;
}
.job-listing-details__side.job-listing-details__side--right .company-card__stars .stars-rating__stars .filled-stars {
  	position: absolute;
  	top: -1px;
  	z-index: 2;
  	overflow: hidden;
}
.job-listing-details__side.job-listing-details__side--right .company-card__stars .stars-rating__title {
  	order: 0;
  	flex: 0 0 auto;
  	width: 50%;
  	color: #575963;
  	font-size: 12px;
  	line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
  	letter-spacing: .1rem;
}
.job-listing-details__side.job-listing-details__side--right .company-card__stars .star.is-svg {
  	max-width: fit-content;
  	width: 104px;
  	height: 24px;
}
.job-listing-details__side.job-listing-details__side--right .company-card__company-link {
    position: relative;
  	display: block;
  	width: 100%;
    color: #fff;
  	font-size: 16px;
  	line-height: 14px;
    font-weight: 400;
    text-align: center;
    background: #FF5B3C;
    border: 1px solid #FF5B3C;
  	border-radius: 30px;
    padding: 12px 24px;
  	margin-top: 8px;
  	margin-bottom: 56px;
    transition: all .25s ease;
}
.job-listing-details__side.job-listing-details__side--right .company-card__company-link:hover {
	background: #ff4623;
	border: 1px solid #ff4623;
}
.job-listing-details__side.job-listing-details__side--right .company-card__bottom {
  	flex: 0 0 auto;
  	width: 100%;
  	align-self: flex-end;
  	text-align: center;
  	background-color: #f7f9fc;
  	padding: 22px 0;
  	border-top: 1px solid #e7e9ec;
}
.job-listing-details__side.job-listing-details__side--right .company-card__link {
  	display: inline-block;
	color: #000000;
	text-decoration: none;
  	background: transparent !important;
  	border: none;
  	padding: 0;
  	margin: 0;
}
.job-listing-details__side.job-listing-details__side--right .company-card__link:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 16px;
    margin-left: 8px;
    background-image: url(/wp-content/uploads/2022/06/Right-Arrow-Icon-Black.svg);
    background-repeat: no-repeat;
    background-position: 0 5px;
    transition: all .25s ease;
}
.job-listing-details__side.job-listing-details__side--right .company-card__link:hover:after {
    transform: translateX(8px);
}

/* Post Content */
.single_job_listing h3,
.single_job_listing h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}
.single_job_listing iframe {
    min-height: 312px;
    height: 100%;
}
.single_job_listing .application_button {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    line-height: 14px;
    font-weight: 400;
    text-align: center;
    padding: 12px 64px;
    transition: all .25s ease;
}
@media only screen and (max-width: 1024px) {
  	.single_job_listing iframe {
    	min-height: 544px;
	}
}
@media only screen and (max-width: 991px) {
  	.single_job_listing iframe {
    	min-height: 398px;
	}
}
@media only screen and (max-width: 767px) {
  	.single_job_listing iframe {
    	min-height: 245px;
	}
}

/* Read More Post */
.job-listing__posts {
	background: #f7f9fc;
    margin: 0;
}
.job-listing__posts .container {
    display: flex;
  	flex-flow: row wrap;
  	align-items: unset;
    max-width: 1264px;
  	padding: 90px 32px 62px;
    margin: 0 auto;
}
.job-listing__posts-header {
  	display: flex;
  	flex-flow: row wrap;
  	align-items: center;
  	flex: 0 0 auto;
  	width: 100%;
  	padding: 8px 8px 32px 8px;
}
.job-listing__posts-title {
  	flex: 0 0 auto;
  	width: 66.66667%;
  	color: #000000;
  	font-size: 30px;
  	line-height: 44px;
    font-weight: 600;
}
.job-listing__post-cta {
  	flex: 0 0 auto;
  	width: 33.33333%;
  	text-align: right;
}
.job-listing__post-cta .button {
    display: inline-block;
    color: #fff;
  	font-size: 16px;
  	line-height: 14px;
    font-weight: 400;
    text-align: center;
	background: #99b207;
    border: 1px solid #99b207;
	border-radius: 30px;
  	padding: 12px 64px;
  	transition: all .25s ease;
}
.job-listing__post-cta .button:hover {
  	background: #053b85;
  	border: 1px solid #053b85;
}

/* Similar Jobs */
.job-listing-similar {
  	background: #FBFCFD;
}
.job-listing-similar .container {
  	display: flex;
  	flex-flow: row wrap;
  	align-items: center;
  	grid-column-gap: 20px;
  	grid-row-gap: 20px;
  	max-width: 1264px;
  	padding: 72px 32px 88px;
  	margin: 0 auto;
}
.job-listing-similar__title {
    width: 100%;
    color: #000000;
    font-size: 29px;
    line-height: 44px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
}
.job-listing-similar__cta {
  	width: 100%;
  	text-align: center;
  	margin-top: 32px;
}
.job-listing-similar__cta .button {
    display: inline-block;
    color: #fff;
  	font-size: 16px;
  	line-height: 16px;
    font-weight: 600;
    text-align: center;
  	background: #99b207;
	border-radius: 30px;
  	padding: 13px 65px;
  	transition: all .25s ease;
}
.job-listing-similar__cta .button:hover {
  	background: #053b85;
}

/* Responsive */
@media only screen and (max-width: 1024px) {
  	.job-listing-header__content,
    .job-listing-details__side.job-listing-details__side--left,
    .job-listing-details__side,
    .job-listing-details__side.job-listing-details__side--right {
    	width: 100%;
        padding: 0;
    }
	.job-listing-header__title {
		font-size: 48px;
		line-height: 53px;
	}
    .job-listing-header__content {
    	margin-top: 40px;
    }
    .job-listing-details__jobs-by-area {
    	width: 100%;
    	margin-bottom: 32px;
    }
    .job-listing-details__side.job-listing-details__side--right{
        margin-top: 32px;
    }
	.job-listing__posts .container {
		padding: 94px 32px 62px;
	}
}
@media only screen and (max-width: 991px) {
	.job-listing__posts .post-card.post-card--standard {
		width: calc(50% - 22px);
	}
}
@media only screen and (max-width: 767px) {
    .job-listing-header,
    .job-listing-details .container {
        padding: 0 24px;
    }
    .job-listing-header__company,
    .job-listing-header__company-logo {
    	width: 100%;
    }
	.job-listing-header__content {
    	margin-top: 20px;
    }
    .job-listing__date {
    	margin-top: 16px;
    }
    .job-listing-header__title {
    	font-size: 40px;
    	line-height: 44px;
        margin: 16px 0 40px;
    }
    .job-listing-header .container {
    	padding: 64px 0 32px;
    }
    .job-listing__posts .container {
    	padding: 48px 16px 64px;
    }
    .job-listing__posts-title,
    .job-listing__post-cta {
    	width: 100%;
    	text-align: center;
    }
    .job-listing-similar .container {
    	padding: 48px 24px 88px;
		grid-row-gap: 10px;
    }
    .job-listing-similar__cta {
    	margin-top: 16px;
    }
	.job-listing__posts .post-card.post-card--standard {
    	width: calc(100% - 16px);
	}
}
/*## End Job Single Page ##*/


/*## Resume Quiz Page ##*/
.resume_quiz_header_img {
    display: none;
}
.resume_quiz_content_wrap .wpvq {
    max-width: 940px;
    margin: 0 auto;
}
.resume_quiz_content_wrap .wpvq-question {
	background: #ffffff;
    padding: 38px 32px 24px;
    border-radius: 6px;
}
.resume_quiz_content_wrap .wpvq-question-label {
    color: #000000;
    margin-bottom: 24px !important;
}
.resume_quiz_content_wrap .wpvq-answer,
.resume_quiz_content_wrap .wpvq-explaination {
    border-radius: 6px;
	margin-bottom: 16px;
}
.resume_quiz_content_wrap #wpvq-form-informations label {
    font-weight: 600;
}
.resume_quiz_content_wrap #wpvq-form-informations input {
    border-radius: 6px !important;
}
.resume_quiz_content_wrap #wpvq-submit-informations {
    background: #99b207 !important;
    border-radius: 30px !important;
}

@media only screen and (max-width: 1024px) {
	.resume_quiz_header {
		background: #ddf0fa !important;
	}
	.resume_quiz_header_img {
		display: block;
	}
}
@media only screen and (max-width: 767px) {
	.resume_quiz_content_wrap .wpvq-question {
		padding: 38px 24px 24px;
	}
}
/*## End Resume Quiz Page ##*/


/*## Footer Hero Section ##*/
.footer_hero_wrap .footer_hero_img_col img {
	width: 100%;
}
@media only screen and (max-width: 1024px) {
	.footer_hero_wrap .footer_hero_img_col .wp-block-image {
		text-align: center;
	}
  	.footer_hero_wrap .footer_hero_img_col img {
		width: 60%;
	}
}
/*## End Footer Hero Section ##*/


/*## Footer CSS ##*/
.site-footer .inside-footer-widgets {
	margin: 0 !important;
}
.site-footer .inside-footer-widgets>div {
	flex: unset;
    width: 16.66667%;
    margin-top: 64px;
}
.site-footer .inside-footer-widgets .inner-padding {
	padding: 0 !important;
}
.site-footer .footer-widget-1 {
	width: 25% !important;
	margin-top: 0 !important;
}
.site-footer .footer-widget-1 .widget_media_image {
	margin: 0;
}
.site-footer .footer-widget-1 .widget_media_image a,
.site-footer .footer-widget-1 .widget_media_image img {
	width: 190px;
    display: block;
    margin-bottom: 32px;
}
.site-footer .footer-widget-1 .widget-title {
	font-size: 12px;
	line-height: 15px;
	font-weight: 400;
	margin-bottom: 16px;
}
.site-footer .footer-widget-1 p {
	font-size: 14px;
	line-height: 24.5px;
}
.site-footer .footer-widget-2 {
    margin-left: 8.33333%;
}
.site-footer .widget-title {
	margin-top: 16px;
}
.site-footer li,
.site-footer a {
	font-size: 14px;
	line-height: 14px;
	text-decoration: none;
}
.site-footer li {
	margin-bottom: 20px !important;
}
.site-info .inside-site-info {
	position: relative;
}
.site-info .inside-site-info:before {
    content: "";
    border-top: 1px solid #3c3b5c;
    width: calc(100% - 64px);
    position: absolute;
    top: 0;
	left: 0;
}
.site-info .inside-site-info .copyright-bar {
    text-align: left;
}
.site-info .inside-site-info .copyright-bar a {
	font-size: 14px;
    line-height: 14px;
    color: #fff;
    margin-right: 16px;
    opacity: .3;
    transition: all .25s ease;
}
.site-info .inside-site-info .copyright-bar a:hover {
	opacity: 1;
}
.site-info .inside-site-info .footer-bar {
    display: flex;
	flex-flow: wrap;
    align-items: center;
	justify-content: end;
}
.site-info .inside-site-info .footer-bar .widget_nav_menu {
	margin-right: 16px;
}
.site-info .inside-site-info .footer-bar .widget_nav_menu .menu-item {
	font-size: 12px;
	line-height: 12px;
    margin: 0 16px !important;
}
.site-info .inside-site-info .footer-bar .widget_nav_menu .menu-item a {
    font-size: 12px;
	line-height: 12px;
}
.site-info .inside-site-info .footer-bar .stripe-button {
    background: rgba(15,15,18,.54);
    border-radius: 2.28rem;
    padding: 9.6px;
    display: inline-flex;
    align-items: center;
}
.site-info .inside-site-info .footer-bar .stripe-button__logo {
    background-image: url(/wp-content/themes/my-job-search/assets/img/stripe.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 16px;
    height: 54px;
    width: 235px;
}
.site-info .inside-site-info .footer-bar .stripe-button__text {
    color: #fff;
    font-size: 16px;
    line-height: 23px;
    text-align: left;
    padding-right: 8px;
}

@media only screen and (max-width: 1024px) {
    .site-footer .footer-widgets-container .inside-footer-widgets {
        flex-flow: wrap;
    }
    .site-footer .inside-footer-widgets>div {
    	width: 25% !important;
        margin: 16px 0 0 0 !important;
    }
    .site-footer .inside-footer-widgets .footer-widget-1 {
    	width: 100% !important;
    	padding-right: 40% !important;
    	margin-bottom: 30px !important;
    }
    .site-footer .widget-title {
    	margin-bottom: 18px;
    }
	.site-info .inside-site-info .footer-bar .stripe-button__logo {
		height: 38px;
		width: 164px;
	}
	.site-info .inside-site-info .footer-bar .stripe-button__text {
		font-size: 13px;
		line-height: 18px;
	}
	.copyright-bar p {
		margin-bottom: 8px;
	}
}

@media only screen and (max-width: 991px) {
	.site-info .inside-site-info {
		padding: 24px 32px 24px 32px;
	}
	.site-info .inside-site-info .footer-bar {
		margin: 0;
	}
}

@media only screen and (max-width: 767px) {
    .site-footer .inside-footer-widgets .footer-widget-1 {
        padding-right: 0 !important;
    	margin-bottom: 10px !important;
    }
    .site-footer .inside-footer-widgets>div {
    	width: 50% !important;
    	margin: 32px 0 0 0 !important;
    }
	.site-info .inside-site-info {
		display: block;
	}
	.site-info .inside-site-info .footer-bar {
		justify-content: center;
		flex-direction: column-reverse;
	}
	.site-info .inside-site-info .copyright-bar {
		text-align: center;
		margin-top: 16px;
	}
}
/*## End Footer CSS ##*/

###########################################################
# Disable global RSS, RDF & Atom feeds.
###########################################################
add_action( 'do_feed',      'disable_feeds', -1 );
add_action( 'do_feed_rdf',  'disable_feeds', -1 );
add_action( 'do_feed_rss',  'disable_feeds', -1 );
add_action( 'do_feed_rss2', 'disable_feeds', -1 );
add_action( 'do_feed_atom', 'disable_feeds', -1 );

###########################################################
# Disable comment feeds.
###########################################################
add_action( 'do_feed_rss2_comments', 'disable_feeds', -1 );
add_action( 'do_feed_atom_comments', 'disable_feeds', -1 );

###########################################################
# Prevent feed links from being inserted in the <head> of the page.
###########################################################
add_action( 'feed_links_show_posts_feed',    '__return_false', -1 );
add_action( 'feed_links_show_comments_feed', '__return_false', -1 );
remove_action( 'wp_head', 'feed_links',       2 );
remove_action( 'wp_head', 'feed_links_extra', 3 );

/**
 * Redirect to the homepage all users trying to access feeds.
 */
function disable_feeds() {
	wp_redirect( home_url() );
	die;
}