.overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100vw;
    z-index: 50;
    font-family: "Public sans";
    background: rgba(0, 0, 0, 0.7);
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 90%;
    max-width: 350px;
    height: 500px;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0px 0px 30px rgba(17, 17, 17, 0.3);
    overflow-y: scroll;
}
.container::-webkit-scrollbar {
    width: 3px;
}
.container::-webkit-scrollbar-track {
    background: inherit;
}
.container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.cancel_container {
    height: 17px;
    width: 17px;
    margin-left: auto;
    position: sticky;
    right: 10px;
    top: 10px;
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
}

.main {
    margin: 0px auto 10px auto;
}
.head {
    font-size: 14px;
    font-weight: 500;
    margin: 20px 0px;
    text-align: center;
}
.img_container {
    margin: 0px auto;
    width: 100%;
}
.main img {
    width: 100%;
}

.share_buttons {
    width: 90%;
    margin: 0px auto 20px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.share_buttons button {
    background: var(--celebrityschool-purple);
    display: flex;
    justify-content: center;
    border: none;
    outline: none;
    font-family: "Public sans", sans-serif;
    height: 40px;
    align-items: center;
    padding: 0px 20px;
    cursor: pointer;
    border-radius: 5px;
    color: #fff;
}
.share_buttons button p {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 10px;
    font-weight: 500;
    margin-left: 10px;
}

.download_btn {
    background: var(--celebrityschool-purple);
    display: flex;
    justify-content: center;
    border: none;
    outline: none;
    font-family: "Public sans", sans-serif;
    height: 40px;
    width: 100%;
    margin: 0px auto;
    align-items: center;
    padding: 0px 20px;
    cursor: pointer;
    border-radius: 5px;
    color: #fff;
}
.download_btn p {
    margin-left: 10px;
}
