.location-suggestion {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.location-suggestion .location-card {
    margin: 0;
}
.location-suggestion .location-card .location-radio {
    display: none;
}
.location-suggestion .location-card .location-content {
    display: flex;
    align-items: center;
    gap: 3px;
    background: #fff;
    border-radius: 46px;
    padding: 5px 10px;
    font-size: 14px;
    text-decoration: none;
    line-height: normal;
    font-weight: 600;
    color: #a3243b;
    border: 1px solid #a3243b;
    cursor: pointer;
    transition: all 0.3s ease;
}
.location-suggestion .location-card .location-radio:checked+.location-content {
    background: #a3243b;
    color: #fff;
}
.wishicon {
    position: absolute;
    top: 17px;
    right: 28px;
    z-index: 1;
    cursor: pointer;
}
@media (hover: hover) {
    .wishicon :hover {
        transform: scale(1.08);
    }
}

.wishicon svg path {
    stroke: #fff;
    stroke-width: 2;
    fill: rgba(0, 0, 0, 0.5);    
}

.wishicon .fill-svg path {
    fill: #a3243b;
}

/* ------------------ */
.autocomplete-container {
    position: relative;
    width: 100%;
    /* max-width: 400px; */
    margin: 0 auto;
    top: -5px;
  }
  
  /* Input styling */
  .autocomplete-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Loader styling */
  .loader {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 12px;
    color: #666;
  }
  
  /* Dropdown results styling */
  .autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    /* border: 1px solid #ccc; */
    border-radius: 4px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
  }
  
  /* Individual result item styling */
  .autocomplete-item {
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
  }
  
  .autocomplete-item:last-child {
    border-bottom: none;
  }
  
  /* Hover effect */
  .autocomplete-item:hover {
    background: #f0f0f0;
  }
  /* ------------------ */

.pageloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../../front/img/green-loader.gif) center no-repeat #fff;
}

.switch {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 34px;
}

.switch input {
    display: none !important;
}

.slider.round {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

#ctrLoader {
    position: fixed;
    top: 50%;
    left: 50.4%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
    /* Initially hidden */
}

.ctrLoader {
    border: 4px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    border-top: 4px solid #a3243b;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

.slider.round {
    background-color: red;
}

.slider.round:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #2ab934;
}

.copyFilterButton{
    color: #a3243b !important;
    border-color: #a3243b !important;
}

.copyFilterButton:hover{
    background-color: #a3243b !important;
    color: #fff !important;
    border-color: #a3243b !important;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(55px);
}

/*------ ADDED CSS ---------*/
.slider.round:after {
    content: 'OFF';
    color: #fff;
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    font-size: 12px;
    font-weight: 600;
}

input:checked+.slider:after {
    content: 'ON';
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.select2-container--default .select2-selection--single {
    border:none !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #787878 !important;
    font-size: 14px !important;
}