/*==================================================================
                   18. Filter css
==================================================================*/
/*=====   Filter Style 1 Style =====*/
.filter-style-1 {
	background-color:#6487ab;
	color:white;
  padding: 9px;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.filter-style-1 .filter-title .title {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
}

.filter-style-1.filter-dark {
  background-color: #161359;
}

.filter-style-1.filter-dark .filter-title .title {
  color: #fff;
}

/*=====   Filter Style 2 Style =====*/
.filter-style-2 {
  padding: 9px;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
  margin-top: 10px;
}

.filter-style-2 .filter-title .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
  color: #000;
  display: block;
  position: relative;
}

.filter-style-2 .filter-title .title::before {
  position: absolute;
  content: "\F0143";
  font-family: "Material Design Icons";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 24px;
  color: #542DED;
}

.filter-style-2 .filter-title .title.collapsed::before {
  content: "\F0140";
}

.filter-style-2 .price-range .price-amount {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.filter-style-2 .price-range .price-amount .amount-input label {
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  color: #000;
  margin-bottom: 0;
  display: block;
}

.filter-style-2 .price-range .price-amount .amount-input input {
  display: inline-block;
  width: 120px;
  height: auto;
  border: 0;
  padding: 0;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000;
}

.filter-style-2 .price-range .price-amount .amount-input:last-child {
  text-align: right;
}

.filter-style-2 .price-range .price-amount .amount-input:last-child input {
  text-align: right;
}

.filter-style-2 .price-range .slider-range {
  height: 4px;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background-color: #EEE6FD;
  margin-top: 32px;
  margin-bottom: 13px;
}

.filter-style-2 .price-range .slider-range .ui-slider-range {
  background-color: #542DED;
}

.filter-style-2 .price-range .slider-range .ui-slider-handle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #542DED;
  top: -13px;
  cursor: pointer;
  border: 0;
}

.filter-style-2 .price-range .slider-range .ui-slider-handle:focus {
  outline: 0;
}

.filter-style-2.filter-dark {
  background-color: #161359;
}

.filter-style-2.filter-dark .filter-title .title {
  color: #fff;
}

.filter-style-2.filter-dark .filter-title .title::before {
  color: #E14C7B;
}

.filter-style-2.filter-dark .price-range .price-amount .amount-input label {
  color: #fff;
}

.filter-style-2.filter-dark .price-range .price-amount .amount-input input {
  color: #fff;
  background: none;
}

.filter-style-2.filter-dark .noUi-connect {
  background-color: #E14C7B;
}

.filter-style-2.filter-dark .noUi-handle {
  background-color: #E14C7B;
}

.filter-style-2 .noUi-base {
  width: 97%;
  left: 0;
  right: 0;
  margin: auto;
}

.filter-style-2 .noUi-connect {
  background-color: #542DED;
}

.filter-style-2 .noUi-handle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #542DED;
  top: -13px;
  cursor: pointer;
  border: 0;
  box-shadow: none;
}

.filter-style-2 .noUi-handle:after, .filter-style-2 .noUi-handle:before {
  display: none;
}

/*=====   Filter Style 2 Style =====*/
.filter-style-3 {
  padding: 9px;
  border-radius: 8px;
   box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  margin-top: 15px;
}

.filter-style-3 .filter-title .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
  color: #000;
  display: block;
  position: relative;
}

.filter-style-3 .filter-title .title::before {
  position: absolute;
  content: "\F0143";
  font-family: "Material Design Icons";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 24px;
  color: #000;
}

.filter-style-3 .filter-title .title.collapsed::before {
  content: "\F0140";
}

.filter-style-3 .filter-type {
  padding-top: 4px;
}

.filter-style-3 .filter-type .type-check {
  margin-top: 8px;
  position:relative;
}

.filter-style-3 .filter-type .type-check input[type="checkbox"] {
  display: none;
}

.filter-style-3 .filter-type .type-check input[type="checkbox"] + label span {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(0, 0, 0, 0.64);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 0 5px -3px 0;
  transition: all 0.4s linear;
}

.filter-style-3 .filter-type .type-check input[type="checkbox"] + label span::before {
  position: absolute;
  content: '\F012C';
  font-family: "Material Design Icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  transition: all 0.4s linear;
  line-height: 0.8;
  font-size: 16px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
}

.filter-style-3 .filter-type .type-check input[type="checkbox"]:checked + label span {
  background-color: #542DED;
  border-color: #542DED;
}

.filter-style-3 .filter-type .type-check input[type="checkbox"]:checked + label span::before {
  opacity: 1;
  visibility: visible;
}

.filter-style-3 .filter-type .type-check label {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  margin-bottom: 0;
}

.filter-style-3.filter-dark {
  background-color: #161359;
}

.filter-style-3.filter-dark .filter-title .title {
  color: #fff;
}

.filter-style-3.filter-dark .filter-title .title::before {
  color: #E14C7B;
}

.filter-style-3.filter-dark .filter-type {
  padding-top: 8px;
}

.filter-style-3.filter-dark .filter-type .type-check input[type="checkbox"] + label span {
  border: 2px solid rgba(255, 255, 255, 0.64);
}

.filter-style-3.filter-dark .filter-type .type-check input[type="checkbox"]:checked + label span {
  background-color: #E14C7B;
  border-color: #E14C7B;
}

.filter-style-3.filter-dark .filter-type .type-check label {
  color: #fff;
}

/*=====   Filter Style 2 Style =====*/
.filter-style-4 {
  padding: 9px;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
  margin-top: 10px;
}

.filter-style-4 .filter-title .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
  color: #000;
  display: block;
  position: relative;
}

.filter-style-4 .filter-title .title::before {
  position: absolute;
  content: "\F0143";
  font-family: "Material Design Icons";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 24px;
  color: #542DED;
}

.filter-style-4 .filter-title .title.collapsed::before {
  content: "\F0140";
}

.filter-style-4 .filter-size {
  padding-top: 8px;
}

.filter-style-4 .filter-size ul li {
  display: inline-block;
  padding: 0 10px;
  height: 35px;
  line-height: 33px;
  border: 1px solid rgba(0, 0, 0, 0.64);
  color: rgba(0, 0, 0, 0.64);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  margin-top: 8px;
  transition: all 0.3s linear;
  cursor: pointer;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .filter-style-4 .filter-size ul li {
    height: 30px;
    line-height: 28px;
    padding: 0 8px;
  }
}

@media (max-width: 767px) {
  .filter-style-4 .filter-size ul li {
    height: 30px;
    line-height: 28px;
    padding: 0 8px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .filter-style-4 .filter-size ul li {
    height: 35px;
    line-height: 33px;
    padding: 0 10px;
  }
}

.filter-style-4 .filter-size ul li.active {
  background-color: #542DED;
  border-color: #542DED;
  color: #fff;
}

.filter-style-4 .filter-size ul li + li {
  margin-left: 2px;
}

.filter-style-4.filter-dark {
  background-color: #161359;
}

.filter-style-4.filter-dark .filter-title .title {
  color: #fff;
}

.filter-style-4.filter-dark .filter-title .title::before {
  color: #E14C7B;
}

.filter-style-4.filter-dark .filter-size {
  padding-top: 8px;
}

.filter-style-4.filter-dark .filter-size ul li {
  border: 1px solid rgba(255, 255, 255, 0.64);
  color: rgba(255, 255, 255, 0.64);
}

.filter-style-4.filter-dark .filter-size ul li.active {
  background-color: #E14C7B;
  border-color: #E14C7B;
  color: #fff;
}

/*=====   Filter Style 2 Style =====*/
.filter-style-5 {
  padding: 9px;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
  margin-top: 10px;
}

.filter-style-5 .filter-title .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
  color: #000;
  display: block;
  position: relative;
}

.filter-style-5 .filter-title .title::before {
  position: absolute;
  content: "\F0143";
  font-family: "Material Design Icons";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 24px;
  color: #542DED;
}

.filter-style-5 .filter-title .title.collapsed::before {
  content: "\F0140";
}

.filter-style-5 .price-range .price-amount {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.filter-style-5 .price-range .price-amount .amount-input label {
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  color: #000;
  padding-left: 16px;
  margin-bottom: 0;
  display: block;
}

.filter-style-5 .price-range .price-amount .amount-input input {
  display: inline-block;
  width: 145px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.64);
  padding: 0 16px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  margin-top: 8px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .filter-style-5 .price-range .price-amount .amount-input input {
    width: 120px;
  }
}

@media (max-width: 767px) {
  .filter-style-5 .price-range .price-amount .amount-input input {
    width: 120px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .filter-style-5 .price-range .price-amount .amount-input input {
    width: 145px;
  }
}

.filter-style-5 .price-range .price-amount .amount-input:last-child {
  text-align: right;
}

.filter-style-5 .price-range .price-amount .amount-input:last-child label {
  padding-left: 0;
  padding-right: 16px;
}

.filter-style-5 .price-range .price-amount .amount-input:last-child input {
  text-align: right;
}

.filter-style-5 .price-range .slider-range {
  height: 4px;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background-color: #EEE6FD;
  margin-top: 38px;
  margin-bottom: 13px;
}

.filter-style-5 .price-range .slider-range .ui-slider-range {
  background-color: #542DED;
}

.filter-style-5 .price-range .slider-range .ui-slider-handle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #542DED;
  top: -13px;
  cursor: pointer;
  border: 0;
}

.filter-style-5 .price-range .slider-range .ui-slider-handle:focus {
  outline: 0;
}

.filter-style-5.filter-dark {
  background-color: #161359;
}

.filter-style-5.filter-dark .filter-title .title {
  color: #fff;
}

.filter-style-5.filter-dark .filter-title .title::before {
  color: #E14C7B;
}

.filter-style-5.filter-dark .price-range .price-amount .amount-input label {
  color: #fff;
}

.filter-style-5.filter-dark .price-range .price-amount .amount-input input {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.24);
}

.filter-style-5.filter-dark .noUi-connect {
  background-color: #E14C7B;
}

.filter-style-5.filter-dark .noUi-handle {
  background-color: #E14C7B;
}

.filter-style-5 .noUi-base {
  width: 97%;
  left: 0;
  right: 0;
  margin: auto;
}

.filter-style-5 .noUi-connect {
  background-color: #542DED;
}

.filter-style-5 .noUi-handle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #542DED;
  top: -13px;
  cursor: pointer;
  border: 0;
  box-shadow: none;
}

.filter-style-5 .noUi-handle:after, .filter-style-5 .noUi-handle:before {
  display: none;
}

/*=====   Filter Style 2 Style =====*/
.filter-style-6 {
  padding: 9px;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
  margin-top: 10px;
}

.filter-style-6 .filter-title .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
  color: #000;
  display: block;
  position: relative;
}

.filter-style-6 .filter-title .title::before {
  position: absolute;
  content: "\F0143";
  font-family: "Material Design Icons";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 24px;
  color: #542DED;
}

.filter-style-6 .filter-title .title.collapsed::before {
  content: "\F0140";
}

.filter-style-6 .filter-rating {
  padding-top: 8px;
}

.filter-style-6 .filter-rating .rating-check {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-top: 8px;
}

.filter-style-6 .filter-rating .rating-check input[type="checkbox"] {
  display: none;
}

.filter-style-6 .filter-rating .rating-check input[type="checkbox"] + label span {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(0, 0, 0, 0.64);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 0 5px -3px 0;
  transition: all 0.4s linear;
}

.filter-style-6 .filter-rating .rating-check input[type="checkbox"] + label span::before {
  position: absolute;
  content: '\F012C';
  font-family: "Material Design Icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  transition: all 0.4s linear;
  line-height: 0.8;
  font-size: 16px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
}

.filter-style-6 .filter-rating .rating-check input[type="checkbox"]:checked + label span {
  background-color: #542DED;
  border-color: #542DED;
}

.filter-style-6 .filter-rating .rating-check input[type="checkbox"]:checked + label span::before {
  opacity: 1;
  visibility: visible;
}

.filter-style-6 .filter-rating .rating-check p {
  padding-left: 5px;
}

.filter-style-6 .filter-rating .rating-check p i {
  color: #FFBE27;
  font-size: 20px;
}

.filter-style-6.filter-dark {
  background-color: #161359;
}

.filter-style-6.filter-dark .filter-title .title {
  color: #fff;
}

.filter-style-6.filter-dark .filter-title .title::before {
  color: #E14C7B;
}

.filter-style-6.filter-dark .filter-rating {
  padding-top: 16px;
}

.filter-style-6.filter-dark .filter-rating .rating-check input[type="checkbox"] + label span {
  border: 2px solid rgba(255, 255, 255, 0.64);
}

.filter-style-6.filter-dark .filter-rating .rating-check input[type="checkbox"]:checked + label span {
  background-color: #E14C7B;
  border-color: #E14C7B;
}

/*=====   Filter Style 2 Style =====*/
.filter-style-7 {
  padding: 9px;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
  margin-top: 10px;
}

.filter-style-7 .filter-title .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
  color: #000;
  display: block;
  position: relative;
}

.filter-style-7 .filter-title .title::before {
  position: absolute;
  content: "\F0143";
  font-family: "Material Design Icons";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 24px;
  color: #542DED;
}

.filter-style-7 .filter-title .title.collapsed::before {
  content: "\F0140";
}

.filter-style-7 .filter-color {
  padding-top: 8px;
}

.filter-style-7 .filter-color .color-check {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.filter-style-7 .filter-color .color-check p {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.filter-style-7 .filter-color .color-check p span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 11px;
}

.filter-style-7 .filter-color .color-check p strong {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000;
}

.filter-style-7 .filter-color .color-check input[type="checkbox"] {
  display: none;
}

.filter-style-7 .filter-color .color-check input[type="checkbox"] + label span {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(0, 0, 0, 0.64);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 0 5px -3px 0;
  transition: all 0.4s linear;
}

.filter-style-7 .filter-color .color-check input[type="checkbox"] + label span::before {
  position: absolute;
  content: '\F012C';
  font-family: "Material Design Icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  transition: all 0.4s linear;
  line-height: 0.8;
  font-size: 16px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
}

.filter-style-7 .filter-color .color-check input[type="checkbox"]:checked + label span {
  background-color: #542DED;
  border-color: #542DED;
}

.filter-style-7 .filter-color .color-check input[type="checkbox"]:checked + label span::before {
  opacity: 1;
  visibility: visible;
}

.filter-style-7.filter-dark {
  background-color: #161359;
}

.filter-style-7.filter-dark .filter-title .title {
  color: #fff;
}

.filter-style-7.filter-dark .filter-title .title::before {
  color: #E14C7B;
}

.filter-style-7.filter-dark .filter-color .color-check p strong {
  color: #fff;
}

.filter-style-7.filter-dark .filter-color .color-check input[type="checkbox"] + label span {
  border: 2px solid rgba(255, 255, 255, 0.64);
}

.filter-style-7.filter-dark .filter-color .color-check input[type="checkbox"]:checked + label span {
  background-color: #E14C7B;
  border-color: #E14C7B;
}

/*=====   Filter Style 2 Style =====*/
.filter-style-8 {
  padding: 9px;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
  margin-top: 10px;
}

.filter-style-8 .filter-title .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
  color: #000;
  display: block;
  position: relative;
}

.filter-style-8 .filter-title .title::before {
  position: absolute;
  content: "\F0143";
  font-family: "Material Design Icons";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 24px;
  color: #542DED;
}

.filter-style-8 .filter-title .title.collapsed::before {
  content: "\F0140";
}

.filter-style-8 .filter-search {
  margin-top: 16px;
  position: relative;
}

.filter-style-8 .filter-search input {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.64);
  padding: 0 16px;
  border-radius: 4px;
}

.filter-style-8 .filter-search button {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  color: #542DED;
}

.filter-style-8 .filter-category .category-list {
  padding-top: 8px;
}

.filter-style-8 .filter-category .category-list li {
  margin-top: 8px;
}

.filter-style-8 .filter-category .category-list li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  position: relative;
  display: block;
}

.filter-style-8 .filter-category .category-list li a::before {
  position: absolute;
  content: "\F0143";
  font-family: "Material Design Icons";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 24px;
  color: #542DED;
}

.filter-style-8 .filter-category .category-list li a.collapsed::before {
  content: "\F0140";
}

.filter-style-8 .filter-category .category-list li .sub-category {
  padding: 8px 0;
  padding-left: 34px;
}

.filter-style-8 .filter-category .category-list li .sub-category li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  position: relative;
  display: block;
}

.filter-style-8 .filter-category .category-list li .sub-category li a::before {
  display: none;
}

.filter-style-8.filter-dark {
  background-color: #161359;
}

.filter-style-8.filter-dark .filter-title .title {
  color: #fff;
}

.filter-style-8.filter-dark .filter-title .title::before {
  color: #E14C7B;
}

.filter-style-8.filter-dark .filter-search input {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.24);
}

.filter-style-8.filter-dark .filter-search button {
  color: #E14C7B;
}

.filter-style-8.filter-dark .filter-category .category-list li a {
  color: #fff;
}

.filter-style-8.filter-dark .filter-category .category-list li a::before {
  color: #E14C7B;
}

.filter-style-8.filter-dark .filter-category .category-list li .sub-category li a {
  color: #fff;
}

/*=====   Filter Style 2 Style =====*/
.filter-style-9 .filter-search {
  margin-top: 16px;
  position: relative;
}

.filter-style-9 .filter-search input {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.64);
  padding: 0 16px;
  border-radius: 4px;
}

.filter-style-9 .filter-search button {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  color: #542DED;
}
.filter-style-9 {
  padding: 9px;
  border-radius: 8px;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  margin-top: 15px;
}

.filter-style-9 .filter-title .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
  color: #000;
  display: block;
  position: relative;
}

.filter-style-9 .filter-title .title::before {
  position: absolute;
  content: "\F0143";
  font-family: "Material Design Icons";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 24px;
  color: #000;
}

.filter-style-9 .filter-title .title.collapsed::before {
  content: "\F0140";
}

.filter-style-9 .filter-universite {
  padding-top: 8px;
}

.filter-style-9 .filter-universite .universite-check {
  position: relative;
  margin-top: 8px;
}

.filter-style-9 .filter-universite .universite-check input[type="checkbox"] {
  display: none;
}

.filter-style-9 .filter-universite .universite-check input[type="checkbox"] + label span {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(0, 0, 0, 0.64);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 0 8px -3px 0;
  transition: all 0.4s linear;
}

.filter-style-9 .filter-universite .universite-check input[type="checkbox"] + label span::before {
  position: absolute;
  content: '\F012C';
  font-family: "Material Design Icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  transition: all 0.4s linear;
  line-height: 0.8;
  font-size: 16px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
}

.filter-style-9 .filter-universite .universite-check input[type="checkbox"]:checked + label span {
  background-color: #542DED;
  border-color: #542DED;
}

.filter-style-9 .filter-universite .universite-check input[type="checkbox"]:checked + label span::before {
  opacity: 1;
  visibility: visible;
}

.filter-style-9 .filter-universite .universite-check label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  position: relative;
  display: block;
  cursor: pointer;
}

.filter-style-9 .filter-universite .universite-check .count {
  height: 20px;
  line-height: 20px;
  padding: 0 8px;
  border-radius: 18px;
  font-weight: 500;
  font-size: 12px;
  background-color: #EFEFEF;
  color: rgba(0, 0, 0, 0.64);
  float: right;
  display: block;
  margin-top: 3px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.filter-style-9.filter-dark {
  background-color: #161359;
}

.filter-style-9.filter-dark .filter-title .title {
  color: #fff;
}

.filter-style-9.filter-dark .filter-title .title::before {
  color: #E14C7B;
}

.filter-style-9.filter-dark .filter-universite {
  padding-top: 16px;
}

.filter-style-9.filter-dark .filter-universite .universite-check input[type="checkbox"] + label span {
  border: 2px solid rgba(255, 255, 255, 0.64);
}

.filter-style-9.filter-dark .filter-universite .universite-check input[type="checkbox"]:checked + label span {
  background-color: #E14C7B;
  border-color: #E14C7B;
}

.filter-style-9.filter-dark .filter-universite .universite-check label {
  color: #fff;
}

.filter-style-9.filter-dark .filter-universite .universite-check .count {
  background-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.64);
}
/*==================================================================
                         08. Form Elements css
==================================================================*/
/*===== All checkbox Style =====*/
.single-checkbox {
  margin-top: 16px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.single-checkbox input[type="checkbox"] {
  display: none;
}

.single-checkbox input[type="checkbox"] + label span {
  width: 20px;
  height: 20px;
  border: 2px solid;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 0 5px -3px 0;
}

.single-checkbox input[type="checkbox"] + label span::before {
  position: absolute;
  content: '';
  font: normal normal normal 24px "Material Design Icons";
  font-size: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s linear;
  transform: scale(0);
  font-size: 14px;
  line-height: 1.2;
}

.single-checkbox input[type="checkbox"]:checked + label span::before {
  transform: scale(1);
}

.single-checkbox label {
  font-size: 16px;
  margin-bottom: 0;
}

.single-checkbox p {
  display: inline-block;
  color: #000;
  padding-left: 5px;
}

.checkbox-round input[type="checkbox"] + label span {
  border-radius: 50%;
}

.checkbox-round input[type="checkbox"] + label span::before {
  border-radius: 50%;
}

/*===== checkbox Style 1 =====*/
.checkbox-style-1 input[type="checkbox"] + label span {
  border-color: #542DED;
}

.checkbox-style-1 input[type="checkbox"] + label span::before {
  content: "\F012C";
}

.checkbox-style-1 input[type="checkbox"]:checked + label span::before {
  transform: scale(1);
  color: #542DED;
}

/*===== checkbox Style 2 =====*/
.checkbox-style-2 input[type="checkbox"] + label span {
  border-color: #542DED;
}

.checkbox-style-2 input[type="checkbox"] + label span::before {
  background-color: #542DED;
}

.checkbox-style-2 input[type="checkbox"]:checked + label span::before {
  transform: scale(0.8);
  color: #542DED;
}

/*===== checkbox Style 3 =====*/
.checkbox-style-3 input[type="checkbox"] + label span {
  border-color: #542DED;
}

.checkbox-style-3 input[type="checkbox"] + label span::before {
  content: "\F012C";
  background-color: #542DED;
}

.checkbox-style-3 input[type="checkbox"]:checked + label span::before {
  transform: scale(1);
  color: #fff;
}

/*===== checkbox Style 4 =====*/
.checkbox-style-4 input[type="checkbox"] + label span {
  border-color: #7D7D7D;
}

.checkbox-style-4 input[type="checkbox"] + label span::before {
  content: "\F012C";
}

.checkbox-style-4 input[type="checkbox"]:checked + label span:before {
  transform: scale(1);
  color: #7D7D7D;
}

/*===== checkbox Style 5 =====*/
.checkbox-style-5 input[type="checkbox"] + label span {
  border-color: #7D7D7D;
}

.checkbox-style-5 input[type="checkbox"] + label span::before {
  background-color: #7D7D7D;
}

.checkbox-style-5 input[type="checkbox"]:checked + label span::before {
  transform: scale(0.8);
  color: #7D7D7D;
}

/*===== checkbox Style 6 =====*/
.checkbox-style-6 input[type="checkbox"] + label span {
  border-color: #7D7D7D;
}

.checkbox-style-6 input[type="checkbox"] + label span::before {
  background-color: #7D7D7D;
}

.checkbox-style-6 input[type="checkbox"]:checked + label span::before {
  content: "\F012C";
  transform: scale(1);
  color: #fff;
}

/*===== Switch Style 1 =====*/
.switch-button {
  margin-top: 16px;
}

.switch-button input[type="checkbox"] {
  display: none;
}

.switch-button input[type="checkbox"] + label {
  margin-bottom: 0;
}

.switch-button input[type="checkbox"] + label span {
  position: relative;
  cursor: pointer;
}

.switch-button input[type="checkbox"] + label span::before {
  position: absolute;
  content: '';
  border-radius: 50px;
  background-color: #EFEFEF;
  transition: all 0.3s linear;
  width: 100%;
  height: 100%;
}

.switch-button input[type="checkbox"] + label span::after {
  position: absolute;
  content: '';
  border-radius: 50%;
  background-color: #BDBDBD;
  transition: all 0.3s linear;
}

.switch-button input[type="checkbox"]:checked + label span::before {
  background-color: #EEE6FD;
}

.switch-button input[type="checkbox"]:checked + label span::after {
  transform: translateX(24px);
  background-color: #542DED;
}

.switch-button p {
  display: inline-block;
  position: relative;
  top: -7px;
  padding-left: 7px;
}

.switch-button.switch-style-1 input[type="checkbox"] + label span {
  width: 50px;
  height: 26px;
}

.switch-button.switch-style-1 input[type="checkbox"] + label span::after {
  width: 20px;
  height: 20px;
  top: 3px;
  left: 3px;
}

.switch-button.switch-style-2 input[type="checkbox"] + label span {
  width: 50px;
  height: 26px;
}

.switch-button.switch-style-2 input[type="checkbox"] + label span::before {
  height: 70%;
  top: 50%;
  transform: translateY(-50%);
}

.switch-button.switch-style-2 input[type="checkbox"] + label span::after {
  width: 26px;
  height: 26px;
  top: 0;
  left: 0;
}

/*===== All Radio Style =====*/
.single-radio {
  margin-top: 16px;
}

.single-radio input[type="radio"] {
  display: none;
}

.single-radio input[type="radio"] + label span {
  width: 20px;
  height: 20px;
  border: 2px solid;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 0 5px -4px 0;
}

.single-radio input[type="radio"] + label span::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s linear;
  transform: scale(0);
}

.single-radio input[type="radio"]:checked + label span::before {
  transform: scale(1);
}

.single-radio label {
  font-size: 16px;
  margin-bottom: 0;
}

.radio-round input[type="radio"] + label span {
  border-radius: 50%;
}

.radio-round input[type="radio"] + label span::before {
  border-radius: 50%;
}

/*===== Radio Style 1 =====*/
.radio-style-1 input[type="radio"] + label span {
  border-color: #542DED;
}

.radio-style-1 input[type="radio"] + label span::before {
  background-color: #542DED;
}

.radio-style-1 input[type="radio"]:checked + label span::before {
  transform: scale(1);
}

/*===== Radio Style 2 =====*/
.radio-style-2 input[type="radio"] + label span {
  border-color: #542DED;
}

.radio-style-2 input[type="radio"] + label span::before {
  background-color: #542DED;
}

.radio-style-2 input[type="radio"]:checked + label span::before {
  transform: scale(0.8);
}

/*===== Radio Style 3 =====*/
.radio-style-3 input[type="radio"] + label span {
  border-color: #7D7D7D;
}

.radio-style-3 input[type="radio"] + label span::before {
  background-color: #7D7D7D;
}

.radio-style-3 input[type="radio"]:checked + label span::before {
  transform: scale(1);
}

/*===== Radio Style 4 =====*/
.radio-style-4 input[type="radio"] + label span {
  border-color: #7D7D7D;
}

.radio-style-4 input[type="radio"] + label span::before {
  background-color: #7D7D7D;
}

.radio-style-4 input[type="radio"]:checked + label span::before {
  transform: scale(0.8);
}

/*===== Select Style 1 =====*/
.select-style-1 {
  margin-top: 16px;
  position: relative;
}

.select-style-1 label {
  margin-bottom: 10px;
  font-size: 13px;
  margin-left: 18px;
  font-weight: 300;
  text-align: left !important;
}

.select-style-1 .select-items {
  position: relative;
}

.select-style-1 .select-items .select-position {
  position: relative;
}

.select-style-1 .select-items .select-position::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
  display: block;
  height: 8px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 8px;
}

.select-style-1 .select-items i {
  position: absolute;
  top: 1px;
  left: 10px;
  font-size: 24px;
  color: #fff;
}

/*===== Select Style 2 =====*/
.select-style-2 {
  margin-top: 16px;
  position: relative;
}

.select-style-2 label {
  margin-bottom: 10px;
  font-size: 13px;
  margin-left: 18px;
  font-weight: 300;
  text-align: left !important;
}

.select-style-2 .select-items {
  position: relative;
}

.select-style-2 .select-items .select-position {
  position: relative;
}

.select-style-2 .select-items .select-position::after {
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  content: '';
  display: block;
  height: 8px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 8px;
}

.select-style-2 .select-items i {
  position: absolute;
  top: 1px;
  left: 10px;
  font-size: 24px;
  color: #000;
}

.select-style-2 .select-items.select .nice-select {
  padding: 0 15px;
}

/*===== Select Style 3 =====*/
.select-style-3 {
  margin-top: 16px;
  position: relative;
}

.select-style-3 label {
  margin-bottom: 10px;
  font-size: 13px;
  margin-left: 18px;
  font-weight: 300;
  text-align: left !important;
}

.select-style-3 .select-items {
  position: relative;
}

.select-style-3 .select-items .select-position {
  position: relative;
}

.select-style-3 .select-items .select-position::after {
  border-bottom: 2px solid #542DED;
  border-right: 2px solid #542DED;
  content: '';
  display: block;
  height: 8px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 8px;
}

.select-style-3 .select-items i {
  position: absolute;
  top: 2px;
  left: 10px;
  font-size: 24px;
  color: #542DED;
}

.select-style-3 .select-items.select .nice-select {
  padding: 0 15px;
}

/*===== Select Style 4 =====*/
.select-style-4 {
  margin-top: 16px;
  position: relative;
}

.select-style-4 label {
  margin-bottom: 10px;
  font-size: 13px;
  margin-left: 18px;
  font-weight: 300;
  text-align: left !important;
}

.select-style-4 .select-items {
  position: relative;
}

.select-style-4 .select-items .select-position {
  position: relative;
}

.select-style-4 .select-items .select-position::after {
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  content: '';
  display: block;
  height: 8px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 8px;
}

.select-style-4 .select-items i {
  position: absolute;
  top: 2px;
  left: 10px;
  font-size: 24px;
  color: #000;
}

.select-style-4 .select-items.select .nice-select {
  padding: 0 15px;
}

/*===== form Style =====*/
.single-form {
  margin-top: 16px;
  position: relative;
}

.single-form label {
  margin-bottom: 10px;
  font-size: 13px;
  margin-left: 18px;
  font-weight: 300;
  text-align: left !important;
}

.single-form .form-input {
  position: relative;
}

@media (max-width: 767px) {
  .single-form .form-input + .form-input {
    margin-top: 16px;
  }
}

.single-form .form-input textarea,
.single-form .form-input input {
  width: 100%;
  height: 40px;
  padding: 0 15px;
  padding-left: 40px;
  border-radius: 4px;
  transition: all 0.3s linear;
  border: 1px solid transparent;
}

.single-form .form-input textarea {
  padding-top: 7px;
  resize: none;
  height: 120px;
}

.single-form .form-input i {
  position: absolute;
  top: 1px;
  left: 10px;
  font-size: 24px;
}

.single-form .form-input img {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.single-form .form-input .form-error {
  font-size: 13px;
  margin-top: 5px;
}

.single-form .form-input.form textarea,
.single-form .form-input.form input {
  padding: 0 15px;
}

/*===== Form Default Style =====*/
.form-default.form-border .form-input textarea,
.form-default.form-border .form-input input {
  border-color: #7D7D7D;
  background-color: transparent;
}

.form-default label {
  color: #4C4C4C;
}

.form-default .form-input textarea,
.form-default .form-input input {
  color: #4C4C4C;
  background-color: #EFEFEF;
}

.form-default .form-input textarea:focus,
.form-default .form-input input:focus {
  border-color: #542DED;
}

.form-default .form-input i {
  color: #7D7D7D;
}

.form-default .form-input .form-error {
  color: #7D7D7D;
}

/*===== Form White Style =====*/
.form-white.form-border .form-input textarea,
.form-white.form-border .form-input input {
  border-color: rgba(255, 255, 255, 0.24);
  background-color: transparent;
}

.form-white label {
  color: #fff;
}

.form-white .form-input textarea,
.form-white .form-input input {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}

.form-white .form-input textarea:focus,
.form-white .form-input input:focus {
  border-color: #00D4E0;
}

.form-white .form-input i {
  color: rgba(255, 255, 255, 0.6);
}

.form-white .form-input .form-error {
  color: #fff;
}

/*===== Form Primary Style =====*/
.form-primary.form-border .form-input textarea,
.form-primary.form-border .form-input input {
  border-color: #542DED;
  background-color: transparent;
}

.form-primary label {
  color: #542DED;
}

.form-primary .form-input textarea,
.form-primary .form-input input {
  color: #542DED;
  background-color: #EEE6FD;
}

.form-primary .form-input textarea:focus,
.form-primary .form-input input:focus {
  border-color: #542DED;
}

.form-primary .form-input i {
  color: #542DED;
}

.form-primary .form-input .form-error {
  color: #542DED;
}

/*===== Form Secondary Style =====*/
.form-secondary.form-border .form-input textarea,
.form-secondary.form-border .form-input input {
  border-color: #00ACB2;
  background-color: transparent;
}

.form-secondary label {
  color: #00ACB2;
}

.form-secondary .form-input textarea,
.form-secondary .form-input input {
  color: #00ACB2;
  background-color: #DFFAFA;
}

.form-secondary .form-input textarea:focus,
.form-secondary .form-input input:focus {
  border-color: #00ACB2;
}

.form-secondary .form-input i {
  color: #00ACB2;
}

.form-secondary .form-input .form-error {
  color: #00ACB2;
}

/*===== Form Success Style =====*/
.form-success.form-border .form-input textarea,
.form-success.form-border .form-input input {
  border-color: #7CB637;
  background-color: transparent;
}

.form-success label {
  color: #7CB637;
}

.form-success .form-input textarea,
.form-success .form-input input {
  color: #7CB637;
  background-color: #F1F8E8;
}

.form-success .form-input textarea:focus,
.form-success .form-input input:focus {
  border-color: #7CB637;
}

.form-success .form-input i {
  color: #7CB637;
}

.form-success .form-input .form-error {
  color: #7CB637;
}

/*===== Form Info Style =====*/
.form-info.form-border .form-input textarea,
.form-info.form-border .form-input input {
  border-color: #00C2FE;
  background-color: transparent;
}

.form-info label {
  color: #00C2FE;
}

.form-info .form-input textarea,
.form-info .form-input input {
  color: #00C2FE;
  background-color: #D8F5FF;
}

.form-info .form-input textarea:focus,
.form-info .form-input input:focus {
  border-color: #00C2FE;
}

.form-info .form-input i {
  color: #00C2FE;
}

.form-info .form-input .form-error {
  color: #00C2FE;
}

/*===== Form Caution Style =====*/
.form-caution.form-border .form-input textarea,
.form-caution.form-border .form-input input {
  border-color: #FFBE27;
  background-color: transparent;
}

.form-caution label {
  color: #FFBE27;
}

.form-caution .form-input textarea,
.form-caution .form-input input {
  color: #FFBE27;
  background-color: #FFFDE6;
}

.form-caution .form-input textarea:focus,
.form-caution .form-input input:focus {
  border-color: #FFBE27;
}

.form-caution .form-input i {
  color: #FFBE27;
}

.form-caution .form-input .form-error {
  color: #FFBE27;
}

/*===== Form Error Style =====*/
.form-error.form-border .form-input textarea,
.form-error.form-border .form-input input {
  border-color: #FF4B22;
  background-color: transparent;
}

.form-error label {
  color: #FF4B22;
}

.form-error .form-input textarea,
.form-error .form-input input {
  color: #FF4B22;
  background-color: #FBE8E7;
}

.form-error .form-input textarea:focus,
.form-error .form-input input:focus {
  border-color: #FF4B22;
}

.form-error .form-input i {
  color: #FF4B22;
}

.form-error .form-input .form-error {
  color: #FF4B22;
}

/*===== Form Elements Style =====*/
.form-elements-radio .radio-style li,
.form-elements-radio .checkbox-style li,
.form-elements-checkbox .radio-style li,
.form-elements-checkbox .checkbox-style li {
  padding-top: 14px;
  display: inline-block;
}

.form-elements-radio .radio-style li + li,
.form-elements-radio .checkbox-style li + li,
.form-elements-checkbox .radio-style li + li,
.form-elements-checkbox .checkbox-style li + li {
  margin-left: 20px;
}

.form-white-wrapper {
  background-color: #161359;
  padding: 5px;
}

.form-white-wrapper .heading-3 {
  color: #fff;
}
ul#uniler2,ul#sehirler {
    list-style: none;
    margin: 0;
    height: 180px;
    overflow-y: scroll;
    padding: 0px 10px 0px 0px;
    overflow-x: hidden;
}
ul#aktif,ul#stanfiltre {list-style: none;
    margin: 0;padding: 0px 10px 0px 0px;}
.filter-style-3 .filter-type .type-check .count { height: 20px; line-height: 20px; padding: 0 8px; border-radius: 18px; font-weight: 500; font-size: 12px; background-color: #EFEFEF; color: rgba(0, 0, 0, 0.64); float: right; display: block; margin-top: 3px; position: absolute; top: 50%; right: 0; transform: translateY(-50%); }
.filter-style-2,.filter-style-3,.filter-style-4,.filter-style-5,.filter-style-6,.filter-style-7,.filter-style-8,.filter-style-9{
	background-color: #f1f1f1!important;
}
