﻿.headerBackColor {
    background-color: #0069b0;
}
    .headerBackColor .title {
        font-size: 15px;
        font-weight: bold;
    }
.subHeader {
    background-color: #a6976f;
    line-height: 23px;
}
    .subHeader .title {
        font-size: 15px;
        font-weight: bold;
        color: red;
        padding-left: 30px;
        text-align: center;
        padding-top: 0px;
        line-height: 0px;
        margin: 10px 0;
        font-family: 'Open Sans', Arial, Helveticans-serif;
    }
.blink {
    animation: blink-animation 3s infinite;
    text-align: center;
    color: green;
    font-weight: 700;
}

@keyframes blink-animation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
.lblstrong {
    position: relative;
    cursor: pointer;
    color: #3e3939;
    font-size: 14px;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
    text-align: left;
    transition: transform .2s; /* Animation */
}
    .lblstrong:hover {
        -ms-transform: scale(1.25); /* IE 9 */
        -webkit-transform: scale(1.25); /* Safari 3-8 */
        transform: scale(1.25);  /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    }
.form-label:hover {
    -ms-transform: scale(1.25); /* IE 9 */
    -webkit-transform: scale(1.25); /* Safari 3-8 */
    transform: scale(1.25); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.lblstrong-lg {
    position: relative;
    cursor: pointer;
    color: #3e3939;
    font-size: 18px;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
    text-align: left;
}
/*Payment Page Tax Balance Show Class*/
.DemandBoxAnimat {
    background: #c2bec2;
    margin-bottom: 2px;
    margin-top: 2px;
}
    .DemandBoxAnimat label {
        font-size:13px;
        font-style:normal;
    }


/*CheckBox Text*/
.checkboxText {
    font-size: 14px;
    font-style: normal;
    font-weight: bold;
}

.DiscountLable {
    font-size: 14px;
    font-style: normal;
    color: #d33aab;
}

.divBorder {
    border-style: solid;
    border-width: thin;
    background: #f6d2ee;
    padding: 15px 30px 15px 30px;
    border: 1px solid #e15ce6;
    -webkit-transition: 800ms;
    -moz-transition: 800ms;
    -o-transition: 800ms;
    transition: 800ms;
}

/*Offline Payment Page TextBox*/
.form-control-sm {
    display: block;
    width: 100%;
    height: 25px;
    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;
}

    .form-control-sm:focus {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)
    }

.required-indicator {
    color:red;
}


/*Modal Style*/
.modal {
    position: fixed;
    top: 5% !important;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

/*Animation*/
.rowanimate {
    position: relative;
    animation: mymove 2s;
    animation-play-state: running;
    font-size:30px;
}

.fancy {
    background: cornsilk;
    font-weight:600;
}

@keyframes mymove {
    from {
        top: -200px;
    }

    to {
        top: 0px;
    }
}
