﻿* {
    padding: 0px;
    box-sizing: border-box;
    margin: 0px;
}

:root {
    --color: #286090;
    --color: red;
}

/*Master CSS Start*/
body {
    height: inherit;
    position: relative;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    font-weight: 400;
    background: #ffffff;
    margin: 0px;
    padding: 0px;
    font-size: 13px;
    line-height: 1.5384616;
    color: #333;
}

#fullbody {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: auto;
    padding: 0px;
}

.main-box-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 0px;
}
/*===== new login ===========*/
-top {
    padding-top: 64px;
}

#navbar {
    /*display: -webkit-inline-flex;*/
    /*display: -ms-inline-flexbox;*/
    /*display: inline-flex;*/
    font-family: Roboto, "Helvetica Neue", sans-serif;
    font-size: 13px;
    font-weight: 300;
    white-space: nowrap;
    transition: none;
    width: 100%;
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
    top: 0;
    background: var(--color);
}

.logo {
    position: relative;
    padding: 0px 15px;
    margin: 0px auto;
    height: 100%;
    display: flex;
}

    .logo img {
        /*   padding: 12px 0px;*/
        max-width: 210px;
    }

.quicklinksList {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0;
    padding: 0;
    font-size: 0;
    flex: 1;
}

    .quicklinksList li {
        display: inline-block;
        list-style: none;
        position: relative;
        font-size: 13px;
        line-height: 20px;
        width: auto;
        margin: 0px;
    }

        .quicklinksList li a {
            color: #ffffff;
            font-size: 14px;
            padding: 8px 16px;
            text-align: center;
            border-radius: 0px;
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            outline: 0;
            text-decoration: none;
            line-height: normal;
            box-sizing: border-box;
        }

            .quicklinksList li a i {
                margin-right: 10px;
                font-size: 14px;
            }

            .quicklinksList li a:hover, .quicklinksList li a:focus {
                background-color: #d53846;
                color: #fff;
            }

.content-wrapper {
    height: calc(100vh - 72px);
    overflow: auto;
    width: 100%;
    padding: 10px 20px;
}

.page-title {
    background: #fff;
    -webkit-box-shadow: 0 5px 10px 0 #E3E3E3;
    box-shadow: 0 5px 10px 0 #E3E3E3;
    margin-top: 250px;
    width: 100%;
    text-align: center;
    padding: 0px;
}

    .page-title h3 {
        font-size: 16px;
        color: #545454;
        margin: 0px;
        padding: 14px;
        font-weight: bold;
    }

.table {
    border: 1px solid #ccc;
    width: 100%;
    max-width: 100%;
}

    .table thead tr th {
        border-right: 1px solid #d1d1d1;
        background: #e1e1e1;
        padding: 12px 10px;
        text-align: left;
    }

        .table thead tr th:last-child {
            border-right: 0px solid #d1d1d1;
        }

    .table tbody tr td {
        padding: 12px 10px;
    }

    .table tbody tr:nth-child(even) td {
        background: #f1f1f1;
    }

th, td {
    white-space: nowrap;
}

.d-flex {
    display: flex;
}

.form-group {
    margin-bottom: 15px;
    padding: 0;
    border: 0;
}

.d-flex.mlr-10 {
    margin-left: -10px;
    margin-right: -10px;
}

.d-flex .form-group {
    width: 100%;
    padding: 0px 10px;
}

.form-control {
    /* height: 30px;
    padding: 5px 12px;
    border: 1px solid #ddd;
    border-radius: 2px;
    -webkit-box-shadow: none;*/
    box-shadow: none;
    font-size: 12px;
    outline: none !important;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}

.wd-100 {
    width: 100%;
}

.text-center {
    text-align: center;
}

.btn {
    cursor: pointer;
    border-radius: 2px;
    padding: 5px 20px;
    border: 1px solid #ccc;
    outline: none;
    box-shadow: none;
    display: inline-block;
    margin: 5px;
    background: #fff;
    color: #333;
    opacity: .95;
    background: #7d8083;
    border-color: #7d8083;
    color: #fff;
}

.btn-primary1 {
    background: #002657;
    border-color: #002657;
    color: #fff;
}

.btn-primary2 {
    background: #7d8083;
    border-color: #7d8083;
    color: #fff;
}

.btn:hover, .btn:focus {
    opacity: 1;
    background: #002657;
    border-color: #002657;
    color: #fff;
}

.mb-50 {
    margin-bottom: 50px;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0px;
    z-index: 1;
    margin: 0px;
    padding: 0px;
    -webkit-box-shadow: 0 5px 10px 0 #e3e3e3;
    box-shadow: 0 5px 10px 0 #e3e3e3;
    min-width: 110px;
}

.quicklinksList li a:hover + ul {
    display: block;
}

.submenu li {
    display: block;
    position: relative;
}

    .submenu li a {
        display: block;
        position: relative;
        padding: 7px 10px;
        color: #333;
        background: #fff;
        border-top: 1px solid #f1f1f1;
    }

    .submenu li:first-child a {
        border-top: 0px solid #ccc;
    }

.auto-style1 {
    position: relative;
    min-height: 1px;
    float: left;
    width: 50%;
    left: 0px;
    top: 0px;
    padding-left: 15px;
    padding-right: 15px;
}

.auto-style2 {
    background: #3C8DBC;
    width: 100%;
    padding: 10px 15px 0 15px;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    height: 35px;
    position: fixed;
    bottom: 38px;
    left: -30px;
}


/* Master css END*/


#Page {
    padding-right: 10px;
    padding-left: 10px;
    background-color: #FCFCFC; /*/#F7E3E8;*/
    /*height:500px;*/
}

.mrg-top-3p {
    margin-top: 3px;
}

.mrg-top-5p {
    margin-top: 5px;
}

.mrg-top-8p {
    margin-top: 8px;
}

.mrg-top-1 {
    margin-top: 10px;
}

.mrg-top-2 {
    margin-top: 20px;
}

.mrg-top-3 {
    margin-top: 30px;
}

.mrg-top-4 {
    margin-top: 40px;
}

/*bottom margin*/

.mrg-btm-3p {
    margin-bottom: 3px;
}

.mrg-btm-5p {
    margin-bottom: 5px;
}

.mrg-btm-8p {
    margin-bottom: 8px;
}

.mrg-btm-1 {
    margin-bottom: 10px;
}

.mrg-btm-2 {
    margin-bottom: 20px;
}

.mrg-btm-3 {
    margin-bottom: 30px;
}

.mrg-btm-4 {
    margin-bottom: 40px;
}
/*bottom margin*/

/*margin left*/
.mrg-left-10 {
    margin-left: 10px;
}

.mrg-left-20 {
    margin-left: 20px;
}

.mrg-left-30 {
    margin-left: 30px;
}

.mrg-left-40 {
    margin-left: 40px;
}

.p-all-10 {
    padding: 10px;
}

.p-all-20 {
    padding: 20px;
}

.p-all-30 {
    padding: 30px;
}
/*margin left*/
hr {
    width: 100%;
    color: #121212;
    height: 1px;
}

td {
    line-height: 20px;
    margin-left: 80px;
}

.header {
    /*background-color: #367FA9;*/ /*#224E68;*/
    width: 100%;
    background: #286090;
    width: 100%;
    border: none;
}

.header-box-one {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px;
}

    .header-box-one a img {
        width: 120px;
    }

.header-box-two {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer {
    background: #3C8DBC;
    width: 100%;
    padding: 10px 15px 0 15px;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    height: 35px;
    position: fixed;
    bottom: 0;
}


#box {
    position: relative;
    background-color: #fff;
    margin-bottom: 20px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
}

.box .box-title {
    position: relative;
    color: #444;
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 1);
    background: #f1f1f1;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .box .box-title h3 {
        font-size: 18px;
        letter-spacing: 1px;
        margin: 0;
        font-weight: bold;
        font-size: 16px;
        color: #545454;
    }

.validation-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.box .box-body {
    border: 1px solid #ddd;
    padding: 15px;
    position: relative;
    border-radius: 5px;
    background-color: #fff;
    margin: 25px;
}

.inner-box-bar {
    padding: 8px;
}

.box-name-bar {
    font-weight: 600;
    font-size: 14px;
    text-align: end;
}

.box-info-bar .box-info-fill-bar {
    text-align: center;
    padding: 5px;
    border: none;
    outline: none;
    box-shadow: 0 0 2px rgba(0,0,0,0.4);
    border-radius: 3px;
    border: none;
    font-weight: 500;
    font-size: 15px;
    width: 80%;
}

    .box-info-bar .box-info-fill-bar:focus {
        box-shadow: 0 0 4px rgba(40,96,144,0.7);
    }

.button-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
}

.button-bar-one {
    background: #286090;
    border: none;
    outline: none;
}

    .button-bar-one:hover {
        background: #002657;
    }

.homelinkbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.BoldHyperLink {
    text-align: center;
}

.margin-bar {
    margin: 15px;
}

@media screen and (max-width: 767px) {
    .box .box-body {
        border: 1px solid #ddd;
        padding: 15px;
        position: relative;
        border-radius: 5px;
        background-color: #fff;
        margin: 15px 5px;
    }

    .box-name-bar {
        text-align: start;
        padding: 6px 0px;
    }

    .box-info-bar .box-info-fill-bar {
        text-align: start;
        padding: 5px;
        border: none;
        outline: none;
        box-shadow: 0 0 2px rgba(0,0,0,0.4);
        border-radius: 3px;
        border: none;
        font-weight: 500;
        font-size: 15px;
        width: 100%;
    }

    .margin-bar {
        margin: 3px;
    }
}

@media screen and (min-device-width: 768px) and (max-device-width: 991px) {
    .box-info-bar .box-info-fill-bar {
        width: 100%;
    }

    .box-name-bar {
        text-align: center;
    }
}









.box .box-footer { /* border-top: 1px solid #f4f4f4;*/
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-topleft: 0;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 10px;
    background-color: #fff;
    overflow: hidden;
    text-align: center;
}


.box-body .form-heading {
    color: #0066cc;
    font-size: 17px;
    font-weight: normal;
    border-bottom: 1px solid #ccc;
    padding: 0 0 5px;
    min-height: 100%;
}

.VerticalSpacer {
    height: 5px;
    width: 1px;
    clear: both;
}

.NormalButton {
    font-size: 11px;
    font-weight: bold;
    color: #ffffff;
    background-color: #5189c2;
    border: none 0px #333333;
    height: 20px;
    width: 70px;
}

.BigButton {
    border: 1px solid #C3D8F1;
    font-size: 11px;
    font-weight: bold;
    color: #333333;
    /* #aaa, #F8FFF3 - 121212, #FFFFFF*/
    background-color: #C3D8F1; /* F2F1F0*/
    width: 90px;
    cursor: pointer;
}

.TextBox {
    height: 13px;
    width: 150px;
    border: solid 1px #C3D8F1; /*#121212*/
    font-size: 11px;
    font-weight: normal;
    color: #333333;
}

.MultiLineTextBox {
    height: 60px;
    width: 250px;
    border: solid 1px #A6193B;
    font-size: 11px;
    font-weight: normal;
    color: #333333;
}

.DisabledTextBox {
    height: 30px;
    width: 150px;
    border: solid 1px #aaa;
    font-size: 11px;
    font-weight: normal;
    color: #333333;
}

.NormalList {
    font-size: 11px;
    font-weight: normal;
    color: #333333;
    vertical-align: text-bottom;
    border: solid 1px #121212;
}

.DropDownList {
    width: 200px;
    border: solid 1px #C3D8F1;
    font-size: 11px;
    font-weight: normal;
    color: #333333;
}

.NormalText {
    font-size: 11px;
    font-weight: normal;
    color: #333333;
}

.BigText {
    font-size: 12px;
    font-weight: bold;
    color: #333333;
}

.BigText_Red {
    font-size: 12px;
    font-weight: bold;
    color: Red;
}

.BigText_Green {
    font-size: 12px;
    font-weight: bold;
    color: Green;
}

span.BigText_Green div:nth-child(2n+1) {
    width: 16% !important;
}

span.BigText_Green div:nth-child(2n+2) {
    width: 85% !important;
    margin-top: -24px;
}

.BigText_Orange {
    font-size: 12px;
    font-weight: bold;
    color: Orange;
}

.NormalHyperLink {
    font-size: 11px;
    color: #0000ff;
}

    .NormalHyperLink a {
        font-size: 11px;
        color: #0000ff;
        text-decoration: none;
    }

        .NormalHyperLink a:hover {
            font-size: 11px;
            font-weight: bold;
            color: #A6193B;
            text-decoration: none;
        }

.BoldHyperLink {
    font-size: 11px;
    font-weight: bold;
    color: #0000ff;
    padding: 15px 0px 20px 0px;
}

    .BoldHyperLink a {
        font-size: 11px;
        font-weight: bold;
        color: #0000ff;
        text-decoration: none;
    }

        .BoldHyperLink a:hover {
            font-size: 11px;
            font-weight: bold;
            color: #A6193B;
            text-decoration: none;
        }

.Star {
    width: 4px;
    color: #ff0000;
    vertical-align: top;
}



big {
    font-size: 30px;
    color: #000000;
    line-height: normal;
}

.bigForPopup {
    font-size: 20px;
    color: #000000;
    line-height: normal;
}

.MainTable {
    width: 100%;
    border-color: #F7E3E8; /* #aaa, #F8FFF3 - 121212, #FFFFFF*/
    border-style: solid;
    border-width: 1px;
}

.PopupMainTable {
    width: 100%;
    border-color: #FFFFFF; /* #F8FFF3 - 121212*/
    border-style: solid;
    border-width: 1px;
}

.NormalTable {
    width: 100%;
    border-color: #121212;
    border-style: solid;
    border-width: 1px;
}

.PaddingLeft_5 {
    padding: 0px 0px 0px 5px;
    text-align: left;
    vertical-align: top;
}

.PaddingRight_5 {
    padding: 0px 5px 0px 0px;
    text-align: right;
    vertical-align: top;
}

.PaddingLeft_10 {
    padding: 0px 0px 0px 10px;
    text-align: left;
}

span#ctl00_mainContent_SpnUserDetailMessage div:nth-child(2n+1) {
    width: 9% !important;
}

span#ctl00_mainContent_SpnUserDetailMessage div:nth-child(2n+2) {
    width: 90% !important;
    margin-top: 7px;
}

.PaddingRight_10 {
    padding: 0px 0px 0px 0px;
    text-align: right;
}

.PaddingRight_20 {
    padding: 0px 20px 0px 0px;
    text-align: right;
}

.HeadingText {
    font-size: 14px;
    font-weight: bold;
    color: #333333; /*vertical-align: text-bottom;*/
}

.TableTopBottomBorder {
    border-bottom: solid 1px black;
    border-top: solid 1px black;
    width: 100%;
}

.TableBottomBorder {
    border-bottom: solid 1px black;
    width: 100%;
}

.DateLoginHeader {
    /*background-color: Navy; #b22222, Navy #8EB36B;*/
    font-size: 11px;
    font-weight: bold;
}

    .DateLoginHeader span {
        color: #fff;
    }

.MenuHeader {
    /*background-color:#C3D8F1; 003767/#A6193B;*/ /*#b22222, Navy #8EB36B;*/
    font-size: 11px;
    /*font-weight: bold;*/
    color: #000;
    text-align: left;
}

.DateLoginHeader span.SectionHeader {
    /*background-color:#99cbeb;#C3D8F1 ; #003767;*/

    background-color: #DDE8F5;
    background: -webkit-gradient(linear, left top, left bottom, from(#C3D8F1), to(#DDE8F5));
    background: -moz-linear-gradient(top, #C3D8F1, #DDE8F5);
    font-size: 13px;
    font-weight: bold;
    line-height: 25px;
    color: #000;
    padding: 0px 10px;
}

.SectionFooter {
    /*background-color:#99cbeb;#C3D8F1 ; #003767;*/

    background-color: #DDE8F5;
    background: -webkit-gradient(linear, left top, left bottom, from(#C3D8F1), to(#DDE8F5));
    background: -moz-linear-gradient(top, #C3D8F1, #DDE8F5);
    font-size: 13px;
    font-weight: bold;
    line-height: 25px;
    color: #000;
    border-bottom: 0;
}

.PreserveMyLogin {
    background-color: Green;
    font-size: 11px;
    font-weight: bold;
    color: White;
    padding: 0px 1px 3px 1px;
}

.LoginPreserved {
    background-color: Red;
    font-size: 11px;
    font-weight: bold;
    color: White;
    padding: 0px 1px 1px 1px;
}

.AltRow {
    background-color: #E5FFCC;
}

.MainRow {
    background-color: #F2FFE6;
}

.Separator {
    height: 8px;
}

.DefaultTableStyle {
    border-color: #C3D8F1; /*#aaa*/
    border-style: solid;
    border-width: 1px;
}

.wel-screen {
    font-size: 30px;
    text-align: center;
}

.DefaultTableStyle tr td input[type="checkbox"] {
    margin-right: 5px;
    margin-left: 10px;
    margin-top: 15px;
}

.DefaultTableStyle2 {
    border-bottom: #aaa 1px solid;
    border-top: #aaa 1px solid;
}

.p-all-area {
    padding: 15px;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}
/*heterosexual*/
.heterosexual {
    width: 30%;
    margin: 0px;
    padding: 0px;
    float: left;
}

.inputname {
    float: left;
    width: 60%;
    margin: 0px 0px 0px 20px;
}
/*heterosexual*/
/* Grid View Styles*/
.GridStyle {
    border-color: #7793B9;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
}

table.GridStyle tr th {
    border-right: 1px solid #d1d1d1;
    background: #e1e1e1;
    padding: 12px 10px;
    text-align: left;
}

table.GridStyle tr:nth-child(odd) td {
    background: #f1f1f1;
}

table.GridStyle tr:nth-child(even) td {
    background: #fff;
}

table.GridStyle tr td,
table.GridStyle tr th {
    padding: 12px 10px;
    border: 1px solid #d1d1d1;
}

.gridview td {
    background-color: #000;
    height: 33px;
    background-image: url(../../images/footer-bg.jpg);
    padding-left: 4px;
}

.gridview {
    background-color: #fff;
    padding: 10px;
    margin: 2% auto;
}

    .gridview a {
        margin: auto 1%;
        /*border-radius:20%;
      background-color:#E9F1FC;
      -o-box-shadow:1px 1px 1px #111;
      -moz-box-shadow:1px 1px 1px #111;
      -webkit-box-shadow:1px 1px 1px #111;
      box-shadow:1px 1px 1px #111;    
          */
        padding: 1px 3px 1px 3px;
        color: #00156E;
        font-size: 11px;
        text-decoration: none;
    }

        .gridview a:hover {
            background-color: #fff;
            color: #000;
            border: 1px #7793B9 solid;
            text-decoration: none;
            padding: 1px 3px 1px 3px;
            -o-box-shadow: 1px 1px 1px #111;
            -moz-box-shadow: 1px 1px 1px #111;
            -webkit-box-shadow: 1px 1px 1px #111;
            box-shadow: 1px 1px 1px #111;
        }

    .gridview span {
        background-color: #fff;
        color: #000;
        -o-box-shadow: 1px 1px 1px #111;
        -moz-box-shadow: 1px 1px 1px #111;
        -webkit-box-shadow: 1px 1px 1px #111;
        box-shadow: 1px 1px 1px #111;
        border-radius: 20%;
        font-size: 11px;
        border: 1px #7793B9 solid;
        padding: 1px 3px 1px 3px;
    }

    .gridview td table tr td {
        padding: 0px;
    }

        .gridview td table tr td a {
            padding: 10px 15px;
            background: #7d8083;
            color: #fff;
            border-radius: 2px;
            box-shadow: none;
        }

            .gridview td table tr td a:hover {
                padding: 10px 15px;
                background: #286090;
                color: #fff;
                border-radius: 2px;
                box-shadow: none;
                border: none;
            }

        .gridview td table tr td span {
            padding: 10px 15px;
            background: #286090;
            color: #fff;
            border-radius: 2px;
            box-shadow: none;
            border: none;
        }
/* For alternating color style in table*/
.NorRow {
    background-color: #ffffff;
    color: #000;
    height: 24px;
    text-align: left;
    font-size: 12px;
    font-family: 'Source Sans Pro','Helvetica Neue',Helvetica,Arial,sans-serif;
}

    .NorRow td {
        padding: 2px 5px 0px 5px;
    }

.AltRowTable {
    background-color: #DDDDDD; /*eef6f9*/
    color: #333333;
    font-size: 12px;
    height: 24px;
    text-align: left;
    padding: 0px 1px 0px 1px;
    font-family: 'Source Sans Pro','Helvetica Neue',Helvetica,Arial,sans-serif;
}

    .AltRowTable td {
        padding: 2px 5px 0px 5px;
    }

/* For alternating color style in table end*/


/*Styles for tab control*/

#tabs {
    width: 98%;
}

#header {
    width: 100%;
    float: left;
    border-bottom: 1px solid #aaa;
}

ul.tabs {
    margin: 0;
    padding: 0;
    list-style: none;
}

    ul.tabs li {
        margin: 0;
        padding: 0;
        float: left;
    }

    ul.tabs a {
        text-decoration: none;
        display: block;
        margin: 0 2px 0 2px;
        padding: 3px 10px;
        border: 1px solid #aaa;
        border-width: 1px 1px 0 1px;
        background: #ddd;
        color: #888;
        font-size: 0.8em;
    }

        ul.tabs a.current {
            background: white;
            color: black;
            margin-bottom: -1px;
            padding-bottom: 4px;
        }

        ul.tabs a:hover {
            background: white;
        }

#tabs .content {
    clear: both;
}

#tabs .content_tab {
    padding: 5px;
    border: 1px solid #aaa;
    border-width: 0px 1px 1px 1px;
    height: 150px;
    overflow: auto;
}


.ProgressBar {
    color: #990033;
    font-size: small;
}

.EmptyTemplate {
    color: #FF0000;
}

.LineHeight {
    line-height: 8px;
}

.BoldLabel {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.42857143;
    color: #333333;
    font-weight: bold;
}

.WaterMark {
    color: Gray;
}

.PageColor {
    background-color: #F7E3E8;
}

.GreeBackground {
    background-color: Green;
    font-size: 11px;
    font-weight: bold;
    color: White;
    padding: 0px 1px 3px 1px;
}

.OrangeBackground {
    background-color: Orange;
    font-size: 11px;
    font-weight: bold;
    color: White;
    padding: 0px 1px 1px 1px;
}


.modalBackground {
    background-color: #fff;
    filter: alpha(opacity=70);
    opacity: 0.7px;
}

.modalPopup {
    background-color: #ffffdd;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    padding: 3px;
    width: 250px;
}

.PaddingLeft_20 {
    padding: 0px 0px 0px 20px;
    text-align: left;
}

.RowColor {
    background-color: Gray;
}

.linkNoUnderline a {
    text-decoration: none;
}

.mystyle {
    border-width: 0 0 1px 1px;
    border-spacing: 0;
    border-collapse: collapse;
    border-style: solid;
}

.ToUpperCase {
    text-transform: uppercase;
}

.NormalText_Black {
    font-size: 11px;
    font-weight: normal;
    color: #000000;
}



.FWAjaxCalendar .ajax__calendar_container {
    border: 1px solid #A6193B;
    background-color: #FFFFFF;
    font-size: 11px;
    color: #A6193B;
}

.FWAjaxCalendar .ajax__calendar_header {
    background-color: #A6193B;
    font-size: 11px;
    font-weight: bold;
    color: White;
}

.FWAjaxCalendar .ajax__calendar_prev {
    background-image: url(../Images/bullet.gif); /*Left Arrow Image*/
}

.FWAjaxCalendar .ajax__calendar_next {
    background-image: url(../Images/bullet.gif); /*Right Arrow Image*/
}


/*Telerik overwriteen form-control Added by Pijush css*/
.RadComboBox, .RadComboBox_WebBlue {
    width: 100% !important;
}

.altrow-color {
    background-color: #dddddd;
    color: #000;
}

.selectname {
}

    .selectname #MainContent_txtName {
        width: 100% !important;
        display: inline;
    }

    .selectname .RadComboBox, .RadComboBox_WebBlue {
        width: auto !important;
    }

.setCtrl {
    float: left;
    width: 90% !important;
}

.setLnk {
    float: right;
    max-width: 10%;
}

.setCtrl100 {
    width: 100% !important;
}

.form-control {
    font-size: 1.0em;
}

    .form-control.IsdStd {
        width: 20% !important;
        float: left;
    }

    .form-control.Phone {
        width: 40% !important;
        float: left;
        margin-left: 0px !important;
    }

    .form-control.Ext {
        width: 14%;
        float: left;
        margin-left: 0px;
    }

    .form-control.Plus {
        width: 5%;
        float: left;
        margin-left: 0px;
        text-align: center;
        padding: 1px;
    }

.topSet {
    margin: 0 0 0 4%;
    padding: 0 5px 5px;
}

.control-label.cb {
    padding: 0 0 0 5%;
}

.form-control.PRType {
    float: left;
    padding: 0px;
    margin: 0px;
    width: 50%;
}

table#MainContent_chklstType {
    width: auto;
}

    table#MainContent_chklstType td {
        padding: 0 15px 0 0;
    }

        table#MainContent_chklstType td input[type="checkbox"] {
            float: left;
        }

        table#MainContent_chklstType td label {
            float: left;
            padding: 2px 0 0 2px;
        }

.col-sm-12 > table {
    margin-left: -12px;
}

#TestTable td {
    width: 27.2%;
}

#PhoneTable td {
    width: 27.2%;
}

.StandaloneLink {
    float: right;
}


.round {
    position: relative;
}

    .round input[type="checkbox"]:checked + label {
        background-color: #fff;
        border-color: #e50012;
    }

    .round label {
        background-color: #fff;
        border: 1px solid #ccc;
        cursor: pointer;
        height: 18px;
        left: 0;
        position: absolute;
        top: 0;
        width: 18px;
        margin: auto;
        display: block;
        right: auto;
    }

    .round input[type="checkbox"] {
        visibility: hidden;
        margin-top: 0;
        margin-right: 5px;
        width: 18px;
        height: 18px;
        vertical-align: top;
    }

        .round input[type="checkbox"]:checked + label:after {
            opacity: 1;
        }

    .round label:after {
        content: "";
        height: 10px;
        left: 4px;
        opacity: 0;
        position: absolute;
        top: 4px;
        width: 10px;
        background: #e50012;
    }

input[type="checkbox"]:before {
    position: relative;
    /* display: block;*/
    width: 13px;
    height: 13px;
    border: 1px solid #a1a5a9;
    /*content: "";*/
    background: #FFF;
}

body, html {
    height: 100%;
}

body {
    height: inherit;
    min-height: 100vh;
    position: relative;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    font-weight: 400;
    background: #ffffff;
    margin: 0px;
    padding: 0px;
}

.main-container {
    display: flex;
    height: inherit;
    width: 100%;
    overflow: hidden;
}

.login-left, .login-right {
    width: 50%;
    position: relative;
}

    .login-left:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: url("../Images/aed-login-bg.jpg") no-repeat;
        right: 0;
        top: 0%;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

.login-right {
    padding: 0px;
    background: #FFF;
    background-size: cover;
    text-align: left;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.form-wrap {
    padding: 60px 30px;
    position: relative;
    display: block;
    max-width: 400px;
    margin: auto;
    width: 100%;
}

.login-logo {
    margin: 0px auto 60px auto;
    display: block;
}

.login-hd {
    font-size: 24px;
    color: #03a9f4;
    text-decoration: none;
    margin: 50px 0px;
    letter-spacing: .2px;
    text-align: center;
    display: block;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
    font-size: 13px;
    width: 100%;
    display: block;
}

.form-control {
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 0;
    border: 1px solid #ddd;
    border-color: #ededed;
    padding: 15px 12px;
    font-size: 13px;
    height: 48px;
    line-height: normal;
    color: #333;
    margin-top: 3px;
    background: #f1f1f1;
    /*  border-left: 5px solid #03a9f4 !important;*/
    width: 100%;
    display: block;
    -webkit-appearance: none;
    font: inherit;
    margin: 0;
    box-sizing: border-box;
}

.login-btn {
    background: #03a9f4;
    color: #ffffff;
    padding: 12px 15px;
    line-height: normal;
    margin: 20px 2px;
    border: 1px solid #03a9f4;
    outline: none;
    border-radius: 20px;
    width: 100%;
    display: block;
}

.form-section-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
}
/*Color Pallet Bar*/
.color-pallet {
    width: 59%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

    .color-pallet:hover {
        background: #D53846;
    }

    .color-pallet i {
        color: white;
        font-size: 18px;
    }

    .color-pallet .color-pallet-box {
        position: absolute;
        top: 50px;
        background: var(--color);
        padding: 0px;
        display: none;
        box-shadow: 0 0 4px rgba(0,0,0,0.5);
    }

.color-pallet-box ul {
    background: var(--color);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    margin: 0px;
    padding: 12px 27px;
}

    .color-pallet-box ul .colors {
        list-style: none;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 2px solid white;
        cursor: pointer;
    }

        .color-pallet-box ul .colors:nth-child(1) {
            background: #322C3C;
        }

        .color-pallet-box ul .colors:nth-child(2) {
            background: #6C95C9;
        }

        .color-pallet-box ul .colors:nth-child(3) {
            background: #937C70;
        }

.footer-bar {
    position: absolute;
    left: 0px;
    width: 100%;
    right: 0px;
}

    .footer-bar .footer-body {
        padding: 4px 3px;
        background: var(--color);
    }

        .footer-bar .footer-body .footer-body-bottom {
            text-align: center;
        }

            .footer-bar .footer-body .footer-body-bottom span {
                font-size: 12px;
                color: white;
            }
