﻿body {
}
.InputContainerR {
    display: inline-block;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
    vertical-align: top;
}
.InputContainerR .child {
    margin-bottom: 14px;
}
.label {
    display: block;
    width: auto;
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #323234;
    margin: 7px 0 7px 0;
    /*text-transform: uppercase;*/
}


.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #fff;
    /*border: 1px #74a4e9 solid;*/
    border: 2px solid #4B89E2;
    border-radius: 0px;
}

.book_container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .book_container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        background-color: #eee;
        border: 1px solid #ccc;
    }

    /* Create a custom radio button */
    .book_container .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 15px;
        width: 15px;
        background-color: #eee;
        border-radius: 50%;
    }

    /* On mouse-over, add a grey background color */
    .book_container input ~ .checkmark {
        background-color: #eee;
        border: 1px solid #4B89E2;
    }

    /* When the radio button is checked, add a blue background */
    .book_container input:checked ~ .checkmark {
        background-color: #fff;
        border: 1px solid #4B89E2;
    }

    /* Create the indicator (the dot/circle - hidden when not checked) */
    .book_container .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    /* Show the indicator (dot/circle) when checked */
    .book_container input:checked ~ .checkmark:after {
        display: block;
    }

    /* Style the indicator (dot/circle) */
    .book_container .checkmark:after {
        top: 3px;
        left: 3px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #4B89E2;
    }

.directDebitBox {
    background: #FFFFFF;
    box-shadow: 0px 0px 15px rgba(38, 50, 56, 0.1);
    border-radius: 16px;
    width: 90%;
    padding: 32px 5%;
    margin-top: 40px;
    display: flex;
}

    .directDebitBox .leftText {
        width: 77%;
        display: flex;
        flex-direction: column;
    }

        .directDebitBox .leftText h3 {
            font-weight: 600;
            font-size: 24px;
            line-height: 150%;
            /* or 24px */

            letter-spacing: 0.012em;
            /* Charcoal Grey */

            color: #323234;
        }

        .directDebitBox .leftText p {
            font-weight: 400;
            font-size: 14px;
            line-height: 150%;
            color: #323234;
        }

    .directDebitBox .rightPic {
        /*background: url('../images/Inhibitor.png') no-repeat;*/
        width: 23%;
    }

    .directDebitBox table {
        width: 80%;
        margin-top: 30px;
    }

    .directDebitBox td {
        font-weight: 500;
        font-size: 18px;
        line-height: 150%;
        padding-bottom: 10px;
    }

        .directDebitBox td span {
            font-size: 16px;
        }

        .directDebitBox td:last-child {
            font-weight: 700;
        }

        .directDebitBox td:first-child {
            width: 50px;
        }

    .directDebitBox p.bottomLine {
        font-size: 12px;
    }

    .directDebitBox .btn_cont {
        display: flex;
        margin-top: 16px;
        justify-content: space-between;
        width: 70%;
    }

        .directDebitBox .btn_cont .addDD_btn {
            background: #4B89E2;
            border-radius: 7px;
            border: 1px #4B89E2 solid;
            color: #fff;
            font-weight: 600;
            font-size: 16px;
            line-height: 32px;
            /* or 229% */

            text-align: center;
            letter-spacing: 0.2px;
            padding: 5px 30px;
            width: 40%;
        }

        .directDebitBox .btn_cont .notint_btn {
            background: #fff;
            border-radius: 7px;
            border: 1px #4B89E2 solid;
            color: #4B89E2;
            font-weight: 600;
            font-size: 16px;
            line-height: 32px;
            /* or 229% */

            text-align: center;
            padding: 5px 30px;
            letter-spacing: 0.2px;
            width: 40%;
        }
@media only screen and (max-width: 1920px) {
    .InputContainerR {
        width: 100%;
    }
}

@media only screen and (max-width: 1024px) {
    .directDebitBox .btn_cont {
        width: 100%;
    }
    /*.container {
        width: 96%;
    }*/
}

@media only screen and (max-width: 820px) {
    /*.container {
        width: 1250px;
    }*/
    .InputContainerR {
        width: 100%;
    }
    .directDebitBox {
        width: 100%;
    }

        .directDebitBox .btn_cont .addDD_btn {
            width: 42%;
        }

        .directDebitBox .btn_cont .notint_btn {
            width: 42%;
        }
}

@media only screen and (max-width: 768px) {
    /*.container {
        width: 100%;
    }*/
    .directDebitBox .leftText h3 {
        font-size: 20px;
    }

    .directDebitBox .btn_cont .addDD_btn {
        width: 45%;
    }

    .directDebitBox .btn_cont .notint_btn {
        width: 45%;
    }
}

@media only screen and (max-width: 600px) {
    /*.container {
        width: 100%;
    }*/
    .directDebitBox .leftText {
        width: 100%;
        background: url(images/Inhibitor.png) no-repeat top right;
        background-size: 20%;
    }

        .directDebitBox .leftText h3 {
            font-size: 18px;
            width: 80%;
        }

        .directDebitBox .leftText p {
            font-size: 13px;
            width: 80%;
        }

    .directDebitBox p.bottomLine {
        font-size: 12px;
        width: 100%;
    }

    .directDebitBox .btn_cont .addDD_btn {
        font-size: 14px;
    }

    .directDebitBox .btn_cont .notint_btn {
        font-size: 14px;
    }

    .directDebitBox .rightPic {
        display: none;
    }

    .directDebitBox table {
        width: 100%;
    }
}

@media screen and (max-width: 428px) {
    /*.container {
        width: 100%;
    }*/
    .directDebitBox .leftText h3 {
        font-size: 16px;
        width: 78%;
    }

    .directDebitBox td:first-child {
        width: 32px;
    }

    .directDebitBox .leftText p {
        font-size: 12px;
        width: 78%;
        margin-top: 8px;
    }

    .directDebitBox td {
        font-size: 14px;
    }

        .directDebitBox td span {
            font-size: 12px;
        }

    .directDebitBox p.bottomLine {
        font-size: 11px;
        width: 100%;
    }

    .directDebitBox .btn_cont .addDD_btn {
        width: 49%;
        padding: 5px 15px;
    }

    .directDebitBox .btn_cont .notint_btn {
        width: 49%;
        padding: 5px 15px;
    }
}

@media screen and (max-width: 390px) {
    /*.container {
        width: 100%;
    }*/
    .directDebitBox .btn_cont {
        display: flex;
        flex-direction: column;
    }

        .directDebitBox .btn_cont .notint_btn {
            width: 100%;
            margin-bottom: 10px;
        }

        .directDebitBox .btn_cont .addDD_btn {
            width: 100%;
        }
}


.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 999px) {
    .container {
        width: 96%;
    }
    .InputContainerR {
        width: 100%;
    }
}


@media (min-width: 992px) {
    .container {
        width: 970px;
    }
    .InputContainerR {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
    .InputContainerR {
        width: 100%;
    }
}

@media only screen and (min-width: 280px) {
    .container {
        max-width: 94%;
    }
}

@media only screen and (min-width: 1280px) {
    .container {
        max-width: 1250px;
    }
    .InputContainerR {
        width: 100%;
    }
}

@media only screen and (min-width: 1400px) {
    .container {
        max-width: 1250px;
    }
    .InputContainerR {
        width: 100%;
    }
}