@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600&display=swap');

.successPopup {
    position: fixed;
    z-index: 999;
}

.popup {
    padding: 15px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 400px;
    height: auto;
    bottom: 20px;
    left: 85%;
    transform: translateX(-50%);
    z-index: 999;
    overflow: hidden;
    background-color: #428bca;
    border-radius: 10px;
}


.popup p {
    font-weight: 600;
    font-size: 22px;
    color: white;
    margin-left: 15px;
    line-height: 30px;
    margin-bottom: 0;
}

/*.overlay {*/
/*  width: 100vw;*/
/*  height: 100vh;*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  background-color: rgba(4, 5, 13, 0.9);*/
/*  z-index: 10;*/
/*}*/

@media (max-width: 767px) {
    .popup {
        padding: 15px;
        width: 240px;
        height: auto;
        border-radius: 6px;
        left: 50%;
        transform: translateX(-50%);
    }

    .popup p {
        font-weight: 400;
        font-size: 19px;
        color: white;
        line-height: 27px;
    }
}