.all-set-overlay-wrapper {
    position: fixed;
    top: 50px;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(16,17,25, .6);
    z-index: 9999;
    /* display: flex; */
    display: none;
    justify-content: center;
    padding: 23px 20px 10px 20px;
}

.all-set-overlay-wrapper.show {
    display: flex;
}


.all-set-overlay-wrapper .all-set-overlay {
    background-color: #09090E;
    height: fit-content;
    border-radius: 11px;
    box-shadow: 0px 2px 10px 10px rgba(0,0,0,0.18);
    position: fixed;
    padding: 25px 45px 40px 45px;
    font-family: "montserrat";
    font-size: 14px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.all-set-overlay .all-set-title {
    font-size: 28px;
    margin-bottom: 19px;
}

.all-set-overlay .all-set-paragraph {
    margin-bottom: 20px;
    text-align: center;
}

.all-set-overlay .all-set-paragraph a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2DDB73;
    text-decoration: none;
    cursor: pointer;
}

.all-set-overlay .all-set-paragraph a img {
    margin-left: 3px;
}

.all-set-overlay  .sounds-good-btn {
    color: #000000;
    font-size: 18px;
    font-family: 'proxima-nova';
    font-weight: bold;
    padding: 8px 31px;
    height: 48px;
    background-color: #2DDB73;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 10px;
}

@media (max-width: 500px) {
    .all-set-overlay-wrapper {
        overflow-y: scroll;
        padding: 30px 0 0 0;
    }

    .all-set-overlay-wrapper .all-set-overlay {
        height: fit-content;
        height: -moz-max-content;
        margin-bottom: 200px;
        position: relative;
        width: 90%;
        padding: 30px 10px;
    }

    .all-set-overlay .all-set-paragraph br {
        display: none;
    }

    .all-set-overlay .all-set-paragraph a {
        display: initial;
    }

}