/* upScroller */
.scroll-up {
    height: 70px;
    width: 40px;
    color: #fff;
    font-size: 2rem;
    background-color: rgba(0, 204, 255, 0.1);
    position: absolute;
    bottom: -250px;
    left: 3vw;
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding: 5px;
    z-index: 6;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    cursor: pointer;
    transition: transform 0.5s ease;
    box-shadow: 0 -7px 7px rgb(15, 15, 15);
    transition: all 0.3s ease-in-out;
}
.scroll-up:hover {
    transform: scale(1.04);
}
.noMatchAlert {
    font-size: 4rem;
}
.explore-exos-container {
    position: absolute;
    /* top: 70px; */
    top: 2000px;
    width: 100%;
    z-index: 2;
    color: #fff;
    padding: 10px 20px;
    height: auto;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all .3s ease-in-out;
    gap: 5px;
    max-width: 1600px;
}
.searchBar {
    flex-direction: column;
}
.searchBar .filters {
    position: absolute;
    top: 90px;
    font-size: 1.5rem;
    background-color: rgba(0, 204, 255, 0.1);
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 10px;
    min-width: 50%;
    z-index: 2;
    height: 0;
    display: none;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    transition: all 0.5s ease-in-out;
    overflow-y: scroll;
    overflow-x: hidden;
    box-shadow: 0 7px 7px rgb(15, 15, 15);
}
.searchBar .filters li:hover {
    transform: scale(1.02);
    cursor: pointer;
}
.dummy {
    flex-direction: row;
}
.dummy i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1/1;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 204, 255, 0.1);
    border: 2px solid rgba(0, 204, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    padding: 15px;
}
.dummy i:hover {
    transform: scale(1.05);
    border: 2px solid #fff;
}
.exos-content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
    margin: 10px;
    margin-top: 0;
    transition: transform 0.15s ease;
}
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #2abfe4, #0298be, #2abfe4);
    border-radius: 10px;
    cursor: pointer;
}
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}
.exos-card {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 220px;
    height: 320px;
    background-color: rgba(0, 204, 255, 0.1);
    border: 2px solid #fff;
    border-radius: 20px;
    font-size: 1rem;
    margin: 10px;
    cursor: pointer;
    overflow: hidden;
    padding: 5px;
    transition: transform 0.2s ease;
}
.exos-card:hover {
    transform: scale(1.02);
    box-shadow: -7px 0px 7px rgb(15, 15, 15), 7px 7px 7px rgb(15, 15, 15);
}
.exoButtons {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin: 5px;
    padding: 5px 20px;
    transition: transform 0.15s ease;
    transition: opacity 0.15s ease;
}
.exoButtons .prev, .exoButtons .next, .range {
    width: 70px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 10px;
    background-color: rgba(0, 204, 255, 0.1);
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.range {
    cursor: auto;
}
.enter, .clear {
    cursor: pointer;
    padding: 0 5px;
    transition: transform 0.3s ease;
}
.clear:hover, .enter:hover {
    transform: scale(1.02);
}
.range {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    width: auto;
    padding: 10px;
    gap: 10px;
    transition: opacity 0.3s ease;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type = "number"] {
    background-color: transparent;
    outline: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    width: 60px;
    cursor: pointer;
}
input[type = 'number']::placeholder {
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.exoButtons .prev:hover, .exoButtons .next:hover {
    transform: scale(1.02);
}
.exos-content img {
    background-position: center;
    background-size: cover;
    width: 97%;
    height: 120px;
    border-radius: 10px;
    margin: 5px;
}
.exos-content h3 {
    margin: 0 5px;
    font-size: 1.2rem;
    width: 100%;
}
.exo-div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px 5px;
}
.explore-exos-container .main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    width: 100%;
    height: auto;
}
.explore-exos-container .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    flex-direction: column;
    flex: 1;
    margin: 20px;
    z-index: 5;
}
.explore-exos-container .image-container img {
    width: auto;
    height: 300px;
    border-radius: 20px;
}
.explore-exos-container .data-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    font-size: 1.4rem;
    gap: 5px;
    margin: 20px;
}
.data-container h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 3rem;
    margin-bottom: 20px;
}
.explore-exos-container .back {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 120px;
    height: 40px;
    align-self: flex-end;
    border: 2px solid #fff;
    border-radius: 10px;
    background-color: rgba(0, 204, 255, 0.1);
    color: #fff;
    transition: transform 0.15s ease;
}
.explore-exos-container .back:hover {
    transform: scale(1.01);
}

@media (min-width: 1100px) {
    .explore-exos-container .main-container {
        flex-direction: row;
        word-break: break-word;
    }
    .explore-exos-container .image-container {
        align-self: flex-start;
    }
}
/* For the mobile view */
@media (max-width: 950px) {
    .scroll-up {
        left: 30px;
    }
    ::-webkit-scrollbar {
        width: 2px;
    }
    .noMatchAlert {
        font-size: 2rem;
    }
    .below-searchBar {
        display: flex;
        margin-bottom: 5px;
        z-index: 5;
    }
    .explore-exos-container .searchBar {
        position: sticky;
        top: 70px;
        z-index: 5;
    }
    .searchBar .filters {
        width: 90vw;
        gap: 10px;
        min-width: none;
    }
    .exoButtons {
        position: sticky;
        top: 150px;
        padding: 0;
    }
    .explore-exos-container {
        align-items: center;
        padding: 0 10px;
    }
    .exos-card {
        width: 220px;
        height: 330px;
    }
    .exos-content h3 {
        font-size: 1.5rem;
        word-break: break-word;
    }
    .exo-div {
        margin-top: 20px;
    }
    .range {
        font-size: 1rem;
        justify-content: space-between;
        gap: 2px;
        padding: 10px 5px;
    }
    .enter, .clear {
        padding: 0 5px;
    }
    .numBtn {
        margin: 0 2px;
    }
    .explore-exos-container .main-container {
        flex-direction: column;
        margin-top: 30px;
    }
    .explore-exos-container .image-container {
        margin: 0;
        margin-bottom: 30px;
        align-self: center;
    }
    .explore-exos-container .data-container {
        margin: 0;
        font-size: 1.4rem;
        gap: 10px;
    }
    .explore-exos-container .image-container img {
        width: auto;
        height: 200px;
        border-radius: 30px;
    }
    .data-container h3 {
        align-self: center;
        margin-bottom: 20px;
        font-size: 2.5rem;
        word-break: break-word;
    }
    .explore-exos-container .back {
        width: auto;
        height: auto;
        padding: 5px 10px;
        top: 130px;
        left: 0;
        margin: 5px;
        z-index: 5;
    }
}

@media (max-width: 600px) {
    .explore-exos-container .image-container img {
        height: auto;
        width: 320px;
        border-radius: 30px;
    }
    .searchBar .filters {
        top: 70px;
        font-size: 1.4rem;
    }
}

/* For mobiles having width less than 350px */
@media (max-width: 370px) {
    .noMatchAlert {
        font-size: 1.5rem;
    }
    input[type = "number"] {
        width: 40px;
    }
    .range {
        padding: 10px 2.5px;
        gap: 1px;
    }
    .enter, .clear {
        padding: 0 2.5px;
    }
    .exoButtons .prev, .exoButtons .next {
        padding: 1px;
    }
    .searchBar .filters {
        width: 80vw;
        gap: 10px;
        min-width: none;
        font-size: 1.2rem;
        word-break: break-word;
    }
}


