/* BASIC css start */
.utilBtns {
    display: flex;
    flex-flow: row nowrap;
    gap: 1rem;
    position: fixed;
    top: calc(100vh - 5rem);
    right: 2rem;
    z-index: 3;
}
.utilBtns button {
    width: 3rem;
    height: 3rem;
    background: var(--white);
    border-radius: 3rem;
    text-align: center;
    box-shadow: 2px 2px 8px #00000030;
}
.utilBtns button:hover {
    transition: 0.3s;
    background: var(--lightgrey);
}
.utilBtns button svg {
    width: 3rem;
}
.recentViewdMenu {
    width: 100%;
    height: 16rem;
    background: #f9f9f9;
    box-shadow: -2px -2px 8px #00000010;
    position: fixed;
    top: calc(100vh - 16rem);
    display: none;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: space-evenly;
    z-index: 3;
    padding: 0 2rem;
}
.recentViewdWrapper {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    display: flex;
}
.recentViewdCloseBtn {
    cursor: pointer;
    width: 1.25rem;
    height: 1.25rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 5;
}
.recentViewdCloseBtn line {
    stroke: #000000;
    stroke-width: 2;
    stroke-linecap: round;
}
.recentViewdContainer {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.recentViewdItem {
    width: 9rem;
    height: 12rem;
}
.recentViewdImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BASIC css end */

