.grid-wrapper>div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-wrapper>div>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;

}

.grid-wrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;

}

.grid-wrapper .wide {
    grid-column: span 2;

}

.grid-wrapper .tall {
    grid-row: span 2;
}

.grid-wrapper .big {
    grid-column: span 2;
    grid-row: span 2;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    max-height: 300px;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    max-width: 100%;
    max-height: 300px;
    margin: 0 auto;
    /* object-fit: cover; */
}

.social-btn {
    color: rgb(0 0 0 / 65%) !important;
    font-size: 12px;
    font-weight: bold;
}

.social-counter {
    color: rgb(0 0 0 / 75%) !important;
    font-size: 14px;
    /* font-weight:; */
}

.social-btn>span>i {
    /* vertical-align: middle; */
    font-size: 15px;
    font-weight: bolder;
    -webkit-text-stroke: 0.5px;
}

.profile-cover {
    background-color: white;
    position: relative;
    width: 100%;
    min-height: 180px;
}

.profile-cover>img {
    width: 100%;
    height: 100%;

}

.profile-profile {
    width: 125px;
    height: 125px;
    position: absolute;
    /* top: 55%; */
    bottom: 10px;
    left: 10px;
    justify-content: center;
    align-items: center;
    /* left: 10px; */
}

.profile-profile>img {
    width: 100%;
    border-radius: 100%;
    border: 2px solid rgb(255, 255, 255);
}

.profile-upload-icon {
    position: absolute;
    display: flex;
    align-items: center;
    bottom: 15px;
    right: -5px;
    background-color: rgb(233, 233, 233);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    justify-content: center;
    font-size: large;
}

.profile-remove-icon {
    position: absolute;
    display: flex;
    align-items: center;
    bottom: -5px;
    right: 25px;
    background-color: rgb(233, 233, 233);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    justify-content: center;
    font-size: large;
    font-weight: bolder;
}

.profile-cover-icon {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

/* .profile-cover-icon>a {
     background-color: transparent;
}

.profile-cover-icon>a:hover {
    background-color: blue;
} */

.show-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 45%;
    background-color: rgb(240, 240, 240);
    text-align: center;
    font-size: larger;
    padding: 7px;
    color: rgb(59, 59, 59);
    font-weight: bolder;
    height: 40px;
    width: 40px;

}


.preview {
    overflow: hidden;
    width: 160px;
    height: 160px;
    margin: 10px;
    border: 1px solid red;
}

.upload-img-section {
    max-height: 250px;
    overflow: auto;
    margin-bottom: 100px;

}

.upload-img-box {
    position: relative;
    overflow: hidden;
    margin: 5px;
    height: 100px;
    width: 100px;
    border: 1px solid;
    border-radius: 10px;
}

.upload-section-img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

video::-webkit-media-controls {
    display: none;
}

.video-player {
    height: 250px;
}

/* Could Use thise as well for Individual Controls */
video::-webkit-media-controls-play-button {}

video::-webkit-media-controls-volume-slider {}

video::-webkit-media-controls-mute-button {}

video::-webkit-media-controls-timeline {}

video::-webkit-media-controls-current-time-display {}


/* video::-webkit-media-controls-panel {
    background-image: linear-gradient(transparent, transparent) !important;
} */

.offcanvas-backdrop {
    z-index: 1060 !important;
}


/* ###############         Bottom Sheet      ######################### */

.bottom-sheet {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    pointer-events: none;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.1s linear;

}

.bottom-sheet.show {
    opacity: 1;
    pointer-events: auto;
}

.bottom-sheet .sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    /* z-index: -1; */
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background: #000;
}

.bottom-sheet .content {
    width: 100%;
    position: relative;
    background: #fff;
    max-height: 100vh;
    height: 50vh;
    max-width: 1150px;
    /* padding: 25px 30px; */
    transform: translateY(100%);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: 0.3s ease;
}

.bottom-sheet.show .content {
    transform: translateY(0%);
}

.bottom-sheet.dragging .content {
    transition: none;
}

.bottom-sheet.fullscreen .content {
    border-radius: 0;
    overflow-y: hidden;
}

.bottom-sheet .header {
    display: flex;
    justify-content: space-between;
}

.header .drag-icon {
    cursor: grab;
    user-select: none;
    padding: 15px;
    margin-top: -15px;
}

.header .drag-icon span {
    height: 4px;
    width: 40px;
    display: block;
    background: #C7D0E1;
    border-radius: 50px;
}

.bottom-sheet .body {
    height: 100%;
    overflow-y: auto;
    padding: 15px 0 40px;
    scrollbar-width: none;
}

.bottom-sheet .body::-webkit-scrollbar {
    width: 0;
}

.bottom-sheet .body h2 {
    font-size: 1.8rem;
}

.bottom-sheet .body p {
    margin-top: 20px;
    font-size: 1.05rem;
}
