#share_id_panels {
    display: none;
    padding: 40px;

    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-grow: 1;
}

#share_id_panels h1 {
    font-size: 40px;
    margin-bottom: 50px;
}

#share_id_panels div {
    display: flex;
    justify-content: center;
    flex-grow: 0;
    flex-shrink: 0;
}

#share_id_panels div a:first-child {
    margin-right: 40px;
}

#share_id_panels div a {
    width: 300px;
    max-width: 80vw;

    background-color: #28afff;
    border: 3px solid rgba(255, 255, 255, 0.15);

    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);

    transition: 250ms ease-out box-shadow;
}

#share_id_panels div a:first-child {
    cursor: pointer;
}

#share_id_panels div a:first-child:hover {
    background-color: #28c6ff;
    box-shadow: 0 10px 25px 5px rgba(0, 0, 0, 0.33);
}

#share_id_panels div a:first-child:active {
    background-color: #1b9bc9;
}

#share_id_panels div a * {
    margin: 0;
    padding: 2px;
    color: white;
}

#share_id {
    color: black !important;
    outline: none !important;
    padding: 5px !important;
    border-radius: 5px !important;
    border: none !important;
    width: 75% !important;
}

#share_id_form {
    margin-top: 15px !important;
    display: flex;
    align-items: center;
    flex-direction: row !important;
}

#share_id_form button {
    height: fit-content !important;
    margin: 0 0 0 5px !important;
    background-color: #1965b2;
    border: none !important;
    border-radius: 8px !important;
    padding: 7px !important;
    cursor: pointer;
}

@media (max-width: 740px) {

    #share_id_panels div {
        flex-direction: column;
    }

    #share_id_panels div a:first-child {
        margin-right: 0;
        margin-bottom: 40px;
    }

}