

.share_back {
    position:absolute;
    z-index:20;
    width:100%;
    height:100%;
    top:0px;
    left:0px;
}

.share_options {
    position: absolute;
    z-index: 20;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border: 2px solid white;
    border-radius: 30px;
    box-shadow: 10px 10px 30px black;
    background-color: rgba(220 220 255 / 60%);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
}

.share_options .option {
    position: relative;
    padding: 33px 20px 20px 20px;
    margin: 20px;
    border: 3px solid rgb(108 108 108);
    border-radius: 20px;
    background-color: rgba(255 255 255 / 80%);
    font-size: 26px;
    white-space: nowrap;
}

.option.break {
    flex-basis: 100%;
    height: 0;
    padding:0;
    margin:0;
    border:none;
}

.option > .label {
    position: absolute;
    bottom: -40px;
    width: 100%;
    text-align: center;
    margin-left: -40px;
}

.option > .type {
    position:absolute;
    top:12px;
    left:16px;
    font-size:12px;
    color:rgb(190 190 190);
}