.imgHolder {
    position: relative;
    display: block;
}

.bimg-150 {
    background-repeat: no-repeat;
    /*width: 100%;
    height: 100%;*/
    width: 70%;
    height: 70%;
    background-size: 100% 100%;
    box-shadow: 0 0 2px 2px #c2c2c2;
    border-radius: 5px;
}

.bimg-80 {
    background-repeat: no-repeat;
    /*width: 80px;
    height: 100%;*/
    width: 150px;
    height: 100%;
    background-size: 100% 100%;
    box-shadow: 0 0 2px 2px #c2c2c2;
}

.imgHolder .imageBoxPad {
    position: absolute;
    left: 5px;
    bottom: 5px;
    padding: 1% 1%;
}

    .imgHolder .imageBoxPad .removeImg {
        position: relative;
        width: 18px;
        height: 18px;
        padding: 0px;
        font-weight: bold;
    }


/*  bhoechie tab */
div.bhoechie-tab-container {
    z-index: 10;
    background-color: #ffffff;
    padding: 0 !important;
    border-radius: 4px;
    -moz-border-radius: 4px;
    border: 1px solid #ddd;
    margin-top: 0px;
    margin-left: 15px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    -moz-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    background-clip: padding-box;
    opacity: 0.97;
    filter: alpha(opacity=97);
}

div.bhoechie-tab-menu {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
}

    div.bhoechie-tab-menu div.list-group {
        margin-bottom: 0;
    }

        div.bhoechie-tab-menu div.list-group > a {
            margin-bottom: 0;
        }

            div.bhoechie-tab-menu div.list-group > a .glyphicon,
            div.bhoechie-tab-menu div.list-group > a .fa {
                color: #5A55A3;
            }

            div.bhoechie-tab-menu div.list-group > a:first-child {
                border-top-right-radius: 0;
                -moz-border-top-right-radius: 0;
            }

            div.bhoechie-tab-menu div.list-group > a:last-child {
                border-bottom-right-radius: 0;
                -moz-border-bottom-right-radius: 0;
            }

            div.bhoechie-tab-menu div.list-group > a.active,
            div.bhoechie-tab-menu div.list-group > a.active .glyphicon,
            div.bhoechie-tab-menu div.list-group > a.active .fa {
                background-color: #c62b27;
                color: #ffffff;
                font-weight: 600;
                border-color: #c62b27 !important;
            }

                div.bhoechie-tab-menu div.list-group > a.active:after {
                    content: '';
                    position: absolute;
                    left: 100%;
                    top: 50%;
                    margin-top: -13px;
                    border-left: 0;
                    border-bottom: 13px solid transparent;
                    border-top: 13px solid transparent;
                    border-left: 10px solid #c62b27;
                }

div.bhoechie-tab-content {
    background-color: #ffffff;
    /* border: 1px solid #eeeeee; */
    padding-left: 0px;
    padding-top: 10px;
}

div.bhoechie-tab div.bhoechie-tab-content:not(.active) {
    display: none;
}

.retailerdashboard {
    border: 4px solid;
    border-radius: 90px;
    padding: 35px;
}

.servicetext {
    font-weight: 600;
    /*color: #f37434;*/
    color: #c62b27;
}

.header-balance {
    font-weight: 700;
    font-size: 18px;
    color: #015198;
}


#loading {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: rgba(192, 192, 192, 0.5);
    background-image: url("../../img/30.gif");
    background-repeat: no-repeat;
    background-position: center;
}

.wallet-balance {
    display: inline-block;
    padding: .25em .4em;
    font-size: 120%;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

.pt-15 {
    padding-top: 15px;
}

.pt-50 {
    padding-top: 50px;
}


.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;
    /* padding-top: calc(0.375rem + 1px);
                                        padding-bottom: calc(0.375rem + 1px);
                                        margin-bottom: 0;
                                        font-size: inherit;
                                        line-height: 1.5;
                                        font-weight: 500*/
}

    /* Hide the browser's default checkbox */
    .container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid #ced4da;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container 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 */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .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);
}

.addIcon {
    margin-top: 32px;
}

.titleheaderspan, a.titleheaderspan {
    background-color: #401431;
    border-color: #401431 #401431 #401431;
    color: #fff;
    font-size: 15px;
    padding: 12px;
    cursor: default;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 2px solid transparent;
    line-height: 0.5;
    border-radius: 50rem;
}
/* tab list css */
.tabs {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
    /* tab list item */
    .tabs .tabs-list {
        list-style: none;
        margin: 0px;
        padding: 0px;
    }

        .tabs .tabs-list li {
            width: 150px;
            float: left;
            margin: 0px;
            margin-right: 2px;
            padding: 10px 5px;
            text-align: center;
            background-color: #94a6d0;
            border-radius: 3px;
        }

            .tabs .tabs-list li:hover {
                cursor: pointer;
            }

            .tabs .tabs-list li a {
                text-decoration: none;
                color: white;
            }

    /* Tab content section */
    .tabs .tab {
        display: none;
        min-height: 250px;
        height: auto;
        border-radius: 3px;
        color: darkslategray;
        clear: both;
        border: 1px solid #e4e4e4;
    }

        .tabs .tab h3 {
            border-bottom: 3px solid cornflowerblue;
            letter-spacing: 1px;
            font-weight: normal;
            padding: 5px;
        }

        .tabs .tab p {
            line-height: 20px;
            letter-spacing: 1px;
        }
/* When active state */
.active {
    display: block !important;
}

.tabs .tabs-list li.active {
    background-color: #173883 !important;
    color: black !important;
}

.active a {
    color: #fff !important;
}
/* tab list css */

.summaryheader {
    font-size: 1.3em;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 0px;
    word-wrap: normal;
}
.uppercase {
    text-transform: uppercase
}
.form-required {
    margin-left: 5px;
    color: red;
}