@import url('https://fonts.googleapis.com/css2?family=Jost&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--main-font-family);
}


:root{
    --main-font-family: 'Jost', sans-serif; 
    --main-background-color: #F5F7FC;   
    --yellow-button-background: #F6C517;
    --yellow-button-text-color: #1C327D;
    --blue-button-background: #3C65F5;
    --medium-text-blue-color: #083056;
    --main-section-gap: 60px;
    --small-text-light-grey-color: #686767;
    --section-main-heading-title-size: 38px;
    --border-light-grey-color: #AEAEAE;
    --light-blue-background-color: #DDE8F8;
    --light-blue-small-text-color: #1992E3;
    --light-yellow-background-color: #FEF2D9;
    --light-yellow-small-text-color: #FBB81C;
    --light-grey-background-color: #D9D9D9;
    --light-grey-small-text-color: #636363;
}


p{
    font-size: 18px;
}

hr{
    background-color: var(--border-light-grey-color) !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/*updown animation start*/

@keyframes UpDown {
    0% {
      bottom: 0;
    }
    50% {
      bottom: 4em;
    }
    100% {
      bottom: 0;
    }
  }

  @keyframes UpDown1 {
    0% {
      bottom: 0;
    }
    50% {
      bottom: 6em;
    }
    100% {
      bottom: 0;
    }
  }

/*updaown animation end*/


/*header start*/

header .bg-light{
    width: 100%;
    background-color: #fff !important;
}
.navbar-brand img{
    width: 45px;
}
.navbar a{
    color: #000 !important;
    font-weight: 600;
    font-family: var(--main-font-family);
    letter-spacing: 1px;
}
.nav-item{
    margin: 0 15px 0 10px;
}
.btn-outline-success{
    border: none !important;
    border-radius: 50% !important;
    position: absolute;
    margin-left: 170px;
}
.btn-outline-success:hover {
    color: #198754 !important;
    background-color: transparent !important;
    border: none;
}
.header-button-account button{
    margin: 6px 10px 0 0;
    padding: 6px 15px;
    border-radius: 5px;
    border: none;  
    font-weight: 600;
}
.header-button-account .sign-up{
    background-color: var(--yellow-button-background);
    color: var(--yellow-button-text-color);
}
.header-button-account .sign-up:hover{
    background-color: var(--blue-button-background);
    transition: 0.3s ease-in-out;
    color: #fff;
}
.header-button-account .log-in{
    background-color: var(--blue-button-background);
    color: #fff;
}
.header-button-account .log-in:hover{
    background-color: var(--yellow-button-background);
    color: var(--yellow-button-text-color);
    transition: 0.3s ease-in-out;
}
.header-button-account button:hover{
    background-color: #fff;
    color: #000;
    transition: 0.2s ease-in-out;
}


/*full screen search start*/

form#search,
form#search * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#search-label {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  /* center flex items vertically */
  width: 45px;
  height: 45px;
  z-index: 100;
  border-radius: 50%;
  margin: 2px 10px 0 0;
  border: 1px solid var(--);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}
#search-label img{
    width: 75%;
}
#search-label:hover{
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}
#search-label:hover .header-search-button{
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}

#searchcontainer {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: block;
  background: rgba(0, 0, 0, 0.7);
  left: -100%;
  /* initially position search container out of view */
  top: 72px;
  /* shift container downwards so the header is still visible when search is shown */
  padding-top: 50px;
  opacity: 0;
  cursor: crosshair;
  text-align: center;
  font: bold 16px 'Bitter', sans-serif;
  /* use google font */
  -webkit-transform: scale(.9) translate3d(-0, -50px, 0);
  transform: scale(.9) translate3d(-0, -50px, 0);
  -webkit-transition: -webkit-transform .5s, opacity .5s, left 0s .5s;
  transition: transform .5s, opacity .5s, left 0s .5s;
}

#searchcontainer div {
  padding: 5px 0;
  color: white;
  width: 100%;
}

#searchcontainer form {
  opacity: 0;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  -webkit-transition: all .5s 0s;
  transition: all .5s 0s;
}

#searchcontainer form input[type="text"] {
  width: 100%;
  /* margin: auto; */
  top: 0;
  left: 0;
  z-index: 99;
  padding: 10px;
  border: none;
  border-bottom: 2px solid var(--blue-button-background);
  outline: none;
  font-size: 1rem;
  background: #eee;
}

#searchcontainer.opensearch {
  left: 0;
  opacity: 1;
  -webkit-transform: scale(1) translate3d(0, 0, 0);
  transform: scale(1) translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform .5s, opacity .5s, left 0s 0s;
  transition: transform .5s, opacity .5s, left 0s 0s;
}

#searchcontainer.opensearch form {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: all .5s .5s;
  transition: all .5s .5s;
}

@media (max-width: 480px) {
  #searchcontainer form input[type="text"] {
    width: 95%;
  }
}

.search-container-wrap{
    width: 60% !important;
    margin: auto;
}


/*full screen search end*/


/*header search start*/

.list-autocomplete { padding:0; }
.list-autocomplete em { font-style:normal; background-color:#e1f2f9; }

.hasNoResults { color:#aaa; }
.hasNoResults { display:block; padding:30px 15px; }
.hasNoResults {  color:#aaa; }

.dropdown-menu { padding:0; }
.dropdown-item { line-height:30px; }
.dropdown-menu hr { margin:0; }

.header-search-option-button{
    background-color: var(--blue-button-background) !important;
    color: #fff !important;
    letter-spacing: 1px;
     
}
.search-container-wrap .dropdown-menu{
    padding-bottom: 0 !important;
}

/*header search end*/


/*notification start*/

.notification-drop {
    list-style: none;
    margin: 10px;
    padding: 0;
  }
  
  .notification-drop {
    font-family: 'Ubuntu', sans-serif;
    color: #444;
  }
  .notification-drop .item {
    padding: 10px;
    font-size: 18px;
    position: relative;
    border-bottom: 1px solid #ddd;
  }
  .notification-drop .item:hover {
    cursor: pointer;
  }
  .notification-drop .item i {
    margin-left: 10px;
  }
  .notification-drop .item ul {
    display: none;
    position: absolute;
    top: 100%;
    background: #fff;
    left: -200px;
    right: 0;
    z-index: 1;
    border-radius: 8px;
    border: 1px solid #ddd;
  }
  .notification-drop .item ul li {
    font-size: 16px;
    padding: 10px 10px;
    list-style: none;
  }
  .notification-drop .item ul li:hover {
    background: #ddd;
    color: rgba(0, 0, 0, 0.8);
  }
  
  .notification-dropdown:hover{
      background-color: var(--yellow-button-background) !important;
      transition: 0.3s ease-in-out;
  }
  
  @media screen and (min-width: 500px) {
    .notification-drop {
      display: flex;
      justify-content: flex-end;
    }
    .notification-drop .item {
      border: none;
    }
  }
  
  
  
  .notification-bell{
    font-size: 20px;
  }
  
  .btn__badge {
    background: #FF5D5D;
    color: white;
    font-size: 12px;
    position: absolute;
    top: 0;
    right: 0px;
    padding:  3px 10px;
    border-radius: 50%;
  }
  
  .pulse-button {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
    -webkit-animation: pulse 1.5s infinite;
  }
  
  .pulse-button:hover {
    -webkit-animation: none;
  }
  
  @-webkit-keyframes pulse {
    0% {
      -moz-transform: scale(0.9);
      -ms-transform: scale(0.9);
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
    70% {
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
      box-shadow: 0 0 0 50px rgba(255, 0, 0, 0);
    }
    100% {
      -moz-transform: scale(0.9);
      -ms-transform: scale(0.9);
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
      box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
  }
  
  .notification-text{
    font-size: 14px;
    font-weight: bold;
  }
  
  .notification-text span{
    float: right;
  }

/*notfication end*/


/*header end*/


/*sign up start*/

.sign-up-modal .modal-title{
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 24px !important;
}


/*sign up modal start*/

.sign-up-modal-body ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .sign-up-modal-body ul li {
    padding: 10px 10px;
    background: white;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    box-shadow: 0px 0px 3px rgb(194 186 186 / 30%);
    cursor: pointer;
    border-radius: 0px;
    transition: all 0.3s ease;
  }
  
  .sign-up-modal-body ul li:not(:last-of-type) {
    /* add border beside last element */
    border-right: 1px solid white;
  }
  
  .sign-up-modal-body ul li:hover {
    background: rgb(255, 102, 102);
    color: #FFF;
    transition: all 0.3s ease;
  }
  
  .sign-up-modal #first-dynamic-table,
  .sign-up-modal #first-dynamic-table-2 {
    width: 100%;
    background: #ffffff;    
    padding: 2px 15px;
    color: #36494f;
  }

  .sign-up-modal #first-dynamic-table label,
  .sign-up-modal #first-dynamic-table-2 label{
    font-weight: 600;
    color: #000;    
  }

  .sign-up-modal #first-dynamic-table input,
  .sign-up-modal #first-dynamic-table-2 input{
    background-color: var(--light-grey-background-color);    
  }

  .sign-up-modal #first-dynamic-table input::placeholder,
  .sign-up-modal #first-dynamic-table-2 input::placeholder{
    font-size: 14px;
    font-style: italic;
    color: var(--light-grey-small-text-color);
  } 

  .sign-up-modal .form-check-input:checked{
    background-color: #0d6efd !important;
  }
  
  .sign-up-modal .r-s-u-button{
    width: 100%;
    background-color: var(--blue-button-background);
    border-radius: 8px;
    padding: 10px 0;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
  }
  .sign-up-modal .r-s-u-button:hover{
    background-color: var(--yellow-button-background);
    color: var(--yellow-button-text-color);
    transform: translateY(-5px);
    transition: 0.3s ease-in-out;
  }

  .s-u-s-i-options-buttons{
    text-align: center;
    padding-top: 10px;
  }
  .s-u-s-i-options-buttons p{    
    font-weight: 600;
    color: var(--medium-text-blue-color) !important;
  }

  .s-u-s-i-options-buttons .btn{
    padding: 5px 30px;
    background: transparent;
    margin: 0 10px;
    font-weight: 600;
    letter-spacing: 1px;
  }

.s-u-s-i-options-buttons .facebook-s-u-s-i-option{
    border: 2px solid var(--yellow-button-text-color) !important;
    border-radius: 8px;
    color: var(--yellow-button-text-color);    
}
.s-u-s-i-options-buttons .facebook-s-u-s-i-option:hover{
    color: #fff;    
    background-color: var(--yellow-button-text-color);
    transition: 0.3s ease-in-out;
}

.s-u-s-i-options-buttons .gmail-s-u-s-i-option{
    border: 2px solid #F95F08 !important;
    border-radius: 8px;
    color: #F95F08;    
}
.s-u-s-i-options-buttons .gmail-s-u-s-i-option:hover{
    background-color: #F95F08;
    color: #fff;  
    transition: 0.3s ease-in-out;
}
  
  
  /*Main Style*/
  .sign-up-modal .tab-item.active {
    background: #36494f;
    color: white;
  }
  
  .sign-up-modal .tab-content {
    width: 100%;
    display: none;
  }
  
  .sign-up-modal .tab-content.active {
    display: block;
  }
  .sign-up-modal .sign-up-modal-body ul{
    padding-left: 0;
  }
  .sign-up-modal .sign-up-modal-body{
    padding-top: 10px;
  }
  .sign-up-modal .sign-up-modal-body ul li{
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 10px;
  }

  /* .sign-up-candidate{
    margin-right: 10px;
  }
  .sign-up-employer{
    margin-left: 10px;
  } */
  
  .sign-up-modal .tab-item.active{
    background: #192A53;
  }

/*sign up modal end*/


/*sign up end*/


/*sign in start*/

.sign-in-tabs{
    list-style-type:none; 
    text-align: center;
    padding-left: 0;
  }
.sign-in-tabs li{
      display: inline-block;
      padding: 10px 0;
      box-shadow: 0 !important;
  }
.sign-in-tabs li a{
    text-decoration: none;  
    padding: 10px 60px;
    border-radius: 5px;
    color: #000;
    font-weight: 600;
    letter-spacing: 1px;
}
.sign-in-tabs li a:hover{
    background: rgb(255, 102, 102);
    color: #fff;
}
.sign-in-tabs-wrapper .active a{
    color: #fff;    
    background: #192A53; 
  }
  .sign-in-tabs-wrapper .active a:hover{
    background: #192A53;
  }
.sign-in-tab-content{
    padding: 10px;
  }

/*sign in end*/



/*job portal banner start*/

/* .mutual-fund-banner{
    background-color: var(--main-background-color) !important;
} */
.mutual-fund-banner-content{
    width: 100%;  
    position: relative;
    top: 150px;  
}
.mutual-fund-banner-content h1{
    font-weight: 600;
    font-size: 70px;
}
.mutual-fund-banner-content h4{
    color: var(--medium-text-blue-color);
    padding-top: 25px;
    font-weight: 600;
}

/* .mutual-fund-banner-overlay{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
} */

.mutual-fund-banner-content .banner-button{
    padding: 10px 40px;
    margin-top: 25px;
    font-size: 18px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    background-color: var(--blue-button-background);
    color: #fff;
    letter-spacing: 1px;
}
.mutual-fund-banner-content .banner-button:hover{
    background-color: var(--yellow-button-background);
    color: var(--yellow-button-text-color);
    transform: translateY(-5px);
    transition: 0.3s ease-in-out;
}

/*job portal banner start*/


/*job portal middle start*/


main{
    width: 100%;
    padding-bottom: 80px;
}

/*job portal section 1 start*/

.job-portal-section-1{
    width: 100%;
    padding-top: var(--main-section-gap);
}
.job-portal-section-1-top{
    text-align: center;
}
.job-portal-section-1-top h2{
    font-weight: 800;
    font-size: var(--section-main-heading-title-size);
}
.job-portal-section-1-top h6{
    color: var(--small-text-light-grey-color);
    padding-top: 10px;
}
.job-portal-section-1-wrapper{
    width: 100%;
    padding-top: 40px;
}
.j-p-s-1-w-box a{
    text-decoration: none;
}
.j-p-s-1-w-a{
    width: 100%;
    border: 1px solid var(--border-light-grey-color);
    border-radius: 10px;
    padding: 20px 20px 5px 20px;
}
.j-p-s-1-w-a:hover{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: 0.2s ease-in-out;
}
.j-p-s-1-w-a-img img{
    width: 100%;
}
.j-p-s-1-w-a-desc h5{
    font-weight: 600;
    color: var(--yellow-button-text-color);
    height: 50px;
}
.j-p-s-1-w-a-desc p{
    color: var(--small-text-light-grey-color);
}

/*job portal section 1 end*/


/*job portal section 2 start*/

.j-p-s-2-w-a-img img{
    width: 80%;
}
.j-p-s-2-box a{
    text-decoration: none;
}
.j-p-s-2-w-a-desc h5{
    color: var(--yellow-button-text-color);
    font-weight: 600;
}
.j-p-s-2-w-a-d-list{
    padding-left: 0;
}
.j-p-s-2-w-a-d-list li{
    display: inline;   
    color: var(--small-text-light-grey-color);
    margin: 0 10px;
}
.j-p-s-2-w-a-d-list li:first-child{
    margin-left: 0;
}
.j-p-s-2-w-a-d-job-mode-list{
    padding-left: 0;
}
.j-p-s-2-w-a-d-job-mode-list li{
    display: inline;   
    color: var(--small-text-light-grey-color);
    margin: 0 3px;
    font-size: 14px;
    letter-spacing: 1px;
}
.j-p-s-2-w-a-d-job-mode-list li:first-child{
    margin-left: 0;
}
.j-p-s-2-w-a-d-job-mode-list span{
    padding: 3px 10px;    
    border-radius: 25px;
    font-weight: 600;
}
.j-p-s-2-w-a-d-job-mode-list-1 span{
    background-color: var(--light-blue-background-color);
    color: var(--light-blue-small-text-color);
}
.j-p-s-2-w-a-d-job-mode-list-2 span{
    background-color: var(--light-yellow-background-color);
    color: var(--light-yellow-small-text-color);
}
.j-p-s-2-w-a-d-job-mode-list-3 span{
    background-color: var(--light-grey-background-color);
    color: var(--light-grey-small-text-color);
}
.job-portal-section-2-button{
    text-align: center;
}
.job-portal-section-2-button button{
    padding: 10px 40px;
    margin-top: 25px;
    font-size: 18px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    background-color: var(--blue-button-background);
    color: #fff;
    letter-spacing: 1px;
}
.job-portal-section-2-button button:hover{
    background-color: var(--yellow-button-background);
    color: var(--yellow-button-text-color);
    transform: translateY(-5px);
    transition: 0.3s ease-in-out;
}

/*job portal section 2 end*/


/*job portal section 3 start*/

.j-p-s-3-left img{
    width: 100%;
}
.j-p-s-3-right h2{
    font-weight: 600;
    font-size: 40px;
}
.j-p-s-3-right p{
    padding-top: 10px;
    line-height: 30px;
    color: var(--light-grey-small-text-color);
}
.j-p-s-3-right-list li{
    color: var(--light-grey-small-text-color);
    list-style: none;
    padding-bottom: 15px;
}
.j-p-s-3-right button{
    padding: 10px 30px;
    border-radius: 10px;
    background-color: var(--yellow-button-background);
    color: var(--yellow-button-text-color);
    font-size: 18px;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
}
.j-p-s-3-right button:hover{
    transform: translateY(-5px);
    transition: 0.3s ease-in-out;
    background-color: var(--blue-button-background);
    color: #fff;
}
.ctgy-1-emplyee-count{
    width: 40%;
    margin: auto;
    position: relative;
    margin-top: -90px;
}
.ctgy-1-circle{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--blue-button-background);
    color: #fff;
    text-align: center;  
    position: absolute;  
    margin-top: -35px;
    margin-left: -35px;
}
.ctgy-1-circle i{
    padding-top: 14px;
    font-size: 36px;
}
.ctgy-1-wrapper{
    text-align: center;
    padding: 20px 0;
    border: 2px solid var(--border-light-grey-color);
    border-radius: 5px;    
    background-color: #fff;
}
.ctgy-1-wrapper h5{
    font-weight: 600;
}
.ctgy-1-w-list{
    padding: 20px;
    width: 66%;
    margin: auto;
}
.ctgy-1-w-l-box{
    width: 50px;
    height: 50px;
    background-color: var(--yellow-button-background);
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    overflow: hidden;
}
.ctgy-1-w-l-box img{
    width: 80%;
    height: 80%;
    transform: scale(1.5);
}
#ctgy-1-w-l-box-2{
    background-color: purple;
}
#ctgy-1-w-l-box-3{
    background-color: green;
}
#ctgy-1-w-l-box-4{
    background-color: brown;
}
#ctgy-1-w-l-box-5{
    background-color: teal;
}
#ctgy-1-w-l-box-6{
    background-color: var(--border-light-grey-color);
}
.ctgy-1-w-l-box i{
    font-size: 20px;
    color: #000;
    padding-top: 14px;
}

/*job portal section 3 end*/


/*job portal section 4 start*/

.job-portal-section-4{
    width: 100%;
    padding: var(--main-section-gap);
}
.j-p-s-4-box{
    text-align: center;    
}
.j-p-s-4-box h1{
    font-weight: 600;
    font-size: 50px;
}
.j-p-s-4-box p{
    color: var(--yellow-button-text-color);
    font-weight: 600;
}

/*job portal section 4 end*/


/*job portal section 5 start*/

.job-portal-section-5{
    width: 100%;
    background-color: var(--main-background-color);
    padding-top: var(--main-section-gap);
    padding-bottom: 60px;
}
.j-p-s-5-wrapper{
    padding-top: 40px;
}
.j-p-s-5-box{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
    background-color: #fff;
    padding: 10px 10px 30px 10px;
}
.j-p-s-5-box:hover{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: 0.3 ease-in-out;
}
.j-p-s-5-box-inner img{
    width: 100%;
}
.j-p-s-5-box-category{
    padding-left: 0;
    padding-top: 15px;
}
.j-p-s-5-box-category li{
    display: inline;
    color: var(--small-text-light-grey-color);
    font-size: 12px;
    margin-right: 10px;
}
.j-p-s-5-box-category li i{
    font-size: 10px;
}
.j-p-s-5-box h5{
    font-weight: 600;
    height: 55px;
}
.j-p-s-5-box p{
    font-size: 16px;
    color: var(--light-grey-small-text-color);
}
.j-p-s-5-box button{
    border: none;
    background: transparent;
    color: var(--blue-button-background);
    font-weight: 600;
    letter-spacing: 1px;
}
.j-p-s-5-box button:hover{
    transform: translateY(-3px);
    transition: 0.3s ease-in-out;
}
.j-p-s-5-box button:hover .right-arrow {
    transform: translateX(3px);
    transition: 0.3s ease-in-out;
}

/*job portal section 5 end*/


/*job portal section 6 start*/

.tax-saver-slider-first{
    padding-top: var(--main-section-gap);
}

.t-s-s-f-s-1{
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    padding: 20px 20px;
    border-radius: 8px;    
    text-align: center;
}
.t-s-s-f-s-1 a{
    text-decoration: none;
    color: #000;
    font-weight: 600;
}
.t-s-s-f-s-1-image{
    height: 52px;
}
.t-s-s-f-s-1 img{
    width: 60px !important;
    margin: auto;
}
.t-s-s-f-s-1 p{
    padding-top: 20px;
}
.tax-saver-slider-first .owl-nav{
    margin-top: 10px;
    position: relative;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    float: right;
    top: -240px;
}
.tax-saver-slider-first .owl-dots{
    display: none;
}
.tax-saver-slider-first .item{
padding: 5px 10px;
}
.tax-saver-slider-first .owl-nav span{
font-size: 55px;
color: var(--blue-button-background);
position: absolute;
margin-top: -47px;
margin-left: -10px;
height: 0;
}
.tax-saver-slider-first .owl-nav button{
height: 40px;
width: 40px;
background-color: #fff !important;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.tax-saver-slider-first .owl-nav .owl-prev:hover{
    transition: 0.1s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
.tax-saver-slider-first .owl-nav .owl-next:hover{
transition: 0.1s ease-in-out;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.owl-theme .owl-nav [class*='owl-']{
    border-radius: 50% !important;
}

/*job portal section 6 end*/


/*job portal section 7 start*/

.j-p-s-7-i-box{
    border-radius: 8px;
    background-color: var(--main-background-color);
}
.j-p-s-7-i-box-left{
    padding: 40px 0 40px 40px;
}
.j-p-s-7-i-box-left h2{
    font-weight: 600;
}
.j-p-s-7-i-box-left p{
    padding-top: 10px;
    color: var(--light-grey-small-text-color);
}
.j-p-s-7-i-box-left button{
    margin-top: 10px;
    background-color: var(--blue-button-background);
    border-radius: 8px;
    color: #fff;
    padding: 10px 30px;
    border: none;
    letter-spacing: 1px;
    font-weight: 600;
}
.j-p-s-7-i-box-left button:hover{
    background-color: var(--yellow-button-background);
    transition: 0.3s ease-in-out;
    color: var(--yellow-button-text-color);
}
.j-p-s-7-i-box-right img{
    width: 60%;
    float: right;
}

/*job portal section 7 end*/


/*job portal middle end*/



/*resume options slider start*/

.resume-templ-options h5{
    font-weight: bold;
}

/*resume options slider end*/



/*employer filter search section 1 start*/

.employer-filter-search-section-1{
  width: 100%;
  padding-top: 10rem;
}
.employer-filter-search-section-1 .container{
  width: 50% !important;
}
.has-search .form-control {
  padding-left: 2.375rem;
}

.has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
}

/*custom inpu file*/
.custom-file-input {
  color: transparent;

}
.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}

.custom-file-input::before {
	  content: "▲ Attached Resume";
    color: #fff;
    display: inline-block;
    background: #f39c12;
    padding: 10px 22px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    font-weight: 400;
    border-radius: 2px;
    outline: none;
        box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
}
.custom-file-input:focus {
	outline: none !important;

}
.custom-file-input:active::before {
	    transform: scale(.9) translate(0px, 2px);
	   box-shadow:  inset 4px 4px 5px 0px rgba(0, 0, 0, 0.20);
	   
}

.e-f-s-s-1-w-c{
  text-align: right;
}
.employer-filter-search-section-1 label{
  font-weight: 600;
  color: var(--light-grey-small-text-color);
  letter-spacing: 1px;
}
.selectpicker{
  border: none !important;
  border-bottom: 1px solid var(--border-light-grey-color) !important;
}


#proof {
  padding: 20px 0 0 0;
  border-radius: 4px;
}
.cl-custom-check {
  display: none;
}
.cl-custom-check + .cl-custom-check-label {
  /* Unchecked style  */
  color: #212529;
  padding: 5px 10px;
  cursor: pointer;
  user-select: none;
  border-radius: 4px;
  display: inline-block;
  margin: 0 10px 10px 0;
  backface-visibility: hidden;
  transition: all 0.6s ease;
  border: 1px solid #ccc;
  font-weight: 400;
}
.cl-custom-check:checked + .cl-custom-check-label {
  /* Checked style  */
  background-color: var(--blue-button-background);
  backface-visibility: hidden;
  transform: rotateY(360deg);
  color: #fff;
}


/*employer filter search section 1 end*/




/*resume 1 start*/

.resume-1{
    width: 100%;
    padding-top: 40px;
}
.resume-1-header{
    background-color: var(--light-yellow-background-color);
    padding-top: 50px;
}
.r-1-h-inner-image{
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    top: 50px;
}
.r-1-h-inner img{
    width: 100%;
}

.resume-1-middle{
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
}
.r-1-m-l-a{
    padding-top: 20px;
    border-bottom: 2px solid var(--border-light-grey-color);
}
.r-1-m-l-b{
    padding-top: 20px;
    border-bottom: 2px solid var(--border-light-grey-color);
}
.r-1-m-l-b h4{
    font-weight: 600;
}
.r-1-m-l-c{
    padding-top: 20px;
    border-bottom: 2px solid var(--border-light-grey-color);
}
.r-1-m-l-c h4{
    font-weight: 600;
}
.r-1-m-l-d{
    padding-top: 20px;
    border-bottom: 2px solid var(--border-light-grey-color);
}
.r-1-m-l-d h4{
    font-weight: 600;
}
.r-1-m-l-e{
    padding-top: 20px;
    border-bottom: 2px solid var(--border-light-grey-color);
}
.r-1-m-l-e h4{
    font-weight: 600;
}

.r-1-m-r-a{
    padding: 20px 25px;
    border-left: 2px solid var(--border-light-grey-color);
    border-bottom: 2px solid var(--border-light-grey-color);
}
.r-1-m-r-a h4{
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
}
.r-1-m-r-a p{
    color: var(--light-grey-small-text-color);
    padding-top: 15px;
}
.r-1-m-r-b{
    border-left: 2px solid var(--border-light-grey-color);
    margin-top: 10px;
    padding: 20px 25px;
}
.r-1-m-r-b h4{
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
}
.r-1-m-r-b-ctgy-1{
    padding-top: 20px;
}
.r-1-m-r-b-ctgy-1 h5{
    font-weight: 600;
}

/*resume 1 end*/


/*resume 2 start*/

.r-1-w-left img{
    width: 100%;
}
.r-1-w-r-inner{
    background-color: var(--light-yellow-small-text-color);    
    padding: 20px 20px 0 20px;
    height: 100%;
}
.r-1-w-r-i-left h5{
    letter-spacing: 1px;
}
.r-1-w-r-inner h2{
    font-weight: 600;
}
.r-1-w-r-inner h5{
    font-weight: 600;
}
.r-1-w-r-main{
    padding-top: 40px;    
}
.r-1-w-r-main h4{
    font-weight: 600;
    padding-bottom: 15px;
}
.r-1-w-r-main h5{
    font-weight: 600;
}
.r-1-w-r-m-r-a{
    border-bottom: 1px dotted #aaa;
}
.r-1-w-r-m-r-b{
    padding-top: 40px;
    border-bottom: 1px dotted #aaa;
}
.r-1-w-r-main p{
    font-size: 16px;
}
.r-1-w-r-m-r-c{
    padding-top: 40px;
    border-bottom: 1px dotted #aaa;
}
.r-1-w-r-m-right{
    padding-left: 20px;
}
.r-1-w-r-m-l-a{
    border-bottom: 1px dotted #aaa;
    padding-top: 40px;
}
.r-1-w-r-m-l-b{
    border-bottom: 1px dotted #aaa;
    padding-top: 40px;
}
.r-1-w-r-m-l-c{
    border-bottom: 1px dotted #aaa;    
}
.r-1-w-r-m-l-d{
    border-bottom: 1px dotted #aaa;
    padding-top: 40px;
}

/*resume 2 end*/




/*contact page start*/


/*contact page banner start*/

.job-portal-contact-banner{
    width: 100%;
    height: 55vh;
    background: linear-gradient(270deg, #EEEEFF 44.17%, rgba(238, 238, 255, 0) 100%);
}
.job-portal-contact-banner-content{
    position: relative;
    top: 45%;
    text-align:center;
}
.job-portal-contact-banner-content h2{
    font-weight: 600;
    font-size: 50px;   
}
.j-p-c-b-breadcrumbs{
    padding-left: 0;
}
.j-p-c-b-breadcrumbs li{
    display: inline;    
}

/*contact page banner end*/


/*job portal contact page middle section 1 start*/

.job-portal-contact-middle-section-1{
    width: 100%;
    padding-top: var(--main-section-gap);
}
.job-portal-contact-middle-section-1-inner{
    background-color: var(--main-background-color);
    padding: 80px 40px 20px 40px;       
    border-radius: 5px;
}
.j-p-m-s-1-box i{
    font-size: 32px;
    padding-bottom: 15px;
}
.j-p-m-s-1-box h4{
    font-weight: 600;   
}
.j-p-m-s-1-box p{
    color: var(--small-text-light-grey-color);   
}

/*job portal contact page middle section 1 end*/


/*job portal contact page middle section 2 start*/

.job-portal-contact-middle-section-2-inner p{
    padding: 10px 0;
    color: var(--light-grey-small-text-color);
}
.j-p-c-m-s-2-i-image-a{
    width: 70%;
    border-radius: 5px;
}
.j-p-c-m-s-2-i-image-a img{
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    animation: UpDown 5s ease-in-out infinite;    
    position: relative;
}
.j-p-c-m-s-2-i-image-b{
    width: 70%;    
}
.j-p-c-m-s-2-i-image-b img{
    margin: -20px 120px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    animation: UpDown1 4s ease-in-out infinite;    
    position: relative;
}
.j-p-c-m-s-2-i-image img{
    width: 100%;
}
.contact-comment{
    line-height: 3 !important;
}
.contact-form-button button{
    background-color: var(--blue-button-background);
    color: #fff;
    margin-top: 30px;
    padding: 10px 40px;
    border: none;
    border-radius: 10px;
    letter-spacing: 1px;
    font-weight: 600;    
}
.contact-form-button button:hover{
    background-color: var(--yellow-button-background);
    color: var(--yellow-button-text-color);
    transform: translateY(-5px);
    transition: 0.3s ease-in-out;
}


/*job portal contact page middle section 2 end*/


/*contact page end*/


/*about us page start*/

/*job portal about us page middle section 1 start*/

.job-portal-about-us-middle-section-1{
    width: 100%;
    padding-top: var(--main-section-gap);    
}
.job-portal-about-us-middle-section-1 h2{
    font-weight: 800;
    font-size: var(--section-main-heading-title-size);    
}
.job-portal-about-us-middle-section-1 p{
    color: var(--light-grey-small-text-color);
    padding-top: 10px;
}

/*job portal about us page middle section 1 end*/

.job-portal-about-us-middle-section-2-inner{
    padding-bottom: var(--main-section-gap);
}
.j-p-a-u-m-s-2-left img{
    width: 100%;
    border-radius: 5px;
}
.j-p-a-u-m-s-2-right h2{
    font-weight: 600;
    font-size: 40px;
}
.j-p-a-u-m-s-2-right p{
    padding-top: 10px;
    line-height: 30px;
    color: var(--light-grey-small-text-color);
}
.j-p-a-u-m-s-2-right button{
    padding: 10px 40px;
    margin-top: 10px;
    font-size: 18px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    background-color: var(--blue-button-background);
    color: #fff;
    letter-spacing: 1px;
}
.j-p-a-u-m-s-2-right button:hover{
    background-color: var(--yellow-button-background);
    color: var(--yellow-button-text-color);
    transform: translateY(-5px);
    transition: 0.3s ease-in-out;
}

/*job portal about us page middle section 2 end*/ 


/*job portal about us page middle section 3 start*/ 

.job-portal-about-us-middle-section-3{
    width: 100%;    
    padding-top: var(--main-section-gap);
    background: linear-gradient(180deg, #F5F7FC 36.2%, rgba(245, 247, 252, 0) 100%);
    text-align: center;
}
.job-portal-about-us-middle-section-3-inner h2{
    font-weight: 800;
    font-size: var(--section-main-heading-title-size);
}
.job-portal-about-us-middle-section-3-inner p{
    padding-top: 10px;
    color: var(--light-grey-small-text-color);
}
.about-us-slider{
    padding-top: 20px;
}
.a-s-inner{
    text-align: center;
    padding: 0 10rem;
}
.a-s-box{
    width: 115px;
    height: 115px;
    margin: auto;
    border-radius: 50%;
    border: 2px dotted var(--border-light-grey-color);
    background-color: #fff;
}
.a-s-box-inner{
    width: 100px;
    height: 100px;    
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    top: 6px;
    position: relative;
}
.a-s-box img{
    width: 100% !important;    
}
.a-s-inner h6{
    padding-top: 20px;
    color: var(--blue-button-background);
    font-size: 18px;
    font-weight: 600;
}
.a-s-inner p{
    color: var(--small-text-light-grey-color);
    font-style: italic;
    padding-top: 15px;
    letter-spacing: 0.5px;
}
.a-s-inner h5{
    font-weight: 600;
    letter-spacing: 1px;
}
.about-us-slider .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: var(--blue-button-background) !important;
}

/*job portal about us page middle section 3 end*/ 


/*job portal about us page middle section 4 start*/

.job-portal-about-us-middle-section-4{
    width: 100%;
    padding-top: var(--main-section-gap);
    text-align: center;
}
.j-p-a-u-m-s-4-b-content{
    position: relative;
    top: 25%;
    color: #fff;
}
.j-p-a-u-m-s-4-b-content h2{
    font-weight: 600;
    letter-spacing: 1px;    
    padding-bottom: 10px;
}
.j-p-a-u-m-s-4-b-content p{
    letter-spacing: 1px;
}
.j-p-a-u-m-s-4-b-content button{
    padding: 10px 30px;
    border-radius: 10px;
    background-color: var(--yellow-button-background);
    color: var(--yellow-button-text-color);
    font-size: 18px;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
}
.j-p-a-u-m-s-4-b-content button:hover{
    transform: translateY(-5px);
    transition: 0.3s ease-in-out;
    background-color: #fff;
}

/*job portal about us page middle section 4 end*/


/*about us page end*/



/*Candidates Profile Settings start*/

.job-portal-candidate-profile-banner-content{
    width: 100%;
    position: relative;
    top: 45%;
}
.job-portal-candidate-profile-banner-content .j-p-c-p-b-c-image{
    display: flex;
}
.job-portal-candidate-profile-banner-content .j-p-c-p-b-c-image li{
    display: inline;
}
.job-portal-candidate-profile-banner-content .j-p-c-p-b-c-image .j-p-c-p-b-c-image-outer{
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.job-portal-candidate-profile-banner-content .j-p-c-p-b-c-image .j-p-c-p-b-c-image-outer:hover .j-p-c-p-b-c-image-o-img{
    transform: scale(1.2);
    transition: 0.3s ease-in-out;
}
.job-portal-candidate-profile-banner-content .j-p-c-p-b-c-image img{
    width: 100%;
}
.job-portal-candidate-profile-banner-content h2{
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    top: 75%;
    color: var(--medium-text-blue-color);
}


/*candidates profile settings section 1 start*/

.candidates-profile-settings-section-1{
    padding-top: var(--main-section-gap);
}

.c-p-s-s-1-left ul {
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }
  
  .c-p-s-s-1-left ul li {
    padding: 20px 20px;
    background: white;
    width: 100%;
    list-style-type: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    cursor: pointer;
    border-radius: 0px;
    transition: all 0.3s ease;
    margin: 20px 0;
  }
  
  .c-p-s-s-1-left ul li:first-child{
    margin: 0;
  }
  
  .c-p-s-s-1-left ul li:not(:last-of-type) {
    /* add border beside last element */
    border-right: 1px solid white;
  }
  
  .c-p-s-s-1-left ul li:hover {
    background: var(--yellow-button-background);
    color: var(--yellow-button-text-color);
    transition: all 0.3s ease;
  }
  
  .sign-up-modal #first-dynamic-table,
  .sign-up-modal #first-dynamic-table-2 {
    width: 100%;
    background: #ffffff;    
    padding: 0 15px;
    color: #000;   
    height: 410px;
    overflow-y: auto; 
  }
  #first-dynamic-table h2{
    font-weight: 600;
  }

  #first-dynamic-table p{
    color: var(--small-text-light-grey-color);
  }
  

  /*scroll bar start*/

  /* scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  }
  
  ::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, 0.3);
  }

  /*scroll bar end*/
  
  
  /*Main Style*/
  .tab-item.active {
    background: var(--blue-button-background);
    color: #fff;
  }
  
  .tab-content {
    width: 100%;
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  .c-p-s-s-1-left ul{
    padding-left: 0;
  }
  .c-p-s-s-1-left ul li{
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
  }

  .c-p-s-s-1-left a{
    color: red;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
  }

  .f-d-t-p-image{
    width: 120px;
    /*height: 120px;*/
    /*overflow: hidden;*/
    border-radius: 8px;
  }
  .f-d-t-profile-list img{    
    width: 100%;
  }
  .f-d-t-profile-list{
    display: flex;
    padding-left: 0;
    padding-top: 15px;
  }
  .f-d-t-profile-list li{
    list-style: none;
    margin-right: 40px;
  }
  .f-d-t-profile-list input[type="file"]::file-selector-button {
    border: none;
    border-radius: 8px;
    padding: 10px 30px;
    background-color: var(--blue-button-background);
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
  }
  
  input[type="file"]::file-selector-button:hover {
    background-color: var(--yellow-button-background);
    color: var(--yellow-button-text-color);
    transition: 0.3s ease-in-out;
    cursor: pointer;
  }

  .c-p-s-s-1-r-form{
    padding-top: 20px;
  }
  .c-p-s-s-1-r-form label{
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--light-grey-small-text-color);
  }
  .c-p-s-s-1-r-form input{
    padding: 10px 15px !important;
  }
  .c-p-s-s-1-r-form input::placeholder{
    font-style: italic;
    color: var(--border-light-grey-color);
  }
  .c-p-s-s-1-r-form textarea{
    height: 200px;    
  } 
  .c-p-s-s-1-right a{
    color: red;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .c-p-s-button{
    width: 100%;
    padding: 10px 0 !important;
    font-size: 20px !important;
    border: none !important;
    background-color: var(--blue-button-background);
  }
  .c-p-s-button:hover{
    background-color: var(--yellow-button-background) !important;
    color: var(--yellow-button-text-color) !important;
    transition: 0.3s ease-in-out;
    transform: translateY(-5px);
  }
  .applied-jobs{
    padding-top: 10px;
  }

  .saved-jobs{
    padding-top: 10px;
  }

  .j-p-s-2-w-a-d-button{
    padding: 5px 15px;
    border-radius: 25px;
    float: right;
    background-color: var(--blue-button-background);
    color: #fff;
    border: none;
    font-size: 16px;
  }
  .j-p-s-2-w-a-d-button:hover{
    background-color: var(--yellow-button-background);
    color: var(--yellow-button-text-color);
    transition: 0.3s ease-in-out;
    transform: translateY(-5px);
  }
  .resumebuilderdetails{
    padding-top: 10px;
  }
  .resumebuilderdetails h5{
    padding: 40px 0 10px 0;
    font-weight: 600;
    color: var(--yellow-button-text-color);
  }
  .accordion-button:focus{
    border-color: none !important;
  }

  .resumebuilderdetails .accordion-item{
    margin: 20px 0;
    border: 1px solid var(--border-light-grey-color) !important;
  }

  .resumebuilderdetails .accordion-button:not(.collapsed){
    background-color: var(--light-blue-background-color) !important;
  }

  .resumebuilderdetails .accordion-button {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
  }

  .radio-gender input{
    padding: 5px 5px !important;
    margin-right: 10px;
  }

  /*tags input start*/

  .bootstrap-tagsinput span{
    background-color: var(--light-blue-background-color);
    padding: 2px 0 2px 10px;
    border-radius: 5px;
  }

  .bootstrap-tagsinput .tag{
    color: var(--light-blue-small-text-color) !important;
  }  

  /*tags input end*/

/*candidates profile settings section 1 end*/


/*Candidates Profile Settings end*/



/*job portal blogs page start*/

.job-portal-blogs-page-section-1{
    width: 100%;
    padding-top: var(--main-section-gap);
}
.j-p-b-p-s-1-right{
    padding: 40px 20px;
    background-color: var(--main-background-color);
    border-radius: 8px;
}
.j-p-b-p-s-1-right h4{
    font-weight: 600;
    letter-spacing: 1px;
}
.b-p-c{
    padding-top: 30px;
}
.blogs-categories{
    padding-left: 0;
}
.blogs-categories li{
    list-style: none;
    margin-bottom: 10px;
    border-bottom: 1px solid #e4e3e3;
}
.blogs-categories li:first-child{
    padding-top: 5px;
}
.blogs-categories a{
    text-decoration: none; 
    color: var(--yellow-button-text-color);
    font-weight: 600;
    letter-spacing: 1px;
}
.blogs-categories li:hover{
    transform: translateY(-4px);
    transition: 0.2s ease-in-out;
}
.blogs-categories a i{
    color: var(--border-light-grey-color);
}
.b-p-c-r-p{
    padding-top: 5px;
}
.b-p-c-r-p-left img{
    width: 100%;
    border-radius: 5px;
}
.b-p-c-r-p-right p{
    font-weight: 600; 
    color: var(--small-text-light-grey-color);  
    margin-bottom: 0; 
}
.b-p-c-r-p-right h6{
    color: var(--border-light-grey-color); 
    font-size: 14px;  
}

/*job portal blogs page end*/



/*job portal blogs details page start*/

.j-p-s-5-box-heading{
    font-weight: 600;
    letter-spacing: 1px;
    padding-top: 20px;
}
.j-p-s-5-box-b-d{
    box-shadow: none;
}
.j-p-s-5-box-b-d:hover{
    box-shadow: none;
}
.b-d-description{
    line-height: 30px;
}

/*social media share options start*/

.social-share{
    height: 75px;
    width: 75px;
    position: absolute;
    left: 58%;
    top: 87%;
    transform: translate(-50%,-50%);
}

.social-top{
    display: flex;
}

.social-bottom{
    display: flex;
}

.social-square{
    min-height: 50px;
    min-width: 50px;
    background-color: var(--yellow-button-background);
    transition-duration: .5s;
    box-shadow: 5px 5px 2px rgb(128 128 128 / 50%);
    z-index: -5;
    position: absolute;
    color: var(--yellow-button-background) !important;
    text-align: center;
}
.social-square i{
    padding-top: 10px;
    font-size: 16px;
}

.social-sign{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    transition-duration: .5s;
}

.social-line{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background-color: white;
    transition-duration: .5s;
}

.social-share:hover .social-line{
    transition-duration: .5s;
    background-color: var(--blue-button-background);
}

.social-share:hover .social-sign{
    transform: rotate(135deg) scale(0.8);
    transition-duration: .25s;
    transition-timing-function: linear;
    opacity: 0.7;
}

.social-share:hover .social-square {
    transition-duration: .5s;
    border-radius: 5px;
    cursor: pointer;
    min-height: 35px;
    min-width: 35px;
    background-color: white;
}

.social-share:hover .social-square::before{
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 2px auto;
    transform: translate(-50%,-50%);
}

.social-share .social-one{
    top: 0%;
    left: 0%;
}

.social-share:hover .social-one::before{
    content: url(https://image.flaticon.com/icons/png/32/226/226234.png);
}

.social-share:hover .social-one {
    background-color: #fff;
}
.social-share:hover .s-s-icon1{
    color: #4064AC !important;
}

.social-share .social-two{    
    top: 0%;
    right: 0%;
}

.social-share:hover .social-two::before{
    content: url(https://image.flaticon.com/icons/png/32/174/174876.png);
}

.social-share:hover .social-two {
    background-color: #fff;
}
.social-share:hover .s-s-icon2{
    color: #00A7E7 !important;
}

.social-share .social-three{
    bottom: 0%;
    left: 0%;
}

.social-share:hover .social-three::before{
    content: url(https://image.flaticon.com/icons/png/32/174/174855.png);
}

.social-share:hover .social-three {
/*     background-image: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);  */
background-color: #fff;
}
.social-share:hover .s-s-icon3{
    color: #45C153 !important;
}

.social-share .social-four{    
    right: 0%;
    bottom: 0%;
}

.social-share:hover .social-four::before{
    content: url(https://image.flaticon.com/icons/png/32/25/25231.png);
}

.social-share:hover .social-four {
    background-color: #fff;
}
.social-share:hover .s-s-icon4{
    color: #006EAB !important;
}

.social-ver{
    height: 30px;
    width: 5px;    
}

.social-hor{
    height: 5px;
    width: 30px;
}

/*social media share options end*/


/*job portal blogs details page end*/



/*job portal recruiter account settings page start*/

.r-a-s-applications{
    text-align: right;
}
.r-a-s-applications button{
    padding: 5px 15px;
    border: none;
    background-color: var(--light-grey-background-color);
    color: var(--light-grey-small-text-color);
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
}
.r-a-s-applications button{
    margin-bottom: 10px;
}
.j-p-s-1-w-a-r-a-s{
    width: 100%;
    border: 1px solid var(--border-light-grey-color);
    border-radius: 10px;
    padding: 20px 20px;
}
.j-p-s-1-w-a-image{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: auto;
    overflow: hidden;
}
.j-p-s-1-w-a-image img{
    width: 100%;
}
.c-p-s-s-1-r-a-s-right .j-p-s-1-w-a-r-a-s{
    text-align: center;
}
.c-p-s-s-1-r-a-s-right .j-p-s-1-w-a-r-a-s h4{
    font-weight: 600;
    padding-top: 10px;
    color: #000;
}
.c-p-s-s-1-r-a-s-right .j-p-s-1-w-a-r-a-s p{
    color: var(--blue-button-background) !important;
    margin-bottom: 0;
}
.r-a-s-a-j-list{
    padding-left: 0;
    padding-top: 5px;
}
.r-a-s-a-j-list li{
    display: inline;
    font-size: 14px;
    margin: 0 10px;
    color: var(--small-text-light-grey-color);
    font-weight: 600;
    letter-spacing: 1px;
}
.r-a-s-a-j-l-left{
    padding: 5px 10px;
    border: none;
    background-color: var(--light-blue-background-color);
    color: var(--blue-button-background);
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 8px;
    font-size: 14px;
}
.r-a-s-a-j-l-left:hover{
    background-color: var(--light-yellow-background-color);
    color: var(--yellow-button-text-color);
    transition: 0.3s ease-in-out;
}

/*post a job start*/

.job-post-multistep p {
    color: grey;
}

.job-post-multistep #heading {
    text-transform: uppercase;
    color: #673AB7;
    font-weight: normal;
}

.job-post-multistep #msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
}

.job-post-multistep #msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
}

.job-post-multistep .form-card {
    text-align: left;
}

.job-post-multistep #msform fieldset:not(:first-of-type) {
    display: none;
}
.resumebuilderdetails #progressbar{
    padding-left: 0;
}
.job-post-multistep #msform input,
.job-post-multistep #msform select,
.job-post-multistep #msform textarea {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: var(--main-font-family);
    color: #2C3E50;
    background-color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
}

.job-post-multistep #msform input:focus,
.job-post-multistep #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #673AB7;
    outline-width: 0;
}

.job-post-multistep #msform .action-button {
    width: 100px;
    background: var(--blue-button-background);
    font-weight: bold;
    color: white;
    border-radius: 8px !important;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: right;
    font-family: var(--main-font-family);
}

.job-post-multistep #msform .action-button:hover,
.job-post-multistep #msform .action-button:focus {
    background-color: var(--yellow-button-background);
    color: var(--yellow-button-text-color);
    transition: 0.3s ease-in-out;
}

.job-post-multistep #msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right;
}

.job-post-multistep #msform .action-button-previous:hover,
.job-post-multistep #msform .action-button-previous:focus {
    background-color: #000000;
}

.job-post-multistep .card {
    z-index: 0;
    border: none;
    position: relative;
}

.job-post-multistep .fs-title {
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left;
}

.job-post-multistep .purple-text {
    color: #673AB7;
    font-weight: normal;
}

.job-post-multistep .steps {
    font-size: 18px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right;
}

.job-post-multistep .fieldlabels {
    color: gray;
    text-align: left;
}

.job-post-multistep #progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
}

.job-post-multistep #progressbar .active {
    color: var(--blue-button-background);
}

.job-post-multistep #progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 25%;
    float: left;
    position: relative;
    font-weight: 400;
}

.job-post-multistep #progressbar #account:before {
    font-family: FontAwesome;
    content: "\f13e";
}

.job-post-multistep #progressbar #personal:before {
    font-family: FontAwesome;
    content: "\f007";
}

.job-post-multistep #progressbar #payment:before {
    font-family: FontAwesome;
    content: "\f030";
}

.job-post-multistep #progressbar #confirm:before {
    font-family: FontAwesome;
    content: "\f00c";
}

.job-post-multistep #progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

.job-post-multistep #progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

.job-post-multistep #progressbar li.active:before,
.job-post-multistep #progressbar li.active:after {
    background: var(--blue-button-background);
}

.job-post-multistep .progress {
    height: 20px;
}

.job-post-multistep .progress-bar {
    background-color: var(--blue-button-background);
}

.job-post-multistep .fit-image {
    width: 100%;
    object-fit: cover;
}
.resumebuilderdetails input::placeholder{
    font-family: var(--main-font-family);
    font-size: 14px;
    color: var(--border-light-grey-color);
}
.resumebuilderdetails label{
    font-weight: 600;
    letter-spacing: 1px;
}

.j-m-list{
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
}
.j-m-list li{
    list-style: none;
}
.j-m-list input{
    margin-right: 10px;    
}
.j-m-list input{
    margin-right: 20px;
}
.f-s-m-list{
    display: flex;
    padding-left: 0;
}
.f-s-m-list li{
    display: inline;
    margin-right: 10px;
}

.hide {
    display: none;
  }

/*post a job end*/


/*job portal recruiter account settings page end*/


/*job portal company details start*/

.job-portal-company-details-section-1{
    width: 100%;
    padding-top: var(--main-section-gap);
}
.j-p-c-d-s-1-left h4{
    font-weight: 600;
    letter-spacing: 1px;
}
.j-p-c-d-s-1-left p{
    color: var(--light-grey-small-text-color);
    line-height: 32px;
}
.j-p-c-d-s-1-left-list li{
    padding-bottom: 10px;
    color: var(--small-text-light-grey-color);
    font-size: 18px;
}
.j-p-c-d-s-1-right{
    padding: 40px 20px 20px 20px;
    border-radius: 5px;
    background-color: var(--main-background-color);
}
.j-p-c-d-s-1-right p{
    font-size: 16px;
}
.j-p-c-d-s-1-r-options{
    font-weight: 600;
}
.j-p-c-d-s-1-r-value{
    text-align: right;
    color: var(--small-text-light-grey-color);
}
.j-p-c-d-s-1-r-value i{
    color: #4064AC;
    font-size: 20px;
}
.job-portal-company-details-section-2{
    padding-top: 20px;
}
.job-portal-company-details-section-2 h4{
    font-weight: 600;
    letter-spacing: 1px;
}
.j-p-c-d-s-2-wrapper{
    padding-top: 10px;
}
.j-p-c-d-s-2-wrapper a{
    text-decoration: none;
}
.j-p-c-d-s-2-button{
    text-align: center;
}
.job-portal-company-details-section-2 button{
    padding: 10px 40px;
    margin-top: 25px;
    font-size: 18px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    background-color: var(--blue-button-background);
    color: #fff;
    letter-spacing: 1px;
}
.job-portal-company-details-section-2 button:hover{
    background-color: var(--yellow-button-background);
    color: var(--yellow-button-text-color);
    transform: translateY(-5px);
    transition: 0.3s ease-in-out;
}

.j-p-c-b-c-left-about h4{
    font-weight: 600;
}
.j-p-c-b-c-left-image{
    margin-right: 25px;
}
.j-p-c-b-c-left-image img{
    width: 60px;
}
.j-p-c-b-c-l-a-list{
    padding-left: 0;
    text-align: left;
}
.j-p-c-b-c-l-a-list li{
    display: inline;
}
.j-p-c-b-c-l-a-list i{
    color: var(--light-yellow-small-text-color);
}
.j-p-c-b-c-l-a-o-j{
    text-align: left;
}
.j-p-c-b-c-l-a-o-j button{
    padding: 5px 15px;
    background-color: var(--light-blue-background-color);
    border-radius: 25px;
    border: none;
    font-size: 14px;
    color: var(--light-blue-small-text-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.j-p-c-b-c-right{
    text-align: right;
}
.j-p-c-b-c-right .c-d-message-button{
    padding: 8px 50px;
    border-radius: 8px;
    border: none;
    background-color: var(--blue-button-background);
    color: #fff;    
    letter-spacing: 1px;
}
.j-p-c-b-c-right .c-d-message-button:hover{
    background-color: var(--yellow-button-background);
    color: var(--yellow-button-text-color);
    transform: translateY(-5px);
    transition: 0.3s ease-in-out;
}
.j-p-c-b-c-right .c-d-bookmark-button{
    padding: 10px 15px;
    border: none;
    background-color: var(--light-blue-background-color);
    border-radius: 8px;
    margin-left: 10px;
}
.j-p-c-b-c-right .c-d-bookmark-button i{
    color: var(--blue-button-background);
}

/*job portal company details end*/



/*job portal find job filter start*/

.job-portal-find-job-filter-section-1{
    width: 100%;
    padding-top: var(--main-section-gap);
}
.j-p-f-j-f-s-1-filter{
    border-radius: 5px;
    background-color: var(--main-background-color);
    padding: 20px 20px;
}
.j-p-f-j-f-s-1-filter input::placeholder{
    font-size: 14px;
    color: var(--border-light-grey-color);
}
.j-p-f-j-f-s-1-f-r{
    text-align: right;
}
.j-p-f-j-f-s-1-f-r button{
    padding: 8px 35px 8px 15px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
    border: none;
    margin-right: 10px;
}
.j-p-f-j-f-s-1-f-r-middle{
    width: 125px;
}
.j-p-f-j-f-s-1-f-r .j-p-f-j-f-s-1-f-r-right{
    margin-right: 0;
}
.j-p-f-j-f-s-1-f-r-left{    
    background-color: var(--yellow-button-background);
    color: #000; 
}
.j-p-f-j-f-s-1-f-r-middle{    
    background-color: var(--light-grey-background-color);
    color: var(--light-grey-small-text-color);
}
.j-p-f-j-f-s-1-f-r-right{    
    background-color: var(--light-grey-background-color);
    color: var(--light-grey-small-text-color);
}

.available-job-number{
    padding-top: 10px;
    color: var(--small-text-light-grey-color);
}

.j-p-f-j-f-s-1-filter-result-summery{
    width: 100%;
    padding-top: 10px;
}
.j-b-option{
    float: right;
    margin-top: -145px;
    left: -32px;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-light-grey-color);
    text-align: center;
}
.j-b-option:hover{
    background-color: var(--border-light-grey-color);
    transition: 0.3s ease-in-out;
}
.j-b-option:hover .j-s-f-r-bookmark-icon{
    color: var(--light-yellow-background-color);
    transition: 0.3s ease-in-out;
}
.j-b-option i{    
    position: relative;
    top: 8px;
    font-size: 18px;
    color: #000;
}
.j-p-f-j-f-s-1-filter label{
    font-weight: 600;    
    letter-spacing: 1px;
    font-size: 18px;
}

.j-s-f-switch-option-list{
    padding-left: 0;
    display: flex;
    padding-top: 5px;
}
.j-s-f-switch-option-list li{
    display: inline;
    margin-right: 10px;
    line-height: 14px;
    color: var(--small-text-light-grey-color);
    letter-spacing: 0.5px;
}
.job-search-filter-button{
    text-align: right !important;
    margin-bottom: 10px;
}
.job-search-filter-button button{
    background-color: var(--yellow-button-background);
    color: var(--yellow-button-text-color);
    border: none;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
}
.job-search-filter-button button i{
    padding-right: 5px;
}

/*switch input start*/

/* Switch 1 Specific Styles Start */

input[type="checkbox"].switch_1{
	font-size: 30px;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
    width: 36px;
    height: 14px;
	background: #ddd;
	border-radius: 3em;
	position: relative;
	cursor: pointer;
	outline: none;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  }
  
  input[type="checkbox"].switch_1:checked{
	background: var(--light-blue-small-text-color);
  }
  
  input[type="checkbox"].switch_1:after{
	position: absolute;
	content: "";
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #fff;
	-webkit-box-shadow: 0 0 .25em rgba(0,0,0,.3);
	        box-shadow: 0 0 .25em rgba(0,0,0,.3);
	-webkit-transform: scale(.7);
	        transform: scale(.7);
	left: 0;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  }
  
  input[type="checkbox"].switch_1:checked:after{
	left: calc(100% - 0.5em);
  }
  .bootstrap-tagsinput{
      width: 100% !important;
  }
	
/* Switch 1 Specific Style End */

/*switch input end*/


/*salary filter start*/

.salary-filter {
    width: 100%;
  }
  
  .filter-price {
    border: 0;
    padding: 0;
    margin: 0; 
  }
  
  .price-title {
    position: relative;
    color: #000;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
  }
  
  .price-field {
    position: relative;
    width: 100%;
    height: 36px;
    box-sizing: border-box;
    background: transparent;
    padding-top: 15px;
    border-radius: 3px;
  }
  
  .price-field input[type=range] {
      position: absolute;
  }
  
  /* Reset style for input range */
  
  .price-field input[type=range] {
    width: 100%;
    height: 2px; 
    border: 0;
    outline: 0;
    box-sizing: border-box;
    border-radius: 5px;
    pointer-events: none;
    -webkit-appearance: none;
  }
  
  .price-field input[type=range]::-webkit-slider-thumb {
      -webkit-appearance: none;
  }
  
  .price-field input[type=range]:active,
  .price-field input[type=range]:focus {
    outline: 0;
  }
  
  .price-field input[type=range]::-ms-track {
    width: 188px;
    height: 2px; 
    border: 0;
    outline: 0;
    box-sizing: border-box;
    border-radius: 5px;
    pointer-events: none;
    background: transparent;
    border-color: transparent;
    color: transparent;
    border-radius: 5px;
  }
  
  /* Style toddler input range */
  
  .price-field input[type=range]::-webkit-slider-thumb { 
    /* WebKit/Blink */
      position: relative;
      -webkit-appearance: none;
      margin: 0;
      border: 0;
      outline: 0;
      border-radius: 50%;
      height: 15px;
      width: 15px;
      margin-top: -4px;
      background-color: #fff;
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
      cursor: pointer;
      cursor: pointer;
      pointer-events: all;
      z-index: 100;
  }
  
  .price-field input[type=range]::-moz-range-thumb { 
    /* Firefox */
    position: relative;
    appearance: none;
    margin: 0;
    border: 0;
    outline: 0;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    margin-top: -5px;
    background-color: #000;
    cursor: pointer;
    cursor: pointer;
    pointer-events: all;
    z-index: 100;
  }
  
  .price-field input[type=range]::-ms-thumb  { 
    /* IE */
    position: relative;
    appearance: none;
    margin: 0;
    border: 0;
    outline: 0;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    margin-top: -5px;
    background-color: #000;
    cursor: pointer;
    cursor: pointer;
    pointer-events: all;
    z-index: 100;
  }
  
  /* Style track input range */
  
  .price-field input[type=range]::-webkit-slider-runnable-track { 
    /* WebKit/Blink */
    width: 188px;
    height: 7px;
    cursor: pointer;
    background: var(--blue-button-background);
    border-radius: 5px;
  }
  
  .price-field input[type=range]::-moz-range-track { 
    /* Firefox */
    width: 188px;
    height: 2px;
    cursor: pointer;
    background: #000;
    border-radius: 5px;
  }
  
  .price-field input[type=range]::-ms-track { 
    /* IE */
    width: 188px;
    height: 2px;
    cursor: pointer;
    background: #000;
    border-radius: 5px;
  }
  
  /* Style for input value block */
  
  .price-wrap {
    display: flex;
    justify-content: center;
    color: #000;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
  }
  
  .price-wrap-1, 
  .price-wrap-2 {
    display: flex;
  }
  
  .price-title {
    margin-right: 5px;    
  }
  
  .price-wrap_line {
    margin: 0 10px;
  }
  
  .price-wrap #one{
    text-align: left !important;
    width: 45% !important;
  }
  .price-wrap #one, 
  .price-wrap #two {
    width: 100%;
    text-align: right;
    margin: 0;
    padding: 0;
    margin-right: 2px;
    background:  0;
    border: 0;
    outline: 0;
    color: var(--light-blue-small-text-color);
    font-family: 'Karla', 'Arial', sans-serif;
    font-size: 15px;
    line-height: 1.2em;
    font-weight: 600;
  }
  
  .price-wrap label {
    text-align: right;
    color: var(--small-text-light-grey-color);
  }
  
  /* Style for active state input */
      
  .price-field input[type=range]:hover::-webkit-slider-thumb {
    box-shadow: 0 0 0 0.5px var(--blue-button-background);
    transition-duration: 0.3s;
  }
  
  .price-field input[type=range]:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 0.5px #fff;
    transition-duration: 0.3s;
  }

/*salary filter end*/


/*job portal find job filter end*/



/*job portal recruiter list start*/

.j-p-f-j-f-s-1-filter-result-summery .j-p-s-1-w-a-r-a-s{
    text-align: center;
}
.j-p-f-j-f-s-1-filter-result-summery .j-p-s-1-w-a-r-a-s h4{
    color: #000;
    font-weight: 600;
    font-size: 18px;
    padding-top: 10px;
    height: 55px;
}
.j-p-f-j-f-s-1-filter-result-summery .j-p-c-b-c-l-a-list{
    margin-bottom: 0;
}
.j-p-f-j-f-s-1-filter-result-summery .r-a-s-a-j-l-left{
    margin-top: 10px;
}
.j-p-s-1-w-a-r-a-s-bookmark{
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: var(--yellow-button-background);
    margin-left: 5px;
}

/*job portal recruiter list end*/


/*job description start*/

.j-d-bookmark-button{
    padding: 10px 15px;
    border: none;
    background-color: var(--yellow-button-background);
    border-radius: 8px;
    margin-left: 10px;
}
.j-d-details{
    text-align: left;
}
.j-d-bookmark-button i{
    color: var(--yellow-button-text-color);
}
.j-p-c-b-c-left-about h4 i{
    font-size: 20px;
    padding-left: 5px;
}
.j-d-inner h6{
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--small-text-light-grey-color);
    padding-top: 15px;
}
.j-d-social-share{
    display: flex;
    justify-content: center;
  }
  .j-d-social-share a{
    display: flex;
    background: #fff;
    height: 45px;
    width: 45px;
    margin: 0 10px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 6px 6px 10px -1px rgba(0,124,196,0.15),
                -6px -6px 10px -1px rgba(255,255,255,0.7);
    border: 1px solid rgba(0, 124, 196, 0);
    transition: transform 0.5s;
  }
  .j-d-social-share a i{
    color: #007cc4;
  }
  .j-d-social-share a:hover{
    box-shadow:inset 4px 4px 6px -2px rgba(0,0,0,0.2),
                inset -4px -4px 6px -1px rgba(255,255,255,0.7),
                      -0.5px -0.5px 0px -1px rgba(255,255,255,1),
                      0.5px 0.5px 0px rgba(0,0,0,0.15),
                      0px 12px 10px -10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0, 124, 196, 0.1);
    transform: translateY(2px);
  }
  .j-d-social-share a:hover i{
    transform: scale(0.90);
  }
  .j-d-social-share a:hover .f-icon1{
    color: #3b5998;
  }
  .j-d-social-share a:hover .f-icon2{
    color: #4fce5d;
  }
  .j-d-social-sharea:hover .f-icon3{
    color: #0073AF;
  }  

  .j-p-c-d-s-1-rj-o{
    font-weight: 600;
    padding-bottom: 15px;
  }

  .job-portal-company-details-section-2 h6{
    color: var(--small-text-light-grey-color);
    padding-bottom: 10px;
  }

/*job description end*/




/*resume choose start*/

.cv-choose {
    list-style-type: none;
    padding-left: 0;
  }
  
  .cv-choose li {
    display: inline-block;
  }
  
  .cv-choose input[type="radio"][id^="cb"] {
    display: none;
  }
  
  .cv-choose label {
    padding: 10px;
    display: block;
    position: relative;
    margin: 10px;
    cursor: pointer;
  }
  
  .cv-choose label:before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    border-radius: 50%;
    border: 1px solid grey;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
  }
  
  .cv-choose label img {
    height: 110px;
    width: 110px;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  
  .cv-choose :checked + label {
    border-color: #ddd;
  }
  
  .cv-choose :checked + label:before {
    content: "✓";
    background-color: var(--yellow-button-text-color);
    transform: scale(1);
  }
  
  .cv-choose :checked + label img {
    transform: scale(0.9);
    box-shadow: 0 0 5px #333;
    z-index: -1;
  }

  .cv-choose .cv-preview-button{
    transform: translateY(-50px);
    opacity: 0;
    background-color: transparent;
    color: var(--light-grey-small-text-color);
    border: 1px solid var(--light-grey-small-text-color);
    font-weight: 600;
    letter-spacing: 1px;
  }
  .cv-c-box:hover .cv-preview-button{
    transform: translateY(0px);
    opacity: 1;
    transition: 0.3s ease-in-out;
  }

  .popup {
    display: none;
    position: fixed;
    padding: 10px;
    width: 50%;
    left: 50%;
    margin-left: -300px;
    top: 50%;
    margin-top: -240px;
    background: #FFF;
    border: 3px solid #F04A49;
    z-index: 20;
  }
  .resume-1-preview{
    height: 500px;
    overflow-y: scroll;
  }
  
  #popup:after {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    z-index: -2;
  }

  .popup i{
    color: #000;
    font-size: 26px;
  }
  
  #popup:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #FFF;
    z-index: -1;
  }
  
  
  .popupk {
    display: none;
    position: fixed;
    padding: 10px;
    width: 50%;
    left: 50%;
    margin-left: -300px;
    top: 50%;
    margin-top: -240px;
    background: #FFF;
    border: 3px solid #F04A49;
    z-index: 20;
  }

  .popupk i{
    color: #000;
    font-size: 26px;
  }

  .resume-2-preview{
    height: 500px;
    overflow-y: scroll;
  }
  
  #popupk:after {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    z-index: -2;
  }
  
  #popupk:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #FFF;
    z-index: -1;
  }

  .resume-1-preview img{
    width: 100%;
  }

  .resume-2-preview img{
    width: 100%;
  }

/*resume choose end*/





/*candidates details start*/

.c-d-profile-image{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.c-d-profile-image img{
    width: 100%;
}
.c-d-description{
    text-align: left;
    padding-left: 20px;
}
.c-d-description p{
    color: var(--blue-button-background);
    margin-bottom: 5px;
}
.j-p-c-d-s-1-l-education-work-experience h4{
    padding-bottom: 5px;
}
.j-p-c-d-s-1-l-education-work-experience .j-p-c-d-s-1-l-e-ctgy-a-text{
    font-weight: 600;
    color: #000 !important;
    margin-bottom: 5px;
}
.j-p-c-d-s-1-l-education-work-experience h6{
    color: var(--small-text-light-grey-color);
}
.c-d-p-s{
    padding-top: 10px;
}
.c-d-p-s-box{
    padding: 8px 10px;
    background-color: var(--light-blue-background-color);
    color: var(--light-blue-small-text-color);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 5px;
}
.c-d-c h5{
    padding-top: 5px;
    font-weight: 600;
}
.c-d-c h6{
    color: var(--small-text-light-grey-color);
}

.c-d-i-a-button{
    width: 100%;
    padding: 10px 0;
    background-color: var(--yellow-button-background);
    color: var(--yellow-button-text-color);
    border-radius: 5px;
    border: none;
    margin-top: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}
.c-d-i-a-button:hover{
    background-color: var(--blue-button-background);
    color: #fff;
    transition: 0.3s ease-in-out;
    transform: translateY(-5px);
}

/*candidates details end*/



/*candidate search filter start*/

.j-p-f-j-f-s-1-f-r-s-canddte{
  width: 100%;
  border: 1px solid var(--border-light-grey-color);
  border-radius: 5px;
}
.j-p-f-j-f-s-1-f-r-s-c-inner{
  padding: 20px 20px 10px 20px;
}
.j-p-f-j-f-s-1-f-r-s-c-ctgy-a-image img{
  width: 100%;
}
.j-p-f-j-f-s-1-f-r-s-c-ctgy-a-prf p{
  margin-bottom: 0;
  line-height: 20px;
  font-size: 14px;
  color: #000;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.j-p-f-j-f-s-1-f-r-s-c-ctgy-a-prf h5{
  color: var(--blue-button-background);
  font-weight: 600;
  letter-spacing: 1px;
}
.j-p-f-j-f-s-1-f-r-s-c-ctgy-a-p-loc{
  color: var(--small-text-light-grey-color) !important;
}
.j-p-f-j-f-s-1-f-r-s-c-c-right-icon{
  text-align: right !important;
}
.j-p-f-j-f-exprne-inner h5{
  font-size: 15px;
  color: var(--small-text-light-grey-color);
}
.j-p-f-j-f-exprne-inner p{
  font-size: 14px;
}
.j-p-f-j-f-exprne-i-last{
  color: var(--blue-button-background);
}
.j-p-f-j-f-s-1-f-r-s-c-i-desc p{
  font-size: 15px;
  color: var(--small-text-light-grey-color);
}
/* .j-p-f-j-f-s-1-f-r-s-c-i-desc-main-i-loc{
  margin-bottom: 0;
} */
.j-p-f-j-f-s-1-f-r-s-c-i-desc-main-i-loc li{
  display: inline;
  color: var(--small-text-light-grey-color);
  font-size: 14px;
  letter-spacing: 0.5px;
}
.j-p-f-j-f-s-1-f-r-s-c-i-desc-main-i-l{
  color: var(--blue-button-background) !important;
}
.j-p-f-j-f-s-1-f-r-s-c-i-desc-main-i-loc i{
  font-size: 8px; 
  padding-right: 2px;
}
.j-p-f-j-f-s-1-f-r-s-c-i-desc-main-inner p{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  color: #000;
}
.j-p-f-j-f-s-1-f-r-s-c-i-desc-main-i-list{
  padding-left: 0;
}
.canddte-cv-summry a{
    text-decoration: none;
}
.j-p-f-j-f-s-1-f-r-s-c-i-desc-main-i-list li{
  display: inline;
  margin-right: 2px;
}
.j-p-f-j-f-s-1-f-r-s-c-i-desc-main-i-list li i{
  font-size: 8px; 
  color: var(--small-text-light-grey-color);
  padding-right: 2px !important;
}
.j-p-f-j-f-s-1-f-r-s-c-i-desc-main-i-button{
  padding: 8px 10px;
  font-size: 14px;
  background-color: var(--blue-button-background);
  color: #fff;
  border: 0;
  border-radius: 5px;
}
.j-p-f-j-f-s-1-f-r-s-c-bottom{
  padding: 0 20px;
}
.j-p-f-j-f-s-1-f-r-s-c-b-down-right{
  text-align: right;
}
.j-p-f-j-f-s-1-f-r-s-c-b-down-right p{
  font-size: 14px;
  color: var(--small-text-light-grey-color);
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.select2-container{
    width: 100% !important;
}

/*candidate search filter end*/
























/*job portal footer start*/

footer{
    width: 100%;    
    background-color: var(--main-background-color);
    padding-top: 80px;
}
.f-i-box h4{
    font-weight: 600;
}
.f-i-box img{
    width: 45px;
}
.f-i-box h5{
    font-weight: 600;
    padding-top: 10px;
}
.f-i-box h6{
    color: var(--blue-button-background);
}
.f-i-box p{
    margin-bottom: 0;
    color: var(--light-grey-small-text-color);
    font-size: 16px;
}
.footer-link{
    list-style: none;
    padding-left: 0;
    padding-top: 10px;
}
.footer-link li{
    padding-bottom: 15px;
}
.footer-link li a{
    text-decoration: none;
    color: #000;    
}
.footer-link li:hover{
    transform: translateX(5px);
    transition: 0.3s ease-in-out;
}
.f-b-left p{
    color: var(--small-text-light-grey-color);
    font-size: 14px;
}
.f-b-right{
    float: right;
}
.f-b-right i{
    margin: 0 5px;
    font-weight: 800;
}

/*job portal footer end*/


/*employer filter search section 1 start*/

.employer-filter-search-section-1{
  width: 100%;
  padding-top: 10rem;
}
.employer-filter-search-section-1 .container{
  width: 50%;
}
.has-search .form-control {
  padding-left: 2.375rem;
}

.has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
}

/*custom inpu file*/
.custom-file-input {
  color: transparent;

}
.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}

.custom-file-input::before {
	  content: "▲ Attached Resume";
    color: #fff;
    display: inline-block;
    background: #f39c12;
    padding: 10px 22px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    font-weight: 400;
    border-radius: 2px;
    outline: none;
        box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
}
.custom-file-input:focus {
	outline: none !important;

}
.custom-file-input:active::before {
	    transform: scale(.9) translate(0px, 2px);
	   box-shadow:  inset 4px 4px 5px 0px rgba(0, 0, 0, 0.20);
	   
}

.e-f-s-s-1-w-c{
  text-align: right;
}
.employer-filter-search-section-1 label{
  font-weight: 600;
  color: var(--light-grey-small-text-color);
  letter-spacing: 1px;
}
.selectpicker{
  border: none;
  border-bottom: 1px solid var(--border-light-grey-color) !important;
}

/*employer filter search section 1 end*/




