.jobtek-custom-dropdown {
    padding: 0;
    flex-basis: 180px;
}

.jobtek-custom-dropdown .cof-wrapper {
    display: flex;
}

.jobtek-custom-dropdown .cof-wrapper .cof-item-text {
    font-weight: normal;
    color: #092f51;
    font-size: 14px;
    white-space: nowrap;
    padding: 0;
    margin: 0 0 0 8px;    
}

.jobtek-custom-dropdown .button-dropdown {
    position: relative;
    background: none;
    padding: 0 30px 0 0;
    margin: 0;
    color: #092f51;
    font-size: 14px;
    min-width: 200px;
    width: 100%;
    text-align: left;
}

.jobtek-custom-dropdown .button-dropdown::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url('../../images/chevron-down.svg') no-repeat center center;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.jobtek-custom-dropdown .button-dropdown.button-dropdown--active::after {
    transform: translateY(-50%) rotate(180deg);
}

.jobtek-custom-dropdown__content {
    height: 0px;
    visibility: hidden;
    overflow: hidden;
    padding-top: 8px;
}

.jobtek-custom-dropdown__item label.checkbox,
.jobtek-custom-dropdown__item label.radio  {
    display: flex;
    align-items: flex-start;
}

.jobtek-custom-dropdown__content .checkbox__label,
.jobtek-custom-dropdown__content .radio__label {
    font-size: 14px;
    line-height: 1.2;
}

.jobtek-custom-dropdown__content .checkbox__label small,
.jobtek-custom-dropdown__content .radio__label small {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-left: 8px;
}

.jobtek-custom-dropdown__content--active {
    height: 100%;
    visibility: visible;
}

.jobtek-custom-dropdown.cof-item {
    margin: 0 15px 0 0;
}

.jobtek-custom-dropdown__item input[type=radio] {
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    display: inline-flex !important;
    margin: 0 4px 0 0;
  }
  
  .jobtek-custom-dropdown__item input[type=radio]::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      border-radius: 50%;
      width: 15px;
      height: 15px;
      border: 1px solid #092f51;
  }
  
  .jobtek-custom-dropdown__item input[type=radio]:checked::before {
      background: url("../../images/checked.svg") #092f51 no-repeat center center;
      background-size: contain;
  }

  .jobtek-custom-dropdown__item input[type=checkbox] {
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    height: 21px;
    min-height: 21px;
    max-height: 21px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    display: inline-flex !important;
    margin: 0 4px 0 0;
  }
  
  .jobtek-custom-dropdown__item input[type=checkbox]::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 15px;
      height: 15px;
      border: 1px solid #092f51;
  }
  
  .jobtek-custom-dropdown__item input[type=checkbox]:checked::before {
      background: url("../../images/checked.svg") #092f51 no-repeat center center !important;
      background-size: contain !important;
  }

@media screen and (max-width: 991px) {
    .jobtek-custom-dropdown.cof-item {
        margin: 0 8px 0 0;
    }

    .jobtek-custom-dropdown.cof-item:last-child {
        margin-right: 0;
    }
    
}

@media screen and (max-width: 768px) {
    .jobtek-custom-dropdown {
        flex-basis: 100%;
        padding: 8px 0;
    }

    .jobtek-custom-dropdown .button-dropdown {
        width: 100%;
    }
}