﻿html, body {
    margin: 0;
    /*font-family: 'Roboto', tahoma;*/
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

@media (min-width: 320px) and (max-width: 1023px) {
    html, body {
        overflow-x: hidden;
    }
}

/*----------------Login And ForgetPasswordCss Start------------------*/

header {
    background-color: #009EE0;
    /*padding: .5% 0;*/
    font-weight: 400;
    letter-spacing: 1px;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

@media (min-width: 320px) and (max-width: 1023px) {
    header {
        padding: 2% 0;
    }
}

header .company {
    width: 90%;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    grid-template-areas: 'logo name';
    grid-auto-columns: -webkit-max-content;
    grid-auto-columns: max-content;
    grid-gap: 10px;
    -ms-flex-line-pack: space-evenly;
    align-content: space-evenly;
    height:50px;
}

@media (min-width: 320px) and (max-width: 1023px) {
    header .company {
        margin: 0 auto;
        grid-auto-columns: auto;
    }
}

header .company .websitelogo {
    width: 70%;
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: logo;
    -ms-flex-item-align: center;
    align-self: center;
    justify-self: end;
}

@media (min-width: 320px) and (max-width: 1023px) {
    header .company .websitelogo {
        width: 50%;
    }
}

header .company h3 {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: name;
    color: #eeeff1;
    font-weight: 300;
    -ms-flex-item-align: center;
    align-self: center;
     font-size: 18px;
     text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
     line-height: 18px;
     font-family: Verdana, Geneva, Tahoma, sans-serif;
}

@media (min-width: 320px) and (max-width: 1023px) {
    header .company h3 {
        font-size: 1.2em;
    }
}

#yellow-shape {
    padding-top: 4%;
    background-image: url("../img/yellow shape half.svg");
    background-repeat: no-repeat;
    background-position: left 25vh;
}

@media (min-width: 320px) and (max-width: 1023px) {
    #yellow-shape {
        padding-top: 15%;
        background-position: -10% 33vh;
    }
}

#login {
    width: 90%;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    grid-template-areas: 'left right';
    -ms-grid-columns: 1.5fr 1fr;
    grid-template-columns: 1.5fr 1fr;
    -ms-grid-rows: minmax(80vh, 1fr);
    grid-template-rows: minmax(80vh, 1fr);
    grid-column-gap: 10px;
}

@media (min-width: 320px) and (max-width: 1023px) {
    #login {
        -ms-grid-columns: auto;
        grid-template-columns: auto;
        -ms-grid-rows: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-template-areas: 'left' 'right';
    }
}

#login .left-side {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: left;
    -ms-flex-item-align: center;
    align-self: center;
    margin-left: 5%;
}

@media (min-width: 320px) and (max-width: 1023px) {
    #login .left-side {
        -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
    }
}

@media (min-width: 320px) and (max-width: 1023px) {
    #login .left-side {
        margin-left: 0%;
    }
}

@media (min-width: 320px) and (max-width: 1023px) {
    #login .left-side #illustration img:first-child {
        padding: 20% 0 0 5%;
    }

    #login .left-side #illustration img:nth-child(2) {
        padding: 0 0 0 30%;
        margin-top: -50%;
    }
}

#login .left-side #customimage img {
    /*width: 70%;*/
    width: 450px;
    height: 299px;
}

@media (min-width: 320px) and (max-width: 1023px) {
    #login .left-side #customimage img {
        width: 100%;
        margin: 10% auto;
    }
}

#login .left-side h3 {
    color: #3d3d3d;
    font-size: 2em;
    font-weight: 300;
    margin: 0;
}

    #login .left-side h3 u {
        text-decoration: none;
    }

@media (min-width: 320px) and (max-width: 1023px) {
    #login .left-side h3 {
        font-size: 2em;
    }

        #login .left-side h3 u {
            border-bottom: 1px solid black;
        }
}

#login .left-side h1 {
    color: #000000;
    font-size: 2em;
    font-weight: 800;
    margin: 0;
}

    #login .left-side h1 u {
        text-decoration: none;
        border-bottom: 2px solid black;
    }

@media (min-width: 320px) and (max-width: 1023px) {
    #login .left-side h1 {
        font-size: 2em;
        margin-top: 10%;
    }

        #login .left-side h1 u {
            border: none;
        }
}

#login .left-side .main-text {
    padding: 1% 0;
}

@media (min-width: 320px) and (max-width: 1023px) {
    #login .left-side .main-text {
        width: 80%;
        margin: 10% auto 10% auto;
    }
}

#login .left-side i {
    display: none;
}

@media (min-width: 320px) and (max-width: 1023px) {
    #login .left-side i {
        display: block;
        text-align: center;
        font-size: 2em;
        -webkit-animation: updown 1s infinite alternate;
        animation: updown 1s infinite alternate;
    }
}

#login .right-side {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: right;
    -ms-flex-item-align: center;
    align-self: center;
    /*border: .5px solid #aaaaaa;*/
    -webkit-box-shadow: 0px 0px 6pt #cccfd0;
    box-shadow: 0px 0px 6pt #cccfd0;
    display: inline-block;
    text-align: center;
    width: 70%;
    margin-left: 20%;
    background-color: white;
    margin: 10% auto;
}

    #login .right-side #yellow-shape-full {
        display: none;
    }

@media (min-width: 320px) and (max-width: 1023px) {
    #login .right-side #yellow-shape-full {
        display: block;
        position: absolute;
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        z-index: -500;
        top: 90%;
    }

        #login .right-side #yellow-shape-full img {
            width: 140%;
        }
}

@media (min-width: 320px) and (max-width: 1023px) {
    #login .right-side {
        margin: 15% auto;
        width: 100%;
    }
}

#login .right-side .orcolor {
    color: #4864ff;
    margin: 3% 0 0 0;
}

#loginheadingtext
{
   background-color: rgba(255, 179, 103, 0.096);
}

#login .right-side .loginheading {
    /*background-color: rgba(255, 179, 103, 0.096);*/
    display: -ms-grid;
    display: grid;
    /*-ms-grid-columns: .4fr 1fr;
      grid-template-columns: .4fr 1fr;*/
    grid-template-areas: 'logo name';
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    grid-column-gap: 35% /*20px*/;
    width: 100%;
}

    /*#login .right-side .loginheading img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: logo;
      justify-self: end;
  width: 50%;
}*/

    #login .right-side .loginheading h2 {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
        grid-area: name;
        justify-self: start;
        color: #009EE0;
        font-size: 26px;
        width: 100%;
    }

    #login .right-side .loginheading .forgotpassword {
        color: #0A257A;
    }

/*#login .right-side .loginheadinglogin {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}*/

/*#login .right-side .loginheadinglogin img {
  width: 30%;
}*/

.copyrights {
    text-align: center;
    color: rgba(0, 0, 0, 0.8);
    width: 80%;
    margin: 0 auto;
    font-size: 12px;
}

@media (min-width: 320px) and (max-width: 1023px) {
    .copyrights {
        margin: 0 auto 20% auto;
    }
}

.mainbutton {
    background-color: #009EE0;
    color: white;
    padding: 3% 34%;
    margin-top: 3%;
    margin-bottom: 10%;
    font-size: 1em;
    cursor: pointer;
    border: none;
    border-radius: .25rem;
}

.input-field {
    width: 80%;
    margin: 0 auto;
    padding-top: 3%;
}

    .input-field:first-child {
        padding-top: 10%;
    }

    .input-field label {
        display: block;
        text-align: left;
        font-weight: 400;
        font-size: .9em;
    }

    .input-field input {
        width: 100%;
        padding: 9px 10px;
        margin: 1px 0;
        display: inline-block;
        border: 1px solid #ccc;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

        .input-field input:focus {
            color: #2931FD;
        }

.checkbox {
    width: 80%;
    margin: 0 auto;
    padding-top: 3%;
}

    .checkbox .label-text {
        cursor: pointer;
        color: #0A257A;
    }

    .checkbox input {
        display: none;
    }

        .checkbox input + .label-text:before {
            content: "\f096";
            font-family: "FontAwesome";
            display: inline-block;
            width: 1em;
        }

        .checkbox input:checked + .label-text:before {
            color: #2931FD;
            content: "\f14a";
        }

.radio {
    width: 70%;
    margin: 0 auto;
    padding-top: 3%;
    padding-bottom: 1%;
}

    .radio p {
        display: block;
        text-align: left;
        font-weight: 400;
        font-size: .9em;
    }

    .radio .radiocontents {
        display: block;
    }

    .radio label {
        cursor: pointer;
        display: inline-block;
        padding-right: 10%;
        text-align: left;
        font-weight: 400;
        font-size: .9em;
    }

    /*.radio input {
  display: none;
}*/

    .radio input + .label-text:before {
        content: "\f10c";
        font-family: "FontAwesome";
        display: inline-block;
        width: 1.2em;
    }

    .radio input:checked + .label-text:before {
        color: #2931FD;
        content: "\f111";
    }

.inline-group {
    /*display: -ms-grid;
  display: grid;*/
    margin: 0 auto;
    padding-top: 5%;
    padding-bottom: 10px;
}

    .inline-group .checkbox {
        padding: 0;
    }

.secondary-color {
    color: #0A257A;
}

.secondary-color-less-opacity {
    color: rgba(10, 37, 122, 0.33);
    -webkit-transition: .3s;
    transition: .3s;
}

    .secondary-color-less-opacity:hover {
        color: #0A257A;
    }

@-webkit-keyframes updown {
    0% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
        opacity: 100;
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        opacity: 0;
    }
}

@keyframes updown {
    0% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
        opacity: 100;
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        opacity: 0;
    }
}

.danger {
    color: #ff2b2b;
    display: block;
    margin: 2% auto 5% auto;
}

.danger-color {
    color: #ff2b2b;
}

.no-padding {
    padding: 0;
}

.no-margin {
    margin-bottom: 0;
}

#changepassword {
    width: 90%;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    grid-template-areas: 'left right';
    -ms-grid-columns: 1.5fr 1fr;
    grid-template-columns: 1.5fr 1fr;
    -ms-grid-rows: minmax(80vh, 1fr);
    grid-template-rows: minmax(80vh, 1fr);
    grid-column-gap: 10px;
}

@media (min-width: 320px) and (max-width: 1023px) {
    #changepassword {
        -ms-grid-columns: auto;
        grid-template-columns: auto;
        -ms-grid-rows: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-template-areas: 'left' 'right';
    }
}

#changepassword .left-side {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: left;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-left: 5%;
}

@media (min-width: 320px) and (max-width: 1023px) {
    #changepassword .left-side {
        margin-left: 0%;
    }
}

#changepassword .left-side h3 {
    color: #3d3d3d;
    font-size: 2.4em;
    font-weight: 300;
    margin: 0 0 0 0;
}

    #changepassword .left-side h3 u {
        text-decoration: none;
    }

@media (min-width: 320px) and (max-width: 1023px) {
    #changepassword .left-side h3 {
        margin-top: 10%;
        font-size: 2em;
    }

        #changepassword .left-side h3 u {
            border-bottom: 1px solid black;
        }
}

#changepassword .left-side h1 {
    color: #3d3d3d;
    font-size: 3em;
    font-weight: 200;
    margin: 0 0 3% 0;
}

    #changepassword .left-side h1 strong {
        color: black;
    }

    #changepassword .left-side h1 u {
        text-decoration: none;
        border-bottom: 2px solid black;
    }

@media (min-width: 320px) and (max-width: 1023px) {
    #changepassword .left-side h1 {
        font-size: 2em;
        margin-top: 10%;
    }

        #changepassword .left-side h1 u {
            border: none;
        }
}

#changepassword .left-side .main-text {
    padding: 1% 0;
}

@media (min-width: 320px) and (max-width: 1023px) {
    #changepassword .left-side .main-text {
        width: 80%;
        margin: 10% auto 10% auto;
    }
}

#changepassword .left-side i {
    display: none;
}

@media (min-width: 320px) and (max-width: 1023px) {
    #changepassword .left-side i {
        display: block;
        text-align: center;
        font-size: 2em;
        -webkit-animation: updown 1s infinite alternate;
        animation: updown 1s infinite alternate;
    }
}

#changepassword .right-side {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: right;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    border: .5px solid #aaaaaa;
    -webkit-box-shadow: 0px 0px 20pt #ade7ff;
    box-shadow: 0px 0px 20pt #ade7ff;
    display: inline-block;
    text-align: center;
    width: 70%;
    margin-left: 20%;
    background-color: white;
}

    #changepassword .right-side #yellow-shape-full {
        display: none;
    }

@media (min-width: 320px) and (max-width: 1023px) {
    #changepassword .right-side #yellow-shape-full {
        display: block;
        position: absolute;
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        z-index: -500;
        top: 90%;
    }

        #changepassword .right-side #yellow-shape-full img {
            width: 140%;
        }
}

@media (min-width: 320px) and (max-width: 1023px) {
    #changepassword .right-side {
        margin: 15% auto;
        width: 100%;
    }
}

#changepassword .right-side .orcolor {
    color: #4864ff;
    margin: 3% 0 0 0;
}

#changepassword .right-side .loginheading {
    background-color: rgba(255, 179, 103, 0.096);
    display: -ms-grid;
    display: block;
    -ms-grid-columns: -0.6fr 1fr;
    grid-template-columns: -0.6fr 1fr;
    grid-template-areas: 'logo name';
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid-column-gap: 10px;
}

    /*#changepassword .right-side .loginheading img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: logo;
  -ms-grid-column-align: end;
      justify-self: end;
  width: 100%;
}*/

    #changepassword .right-side .loginheading h2 {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
        grid-area: name;
        -ms-grid-column-align: start;
        justify-self: start;
        color: #009EE0;
        font-size: 25px;
        width: 100%;
    }

    #changepassword .right-side .loginheading .forgotpassword {
        color: #0A257A;
    }

.BoxBottom {
    display: block;
    margin: 2% auto 5% auto;
}

/*----------------Login And ForgetPasswordCss End------------------*/


/*----------------BoxDashBoardCss Start----------------------------*/

.goodpractice {
    list-style: none;
    padding: 2%;
    width: 50%;
    margin: 0 auto;
    background-color: #14b558;
    border-radius: 50px;
    color: white;
    text-align: center;
}

@media (min-width: 320px) and (max-width: 1023px) {
    .goodpractice {
        width: 90%;
        margin: 20% auto;
    }
}

.goodpractice li:first-child {
    margin-bottom: 5%;
    font-size: 1.2em;
}

.goodpractice li {
    margin-bottom: 5%;
}

@media (min-width: 320px) and (max-width: 1023px) {
    .goodpractice li {
        margin-bottom: 10%;
    }
}

#nav {
    border-top: 1px solid rgba(128, 128, 128, 0.8);
    border-bottom: 1px solid rgba(128, 128, 128, 0.8);
}

    /*#nav table tbody tr td ul {
  cursor: pointer;
  margin: 2% 0;
}

#nav table tbody tr td ul li {
  
  padding: 5% 5%;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: .5em;
  font-weight: 300;
  font-family: 'Roboto', tahoma;
}*/
    /*#nav table tbody tr td ul li a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
}*/

    /*#nav table tbody tr td ul li:hover {
  background-color: #5c62fd;
}

#nav table tbody tr td ul li:hover a {
  color: white;
}*/

    /*#nav table tbody tr td ul li[active="yes"] {
  background-color: #5c62fd;
}

#nav table tbody tr td ul li[active="yes"] a {
  color: white;
}*/

    #nav table tbody tr td {
        -webkit-transition: .3s;
        transition: .3s;
        border-radius: .5em;
        font-weight: 300;
        font-family: 'Roboto', tahoma;
        cursor: pointer;
        font-size: 12px;
        margin: 5px;
    }

/*.ActiveGroup {
}

    .ActiveGroup a {
        background-color: #5c62fd;
        color: white;
        padding: 8px;
        -webkit-transition: .3s;
        transition: .3s;
        border-radius: .5em;
        text-transform: uppercase;
    }

.NormalGroup {
    text-decoration: none;
    text-transform: uppercase;
    background-color: none;
}

    .NormalGroup a {
        color: rgba(0, 0, 0, 0.8);
        padding: 8px;
    }

    .NormalGroup:hover {
    }

        .NormalGroup:hover a {
            color: white;
            padding: 8px;
            background-color: #5c62fd;
            -webkit-transition: .3s;
            transition: .3s;
            border-radius: .5em;
        }*/

.ActiveGroup {
    background-color: #ffd35c;
    color: rgba(0, 0, 0, 0.8);
    padding: 8px;
    -webkit-transition: .3s;
    transition: .3s;
    border-radius: .5em;
    text-transform: uppercase;
    margin: 10px;
    border:none;
}

    .ActiveGroup:hover {
        background-color: #ffd35c;
        color: rgba(0, 0, 0, 0.8);
        padding: 8px;
        -webkit-transition: .3s;
        transition: .3s;
        border-radius: .5em;
        text-transform: uppercase;
        margin: 10px;
         border:none;
    }

.NormalGroup {
    text-decoration: none;
    text-transform: uppercase;
    background-color: none;
    color: rgba(0, 0, 0, 0.8);
    padding: 8px;
    margin: 10px;
   -webkit-transition: .3s;
    transition: .3s;
    border-radius: .5em;
    border: 1px solid #ccc;

}

    .NormalGroup:hover {
        color: rgba(0, 0, 0, 0.8);
        padding: 8px;
        background-color: #ffd35c;
        -webkit-transition: .3s;
        transition: .3s;
        border-radius: .5em;
        margin: 10px;
         border:none;
    }


.ModuleHeader1 {
    color: rgba(0, 0, 0, 0.8);
   
     background-color: none;
    border-color: #ccc;
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-bottom-color: transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border: 1px solid #ccc;
    margin-top: 5px;
    margin: 0;
    line-height: 1.22857143;
    font-size: 15px;
    font-family: Arial;
    margin-bottom: 5px;
    font-weight: bold;
    align-self: flex-start;
    height: 25px;
}

.ModuleHeader2 {
    color: rgba(0, 0, 0, 0.8);
    background-color: none;
    border-color: #ccc;
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-bottom-color: transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border: 1px solid #ccc;
    margin-top: 5px;
    margin: 0;
    line-height: 1.22857143;
    font-size: 15px;
    font-family: Arial;
    margin-bottom: 5px;
    font-weight: bold;
    align-self: flex-start;
    height: 25px;
}

.ModuleBody {
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

#cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-flow: row;
    grid-column-gap: 10px;
    margin-top: 1%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (min-width: 320px) and (max-width: 1023px) {
    #cards {
        /*-ms-grid-columns: 1fr;
        grid-template-columns: 1fr;*/
    }
}

#cards .card {
     border: 2px solid #009EE0;
    margin: 5%;
    border-radius: .5em;
    background-color: #ffffff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100px;
    width: 90%;
    font-size: 14px;
    margin-left: 10px;
    margin-right: 10px;
}

@media (min-width: 320px) and (max-width: 1023px) {
    #cards .card {
        /*margin: 10% auto;*/
    }
}

#cards .card:hover {
    -webkit-box-shadow: 0px 0px 20px rgba(102, 102, 102, 0.8);
    box-shadow: 0px 0px 20px rgba(102, 102, 102, 0.8);
}

#cards .card .title-card {
    text-align: center;
    width: 190px;
}

    #cards .card .title-card img {
        width: 20%;
        text-align: center;
        margin: 5% auto;
    }

    #cards .card .title-card p {
        margin: 0;
    }

#cards .cardAlter {
   border: 2px solid #ffd35c;
    margin: 5%;
    border-radius: .5em;
    background-color: #ffffff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100px;
    width: 90%;
    font-size: 14px;
    margin-left: 10px;
    margin-right: 10px;
}

@media (min-width: 320px) and (max-width: 1023px) {
    #cards .cardAlter {
        /*margin: 10% auto;*/
    }
}

#cards .cardAlter:hover {
    -webkit-box-shadow: 0px 0px 20px rgba(102, 102, 102, 0.8);
    box-shadow: 0px 0px 20px rgba(102, 102, 102, 0.8);
}

#cards .cardAlter .title-card {
    text-align: center;
    width: 190px;
}

    #cards .cardAlter .title-card img {
        width: 20%;
        text-align: center;
        margin: 5% auto;
    }

    #cards .cardAlter .title-card p {
        margin: 0;
    }

.heading {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.hr {
    border: 1px solid rgba(128, 128, 128, 0.8);
    margin: 20px auto;
}

.ReportMenu{
    color: rgba(0, 0, 0, 0.8); 
    font-size: 14px;
    padding: 2px;
    margin:10px;
}

.ReportMenu:hover
{
     background-color: #1E90FF;
     color: white;
     border-radius: 4px;

}

.ReportMenu:active
{
     background-color: #1E90FF;
     color: white;
     border-radius: 4px;

}

.ReportHeader1 {
    color: rgba(0, 0, 0, 0.8);
   
     background-color: none;
    
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-bottom-color: transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border: 1px solid #009EE0;
    margin-top: 5px;
    margin: 0;
    line-height: 1.22857143;
    font-size: 15px;
    font-family: Arial;
    margin-bottom: 5px;
    font-weight: bold;
    align-self: flex-start;
    height: 25px;
}

.ReportHeader2 {
    color: rgba(0, 0, 0, 0.8);
    background-color: none;
    
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-bottom-color: transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border: 1px solid #ffd35c;
    margin-top: 5px;
    margin: 0;
    line-height: 1.22857143;
    font-size: 15px;
    font-family: Arial;
    margin-bottom: 5px;
    font-weight: bold;
    align-self: flex-start;
    height: 25px;
}

.ReportBody1 {
   border: 1px solid #009EE0;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.ReportBody2 {
     border: 1px solid #ffd35c;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

/*----------------BoxDashBoardCss End----------------------------*/

#ecare-cards {
    width: 90%;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-rows: auto;
    grid-column-gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (min-width: 320px) and (max-width: 1023px) {
    #ecare-cards {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 10px;
    }
}

#ecare-cards .ecare-card {
    min-width: 100px;
    height: 100px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 2px solid;
    padding: 10%;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    #ecare-cards .ecare-card .card-inside {
        text-align: center;
    }

        #ecare-cards .ecare-card .card-inside .card-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 25px;
            color: #fff;
            display: table-cell;
            vertical-align: middle;
            text-align: center;
        }

        #ecare-cards .ecare-card .card-inside h3 {
            margin: 0;
            padding-top: 15px;
            font-size: .9em;
        }

    #ecare-cards .ecare-card.open {
        color: #FF7B87;
    }

        #ecare-cards .ecare-card.open .card-circle {
            background-color: #FF7B87;
        }

    #ecare-cards .ecare-card.inprogress {
        color: #FFB56A;
    }

        #ecare-cards .ecare-card.inprogress .card-circle {
            background-color: #FFB56A;
        }

    #ecare-cards .ecare-card.inescalation {
        color: #EB94C8;
    }

        #ecare-cards .ecare-card.inescalation .card-circle {
            background-color: #EB94C8;
        }

    #ecare-cards .ecare-card.completed {
        color: #86DB61;
    }

        #ecare-cards .ecare-card.completed .card-circle {
            background-color: #86DB61;
        }

    #ecare-cards .ecare-card.closed {
        color: #59E0D2;
    }

        #ecare-cards .ecare-card.closed .card-circle {
            background-color: #59E0D2;
        }

/*# sourceMappingURL=style.css.map */
