/* @font-face */
/* Absolute element */
.slider-container {
   /**
* Padding is set relative to the width
* of the element, so here padding-top:60% is
* a percentage of the width. This allows us 
* to set the height as a ratio of the width
*
*/
   /**
* ==========================
* Animation styles
* 
* Notes:
* 1. We use z-index to position active slides in-front 
* of non-active slides
* 2. We set right:0 and left:0 on .slide to provide us with
* a default positioning on both sides of the slide. This allows 
* us to trigger JS and CSS3 animations easily
*
*/
   /**
* ==========================
* JS animation styles
* 
* We use jQuery.animate to control the sliding animations
* when CSS3 animations are not available. In order for
* the next slide to slide in from the right, we need
* to change the left:0 property of the slide to left:auto
*
*/
   /**
* ==========================
* CSS animation styles
* 
* .slide.left and .slide.right set-up
* the to-be-animated slide so that it can slide
* into view. For example, a slide that is about 
* to slide in from the right will:
* 1. Be positioned to the right of the viewport (right:-100%)
* 2. Slide in when the style is superseded with a more specific style (right:0%)
*
*/
   /**
* The following classes slide the previously active
* slide out of view before positioning behind the 
* currently active slide
*
*/
   /**
* This sets the CSS properties that will animate. We set the
* transition-duration property dynamically via JS.
* We use the browser's default transition-timing-function
* for simplicity's sake
* 
* It is important to note that we are using CodePen's inbuilt
* CSS3 property prefixer. For your own projects, you will need
* to prefix the transition and transform properties here to ensure
* reliable support across browsers
*
*/
   /**
* ==========================
* Indicators
*
*/
   /**
* ==========================
* Arrows 
*
*/
   /**
* ==========================
* For demo purposes only
* 
* Please note that the styles below are used
* for the purposes of this demo only. There is no need
* to use these in any of your own projects
*
*/ }
  .slider-container .carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 415px; }
  .slider-container .inner {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0; }
  .slider-container .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    opacity: 0; }
    .slider-container .slide.active, .slider-container .slide.left, .slider-container .slide.right {
      z-index: 2;
      opacity: 1; }
    .slider-container .slide img {
      max-height: 55%;
      max-width: 100%;
      object-fit: contain; }
    .slider-container .slide h1 {
      color: #220063; }
  .slider-container .js-reset-left {
    left: auto; }
  .slider-container .slide.left {
    left: -100%;
    right: 0; }
  .slider-container .slide.right {
    right: -100%;
    left: auto; }
  .slider-container .transition .slide.left {
    left: 0%; }
  .slider-container .transition .slide.right {
    right: 0%; }
  .slider-container .transition .slide.shift-right {
    right: 100%;
    left: auto; }
  .slider-container .transition .slide.shift-left {
    left: 100%;
    right: auto; }
  .slider-container .transition .slide {
    transition-property: right, left, margin; }
  .slider-container .indicators {
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 4;
    padding: 0;
    text-align: center; }
  .slider-container .indicators li {
    width: 13px;
    height: 13px;
    display: inline-block;
    margin: 5px;
    background: #D0C8DD;
    list-style-type: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease-out; }
  .slider-container .indicators li.active {
    background: #220063; }
  .slider-container .indicators li:hover {
    background-color: #220063; }
  .slider-container .arrow {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    z-index: 5;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    cursor: pointer;
    transition: border-color 0.3s ease-out; }
  .slider-container .arrow:hover {
    border-color: #93278f; }
  .slider-container .arrow-left {
    left: 20px;
    transform: rotate(225deg); }
  .slider-container .arrow-right {
    right: 20px;
    transform: rotate(45deg); }
  .slider-container .slide {
    text-align: center; }

.drop {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer; }
  .drop select {
    display: none; }
  .drop .drop-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    top: 0px;
    left: 0px;
    opacity: 0;
    display: none;
    z-index: 1; }
  .drop .drop-display {
    position: relative;
    padding: 0px;
    border: 1px solid #D9D9D9;
    width: 100%;
    background: #FFF;
    z-index: 1;
    margin: 0px;
    font-size: 16px;
    min-height: 38px;
    border-radius: 5px;
    width: 235px;
    cursor: pointer; }
    .drop .drop-display > div {
      max-height: 40px;
      overflow-y: auto; }
    @media screen and (max-width: 640px) {
      .drop .drop-display {
        width: 90vw;
        margin-right: 0px; } }
    .drop .drop-display:hover:after {
      opacity: 0.75; }
    .drop .drop-display:after {
      font-family: "Font Awesome 6 Free";
      content: "\f0d7";
      display: inline-block;
      position: absolute;
      right: 10px;
      top: 12px;
      font-size: 14px;
      color: #444;
      font-weight: 900; }
    .drop .drop-display .item {
      position: relative;
      display: inline-block;
      background: #F3F3F3;
      margin: 0 3px 0px 0px;
      padding: 0px 25px 0px 10px;
      overflow: hidden;
      height: 28px;
      line-height: 30px;
      top: 5px;
      left: 3px;
      border-radius: 25px;
      font-size: 12px;
      cursor: pointer; }
      .drop .drop-display .item i {
        font-size: 0px; }
        .drop .drop-display .item i:before {
          font-size: 8px; }
      .drop .drop-display .item .btnclose {
        color: #fff;
        position: absolute;
        font-size: 16px;
        right: 5px;
        top: 10px;
        cursor: pointer;
        background-color: #2A2A2A; }
        .drop .drop-display .item .btnclose:hover {
          opacity: 0.75; }
    .drop .drop-display .item.remove {
      -webkit-animation: removeSelected 0.2s, hide 1s infinite;
      animation: removeSelected 0.2s, hide 1s infinite;
      -webkit-animation-delay: 0s, 0.2s;
      animation-delay: 0s, 0.2s;
      display: none; }
    .drop .drop-display .item.add {
      -webkit-animation: addSelected 0.2s;
      animation: addSelected 0.2s; }
    .drop .drop-display .item.hide {
      display: none; }
  .drop .drop-options {
    background: #ffffff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    position: absolute;
    width: 100%;
    max-height: 0px;
    overflow-y: auto;
    transition: all 0.25s linear;
    z-index: 1; }
    .drop .drop-options a {
      display: block;
      height: 40px;
      line-height: 40px;
      padding: 0px 20px;
      color: #220063;
      position: relative;
      max-height: 40px;
      transition: all 1s;
      overflow: hidden; }
      .drop .drop-options a:hover {
        background: #FBFAFC;
        cursor: pointer;
        font-weight: bold; }
    .drop .drop-options a.remove {
      -webkit-animation: removeOption 0.2s;
      animation: removeOption 0.2s;
      max-height: 0px; }
    .drop .drop-options a.add {
      -webkit-animation: addOption 0.2s;
      animation: addOption 0.2s; }
    .drop .drop-options a.hide {
      display: none; }

.drop.open {
  z-index: 100; }
  .drop.open .drop-screen {
    z-index: 100;
    display: block; }
  .drop.open .drop-options {
    z-index: 200;
    max-height: 200px; }
  .drop.open .drop-display {
    z-index: 200;
    border-color: #465; }

.drop .drop-display .item i {
  position: absolute;
  right: 5px;
  top: 8px;
  width: 12px;
  height: 12px;
  overflow: hidden;
  background: #333;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 0px;
  line-height: 13px; }

.loginwrap {
  display: flex;
  width: 100vw;
  height: 100vh;
  background-color: #fff; }
  @media screen and (max-width: 865px) {
    .loginwrap {
      flex-direction: column; }
      .loginwrap [class*=col-] {
        padding: 20px 0px 30px; } }
  .loginwrap .col-left {
    background-color: #FBFAFC;
    background: #FBFAFC url("../assets/images/mergePoly.svg") no-repeat;
    background-position: 60px 50px;
    background-size: 60%; }
    .loginwrap .col-left .slider-container {
      display: block;
      width: 90%; }
  .loginwrap > [class*=col-] {
    display: flex;
    flex-basis: 50%;
    align-items: center;
    justify-content: center; }
  .loginwrap .form-container {
    text-align: center;
    min-width: 370px; }
    .loginwrap .form-container .forgetPass {
      margin-top: 0;
      position: relative;
      top: -15px;
      margin-bottom: -15px; }
      .loginwrap .form-container .forgetPass a {
        font-size: 13px;
        color: #220063;
        font-weight: 600; }
    .loginwrap .form-container form + p {
      margin-top: 50px;
      font-size: 13px; }
      .loginwrap .form-container form + p a {
        font-weight: 600;
        margin-left: 5px; }
    .loginwrap .form-container h1 img {
      width: 200px;
      margin: auto;
      text-align: center; }
    .loginwrap .form-container h2 {
      font-size: 26px;
      margin-bottom: 0px; }
      .loginwrap .form-container h2 + p {
        font-size: 14px;
        margin-bottom: 40px; }
    .loginwrap .form-container .form-field {
      position: relative;
      font-family: "Mulish-Regular";
      font-size: 14px; }
      .loginwrap .form-container .form-field:last-child {
        margin-top: 20px; }
      .loginwrap .form-container .form-field[class*=icon-]:after {
        position: absolute;
        right: 5px;
        top: 14px;
        color: #D7DCE8; }
      .loginwrap .form-container .form-field.icon-user:after {
        content: "\f007";
        font-family: "Font Awesome 6 Free";
        font-weight: 900; }
      .loginwrap .form-container .form-field.icon-mail:after {
        content: "\f0e0";
        font-family: "Font Awesome 6 Free";
        font-weight: 900; }
      .loginwrap .form-container .form-field.icon-eye:after {
        content: "\f070";
        font-family: "Font Awesome 6 Free";
        font-weight: 900; }
    .loginwrap .form-container .btn-primary {
      width: 100%; }

@font-face {
  font-family: "Poppins-Regular";
  src: url("../assets/fonts/Poppins/Poppins-Regular.ttf");
  src: url("../assets/fonts/Poppins/Poppins-Regular.ttf") format("truetype"); }
@font-face {
  font-family: "Poppins-Medium";
  src: url("../assets/fonts/Poppins/Poppins-Medium.ttf");
  src: url("../assets/fonts/Poppins/Poppins-Medium.ttf") format("truetype"); }
@font-face {
  font-family: "Poppins-Bold";
  src: url("../assets/fonts/Poppins/Poppins-Bold.ttf");
  src: url("../assets/fonts/Poppins/Poppins-Bold.ttf") format("truetype"); }
@font-face {
  font-family: "Poppins-SemiBold";
  src: url("../assets/fonts/Poppins/Poppins-SemiBold.ttf");
  src: url("../assets/fonts/Poppins/Poppins-SemiBold.ttf") format("truetype"); }
@font-face {
  font-family: "Mulish-Regular";
  src: url("../assets/fonts/mulish/Mulish-Regular.ttf");
  src: url("../assets/fonts/mulish/Mulish-Regular.ttf") format("truetype"); }
@font-face {
  font-family: "Mulish-Medium";
  src: url("../assets/fonts/mulish/Mulish-Medium.ttf");
  src: url("../assets/fonts/mulish/Mulish-Medium.ttf") format("truetype"); }
@font-face {
  font-family: "Mulish-Bold";
  src: url("../assets/fonts/mulish/Mulish-Bold.ttf");
  src: url("../assets/fonts/mulish/Mulish-Bold.ttf") format("truetype"); }
body {
  margin: 0;
  padding: 0;
  font-family: "Mulish-Regular";
  box-sizing: border-box; }

/* width */
::-webkit-scrollbar {
  width: 8px; }

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; }

/* Handle */
::-webkit-scrollbar-thumb {
  background: #D9D9D9; }

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #D9D9D9; }

h1,
h2,
h3 {
  font-family: "Poppins-Regular"; }

button {
  font-family: "Mulish-Regular";
  cursor: pointer; }

.text-uppercase {
  text-transform: uppercase; }

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.text-primary {
  color: #220063; }

a {
  cursor: pointer; }

a:focus {
  color: inherit; }

.btn-primary {
  padding: 9px 15px;
  width: auto;
  background: #220063;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px; }

.btn-green {
  padding: 7px 10px;
  width: auto;
  background: #3FC429;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px; }

.btn-gray {
  padding: 7px 10px;
  width: auto;
  background: #ffffff;
  color: rgba(0, 0, 0, 0.39);
  border: 1px solid #DDDEE1;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px; }

.btn-secondary {
  padding: 9px 15px;
  width: auto;
  background: #ffffff;
  background-color: #E4E9F3;
  color: #000000;
  border: 1px solid #DDDEE1;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px; }

.theme-1 {
  background-color: #5CC187 !important; }
  .theme-1 .close-bt {
    color: #5CC187 !important; }
    .theme-1 .close-bt i {
      color: inherit; }
  .theme-1 .box {
    background-color: #5CC187 !important;
    border: 1px solid #5CC187 !important; }

.theme-2 {
  background-color: #25323B !important; }
  .theme-2 .close-bt {
    color: #25323B !important; }
    .theme-2 .close-bt i {
      color: inherit; }
  .theme-2 .box {
    background-color: #25323B !important;
    border: 1px solid #25323B !important; }

.theme-3 {
  background-color: #F27C4A !important; }
  .theme-3 .close-bt {
    color: #F27C4A !important; }
    .theme-3 .close-bt i {
      color: inherit; }
  .theme-3 .box {
    background-color: #F27C4A !important;
    border: 1px solid #F27C4A !important; }

.theme-4 {
  background-color: #F37174 !important; }
  .theme-4 .close-bt {
    color: #F37174 !important; }
    .theme-4 .close-bt i {
      color: inherit; }
  .theme-4 .box {
    background-color: #F37174 !important;
    border: 1px solid #F37174 !important; }

.theme-5 {
  background-color: #E4E9F3 !important; }
  .theme-5 .close-bt {
    color: #E4E9F3 !important; }
    .theme-5 .close-bt i {
      color: inherit; }
  .theme-5 .box {
    background-color: #E4E9F3 !important;
    border: 1px solid #E4E9F3 !important; }

.theme-6 {
  background-color: #220063 !important; }
  .theme-6 .close-bt {
    color: #220063 !important; }
    .theme-6 .close-bt i {
      color: inherit; }
  .theme-6 .box {
    background-color: #220063 !important;
    border: 1px solid #220063 !important; }

.titleSec a.btn-primary {
  margin-right: 20px;
  height: 40px;
  text-transform: capitalize;
  font-size: 13px;
  height: 22px;
  line-height: 22px; }
  .titleSec a.btn-primary:focus {
    color: #ffffff; }
  .titleSec a.btn-primary:last-child {
    margin-right: 0; }

input.form-control,
select.form-control,
textarea.form-control {
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  border-color: #D9D9D9;
  padding-right: 30px;
  padding-left: 10px;
  min-height: 40px;
  line-height: 40px;
  margin-bottom: 25px;
  width: calc(100% - 40px);
  color: #000000;
  font-family: "Mulish-Regular";
  font-size: 14px; }
  input.form-control::placeholder,
  select.form-control::placeholder,
  textarea.form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #989DA9;
    opacity: 1;
    /* Firefox */ }
  input.form-control:-ms-input-placeholder,
  select.form-control:-ms-input-placeholder,
  textarea.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #989DA9; }
  input.form-control::-ms-input-placeholder,
  select.form-control::-ms-input-placeholder,
  textarea.form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #989DA9; }

/* Rounded sliders */
.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 22px; }
  .switch input {
    opacity: 0;
    width: 0;
    height: 0; }
    .switch input:checked + .slider {
      background-color: #220063; }
      .switch input:checked + .slider:before {
        -webkit-transform: translateX(23px);
        -ms-transform: translateX(23px);
        transform: translateX(23px); }
    .switch input:focus + .slider {
      box-shadow: 0 0 1px #0078F0; }
  .switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #220063;
    -webkit-transition: .4s;
    transition: .4s; }
    .switch .slider:before {
      position: absolute;
      content: "";
      height: 14px;
      width: 14px;
      left: 4px;
      bottom: 4px;
      background-color: #ffffff;
      -webkit-transition: .4s;
      transition: .4s; }
  .switch .slider.round {
    border-radius: 34px; }
    .switch .slider.round:before {
      border-radius: 50%; }

option:hover {
  background-color: #220063;
  color: #ffffff; }

.d-flex-jc-sp {
  display: flex;
  justify-content: space-between;
  align-items: center; }

#wrapper {
  display: inline-block;
  width: 100%;
  background: url("../assets/images/mergePoly.svg") no-repeat;
  background-position: -270px 220px;
  background-size: 40%; }
  #wrapper:after {
    content: "";
    background: url("../assets/images/bottom_right_poly.svg") no-repeat;
    background-position: center;
    position: fixed;
    width: 203px;
    height: 228px;
    background-size: cover;
    bottom: 0;
    right: 0;
    z-index: -1; }
  #wrapper:before {
    content: "";
    background: url("../assets/images/top_right_poly.svg") no-repeat;
    background-position: center;
    position: fixed;
    width: 385px;
    height: 191px;
    top: 0;
    right: 0;
    background-size: cover;
    z-index: -1; }

#userTypeBt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  background: url("../assets/images/mergePoly.svg") no-repeat;
  background-position: 0px 100px;
  background-size: 30%;
  background-color: #ffffff; }
  @media screen and (max-width: 800px) {
    #userTypeBt {
      height: auto; }
      #userTypeBt ul {
        padding: 0px; }
        #userTypeBt ul li {
          margin-left: auto !important;
          margin-right: auto !important; } }
  #userTypeBt h1 {
    margin-bottom: 0px; }
    #userTypeBt h1 img {
      width: 200px; }
  #userTypeBt h2 {
    margin-bottom: 30px; }
    @media screen and (max-width: 800px) {
      #userTypeBt h2 {
        padding-left: 30px;
        padding-right: 30px; } }
  #userTypeBt ul {
    list-style: none; }
    #userTypeBt ul li {
      float: left;
      position: relative; }
      @media screen and (max-width: 800px) {
        #userTypeBt ul li {
          float: none;
          margin-left: auto !important;
          margin-right: auto !important;
          margin-bottom: 40px; } }
      #userTypeBt ul li:first-child {
        margin-right: 80px; }
      #userTypeBt ul li input {
        position: absolute;
        visibility: hidden; }
        #userTypeBt ul li input[checked] + label, #userTypeBt ul li input:checked + label {
          border: 1px solid #9080B1; }
          #userTypeBt ul li input[checked] + label:before, #userTypeBt ul li input:checked + label:before {
            content: "\f00c";
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #E4E9F3;
            text-align: center;
            line-height: 30px;
            position: absolute;
            top: -15px;
            right: -15px; }
          #userTypeBt ul li input[checked] + label b, #userTypeBt ul li input:checked + label b {
            background: #220063;
            color: #fff; }
      #userTypeBt ul li label {
        width: 300px;
        height: 290px;
        padding: 1px;
        box-sizing: border-box;
        border: 1px solid #D9D9D9;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        cursor: pointer;
        position: relative; }
        #userTypeBt ul li label[checked] {
          border: 1px solid #220063; }
        #userTypeBt ul li label img {
          max-width: 90%;
          margin: auto; }
        #userTypeBt ul li label b {
          background: #E4E9F3;
          width: calc(100% - 20px);
          padding: 15px 10px;
          border-radius: 5px;
          font-weight: normal;
          text-align: center;
          text-transform: uppercase; }
  #userTypeBt p small {
    max-width: 630px;
    margin: auto;
    display: inline-block;
    margin-top: 40px;
    text-align: center; }

#userForm {
  padding: 50px;
  width: auto;
  height: auto; }
  @media screen and (max-width: 640px) {
    #userForm {
      padding: 50px 20px; } }
  #userForm .tl-logo {
    width: 180px;
    position: relative;
    margin: 0px auto 30px; }
    #userForm .tl-logo img {
      width: 100%; }
  #userForm .signupForm {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 80%;
    height: 100%;
    margin: auto;
    padding: 20px 40px 40px;
    background-color: #FAFBFC; }
    @media screen and (max-width: 1400px) {
      #userForm .signupForm {
        width: 90%; } }
    #userForm .signupForm p {
      margin-bottom: 8px;
      font-size: 13px;
      font-weight: bold; }
    @media screen and (max-width: 800px) {
      #userForm .signupForm {
        width: 100%; } }
    @media screen and (max-width: 640px) {
      #userForm .signupForm .form-group .form-field {
        min-width: 100% !important;
        margin-right: 0px !important; } }
    #userForm .signupForm .form-group {
      display: flex;
      justify-content: flex-start;
      flex-wrap: wrap; }
      #userForm .signupForm .form-group .form-field {
        display: flex;
        min-width: 215px;
        margin-right: 30px;
        position: relative;
        margin-bottom: 15px; }
        #userForm .signupForm .form-group .form-field input {
          margin-bottom: 0px; }
        #userForm .signupForm .form-group .form-field .drop {
          margin-bottom: 25px; }
          #userForm .signupForm .form-group .form-field .drop .drop-display {
            background-color: transparent; }
            #userForm .signupForm .form-group .form-field .drop .drop-display:before {
              content: attr(attr-label);
              font-size: 14px;
              position: absolute;
              z-index: 9;
              top: 10px;
              left: 10px;
              color: #989DA9;
              pointer-events: none; }
            #userForm .signupForm .form-group .form-field .drop .drop-display > div:not(:empty) {
              background: #FAFBFC;
              position: relative;
              z-index: 9;
              border-radius: 5px;
              margin-right: 1px;
              margin-top: 1px; }
        #userForm .signupForm .form-group .form-field input,
        #userForm .signupForm .form-group .form-field select {
          width: 100%;
          margin-right: 0px;
          padding: 0px 10px 0px 10px;
          background-color: #ffffff; }
          #userForm .signupForm .form-group .form-field input.single-select-drop, #userForm .signupForm .form-group .form-field input.single-select-drop,
          #userForm .signupForm .form-group .form-field select.single-select-drop,
          #userForm .signupForm .form-group .form-field select.single-select-drop {
            margin-bottom: 0; }
        #userForm .signupForm .form-group .form-field .select2-container--default .select2-selection--single {
          min-height: 40px;
          height: auto;
          line-height: 40px;
          border: 1px solid #D9D9D9; }
          #userForm .signupForm .form-group .form-field .select2-container--default .select2-selection--single .select2-selection__rendered {
            height: 100%;
            line-height: inherit; }
          #userForm .signupForm .form-group .form-field .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 40px; }
            #userForm .signupForm .form-group .form-field .select2-container--default .select2-selection--single .select2-selection__arrow b {
              border-color: #000000 transparent transparent transparent; }
        #userForm .signupForm .form-group .form-field .select2-container--default .select2-selection--multiple {
          min-height: 40px;
          display: flex;
          align-items: center;
          border: 1px solid #D9D9D9;
          border-radius: 5px; }
          #userForm .signupForm .form-group .form-field .select2-container--default .select2-selection--multiple .select2-selection__clear {
            margin: 0; }
          #userForm .signupForm .form-group .form-field .select2-container--default .select2-selection--multiple ul {
            position: relative;
            border-radius: 5px; }
            #userForm .signupForm .form-group .form-field .select2-container--default .select2-selection--multiple ul li {
              margin: 5px 5px 5px 0px;
              display: flex;
              flex-direction: row-reverse;
              border-radius: 25px;
              font-size: 13px;
              padding: 3px 8px;
              border: none;
              position: relative;
              z-index: 4; }
              #userForm .signupForm .form-group .form-field .select2-container--default .select2-selection--multiple ul li.select2-selection__choice {
                background: #E4E9F3; }
              #userForm .signupForm .form-group .form-field .select2-container--default .select2-selection--multiple ul li.select2-search {
                padding: 0px; }
              #userForm .signupForm .form-group .form-field .select2-container--default .select2-selection--multiple ul li .select2-selection__choice__remove {
                background: #000000;
                color: #ffffff;
                margin-left: 3px;
                margin-right: 0px;
                width: 12px;
                height: 12px;
                text-align: center;
                line-height: 11px;
                border-radius: 50%;
                font-size: 10px;
                position: relative;
                top: 3px;
                right: -2px; }
              #userForm .signupForm .form-group .form-field .select2-container--default .select2-selection--multiple ul li input {
                padding: 0; }
              #userForm .signupForm .form-group .form-field .select2-container--default .select2-selection--multiple ul li:first-child input {
                min-width: 215px;
                padding: 0;
                margin: 0;
                padding-right: 0px;
                padding-left: 5px;
                color: #000000;
                font-family: "Mulish-Regular";
                font-size: 14px; }
                #userForm .signupForm .form-group .form-field .select2-container--default .select2-selection--multiple ul li:first-child input::placeholder {
                  /* Chrome, Firefox, Opera, Safari 10.1+ */
                  color: #989DA9;
                  opacity: 1;
                  /* Firefox */ }
                #userForm .signupForm .form-group .form-field .select2-container--default .select2-selection--multiple ul li:first-child input:-ms-input-placeholder {
                  /* Internet Explorer 10-11 */
                  color: #989DA9; }
                #userForm .signupForm .form-group .form-field .select2-container--default .select2-selection--multiple ul li:first-child input::-ms-input-placeholder {
                  /* Microsoft Edge */
                  color: #989DA9; }
        #userForm .signupForm .form-group .form-field select {
          color: #989DA9; }
          #userForm .signupForm .form-group .form-field select.multi-select-drop {
            overflow: visible !important;
            clip-path: none !important;
            clip: auto !important;
            pointer-events: none;
            width: 100% !important;
            height: 40px !important; }
            #userForm .signupForm .form-group .form-field select.multi-select-drop option:not(:first-child) {
              visibility: hidden;
              height: 0px;
              padding: 0px;
              margin: 0;
              min-height: 0px; }
          #userForm .signupForm .form-group .form-field select option:not(:first-of-type) {
            color: #000; }
      #userForm .signupForm .form-group .btn-sm {
        width: auto;
        border-radius: 5px;
        padding: 12px 20px;
        border: none;
        min-width: 125px;
        margin-top: 40px;
        font-weight: 500;
        cursor: pointer;
        font-size: 13px; }
        #userForm .signupForm .form-group .btn-sm.btn-secondary {
          background: #E4E9F3; }
        #userForm .signupForm .form-group .btn-sm:first-child {
          margin-right: 10px; }

.select2-results__option--highlighted {
  background-color: #220063 !important; }

label.btn-primary {
  font-size: inherit !important; }

#header {
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  width: calc(100% - 2px);
  margin: -20px -20px 0px -20px;
  height: 60px; }
  #header .menuwrapper {
    display: flex;
    align-items: center; }
    #header .menuwrapper .toggleMenu {
      display: none;
      margin-left: 30px;
      background: transparent;
      border: none;
      font-size: 22px;
      align-items: center; }
      @media screen and (max-width: 767px) {
        #header .menuwrapper .toggleMenu {
          display: flex; } }
      #header .menuwrapper .toggleMenu > span {
        font-size: 16px;
        margin-left: 10px; }
  #header .header-right {
    display: flex;
    align-items: center;
    margin-left: 100px; }
    #header .header-right a {
      margin-right: 25px;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #E4E9F3;
      position: relative;
      text-decoration: none; }
      #header .header-right a.active {
        background: #220063;
        border-radius: 10px;
        color: #ffffff; }
      #header .header-right a.teams-ic > span {
        position: absolute;
        top: -5px;
        right: -5px;
        background-color: #E76165;
        color: #ffffff;
        font-size: 6px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center; }
    #header .header-right .follower-popup {
      display: none; }
      #header .header-right .follower-popup.show {
        display: block;
        position: absolute;
        top: 50px;
        background: #ffffff;
        min-width: 440px;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        z-index: 9; }
        #header .header-right .follower-popup.show .pop-header {
          padding: 0px 15px; }
          #header .header-right .follower-popup.show .pop-header h3 {
            margin-bottom: 5px;
            font-size: 15px; }
          #header .header-right .follower-popup.show .pop-header .follow-action {
            display: flex;
            justify-content: space-between; }
            #header .header-right .follower-popup.show .pop-header .follow-action p.selectall-wrap,
            #header .header-right .follower-popup.show .pop-header .follow-action div.selectall-wrap {
              display: flex;
              align-items: center;
              padding-left: 0px;
              margin-top: 0;
              margin-bottom: 0; }
              #header .header-right .follower-popup.show .pop-header .follow-action p.selectall-wrap #selAll,
              #header .header-right .follower-popup.show .pop-header .follow-action div.selectall-wrap #selAll {
                margin: 0 10px 0px 0px;
                opacity: 0;
                display: none; }
                #header .header-right .follower-popup.show .pop-header .follow-action p.selectall-wrap #selAll + label,
                #header .header-right .follower-popup.show .pop-header .follow-action div.selectall-wrap #selAll + label {
                  font-size: 13px;
                  color: rgba(0, 0, 0, 0.51);
                  font-weight: bold;
                  display: flex;
                  align-items: center;
                  cursor: pointer; }
                  #header .header-right .follower-popup.show .pop-header .follow-action p.selectall-wrap #selAll + label::before,
                  #header .header-right .follower-popup.show .pop-header .follow-action div.selectall-wrap #selAll + label::before {
                    content: "";
                    width: 24px;
                    height: 24px;
                    border-radius: 5px;
                    background-image: url(../assets/images/Checkbox.svg);
                    background-repeat: no-repeat;
                    display: inline-block;
                    margin-right: 10px;
                    background-size: contain;
                    background-position: center; }
                #header .header-right .follower-popup.show .pop-header .follow-action p.selectall-wrap #selAll:checked + label:before,
                #header .header-right .follower-popup.show .pop-header .follow-action div.selectall-wrap #selAll:checked + label:before {
                  content: "";
                  background-image: url(../assets/images/checked.svg);
                  width: 24px;
                  height: 24px;
                  background-repeat: no-repeat;
                  display: inline-block;
                  margin-right: 10px;
                  background-size: 20px;
                  background-position: center; }
            #header .header-right .follower-popup.show .pop-header .follow-action .viewall {
              display: flex;
              align-items: center; }
              #header .header-right .follower-popup.show .pop-header .follow-action .viewall button {
                width: auto;
                margin-right: 20px;
                padding: 7px 10px; }
                #header .header-right .follower-popup.show .pop-header .follow-action .viewall button.btn-primary {
                  padding: 5px 10px; }
              #header .header-right .follower-popup.show .pop-header .follow-action .viewall a {
                white-space: nowrap;
                color: #220063;
                font-size: 11px;
                text-transform: uppercase;
                font-weight: bold;
                text-decoration: none; }
        #header .header-right .follower-popup.show .pop-body .nwrap {
          display: flex;
          flex-direction: row;
          padding: 12px 15px;
          border-top: 1px solid #F3F3F4; }
          #header .header-right .follower-popup.show .pop-body .nwrap .selwrap .selectallbox {
            display: none; }
            #header .header-right .follower-popup.show .pop-body .nwrap .selwrap .selectallbox + label {
              font-size: 13px;
              color: rgba(0, 0, 0, 0.51);
              font-weight: bold;
              display: flex;
              align-items: center;
              cursor: pointer; }
              #header .header-right .follower-popup.show .pop-body .nwrap .selwrap .selectallbox + label::before {
                content: "";
                width: 24px;
                height: 24px;
                border-radius: 5px;
                background-image: url(../assets/images/Checkbox.svg);
                background-repeat: no-repeat;
                display: inline-block;
                margin-right: 10px;
                background-size: contain;
                background-position: center; }
            #header .header-right .follower-popup.show .pop-body .nwrap .selwrap .selectallbox:checked + label:before {
              content: "";
              background-image: url(../assets/images/checked.svg);
              width: 24px;
              height: 24px;
              background-repeat: no-repeat;
              display: inline-block;
              margin-right: 10px;
              background-size: 20px;
              background-position: center; }
          #header .header-right .follower-popup.show .pop-body .nwrap .nwrap-details .wrap {
            display: flex;
            align-items: flex-start; }
            #header .header-right .follower-popup.show .pop-body .nwrap .nwrap-details .wrap img {
              margin-right: 10px; }
            #header .header-right .follower-popup.show .pop-body .nwrap .nwrap-details .wrap p {
              margin: 0px 0px 5px;
              font-size: 13px;
              font-weight: bold; }
              #header .header-right .follower-popup.show .pop-body .nwrap .nwrap-details .wrap p small {
                font-size: 13px;
                font-weight: normal; }
            #header .header-right .follower-popup.show .pop-body .nwrap .nwrap-details .wrap .btnwrap {
              margin-top: 15px;
              margin-bottom: 10px; }
              #header .header-right .follower-popup.show .pop-body .nwrap .nwrap-details .wrap .btnwrap button {
                margin-right: 15px;
                padding: 7px 10px;
                border-radius: 3px;
                font-size: 13px;
                outline: none;
                border: none;
                font-weight: bold; }
                #header .header-right .follower-popup.show .pop-body .nwrap .nwrap-details .wrap .btnwrap button.btn-green {
                  background-color: #3FC429;
                  color: #ffffff; }
                #header .header-right .follower-popup.show .pop-body .nwrap .nwrap-details .wrap .btnwrap button.btn-gray {
                  background-color: #ffffff;
                  color: rgba(0, 0, 0, 0.39);
                  border: 1px solid rgba(0, 0, 0, 0.39); }
              #header .header-right .follower-popup.show .pop-body .nwrap .nwrap-details .wrap .btnwrap + p {
                color: #9DA6B7;
                font-weight: normal; }
  #header .search {
    position: relative;
    color: #D7DCE8;
    font-size: 16px;
    display: inline-block; }
    #header .search input {
      width: 400px;
      height: 32px;
      background: #FBFAFC;
      border: 1px solid #F3F3F4;
      border-radius: 5px;
      text-indent: 15px;
      color: #000000;
      background-image: url(../assets/images/Search.svg);
      background-repeat: no-repeat;
      background-position: center right 8px; }
      #header .search input::placeholder {
        color: #989DA9;
        font-weight: 600; }
    #header .search span {
      position: absolute;
      top: 10px;
      left: 10px;
      left: auto;
      right: 10px;
      color: #D7DCE8;
      display: none; }
  #header .profile-sec {
    display: flex;
    align-items: center;
    cursor: pointer; }
    #header .profile-sec > a,
    #header .profile-sec .profile-wrap > a,
    #header .profile-sec .dropdown > li > a {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #E4E9F3;
      color: #220063;
      text-decoration: none; }
    #header .profile-sec .profile-wrap {
      display: flex;
      align-items: center;
      margin-left: 20px;
      font-weight: 600;
      font-size: 14px; }
      @media screen and (max-width: 900px) {
        #header .profile-sec .profile-wrap > span {
          display: none; } }
      #header .profile-sec .profile-wrap:after {
        content: "\f0d7";
        font-family: 'Font Awesome 6 Free';
        top: 0px;
        position: relative;
        left: 6px; }
      #header .profile-sec .profile-wrap > a {
        background-color: #E4E9F3;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        color: #220063;
        margin-right: 15px; }
        #header .profile-sec .profile-wrap > a img {
          width: 40px;
          height: 40px; }
    #header .profile-sec ul.dropdown {
      position: absolute;
      top: 59px;
      padding: 0;
      margin: 0;
      width: 200px;
      right: 10px;
      list-style-type: none;
      display: none;
      box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
      background-color: #ffffff;
      z-index: 9; }
      #header .profile-sec ul.dropdown.show {
        display: block; }
      #header .profile-sec ul.dropdown li {
        text-align: left; }
        #header .profile-sec ul.dropdown li a {
          width: 100%;
          height: auto;
          border-radius: 0px;
          padding: 10px 20px;
          background-color: #ffffff;
          text-decoration: none;
          display: block; }
          #header .profile-sec ul.dropdown li a:hover {
            background-color: #E4E9F3; }
          #header .profile-sec ul.dropdown li a i {
            margin-right: 10px; }

.invite_modal .inner_scroll {
  text-align: center;
  padding-bottom: 0 !important; }
  .invite_modal .inner_scroll h3 {
    font-size: 15px;
    margin-top: -8px;
    margin-bottom: 10px; }
    .invite_modal .inner_scroll h3 + p {
      margin-bottom: 30px; }
  .invite_modal .inner_scroll p {
    font-size: 13px; }
    .invite_modal .inner_scroll p.text-left {
      text-align: left; }
  .invite_modal .inner_scroll .inputWrap {
    display: flex; }
    .invite_modal .inner_scroll .inputWrap > input {
      flex: 0 0 calc(100% - 60px);
      padding: 0;
      margin-right: 10px;
      margin-bottom: 0; }
  .invite_modal .inner_scroll .social-share-btn ul {
    display: flex;
    list-style-type: none;
    align-items: center;
    justify-content: center;
    padding: 0; }
    .invite_modal .inner_scroll .social-share-btn ul li button {
      border: none;
      width: 43px;
      height: 43px;
      border-radius: 8px;
      border: 1px solid #f3f3f4;
      background: #ffffff;
      margin-right: 10px;
      display: flex;
      align-items: center;
      justify-content: center; }
      .invite_modal .inner_scroll .social-share-btn ul li button img {
        object-fit: contain; }
    .invite_modal .inner_scroll .social-share-btn ul li:last-child button {
      margin-right: 0; }

/* Make Text in the middle */
.mb-40 {
  margin-bottom: 40px; }

.backdrop {
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: none; }

.backdrop.show {
  display: block; }

.create-modal {
  position: fixed;
  width: 525px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 3; }
  .create-modal.show {
    display: block; }
  .create-modal .popup-header {
    padding: 10px 25px;
    background-color: #FBFBFB;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .create-modal .popup-header h3 {
      margin: 0;
      font-size: 18px; }
    .create-modal .popup-header .close-btn {
      background-color: #EB5757;
      color: #ffffff;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none; }
  .create-modal .popup-body {
    padding: 0px 0px 20px 25px;
    background-color: #ffffff;
    margin-top: -1px; }
    .create-modal .popup-body .poptabs {
      display: none; }
      .create-modal .popup-body .poptabs .themecontainers {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px; }
        .create-modal .popup-body .poptabs .themecontainers > .theme-box {
          flex: 0 0 30%; }
          .create-modal .popup-body .poptabs .themecontainers > .theme-box input[type=radio] {
            display: none; }
            .create-modal .popup-body .poptabs .themecontainers > .theme-box input[type=radio] + .themes {
              cursor: pointer;
              position: relative; }
              .create-modal .popup-body .poptabs .themecontainers > .theme-box input[type=radio] + .themes > .box {
                min-height: 180px;
                width: 100%;
                display: flex;
                border-radius: 5px; }
              .create-modal .popup-body .poptabs .themecontainers > .theme-box input[type=radio] + .themes span.text-center {
                display: block;
                font-size: 14px;
                margin-top: 6px; }
            .create-modal .popup-body .poptabs .themecontainers > .theme-box input[type=radio]:checked + .themes:before {
              content: "";
              background-color: #E4E9F3;
              width: 25px;
              height: 25px;
              border-radius: 50%;
              background-image: url(../assets/images/tick.svg);
              background-size: 12px;
              background-repeat: no-repeat;
              background-position: center;
              position: absolute;
              top: -10px;
              right: -10px; }
            .create-modal .popup-body .poptabs .themecontainers > .theme-box input[type=radio]:checked + .themes > .box {
              border-radius: 5px; }
    .create-modal .popup-body .inner_scroll {
      height: auto;
      overflow-y: auto;
      padding-right: 25px;
      padding-top: 25px;
      padding-bottom: 25px; }
      .create-modal .popup-body .inner_scroll .alert-mes {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-top: 0;
        flex: 1; }
        .create-modal .popup-body .inner_scroll .alert-mes img {
          width: 44px;
          height: 44px;
          object-fit: contain;
          margin-right: 20px; }
        .create-modal .popup-body .inner_scroll .alert-mes + select {
          width: 100%; }
          .create-modal .popup-body .inner_scroll .alert-mes + select + .select2-container--default {
            width: 100% !important; }
      .create-modal .popup-body .inner_scroll .cred_post input {
        display: none; }
        .create-modal .popup-body .inner_scroll .cred_post input + label {
          border: 1px solid #F3F3F4;
          border-radius: 5px;
          width: auto;
          display: flex;
          justify-content: space-between;
          padding: 15px;
          margin-bottom: 15px;
          cursor: pointer;
          position: relative; }
          .create-modal .popup-body .inner_scroll .cred_post input + label span {
            font-size: 12px;
            color: #a3a3a3; }
            .create-modal .popup-body .inner_scroll .cred_post input + label span:first-child {
              font-size: 13px;
              font-weight: bold;
              color: #000000; }
        .create-modal .popup-body .inner_scroll .cred_post input:checked + label {
          border: 1px solid #220063;
          border-radius: 5px; }
          .create-modal .popup-body .inner_scroll .cred_post input:checked + label:before {
            content: "";
            background-color: #E4E9F3;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-image: url(../assets/images/tick.svg);
            background-size: 8px;
            background-repeat: no-repeat;
            background-position: center;
            position: absolute;
            top: -10px;
            right: -10px; }
    .create-modal .popup-body .btnWrap {
      display: flex;
      justify-content: flex-end;
      padding-right: 25px; }
      .create-modal .popup-body .btnWrap .btn-sm {
        width: auto;
        padding-left: 25px !important;
        padding-right: 25px !important; }
        .create-modal .popup-body .btnWrap .btn-sm:first-child {
          margin-right: 10px; }
        .create-modal .popup-body .btnWrap .btn-sm.btn-secondary {
          background-color: #E4E9F3;
          color: #000000; }

.create-modal.labelpopup .popup-body .inner_scroll input + label {
  border: 1px solid #F3F3F4;
  border-radius: 5px;
  width: auto;
  display: flex;
  justify-content: space-between;
  padding: 11px 15px 11px 35px;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative; }
  .create-modal.labelpopup .popup-body .inner_scroll input + label:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-image: url(../assets/images/radio-button.svg);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%); }
  .create-modal.labelpopup .popup-body .inner_scroll input + label span {
    font-size: 12px;
    color: #a3a3a3; }
    .create-modal.labelpopup .popup-body .inner_scroll input + label span:first-child {
      font-size: 13px;
      font-weight: bold;
      color: #000000; }
    .create-modal.labelpopup .popup-body .inner_scroll input + label span span.actBtnwrap {
      display: none; }
.create-modal.labelpopup .popup-body .inner_scroll input:checked + label {
  border: 1px solid #220063;
  border-radius: 5px; }
  .create-modal.labelpopup .popup-body .inner_scroll input:checked + label:before {
    content: "";
    background-color: #E4E9F3;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-image: url(../assets/images/radio-active.svg);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%); }
  .create-modal.labelpopup .popup-body .inner_scroll input:checked + label span.actBtnwrap {
    display: block;
    position: absolute;
    right: 0;
    background: #F3F3F4;
    padding: 0;
    top: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px; }
    .create-modal.labelpopup .popup-body .inner_scroll input:checked + label span.actBtnwrap button {
      border: none;
      background: transparent;
      padding: 10px 12px; }

.dashboard-wrapper {
  display: grid;
  grid-template-areas: "header header header" "nav content sider";
  grid-template-columns: 280px calc(100% - 560px) 280px;
  grid-template-rows: 70px 1fr 0px;
  margin: 20px;
  min-height: 100vh; }
  .dashboard-wrapper.follower-wrapper {
    grid-template-columns: 180px 1fr 180px; }
  .dashboard-wrapper.full-width {
    grid-template-columns: 0px 1fr 0px;
    grid-template-areas: "header header" "content content";
    grid-template-rows: 70px 1fr; }
  .dashboard-wrapper.userprofile-wrapper {
    grid-template-columns: 0px 1fr 280px; }
  .dashboard-wrapper header,
  .dashboard-wrapper nav,
  .dashboard-wrapper main,
  .dashboard-wrapper aside {
    display: flex; }
  .dashboard-wrapper h2 img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-right: 3px; }
  .dashboard-wrapper header {
    grid-area: header;
    background-color: #ffffff;
    margin-bottom: 10px;
    border-bottom: 1px solid #F3F3F4; }
  .dashboard-wrapper nav {
    grid-area: nav;
    background-color: rgba(34, 0, 99, 0.02);
    margin-left: 0px;
    border-radius: 5px;
    border: 1px solid #F3F3F4;
    padding: 15px 10px;
    flex-direction: column;
    margin-top: 0px;
    margin-bottom: 40px; }
    .dashboard-wrapper nav h2 {
      color: #000000;
      font-size: 18px;
      margin: 0; }
    .dashboard-wrapper nav .jobHiring-list {
      box-sizing: border-box; }
      .dashboard-wrapper nav .jobHiring-list .jobcard {
        background-color: #ffffff;
        border-radius: 5px;
        padding: 10px;
        box-sizing: border-box;
        margin-bottom: 15px;
        border: 1px solid #F3F3F4; }
        .dashboard-wrapper nav .jobHiring-list .jobcard:first-child {
          margin-top: 25px; }
        .dashboard-wrapper nav .jobHiring-list .jobcard p,
        .dashboard-wrapper nav .jobHiring-list .jobcard h3 {
          margin: 0px; }
        .dashboard-wrapper nav .jobHiring-list .jobcard p {
          font-size: 11px;
          margin-bottom: 8px; }
          .dashboard-wrapper nav .jobHiring-list .jobcard p.text-right {
            font-size: 10px;
            color: #9DA6B7; }
        .dashboard-wrapper nav .jobHiring-list .jobcard h3 {
          font-size: 14px;
          margin: 5px 0px 10px;
          color: #220063; }
        .dashboard-wrapper nav .jobHiring-list .jobcard ul {
          display: flex;
          padding: 0px;
          margin: 0px;
          justify-content: flex-start;
          list-style-type: none;
          align-items: center;
          border-bottom: 1px solid #F3F3F4;
          padding-bottom: 10px;
          margin-bottom: 5px; }
          .dashboard-wrapper nav .jobHiring-list .jobcard ul:last-child {
            border: none;
            justify-content: space-between;
            padding-bottom: 0;
            margin-bottom: 0; }
          .dashboard-wrapper nav .jobHiring-list .jobcard ul li {
            margin-right: 10px;
            align-items: center;
            display: flex; }
            .dashboard-wrapper nav .jobHiring-list .jobcard ul li * {
              font-size: 10px;
              color: #9DA6B7; }
            .dashboard-wrapper nav .jobHiring-list .jobcard ul li img {
              width: 16px;
              height: 16px;
              object-fit: contain;
              margin-right: 8px; }
            .dashboard-wrapper nav .jobHiring-list .jobcard ul li .interest_box {
              background-color: rgba(157, 166, 183, 0.12);
              color: #000000;
              font-size: 10px;
              padding: 3px 5px; }
              .dashboard-wrapper nav .jobHiring-list .jobcard ul li .interest_box span {
                font-size: 16px;
                color: #000000;
                display: block;
                font-weight: bold;
                padding: 0px; }
            .dashboard-wrapper nav .jobHiring-list .jobcard ul li span {
              padding-left: 20px;
              position: relative; }
              .dashboard-wrapper nav .jobHiring-list .jobcard ul li span.pay-ic:before {
                content: "";
                display: inline-block;
                width: 16px;
                height: 16px;
                background-color: #F3F3F4;
                background-image: url(../assets/images/pay-icon.svg);
                background-repeat: no-repeat;
                background-size: 12px;
                background-position: center;
                position: absolute;
                left: 0px;
                top: 50%;
                transform: translateY(-50%); }
              .dashboard-wrapper nav .jobHiring-list .jobcard ul li span.loc-ic:before {
                content: "";
                display: inline-block;
                width: 16px;
                height: 16px;
                background-color: #F3F3F4;
                background-image: url(../assets/images/loc-icon.svg);
                background-repeat: no-repeat;
                background-size: 12px;
                background-position: center;
                position: absolute;
                left: 0px;
                top: 50%;
                transform: translateY(-50%); }
              .dashboard-wrapper nav .jobHiring-list .jobcard ul li span.exp-ic:before {
                content: "";
                display: inline-block;
                width: 16px;
                height: 16px;
                background-color: #F3F3F4;
                background-image: url(../assets/images/exp-icon.svg);
                background-repeat: no-repeat;
                background-size: 12px;
                background-position: center;
                position: absolute;
                left: 0px;
                top: 50%;
                transform: translateY(-50%); }
      .dashboard-wrapper nav .jobHiring-list .follower-card {
        position: relative;
        margin-top: 20px; }
        .dashboard-wrapper nav .jobHiring-list .follower-card p.text-right {
          margin: 0; }
          .dashboard-wrapper nav .jobHiring-list .follower-card p.text-right > span {
            background-color: #3FC429;
            text-align: center;
            padding: 6px 14px;
            color: #ffffff;
            font-size: 9px;
            position: relative;
            top: -12px;
            right: -20px;
            border-top-right-radius: 5px; }
        .dashboard-wrapper nav .jobHiring-list .follower-card > input[type=checkbox] {
          display: none; }
          .dashboard-wrapper nav .jobHiring-list .follower-card > input[type=checkbox] + label {
            position: absolute;
            top: 8px;
            left: 8px;
            cursor: pointer;
            background-size: contain;
            background-image: url(../assets/images/Checkbox.svg);
            background-position: center;
            display: inline-block;
            width: 24px;
            height: 24px; }
        .dashboard-wrapper nav .jobHiring-list .follower-card > input:checked + label {
          background-image: url(../assets/images/checked.svg);
          background-size: contain;
          width: 20px;
          height: 20px;
          background-position: center;
          left: 10px;
          top: 10px; }
          .dashboard-wrapper nav .jobHiring-list .follower-card > input:checked + label + .fl-wrap {
            border-color: #220063; }
        .dashboard-wrapper nav .jobHiring-list .follower-card .fl-wrap {
          border: 1px solid #F3F3F4;
          border-radius: 8px;
          padding: 15px 20px;
          background-color: #ffffff; }
          .dashboard-wrapper nav .jobHiring-list .follower-card .fl-wrap > p {
            color: #9DA6B7;
            font-size: 12px;
            margin-bottom: 10px; }
            .dashboard-wrapper nav .jobHiring-list .follower-card .fl-wrap > p.text-right {
              margin-bottom: 20px;
              margin-top: 0px; }
          .dashboard-wrapper nav .jobHiring-list .follower-card .fl-wrap .userdetails {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            margin-bottom: 20px; }
            .dashboard-wrapper nav .jobHiring-list .follower-card .fl-wrap .userdetails img {
              vertical-align: top; }
            .dashboard-wrapper nav .jobHiring-list .follower-card .fl-wrap .userdetails .user-right h4,
            .dashboard-wrapper nav .jobHiring-list .follower-card .fl-wrap .userdetails .user-right p {
              margin: 0 0px 5px; }
            .dashboard-wrapper nav .jobHiring-list .follower-card .fl-wrap .userdetails .user-right h4 {
              color: #220063;
              font-weight: bold;
              font-size: 14px; }
              .dashboard-wrapper nav .jobHiring-list .follower-card .fl-wrap .userdetails .user-right h4 a {
                color: #220063;
                text-decoration: none; }
            .dashboard-wrapper nav .jobHiring-list .follower-card .fl-wrap .userdetails .user-right p {
              font-size: 12px; }
          .dashboard-wrapper nav .jobHiring-list .follower-card .fl-wrap ul {
            display: inline-block;
            padding: 0px;
            list-style-type: none;
            margin-bottom: 10px; }
            .dashboard-wrapper nav .jobHiring-list .follower-card .fl-wrap ul li {
              float: left;
              margin-right: 10px; }
              .dashboard-wrapper nav .jobHiring-list .follower-card .fl-wrap ul li span {
                font-size: 11px;
                font-weight: 100; }
                .dashboard-wrapper nav .jobHiring-list .follower-card .fl-wrap ul li span.sk-badge {
                  padding-left: 0px;
                  display: flex;
                  height: 20px;
                  padding: 0px 12px;
                  border-radius: 25px;
                  justify-content: center;
                  align-items: center;
                  color: #ffffff;
                  font-weight: 600; }
              .dashboard-wrapper nav .jobHiring-list .follower-card .fl-wrap ul li:first-child span.sk-badge {
                background-color: rgba(208, 200, 221, 0.5);
                color: #220063; }
              .dashboard-wrapper nav .jobHiring-list .follower-card .fl-wrap ul li:nth-child(2) span.sk-badge {
                background-color: #d6e4f8;
                color: #6C99C1; }
              .dashboard-wrapper nav .jobHiring-list .follower-card .fl-wrap ul li:nth-child(3) span.sk-badge {
                background-color: #d3ece6;
                color: #73C2A1; }
  .dashboard-wrapper main {
    grid-area: content;
    background-color: #ffffff;
    border-radius: 5px;
    flex-direction: column;
    margin-top: 0px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
    width: calc(100% - 40px); }
    .dashboard-wrapper main .createJob-sec {
      border-radius: 5px;
      background-color: rgba(34, 0, 99, 0.02);
      padding: 15px;
      min-height: 230px;
      border: 1px solid #F3F3F4;
      margin-bottom: 20px;
      display: flex;
      justify-content: space-between;
      width: calc(100% - 30px);
      overflow: hidden; }
      @media screen and (max-width: 1200px) {
        .dashboard-wrapper main .createJob-sec .owl-carousel.dashboard-carousel {
          width: 100%;
          padding-right: 0px; } }
      .dashboard-wrapper main .createJob-sec .owl-carousel .owl-nav button {
        cursor: pointer;
        position: absolute;
        width: 20px;
        height: 20px;
        padding: 0;
        margin: 0;
        outline: 0;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        z-index: 99; }
        .dashboard-wrapper main .createJob-sec .owl-carousel .owl-nav button > span {
          display: none; }
        .dashboard-wrapper main .createJob-sec .owl-carousel .owl-nav button.owl-next {
          background: url("../assets/images/right_arrow.png") no-repeat;
          right: 0px; }
        .dashboard-wrapper main .createJob-sec .owl-carousel .owl-nav button.owl-prev {
          background: url("../assets/images/left_arrow.png") no-repeat;
          left: 0px; }
        .dashboard-wrapper main .createJob-sec .owl-carousel .owl-nav button.disabled {
          display: none; }
      .dashboard-wrapper main .createJob-sec .owl-carousel .owl-item {
        margin-right: 0px; }
        .dashboard-wrapper main .createJob-sec .owl-carousel .owl-item:last-child div.jobcards-add {
          margin-right: 0; }
      .dashboard-wrapper main .createJob-sec div.jobcards-add {
        border-radius: 5px;
        text-align: center;
        position: relative;
        margin-right: 0px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding: 10px;
        min-width: calc(170px - 35px);
        max-width: calc(170px - 35px);
        width: 175px;
        min-height: 230px;
        max-height: 230px; }
        .dashboard-wrapper main .createJob-sec div.jobcards-add:first-child:not([class*=theme-]) {
          background-color: #ffffff;
          justify-content: flex-end; }
          .dashboard-wrapper main .createJob-sec div.jobcards-add:first-child:not([class*=theme-]) * {
            color: #000000; }
        .dashboard-wrapper main .createJob-sec div.jobcards-add a.close-bt {
          background-color: #ffffff; }
        .dashboard-wrapper main .createJob-sec div.jobcards-add a.close-bt {
          position: absolute;
          right: 15px;
          top: 15px;
          width: 18px;
          height: 18px;
          border-radius: 50%;
          font-size: 12px;
          display: flex;
          align-items: center;
          justify-content: center;
          text-decoration: none; }
        .dashboard-wrapper main .createJob-sec div.jobcards-add a.add-bt {
          position: absolute;
          left: 50%;
          transform: translateX(-50%);
          top: 50px;
          width: 30px;
          height: 30px;
          border-radius: 50%;
          background: #ffffff url(../assets/images/plus.png) no-repeat;
          background-size: contain;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #ffffff;
          text-decoration: none; }
        .dashboard-wrapper main .createJob-sec div.jobcards-add p,
        .dashboard-wrapper main .createJob-sec div.jobcards-add a:not(.close-bt) {
          color: #ffffff; }
    .dashboard-wrapper main .jobList-sec {
      border-radius: 5px;
      background-color: rgba(34, 0, 99, 0.02);
      padding: 15px;
      min-height: 250px;
      border: 1px solid #F3F3F4; }
      .dashboard-wrapper main .jobList-sec .jobcards-list {
        background: #ffffff;
        margin-bottom: 20px;
        border: 1px solid #F3F3F4;
        box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.04); }
        .dashboard-wrapper main .jobList-sec .jobcards-list .prof-sec {
          padding: 10px 25px;
          display: flex;
          align-items: flex-start;
          justify-content: flex-start; }
          .dashboard-wrapper main .jobList-sec .jobcards-list .prof-sec img {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            object-fit: contain;
            position: relative;
            top: 3px; }
          .dashboard-wrapper main .jobList-sec .jobcards-list .prof-sec p {
            margin-top: 5px;
            margin-left: 15px; }
            .dashboard-wrapper main .jobList-sec .jobcards-list .prof-sec p span {
              display: block;
              width: 100%;
              font-size: 13px;
              color: #a3a3a3; }
              .dashboard-wrapper main .jobList-sec .jobcards-list .prof-sec p span:first-child {
                margin-bottom: 5px; }
                .dashboard-wrapper main .jobList-sec .jobcards-list .prof-sec p span:first-child > b {
                  color: #000000; }
          .dashboard-wrapper main .jobList-sec .jobcards-list .prof-sec + p.text-right {
            padding: 0px 20px 20px;
            margin-top: 0; }
          .dashboard-wrapper main .jobList-sec .jobcards-list .prof-sec .btn-green,
          .dashboard-wrapper main .jobList-sec .jobcards-list .prof-sec .btn-gray {
            font-size: 13px; }
        .dashboard-wrapper main .jobList-sec .jobcards-list .prof-desc {
          border-top: 1px solid #F3F3F4;
          padding: 10px 25px; }
          .dashboard-wrapper main .jobList-sec .jobcards-list .prof-desc .btn-green,
          .dashboard-wrapper main .jobList-sec .jobcards-list .prof-desc .btn-gray {
            font-size: 13px; }
          .dashboard-wrapper main .jobList-sec .jobcards-list .prof-desc p {
            color: #878787;
            font-size: 13px; }
            .dashboard-wrapper main .jobList-sec .jobcards-list .prof-desc p b {
              color: #6C6C64;
              font-size: 14px; }
    .dashboard-wrapper main .titleSec {
      display: flex;
      justify-content: space-between;
      position: relative; }
      .dashboard-wrapper main .titleSec h2 {
        font-size: 18px;
        color: #220063; }
      .dashboard-wrapper main .titleSec .btn-group {
        display: flex;
        flex-direction: row;
        align-items: center; }
        .dashboard-wrapper main .titleSec .btn-group button {
          margin-right: 10px;
          white-space: nowrap;
          height: 40px;
          text-transform: capitalize;
          font-size: 13px; }
          .dashboard-wrapper main .titleSec .btn-group button:last-child {
            margin-right: 0; }
        .dashboard-wrapper main .titleSec .btn-group a {
          font-size: 13px;
          text-transform: capitalize; }
        .dashboard-wrapper main .titleSec .btn-group .rightdrop {
          display: flex;
          justify-content: flex-end;
          align-items: center;
          color: #96A5C4;
          position: relative; }
          .dashboard-wrapper main .titleSec .btn-group .rightdrop p {
            margin-bottom: 0; }
          .dashboard-wrapper main .titleSec .btn-group .rightdrop button.drop-head {
            background-color: transparent;
            border: none;
            color: #96A5C4; }
        .dashboard-wrapper main .titleSec .btn-group .dsort-by-wrap {
          position: relative; }
          .dashboard-wrapper main .titleSec .btn-group .dsort-by-wrap > span {
            color: #9DA6B7;
            font-size: 10px;
            font-weight: 600;
            margin-right: 10px; }
          .dashboard-wrapper main .titleSec .btn-group .dsort-by-wrap .drop-head {
            background-color: #ffffff;
            border: none;
            border-radius: 4px;
            padding: 8px 15px;
            color: #000000; }
            .dashboard-wrapper main .titleSec .btn-group .dsort-by-wrap .drop-head > span {
              color: #9DA6B7; }
            .dashboard-wrapper main .titleSec .btn-group .dsort-by-wrap .drop-head i {
              margin-left: 10px; }
          .dashboard-wrapper main .titleSec .btn-group .dsort-by-wrap .dropdown_wrap {
            position: absolute;
            width: 150px;
            background: white;
            right: 20px;
            top: 40px;
            box-shadow: 0px 3px 19px 0px #AFB1B4;
            display: none;
            z-index: 9; }
            .dashboard-wrapper main .titleSec .btn-group .dsort-by-wrap .dropdown_wrap .text-right {
              margin: 10px 15px 15px; }
            .dashboard-wrapper main .titleSec .btn-group .dsort-by-wrap .dropdown_wrap .btn-primary {
              font-size: 10px;
              padding: 7px 12px;
              height: auto; }
            .dashboard-wrapper main .titleSec .btn-group .dsort-by-wrap .dropdown_wrap.show {
              display: block; }
            .dashboard-wrapper main .titleSec .btn-group .dsort-by-wrap .dropdown_wrap ul {
              display: inline-block;
              width: 100%;
              padding: 0;
              margin-bottom: 0;
              margin-top: 0; }
              .dashboard-wrapper main .titleSec .btn-group .dsort-by-wrap .dropdown_wrap ul li {
                display: block;
                width: 100%;
                color: #96A5C4; }
                .dashboard-wrapper main .titleSec .btn-group .dsort-by-wrap .dropdown_wrap ul li input {
                  display: none; }
                  .dashboard-wrapper main .titleSec .btn-group .dsort-by-wrap .dropdown_wrap ul li input:checked + label {
                    position: relative;
                    color: #ffffff;
                    background-color: #220063; }
                    .dashboard-wrapper main .titleSec .btn-group .dsort-by-wrap .dropdown_wrap ul li input:checked + label:after {
                      content: "\f00c";
                      font-family: "Font Awesome 6 Free";
                      display: inline-block;
                      font-size: 14px;
                      font-weight: 900;
                      position: absolute;
                      right: 10px; }
                .dashboard-wrapper main .titleSec .btn-group .dsort-by-wrap .dropdown_wrap ul li label {
                  background-color: transparent;
                  border: none;
                  width: calc(100% - 50px);
                  font-size: 13px;
                  color: #96A5C4;
                  padding: 10px 30px 10px 20px;
                  text-align: left;
                  display: inline-block;
                  cursor: pointer; }
                  .dashboard-wrapper main .titleSec .btn-group .dsort-by-wrap .dropdown_wrap ul li label:hover {
                    background-color: #220063;
                    color: #ffffff; }
      .dashboard-wrapper main .titleSec .cPost-modal {
        position: absolute;
        top: 60px;
        right: 0px;
        width: 650px;
        z-index: 9;
        background-color: #ffffff;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        display: none; }
        @media screen and (max-width: 700px) {
          .dashboard-wrapper main .titleSec .cPost-modal {
            width: 80%; } }
        .dashboard-wrapper main .titleSec .cPost-modal.show {
          display: block; }
        .dashboard-wrapper main .titleSec .cPost-modal .pop-header {
          padding: 10px 25px;
          background-color: #FBFBFB;
          display: flex;
          align-items: center;
          justify-content: space-between; }
          .dashboard-wrapper main .titleSec .cPost-modal .pop-header h3 {
            margin: 0;
            font-size: 18px; }
          .dashboard-wrapper main .titleSec .cPost-modal .pop-header .close-btn {
            background-color: #EB5757;
            color: #ffffff;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none; }
        .dashboard-wrapper main .titleSec .cPost-modal .pop-body {
          padding: 20px 25px; }
          .dashboard-wrapper main .titleSec .cPost-modal .pop-body .input-group {
            display: flex;
            gap: 10px; }
            .dashboard-wrapper main .titleSec .cPost-modal .pop-body .input-group.d-flex-jc-sp > span {
              margin-bottom: 30px; }
            .dashboard-wrapper main .titleSec .cPost-modal .pop-body .input-group input,
            .dashboard-wrapper main .titleSec .cPost-modal .pop-body .input-group textarea,
            .dashboard-wrapper main .titleSec .cPost-modal .pop-body .input-group select {
              margin-bottom: 10px !important; }
            .dashboard-wrapper main .titleSec .cPost-modal .pop-body .input-group > input {
              display: flex;
              flex: 0 0 calc(100% - 340px); }
              .dashboard-wrapper main .titleSec .cPost-modal .pop-body .input-group > input:first-child {
                flex: 0 0 250px; }
            .dashboard-wrapper main .titleSec .cPost-modal .pop-body .input-group textarea {
              flex: 1;
              resize: none;
              padding: 10px 20px !important; }
            .dashboard-wrapper main .titleSec .cPost-modal .pop-body .input-group:last-child input,
            .dashboard-wrapper main .titleSec .cPost-modal .pop-body .input-group:last-child textarea,
            .dashboard-wrapper main .titleSec .cPost-modal .pop-body .input-group:last-child select {
              margin-bottom: 0px !important; }
          .dashboard-wrapper main .titleSec .cPost-modal .pop-body .button-group {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 25px 0px 15px; }
            .dashboard-wrapper main .titleSec .cPost-modal .pop-body .button-group button {
              width: auto;
              padding-left: 25px !important;
              padding-right: 25px !important; }
              .dashboard-wrapper main .titleSec .cPost-modal .pop-body .button-group button.btn-primary.btn-secondary {
                background-color: #E4E9F3;
                color: #000000; }
      .dashboard-wrapper main .titleSec.sm_head {
        padding-left: 35px;
        padding-right: 35px; }
    .dashboard-wrapper main .formArea {
      padding: 10px 35px; }
      .dashboard-wrapper main .formArea .three-col .postWrap {
        margin-bottom: 30px;
        font-size: 13px;
        font-weight: bold; }
        .dashboard-wrapper main .formArea .three-col .postWrap:last-child {
          margin-bottom: 0; }
        .dashboard-wrapper main .formArea .three-col .postWrap .remove-wrap {
          display: block;
          text-align: right; }
        .dashboard-wrapper main .formArea .three-col .postWrap .multi-select-drop + .select2 .select2-search--inline input {
          min-width: 215px;
          padding: 0;
          margin: 0;
          padding-right: 0px;
          padding-left: 5px;
          color: #000000;
          font-family: "Mulish-Regular";
          font-size: 14px;
          margin-bottom: 0 !important; }
          .dashboard-wrapper main .formArea .three-col .postWrap .multi-select-drop + .select2 .select2-search--inline input::placeholder {
            /* Chrome, Firefox, Opera, Safari 10.1+ */
            color: #989DA9;
            opacity: 1;
            /* Firefox */ }
          .dashboard-wrapper main .formArea .three-col .postWrap .multi-select-drop + .select2 .select2-search--inline input:-ms-input-placeholder {
            /* Internet Explorer 10-11 */
            color: #989DA9; }
          .dashboard-wrapper main .formArea .three-col .postWrap .multi-select-drop + .select2 .select2-search--inline input::-ms-input-placeholder {
            /* Microsoft Edge */
            color: #989DA9; }
      .dashboard-wrapper main .formArea .three-col .input-group {
        display: flex;
        gap: 10px;
        margin-bottom: 15px; }
        .dashboard-wrapper main .formArea .three-col .input-group label {
          white-space: nowrap;
          top: 9px;
          position: relative; }
        .dashboard-wrapper main .formArea .three-col .input-group input[type="text" i] {
          padding: 0 2px 0px 8px; }
        .dashboard-wrapper main .formArea .three-col .input-group input,
        .dashboard-wrapper main .formArea .three-col .input-group textarea,
        .dashboard-wrapper main .formArea .three-col .input-group select {
          margin-bottom: 10px !important; }
        .dashboard-wrapper main .formArea .three-col .input-group textarea {
          line-height: normal !important;
          resize: none;
          padding-top: 10px; }
        .dashboard-wrapper main .formArea .three-col .input-group > input,
        .dashboard-wrapper main .formArea .three-col .input-group .select2 {
          display: flex;
          width: auto !important;
          flex: 1;
          height: fit-content; }
          .dashboard-wrapper main .formArea .three-col .input-group > input span.selection,
          .dashboard-wrapper main .formArea .three-col .input-group .select2 span.selection {
            width: 100%; }
        .dashboard-wrapper main .formArea .three-col .input-group > select,
        .dashboard-wrapper main .formArea .three-col .input-group .select2 {
          display: flex;
          width: auto !important; }
          .dashboard-wrapper main .formArea .three-col .input-group > select span.selection,
          .dashboard-wrapper main .formArea .three-col .input-group .select2 span.selection {
            width: 100%; }
        .dashboard-wrapper main .formArea .three-col .input-group:last-child input,
        .dashboard-wrapper main .formArea .three-col .input-group:last-child textarea,
        .dashboard-wrapper main .formArea .three-col .input-group:last-child select {
          margin-bottom: 0px !important; }
        .dashboard-wrapper main .formArea .three-col .input-group.full-width {
          min-height: 150px; }
          .dashboard-wrapper main .formArea .three-col .input-group.full-width select,
          .dashboard-wrapper main .formArea .three-col .input-group.full-width input {
            flex: 1;
            resize: none; }
      .dashboard-wrapper main .formArea .three-col .add-more {
        margin: 20px 0px 40px; }
      .dashboard-wrapper main .formArea .three-col .removebtn {
        background: transparent;
        border: 1px solid #D9D9D9;
        border-radius: 5px;
        color: #4D4D4D;
        padding: 7px 10px;
        text-decoration: none;
        font-size: 13px; }
        .dashboard-wrapper main .formArea .three-col .removebtn:hover {
          background: #D9D9D9;
          color: #000000; }
      .dashboard-wrapper main .formArea .button-group {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin: 25px 0px 15px; }
        .dashboard-wrapper main .formArea .button-group button {
          width: auto;
          padding-left: 25px !important;
          padding-right: 25px !important; }
          .dashboard-wrapper main .formArea .button-group button.btn-primary.btn-secondary {
            background-color: #E4E9F3;
            color: #000000; }
    .dashboard-wrapper main .myJobs-pg {
      padding: 15px 35px;
      background-color: rgba(34, 0, 99, 0.02); }
      .dashboard-wrapper main .myJobs-pg .tabs ul {
        border-bottom: 1px solid #F3F3F4;
        display: inline-block;
        width: 100%;
        padding: 0px;
        margin: 20px 0;
        list-style-type: none; }
        .dashboard-wrapper main .myJobs-pg .tabs ul li {
          float: left;
          margin-right: 10px; }
          .dashboard-wrapper main .myJobs-pg .tabs ul li.active a {
            color: #220063;
            border-bottom: 3px solid #220063; }
          .dashboard-wrapper main .myJobs-pg .tabs ul li a {
            color: #D4D7DE;
            text-decoration: none;
            border-bottom: 3px solid transparent;
            position: relative;
            bottom: 10px;
            padding-left: 10px;
            padding-right: 10px;
            font-size: 14px;
            font-weight: 600;
            padding-bottom: 8px; }
      .dashboard-wrapper main .myJobs-pg .myjobscards {
        background-color: #ffffff;
        margin-bottom: 20px;
        padding-top: 15px;
        padding-bottom: 15px;
        position: relative;
        border: 1px solid #F3F3F4;
        box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.04); }
        .dashboard-wrapper main .myJobs-pg .myjobscards .rightdrop {
          display: flex;
          justify-content: flex-end;
          align-items: center;
          color: #96A5C4;
          position: relative; }
          .dashboard-wrapper main .myJobs-pg .myjobscards .rightdrop p {
            margin-bottom: 0; }
          .dashboard-wrapper main .myJobs-pg .myjobscards .rightdrop button.drop-head {
            background-color: transparent;
            border: none;
            color: #96A5C4; }
          .dashboard-wrapper main .myJobs-pg .myjobscards .rightdrop .dropdown_wrap {
            position: absolute;
            width: 150px;
            background: white;
            right: 0px;
            top: 30px;
            box-shadow: 0px 3px 19px 0px #AFB1B4;
            display: none;
            z-index: 5; }
            .dashboard-wrapper main .myJobs-pg .myjobscards .rightdrop .dropdown_wrap.show {
              display: block; }
            .dashboard-wrapper main .myJobs-pg .myjobscards .rightdrop .dropdown_wrap ul {
              display: inline-block;
              width: 100%; }
              .dashboard-wrapper main .myJobs-pg .myjobscards .rightdrop .dropdown_wrap ul li {
                display: block;
                width: 100%;
                color: #96A5C4; }
                .dashboard-wrapper main .myJobs-pg .myjobscards .rightdrop .dropdown_wrap ul li button {
                  background-color: transparent;
                  border: none;
                  width: 100%;
                  font-size: 13px;
                  color: #96A5C4;
                  padding: 10px 20px;
                  text-align: left; }
                  .dashboard-wrapper main .myJobs-pg .myjobscards .rightdrop .dropdown_wrap ul li button:hover {
                    background-color: #F3F4F6;
                    color: #000000; }
        .dashboard-wrapper main .myJobs-pg .myjobscards > p, .dashboard-wrapper main .myJobs-pg .myjobscards > ul, .dashboard-wrapper main .myJobs-pg .myjobscards > h3, .dashboard-wrapper main .myJobs-pg .myjobscards > div {
          padding-left: 20px !important;
          padding-right: 20px !important; }
        .dashboard-wrapper main .myJobs-pg .myjobscards p,
        .dashboard-wrapper main .myJobs-pg .myjobscards h3 {
          margin: 0px; }
        .dashboard-wrapper main .myJobs-pg .myjobscards p {
          font-size: 11px;
          margin-bottom: 8px; }
          .dashboard-wrapper main .myJobs-pg .myjobscards p.para {
            font-size: 14px;
            color: #000000;
            margin-bottom: 15px; }
          .dashboard-wrapper main .myJobs-pg .myjobscards p.text-right {
            font-size: 10px;
            color: #9DA6B7; }
        .dashboard-wrapper main .myJobs-pg .myjobscards h3 {
          font-size: 14px;
          margin: 5px 0px 10px;
          color: #220063; }
          .dashboard-wrapper main .myJobs-pg .myjobscards h3 a {
            text-decoration: none;
            color: inherit; }
        .dashboard-wrapper main .myJobs-pg .myjobscards ul {
          display: flex;
          padding: 0px;
          margin: 0px;
          justify-content: flex-start;
          list-style-type: none;
          align-items: center;
          border-bottom: 1px solid #F3F3F4;
          padding-bottom: 15px;
          margin-bottom: 15px; }
          .dashboard-wrapper main .myJobs-pg .myjobscards ul:last-child {
            border: none;
            padding-bottom: 0;
            margin-bottom: 0; }
          .dashboard-wrapper main .myJobs-pg .myjobscards ul.req-pts {
            display: inline-block;
            list-style-type: none;
            margin-bottom: 0; }
            .dashboard-wrapper main .myJobs-pg .myjobscards ul.req-pts li {
              margin-bottom: 8px;
              font-size: 13px;
              color: #000000; }
          .dashboard-wrapper main .myJobs-pg .myjobscards ul li {
            margin-right: 20px;
            align-items: center;
            display: flex; }
            .dashboard-wrapper main .myJobs-pg .myjobscards ul li * {
              font-size: 10px;
              color: #9DA6B7; }
            .dashboard-wrapper main .myJobs-pg .myjobscards ul li img {
              width: 16px;
              height: 16px;
              object-fit: contain;
              margin-right: 8px; }
            .dashboard-wrapper main .myJobs-pg .myjobscards ul li .interest_box {
              background-color: rgba(157, 166, 183, 0.12);
              color: #000000;
              font-size: 10px;
              padding: 3px 5px; }
              .dashboard-wrapper main .myJobs-pg .myjobscards ul li .interest_box span {
                font-size: 16px;
                color: #000000;
                display: block;
                font-weight: bold;
                padding: 0px; }
            .dashboard-wrapper main .myJobs-pg .myjobscards ul li span {
              padding-left: 20px;
              position: relative; }
              .dashboard-wrapper main .myJobs-pg .myjobscards ul li span.pay-ic:before {
                content: "";
                display: inline-block;
                width: 16px;
                height: 16px;
                background-color: #F3F3F4;
                background-image: url(../assets/images/pay-icon.svg);
                background-repeat: no-repeat;
                background-size: 12px;
                background-position: center;
                position: absolute;
                left: 0px;
                top: 50%;
                transform: translateY(-50%); }
              .dashboard-wrapper main .myJobs-pg .myjobscards ul li span.loc-ic:before {
                content: "";
                display: inline-block;
                width: 16px;
                height: 16px;
                background-color: #F3F3F4;
                background-image: url(../assets/images/loc-icon.svg);
                background-repeat: no-repeat;
                background-size: 12px;
                background-position: center;
                position: absolute;
                left: 0px;
                top: 50%;
                transform: translateY(-50%); }
              .dashboard-wrapper main .myJobs-pg .myjobscards ul li span.exp-ic:before {
                content: "";
                display: inline-block;
                width: 16px;
                height: 16px;
                background-color: #F3F3F4;
                background-image: url(../assets/images/exp-icon.svg);
                background-repeat: no-repeat;
                background-size: 12px;
                background-position: center;
                position: absolute;
                left: 0px;
                top: 50%;
                transform: translateY(-50%); }
        .dashboard-wrapper main .myJobs-pg .myjobscards div.skills {
          display: flex;
          margin: 15px 0px;
          font-size: 12px;
          color: #96A5C4;
          font-weight: bold;
          align-items: center; }
          .dashboard-wrapper main .myJobs-pg .myjobscards div.skills + p {
            color: #96A5C4;
            font-size: 12px;
            font-weight: bold; }
            .dashboard-wrapper main .myJobs-pg .myjobscards div.skills + p a {
              color: inherit;
              text-decoration: none; }
          .dashboard-wrapper main .myJobs-pg .myjobscards div.skills ul {
            padding-left: 20px; }
            .dashboard-wrapper main .myJobs-pg .myjobscards div.skills ul li span.sk-badge {
              padding-left: 0px;
              display: flex;
              height: 20px;
              padding: 0px 7px;
              border-radius: 25px;
              justify-content: center;
              align-items: center;
              color: #ffffff;
              font-weight: 600; }
            .dashboard-wrapper main .myJobs-pg .myjobscards div.skills ul li:first-child span.sk-badge {
              background-color: rgba(208, 200, 221, 0.5);
              color: #220063; }
            .dashboard-wrapper main .myJobs-pg .myjobscards div.skills ul li:nth-child(2) span.sk-badge {
              background-color: #d6e4f8;
              color: #6C99C1; }
            .dashboard-wrapper main .myJobs-pg .myjobscards div.skills ul li:nth-child(3) span.sk-badge {
              background-color: #d3ece6;
              color: #73C2A1; }
        .dashboard-wrapper main .myJobs-pg .myjobscards div.share-details {
          display: flex;
          align-items: center;
          justify-content: space-between;
          border-top: 1px solid #F3F3F4;
          padding-top: 20px;
          margin-top: 10px; }
          .dashboard-wrapper main .myJobs-pg .myjobscards div.share-details button {
            width: auto; }
            .dashboard-wrapper main .myJobs-pg .myjobscards div.share-details button.share {
              padding-left: 30px;
              position: relative; }
              .dashboard-wrapper main .myJobs-pg .myjobscards div.share-details button.share:before {
                content: "";
                background-image: url(../assets/images/Share.svg);
                background-repeat: no-repeat;
                background-size: contain;
                width: 30px;
                height: 30px;
                position: absolute;
                left: 0;
                top: 6px; }
          .dashboard-wrapper main .myJobs-pg .myjobscards div.share-details p,
          .dashboard-wrapper main .myJobs-pg .myjobscards div.share-details span {
            font-weight: bold;
            color: #9DA6B7;
            font-size: 12px; }
            .dashboard-wrapper main .myJobs-pg .myjobscards div.share-details p a,
            .dashboard-wrapper main .myJobs-pg .myjobscards div.share-details span a {
              color: inherit;
              text-decoration: none; }
        .dashboard-wrapper main .myJobs-pg .myjobscards .job_more-dts {
          background-color: #FEFDFE;
          border-bottom: 1px solid #F3F3F4;
          padding: 0 !important; }
          .dashboard-wrapper main .myJobs-pg .myjobscards .job_more-dts ul {
            list-style-type: none;
            padding: 0px;
            margin: 0px;
            display: inline-block;
            padding: 30px 0px;
            width: 100%; }
            .dashboard-wrapper main .myJobs-pg .myjobscards .job_more-dts ul li {
              display: flex;
              justify-content: flex-start;
              margin-bottom: 15px; }
              .dashboard-wrapper main .myJobs-pg .myjobscards .job_more-dts ul li span {
                font-size: 12px;
                font-weight: 100; }
                .dashboard-wrapper main .myJobs-pg .myjobscards .job_more-dts ul li span:first-child {
                  font-weight: bold;
                  color: #000000;
                  min-width: 150px; }
    .dashboard-wrapper main .followers-pg {
      border-radius: 5px;
      background-color: rgba(34, 0, 99, 0.02);
      padding: 15px; }
      .dashboard-wrapper main .followers-pg .titleSec {
        align-items: center; }
        .dashboard-wrapper main .followers-pg .titleSec h2 {
          margin: 8px 0px; }
        .dashboard-wrapper main .followers-pg .titleSec .btn-group {
          display: flex;
          align-items: center; }
          .dashboard-wrapper main .followers-pg .titleSec .btn-group .lableWrap {
            position: relative; }
          .dashboard-wrapper main .followers-pg .titleSec .btn-group #createLabel {
            display: none; }
            .dashboard-wrapper main .followers-pg .titleSec .btn-group #createLabel + label {
              cursor: pointer;
              margin-right: 20px; }
          .dashboard-wrapper main .followers-pg .titleSec .btn-group .clabel-popup {
            position: absolute;
            top: 35px;
            right: 20px;
            background: #ffffff;
            box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.25);
            z-index: 9;
            width: 150px;
            display: none; }
            .dashboard-wrapper main .followers-pg .titleSec .btn-group .clabel-popup.show {
              display: block; }
            .dashboard-wrapper main .followers-pg .titleSec .btn-group .clabel-popup ul {
              margin: 0px;
              padding: 0px;
              list-style-type: none; }
              .dashboard-wrapper main .followers-pg .titleSec .btn-group .clabel-popup ul li a {
                padding: 12px;
                display: inline-block;
                width: calc(100% - 24px);
                text-decoration: none;
                color: #9DA6B7;
                font-size: 13px;
                border-bottom: 1px solid #F3F3F4; }
                .dashboard-wrapper main .followers-pg .titleSec .btn-group .clabel-popup ul li a[id*=label] {
                  background-color: #F3F3F4;
                  border-bottom: 1px solid #ffffff;
                  display: flex;
                  align-items: center; }
                  .dashboard-wrapper main .followers-pg .titleSec .btn-group .clabel-popup ul li a[id*=label] img {
                    background: white;
                    padding: 0px;
                    border-radius: 50%;
                    margin-right: 5px;
                    object-fit: scale-down;
                    width: 28px;
                    height: 28px; }
                  .dashboard-wrapper main .followers-pg .titleSec .btn-group .clabel-popup ul li a[id*=label]:hover {
                    color: #220063; }
                .dashboard-wrapper main .followers-pg .titleSec .btn-group .clabel-popup ul li a i {
                  font-size: 11px; }
                .dashboard-wrapper main .followers-pg .titleSec .btn-group .clabel-popup ul li a:hover {
                  color: #000000;
                  background-color: #F3F3F4; }
          .dashboard-wrapper main .followers-pg .titleSec .btn-group .searchWrap {
            position: relative;
            margin-right: 15px; }
            .dashboard-wrapper main .followers-pg .titleSec .btn-group .searchWrap input.search-ic {
              margin-bottom: 0px;
              min-width: calc(270px - 40px);
              padding-left: 40px;
              padding-right: 0px;
              background-image: url(../assets/images/Search.svg);
              background-repeat: no-repeat;
              background-position: 10px center;
              border: 1px solid #F3F3F4; }
          .dashboard-wrapper main .followers-pg .titleSec .btn-group .filter-btn {
            border: 1px solid #F3F3F4;
            border-radius: 5px;
            background: #ffffff;
            color: #220063;
            width: 40px;
            height: 40px;
            min-width: 40px; }
            .dashboard-wrapper main .followers-pg .titleSec .btn-group .filter-btn i {
              font-size: 16px; }
      .dashboard-wrapper main .followers-pg .followers-notify-sec {
        margin-bottom: 40px; }
        .dashboard-wrapper main .followers-pg .followers-notify-sec h4 {
          font-size: 15px; }
        .dashboard-wrapper main .followers-pg .followers-notify-sec .followers-wrap .accept_all {
          display: flex;
          justify-content: space-between;
          align-items: center; }
          .dashboard-wrapper main .followers-pg .followers-notify-sec .followers-wrap .accept_all input {
            margin: 0 10px 0px 0px;
            opacity: 0;
            display: none; }
            .dashboard-wrapper main .followers-pg .followers-notify-sec .followers-wrap .accept_all input:checked + label:before {
              content: "";
              background-image: url(../assets/images/checked.svg);
              width: 24px;
              height: 24px;
              background-repeat: no-repeat;
              display: inline-block;
              margin-right: 10px;
              background-size: 20px;
              background-position: center; }
          .dashboard-wrapper main .followers-pg .followers-notify-sec .followers-wrap .accept_all label {
            font-size: 13px;
            color: rgba(0, 0, 0, 0.51);
            font-weight: bold;
            display: flex;
            align-items: center;
            cursor: pointer; }
            .dashboard-wrapper main .followers-pg .followers-notify-sec .followers-wrap .accept_all label:before {
              content: "";
              width: 24px;
              height: 24px;
              border-radius: 5px;
              background-image: url(../assets/images/Checkbox.svg);
              background-repeat: no-repeat;
              display: inline-block;
              margin-right: 10px;
              background-size: contain;
              background-position: center; }
        .dashboard-wrapper main .followers-pg .followers-notify-sec .followers-wrap .folWrap {
          padding: 15px 20px;
          background: #fff;
          margin-top: 12px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          border: 1px solid #F3F3F4;
          box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.04); }
          .dashboard-wrapper main .followers-pg .followers-notify-sec .followers-wrap .folWrap .col-left {
            display: flex;
            align-items: center; }
            .dashboard-wrapper main .followers-pg .followers-notify-sec .followers-wrap .folWrap .col-left > p {
              margin: 0px; }
              .dashboard-wrapper main .followers-pg .followers-notify-sec .followers-wrap .folWrap .col-left > p span {
                display: block;
                width: 100%;
                font-size: 11px;
                font-weight: 600;
                color: rgba(0, 0, 0, 0.39); }
                .dashboard-wrapper main .followers-pg .followers-notify-sec .followers-wrap .folWrap .col-left > p span:first-child {
                  margin-bottom: 5px;
                  font-size: 13px;
                  font-weight: normal;
                  color: #000000; }
          .dashboard-wrapper main .followers-pg .followers-notify-sec .followers-wrap .folWrap .col-right button {
            margin-left: 10px; }
          .dashboard-wrapper main .followers-pg .followers-notify-sec .followers-wrap .folWrap img {
            margin-right: 10px; }
          .dashboard-wrapper main .followers-pg .followers-notify-sec .followers-wrap .folWrap input {
            margin: 0 10px 0px 0px;
            opacity: 0;
            display: none; }
            .dashboard-wrapper main .followers-pg .followers-notify-sec .followers-wrap .folWrap input:checked + label:before {
              content: "";
              background-image: url(../assets/images/checked.svg);
              width: 24px;
              height: 24px;
              background-repeat: no-repeat;
              display: inline-block;
              margin-right: 10px;
              background-size: 20px;
              background-position: center; }
          .dashboard-wrapper main .followers-pg .followers-notify-sec .followers-wrap .folWrap label {
            font-size: 13px;
            color: rgba(0, 0, 0, 0.51);
            font-weight: bold;
            display: flex;
            align-items: center;
            cursor: pointer; }
            .dashboard-wrapper main .followers-pg .followers-notify-sec .followers-wrap .folWrap label:before {
              content: "";
              width: 24px;
              height: 24px;
              border-radius: 5px;
              background-image: url(../assets/images/Checkbox.svg);
              background-repeat: no-repeat;
              display: inline-block;
              margin-right: 10px;
              background-size: contain;
              background-position: center; }
      .dashboard-wrapper main .followers-pg .follower-filter-wrap {
        display: flex; }
        .dashboard-wrapper main .followers-pg .follower-filter-wrap .fcol-left {
          flex: 0 0 255px;
          margin-right: 30px; }
          .dashboard-wrapper main .followers-pg .follower-filter-wrap .fcol-left .filter-wrap {
            background-color: #ffffff;
            padding: 15px;
            height: 100%;
            margin-top: 20px; }
            .dashboard-wrapper main .followers-pg .follower-filter-wrap .fcol-left .filter-wrap h5 {
              font-size: 13px;
              margin-top: 0;
              font-weight: bold; }
            .dashboard-wrapper main .followers-pg .follower-filter-wrap .fcol-left .filter-wrap ul {
              list-style-type: none;
              padding-left: 20px; }
              .dashboard-wrapper main .followers-pg .follower-filter-wrap .fcol-left .filter-wrap ul.cat-label li {
                margin-bottom: 10px;
                display: flex;
                position: relative; }
                .dashboard-wrapper main .followers-pg .follower-filter-wrap .fcol-left .filter-wrap ul.cat-label li input {
                  display: none;
                  cursor: pointer; }
                  .dashboard-wrapper main .followers-pg .follower-filter-wrap .fcol-left .filter-wrap ul.cat-label li input + label {
                    display: flex;
                    align-items: center;
                    color: #9DA6B7;
                    font-size: 13px;
                    cursor: pointer;
                    font-weight: 600; }
                    .dashboard-wrapper main .followers-pg .follower-filter-wrap .fcol-left .filter-wrap ul.cat-label li input + label:before {
                      content: "";
                      width: 24px;
                      height: 24px;
                      border-radius: 5px;
                      background-image: url(../assets/images/Checkbox.svg);
                      background-repeat: no-repeat;
                      display: inline-block;
                      margin-right: 10px;
                      background-size: contain;
                      background-position: center; }
                    .dashboard-wrapper main .followers-pg .follower-filter-wrap .fcol-left .filter-wrap ul.cat-label li input + label:after {
                      content: "";
                      width: 30px;
                      height: 14px;
                      background-image: url(../assets/images/arrow.svg);
                      background-repeat: no-repeat;
                      background-size: 24px;
                      display: inline-block;
                      margin-left: 10px;
                      position: absolute;
                      right: 0;
                      top: 50%;
                      transform: translateY(-50%); }
                  .dashboard-wrapper main .followers-pg .follower-filter-wrap .fcol-left .filter-wrap ul.cat-label li input:checked + label {
                    color: #220063; }
                    .dashboard-wrapper main .followers-pg .follower-filter-wrap .fcol-left .filter-wrap ul.cat-label li input:checked + label:before {
                      content: "";
                      width: 24px;
                      height: 24px;
                      border-radius: 5px;
                      background-image: url(../assets/images/checked.svg);
                      background-repeat: no-repeat;
                      display: inline-block;
                      margin-right: 10px;
                      background-size: 20px;
                      background-position: center; }
              .dashboard-wrapper main .followers-pg .follower-filter-wrap .fcol-left .filter-wrap ul.fl-inp {
                padding: 0px; }
                .dashboard-wrapper main .followers-pg .follower-filter-wrap .fcol-left .filter-wrap ul.fl-inp li {
                  display: flex;
                  justify-content: flex-start;
                  margin-bottom: 20px;
                  align-items: center; }
                  .dashboard-wrapper main .followers-pg .follower-filter-wrap .fcol-left .filter-wrap ul.fl-inp li input {
                    margin: 0px; }
                    .dashboard-wrapper main .followers-pg .follower-filter-wrap .fcol-left .filter-wrap ul.fl-inp li input[type=checkbox] {
                      width: 20px;
                      height: 20px;
                      margin-right: 10px;
                      cursor: pointer; }
                      .dashboard-wrapper main .followers-pg .follower-filter-wrap .fcol-left .filter-wrap ul.fl-inp li input[type=checkbox] + input {
                        opacity: 0.9;
                        pointer-events: none; }
                    .dashboard-wrapper main .followers-pg .follower-filter-wrap .fcol-left .filter-wrap ul.fl-inp li input:checked + input {
                      opacity: 1;
                      pointer-events: all; }
        .dashboard-wrapper main .followers-pg .follower-filter-wrap .fcol-right {
          flex: 1; }
        .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card:nth-child(even) .flex-wrap {
          background-color: #EEF1F7;
          border-top-left-radius: 8px;
          border-top-right-radius: 8px; }
          .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card:nth-child(even) .flex-wrap + p {
            background-color: #E4E9F3; }
          .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card:nth-child(even) .flex-wrap + * {
            display: inline-block;
            padding: 20px 20px 30px 40px; }
        .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card:nth-child(even) .skills {
          background-color: #E4E9F3;
          border-bottom-left-radius: 8px;
          border-bottom-right-radius: 8px; }
          .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card:nth-child(even) .skills > ul {
            margin-top: 0; }
        .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card > label {
          top: 13px; }
        .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .fullscreen {
          background-color: transparent;
          border: none;
          position: absolute;
          bottom: -10px;
          right: 10px; }
        .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .skills ul {
          margin-bottom: 0; }
          .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .skills ul li {
            display: inline-block;
            margin-bottom: 20px;
            width: 100%; }
            .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .skills ul li:last-child {
              margin-bottom: 0; }
            .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .skills ul li > span:first-child {
              min-width: 100px;
              display: inline-block;
              color: #000000;
              font-weight: 600;
              font-size: 12px;
              margin-bottom: 10px; }
            .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .skills ul li > span > span {
              background-color: rgba(208, 200, 221, 0.5);
              padding: 7px 15px;
              border-radius: 25px;
              color: #220063;
              font-weight: bold;
              display: inline-block;
              margin-bottom: 10px; }
        .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .fl-wrap {
          padding: 0px; }
          .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .fl-wrap > * {
            display: inline-block;
            padding: 20px 20px 30px 40px; }
          .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .fl-wrap .flex-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #F3F3F4;
            padding-bottom: 20px;
            padding-top: 20px; }
            .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .fl-wrap .flex-wrap + p {
              margin: 0;
              padding: 20px 20px 20px 40px;
              border-bottom: 1px solid #F3F3F4;
              font-size: 13px;
              line-height: 25px; }
            .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .fl-wrap .flex-wrap .userdetails,
            .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .fl-wrap .flex-wrap p {
              margin: 0; }
              .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .fl-wrap .flex-wrap .userdetails + p.text-right,
              .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .fl-wrap .flex-wrap p + p.text-right {
                font-size: 12px;
                color: #9DA6B7; }
                .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .fl-wrap .flex-wrap .userdetails + p.text-right span.loc-ic,
                .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .fl-wrap .flex-wrap p + p.text-right span.loc-ic {
                  padding-left: 20px;
                  position: relative;
                  padding-right: 30px; }
                  .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .fl-wrap .flex-wrap .userdetails + p.text-right span.loc-ic:before,
                  .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .fl-wrap .flex-wrap p + p.text-right span.loc-ic:before {
                    content: "";
                    display: inline-block;
                    width: 16px;
                    height: 16px;
                    background-image: url(../assets/images/loct.svg);
                    background-repeat: no-repeat;
                    background-size: 14px;
                    background-position: center;
                    position: absolute;
                    left: 0px;
                    top: 50%;
                    transform: translateY(-50%); }
                  .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .fl-wrap .flex-wrap .userdetails + p.text-right span.loc-ic:after,
                  .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .fl-wrap .flex-wrap p + p.text-right span.loc-ic:after {
                    content: "";
                    display: inline-block;
                    width: 20px;
                    height: 20px;
                    background-image: url(../assets/images/eye-close-fill.svg);
                    background-repeat: no-repeat;
                    background-size: 20px;
                    background-position: center;
                    position: absolute;
                    right: 0px;
                    top: 50%;
                    transform: translateY(-50%); }
            .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card .fl-wrap .flex-wrap .user-right h4 + p {
              margin-bottom: 5px; }
        .dashboard-wrapper main .followers-pg .follower-filter-wrap.applicant-filter .followers-container .follower-card > input[type=checkbox]:checked + label + .fl-wrap .userdetails + p.text-right span.loc-ic:after {
          content: "";
          display: inline-block;
          width: 20px;
          height: 20px;
          background-image: url(../assets/images/eye-open.svg);
          background-repeat: no-repeat;
          background-size: 20px;
          background-position: center;
          position: absolute;
          right: 0px;
          top: 50%;
          transform: translateY(-50%); }
      .dashboard-wrapper main .followers-pg .pop-body .input-group > span {
        padding: 0;
        margin-bottom: 0px;
        color: #B7B7B7;
        font-size: 14px; }
      .dashboard-wrapper main .followers-pg .pop-body .input-group > div {
        flex: 1; }
        .dashboard-wrapper main .followers-pg .pop-body .input-group > div .switch {
          margin-right: 8px;
          margin-left: 8px; }
        .dashboard-wrapper main .followers-pg .pop-body .input-group > div input[type=checkbox] {
          width: 18px;
          height: 18px;
          border-radius: 0px;
          margin-right: 8px;
          margin-bottom: 0 !important; }
          .dashboard-wrapper main .followers-pg .pop-body .input-group > div input[type=checkbox] + input {
            pointer-events: none; }
          .dashboard-wrapper main .followers-pg .pop-body .input-group > div input[type=checkbox]:checked + input {
            pointer-events: all;
            opacity: 1; }
        .dashboard-wrapper main .followers-pg .pop-body .input-group > div.input-left {
          display: flex;
          align-items: center; }
        .dashboard-wrapper main .followers-pg .pop-body .input-group > div.input-right {
          display: flex;
          align-items: center;
          flex: none;
          margin-bottom: 10px; }
          .dashboard-wrapper main .followers-pg .pop-body .input-group > div.input-right > span {
            color: #989DA9;
            font-size: 14px; }
        .dashboard-wrapper main .followers-pg .pop-body .input-group > div.input-full {
          display: flex;
          align-items: center;
          margin-bottom: 20px;
          flex: 1; }
          .dashboard-wrapper main .followers-pg .pop-body .input-group > div.input-full input[type=checkbox] {
            width: 18px;
            height: 18px;
            border-radius: 0px;
            margin-right: 8px; }
            .dashboard-wrapper main .followers-pg .pop-body .input-group > div.input-full input[type=checkbox] + label {
              pointer-events: none;
              display: flex;
              flex: 1;
              align-items: center; }
              .dashboard-wrapper main .followers-pg .pop-body .input-group > div.input-full input[type=checkbox] + label .switch {
                position: relative;
                display: inline-block;
                width: calc(45px + 16px);
                height: 22px; }
              .dashboard-wrapper main .followers-pg .pop-body .input-group > div.input-full input[type=checkbox] + label .switch input {
                width: 0;
                height: 0; }
              .dashboard-wrapper main .followers-pg .pop-body .input-group > div.input-full input[type=checkbox] + label > input {
                margin-bottom: 0 !important;
                margin-right: 0px; }
              .dashboard-wrapper main .followers-pg .pop-body .input-group > div.input-full input[type=checkbox] + label > label + span {
                margin-right: 10px; }
            .dashboard-wrapper main .followers-pg .pop-body .input-group > div.input-full input[type=checkbox]:checked + label {
              pointer-events: all;
              opacity: 1; }
      .dashboard-wrapper main .followers-pg p.selectall-wrap,
      .dashboard-wrapper main .followers-pg div.selectall-wrap {
        display: flex;
        align-items: center;
        padding-left: 8px;
        position: relative;
        justify-content: space-between;
        margin-top: 1em;
        margin-bottom: 1em; }
        .dashboard-wrapper main .followers-pg p.selectall-wrap .rgtWrap,
        .dashboard-wrapper main .followers-pg div.selectall-wrap .rgtWrap {
          display: flex; }
        .dashboard-wrapper main .followers-pg p.selectall-wrap #selectAll,
        .dashboard-wrapper main .followers-pg div.selectall-wrap #selectAll {
          margin: 0 10px 0px 0px;
          opacity: 0;
          display: none; }
          .dashboard-wrapper main .followers-pg p.selectall-wrap #selectAll + label,
          .dashboard-wrapper main .followers-pg div.selectall-wrap #selectAll + label {
            font-size: 13px;
            color: rgba(0, 0, 0, 0.51);
            font-weight: bold;
            display: flex;
            align-items: center;
            cursor: pointer; }
            .dashboard-wrapper main .followers-pg p.selectall-wrap #selectAll + label::before,
            .dashboard-wrapper main .followers-pg div.selectall-wrap #selectAll + label::before {
              content: "";
              width: 24px;
              height: 24px;
              border-radius: 5px;
              background-image: url(../assets/images/Checkbox.svg);
              background-repeat: no-repeat;
              display: inline-block;
              margin-right: 10px;
              background-size: contain;
              background-position: center; }
            .dashboard-wrapper main .followers-pg p.selectall-wrap #selectAll + label + .notifywrap,
            .dashboard-wrapper main .followers-pg div.selectall-wrap #selectAll + label + .notifywrap {
              display: none;
              width: 150px;
              height: 40px;
              background: #ffffff;
              box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.25);
              position: absolute;
              top: 30px;
              z-index: 2;
              left: 43px; }
              .dashboard-wrapper main .followers-pg p.selectall-wrap #selectAll + label + .notifywrap button,
              .dashboard-wrapper main .followers-pg div.selectall-wrap #selectAll + label + .notifywrap button {
                background: transparent;
                width: 100%;
                height: 40px;
                border: none; }
          .dashboard-wrapper main .followers-pg p.selectall-wrap #selectAll:checked + label:before,
          .dashboard-wrapper main .followers-pg div.selectall-wrap #selectAll:checked + label:before {
            content: "";
            background-image: url(../assets/images/checked.svg);
            width: 24px;
            height: 24px;
            background-repeat: no-repeat;
            display: inline-block;
            margin-right: 10px;
            background-size: 20px;
            background-position: center; }
          .dashboard-wrapper main .followers-pg p.selectall-wrap #selectAll:checked + label + .notifywrap,
          .dashboard-wrapper main .followers-pg div.selectall-wrap #selectAll:checked + label + .notifywrap {
            display: block; }
        .dashboard-wrapper main .followers-pg p.selectall-wrap .gridlist,
        .dashboard-wrapper main .followers-pg div.selectall-wrap .gridlist {
          display: flex; }
          .dashboard-wrapper main .followers-pg p.selectall-wrap .gridlist input,
          .dashboard-wrapper main .followers-pg div.selectall-wrap .gridlist input {
            display: none; }
            .dashboard-wrapper main .followers-pg p.selectall-wrap .gridlist input + label,
            .dashboard-wrapper main .followers-pg div.selectall-wrap .gridlist input + label {
              background-color: #ffffff;
              width: 35px;
              height: 35px;
              font-size: 14px;
              display: flex;
              align-items: center;
              justify-content: center;
              cursor: pointer;
              margin-right: 8px;
              border-radius: 6px; }
              .dashboard-wrapper main .followers-pg p.selectall-wrap .gridlist input + label i,
              .dashboard-wrapper main .followers-pg div.selectall-wrap .gridlist input + label i {
                color: #220063;
                display: flex; }
                .dashboard-wrapper main .followers-pg p.selectall-wrap .gridlist input + label i:before,
                .dashboard-wrapper main .followers-pg div.selectall-wrap .gridlist input + label i:before {
                  content: ""; }
              .dashboard-wrapper main .followers-pg p.selectall-wrap .gridlist input + label[for="list"] i:before,
              .dashboard-wrapper main .followers-pg div.selectall-wrap .gridlist input + label[for="list"] i:before {
                content: "";
                background: url(../assets/images/list-default.svg) no-repeat;
                background-size: 20px;
                background-position: center;
                width: 20px;
                height: 20px;
                display: inline-block; }
              .dashboard-wrapper main .followers-pg p.selectall-wrap .gridlist input + label[for="grid"] i:before,
              .dashboard-wrapper main .followers-pg div.selectall-wrap .gridlist input + label[for="grid"] i:before {
                content: "";
                background: url(../assets/images/grid-default.svg) no-repeat;
                background-size: 20px;
                background-position: center;
                width: 20px;
                height: 20px;
                display: inline-block; }
            .dashboard-wrapper main .followers-pg p.selectall-wrap .gridlist input:checked + label,
            .dashboard-wrapper main .followers-pg div.selectall-wrap .gridlist input:checked + label {
              background-color: #220063; }
              .dashboard-wrapper main .followers-pg p.selectall-wrap .gridlist input:checked + label i,
              .dashboard-wrapper main .followers-pg div.selectall-wrap .gridlist input:checked + label i {
                color: #ffffff; }
                .dashboard-wrapper main .followers-pg p.selectall-wrap .gridlist input:checked + label i:before,
                .dashboard-wrapper main .followers-pg div.selectall-wrap .gridlist input:checked + label i:before {
                  content: ""; }
              .dashboard-wrapper main .followers-pg p.selectall-wrap .gridlist input:checked + label[for="grid"] i:before,
              .dashboard-wrapper main .followers-pg div.selectall-wrap .gridlist input:checked + label[for="grid"] i:before {
                content: "";
                background: url(../assets/images/grid-active.svg) no-repeat;
                background-size: 20px;
                background-position: center;
                width: 20px;
                height: 20px;
                display: inline-block; }
              .dashboard-wrapper main .followers-pg p.selectall-wrap .gridlist input:checked + label[for="list"] i:before,
              .dashboard-wrapper main .followers-pg div.selectall-wrap .gridlist input:checked + label[for="list"] i:before {
                content: "";
                background: url(../assets/images/list-active.svg) no-repeat;
                background-size: 20px;
                background-position: center;
                width: 20px;
                height: 20px;
                display: inline-block; }
      .dashboard-wrapper main .followers-pg > span {
        padding-left: 20px;
        position: relative; }
        .dashboard-wrapper main .followers-pg > span.pay-ic:before {
          content: "";
          display: inline-block;
          width: 16px;
          height: 16px;
          background-color: #F3F3F4;
          background-image: url(../assets/images/pay-icon.svg);
          background-repeat: no-repeat;
          background-size: 12px;
          background-position: center;
          position: absolute;
          left: 0px;
          top: 50%;
          transform: translateY(-50%); }
        .dashboard-wrapper main .followers-pg > span.loc-ic:before {
          content: "";
          display: inline-block;
          width: 16px;
          height: 16px;
          background-image: url(../assets/images/loct.svg);
          background-repeat: no-repeat;
          background-size: 14px;
          background-position: center;
          position: absolute;
          left: 0px;
          top: 50%;
          transform: translateY(-50%); }
        .dashboard-wrapper main .followers-pg > span.exp-ic:before {
          content: "";
          display: inline-block;
          width: 16px;
          height: 16px;
          background-color: #F3F3F4;
          background-image: url(../assets/images/exp-icon.svg);
          background-repeat: no-repeat;
          background-size: 12px;
          background-position: center;
          position: absolute;
          left: 0px;
          top: 50%;
          transform: translateY(-50%); }
      .dashboard-wrapper main .followers-pg .followers-container {
        display: grid;
        gap: 10px;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        grid-template-columns: auto auto auto auto;
        grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); }
        .dashboard-wrapper main .followers-pg .followers-container.selectedAll .follower-card .notifywrap {
          display: none !important; }
        .dashboard-wrapper main .followers-pg .followers-container.listView {
          grid-template-columns: 1fr; }
        .dashboard-wrapper main .followers-pg .followers-container .follower-card {
          position: relative; }
          .dashboard-wrapper main .followers-pg .followers-container .follower-card > input[type=checkbox] {
            display: none; }
            .dashboard-wrapper main .followers-pg .followers-container .follower-card > input[type=checkbox] + label {
              position: absolute;
              top: 8px;
              left: 8px;
              cursor: pointer;
              background-size: contain;
              background-image: url(../assets/images/Checkbox.svg);
              background-position: center;
              display: inline-block;
              width: 24px;
              height: 24px; }
              .dashboard-wrapper main .followers-pg .followers-container .follower-card > input[type=checkbox] + label + .notifywrap {
                display: none;
                width: 150px;
                height: 40px;
                background: #ffffff;
                box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.25);
                position: absolute;
                top: 30px;
                z-index: 2;
                left: 30px; }
                .dashboard-wrapper main .followers-pg .followers-container .follower-card > input[type=checkbox] + label + .notifywrap button {
                  background: transparent;
                  width: 100%;
                  height: 40px;
                  border: none; }
          .dashboard-wrapper main .followers-pg .followers-container .follower-card > input:checked + label {
            background-image: url(../assets/images/checked.svg);
            background-size: contain;
            width: 20px;
            height: 20px;
            background-position: center;
            left: 10px;
            top: 10px; }
            .dashboard-wrapper main .followers-pg .followers-container .follower-card > input:checked + label + .notifywrap {
              display: block; }
            .dashboard-wrapper main .followers-pg .followers-container .follower-card > input:checked + label + .fl-wrap {
              border-color: #220063; }
          .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap {
            border: 1px solid #F3F3F4;
            border-radius: 8px;
            padding: 15px 20px;
            background-color: #ffffff;
            box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.04); }
            .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap > p {
              color: #9DA6B7;
              font-size: 12px;
              margin-bottom: 30px; }
              .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap > p.text-right {
                margin-bottom: 20px;
                margin-top: 10px; }
            .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap .userdetails {
              display: flex;
              gap: 10px;
              align-items: flex-start;
              margin-bottom: 20px; }
              .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap .userdetails img {
                vertical-align: top; }
              .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap .userdetails .user-right h4,
              .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap .userdetails .user-right p {
                margin: 0 0px 5px; }
              .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap .userdetails .user-right h4 {
                color: #220063;
                font-weight: bold;
                font-size: 14px; }
                .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap .userdetails .user-right h4 a {
                  color: #220063;
                  text-decoration: none; }
              .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap .userdetails .user-right p {
                font-size: 12px; }
            .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap .skills ul li {
              flex: 0 0 48%; }
            .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap ul {
              display: flex;
              flex-wrap: wrap;
              padding: 0px;
              list-style-type: none;
              margin-bottom: 10px; }
              .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap ul li {
                display: flex;
                margin-right: 10px; }
                .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap ul li span {
                  font-size: 11px;
                  font-weight: 100; }
                  .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap ul li span.sk-badge {
                    padding-left: 0px;
                    display: flex;
                    height: 20px;
                    padding: 0px 12px;
                    border-radius: 25px;
                    justify-content: center;
                    align-items: center;
                    color: #ffffff;
                    font-weight: 600; }
                .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap ul li:first-child span.sk-badge {
                  background-color: rgba(208, 200, 221, 0.5);
                  color: #220063; }
                .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap ul li:nth-child(2) span.sk-badge {
                  background-color: #d6e4f8;
                  color: #6C99C1; }
                .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap ul li:nth-child(3) span.sk-badge {
                  background-color: #d3ece6;
                  color: #73C2A1; }
            .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap .fill-label {
              position: absolute;
              right: 10px;
              bottom: 20px; }
              .dashboard-wrapper main .followers-pg .followers-container .follower-card .fl-wrap .fill-label img {
                width: 30px;
                height: 14px;
                object-fit: contain; }
    .dashboard-wrapper main .white-wrap {
      display: flex;
      margin-top: 20px;
      background-color: #ffffff; }
      .dashboard-wrapper main .white-wrap > div {
        flex: 1; }
        .dashboard-wrapper main .white-wrap > div.user-left {
          flex: 0 0 450px;
          padding: 15px;
          background-color: #ffffff;
          border-right: 1px solid #F3F3F4; }
          .dashboard-wrapper main .white-wrap > div.user-left .pdetails {
            display: flex;
            gap: 10px; }
            .dashboard-wrapper main .white-wrap > div.user-left .pdetails h5 {
              margin-top: 0;
              margin-bottom: 10px;
              font-size: 14px; }
            .dashboard-wrapper main .white-wrap > div.user-left .pdetails ul {
              padding: 0px;
              margin: 0 0px 20px;
              list-style-type: none; }
              .dashboard-wrapper main .white-wrap > div.user-left .pdetails ul li {
                margin-bottom: 8px; }
                .dashboard-wrapper main .white-wrap > div.user-left .pdetails ul li span {
                  color: #9DA6B7;
                  font-size: 12px; }
            .dashboard-wrapper main .white-wrap > div.user-left .pdetails a.btn-primary {
              font-size: 13px; }
          .dashboard-wrapper main .white-wrap > div.user-left h5 {
            margin-bottom: 10px; }
          .dashboard-wrapper main .white-wrap > div.user-left .skills ul li {
            display: inline-block;
            margin-bottom: 20px; }
            .dashboard-wrapper main .white-wrap > div.user-left .skills ul li > span:first-child {
              min-width: 100px;
              display: inline-block; }
            .dashboard-wrapper main .white-wrap > div.user-left .skills ul li > span > span {
              background-color: rgba(208, 200, 221, 0.5);
              padding: 7px 15px;
              border-radius: 25px;
              color: #220063;
              font-weight: bold; }
          .dashboard-wrapper main .white-wrap > div.user-left .contact ul li > span:first-child,
          .dashboard-wrapper main .white-wrap > div.user-left .lang ul li > span:first-child {
            min-width: 50px;
            display: inline-block; }
          .dashboard-wrapper main .white-wrap > div.user-left ul {
            list-style-type: none;
            padding: 0px; }
            .dashboard-wrapper main .white-wrap > div.user-left ul li {
              margin-bottom: 10px; }
              .dashboard-wrapper main .white-wrap > div.user-left ul li > span {
                font-size: 12px; }
                .dashboard-wrapper main .white-wrap > div.user-left ul li > span:first-child {
                  color: #9DA6B7;
                  margin-right: 20px;
                  font-weight: bold; }
        .dashboard-wrapper main .white-wrap > div.user-right {
          background-color: rgba(251, 250, 252, 0.4);
          border: 1px solid #F3F3F4;
          border-left: 0px;
          padding: 10px 25px; }
          .dashboard-wrapper main .white-wrap > div.user-right p.text-right {
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: flex-end; }
            .dashboard-wrapper main .white-wrap > div.user-right p.text-right img {
              margin-left: 10px; }
          .dashboard-wrapper main .white-wrap > div.user-right h5 {
            font-size: 14px;
            color: #000000;
            font-weight: bold; }
          .dashboard-wrapper main .white-wrap > div.user-right .exp-card {
            padding: 10px 20px;
            border-radius: 5px;
            background-color: #ffffff;
            border: 1px solid #F3F3F4;
            margin-bottom: 10px; }
            .dashboard-wrapper main .white-wrap > div.user-right .exp-card span {
              display: block;
              color: #220063;
              font-size: 12px;
              font-weight: bold;
              margin-bottom: 10px; }
              .dashboard-wrapper main .white-wrap > div.user-right .exp-card span:first-child {
                color: #000000;
                font-size: 13px; }
            .dashboard-wrapper main .white-wrap > div.user-right .exp-card p {
              font-size: 14px; }
  .dashboard-wrapper aside {
    grid-area: sider;
    background-color: rgba(34, 0, 99, 0.02);
    margin-right: 0px;
    border-radius: 5px;
    border: 1px solid #F3F3F4;
    padding: 15px 10px;
    flex-direction: column;
    margin-top: 0px;
    margin-bottom: 40px; }
    .dashboard-wrapper aside h2 {
      color: #000000;
      font-size: 18px;
      margin: 0; }
    .dashboard-wrapper aside .closedJobs .jobcard-closed {
      background-color: #ffffff;
      border-radius: 5px;
      padding: 10px;
      box-sizing: border-box;
      margin-bottom: 15px;
      border: 1px solid #F3F3F4; }
      .dashboard-wrapper aside .closedJobs .jobcard-closed:first-child {
        margin-top: 25px; }
      .dashboard-wrapper aside .closedJobs .jobcard-closed p,
      .dashboard-wrapper aside .closedJobs .jobcard-closed h3 {
        margin: 0px; }
      .dashboard-wrapper aside .closedJobs .jobcard-closed p {
        font-size: 11px;
        margin-bottom: 8px; }
        .dashboard-wrapper aside .closedJobs .jobcard-closed p.text-right {
          font-size: 10px;
          color: #9DA6B7; }
          .dashboard-wrapper aside .closedJobs .jobcard-closed p.text-right > span {
            background-color: #EB5757;
            text-align: center;
            padding: 5.5px 10px;
            color: #ffffff;
            font-size: 9px;
            position: relative;
            top: -6px;
            right: -10px;
            border-top-right-radius: 5px; }
      .dashboard-wrapper aside .closedJobs .jobcard-closed h3 {
        font-size: 14px;
        margin: 5px 0px 10px;
        color: #220063; }
      .dashboard-wrapper aside .closedJobs .jobcard-closed .interest_box {
        background-color: rgba(157, 166, 183, 0.12);
        color: #000000;
        font-size: 10px;
        padding: 3px 5px;
        width: fit-content; }
        .dashboard-wrapper aside .closedJobs .jobcard-closed .interest_box span {
          font-size: 16px;
          color: #000000;
          display: block;
          font-weight: bold; }
    .dashboard-wrapper aside .closedJobs .follower-card {
      position: relative;
      margin-top: 20px; }
      .dashboard-wrapper aside .closedJobs .follower-card p.text-right {
        margin: 0 !important; }
        .dashboard-wrapper aside .closedJobs .follower-card p.text-right img {
          width: 14px;
          height: 14px;
          object-fit: contain; }
      .dashboard-wrapper aside .closedJobs .follower-card > input[type=checkbox] {
        display: none; }
        .dashboard-wrapper aside .closedJobs .follower-card > input[type=checkbox] + label {
          position: absolute;
          top: 8px;
          left: 8px;
          cursor: pointer;
          background-size: contain;
          background-image: url(../assets/images/Checkbox.svg);
          background-position: center;
          display: inline-block;
          width: 24px;
          height: 24px; }
      .dashboard-wrapper aside .closedJobs .follower-card > input:checked + label {
        background-image: url(../assets/images/checked.svg);
        background-size: contain;
        width: 20px;
        height: 20px;
        background-position: center;
        left: 10px;
        top: 10px; }
        .dashboard-wrapper aside .closedJobs .follower-card > input:checked + label + .fl-wrap {
          border-color: #220063; }
      .dashboard-wrapper aside .closedJobs .follower-card .fl-wrap {
        border: 1px solid #F3F3F4;
        border-radius: 8px;
        padding: 15px 20px;
        background-color: #ffffff; }
        .dashboard-wrapper aside .closedJobs .follower-card .fl-wrap > p {
          color: #9DA6B7;
          font-size: 12px;
          margin-bottom: 10px; }
          .dashboard-wrapper aside .closedJobs .follower-card .fl-wrap > p.text-right {
            margin-bottom: 20px;
            margin-top: 10px; }
        .dashboard-wrapper aside .closedJobs .follower-card .fl-wrap .userdetails {
          display: flex;
          gap: 10px;
          align-items: flex-start;
          margin-bottom: 20px; }
          .dashboard-wrapper aside .closedJobs .follower-card .fl-wrap .userdetails img {
            vertical-align: top; }
          .dashboard-wrapper aside .closedJobs .follower-card .fl-wrap .userdetails .user-right h4,
          .dashboard-wrapper aside .closedJobs .follower-card .fl-wrap .userdetails .user-right p {
            margin: 0 0px 5px; }
          .dashboard-wrapper aside .closedJobs .follower-card .fl-wrap .userdetails .user-right h4 {
            color: #220063;
            font-weight: bold;
            font-size: 14px; }
            .dashboard-wrapper aside .closedJobs .follower-card .fl-wrap .userdetails .user-right h4 a {
              color: #220063;
              text-decoration: none; }
          .dashboard-wrapper aside .closedJobs .follower-card .fl-wrap .userdetails .user-right p {
            font-size: 12px; }
        .dashboard-wrapper aside .closedJobs .follower-card .fl-wrap ul {
          display: inline-block;
          padding: 0px;
          list-style-type: none;
          margin-bottom: 10px; }
          .dashboard-wrapper aside .closedJobs .follower-card .fl-wrap ul li {
            float: left;
            margin-right: 10px; }
            .dashboard-wrapper aside .closedJobs .follower-card .fl-wrap ul li span {
              font-size: 11px;
              font-weight: 100; }
              .dashboard-wrapper aside .closedJobs .follower-card .fl-wrap ul li span.sk-badge {
                padding-left: 0px;
                display: flex;
                height: 20px;
                padding: 0px 12px;
                border-radius: 25px;
                justify-content: center;
                align-items: center;
                color: #ffffff;
                font-weight: 600; }
            .dashboard-wrapper aside .closedJobs .follower-card .fl-wrap ul li:first-child span.sk-badge {
              background-color: rgba(208, 200, 221, 0.5);
              color: #220063; }
            .dashboard-wrapper aside .closedJobs .follower-card .fl-wrap ul li:nth-child(2) span.sk-badge {
              background-color: #d6e4f8;
              color: #6C99C1; }
            .dashboard-wrapper aside .closedJobs .follower-card .fl-wrap ul li:nth-child(3) span.sk-badge {
              background-color: #d3ece6;
              color: #73C2A1; }

.select2-container--default .select2-selection--single {
  min-height: 40px;
  height: auto;
  line-height: 40px;
  border: 1px solid #D9D9D9; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 100%;
    line-height: inherit;
    font-size: 14px; }
    .select2-container--default .select2-selection--single .select2-selection__rendered[title="--Current Level--"], .select2-container--default .select2-selection--single .select2-selection__rendered[title="--Department--"], .select2-container--default .select2-selection--single .select2-selection__rendered[title="--Current Job Title--"], .select2-container--default .select2-selection--single .select2-selection__rendered[title="--Core Domain--"], .select2-container--default .select2-selection--single .select2-selection__rendered[title="--Core Area of Hiring--"], .select2-container--default .select2-selection--single .select2-selection__rendered[title="Reason"], .select2-container--default .select2-selection--single .select2-selection__rendered[title="Job title"], .select2-container--default .select2-selection--single .select2-selection__rendered[title="Country"], .select2-container--default .select2-selection--single .select2-selection__rendered[title="City"], .select2-container--default .select2-selection--single .select2-selection__rendered[title="Location Preference"], .select2-container--default .select2-selection--single .select2-selection__rendered[title="Education Preference"], .select2-container--default .select2-selection--single .select2-selection__rendered[title="Notice Period Preferences"], .select2-container--default .select2-selection--single .select2-selection__rendered[title="Salary Range"], .select2-container--default .select2-selection--single .select2-selection__rendered[title="Employment Type"], .select2-container--default .select2-selection--single .select2-selection__rendered[title="Job Duration Year"], .select2-container--default .select2-selection--single .select2-selection__rendered[title="Job Duration Month"], .select2-container--default .select2-selection--single .select2-selection__rendered[title="Min Year"], .select2-container--default .select2-selection--single .select2-selection__rendered[title="Max Year"], .select2-container--default .select2-selection--single .select2-selection__rendered[title="Gender Preferences"], .select2-container--default .select2-selection--single .select2-selection__rendered[title="Job Title"] {
      color: #989DA9 !important;
      font-weight: normal; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #000000 transparent transparent transparent; }
.select2-container--default .select2-selection--multiple {
  min-height: 40px;
  display: flex;
  align-items: center;
  border: 1px solid #D9D9D9; }
  .select2-container--default .select2-selection--multiple ul li.select2-selection__choice {
    margin: 0px 5px 5px 0px;
    background: #E4E9F3;
    display: flex;
    flex-direction: row-reverse;
    border-radius: 25px;
    font-size: 13px;
    padding: 3px 8px;
    border: none; }
    .select2-container--default .select2-selection--multiple ul li.select2-selection__choice.select2-search {
      padding: 0px; }
    .select2-container--default .select2-selection--multiple ul li.select2-selection__choice .select2-selection__choice__remove {
      background: #000000;
      color: #ffffff;
      margin-left: 3px;
      margin-right: 0px;
      width: 12px;
      height: 12px;
      text-align: center;
      line-height: 11px;
      border-radius: 50%;
      font-size: 10px;
      position: relative;
      top: 3px;
      right: -2px; }
    .select2-container--default .select2-selection--multiple ul li.select2-selection__choice input {
      padding: 0;
      margin: 0;
      width: 0px !important;
      height: 0px !important; }

.select2-container--default .select2-selection--single {
  min-height: 40px;
  height: auto;
  line-height: 40px;
  border: 1px solid #D9D9D9; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 100%;
    line-height: inherit; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #000000 transparent transparent transparent; }
.select2-container--default .select2-selection--multiple {
  min-height: 40px;
  display: flex;
  align-items: center;
  border: 1px solid #D9D9D9; }
  .select2-container--default .select2-selection--multiple ul li.select2-selection__choice {
    margin: 5px 5px 5px 0px;
    background: #E4E9F3;
    display: flex;
    flex-direction: row-reverse;
    border-radius: 25px;
    font-size: 13px;
    padding: 3px 8px;
    border: none;
    position: relative;
    z-index: 4; }
    .select2-container--default .select2-selection--multiple ul li.select2-selection__choice.select2-search {
      padding: 0px; }
    .select2-container--default .select2-selection--multiple ul li.select2-selection__choice .select2-selection__choice__remove {
      background: #000000;
      color: #ffffff;
      margin-left: 3px;
      margin-right: 0px;
      width: 12px;
      height: 12px;
      text-align: center;
      line-height: 11px;
      border-radius: 50%;
      font-size: 10px;
      position: relative;
      top: 3px;
      right: -2px; }

#cancelBtn img {
  width: 10px;
  position: relative;
  left: -3px;
  top: 1px; }

.trumbowyg-box,
.trumbowyg-editor {
  border-radius: 4px;
  background: #fff; }

.trumbowyg-button-pane {
  background: #fff;
  border-radius: 4px; }

.trumbowyg-box svg,
.trumbowyg-modal svg {
  color: #222;
  fill: #222; }

.followers-pg .cvWrapper {
  margin-bottom: 30px;
  padding-bottom: 20px;
  background-color: #ffffff;
  border-radius: 8px; }
  .followers-pg .cvWrapper .titleSec {
    display: inline-block;
    width: calc(100% - 120px);
    padding: 10px 60px; }
  .followers-pg .cvWrapper .cv-formWrapper {
    display: inline-block;
    width: calc(100% - 120px);
    padding: 10px 60px; }
    .followers-pg .cvWrapper .cv-formWrapper .input-group {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      margin-bottom: 10px; }
      .followers-pg .cvWrapper .cv-formWrapper .input-group:first-child > * {
        flex: 1; }
      .followers-pg .cvWrapper .cv-formWrapper .input-group:first-child > span {
        flex: 0; }
      .followers-pg .cvWrapper .cv-formWrapper .input-group input,
      .followers-pg .cvWrapper .cv-formWrapper .input-group select {
        margin-bottom: 0; }
        .followers-pg .cvWrapper .cv-formWrapper .input-group input[type=checkbox],
        .followers-pg .cvWrapper .cv-formWrapper .input-group select[type=checkbox] {
          width: 18px;
          height: 18px;
          border-radius: 0px;
          margin-right: 8px;
          margin-top: 0; }
      .followers-pg .cvWrapper .cv-formWrapper .input-group label {
        white-space: nowrap; }
        .followers-pg .cvWrapper .cv-formWrapper .input-group label[for="fromyr"] + select, .followers-pg .cvWrapper .cv-formWrapper .input-group label[for="toyr"] + select {
          min-width: 150px; }
      .followers-pg .cvWrapper .cv-formWrapper .input-group > span:not(.select2), .followers-pg .cvWrapper .cv-formWrapper .input-group > label {
        margin: 0px 15px; }
        .followers-pg .cvWrapper .cv-formWrapper .input-group > span:not(.select2).slider, .followers-pg .cvWrapper .cv-formWrapper .input-group > label.slider {
          margin: 0; }
      .followers-pg .cvWrapper .cv-formWrapper .input-group > .input-full {
        display: flex;
        align-items: center;
        margin-bottom: 10px; }
        .followers-pg .cvWrapper .cv-formWrapper .input-group > .input-full:first-child {
          margin-right: 0px; }
        .followers-pg .cvWrapper .cv-formWrapper .input-group > .input-full > div.input-right {
          margin-right: 10px;
          display: flex;
          align-items: center; }
          .followers-pg .cvWrapper .cv-formWrapper .input-group > .input-full > div.input-right .switchWrap > span, .followers-pg .cvWrapper .cv-formWrapper .input-group > .input-full > div.input-right .switchWrap > label {
            margin: 0px 5px; }
      .followers-pg .cvWrapper .cv-formWrapper .input-group.d-flex-jc-sp > .input-full {
        flex-basis: 48%; }
        .followers-pg .cvWrapper .cv-formWrapper .input-group.d-flex-jc-sp > .input-full:last-child {
          margin-left: 50px; }
        .followers-pg .cvWrapper .cv-formWrapper .input-group.d-flex-jc-sp > .input-full:first-child {
          margin-left: 0px !important; }
        .followers-pg .cvWrapper .cv-formWrapper .input-group.d-flex-jc-sp > .input-full .input-left {
          flex: 1; }
  .followers-pg .cvWrapper .button-group {
    display: flex;
    justify-content: center;
    gap: 15px; }

#searchResult.show {
  display: flex !important; }

.input-full {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex: 1; }
  .input-full input[type=checkbox] {
    width: 18px;
    height: 18px;
    border-radius: 0px;
    margin-right: 8px; }
    .input-full input[type=checkbox] + label {
      pointer-events: none;
      display: flex;
      flex: 1;
      align-items: center; }
      .input-full input[type=checkbox] + label .switch {
        position: relative;
        display: inline-block;
        width: calc(45px + 16px);
        height: 22px;
        margin-left: 8px;
        margin-right: 8px; }
      .input-full input[type=checkbox] + label .switch input {
        width: 0;
        height: 0; }
      .input-full input[type=checkbox] + label > input {
        margin-bottom: 0 !important;
        margin-right: 0px; }
      .input-full input[type=checkbox] + label > label + span {
        margin-right: 10px; }
    .input-full input[type=checkbox]:checked + label {
      pointer-events: all;
      opacity: 1; }
  .input-full.selfReport-wrap {
    display: none; }
    .input-full.selfReport-wrap.open {
      display: flex; }

.input-half {
  display: flex;
  flex: 1;
  align-items: center;
  margin-bottom: 20px;
  flex: 0 0 49%; }
  .input-half > label {
    display: flex; }
  .input-half input[type=checkbox] {
    width: 18px;
    height: 18px;
    border-radius: 0px;
    margin-right: 8px; }
    .input-half input[type=checkbox] + label {
      pointer-events: none;
      display: flex;
      flex: 1;
      align-items: center; }
      .input-half input[type=checkbox] + label .switch {
        position: relative;
        display: inline-block;
        width: calc(45px + 16px);
        height: 22px;
        margin-left: 8px;
        margin-right: 8px; }
      .input-half input[type=checkbox] + label .switch input {
        width: 0;
        height: 0; }
      .input-half input[type=checkbox] + label > input {
        margin-bottom: 0 !important;
        margin-right: 0px; }
      .input-half input[type=checkbox] + label > label + span {
        margin-right: 10px; }
    .input-half input[type=checkbox]:checked + label {
      pointer-events: all;
      opacity: 1; }

input[type=checkbox] {
  width: 18px;
  height: 18px;
  border-radius: 0px;
  margin-right: 8px;
  margin-bottom: 0 !important; }
  input[type=checkbox] + input {
    pointer-events: none; }
  input[type=checkbox]:checked + input {
    pointer-events: all;
    opacity: 1; }

.followers-pg .white-wrap {
  flex-direction: column;
  border-radius: 3px; }
  .followers-pg .white-wrap .cover-post {
    height: 311px;
    width: 100%;
    flex: 0 0 100%;
    object-fit: contain;
    overflow: hidden;
    position: relative; }
    .followers-pg .white-wrap .cover-post > img {
      width: 100%; }
    .followers-pg .white-wrap .cover-post > label {
      position: absolute;
      width: auto;
      height: auto;
      object-fit: contain;
      bottom: 12px;
      right: 12px;
      z-index: 9;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 5px;
      padding: 10px 6px; }
      .followers-pg .white-wrap .cover-post > label input {
        display: none; }
      .followers-pg .white-wrap .cover-post > label label {
        cursor: pointer;
        font-size: 12px;
        font-weight: bold;
        color: #220063; }
  .followers-pg .white-wrap .user-details {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .followers-pg .white-wrap .user-details .user-left {
      display: flex; }
      .followers-pg .white-wrap .user-details .user-left .editprofile {
        position: relative; }
        .followers-pg .white-wrap .user-details .user-left .editprofile #editUserav {
          display: none; }
          .followers-pg .white-wrap .user-details .user-left .editprofile #editUserav + label {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: -60px;
            background: #fff;
            right: 0px; }
            .followers-pg .white-wrap .user-details .user-left .editprofile #editUserav + label img {
              width: 12px;
              height: 12px;
              object-fit: contain;
              cursor: pointer; }
      .followers-pg .white-wrap .user-details .user-left figure {
        width: 145px;
        height: 145px;
        display: inline-block;
        margin: -50px 10px 20px 30px;
        position: relative; }
        .followers-pg .white-wrap .user-details .user-left figure img {
          width: 100%; }
      .followers-pg .white-wrap .user-details .user-left .userDetails h5 {
        font-size: 17px;
        color: #220063;
        margin-bottom: 5px;
        margin-top: 10px; }
      .followers-pg .white-wrap .user-details .user-left .userDetails ul {
        list-style-type: none;
        padding: 0;
        margin: 0; }
        .followers-pg .white-wrap .user-details .user-left .userDetails ul li {
          font-size: 12px;
          color: #9DA6B7; }
    .followers-pg .white-wrap .user-details .user-right .btn-primary {
      margin: 0px 8px; }
      .followers-pg .white-wrap .user-details .user-right .btn-primary:last-child {
        margin-right: 30px; }
  .followers-pg .white-wrap .skills ul li {
    display: inline-block;
    margin-bottom: 20px; }
    .followers-pg .white-wrap .skills ul li > span:first-child {
      min-width: 100px;
      display: inline-block; }
    .followers-pg .white-wrap .skills ul li > span > span {
      background-color: rgba(208, 200, 221, 0.5);
      padding: 7px 15px;
      border-radius: 25px;
      color: #220063;
      font-weight: bold; }
  .followers-pg .white-wrap .cardwrap {
    border: 1px solid rgba(0, 0, 0, 0.11);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04); }
    .followers-pg .white-wrap .cardwrap .card-header {
      padding: 16px 30px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.11); }
      .followers-pg .white-wrap .cardwrap .card-header h5 {
        margin: 0;
        text-transform: uppercase;
        font-size: 16px;
        color: #220063; }
    .followers-pg .white-wrap .cardwrap .card-body {
      padding: 16px 30px 16px; }
      .followers-pg .white-wrap .cardwrap .card-body h6 {
        font-size: 14px;
        font-weight: bold;
        margin: 0; }
      .followers-pg .white-wrap .cardwrap .card-body p {
        font-size: 13px; }
      .followers-pg .white-wrap .cardwrap .card-body ul {
        padding: 20px 0;
        margin: 0;
        border-top: 1px solid rgba(150, 165, 196, 0.11); }
        .followers-pg .white-wrap .cardwrap .card-body ul:first-child {
          border: none; }
        .followers-pg .white-wrap .cardwrap .card-body ul:last-child {
          border-bottom: 1px solid rgba(150, 165, 196, 0.11); }
        .followers-pg .white-wrap .cardwrap .card-body ul.per-detail {
          list-style-type: none;
          display: flex;
          flex-wrap: wrap; }
          .followers-pg .white-wrap .cardwrap .card-body ul.per-detail > li {
            flex: 1;
            display: flex;
            justify-content: space-between;
            margin-right: 40px; }
            .followers-pg .white-wrap .cardwrap .card-body ul.per-detail > li span {
              font-size: 12px;
              flex-basis: 50%;
              text-align: left; }
              .followers-pg .white-wrap .cardwrap .card-body ul.per-detail > li span:first-child {
                font-weight: bold; }
      .followers-pg .white-wrap .cardwrap .card-body .skills ul {
        display: flex; }
        .followers-pg .white-wrap .cardwrap .card-body .skills ul li {
          margin: 0;
          flex-basis: 47%;
          text-align: left;
          display: flex;
          margin-right: 40px; }
          .followers-pg .white-wrap .cardwrap .card-body .skills ul li span {
            font-size: 12px;
            font-weight: bold;
            flex-basis: 50%;
            text-align: left; }
            .followers-pg .white-wrap .cardwrap .card-body .skills ul li span.badge {
              font-size: 11px; }
      .followers-pg .white-wrap .cardwrap .card-body .edu-card {
        display: flex;
        padding: 20px 0px;
        border-top: 1px solid rgba(150, 165, 196, 0.11); }
        .followers-pg .white-wrap .cardwrap .card-body .edu-card:first-child {
          border: none; }
        .followers-pg .white-wrap .cardwrap .card-body .edu-card > span {
          background: #D0C8DD;
          border-radius: 5px;
          display: flex;
          width: 65px;
          height: 65px;
          align-items: center;
          justify-content: center;
          text-transform: uppercase;
          font-size: 13px;
          color: #220063;
          font-weight: bold; }
        .followers-pg .white-wrap .cardwrap .card-body .edu-card .edu-details {
          margin-left: 20px; }
          .followers-pg .white-wrap .cardwrap .card-body .edu-card .edu-details > * {
            display: block;
            font-size: 13px; }
          .followers-pg .white-wrap .cardwrap .card-body .edu-card .edu-details h6 {
            color: #220063;
            margin-bottom: 8px; }
          .followers-pg .white-wrap .cardwrap .card-body .edu-card .edu-details span {
            margin-bottom: 8px; }
            .followers-pg .white-wrap .cardwrap .card-body .edu-card .edu-details span b {
              font-size: inherit; }
      .followers-pg .white-wrap .cardwrap .card-body .exp-card {
        display: flex;
        padding: 20px 0px;
        border-top: 1px solid rgba(150, 165, 196, 0.11);
        flex-direction: column; }
        .followers-pg .white-wrap .cardwrap .card-body .exp-card:first-child {
          border: none; }
        .followers-pg .white-wrap .cardwrap .card-body .exp-card .exp-details h6 {
          font-size: 13px;
          margin-bottom: 8px; }
        .followers-pg .white-wrap .cardwrap .card-body .exp-card .exp-details span {
          display: block;
          font-size: 12px;
          color: #220063;
          margin-bottom: 8px;
          font-weight: bold; }
        .followers-pg .white-wrap .cardwrap .card-body .exp-card .exp-details p {
          font-size: 14px; }

.userProfile .tabs {
  margin-top: 10px; }
  .userProfile .tabs ul {
    border-bottom: 1px solid #F3F3F4;
    display: inline-block;
    width: 100%;
    padding: 0px;
    margin: 20px 0;
    list-style-type: none; }
    .userProfile .tabs ul li {
      float: left;
      margin-right: 10px; }
      .userProfile .tabs ul li.active a {
        color: #220063;
        border-bottom: 3px solid #220063;
        font-weight: bold; }
      .userProfile .tabs ul li a {
        color: #555;
        text-decoration: none;
        border-bottom: 3px solid transparent;
        position: relative;
        bottom: 10px;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 14px;
        font-weight: 400;
        padding-bottom: 8px; }
  .userProfile .tabs .jobcards-list {
    margin-bottom: 10px !important; }
  .userProfile .tabs .upwrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center; }
    .userProfile .tabs .upwrapper .upleft {
      margin-right: 40px; }
    .userProfile .tabs .upwrapper .per-detail {
      border-bottom: 0px solid; }
      .userProfile .tabs .upwrapper .per-detail li > span {
        display: flex;
        align-items: center; }
    .userProfile .tabs .upwrapper span.conic {
      margin-right: 10px;
      width: 35px;
      height: 35px;
      border: 1px solid rgba(150, 165, 196, 0.11);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      flex-basis: auto !important; }
      .userProfile .tabs .upwrapper span.conic i {
        color: #96A5C4;
        font-size: 16px; }

.stickyWrapper {
  height: 570px;
  overflow-y: auto;
  position: relative; }
  .stickyWrapper .formArea {
    padding: 10px 15px;
    background-color: #fff; }
  .stickyWrapper .formActions {
    position: sticky;
    bottom: -1px;
    left: 0px;
    right: 0px;
    width: calc(100% - 40px);
    background-color: #fff;
    padding: 20px;
    text-align: center; }
    .stickyWrapper .formActions button {
      margin-right: 15px; }
      .stickyWrapper .formActions button:last-child {
        margin: 0; }
  .stickyWrapper .postWrap {
    background-color: #fff; }
  .stickyWrapper .edit-formWrapper {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.11);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
    background-color: rgba(34, 0, 99, 0.02); }
  .stickyWrapper .postWrap,
  .stickyWrapper .white-wrap {
    font-weight: normal; }
    .stickyWrapper .postWrap .input-group,
    .stickyWrapper .white-wrap .input-group {
      display: flex;
      gap: 10px;
      margin-bottom: 15px; }
      .stickyWrapper .postWrap .input-group input,
      .stickyWrapper .postWrap .input-group select,
      .stickyWrapper .white-wrap .input-group input,
      .stickyWrapper .white-wrap .input-group select {
        padding-right: 10px !important;
        width: calc(100% - 22px); }
    .stickyWrapper .postWrap .form-group,
    .stickyWrapper .white-wrap .form-group {
      display: flex;
      gap: 10px;
      margin-bottom: 20px; }
      .stickyWrapper .postWrap .form-group > div,
      .stickyWrapper .white-wrap .form-group > div {
        flex: 1; }
      .stickyWrapper .postWrap .form-group input,
      .stickyWrapper .postWrap .form-group select,
      .stickyWrapper .white-wrap .form-group input,
      .stickyWrapper .white-wrap .form-group select {
        padding-right: 10px !important;
        width: calc(100% - 22px);
        margin-bottom: 7px; }

.user-filterbox {
  max-width: 100%;
  margin: 40px auto;
  background: #fff;
  padding: 20px;
  border-radius: 5px; }
  .user-filterbox form,
  .user-filterbox .titleSec {
    width: calc(100% - 120px);
    padding: 10px 60px; }
  .user-filterbox input[type=checkbox] {
    width: 18px;
    height: 18px;
    border-radius: 0px;
    margin-right: 8px;
    margin-bottom: 0 !important; }
    .user-filterbox input[type=checkbox] + input {
      pointer-events: none; }
    .user-filterbox input[type=checkbox]:checked + input {
      pointer-events: all;
      opacity: 1; }
  .user-filterbox input {
    margin-bottom: 0px !important; }
  .user-filterbox .button-group {
    text-align: center;
    margin: 20px 0px; }
  .user-filterbox .input-group.d-flex-jc-sp {
    gap: 20px; }
    .user-filterbox .input-group.d-flex-jc-sp > span {
      margin-bottom: 20px; }
  .user-filterbox .input-full {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex: 1; }
    .user-filterbox .input-full input[type=checkbox] {
      width: 18px;
      height: 18px;
      border-radius: 0px;
      margin-right: 8px; }
      .user-filterbox .input-full input[type=checkbox] + label {
        pointer-events: none;
        display: flex;
        flex: 1;
        align-items: center; }
        .user-filterbox .input-full input[type=checkbox] + label .switch {
          position: relative;
          display: inline-block;
          width: calc(45px + 16px);
          height: 22px;
          margin-left: 8px;
          margin-right: 8px; }
        .user-filterbox .input-full input[type=checkbox] + label .switch input {
          width: 0;
          height: 0; }
        .user-filterbox .input-full input[type=checkbox] + label > input {
          margin-bottom: 0 !important;
          margin-right: 0px; }
        .user-filterbox .input-full input[type=checkbox] + label > label + span {
          margin-right: 10px; }
      .user-filterbox .input-full input[type=checkbox]:checked + label {
        pointer-events: all;
        opacity: 1; }
  .user-filterbox .input-half {
    display: flex;
    flex: 1;
    align-items: center;
    margin-bottom: 20px;
    flex: 0 0 49%; }
    .user-filterbox .input-half > label {
      display: flex; }
    .user-filterbox .input-half input[type=checkbox] {
      width: 18px;
      height: 18px;
      border-radius: 0px;
      margin-right: 8px; }
      .user-filterbox .input-half input[type=checkbox] + label {
        pointer-events: none;
        display: flex;
        flex: 1;
        align-items: center; }
        .user-filterbox .input-half input[type=checkbox] + label .switch {
          position: relative;
          display: inline-block;
          width: calc(45px + 16px);
          height: 22px;
          margin-left: 8px;
          margin-right: 8px; }
        .user-filterbox .input-half input[type=checkbox] + label .switch input {
          width: 0;
          height: 0; }
        .user-filterbox .input-half input[type=checkbox] + label > input {
          margin-bottom: 0 !important;
          margin-right: 0px; }
        .user-filterbox .input-half input[type=checkbox] + label > label + span {
          margin-right: 10px; }
      .user-filterbox .input-half input[type=checkbox]:checked + label {
        pointer-events: all;
        opacity: 1; }

.videoWrapper {
  display: flex;
  justify-content: flex-start;
  flex: auto !important; }
  .videoWrapper input {
    width: auto !important; }
  .videoWrapper video {
    width: 400px; }

.selfReport-wrap {
  display: none; }
  .selfReport-wrap.open {
    display: flex; }

.dsort-by-wrap {
  position: relative; }
  .dsort-by-wrap.filterbySR {
    margin-right: 15px; }
  .dsort-by-wrap > span {
    color: #9DA6B7;
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px; }
  .dsort-by-wrap .drop-head {
    background-color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    color: #000000; }
    .dsort-by-wrap .drop-head > span {
      color: #9DA6B7; }
    .dsort-by-wrap .drop-head i {
      margin-left: 10px; }
  .dsort-by-wrap .dropdown_wrap {
    position: absolute;
    width: 150px;
    background: white;
    right: 20px;
    top: 40px;
    box-shadow: 0px 3px 19px 0px #AFB1B4;
    display: none;
    z-index: 9; }
    .dsort-by-wrap .dropdown_wrap .text-right {
      margin: 10px 15px 15px; }
    .dsort-by-wrap .dropdown_wrap .btn-primary {
      font-size: 10px;
      padding: 7px 12px;
      height: auto; }
    .dsort-by-wrap .dropdown_wrap.show {
      display: block; }
    .dsort-by-wrap .dropdown_wrap ul {
      display: inline-block;
      width: 100%;
      padding: 0;
      margin-bottom: 0;
      margin-top: 0; }
      .dsort-by-wrap .dropdown_wrap ul li {
        display: block;
        width: 100%;
        color: #96A5C4; }
        .dsort-by-wrap .dropdown_wrap ul li input {
          display: none; }
          .dsort-by-wrap .dropdown_wrap ul li input:checked + label {
            position: relative;
            color: #ffffff;
            background-color: #220063; }
            .dsort-by-wrap .dropdown_wrap ul li input:checked + label:after {
              content: "\f00c";
              font-family: "Font Awesome 6 Free";
              display: inline-block;
              font-size: 14px;
              font-weight: 900;
              position: absolute;
              right: 10px; }
        .dsort-by-wrap .dropdown_wrap ul li label {
          background-color: transparent;
          border: none;
          width: calc(100% - 50px);
          font-size: 13px;
          color: #96A5C4;
          padding: 10px 30px 10px 20px;
          text-align: left;
          display: inline-block;
          cursor: pointer; }
          .dsort-by-wrap .dropdown_wrap ul li label:hover {
            background-color: #220063;
            color: #ffffff; }

.d-show {
  display: block !important;
  background: transparent; }

.d-show.show {
  background: rgba(0, 0, 0, 0.4); }

/*# sourceMappingURL=style.css.map */
