/** Explore CSS **/
.explore-posts-toggle {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 10px;
}
.explore-posts-toggle .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-bottom: 0 !important;
}
.explore-posts-toggle .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
.explore-posts-toggle .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
.explore-posts-toggle .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
.explore-posts-toggle input:checked + .slider {
    background-color: #0d13a3;
}
.explore-posts-toggle input:focus + .slider {
    box-shadow: 0 0 1px #0d13a3;
}
.explore-posts-toggle input:checked + .slider:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px);
}
/* Rounded sliders */
.explore-posts-toggle .slider.round {
    border-radius: 34px;
}
.explore-posts-toggle .slider.round:before {
    border-radius: 50%;
}
.atrip-filters {
    display: none;
    margin-top: -30px;
}
.frontend .explore-results.atrip {
    height: calc(100vh - 455px);
}