#overlay-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    text-align: center;
    z-index: 1;

}

#overlay-wrapper .cancel-icon {
    color: white;
    position: absolute;
    right: 32px;
    top: 32px;
    color: #ffffff99;

}

#overlay-wrapper .content {
    height: fit-content;
    width: 100%;

    max-width: calc(512px - 64px);
    border-radius: 16px;
    position: relative;
}

#overlay-wrapper .content .title {
    padding: 16px;
    color: #f0f4ff;

    border-radius: 6px;
    z-index: 1;
    position: relative;
}

#overlay-wrapper .content .body {
    margin-left: 32px;
    margin-right: 32px;
    padding: 32px;
    padding-bottom: 48px;
    color: #212733;
    background-color: #f0f4ff;
    border-radius: 0 0 6px 6px;


}

#overlay-wrapper .content h3 {
    position: relative;
    line-height: 1.25;
}

#overlay-wrapper .content .ribbon {
    position: absolute;
    left: -32px;
    top: 0;
    width: 512px;
}

#overlay-wrapper .overlay-background {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.505);
}

#overlay-wrapper .button-wrapper {
    position: absolute;
    right: 0;
    left: 0;
    bottom: -32px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

#overlay-wrapper button {
    width: 128px;
    height: 64px;
    border-radius: 8px;
    background-color: #0063b6;
    color: white;
    border-style: none;
    padding: 0;
    position: relative;
}

#overlay-wrapper button.confirm {
    background-color: #00b852;

}

#overlay-wrapper button.confirm .button-cap {
    background-color: #00ff72;
}

#overlay-wrapper.hide-share-options button.share {
    display: none;
}

#overlay-wrapper button .button-cap {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-color: #008aff;
    color: white;
    border-style: none;

    position: absolute;
    bottom: 10px;

    display: flex;
    justify-content: center;
    align-items: center;
}

#overlay-wrapper button:active .button-cap {
    position: unset;

}