﻿ 
.blob {
    background-color: transparent;
    border-radius: 50%;
    margin: 10px;
    height: 20px;
    width: 20px;
    box-shadow: 0 0 0 0 rgba(222, 0, 0, 1);
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(222, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(222, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(222, 0, 0, 0);
    }
}


:root {
    --primary-color: #27699b;
    --primary-color-light: #1b1b8f;
    --primary-text-color: black;
    --secondary-color: #5261AC;
    --secondary-text-color: white;
    --tertiary-color: #F0F0F0;
    --header-bg-color: #434343;
    --header-text-color: white;
    --short-animation-duration: .25s;
    --medium-animation-duration: .50s;
    --long-animation-duration: 0.75s;
}

@keyframes sort-button-hover-animation {
    from {
        color: var(--header-text-color);
        text-decoration: none;
    }

    to {
        color: var(--tertiary-color);
        text-decoration: underline;
    }
}

@keyframes button-hover-animation {
    from {
        color: var(--secondary-text-color);
        background-color: var(--primary-color);
    }

    to {
        color: var(--secondary-text-color);
        background-color: var(--primary-color-light);
    }
}

@keyframes inactive-button-hover-animation {
    from {
        color: var(--primary-text-color);
        background-color: var(--tertiary-color);
    }

    to {
        color: var(--secondary-text-color);
        background-color: var(--primary-color);
    }
}

a {
    color: var(--secondary-color);
}

.aw-border {
    outline: 1px solid black;
    border-radius: 15px;
    padding: 10px;
}

/*Responsive Repeater Classes*/
.aw-selected-item {
    text-decoration: underline;
    font-weight: bold;
}

.aw-responsive-table > div:not(:first-child):not(:last-child) {
    padding-top: 3px;
    padding-bottom: 3px;
}

.aw-responsive-table > div:first-child {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: medium;
    background-color: var(--header-bg-color) !important;
    color: var(--header-text-color);
}

.aw-responsive-table > div:last-child {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: medium;
    background-color: var(--header-bg-color) !important;
    color: var(--header-text-color);
}

.aw-responsive-table-striped > div:nth-child(2n-1) {
    background-color: rgba(0, 0, 0, 0.05);
}

.aw-responsive-table-hover > div:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.sort-button {
    color: white;
}

    .sort-button:hover {
        animation-duration: var(--short-animation-duration);
        animation-name: sort-button-hover-animation;
        -webkit-animation-fill-mode: forwards;
    }


/*END Responsive Repeater Classes*/



.viewMore[aria-expanded="false"]:before {
    content: "View Details >>";
}

.viewMore[aria-expanded="true"]:before {
    content: "<< Hide Details";
}

.modal {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
   /* background-color: Black;*/
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-opacity: 0.8;
}

.center {
    z-index: 1000;
    margin: 300px auto;
    padding: 10px;
    width: 130px;
    background-color: White;
    border-radius: 10px;
    filter: alpha(opacity=100);
    opacity: 1;
    -moz-opacity: 1;
}

.ModalPopupBG {
    background-color: #000000;
    filter: alpha(opacity=30);
    opacity: 0.7;
}

.ModelPnl {
    background: white;
    border: 2px solid gray;
    padding: 20px
}

body {
    font-family: 'Open Sans';
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
}


/*Navbar overrides*/
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: var(--primary-color);
    font-weight: bold
}


.navbar-default .navbar-nav > .inactive > a, .navbar-default .navbar-nav > .inactive > a:hover, .navbar-default .navbar-nav > .inactive > a:focus {
    color: #000;
    background-color: var(--tertiary-color);
    font-weight: bold;
}


    .navbar-default .navbar-nav > .inactive > a, .navbar-default .navbar-nav > .inactive > a:focus {
        color: #000;
        background-color: #D6DCE5;
        font-weight: bold;
    }

        .navbar-default .navbar-nav > .inactive > a:hover {
            animation-duration: var(--medium-animation-duration);
            animation-name: inactive-button-hover-animation;
            -webkit-animation-fill-mode: forwards;
        }

.navbar-nav {
    margin: 0 auto;
    float: none;
    width: 100%;
}

    .navbar-nav > li {
        float: none;
        text-align: center;
        outline: 1px solid white;
    }

        .navbar-nav > li > a {
            padding-top: 10px;
            padding-bottom: 10px;
            line-height: 15px;
        }


.navbar {
    min-height: 0
}

.navbar-default {
    background-color: transparent;
    border: none;
}


.btn-default {
    color: var(--secondary-text-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-default:hover {
        animation-duration: var(--short-animation-duration);
        animation-name: button-hover-animation;
        -webkit-animation-fill-mode: forwards;
    }


.row .header {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: medium;
    background-color: var(--header-bg-color) !important;
    color: var(--header-text-color);
}
    .row .header a {
        color: white;
    }

.form-control2 {
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}


.row-striped:nth-of-type(odd) {
    background-color: #DCDCDC;
    padding-top: 10px;
    padding-bottom: 10px;
}

.row-striped:nth-of-type(even) {
    background-color: #ffffff;
    padding-top: 10px;
    padding-bottom: 10px;
}




.ProductThumb {
    max-width: 100%;
    max-height: 100%;
}

.inner-addon {
    position: relative;
}

    /* style icon */
    .inner-addon .glyphicon {
        position: absolute;
        padding: 10px;
        pointer-events: none;
    }

/* align icon */
.left-addon .glyphicon {
    left: 0px;
}

.right-addon .glyphicon {
    right: 0px;
}

/* add padding  */
.left-addon input {
    padding-left: 30px;
}

.right-addon input {
    padding-right: 30px;
}

.table-borderless > tbody > tr > td,
.table-borderless > tbody > tr > th,
.table-borderless > tfoot > tr > td,
.table-borderless > tfoot > tr > th,
.table-borderless > thead > tr > td,
.table-borderless > thead > tr > th {
    border: none;
}

.table-responsive {
    border: none;
}

.row {
    margin-right: 0px;
    margin-left: 0px;
}

.colorLevel1 {
    background-color: var(--header-bg-color);
    color: var(--header-text-color);
}

.colorLevel2 {
}

.colorLevel3 {
}

.CalendarDatePicker .ajax__calendar_container {
    border: 1px solid #646464;
    background-color: lemonchiffon;
    color: #ad0b08;
}

.CalendarDatePicker .ajax__calendar_body {
    height: 15em;
}

.ProductBullet {
    list-style: disc;
    padding: 0px;
}



.text-left-not-xs, .text-left-not-sm, .text-left-not-md, .text-left-not-lg {
    text-align: left;
}

.text-center-not-xs, .text-center-not-sm, .text-center-not-md, .text-center-not-lg {
    text-align: center;
}

.text-right-not-xs, .text-right-not-sm, .text-right-not-md, .text-right-not-lg {
    text-align: right;
}

.text-justify-not-xs, .text-justify-not-sm, .text-justify-not-md, .text-justify-not-lg {
    text-align: justify;
}

@media (max-width: 767px) {
    .text-left-not-xs, .text-center-not-xs, .text-right-not-xs, .text-justify-not-xs {
        text-align: inherit;
    }

    .text-left-xs {
        text-align: left;
    }

    .text-center-xs {
        text-align: center;
    }

    .text-right-xs {
        text-align: right;
    }

    .text-justify-xs {
        text-align: justify;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .text-left-not-sm, .text-center-not-sm, .text-right-not-sm, .text-justify-not-sm {
        text-align: inherit;
    }

    .text-left-sm {
        text-align: left;
    }

    .text-center-sm {
        text-align: center;
    }

    .text-right-sm {
        text-align: right;
    }

    .text-justify-sm {
        text-align: justify;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .text-left-not-md, .text-center-not-md, .text-right-not-md, .text-justify-not-md {
        text-align: inherit;
    }

    .text-left-md {
        text-align: left;
    }

    .text-center-md {
        text-align: center;
    }

    .text-right-md {
        text-align: right;
    }

    .text-justify-md {
        text-align: justify;
    }
}

@media (min-width: 1200px) {
    .text-left-not-lg, .text-center-not-lg, .text-right-not-lg, .text-justify-not-lg {
        text-align: inherit;
    }

    .text-left-lg {
        text-align: left;
    }

    .text-center-lg {
        text-align: center;
    }

    .text-right-lg {
        text-align: right;
    }

    .text-justify-lg {
        text-align: justify;
    }
}

.btn-file {
    position: relative;
    overflow: hidden;
}

    .btn-file input[type=file] {
        position: absolute;
        top: 0;
        right: 0;
        min-width: 100%;
        min-height: 100%;
        font-size: 100px;
        text-align: right;
        filter: alpha(opacity=0);
        opacity: 0;
        outline: none;
        background: white;
        cursor: inherit;
        display: block;
    }

.SortLink {
    color: black;
}

    .SortLink:hover {
        text-decoration: underline;
        color: black !important;
    }

@media (max-width: 991px) {

    .visible-xs.line-desc {
        display: inline-block !important;
    }

    .visible-sm.line-desc {
        display: inline-block !important;
    }

    .visible-md.line-desc {
        display: inline-block !important;
    }

    .visible-lg.line-desc {
        display: inline-block !important;
    }
}
.alert-danger {
    color: white;
    background-color: #27699b;
    border-color: #ebccd1;
}