.jobtek-custom-filters {
  position: fixed;
  display: block;
  overflow: auto;
  background: #fff;
  width: 300px;
  align-items: center;
  right: 50vw;
  transform: translateX(100%);
  top: 0;
  padding: 15px 30px;
  height: 100%;
  min-height: 500px;
  z-index: -99999;
  box-shadow: 0px 16px 16px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;

  @media screen and (min-width: 1100px) {
    padding: 15px 30px 75px 30px;
  }
}

.jobtek-custom-filters--open {
  top: 56px;
  opacity: 1;
  visibility: visible;
  z-index: 99999;
}

.jobtek-custom-filters__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  color: #092f51;
}

.jobtek-custom-filters__title h3 {
  color: #092f51;
}

.jobtek-custom-filters__dropdowns {
  display: block;
  width: 100%;
}

.jobtek-slider-filters {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}

.jobtek-slider-filters .jobtek-custom-dropdown {
  flex-basis: 100%;
}

.jobtek-custom-filters .switch {
  position: relative;
  display: inline-block;
  font-size: 12px;
  width: 50px;
  height: 21px;
  margin-top: 0;
  margin-bottom: 0px;
}

.jobtek-custom-filters .cof-wrapper {
  align-items: center;
}

.jobtek-custom-filters .cof-item {
  padding: 0;
}

.jobtek-custom-filters .slider:not(.slider-horizontal):before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 4px;
  bottom: 2px;
  background-color: white;
}

.jobtek-filters-drawer {
  display: flex;
  justify-content: flex-end;
}

.jobtek-custom-filters__close {
  background: url("../../images/close.svg") no-repeat center center;
  width: 24px;
  height: 24px;
  padding: 15px;
  margin-right: -7px;
  cursor: pointer;
}

.button--filters-submit {
  width: 100%;
  margin-top: 30px;
}

.jobtek-filters-drawer--button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #092f51;
  color: #fff;
  padding: 8px 10px;
  border-radius: 6px;
}

.jobtek-filters-drawer--button img {
  filter: brightness(100) invert(0);
}

.jobtek-filters-drawer--button:hover {
  background: #092f51;
  color: #fff;
}

@media screen and (max-width: 1100px) {
  .jobtek-custom-filters {
    top: 0;
    right: -99999px;
    width: 500px;
    height: 100%;
    transform: translateX(0);
    transition: all 0.4s ease;
  }

  .jobtek-custom-filters--open {
    top: 0;
    right: 0;
    opacity: 1;
  }

  .jobtek-custom-filters__close {
    display: block;
  }

  .jobtek-filters-drawer {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 599px) {
  .jobtek-custom-filters {
    top: 0;
    width: 100%;
    height: 100%;
    transform: translateX(0);
    opacity: 0;
    transition: right 0.4s ease, opacity 0.4s ease;
  }

  .jobtek-custom-filters--open {
    top: 0;
    opacity: 1;
    transition: right 0.4s ease, opacity 0.4s ease;
  }
}
