﻿.checkout-terms .inner-wrapper {
    padding: 6px 20px 60px 20px;
}

.checkout-terms .terms-text {
    font-size: 14px;
    color: #414042;
}

.checkout-terms .checkbox-wrapper {
    margin-top: 40px;
    white-space: nowrap;
}

    /*
        How to align checkboxes and their labels consistently cross-browsers
        https://stackoverflow.com/questions/306252/how-to-align-checkboxes-and-their-labels-consistently-cross-browsers
    */
    .checkout-terms .checkbox-wrapper label {
        cursor: pointer;
        white-space: normal;
        padding-top: 4px;
        font-weight: 600;
        color: #262626;
        margin: 0;
        padding-left: 20px;
        text-indent: -23px;
    }

    .checkout-terms .checkbox-wrapper input[type="checkbox"] {
        vertical-align: bottom;
        height: 13px;
        width: 20px;
        padding: 0;
        margin: 0;
        position: relative;
        top: -1px;
        *overflow: hidden;
    }



@media (min-width: 768px)  {
    .checkout-terms .terms-text {
        border: 1px solid #225370;
        background: #fff;
        padding: 6px 10px;
        /*overflow: auto;*/
    }

    .checkout-terms .checkbox-wrapper {
        margin-top: 20px;
    }
}