/**
* All of the CSS for your public-facing functionality should be
* included in this file.
*/

/* TEXT */

.center {
    text-align:center;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

/* GENERAL RESPONSIVE */

@media (max-width:768px) {
    .desktop-only {
        display:none !important;
    }
}

@media (min-width:768px) {
    .mobile-only {
        display:none !important;
    }
}

.hide {
    display:none !important;
}

.force-hide {
    display:none !important;
}

/* Centerd Content CSS For All Pages */

.centered-content {
    width:100%;
    max-width:1366px;
    margin:0 auto;
    display:block;

}

@media (max-width:1366px) {
    .centered-content {
        padding:0px 50px;
    }
}

@media (max-width:1166px) {
    .centered-content {
        padding:0px 30px;
    }
}

@media (max-width:1000px) {
    .centered-content {
        padding:0px 20px;
    }
}

@media (max-width:768px) {
    .centered-content {
        padding:0px 15px;
    }
}

/* Centered Cards */

.center1200 {
    max-width:1200px;
    margin:0 auto;
}

.center1100 {
    max-width:1100px;
    margin:0 auto;
}

.center1000 {
    max-width:1000px;
    margin:0 auto;
}

.center900 {
    max-width:900px;
    margin:0 auto;
}

.center800 {
    max-width:800px;
    margin:0 auto;
}

.center700 {
    max-width:700px;
    margin:0 auto;
}

.center600 {
    max-width:600px;
    margin:0 auto;
}

.center500 {
    max-width:600px;
    margin:0 auto;
}

.center400 {
    max-width:400px;
    margin:0 auto;
}



/* breadcrumbs */

.sectorBreadcrumbs {
    display:none;
}


/* Flex Display Classes */

.relative {
    position: relative;
}

.flex-row {
    display:flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.jcc {
    justify-content: center;
    -webkit-justify-content: center;
}

.jce {
    justify-content: end;
    -webkit-justify-content: flex-end;
}

.aic {
    align-items: center;
    -webkit-align-items: center;
}

.ais {
    align-items: start;
    -webkit-align-items: start;
}

.aie {
    align-items: end;
    -webkit-align-items: end;
}

.jcsb {
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.jcsa {
    justify-content: space-around;
    -webkit-justify-content: space-around;
}

.flex-grow {
    flex-grow:1;
}

.g5 {
    gap:5px;
}

.g10 {
    gap:10px;
}

.g20 {
    gap:20px;
}

.g30 {
    gap:30px;
}

.g40 {
    gap:40px;
}

.g50 {
    gap:50px;
}


.wrap {
    flex-wrap:wrap;
}

.flex-even > * {
    flex:1 1 0;
}

.flex-even-inner {
    flex:1 1 0;
}

/* forms */

textarea::placeholder {
    opacity:0.5;
    font-size:16px;
    font-family: 'aktiv-grotesk', sans-serif;
}

.form-header {
    font-size:22px;
    font-weight:600;
    margin-left:10px;
    margin-top:10px;
    margin-bottom:0px;
}

.form-header.center {
    margin-left:0px;
}

.form-header.no-indent {
    margin-left:0px;
}

.form-description {
    margin-left:10px;
    margin-bottom:0px;
}

.field-label {
    font-size:14px;
    font-weight:500;
    line-height:20px;
    margin-bottom:5px;
    margin-left:10px;
}

textarea, input[type='text'], input[type='number'], input[type='email'], input[type='password'] {
    width:100%;
    border:1px solid #d0d0d0;
    background-color:#F2F2F2;
    border-radius:4px;
    margin-top:5px;
    padding:12px;
    font-size:16px;
    font-family: 'aktiv-grotesk', sans-serif;
}

.textarea-parent {
    display: block;
    position: relative;
    margin-bottom: 15px;
}

.ta-word-limit {
    position:absolute;
    bottom:10px;
    left:12px;
    font-size:12px;
    opacity:0.5;
}

select {
    height: 50px;
    /* width: 100%; */
    border: 1px solid #D0D0D0;
    border-radius: 4px;
    padding-left: 10px;
    padding-right: 10px;
    /* margin-top: 10px; */
    -webkit-appearance:none;
    font-size:16px; 
}

input::placeholder {
    opacity:0.5;
}

textarea {
    min-height:140px;
}

.required::after {
    font-size:inherit;
    color:red;
    content: '*';
    font-weight:600;
}

.radio-parent {
    margin-top:10px;
    gap:10px;
}

.radio-parent label {
    flex-grow:1;
    font-size:16px;
}

.radio-parent input {
    flex: 0 1 20px;
    margin-top:0px;
    height:16px;
    width:16px;
}

.file-upload-area {
    width:100%;
    height:200px;
    background-color:#F2F2F2;
    border-radius:6px;
    margin-top: 10px;
}

.file-upload-inner {
    width:98%;
    height:94%;
    border:2px dashed #d0d0d0;
    border-radius:6px;
}

.upload-icon {
    width:20px;
    height:auto;
}

.file-upload-inner p {
    opacity:0.5;
    font-size:13px;
    margin-top:5px;
    text-align:center;
}

.two-option-radio-parent input {
    position:relative;
    top:-2px;

}

.two-option-radio-parent {
    gap:10px;
}

.two-option-radio-inner {
    width:50%;
    border:1px solid #d0d0d0;
    border-radius:5px;
}

.two-option-radio-inner input {
    margin-left:13px;
}

.two-option-radio-inner label {
    line-height: 54px;
    padding-right:13px;
}

@media (max-width:768px) {
    textarea, input {
        font-size:16px;
    }
    textarea::placeholder {
        font-size:14px;
    }
}

/* Primary and Secondary Buttons */
.button.primary{
  background-color: #456790;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 10px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 10px;
  height: 40px;
  max-width: 200px;
  width: 40%;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button.secondary{
  background-color: #ffffff;
  color: #456790;
  border: 1px solid #456790;
  border-radius: 10px;
  color: #456790;
  border: 1px solid #456790;
  border-radius: 10px;
  height: 40px;
  max-width: 200px;
  width: 40%;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
Invitation Item to Accept or Reject
*/
.invitationRow{
  margin: 20px 0;
    border: 1px solid #ececec;
    padding: 10px;
    border-radius: 10px;
    min-width: 480px;
}


/* Buttons */

.white-outline {
    border:1px solid #fff;
    background:transparent;
    color:#fff;
    padding:10px 15px;
    border-radius:4px;
    font-weight:600;
    font-size:14px;
    cursor:pointer;
}

.white-outline:hover {
    border:1px solid #fff;
    background-color: #fff;
    color:#456790;
}

.white-outline:hover img {
    filter:invert(100);
}

.white-filled {
    background-color:#fff;
    border:1px solid #fff;
    color:#456790;
    padding:10px 15px;
    border-radius:4px;
    font-weight:600;
    font-size:14px;
    cursor:pointer;
}

.white-filled:hover {
    background-color:#456790;
    border:1px solid #456790;
    color:#fff;
}

.white-filled:hover img {
    filter:invert(100);
}

.blue-filled {
    background-color:#456790;
    border:1px solid #456790;
    color:#fff;
    padding:10px 15px;
    border-radius:4px;
    font-weight:600;
    font-size:14px;
    cursor:pointer;
}

.blue-filled:hover {
    background-color:#fff;
    border:1px solid #456790;
    color:#456790;
}

.blue-filled:hover img {
    filter:invert(100);
}

.grey-outline {
    background-color:#fff;
    border:1px solid #d0d0d0;
    color:#000;
    padding:10px 15px;
    border-radius:4px;
    font-weight:600;
    font-size:14px;
    cursor:pointer;
}

.grey-outline:hover {
    background-color:#456790;
    border:1px solid #456790;
    color:#fff;
}

.blue-no-border {
    background-color:#fff;
    border:1px solid transparent;
    color:#45678E;
    padding:10px 15px;
    border-radius:4px;
    font-weight:600;
    font-size:14px;
    cursor:pointer;
}

.blue-no-border:hover {
    color:#2e93e6;
}

/* icons */

.star {
    width:15px;
    height:auto;
    display:inline-block;
}

/* cta banner */

.cta-banner {
    background: radial-gradient(circle, #5DA4DA 0%, #739BC4 100%);
    border-radius:20px;
    overflow:hidden;
    margin:30px auto;
  }

  .cta-image {
    width:380px;
    height:auto;
  }

  .cta-text {
    width:50%;
  }

  .cta-header {
    color:#fff;
    font-size:30px;
    margin-bottom:0px;
    line-height:36px;
  }
  .cta-description {
    color:#fff;
    margin-bottom:20px !important;
  }

  @media (max-width:768px) {
    .cta-banner {
      flex-direction: column;
      padding-bottom:40px;
    }
    .cta-image {
      width:100%;
    }

    .cta-text {
      width:90%;
      margin-top:20px;
      text-align:center;
      align-items: center;
    }
  }


/*  LOAD SPINNER FOR AJAX */
.lds-spinner {
    color: official;
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}
.lds-spinner div {
    transform-origin: 32px 32px;
    animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 29px;
    width: 5px;
    height: 14px;
    border-radius: 20%;
    background: #45678E;
}
.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}
@keyframes lds-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.loader{
    display: none;
}

.lds-spinner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.overlay.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,.85);
    z-index: 999;
    opacity: 1;
    transition: all 0.5s;
}



/* Tabs */
.tab {
    min-width:120px;
    text-align:center;
    text-transform: uppercase;
    padding:10px 10px;
    background-color: transparent;
    border: none;
    border-bottom:3px solid transparent;
    cursor:pointer;
}

.tab.active {
    border-bottom: 3px solid #456790;
}

@media (max-width:768px) {

    .tab-parent {
        padding-top:20px;
        align-items: center;
    }
}

/* coming soon */

.coming-soon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.coming-soon img.blur {
    filter: blur(2px);
    -webkit-filter: blur(2px);
    position: relative;
}

.coming-soon span {
    position:absolute;
    top:50%;
    width:240px;
    left:50%;
    margin-left:-120px;
    text-align:center;
    font-size:16px;
    background-color:#fff;
    padding:20px;
    box-shadow: 0 2px 9px 0 rgba(0,0,0,0.25);
    border-radius:8px;
}

.disabled {
    cursor: not-allowed;
    opacity:0.5;
}

/* logos and profile photo cropping */
.provider-logo, .profile-photo {
    object-fit:cover;
    overflow:hidden;
    border-radius:50%;
    background-color: #fff;
    border: 1px solid #d0d0d0;
}

/* background colours */

.bglg {
    background-color: #F2F2F2;
}


/* padding */

.p50 {
    padding:50px;
}
.p30 {
    padding:30px;
}
.p20 {
    padding:20px;
}
.p10 {
    padding:10px;
}

/* CSS For the loading spinner that will appear on any ajax request */
#jb_overlay{
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height:100%;
  display: none;
  background: rgba(0,0,0,0.6);
}
#jb_overlay .cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#jb_overlay .spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}

.selectedFileNotice {
    border: 1px solid #456790;
    border-radius: 8px;
    background-color: rgba(67,119,182,0.1);
    padding: 8px 10px;
    justify-content: space-between;
    align-content: center;
}

.selectedFileNotice button {
    -webkit-appearance: none;
    width:10px;
    height:10px;
    border:none;
    background: transparent url("../../assets/images/close-icon.png") center center no-repeat;
    background-size: contain;
    float:right;
    margin-top:7px;
}

/* margins */

.mb10 {
    margin-bottom:10px;
}
.mb20 {
    margin-bottom:20px;
}
.mb30 {
    margin-bottom:30px;
}

.mt10 {
    margin-top:10px;
}
.mt20 {
    margin-top:20px;
}
.mt30 {
    margin-top:30px;
}

.no-top {
    margin-top:0px !important;
}
.no-bottom {
    margin-bottom:0px !important;
}

.ml5 {
    margin-left:5px;
}
.ml10 {
    margin-left:10px;
}
.ml20 {
    margin-left:20px;
}
.ml30 {
    margin-left:30px;
}
.selectedFileNotice img{
    max-height: 200px;
    max-width: 100%;
    width:auto; 
}
.selectedFileNotice{
    text-align: center;
}

.jbsector-modal{
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.jbsector-modal .modal-content{
    width: 100%;
    background-color: #fefefe;
    margin: 25% auto;
    padding: 20px;
    border: 1px solid #888;
    max-width: 400px;
    border-radius: 12px;
}

.jbsector-modal .modal-content h3{
    font-size: 18px;
    margin-bottom: 25px;
    text-align: center;
}

.jbsector-modal .modalButtonSection{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
}

.jbsector-modal .closeModal{
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #D0D0D0;
    color: #000;
    width: 46%;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
}

.jbsector-modal .actionButton{
    background-color: #456790;
    color: #fff;
    border: 1px solid transparent;
    width: 46%;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
}

.jbsector-modal .fullWidth{
    width: 100%;
}

.successModal .centerContent{
    text-align: center;
    font-size: 20px;
}

.successModal .successTick{
    width: 80px;
    margin-bottom: 10px;
}


.sectorNotice{
    box-shadow: 0 2px 9px 0 rgb(0 0 0 / 3%);
    border-radius: 8px;
    position: fixed !important;
    bottom: 20px;
    font-weight: 400;
    margin-left: -100px;
    left: 50%;
    display: none;
    font-size: 14px;
    padding: 15px 20px;
}
.sectorNotice img{
    width: 20px;
    height: auto;
}
.sectorNotice.successMessage{
    color: #43B6A8;
    background-color: rgb(67 182 168 / 35%);
}
.sectorNotice.errorMessage{
    color: #b64843;
    background-color: rgb(243 4 4 / 35%);
}

/* Empty div to allow 50px gap at the bottom of page */
.gap50{
    margin-bottom: 50px;
}
.required-fields{
    width: 300px;
    background-color: #F7ECEC;
    color: #B64343;
    font-size: 16px;
    padding: 20px 40px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    left: 50%;
    margin-left: -150px;
    box-shadow: 0 2px 9px 0 rgb(0 0 0 / 3%);
    border-radius: 8px;
}

/* hide review sections */

.review-summary, .star, .star-rating {
    display:none !important;
}

#need-help {
    position:fixed;
    bottom:10px;
    right:10px;
    width:360px;
    max-width:90%;
    box-shadow: 0 0px 8px 0 rgba(0,0,0,0.15);
    border-radius:4px;
    padding:10px 15px;
    background-color:#fff;
}

#need-help img {
    width:24px;
    height:24px;
}

#need-help span {
    font-size:13px;
    font-weight:400;
}

#need-help a {
    font-weight:600;
    color:#45678E;
}

/* Css for Sector Ads Normal */
.sectorJob-normal img {
    width: 100%;
    height: auto;
}
