.toggle-control {
  display: block;
  position: relative;
  padding-left: 15px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.toggle-control input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.toggle-control input:checked ~ .control {
  background-color: #3c53c7;
}
.toggle-control input:checked ~ .control:after {
  left: 27px;
}
.toggle-control .control {
  position: absolute;
  top: 15px;
  right: 10px;
  height: 20px;
  width: 45px;
  border-radius: 25px;
  background-color: darkgray;
  transition: background-color 0.15s ease-in;
}
.toggle-control .control:after {
  content: "";
  position: absolute;
    left: 3px;
    top: 2.5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
  background: white;
  transition: left 0.15s ease-in;
}
.toggle-box{
    width: 90%;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 10px 0;
    height: 50px;
    padding: 0 4px;
    display: flex;
    flex-direction: column;
    line-height: 50px;
}


#slider-range span{
    border-radius: 50%;
    outline: none !important;
}
#slider-range div{
    background: #3c53c7;
    top: -0.3px !important;
}

[slider] {
    width: 90%;
    position: relative;
    height: 5px;
    margin: 45px auto;
    direction: ltr;
    height: 1px;
    /* margin: auto; */

}

[slider] > div {
  position: absolute;
  left: 13px;
  right: 15px;
  height: 5px;
}
[slider] > div > [inverse-left] {
  position: absolute;
  left: 0;
  height: 5px;
  border-radius: 10px;
  background-color: #CCC;
  margin: 0 7px;
}

[slider] > div > [inverse-right] {
  position: absolute;
  right: 0;
  height: 5px;
  border-radius: 10px;
  background-color: #CCC;
  margin: 0 7px;
}


[slider] > div > [range] {
  position: absolute;
  left: 0;
  height: 5px;
  border-radius: 14px;
  background-color: #3c53c7;
}

[slider] > div > [thumb] {
  position: absolute;
  top: -7px;
  z-index: 2;
  height: 20px;
  width: 20px;
  text-align: left;
  margin-left: -11px;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  background-color: #FFF;
  border-radius: 50%;
  outline: none;
}

[slider] > input[type=range] {
  position: absolute;
  pointer-events: none;
  -webkit-appearance: none;
  z-index: 3;
  height: 14px;
  top: -2px;
  width: 100%;
  opacity: 0;
}

div[slider] > input[type=range]:focus::-webkit-slider-runnable-track {
  background: transparent;
  border: transparent;
}

div[slider] > input[type=range]:focus {
  outline: none;
}

div[slider] > input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  width: 28px;
  height: 28px;
  border-radius: 0px;
  border: 0 none;
  background: red;
  -webkit-appearance: none;
}

div[slider] > input[type=range]::-ms-fill-lower {
  background: transparent;
  border: 0 none;
}

div[slider] > input[type=range]::-ms-fill-upper {
  background: transparent;
  border: 0 none;
}

div[slider] > input[type=range]::-ms-tooltip {
  display: none;
}

[slider] > div > [sign] {
  opacity: 0;
  position: absolute;
  margin-left: -15px;
  top: -39px;
  z-index:3;
  background-color: #3c53c7;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 28px;
  -webkit-border-radius: 28px;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}

[slider] > div > [sign]:after {
  position: absolute;
  content: '';
  left: 0;
  border-radius: 16px;
  top: 19px;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top-width: 16px;
  border-top-style: solid;
  border-top-color: #3c53c7;
}

[slider] > div > [sign] > span {
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
}

[slider]:hover > div > [sign] {
  opacity: 1;
}


.cbx {
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
    padding: 10px 10px 5px 0;
    display: flex;
}
.cbx span {
  display: inline-block;
  vertical-align: middle;
  /*transform: translate3d(0, 0, 0);*/
}
.cbx span:first-child {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #B9B8C3;
  transition: all 0.2s ease;
}
.cbx span:first-child svg {
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 3px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #506EEC;
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
  transition-delay: 0.2s;
}
.cbx span:last-child {
  margin-left: 8px;
}
.cbx span:last-child:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  /*height: 1px;*/
  width: 100%;
  background: #B9B8C3;
  transform-origin: 0 0;
  transform: scaleX(0);
}
.cbx:hover span:first-child {
  border-color: #3c53c7;
}

.inp-cbx:checked + .cbx span:first-child {
  border-color: #3c53c7;
  background: #3c53c7;
  animation: check 0.6s ease;
}
.inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(2.2);
  opacity: 0;
  transition: all 0.6s ease;
}
.inp-cbx:checked + .cbx span:last-child {
  color: #B9B8C3;
  transition: all 0.3s ease;
}
.inp-cbx:checked + .cbx span:last-child:after {
  transform: scaleX(1);
  transition: all 0.3s ease;
}

@keyframes check {
  50% {
    transform: scale(1.2);
  }
}

.accordion {
    background: #FFF;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 5px;
    padding: 0;
    margin: 0;
}

.accordion .link {
    cursor: pointer;
    display: block;
    padding: 15px;
    color: #4D4D4D;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    text-align: right;
    width: 95%;
    margin: auto;
}

.accordion li:last-child .link {
    border-bottom: 0
}

.accordion li i {
    position: absolute;
    top: 16px;
    left: 12px;
    font-size: 18px;
    color: #595959;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease
}

.accordion li i.fa-chevron-down {

    font-size: 16px;
}

.accordion li.open .link {
    color: #000;

}

.accordion li.open i {
    color: #000
}

.accordion li.open i.fa-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg)
}

.submenu {
    display: none;
    font-size: 14px;
    padding: 0;
    text-align: right;
    border-top: 1px solid #ccc;
}



.pricesubmit:hover {
        background-color: #3c53c7;
        color: #fff !important;
}
.pricesubmit:active {
transform: scale(0.95);
}
.pricesubmit {
    padding: 7px 2rem;
    position: relative;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #3c53c7;
    color: #3c53c7 !important;
    background-color: transparent;
    text-align: center;
    user-select: none;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 20px auto;
}
.inputright{
    float: left;
    width: 100%;
    outline: none !important;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.inputleft{
    float: right;
    width: 100%;
    outline: none !important;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.c-filter__range li:after {
    content: attr(data-currency);
    text-align: center;
    margin-top: 30px;
}
.c-filter__ranger li:after{
    content: attr(data-currency);
    text-align: center;
    margin-top: 30px;
}
.c-filter__range li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    text-align: center;
    font-size: 13px;
    font-size: .929rem;
    line-height: 1.692;
    letter-spacing: .3px;
    color: #858585;
    padding: 13px 10px 20px;
}
.c-filter__range {
    list-style: none;
    float: right;
width: 45%;
}
.c-filter__range li {
    text-align: center;
    font-size: 13px;
    font-size: .929rem;
    line-height: 1.692;
    letter-spacing: .3px;
    color: #858585;
}
*, :after, :before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}
.c-filter__range li:after, .c-filter__range li:before {
    display: block;
}

.c-filter__range li:before {
    content: attr(data-label);
text-align: center;
margin-top: -20px;
}


.c-filter__ranger li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    text-align: center;
    font-size: 13px;
    font-size: .929rem;
    line-height: 1.692;
    letter-spacing: .3px;
    color: #858585;
    padding: 13px 10px 20px;
}
.c-filter__ranger {
    list-style: none;
    float: left;
width: 45%;
}
.c-filter__ranger li {
    text-align: center;
    font-size: 13px;
    font-size: .929rem;
    line-height: 1.692;
    letter-spacing: .3px;
    color: #858585;
}

.c-filter__ranger li:after, .c-filter__ranger li:before {
    display: block;
}

.c-filter__ranger li:before {
    content: attr(data-label);
text-align: center;
margin-top: -20px;
}

#filterbox{
    align-items: center;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    border-radius: 5px;
}
.filter-one{
        border: 1px solid #ccc;
        width: 100%;
        border-radius: 5px;
        background: #fff;
        margin: 10px 0;
}
#search_adv{

}
.search_adv{
text-align: center;
cursor: default;
}


@media (max-width: 991.98px){
    #filterbox{
    overflow-y: scroll !important;
    border-radius: 0;
    bottom: 0 !important;
    height: auto !important;
    position: fixed !important;
    padding: 0 15px !important;
    padding-bottom: 100px !important;
    width: 100% !important;
    margin: 0 !important;
    z-index: 99999 !important;
    top: 0px !important;
    bottom: 0 !important;
    right: 0px !important;
    background: #f8f8f8;
    }
    #filterbox::-webkit-scrollbar{
        width: 2px;
    }
    .search_adv{
        padding: 5px 0 !important;
    }
}
    .active--filters{
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 7px 15px 15px !important;
    background: #fff;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 10px 0 10px 0;
    }
    .active--filters--div{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 180px;
    overflow: auto;
    }
    .active--filters--div::-webkit-scrollbar, .submenu--check::-webkit-scrollbar{
      width: 3px !important;  
    }
    .active--filters--div::-webkit-scrollbar-thumb, .submenu--check::-webkit-scrollbar-thumb{
      background: #a4a4a4 !important;  
    }
    .active--filters--div::-webkit-scrollbar-track, .submenu--check::-webkit-scrollbar-track{
      box-shadow: none !important;  
    }
    .submenu--check{
    max-height: 475px;
    margin-left: 10px;
    overflow: auto;
    }
    .priceinfo--btn{
    background: #3c53c7;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 5px 0;
    }
    .active--filters--div div{
        width: fit-content;
    }
    .active--filters--header{
    padding: 0 0 10px;
    color: #4D4D4D;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
    display: flex;
    border-bottom: 1px solid #ccc;
    margin: 0 0 5px;
    justify-content: center;
    }
    .active--filters--on{
        display: flex !important;
    }
.active-filter-title{
    width: 100%;
    display: flex;
    align-items: flex-end;

}
.resetdiv{
    display: flex;
    justify-content: flex-end;  
}
.reset--btn{
    margin: 0 17px 0 0;
    padding: 4px 10px;
    color: #fff;
    background: #3c53c7;
    width: 105px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    font-size: 12px;
    cursor: pointer;
    user-select: none;
    box-shadow: 3px 3px 0px 0px #2b3b8a;
}
.reset--btn:active {
    box-shadow: inset 3px 3px 3px 0px #2b3b8a !important;
}
.delete--f{
    background: #3c53c7;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 5px 0;
}
.delete--f--ico{
    margin-right: 5px;
    cursor: pointer;
    color: #fff;
    font-size: 11px;
}
.accordion li.open .firstfilter{
    -webkit-transform: rotate(0deg) !important;
    -ms-transform: rotate(0deg) !important;
    -o-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
}
.filterboxsvg{
    position: absolute;
    left: 50px;
}
.filterboxsvg path, .filterboxsvg circle {
  transition: all 0.35s;
}
#search_adv:hover #bar-top circle {
  transform: translateX(40px);
}
#search_adv:hover #bar-top path {
  d: path("M.5 8.5L61 8.5M88 8.5L97 8.5");
}
#search_adv:hover #bar-middle circle {
  transform: translateX(-27px);
}
#search_adv:hover #bar-middle path {
  d: path("M.5 8.5L19 8.5M46 8.5L97 8.5");
}
#search_adv:hover #bar-bottom circle {
  transform: translateX(12px);
}
#search_adv:hover #bar-bottom path {
  d: path("M.5 8.5L45 8.5M71 8.5L96 8.5");
}

.resetdiv{
    display: flex;
    align-items: center;
    width: 100%;
}
.printfil{
    margin: 7px 0 0 7px;
    padding: 4px 15px;
    color: #fff;
    background: #3c53c7;
    border-radius: 30px;
    display: inline-block;
    transition: .5s;
    font-size: 12px;
    user-select: none;
    min-width: 70px;
    text-align: center;
    box-shadow: 3px 2px 4px 0px #1a194e;
}