﻿.clear {
    clear: both;
}

.hide {
    display: none;
}

.radio-group {
    display: inline-block;
     width: 100%;
    text-align: center;
}

  
    .radio-group a.radio {
        background: transparent url('image/Radiobutton BG.svg') no-repeat scroll 0 9px;
        color: #888b8c !important;
        line-height: 36px;
        padding-left: 34px;
        text-decoration: none;
        font-size: 16px;
    }

        .radio-group a.radio.checked {
            background-image: url('image/Group 26182.svg');
            color: black !important;
        }

    .radio-group.vertical a.radio {
    }

    .radio-group.horizontal a.radio {
        display: inline-block;
        margin-right: 20px;
    }

        .radio-group.horizontal a.radio:last-child {
            margin-right: 0;
        }

.vertical, .horizontal {
    vertical-align: top;
}

    .vertical > .item {
        display: block;
    }

    .horizontal > .item {
        display: inline-block;
    }
#showPopupInvoice{
    overflow:hidden !important;
}
/*Checkbox*/
/* Customize the label (the container) */
.m-checkcontainer {
    /*display: block;*/
    position: relative;
    /*padding-left: 35px;
    margin-bottom: 12px;*/
    cursor: pointer;
    /*font-size: 17px;*/
    -webkit-user-select: none; /* Chrome, Opera, Safari */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard syntax */
    /*margin: 0 !important;
    padding: 0 !important;*/
    display: inline-block;
    min-width: 20px;
    min-height: 20px;
}

    .m-checkcontainer.disable {
        opacity: 0.5;
    }
    /* Hide the browser's default checkbox */
    .m-checkcontainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        /*display: none;*/
        left: 0;
        top: 0;
    }

    /* Create a custom checkbox */
    .m-checkcontainer .checkmark {
        position: absolute;
        top: 3px;
        left: 0;
        height: 18px;
        width: 18px;
        background-color: #FFF;
        border: solid 1px #BABEC5;
        border-radius: 3px;
    }

    /* On mouse-over, add a grey background color */
    .m-checkcontainer:hover input ~ .checkmark, .m-checkcontainer input:focus ~ .checkmark {
        border-color: #2196F3;
    }

    .m-checkcontainer.disable:hover input ~ .checkmark, .m-checkcontainer.disable input:focus ~ .checkmark {
        border-color: #BABEC5;
    }
    /* When the checkbox is checked, add a blue background */
    .m-checkcontainer input:checked ~ .checkmark {
        background-color: #2196F3;
        border-color: transparent;
    }

    /* Create the checkmark/indicator (hidden when not checked) */
    .m-checkcontainer .checkmark:after {
        content: "";
        position: absolute;
        display: none;
        left: 4px;
        top: 0px;
        width: 7px;
        height: 11px;
        border: solid white;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    /* Show the checkmark when checked */
    .m-checkcontainer input:checked ~ .checkmark:after {
        display: block;
    }


    /* Create a custom radio button */
    .m-checkcontainer .radiobtn {
        position: absolute;
        top: 0;
        left: 0;
        height: 18px;
        width: 18px;
        background-color: #FFF;
        border: solid 1px #BABEC5;
        border-radius: 50%;
    }

    /* On mouse-over, add a grey background color */
    .m-checkcontainer:hover input ~ .radiobtn, .m-checkcontainer input:focus ~ .radiobtn {
        /*background-color: #ddd;*/
        border-color: #2196F3;
    }

    /* When the radio button is checked, add a blue background */
    .m-checkcontainer input:checked ~ .radiobtn {
        background-color: #ffffff;
        border-color: #2196F3;
    }

    /* Create the indicator (the dot/circle - hidden when not checked) */
    .m-checkcontainer .radiobtn:after {
        content: "";
        position: absolute;
        display: none;
        top: 3px;
        left: 3px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #2196F3;
    }

    /* Show the indicator (dot/circle) when checked */
    .m-checkcontainer input:checked ~ .radiobtn:after {
        display: block;
    }

    .m-checkcontainer .radio-text, .m-checkcontainer .checkbox-text {
        margin-left: 22px;
        line-height: 22px;
        display: inline-block;
        white-space: nowrap;
    }
