﻿/*loading div*/
#loader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: black;
    opacity: .5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
}

    #loader-wrapper .imgLoader {
        position: absolute;
        left: 50%;
        top: 35%;
    }

.bubbles {
    text-align: center;
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    margin-top: -30px;
}

    .bubbles .title {
        color: #a1a1a1;
        font-size: 25px;
        line-height: 25px;
        margin-bottom: 50px;
        font-weight: 500;
    }

    .bubbles span {
        display: inline-block;
        vertical-align: middle;
        width: 15px;
        height: 15px;
        background: #424F63;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        animation: bubbly .9s infinite alternate;
    }

#bubble2 {
    animation-delay: .27s;
}

#bubble3 {
    animation-delay: .54s;
}

@-webkit-keyframes bubbly {
    0% {
        width: 15px;
        height: 15px;
        opacity: 1;
        -webkit-transform: translateY(0);
    }

    100% {
        width: 50px;
        height: 50px;
        opacity: 0.1;
        -webkit-transform: translateY(-32px);
    }
}

@keyframes bubbly {
    0% {
        width: 15px;
        height: 15px;
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        width: 50px;
        height: 50px;
        opacity: 0.1;
        transform: translateY(-32px);
    }
}

@-webkit-keyframes pulsate {
    0% {
        transform: scale(.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@-moz-keyframes pulsate {
    0% {
        transform: scale(.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@-ms-keyframes pulsate {
    0% {
        -ms-transform: scale(0.1, 0.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1.0;
    }

    100% {
        -ms-transform: scale(1.2, 1.2);
        opacity: 0.0;
    }
}

@-o-keyframes pulsate {
    0% {
        -o-transform: scale(0.1, 0.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1.0;
    }

    100% {
        -o-transform: scale(1.2, 1.2);
        opacity: 0.0;
    }
}

/*.alert {
    padding: 6px;
    width: 100%;
    float: left;
}

.modal-content {
    border-radius: 15px 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    -webkit-box-shadow: 5px 5px rgba(0,0,0,0.1);
    -moz-box-shadow: 5px 5px rgba(0,0,0,0.1);
    border: 5px;
    border-style: Solid;
    border-color: white;
}*/

.modal-header {
    /*border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    -moz-border-radius-topleft: 15px;
    -moz-border-radius-topright: 15px;
    -webkit-border-top-right-radius: 15px;
    -webkit-border-top-left-radius: 15px;*/
    /*box-shadow: 5px 5px 5px rgba(0,0,0,0.1);     
    -webkit-box-shadow: 5px 5px rgba(0,0,0,0.1);     
    -moz-box-shadow: 5px 5px rgba(0,0,0,0.1);*/
    /*border: 2px;
    border-style: Solid;
    border-color: white;
    margin-left: -5px;
    margin-right: -5px;
    margin-top: -5px;
    padding: 10px !important;*/
}

.trHeaderGrey {
    background-color: #EFEFEF;
}
/*loading div*/
/*.form-group {
    margin-bottom: 10px;
}*/

.mrg-top2 {
    margin-top: 2px !important;
}

/*.form-control {
    height: auto !important;
    padding: 4px 6px !important;
}*/
/*COMMAN CSS*/
.mg-0 {
    margin: 0 !important;
}

.mg-t-0 {
    margin-top: 0 !important;
}

.mg-b-0 {
    margin-bottom: 0 !important;
}

.mg-b-5 {
    margin-bottom: 5px !important;
}

.mg-b-10 {
    margin-bottom: 10px !important;
}

.mg-b-15 {
    margin-bottom: 15px !important;
}

.mg-l-0 {
    margin-left: 0 !important;
}

.mg-l-5 {
    margin-left: 5px;
}

.mg-l-10 {
    margin-left: 10px;
}

.mg-r-10 {
    margin-right: 10px;
}

.mg-t-15 {
    margin-top: 15px;
}

.mg-tb-0 {
    margin-top: 0px;
    margin-bottom: 0px;
}

.mg-tb-5 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.mg-tb-6 {
    margin-top: 6px;
    margin-bottom: 6px;
}

.mg-lr-3 {
    margin-left: 3px;
    margin-right: 3px;
}

.mg-tbr-5 {
    margin-top: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.pd-0 {
    padding: 0 !important;
}

.pd-r-0 {
    padding-right: 0 !important;
}

.pd-15 {
    padding: 15px !important;
}

.pd-tb-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.pd-tb-7 {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
}

.dis-none {
    display: none;
}

.text-bold {
    font-weight: bold;
}

.pos-rel {
    position: relative;
}

.pos-abs {
    position: absolute;
    top: 0;
}

.resize-none {
    resize: none;
}

.height-530 {
    height: 530px !important;
}

.high-a {
    height: auto !important;
}

.wid-250 {
    width: 250px !important;
}

.k-icon.k-i-sort-asc-sm {
    height: 1em !important;
}

.k-icon.k-i-sort-desc-sm {
    height: 1em !important;
}

.v-middle {
    vertical-align: middle;
    position: relative;
}

.v-top {
    vertical-align: top;
    position: relative;
}

.tbl_Sales_info {
    margin-top: 10px;
}

hr {
    border-color: #ccc !important;
    margin: 10px 0;
}

.bg-primary {
    background-color: #4D7496;
}

.minwid-250 {
    min-width: 250px;
}

.wid-full {
    width: 100%;
}

.wid-50per {
    width: 50%;
}

.bdr-none {
    border: none;
}

.bk-white {
    background: #fff !important;
}

.txt-bold {
    font-weight: bold;
}

.adi-tit-bk {
    background-color: darkgray;
    padding: .5em .6em .4em .6em;
}

.adi-txt-pnl {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 524px;
    cursor: not-allowed;
}

.adi-bdr {
    border: 1px solid #ccc;
    border-radius: 3px;
}

#dvRBLForCategory {
    margin-top: 5px;
}

    #dvRBLForCategory label {
        cursor: pointer;
        display: inline-block;
        font-weight: 400;
        margin-bottom: 0;
        padding-left: 20px;
        margin-left: 10px;
        position: relative;
        vertical-align: middle;
        max-width: 100%;
    }

        #dvRBLForCategory label input.RBLCategory {
            position: absolute;
            line-height: normal;
            margin: 3px 0 0 -20px;
        }

.summ-bdr-h {
    border: 1px solid #ccc;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 15px;
    height: 82%;
}

.summ-bdr-inn {
    width: 100%;
    border: 1px solid #ccc;
}

#lblModuleStatus {
    font-weight: bold;
    font-size: 14px;
}

.qa-overflow {
    overflow: auto;
    max-height: 725px;
}

/*.dropdown-menu > li > a {
    padding: 7px 20px !important;
}

    .dropdown-menu > li > a:hover {
        color: #fff !important;
    }*/

.k-calendar .k-link {
    color: #fff;
}

.k-pager-wrap > .k-link {
    height: 2.2em !important;
    line-height: 2.2em !important;
}

#divEvaluationQuestionAnswer {
    width: 84%;
}
/*loader*/
.circleOpacityAdvanced {
    width: 75px;
    height: 75px;
    margin: 50px auto 15px;
    position: relative;
}

    .circleOpacityAdvanced .circleringsone, .circleOpacityAdvanced .circleringsthree, .circleOpacityAdvanced .circleringstwo {
        width: 75px;
        height: 75px;
        opacity: 0;
        border: 5px solid #006699;
        border-radius: 999px;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        position: absolute;
        left: -4px;
        top: -4px;
    }

.circleringsone {
    -webkit-animation: rings 3s linear infinite;
    animation: rings 3s linear infinite;
}

.circleringstwo {
    -webkit-animation: rings 3s 2s linear infinite;
    animation: rings 3s 2s linear infinite;
}

.circleringsthree {
    -webkit-animation: rings 3s 1s linear infinite;
    animation: rings 3s 1s linear infinite;
}

@-webkit-keyframes rings {
    0% {
        -webkit-transform: scale(.5);
        transform: scale(.5);
        opacity: 0;
    }

    15% {
        opacity: 1;
        -webkit-transform: scale(.25);
        transform: scale(.25);
    }

    70% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes rings {
    0% {
        -webkit-transform: scale(.5);
        transform: scale(.5);
        opacity: 0;
    }

    15% {
        opacity: 1;
        -webkit-transform: scale(.25);
        transform: scale(.25);
    }

    70% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
