.follow-up-flex {
    display:flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
}
.full-width {
    width: 100%;
}
.half-width {
    width: 50%;
}
.third-width {
    width: 33%;
}
.quarter-width {
    width: 25%;
}
.centered {
    margin: auto;
}
.text-centered {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.white-text {
    color: #fff;
}
.small-font {
    font-size: 80%;
}
.large-font {
    font-size: 125%;
}
.largest-font {
    font-size: 160%;
}
.bold-font {
    font-weight: bold;
}
.border-box {
    box-sizing: border-box;
}
.fortune {
    display: flex;
    text-align: center;
    margin: auto;
    padding: 25px;
    background-image: url('./../images/fortune-350.png');
    background-position: center;
    background-size: 100%;
    height: 150px;
    background-repeat: no-repeat;
    font-weight: bold;
    vertical-align:middle;
}
.check-mark {
    width: 20px;
}
.blue-banner {
    display: flex;
    flex-direction: row;
    margin: auto;
    text-align: center;
    background-color: rgb(27,134,200);
    color: black;
    font-weight: bold;
}
.black-bg {
    background-color: #000;
}
.heavy-padding {
    padding: 25px;
}
.light-padding {
    padding: 10px;
}
.extra-light-padding {
    padding: 5px;
}
.no-left-padding {

}
.flex-row {
    display: flex;
    flex-direction: row;
}
.flex-row-always {
    display: flex;
    flex-direction: row;
}
.flex-column {
    display: flex;
    flex-direction: column;
}
.flex {
    display: flex;
}
.phone {
    width: 85px;
    height: 200px;
}
.phone-background {
    padding-bottom: 45px !important;
    background-image: url('./../images/phone.png');
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    margin: 25px;
}
@media screen and (max-width: 660px) {

    .flex-row {
        flex-direction: row;
    }
    .half-width {
        width: 60%;
    }
    .quarter-width {
        width: 50%;
    }
    .third-width {
        width: 80%;
    }
    .no-left-padding {

    }
    .largest-font {
        font-size: 125%;
    }
    .shrink-responsive {

    }
}
@media screen and (max-width: 555px) {
    .flex-row {
        flex-direction: column;
    }
    .shrink-responsive {
        width: 20%;
    }
}
@media screen and (max-width: 480px) {

    .flex-row {
        flex-direction: column;
    }
    .half-width {
        width: 80%;
    }
    .quarter-width {
        width: 50%;
    }
    .third-width {
        width: 80%;
    }
    .no-left-padding {
        margin-left: -10px;
    }
    .largest-font {
        font-size: 120%;
    }
    .shrink-responsive {
        width: 20%;
    }
}
@media screen and (max-width: 420px) {

    .flex-row {
        flex-direction: column;
    }
    .half-width {
        width: 80%;
    }
    .quarter-width {
        width: 80%;
    }
    .third-width {
        width: 80%;
    }
    .no-left-padding {
        margin-left: -10px;
    }
    .largest-font {
        font-size: 100%;
    }
    .shrink-responsive {
        width: 50%;
    }
}