    .submitcheck {
    margin-left: 10px;
    }

    .custom-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }

    /* Hide the browser's default checkbox */
    .custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    }

    .custom-checkbox .linkAddress {
        color: #2196F3;
        text-decoration: underline;
        font-style: italic;
    }

    /* Create a custom checkbox */
    .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    }

    /* On mouse-over, add a grey background color */
    .custom-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
    }

    /* When the checkbox is checked, add a blue background */
    .custom-checkbox input:checked ~ .checkmark {
    background-color: #2196F3;
    }

    /* Create the checkmark/indicator (hidden when not checked) */
    .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    }

    /* Show the checkmark when checked */
    .custom-checkbox input:checked ~ .checkmark:after {
    display: block;
    }

    /* Style the checkmark/indicator */
    .custom-checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    }

    /* Styling for the YouTube link */
    .cta-link {
        left: 0;
        height: 45px;
        width: 250px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-color: rgb(248, 248, 250);
        border-radius: 1em;
        border: 2px solid rgb(225, 225, 230);
        margin-bottom: 1em;
    }
    .cta-link:hover, .cta-link:focus {
        box-shadow: 2px 2px 5px -1px rgb(0, 0, 0, 0.1);
        transition: 200ms;
    }
    .cta-link .col-xs-3 {
        padding: 5px 0px 5px 5px;
    }
    .cta-link .col-xs-9 {
        padding: 5px 5px 5px 0px;
    }
    .cta-link p {
        margin: 0;
        line-height: 15px;
    }
    .cta-link img {
        width: 80%;
    }