﻿
/*--------Media Queries for writing responsive styles.Extra small devices (portrait phones, less than 576px).No media query since this is the default in Bootstrap----------*/

/*
     Small devices (landscape phones, 576px and up) 175% and above
     @media (min-width: 576px) { ... }
 */


/*
    Medium devices (tablets, 768px and up) 150% md
    @media (min-width: 768px) { ... }
*/

/*
    Large devices (desktops, 992px and up) 125% lg
    @media (min-width: 992px) { ... }
*/

/*
     Extra large devices (large desktops, 1200px and up)  lg
      @media (min-width: 1200px){...}
*/

/* Targets displays using any of Windows’ High Contrast Mode themes: */
@media screen and (-ms-high-contrast: active) {
}

/* Targets displays using the Windows’ "High Contrast Black" theme: */
@media screen and (-ms-high-contrast: white-on-black) {
}

/* Targets displays using the Windows’ "High Contrast White" theme: */
@media screen and (-ms-high-contrast: black-on-white) {
}


/*------------------- Styles overridden from bootstrap ------------------*/

@media (min-width: 1300px) {
    .container {
        max-width: 1200px;
    }
}

.error {
    color: #D93737 !important;
}

.navbar {
    width: 100vw;
}

.container-color {
    background-color: #F3F3F3;
}

.btn {
    background-color: #F3F3F3;
    border: 1px solid #707070;
    padding: 0rem 0.75rem;
    width: auto;
    min-width: 95px;
    height: 30px;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 600;
}

    .btn:focus, .btn.focus {
        outline: 10px black !important;
    }

.btn-primary {
    /*border: none;*/
    background-color: #006FC8 !important;
}

    .btn-primary:focus {
        /*border: none;*/
        outline: 10px black !important;
    }

.form-control {
    max-width: 100%;
    padding: 0rem 0.75rem;
    font-size: 14px;
    border: 1px solid #707070;
    border-radius: 0;
    height: 30px;
}

    /*Accesibility Fix - #8907818 #8918263 #8918362*/
    .form-control:focus {
        border: 2px solid #707070;
        box-shadow: none;
        /*border-color: #006fc8;*/
        border-color: #707070;
    }

.col-form-label {
    color: #505050;
    height: 16px;
    font-size: 12px;
    font-weight: 500;
}

select.form-control:not([size]):not([multiple]) {
    height: 30px;
}

.navbar-Style {
    background-color: #006FC8;
    color: #ffffff !important;
    width: 100%;
}

/*Submit button styling
input[type="button"], input[type="submit"] {
    margin: 10px 10px 10px 0px;
}

/* Placeholder styling for all browsers and placeholder for select */
placeholder {
    color: #A4A4A4;
    font-size: 12px;
    opacity: 0.5;
}

:-ms-input-placeholder {
    color: #A4A4A4;
    font-size: 12px;
    opacity: 0.5;
}

:-ms-input-placeholder {
    color: #A4A4A4;
    font-size: 12px;
    opacity: 0.5;
}

select option[value='']:first-child {
    /*color: #A4A4A4 !important;
    opacity: 1;*/
}

/*Data Table Styling common for all the tables ovverridden bootstrap styles */

.table {
    border: #E8E8E8 solid 1px;
    border-top: none;
}

.tbl-link {
    color: #006FC8 !important;
    text-decoration-line: none !important;
}

.table thead {
    height: 30px;
    color: #FFFFFF;
    background-color: #006FC8;
    font-size: 12px;
    border: 1px solid #006FC8;
}

    .table thead th {
        /*overflow: hidden;
        text-overflow: ellipsis;*/
        white-space: nowrap;
        /*max-width: 100px;*/
    }

.table tbody tr {
    height: 40px;
    font-size: 14px;
    border: none;
    color: #505050;
}

    .table tbody tr:nth-child(odd) {
        background-color: #FFFFFF;
    }

    .table tbody tr:nth-child(even) {
        background-color: #FAFAFA;
    }

.table thead th, .table thead tr {
    border-bottom: none;
    font-weight: 400;
}

.table th, .table td {
    border: none;
}

.table > thead > tr > th {
    padding-right: 0.4rem !important;
}

.row.table-responsive {
    margin-right: 0;
    margin-left: 0;
}

/*Pagination Styles*/
.pagination {
    margin: 0px !important;
    border-radius: 0rem;
}

.page-link {
    padding: 0.5rem 0.5rem;
    font-size: 18px;
    font-weight: 500;
    color: #0173C7;
    background-color: inherit;
    border: none;
}

    .page-link:focus {
        color: #FFFFFF;
        background-color: #0173C7;
        border-color: none;
        box-shadow: none;
    }

    .page-link:hover {
        color: #FFFFFF;
        background-color: #0173C7;
        text-decoration: none;
        border-color: none;
    }

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0rem;
    border-bottom-left-radius: 0rem;
}

.pagination-arrow {
    background-image: url('../Images/page_arrow.svg');
    width: 26px;
    height: 26px;
    display: block;
    margin-bottom: 25%;
    margin-top: 25%;
}



/*------------------- General styles for use -----------------------------------*/
.font-12 {
    font-size: 12px !important;
}

.font-14 {
    font-size: 14px !important;
}

.font-16 {
    font-size: 16px !important;
}

.font-18 {
    font-size: 18px !important;
}

.font-20 {
    font-size: 20px !important;
}

.font-24 {
    font-size: 24px !important;
}

.font-32 {
    font-size: 32px !important;
}

.font-10 {
    font-size: 10px !important;
}

.font-8 {
    font-size: 8px !important;
}

.font-36 {
    font-size: 36px !important;
}

.font-40 {
    font-size: 40px !important;
}

.font-45 {
    font-size: 45px !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.font-lighter {
    font-weight: lighter !important;
}

.tab-seperator {
    color: #BCBCBC !important;
}

.form-container {
    box-shadow: rgba(0,0,0,0.16) 0px 1px 8px;
    border: 1px solid #E5E5E5;
    border-top: none !important;
}

.form-heading {
    color: #006FC8;
    font-size: 16px;
    width: 120px;
    height: 20px;
    font-family: 'Segoe UI';
    font-weight: 600;
    margin-top: -20px;
}

.form-heading-2 {
    color: #006FC8;
    font-size: 14px;
    width: 120px;
    height: 21px;
    font-family: 'Segoe UI';
    font-weight: 600;
    margin-top: 10px;
}

.padding-left-19 {
    padding-left: 19px;
}

.margin-top-25 {
    margin-top: 25px;
}

.margin-left-30 {
    margin-left: 30px;
}

.margin-left--45 {
    margin-left: -45px;
}

.margin-left--65 {
    margin-left: -65px;
}

.padding-left-72 {
    padding-left: 72px;
}

.profile-image {
    width: 38px;
    height: 38px;
    border-left-style: solid;
    border-right-style: solid;
    border-top-style: solid;
    border-bottom-style: solid;
    border-color: #FFFFFF;
}

.profile-internal-color {
    color: #ffffff;
}

.max-width-23 {
    max-width: 23% !important;
}

.dropdown-services {
    background-color: transparent !important;
}


/*-- --------------------- Styles used for My Requests Page ----------------- --*/

/*Search box with dropdown styles*/

.input-group-btn {
    width: auto;
    border: 1px solid #707070;
    border-right: 0px;
}

/*Nav pills styling for My Requests Page*/

#myRequestsNav.nav-pills .nav-link {
    color: #666666;
    background-color: #E8E8E8;
    text-decoration: solid;
    border-radius: 0;
    display: inline-block;
    padding: 0.5rem 0rem;
}

    #myRequestsNav.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        color: #006FC8;
        background-color: inherit;
        text-decoration: none;
        border-bottom-width: 1.5px;
        border-bottom-style: solid;
        border-bottom-color: #006FC8;
    }

.black-color {
    color: #000000;
}

.white-color {
    color: #FFFFFF;
}

.footer-width {
    width: 1200px;
}

.footer-color {
    background-color: #E8E8E8;
}

.no-border {
    border-bottom: hidden;
    border-top: hidden;
    border-left: hidden;
    border-right: hidden;
}
/*Added Styles*/

/*Track Partners Page*/

.delete-icon {
    background-image: url('../Images/delete.svg');
    width: 12px;
    height: 15px;
    display: block;
    margin-right: auto;
    margin-left: 12px;
    color: #707070 !important;
}

.favourites-icon {
    background-image: url('../Images/Fevourite.svg');
    width: 12px;
    height: 15px;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 25%;
    margin-top: 25%;
}

/*Profile Details page*/

.nav-tabs .nav-link {
    background-color: #E9E9E9;
    color: #626262;
    border: 1px solid #D2D2D2;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    height: 35px;
    width: auto;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    box-shadow: 0px 1px 8px rgba(0,0,0,0.16);
    margin-bottom: 0px;
}

    .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
        color: #006FC8;
        /*border: none;*/
    }

    .nav-tabs .nav-link.disabled {
        background-color: #E9E9E9;
        color: #888888;
        border: 1px solid #D2D2D2;
    }

/*Styles for Home>Partners>*/

.sitemap {
    font-size: 12px;
    word-spacing: 5px;
    font-weight: inherit;
}

/*layout*/
.navbar-height {
    height: 60px;
}

.navbar-title-abbrevation {
    padding-top: 0px;
    margin-top: -12px;
    font-size: 8px;
    font-family: 'Segoe UI';
    font-weight: normal;
    margin-left: 38px;
    color: #FFFFFF;
    width: 100%;
    margin-bottom: 10px;
}

.navbar-title-abbrevation-Dashboard {
    padding-top: 0px;
    margin-top: -14px;
    font-size: 8px;
    font-family: 'Segoe UI';
    font-weight: normal;
    margin-left: 38px;
    color: #303030;
    width: 100%;
}

.navbar-menu {
    margin-top: 35px;
    margin-left: -5%;
}

.navbar-dashboard-menu {
    margin-top: 35px;
    margin-left: -120px;
}

.layout-body {
    padding-top: 30px;
}

.loginpart-Welcome-Dashboard {
    font-size: 12px;
    padding-left: 21px;
    text-align: right;
}

.loginpart-username-Dashboard {
    font-size: 12px;
    padding-left: 21px;
    text-align: right;
}

.navbar {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.container-fluid {
    width: 100%;
    padding-right: 0px !important;
    padding-left: 0px !important;
    margin-right: auto;
    margin-left: auto;
}

.container-color {
    background-color: #e5e5e5;
}

.container-color-internal {
    background-color: #ffffff;
}

.navbar-height-internal {
    height: 80px;
}

.margin-top-5 {
    margin-top: 5px;
}

.padding-top-10 {
    padding-top: 10px;
}

.footer-left {
    margin-left: 65px;
    font-size: 11px;
    font-family: 'Segoe UI';
    font-weight: normal;
    height: 15px;
    margin-top: 5px;
}

.footer-right {
    height: 15px;
    font-family: Segoe UI;
    font-size: 17px;
    font-weight: normal;
    margin-top: 5px;
    margin-left: 60px;
}

.footer-right-bottom {
    font-size: 9px;
    font-family: 'Segoe UI';
    font-weight: normal;
    height: 15px;
    margin-top: 0px;
    margin-left: 75px;
}






/*
  Styles for: Partner file Submission Page 
  Author:  
  Date: 3/09/2018 
*/

.dropdown-small {
    height: auto;
    width: 100px;
}

.button-small {
    height: auto;
    width: auto;
}

.height-20 {
    height: 20px !important;
}

.height-25 {
    height: 25px !important;
}

.btn-apply {
    height: 20px !important;
    width: 100%;
    background-color: #A5A5A5;
    line-height: 1;
    color: #FFFFFF;
    border: 1px solid #707070;
    vertical-align: bottom;
}

.btn-reset {
    height: 20px !important;
    width: 100%;
    line-height: 1;
    background-color: #F3F3F3;
    color: #505050;
    border: 1px solid #707070;
    vertical-align: bottom;
}

.reset-image {
    height: 10px;
    width: 10px;
}

.btn-download {
    height: 15px;
    width: 15px;
}

img.btn-download {
    vertical-align: unset !important;
}

.btn-lg {
    width: 115px;
}


/*
    Styles for: Newly added styles for Welcome page and Profile Setup page.
    Author:  
    Date: 3/19/2018

*/

/*Welcome Page*/

#landingPage {
    height: 100vh;
    background-image: url('../../Images/welcome gb.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#content-block {
    display: block;
    background-color: #FFFFFF;
    height: 300px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#microsoftLogo {
    display: block;
    z-index: 0;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#content-text {
    color: #282828 !important;
    font-weight: lighter !important;
}

#profileSetupLink {
    color: #006FC8;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 40px;
}

    #profileSetupLink:hover {
        text-decoration-line: none;
    }

/*Profile Setup page*/

#PartnerTypeId, #PartnerRoleId > option:first-child {
    opacity: 1;
    display: block;
    color: inherit !important;
}

.prevent-underline {
    text-decoration-line: none !important;
}

.vr {
    border-left: 1px solid rgba(112,112,112,0.2);
}

.setup-heading {
    color: #0057d9;
    font-size: 16px;
    font-weight: normal;
    padding-left: 0px !important;
}

.form-text {
    padding-left: 0px !important;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #505050;
    font-size: 12px;
    line-height: 16px;
    font-weight: normal;
}

/*Newly added form support color-profile IE10*/
.form-check {
    position: relative;
    display: inline-table;
    padding-left: 1.25rem;
}


.form-check-label {
    display: inline-block;
    color: #505050;
    font-size: 12px;
    line-height: 16px;
    font-weight: normal;
    vertical-align: text-top !important;
}

.list-content {
    padding-right: 0;
    border: 1px solid #707070 !important;
}

.list-group-label {
    height: 25px;
    background-color: #006FC8;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    margin: 0 !important;
    padding: 0.25em;
}

ul.list-group {
    padding-right: 0;
    height: 125px;
    overflow-y: scroll;
}

.list-group li {
    height: auto;
}

.list-group-item {
    font-size: 12px;
    font-weight: 400;
    color: #505050;
    /*Commented for Accessibility Zoom issue*/
    padding: 0.25em;
    /*line-height: 20px;*/
    text-align: left;
    border: 0;
}


@media (min-width: 576px) {
    .list-group-item {
        padding: 1.25em;
    }
}

@media (min-width: 768px) {
    .list-group-item {
        padding: 1.25em;
    }
}

@media (min-width: 992px) {
    .list-group-item {
        padding: 0.75em;
    }
}

@media (min-width: 1200px) {
    .list-group-item {
        padding: 0.5em;
    }
}

.list-group-item:first-child {
    border-radius: 0 !important;
}

.list-group-item:last-child {
    border-radius: 0 !important;
}

.list-group-item:nth-child(2n+1) {
    background-color: #FAFAFA;
}


/*
      Styles For: System Analyst Dashboard Styles which can be reused for all the dashboard designs 
      Author:
      Date :3/21/2018
 */

#SystemAnalystBanner {
    background-image: url('../../../../Images/system_analyst_banner.png');
    background-repeat: no-repeat;
    width: 100vw;
    min-height: 375px;
    height: 55vh;
    background-size: cover;
    background-position: center;
    -ms-high-contrast-adjust: none;
}

#PartnerDashboardBanner {
    background-image: url('../../../../Images/PartnerBanner-1.png');
    background-repeat: no-repeat;
    width: 100vw;
    min-height: 375px;
    height: 55vh;
    background-size: cover;
    background-position: center;
    -ms-high-contrast-adjust: none;
}

#AccountManagerBanner {
    background-image: url('../../../../Images/accountmanagrbanner.png');
    background-repeat: no-repeat;
    width: 100vw;
    min-height: 375px;
    height: 55vh;
    background-size: cover;
    background-position: center;
    -ms-high-contrast-adjust: none;
}

#SuperAdminBanner {
    background-image: url('../../../../Images/Supper_admin_page banner.png');
    background-repeat: no-repeat;
    width: 100vw;
    min-height: 375px;
    height: 55vh;
    background-size: cover;
    background-position: center;
    -ms-high-contrast-adjust: none;
}

    #SuperAdminBanner .banner-block-header, #SuperAdminBanner .learn-more {
        color: #61F9FF !important;
    }

.banner-description {
    display: inline-block;
    margin-top: 5rem;
    margin-left: 5rem;
    width: 100%;
    height: auto;
    background-color: #000000;
    color: #ffffff;
    opacity: 0.85;
    z-index: 1030;
    font-family: "Segoe UI";
    font-weight: normal;
    font-size: 12px;
}

#PartnerDashboardBanner .banner-description {
    display: inline-block;
    margin-top: 6rem;
    margin-right: 5rem;
    width: 100%;
    height: auto;
    background-color: #000000;
    color: #ffffff;
    opacity: 0.85;
    z-index: 1030;
    font-family: "Segoe UI";
    font-weight: normal;
    font-size: 12px;
}


.banner-description-partner {
    display: inline-block;
    margin-top: 150px;
    width: 450px;
    height: 250px;
    background-color: #000000;
    color: #ffffff;
    opacity: 0.75;
    z-index: 1030;
    font-family: 'Segoe UI';
    font-weight: normal;
    font-size: 12px;
}

.banner-block-header {
    font-family: 'Segoe UI';
    font-weight: lighter;
    font-size: 30px;
    color: #FFC400;
}

.banner-block-body {
    font-family: 'Segoe UI';
    font-weight: normal;
    font-size: 15px;
}

.learn-more {
    color: #FFC400 !important;
    font-size: 14px;
    font-family: 'Segoe UI';
    font-weight: normal;
}

.link-text {
    padding-top: 15px;
    color: #282828 !important;
}

.link-text-description {
    color: #505050 !important;
}

.dashboard-icon-lg {
    height: 4.5rem;
    width: 4.5rem;
}

.dashboard-icon-md {
    height: 4rem;
    width: 4rem;
}

.dashboard-icon-sm {
    height: 3rem;
    width: 3rem;
}



/*NEW STYLES ADDED BY ROHAN ON 3/22/2018*/

.container-block-home {
    display: inline-block;
    z-index: 1030;
    width: 435px;
    height: 251px;
    margin-top: 99px;
    margin-left: 64px;
    margin-bottom: 99px;
    margin-right: 866px;
    border-radius: 1.5px;
    opacity: 0.75;
    background-color: black;
    padding-left: 30px;
    padding-top: 34px;
    padding-right: 30px;
    color: #ffffff;
    font-family: 'Segoe UI';
    font-weight: normal;
    font-size: 12px;
}


.container-block-home-header {
    font-family: 'Segoe UI';
    font-weight: lighter;
    font-size: 30px;
    color: #BAD80A;
}

.container-block-home-body {
    padding-top: 12px;
    font-family: 'Segoe UI';
    font-weight: 500;
    font-size: 12px;
    width: 378.35px;
    height: 92px;
}

.container-block-home-body-learn {
    margin-left: -14px;
    font-size: 12px;
    color: #BAD80A;
}

.navbar-Appname {
    font-family: 'Segoe UI';
    font-weight: lighter;
    margin-left: 45px;
    margin-right: 40px;
    margin-top: 0px;
    font-size: 49px;
    color: #303030;
    text-decoration: none;
}

    .navbar-Appname:hover {
        text-decoration: none;
    }

.navbar-DropMenuItem {
    display: inline-block;
    padding-right: 2px;
    padding-left: 2px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 13px;
    color: #000000;
    width: 100%;
}

.navbar-menu {
    width: 100%;
    height: 62px;
    opacity: 1;
    margin-top: 23px;
}

.navbar-text {
    display: inline-block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-menuItem {
    margin-right: 39px;
    font-size: 13px;
    color: #FFFFFF;
    width: 100%;
    font-weight: 600;
    text-align: center;
    align-content: center;
    font-family: Segoe UI;
    font-weight: 300;
}

.navbar-menuItem-services {
    margin-right: 39px;
    font-size: 14px;
    color: #ffffff;
    width: 100%;
    font-weight: 600;
    text-align: center;
    align-content: center;
    font-family: Segoe UI;
    font-weight: 600;
    margin-left: 14px;
}

.navbar-menuItem-ImageHome {
    margin-top: -5px;
    margin-right: 20px;
    margin-left: 35px;
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
    width: 22px;
    height: 18px;
    text-align: center;
    align-content: center;
}

.navigation-ImageHome {
    margin-left: 95px;
    margin-right: 5px;
    font-size: 5px;
    color: #707070;
    font-weight: 600;
    width: 12px;
    height: 11px;
    text-align: center;
    align-content: center;
}

.navigation-ImageArrow {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 5px;
    color: #707070;
    font-weight: bold;
    width: 16px;
    height: 20px;
    text-align: center;
    align-content: center;
    transform: rotate(90deg);
}

.navigation-text {
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 12px;
    font-family: 'Segoe UI';
    font-weight: normal;
    color: #707070;
    width: auto;
    height: auto;
    text-align: center;
    align-content: center;
}

.dropdown-profile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    width: 180%;
    min-width: 10rem;
    padding: 1px 1px 1px 1px;
    margin: 1px -11px 1px -90px !important;
    font-size: 1rem;
    color: #000000;
    text-align: left;
    list-style: none;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.15rem;
}




.dropdown-menu-services.show {
    display: block;
}

.dropdown-profile-menu.show {
    display: block;
}

.column-home-1 {
    width: 310px;
    height: 200px;
    align-content: center;
}

.column-reports-1 {
    width: 310px;
    height: 200px;
    align-content: center;
}

.column-home-1-image {
    width: 68px;
    height: 68px;
    padding-left: 150px;
    padding-right: 35px;
    padding-top: 41px;
    align-content: center;
}

.column-home-1-text-header {
    width: 350px;
    height: 21px;
    font-size: 16px;
    color: #505050;
    padding-left: 90px;
    padding-right: 55px;
    padding-top: 34px;
    padding-bottom: 4px;
    font-family: 'Segoe UI';
    font-weight: bold;
    align-content: center;
}

.column-reports-1-text-header {
    width: 500px;
    height: 21px;
    font-size: 16px;
    color: #505050;
    padding-left: 60px;
    padding-right: 55px;
    padding-top: 34px;
    padding-bottom: 4px;
    font-family: 'Segoe UI';
    font-weight: bold;
    align-content: center;
}

.column-home-2-text-header {
    width: 350px;
    height: 21px;
    font-size: 16px;
    color: #505050;
    padding-left: 140px;
    padding-right: 55px;
    padding-top: 34px;
    padding-bottom: 4px;
    font-family: 'Segoe UI';
    font-weight: bold;
    align-content: center;
}

.column-home-3-text-header {
    width: 350px;
    height: 21px;
    font-size: 16px;
    color: #505050;
    padding-left: 135px;
    padding-right: 55px;
    padding-top: 34px;
    padding-bottom: 4px;
    font-family: 'Segoe UI';
    font-weight: bold;
    align-content: center;
}

.column-home-4-text-header {
    width: 350px;
    height: 21px;
    font-size: 16px;
    color: #505050;
    padding-left: 158px;
    padding-right: 55px;
    padding-top: 34px;
    padding-bottom: 4px;
    font-family: 'Segoe UI';
    font-weight: bold;
    align-content: center;
}

.column-home-1-text-body {
    width: 350px;
    height: 38px;
    font-size: 12px;
    color: #505050;
    padding-top: 5px;
    padding-left: 60px;
    padding-right: 47px;
    padding-bottom: 43px;
    font-family: 'Segoe UI';
    font-weight: normal;
    align-content: center;
    text-align: center;
}

.bottom-menu-common {
    position: relative;
    margin-top: 20px;
    margin-right: 5px;
}

.bottom-menu-image {
    width: 68px;
    height: 68px;
    align-content: center;
}


/*Styles added for: Org Profile Page
    Author: 
    Date : 3/25/2018
*/

.height-25 {
    height: 25px !important;
}

.access-label {
    background-color: #FFFFFF !important;
    color: #000000 !important;
    border: none !important;
    font-size: 14px;
}

.role-label {
    background-color: #FFFFFF !important;
    color: #000000 !important;
    border: none !important;
    font-size: 14px;
}

.textbox-icon {
    padding: 0;
    height: 15px;
    width: 15px;
    text-align: center;
}

.input-group > .form-control:focus {
    border: 1px solid #006fc8 !important;
    box-shadow: none !important;
    border-left: none;
}

#SearchForAddUsersTextbox.border-light {
    border-right: 0 !important;
}

#SearchForAddUsersIcon.border-light, #SystemAnalystSearchForAddUsersIcon.border-light {
    border-left: 0 !important;
}

#SearchForAddUsersTextbox.border-light:focus {
    border: 1px solid #006fc8 !important;
}

#SearchForAddUsersIcon.border-light:focus, #SystemAnalystSearchForAddUsersIcon.border-light:focus {
    border: 1px solid #006fc8 !important;
}

.border-light {
    border: 1px solid #707070 !important;
    background-color: #FFFFFF;
}

    .border-light:focus, .border-light:active {
        border: 1px solid #006fc8 !important;
        box-shadow: none !important;
    }

/*border-left-0 {
    border-left: 0 !important;
}

border-right-0 {
    border-left: 0 !important;
}*/

.searchicon-container-focus {
    border: 1px solid #006fc8 !important;
    box-shadow: none !important;
    border-left: none !important;
}

.modal-content {
    border-radius: 0;
}

@media (min-width: 576px) {
    .modal-sm {
        max-width: 350px !important;
    }
}


.text-area-lg {
    height: 110px;
    width: auto;
}

/*Adding styles for Searchbox with Filters 
  Author: 
  Date : 3/28/2018
*/

.btn-nobackground {
    background-color: transparent !important;
}

.btn-icon {
    width: auto !important;
    height: auto;
}


/*Adding styles for pagination for Grid Controls
  Author: 
  Date : 3/28/2018
*/

.pagination > li {
    padding-left: 5px;
    padding-right: 5px;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 2;
    color: #0066ff;
    cursor: default;
    background-color: #FFFFFF !important;
    border-color: none !important;
    border: none !important;
    font-size: x-large;
}

.pagination > li > a, .pagination > li > span {
    color: #626262;
    float: none;
    padding: inherit;
    margin-left: 0px;
    line-height: initial;
    text-decoration: none;
    background-color: #ffffff;
    border: none;
    font-size: large;
}

/*Footer styling to allow footer to stay on bottom always
  Author: 
  Date : 3/28/208
*/
.footer {
    position: static;
    bottom: 0 !important;
}


.disabled img {
    opacity: 0.3;
    filter: alpha(opacity=30);
}

#AppNavbar.navbar {
    width: 100vw;
    height: 80px;
    background-color: #006FC8 !important;
    color: #FFFFFF !important;
}


/*Rohan Changes Date: 3/29/2018 Integrating with PartnerDashboard,FileSubmission Pages*/

.navigation-ImageHome {
    margin-left: 70px;
    margin-right: 5px;
    font-size: 5px;
    color: #707070;
    font-weight: 600;
    width: 12px;
    height: 11px;
    text-align: center;
    align-content: center;
}

/* Partner profile*/

.container-block-home {
    display: inline-block;
    z-index: 1030;
    width: 459px;
    height: 250px;
    margin-top: 88px;
    margin-left: 61px;
    margin-bottom: 110px;
    margin-right: 846px;
    border-color: red;
    border-radius: 1.5px;
    opacity: 0.68;
    background-color: black;
}

.container-block-home {
    display: inline-block;
    z-index: 1030;
    width: 459px;
    height: 250px;
    margin-top: 88px;
    margin-left: 45px;
    margin-bottom: 110px;
    margin-right: 846px;
    border-radius: 1.5px;
    opacity: 0.68;
    background-color: black;
    padding-left: 30px;
    padding-top: 34px;
    padding-right: 30px;
    color: #ffffff;
    font-family: 'Segoe UI';
    font-weight: normal;
    font-size: 12px;
}

.container-block-home-body {
    padding-top: 14px;
    font-family: 'Segoe UI';
    font-weight: normal;
    font-size: 12px;
}

.img-fluid {
    /*display: inline-block;
    max-width: 100%;
    height: auto;
    z-index: -1;
    position: absolute;*/
}

.navbar-Appname {
    font-family: 'Segoe UI';
    font-weight: lighter;
    margin-left: 45px;
    margin-right: 80px;
    font-size: 49px;
    color: #303030;
    text-decoration: none;
}

    .navbar-Appname:hover {
        text-decoration: none;
    }

.navbar-DropMenuItem {
    display: inline-block;
    padding-right: 2px;
    padding-left: 2px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 13px;
    color: #000000;
    width: 100%;
}

.navbar-menu {
    width: 100%;
    height: 62px;
    opacity: 1;
}

.navbar-text {
    display: inline-block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-menuItem {
    margin-top: 40px;
    margin-right: 48px;
    font-size: 13px;
    color: #303030;
    width: 100%;
    font-weight: 600;
    text-align: center;
    align-content: center;
}

.column-home-1 {
    width: 310px;
    height: 200px;
    align-content: center;
    margin: -10px;
    margin-top: 15px;
}


.column-reports-1 {
    width: 310px;
    height: 200px;
    align-content: center;
}

.column-partnerHome-1-image {
    width: 68px;
    height: 68px;
    padding-left: 205px;
    padding-right: 47px;
    padding-top: 41px;
    align-content: center;
}

.column-partnerHome-1-text-header {
    width: 350px;
    height: 21px;
    font-size: 16px;
    color: #505050;
    padding-left: 210px;
    padding-right: 55px;
    padding-top: 34px;
    padding-bottom: 4px;
    font-family: 'Segoe UI';
    font-weight: bold;
    align-content: center;
}

.column-partnerHome-2-text-header {
    width: 350px;
    height: 21px;
    font-size: 16px;
    color: #505050;
    padding-left: 210px;
    padding-right: 55px;
    padding-top: 34px;
    padding-bottom: 4px;
    font-family: 'Segoe UI';
    font-weight: bold;
    align-content: center;
}

.column-home-3-text-header {
    width: 350px;
    height: 21px;
    font-size: 16px;
    color: #505050;
    padding-left: 135px;
    padding-right: 55px;
    padding-top: 34px;
    padding-bottom: 4px;
    font-family: 'Segoe UI';
    font-weight: bold;
    align-content: center;
}

.column-home-4-text-header {
    width: 350px;
    height: 21px;
    font-size: 16px;
    color: #505050;
    padding-left: 158px;
    padding-right: 55px;
    padding-top: 34px;
    padding-bottom: 4px;
    font-family: 'Segoe UI';
    font-weight: bold;
    align-content: center;
}

.column-partnerHome-1-text-body {
    width: 400px;
    height: 38px;
    font-size: 12px;
    color: #505050;
    padding-top: 5px;
    padding-left: 130px;
    padding-right: 47px;
    padding-bottom: 43px;
    font-family: 'Segoe UI';
    font-weight: normal;
    align-content: center;
    text-align: center;
}

.column-partnerHome-2-text-body {
    width: 400px;
    height: 38px;
    font-size: 12px;
    color: #505050;
    padding-top: 5px;
    padding-left: 130px;
    padding-right: 47px;
    padding-bottom: 43px;
    font-family: 'Segoe UI';
    font-weight: normal;
    align-content: center;
    text-align: center;
}

.column-partnerHome-2-image {
    width: 68px;
    height: 68px;
    padding-left: 200px;
    padding-right: 47px;
    padding-top: 41px;
    align-content: center;
}

.table-Partner-padding {
    padding-right: 35px !important;
    padding-top: 5px !important;
    padding-left: 25px !important;
    padding-bottom: 5px !important;
    font-family: 'Segoe UI';
    font-weight: lighter;
}

.table-Partner-cell-size {
    font-size: xx-large;
    color: dodgerblue;
    font-weight: 500 !important;
}

.details {
    color: dodgerblue;
    font-size: 24px;
    font-family: 'Segoe UI';
    font-weight: 600;
    margin-left: 10px;
}

.details-bracket {
    margin-left: 8px;
    margin-top: 8px;
    font-family: "Segoe UI";
    font-weight: 400;
    font-size: 15px;
}

.file-submission-text {
    font-size: 24px;
    font-family: 'Segoe UI';
    font-weight: 600;
}

.container-block-home-partner {
    display: inline-block;
    z-index: 1030;
    width: 435px;
    height: 251px;
    margin-top: 99px;
    margin-right: 64px;
    margin-bottom: 99px;
    margin-left: 866px;
    border-radius: 1.5px;
    opacity: 0.75;
    background-color: black;
    padding-left: 30px;
    padding-top: 34px;
    padding-right: 30px;
    color: #ffffff;
    font-family: 'Segoe UI';
    font-weight: normal;
    font-size: 12px;
}

.Learn-more {
    color: #bad80a;
    font-size: 12px;
    font-family: segoe UI;
    font-weight: 500;
}

.no-border {
    border-top-style: hidden;
    border-left-style: hidden;
    border-bottom-style: hidden;
    border-right-style: hidden;
}

.border-bottom {
    border-left-style: hidden !important;
    border-right-style: hidden !important;
    border-top-style: hidden !important;
}

.table-head-partner {
    text-align: center;
    font-family: segoe UI;
    font-size: 16px;
    font-weight: 400;
    color: #505050;
}

a:hover {
    text-decoration: none !important;
    color: none !important;
}

.file-submission-header {
    width: 125px !important;
    height: 21px !important;
    font-family: 'Segoe UI';
    font-weight: 600;
    font-size: 16px;
    color: #505050 !important;
    margin-top: 40px !important;
}


/* Component: Navbar Styling
    Author: 
    Date : 03/04/2018
*/

#NavbarServices .nav-link:focus, #NavbarProfileIcon .nav-link:focus {
    color: #006FC8 !important;
    background: #FFFFFF;
    border: 1px solid #ECECEC;
}

.nav-item a:focus {
    border: 2px black solid !important;
}

#ApplicationNavbar .navbar {
    background-color: #006FC8 !important;
    height: 80px !important;
    color: #FFFFFF !important;
    border: 1px solid #006FC8;
}

#ApplicationNavbar .navbar-brand {
    padding-left: 75px !important;
}

#ApplicationNavbar .nav-item {
    padding: 0.5rem;
}

    #ApplicationNavbar .nav-item.disabled a {
        opacity: 0.3;
        filter: alpha(opacity=30);
    }

#ApplicationNavbar .navbar-collapse.collapse.show {
    position: relative;
    z-index: 1033;
    background-color: #006FC8 !important;
    color: #FFFFFF !important;
}

#ApplicationNavbar .rounded-circle {
    border-radius: 50% !important;
    border: 2px solid white !important;
}

#ApplicationNavbar .dropdown-menu {
    width: inherit;
    border-radius: 0 !important;
    top: auto;
    left: auto;
    margin: 0 !important;
    border: 1px solid #ECECEC;
}

#ApplicationNavbar .dropdown-item {
    display: block;
    padding: 0.25rem 0.5rem;
    clear: both;
    font-weight: 400;
    color: #505050 !important;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
}

#ProfileImage.rounded-circle {
    vertical-align: text-bottom !important;
}


/*  Component: Error messages for forms
    Date: 4/4/2018
*/







/***************************/ /*Rohan changes Date; 4/3/2018*/
/*Upload convert form*/
.mainDiv {
    margin-left: 25px;
    height: 334px;
}

.fileTypeLabel {
    font-family: 'Segoe UI';
    font-weight: 600;
    font-size: 16px;
    /*color: #0078D7;*/
    color: #0472E7;
    height: 21px;
    width: 20%;
}

.msgDiv {
    margin-top: 10px;
}

.mainDivMsg {
    font-family: 'Segoe UI, Regular';
    font-size: 12px;
    color: #505050;
    height: 16px;
}

.dropDownDiv {
    margin-top: 10px;
    display: inline-flex;
    width: 100%;
}

.salesDropDown {
    height: 29px;
    width: 24.5%;
    padding-left: 10px;
    font-family: 'Segoe UI';
    font-size: 14px !important;
}

.formatDropDown {
    height: 29px;
    width: 29%;
    margin-left: 30px;
    padding-left: 10px;
    font-family: 'Segoe UI';
    font-size: 14px !important;
}

.uploadLabelDiv {
    margin-top: 20px;
}

.uploadLabel {
    font-family: 'Segoe UI';
    font-weight: 600;
    font-size: 16px;
    color: #0078D7;
    height: 21px;
}

.inPutFile {
    margin-top: -10px;
}

.inputFileTextBox {
    font-size: 13px;
    font-family: 'Segoe UI';
    height: 29px;
    width: 56%;
    border: 1px solid #707070;
    padding-left: 10px;
    color: #A4A4A4;
    opacity: 100;
}

.browseInputButton {
    font-size: 13px;
    font-family: 'Segoe UI';
    font-weight: 600;
    color: white;
    background-color: #006FC8;
    border: 1px solid #707070;
    height: 33px;
    width: 10%;
    margin-top: 20px;
    margin-left: 20px;
}

.subCanclBtnDiv {
    margin-top: 48px;
}

.subCanclBtnStyle {
    /*height: 29px;
    width: 8%;
    font-family: 'Segoe UI';
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    background: #505050;
    border: 1px solid #707070;
    opacity: 100;*/
}

.cnclBtn {
    /*background: #F3F3F3 !important;
    color: #505050 !important;*/
}

.uploadImg {
    height: 14px;
    width: 24%;
    margin-left: -8px;
    padding-top: 2px;
}

.uploadBtnLabel {
    margin-left: 5px;
}

.hrDiv {
    margin-top: 21px;
    border-bottom: 1px solid #E8E8E8;
}

.templateDiv {
    margin-top: 25px;
}

.templateLabel {
    font-family: 'Segoe UI';
    font-weight: 600;
    font-size: 16px;
    /*color: #0078D7;*/
    color: #0472E7;
    height: 21px;
    width: 20%;
}

.arrow {
    float: right;
    height: 50px;
}

.downArrow {
    float: right;
    height: 50px;
    transform: rotate(180deg);
}

.changeArrow {
    float: right;
    height: 55px;
    margin-right: 1%;
    transform: rotate(180deg);
}

.changeDownArrow {
    margin-top: -15px;
    float: right;
    height: 55px;
    margin-right: 1%;
    transform: rotate(360deg);
}

.info {
    width: 1.5%;
    height: 9%;
    padding-bottom: 24px;
    padding-left: 4px;
}

/*Upload convert form*/

/*Upload Files partner*/
.radiobutton {
    width: 5%;
    height: 10px;
    color: #0078D7;
}

/*.radiobutton_1 {
    width: 5%;
    height: 10px;
    color: #0078D7;
}*/

.rectangle {
    width: 90% !important;
    height: 571px !important;
    opacity: 1;
    margin-left: 30px;
    box-shadow: 0px 7px 8px !important;
    background-color: white;
}

.div_radiobutton {
    margin-top: 15px;
    width: 200% !important;
}

.excel_svgclass {
    width: 60.1%;
    margin-left: 30px;
}

.width--55 {
    width: 11%;
    margin-left: 35px;
}

.excel_name {
    color: #505050 !important;
    font-size: 12px !important;
    font-family: 'Segoe UI regular';
    text-align: left;
}

.excel_div {
    margin-top: 15px;
}

.excel_span {
    width: 100%;
    margin-left: 35px;
    margin-top: 10px;
}

.col-md-4-width--25 {
    width: 25%;
    margin-left: 17px;
}

.col-md-4-width--50 {
    width: 50%;
    margin-left: 18px;
    margin-top: 5px;
}

.margin-top--10 {
    margin-top: 10px;
}

.div_dropdown {
    margin-top: 8px;
    margin-left: 5px;
}

.option_select {
    font-size: 14px !important;
    font-family: 'Segoe UI';
    text-align: left;
    opacity: 0.5;
}

.color-white {
    color: white;
}

.margin-left-80 {
    margin-left: 80px;
}

.margin-left-27 {
    margin-left: 35px !important;
    margin-top: -27px;
}

.dropdown_Report {
    height: 28px;
    border: 1px solid #707070;
}

.dropdown_Reporttype {
    width: 103%;
    height: 28px;
    border: 1px solid #707070;
    font-size: 14px !important;
}

.Reporttype_Span {
    color: #0078D7;
    font-size: 16px !important;
    font-family: 'Segoe UI semibold';
    text-align: left;
    margin-left: 5px;
}

.Comment_entry {
    height: 54.71px;
    width: 103%;
    margin-left: 5px;
    margin-bottom: 15px;
    border: 1px solid #707070 !important;
}

.Upload_submt {
    background-color: #0078D7;
    color: white;
    font-size: 14px;
    font-family: 'Segoe UI';
    height: 29px;
    text-align: center;
    margin-left: 9px;
}

.cancel_btn {
    color: #505050;
    font-size: 14px;
    text-align: center;
    border: 1px;
    font-family: 'Segoe UI Semibold';
    height: 29px;
    width: 12%;
    margin-left: 8px;
}

.File_type {
    padding: 0rem 0.75rem;
    font-size: 14px;
    border: 1px solid #A4A4A4;
    border-radius: 0;
    color: #A4A4A4 !important;
    height: 24px;
    margin-left: 5px;
}

.File_Upload_div {
    height: 29px;
    border: 1px solid #707070 !important;
    width: 80% !important;
}

.width--25px {
    width: 17%;
    margin-top: 5px;
    height: 24px;
}

.excel_svgcl {
    width: 62.5%;
    margin-left: 50px;
}

.excel_inv {
    margin-top: 10px;
    width: 114%;
}

.excel_unselect {
    width: 38.35%;
    margin-left: 10px;
}

.width--35 {
    width: 10.58%;
    margin-right: 40px;
}

.excel_div1 {
    margin-top: 15px;
}

.excel_div2 {
    margin-left: 20px;
}

.width--56 {
    width: 19%;
    margin-top: 17px;
    margin-left: 55px;
}

.Button_Browse {
    width: 25%;
    height: 17px;
    content: 'Browse..';
    background-color: #0078D7;
}

.year_span {
    color: #0078D7;
    height: 21px;
    font-size: 16px !important;
    font-family: 'Segoe UI semibold';
    text-align: left;
    margin-left: 0px;
    margin-bottom: 20px;
}

.Checkbox_ {
    width: 4%;
    margin-top: 14px;
    height: 12px;
    color: #0078D7;
    margin-left: 0px;
}

.width_line {
    margin-top: 13px;
    margin-right: 20px;
    margin-left: 24px;
    width: 100%;
}

.terms_header {
    color: #0078D7;
    height: 21px;
    font-size: 16px !important;
    font-family: 'Segoe UI semibold';
    text-align: left;
    margin-left: 5px;
    margin-top: 1px;
    width: 100%;
}

.Upload_span {
    color: #0078D7;
    height: 21px;
    font-size: 16px !important;
    font-style: normal;
    font-family: 'Segoe UI semibold';
    text-align: left;
    margin-top: 10px;
    margin-left: 5px;
}

.svgupload {
    color: white;
}

.svgclass {
    display: block;
    width: 78%;
    margin-left: 0px;
}

.terms_span {
    color: #505050;
    height: 32px;
    width: 200%;
    font-size: 12px !important;
    font-family: 'Segoe UI regular';
    text-align: left;
}

.width_65 {
    width: 100%;
}

.btn_svg_Downld {
    width: 12px !important;
    margin-bottom: 4px;
    height: 12px !important;
}

.btn_dwnld {
    width: 106px !important;
    height: 29px !important;
    background-color: #006FC8 !important;
    margin-top: 15px;
    margin-left: 35px;
}

.input-group {
    width: 64%;
    margin-top: 5px;
}

.botton_Upload {
    background-color: #0078D7;
    height: 100%;
    width: 100%;
    margin-bottom: 6px;
}

.Warning_span {
    width: 100%;
    margin-top: 10px;
    margin-left: 27px;
    font-style: italic;
    height: 11px;
    color: #505050;
    text-align: left;
    font-size: 12px !important;
    font-family: 'Segoe UI';
}

.weeks_span {
    width: 15%;
    height: 16px;
    color: #434343;
    text-align: left;
    font-size: 12px !important;
    font-family: 'Segoe UI semibold';
}



.rectangle1 {
    width: 102% !important;
    height: 242px !important;
    margin-top: 20px;
    opacity: 1;
    margin-left: -17px;
    box-shadow: 0px 7px 8px !important;
    background-color: white;
}

.span_heading {
    font-size: 12px !important;
    text-align: left;
    margin-left: 10px;
    width: 100%;
    color: #505050;
    font-family: 'Segoe UI regular';
}

.Email_span {
    color: #006FC8 !important;
    font-size: 12px !important;
    text-align: left;
    width: 100%;
    color: #505050;
    font-family: 'Segoe UI regular';
}

.templateHead {
    margin-top: -27px;
    margin-left: -26px;
}

.upload-head {
    margin-left: 35px !important;
    margin-top: -7px !important;
}

.width-121 {
    width: 121px;
}

.width-161 {
    width: 161px;
}

.dropdown_Report1 {
    width: 112%;
    margin-top: 8px;
    margin-left: 5px;
    color: #A4A4A4 !important;
    height: 28px;
    border: 1px solid #707070;
    font-size: 14px !important;
}

.templateSAdmin {
    display: block;
    margin-left: -21px;
    margin-top: -50px !important;
    padding-top: 0px !important;
    padding-bottom: 16px;
}

.fileUpload {
    Height: 35px;
    Width: 98%;
}

/*Upload Files*/

/* new changes*/
.validateimage_large {
    margin-top: -29px;
    margin-left: 96.5%;
    width: 1.5%;
    position: absolute;
}

.validateimage_small {
    margin-top: -29px;
    margin-left: 89.5%;
    width: 4.5%;
    position: absolute;
    display: none;
}

.validateimage_medium {
    margin-top: -29px;
    margin-left: 94.5%;
    width: 2.3%;
    position: absolute;
    display: none;
}

.aadBtn {
    height: 35px;
    width: 90%;
    background: #0078D7;
    color: white;
    text-align: center;
    font-size: 16px;
    font-family: Segoe UI;
    margin-top: -1%;
    border: none;
    cursor: pointer;
}

.margin-top-10 {
    margin-top: 10px;
}

.max-width-100 {
    max-width: 100%;
}

.aadText {
    display: none;
}

.margin-left-25 {
    margin-left: 25px;
}

.margin-top-20 {
    margin-top: 20px;
}

margin-top-30 {
    margin-top: 30px;
}

.loginTextBox {
    height: 35px;
    width: 90%;
    font-size: 16px;
    font-family: Segoe UI;
    border: 1px solid #737373;
    margin-top: 5px;
    padding-left: 10px;
}

#microsoftLogo_login {
    width: 20%;
    height: 35px;
    margin-left: 29px;
    margin-top: -30px;
}

.loginMsg {
    font-size: 14px;
    font-family: Segoe UI;
    height: 19px;
    color: #FF0000;
}

#landingPage1 {
    height: 100vh;
    background-image: url('../Images/Background_banner_login.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#content-block_Welcome {
    display: block;
    background-color: #FFFFFF;
    height: fit-content;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 300px;
    width: 35%;
}

#content-text_Welcome {
    color: #282828 !important;
    font-weight: normal !important;
}

.span_BackupContact {
    width: 1.9% !important;
    margin-bottom: 17px;
    margin-left: 5px;
    display: none;
}

#id_Terms {
    width: 90% !important;
}

.margin-left-10 {
    margin-left: 10px;
}

.Comments_span {
    color: #0078D7;
    height: 21px;
    font-size: 16px !important;
    font-family: 'Segoe UI semibold';
    text-align: left;
    margin-left: 5px;
}

.margin-top--20 {
    margin-top: -20px;
}

#Templates {
    margin-left: -40px;
    margin-top: -30px;
}

#UploadFile {
    margin-left: -20px;
}

.padding-top--20 {
    padding-top: 20px;
}

.search_results {
    width: 100%;
    font-family: Segoe UI;
    font-size: 36px;
    font-weight: lighter;
    color: #282828;
}

.error_message {
    color: #282828;
    font-family: Segoe UI;
    font-size: 28px;
    font-weight: lighter;
}

.apply_access {
    margin-left: 3px;
    font-family: Segoe UI semibold;
    text-align: left;
    color: #002050 !important;
    font-size: 18px;
}

.missing_page {
    margin-top: 20px;
    width: 100%;
    font-family: Segoe UI;
    font-size: 20px;
    color: #282828;
}

.valided_user {
    margin-top: 15px;
    width: 100%;
    font-family: Segoe UI;
    font-size: 20px;
    color: #282828;
}

.applyaccess_div {
    margin-top: 15px;
    width: 22%;
}


.errorPage_illustration {
    width: 25%;
    margin-top: 40px;
}

.width-2_5 {
    width: 2.5%;
}

.search_image {
    width: 10%;
}

.unauthorise {
    color: #282828 !important;
    font-family: Segoe UI, Light !important;
    font-size: 40px;
}

.div_Comments {
    width: 100%;
    width: 100%;
    margin-left: 3px;
    margin-top: 15px;
}

.inputFileTextBox_file {
    font-size: 13px;
    font-family: 'Segoe UI';
    height: 29px;
    width: 56%;
    border: 1px solid #707070;
    padding-left: 10px;
    color: #A4A4A4;
    opacity: 100;
    margin-left: 27px;
    margin-top: 18px;
}

.browseInputButton_file {
    font-size: 13px;
    font-family: 'Segoe UI';
    font-weight: 600;
    color: white;
    background-color: #006FC8;
    border: 1px solid #707070;
    height: 33px;
    width: 10%;
    margin-top: 15px;
    margin-left: 20px;
}

#btndeletetemplatecseinternal {
    width: 106px !important;
    height: 29px !important;
    background-color: #505050 !important;
    margin-top: 15px;
    margin-left: 35px;
}

/* partner form changes*/
.input-group-partner {
    width: 200px !important;
    margin-right: 24px;
}

.partner-label {
    font-family: Segoe UI;
    font-weight: 600;
    margin-right: 46px;
    margin-top: 3px;
}

.accessType-partner {
    width: 160px !important;
    margin-top: 5px !important;
}

.accessType-dropdown {
    width: 160px !important;
    margin-top: 5px !important;
}

.accessType-label {
    width: 21% !important;
}

.width-25 {
    width: 25% !important;
}

.partner-role {
    margin-top: 4px !important;
    width: 12% !important;
}

.grant-access {
    /*margin-left: 19px !important;*/
    margin-top: 1px !important;
}

.role-type {
    width: 9% !important;
    margin-top: 4px !important;
    margin-left: -20px !important;
}

.margin-top--5 {
    margin-top: -5px !important;
}

.margin-partner {
    margin-left: 5px !important;
    margin-top: 7px !important;
}

.span_heading-template {
    font-size: 12px !important;
    text-align: left;
    margin-left: 7px;
    width: 100%;
    color: #505050;
    font-family: "Segoe UI regular";
}

.btn_dwnld-template {
    width: 106px !important;
    height: 29px !important;
    background-color: #006fc8 !important;
    margin-top: 15px;
    margin-left: 24px;
}

.margin-left-2 {
    margin-left: 2.5rem !important;
}

.margin-top--30 {
    margin-top: -30px !important;
}

.mpn_divclass {
    margin-left: -15px;
    width: 100%;
    margin-top: 50px;
}

.select_class {
    width: 30%;
    height: 30px;
    padding-left: 15px;
}

.btn_choosempn {
    height: 30px;
    margin-top: 5px !important;
    margin-left: 10px !important;
}

#btnDefineTemp {
    /*height: 29px;
    width: 8%;
    font-family: 'Segoe UI';
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    border: 1px solid #707070;*/
}

.margin-top--2 {
    margin-top: -2px !important;
}

.margin-left--2 {
    margin-left: -2px !important;
}

.margin-left-15 {
    margin-left: 15px !important;
}

.upload-template-text {
    margin-left: 23px;
    margin-top: 27px;
    font-family: 'Segoe UI';
    font-size: 14px;
}

/*Styles form breadcrum:*/
.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #626262 !important;
    content: ">" !important;
}

/*Styles for form validation client side - Handling them globally and consistently throughout all the forms..*/
#frmInitiateOnboarding .field-validation-error, #frmUploadTrainingMaterial .field-validation-error, #frmDefineTemplates .field-validation-error, #frmHelpdeskTicket .field-validation-error {
    font-size: 10px !important;
    color: #D93737 !important;
    display: none;
}

#frmInitiateOnboarding .input-validation-error, #frmUploadTrainingMaterial .input-validation-error, #frmDefineTemplates .input-validation-error, #frmHelpdeskTicket .input-validation-error {
    border: 1px solid #D93737 !important;
}

/*form .field-validation-error {
    font-size: 10px !important;
    color: #D93737 !important;
    display: none;
}

form .input-validation-error {
    border: 1px solid #D93737 !important;
}*/
.mscontacts-ddBox {
    margin-top: 5px !important;
    margin-left: -12px !important;
}

.mscontacts-grantAccess {
    margin-top: 4px;
    margin-left: -19px !important;
}

.update-icon {
    width: 47px;
    height: 34px;
    display: block;
    margin-right: auto;
    margin-left: 0px;
    margin-top: -9px !important;
}

.margin-left-40 {
    margin-left: 40px !important;
}

/*nEWLY ADDED Style for Searchbox dropdown*/
.dropdown-menu.show {
    display: block;
    width: auto;
}

/*  Styles for alerts
    Date: 05/07/2018
*/

.alert {
    left: 20%;
    right: 20%;
    max-width: 60%;
    border-radius: 0 !important;
}

.field-validation-error {
    color: #D93737;
    font-size: 14px;
}


/* Styles for Error Pages
   Date: 05/08/2017
*/

#ErrorMessage {
    color: #282828 !important;
}

    #ErrorMessage .error-link {
        color: #002050 !important;
        font-size: 18px;
    }


/*Styles for rsolving accessibility bugs*/
a {
    color: #0057D9;
}

#ApplicationNavbar .dropdown-item.disabled {
    opacity: 0.3;
    filter: alpha(opacity=30);
}

.active.breadcrumb-item {
    color: #626262 !important;
}

.white-color {
    color: #ffffff !important;
}


/* Styles for Latest Sigin page */

#SignInContainer {
    display: inline-block;
    background-color: #FFFFFF;
    max-width: 700px;
    height: auto;
}

/*Landing Page designs as per new requirements*/

#LandingPageBanner {
    background-image: url('../../../../Images/login-banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 90vh;
    width: 100vw;
    -ms-high-contrast-adjust: none;
}

#LoginPageBanner {
    background-image: url('../../../../Images/bannerV02.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh;
    width: 100vw;
    -ms-high-contrast-adjust: none;
}

.banner-description-landingPage {
    display: inline-block;
    margin-top: 45vh;
    width: 100%;
    height: auto;
    background-color: #000000;
    color: #ffffff;
    opacity: 0.80;
    z-index: 1030;
    font-family: 'Segoe UI';
    font-weight: normal;
    font-size: 12px;
}

.landingPage-text {
    color: #40CDF5;
    font-size: 24px;
}

.landingPage-banner-block-header {
    color: #ffffff;
    font-size: 36px;
    line-height: 48px;
    font-weight: lighter;
}

.btn-login {
    background-color: #055a9e !important;
    height: 35px;
    border: 1px solid #055a9e;
    padding: 0.375rem 0.75rem;
}

.overlay {
    filter: alpha(opacity=50);
}

/*Styling New Login Page Responsively*/

#SignInContainer {
    display: inline-block;
    background-color: #FFFFFF;
    max-width: 700px;
    height: auto;
}

#LoginPageBanner #BannerRow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}


/*
    High Contrast Bug Fixes
    Bugs : 3423357 , 3431340, 3431298 , 3423398 , 3423337 , 3423378
*/

/* General Bug */
@media screen and (-ms-high-contrast: white-on-black) {
    a {
        color: yellow;
    }
    .btn-primary:focus {
        outline: 10px white !important;
    }

}

/* General Bug */
@media screen and (-ms-high-contrast: black-on-white) {
    a {
        color: #006FC8;
    }
}


@media screen and (-ms-high-contrast: white-on-black) {
    .dropdown-item.active {
        color: windowText !important;
        text-decoration: none;
        background-color: highlight !important;
    }

    .nav-link.active {
        color: windowText !important;
        text-decoration: none;
        background-color: highlight !important;
    }

    .nav-item a:focus{
        border: 2px solid highlight !important;
    }

    .input-group > .form-control:focus {
        outline: 2px solid highlight !important;
    }

    .dropdown-toggle::after {
        display: inline-block !important;
        width: 0 !important;
        height: 0 !important;
        margin-left: 0.255em !important;
        vertical-align: 0.255em !important;
        content: "" !important;
        border-top: 0.3em solid !important;
        border-right: 0.3em solid background !important;
        border-bottom: 0 !important;
        border-left: 0.3em solid background !important;
    }
}

@media screen and (-ms-high-contrast: black-on-white) {
    .dropdown-item.active {
        color: windowText !important;
        text-decoration: none;
        background-color: highlight !important;
    }

    .nav-link.active {
        color: windowText !important;
        text-decoration: none;
        background-color: highlight !important;
    }

    .nav-item a:focus {
        border: 2px solid highlight !important;
    }

    .input-group > .form-control:focus {
        outline: 2px solid highlight !important;
    }

    .dropdown-toggle::after {
        display: inline-block !important;
        width: 0 !important;
        height: 0 !important;
        margin-left: 0.255em !important;
        vertical-align: 0.255em !important;
        content: "" !important;
        border-top: 0.3em solid !important;
        border-right: 0.3em solid background !important;
        border-bottom: 0 !important;
        border-left: 0.3em solid background !important;
    }

}

@media screen and (-ms-high-contrast: black-on-white) {
    .btn:focus {
        background-color: Highlight !important;
    }
}

@media screen and (-ms-high-contrast: white-on-black) {
    .btn:focus {
        background-color: Highlight !important;
    }
}


/* Bug: 3423357*/
@media screen and (-ms-high-contrast: active) {
    /*#SuperAdminBanner {
        background-image: url('../../../../Images/Supper_admin_page banner.png');
    }

    #SystemAnalystBanner {
        background-image: url('../../../../Images/system_analyst_banner.png');
    }

    #PartnerDashboardBanner {
        background-image: url('../../../../Images/PartnerBanner.png');
    }

    #AccountManagerBanner {
        background-image: url('../../../../Images/accountmanagrbanner.png');
    }

    #LoginPageBanner {
        background-image: url('../../../../Images/bannerV02.png');
    }

    #LandingPageBanner {
        background-image: url('../../../../Images/banner_landing page.png');
    }*/
}

/* Bugs: 3431340, 3431298 , 3423398 , 3423337 */
@media screen and (-ms-high-contrast: active) {
    .dropdown-toggle::after {
        display: inline-block;
        width: 0px;
        height: 0px;
        margin-left: 0.25em;
        vertical-align: 0.25em;
        content: "";
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
    }
}

/*Bug: 3423378*/
@media screen and (-ms-high-contrast: white-on-black) {
    .form-control {
        border: 1px solid #FFFFFF;
    }

    :-ms-input-placeholder {
        color: #FFFFFF !important;
        opacity: 1;
    }
}

/*Bug: 3423378*/
@media screen and (-ms-high-contrast: black-on-white) {
    .form-control {
        border: 1px solid #000000;
    }

    :-ms-input-placeholder {
        color: #000000 !important;
        opacity: 1;
    }
}

/*Bug: 3423391*/
@media screen and (-ms-high-contrast: white-on-black) {
    .nav-tabs .disabled.nav-link {
        opacity: 0.5;
        filter: alpha(opacity=50);
    }
}

/*Bug: 3423391*/
@media screen and (-ms-high-contrast: black-on-white) {
    .nav-tabs .disabled.nav-link {
        opacity: 0.5;
        filter: alpha(opacity=50);
    }
}

/*Bug: 3423448*/
@media screen and (-ms-high-contrast: active) {
    .delete-icon {
        background-image: url('../Images/delete.svg');
    }

    #frmInitiateOnboarding .input-validation-error {
        border: 1px solid #D93737 !important;
    }
}

/*Bug: 3423342*/
.font-42 {
    font-size: 42px !important;
}

/*Bug: 3423342*/
.font-44 {
    font-size: 44px !important;
}

/*Bug: 3423342*/
.font-46 {
    font-size: 46px !important;
}

#tblFeedback .form-check-input {
    position: relative;
    margin-top: 0;
    margin-left: 0;
}

/*Styles for feedback page*/
.satisfied {
    height: 15px;
    width: 15px;
    background-color: #85F78D;
    border-radius: 50%;
    display: inline-block;
}

.dissatisfied {
    height: 15px;
    width: 15px;
    background-color: #F5CF0E;
    border-radius: 50%;
    display: inline-block;
    -ms-high-contrast-adjust: none;
}

.very-satisfied {
    height: 15px;
    width: 15px;
    background-color: #028609;
    border-radius: 50%;
    display: inline-block;
    -ms-high-contrast-adjust: none;
}

.very-dissatisfied {
    height: 15px;
    width: 15px;
    background-color: #F11204;
    border-radius: 50%;
    display: inline-block;
    -ms-high-contrast-adjust: none;
}

.satisfied-bluebackground {
    height: 15px;
    width: 15px;
    background-color: #85F78D;
    border-radius: 50%;
    display: inline-block;
}

.dissatisfied-bluebackground {
    height: 15px;
    width: 15px;
    background-color: #F5CF0E;
    border-radius: 50%;
    display: inline-block;
}

.very-satisfied-bluebackground {
    height: 15px;
    width: 15px;
    background-color: #028609;
    border-radius: 50%;
    display: inline-block;
}

.very-dissatisfied-bluebackground {
    height: 15px;
    width: 15px;
    background-color: #F11204;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

/*Browser Zooming Bugs*/
/*Bugs: 3423515, 3423524 */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: auto;
}

/*
    Forms & Validations - Accessibility bug fixes
*/
.tooltip-inner {
    max-width: 400px;
    padding: 3px 8px;
    background-color: #fff;
    text-align: center;
    color: #000;
    border: 1px solid #0078D7;
    border-radius: 0;
    font-size: 12px !important;
}

/*Css for top arrow:*/
.tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.bs-tooltip-top .arrow::before {
    margin-left: -3px;
    content: "";
    border-width: 5px 5px 0;
    border-top-color: #0078D7;
}

/*Css for right arrow:*/
.tooltip.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.bs-tooltip-right .arrow::before {
    margin-top: -3px;
    content: "";
    border-width: 5px 5px 5px 0;
    border-right-color: #0078D7;
}

/*Css for bottom arrow:*/
.tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.bs-tooltip-bottom .arrow::before {
    margin-left: -3px;
    content: "";
    border-width: 0 5px 5px;
    border-bottom-color: #0078D7;
}

/*Css for left arrow:*/
.tooltip.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.bs-tooltip-left .arrow::before {
    right: 0;
    margin-top: -3px;
    content: "";
    border-width: 5px 0 5px 5px;
    border-left-color: #0078D7;
}


/*Html Accessibility bugs*/
.input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:not(:first-child) > .btn, .input-group > .input-group-prepend:not(:first-child) > .input-group-text, .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    min-width: 40px !important;
}

.clipAnnc {
    display: none;
    clip: rect(0,0,0,0);
}

.height-500 {
    height: 500px !important;
}

/*Login Page rework*/
.text-blue {
    color: #0066ff !important;
}

/*CDM Logo - styling - Adding descriptive text at bottom.*/
.navbar-brand {
    display: inline-block;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: 1rem;
    font-size: medium;
    line-height: 1;
    z-index: 1030;
    white-space: nowrap;
    text-align: center !important;
}

/*CDM - HC bug Fixes*/

/* 
    BugId - 3423342
    Home Icon not visible in HC- White mode 
*/
@media screen and (-ms-high-contrast: black-on-white) {
    #NavbarHome > a > img {
        background-color: #006FC8;
    }
}

/* 
    Bug Id - 3423350
    Disabled links not visible as per HC settings
*/
@media screen and (-ms-high-contrast: black-on-white) {
    .disabled a {
        color: #600000 !important;
    }

    a {
        color: #00009F !important;
    }

    .disabled {
        color: #600000 !important;
    }
}

/*
    Bug Id - 3423350
    Disabled links not visible as per HC settings
*/
@media screen and (-ms-high-contrast: white-on-black) {
    .disabled a {
        color: #3FF23F !important;
    }

    a {
        color: #FFFF00 !important;
    }

    .disabled {
        color: #3FF23F !important;
    }
}

/*
    Bug - Placeholder text
*/
@media screen and (-ms-high-contrast: black-on-white) {
    placeholder {
        color: #000000;
        font-size: 12px;
    }

    :-ms-input-placeholder {
        color: #000000;
        font-size: 12px;
    }

    :-ms-input-placeholder {
        color: #000000;
        font-size: 12px;
    }
}

@media screen and (-ms-high-contrast: white-on-black) {
    placeholder {
        color: #FFFFFF;
        font-size: 12px;
    }

    :-ms-input-placeholder {
        color: #FFFFFF;
        font-size: 12px;
    }

    :-ms-input-placeholder {
        color: #FFFFFF;
        font-size: 12px;
    }
}

/*
    Bug - HC - Tooltip
*/
@media screen and (-ms-high-contrast: black-on-white) {
    .tooltip-inner {
        max-width: 400px;
        padding: 3px 8px;
        background-color: #fff;
        text-align: center;
        color: #000;
        border: 1px solid #000;
        border-radius: 0;
        font-size: 12px !important;
    }

    /*Css for top arrow:*/
    .tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.bs-tooltip-top .arrow::before {
        margin-left: -3px;
        content: "";
        border-width: 5px 5px 0;
        border-top-color: #000;
        color: #fff;
        background-color: #000;
    }

    /*Css for right arrow:*/
    .tooltip.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.bs-tooltip-right .arrow::before {
        margin-top: -3px;
        content: "";
        border-width: 5px 5px 5px 0;
        border-right-color: #000;
        color: #fff;
        background-color: #000;
    }

    /*Css for bottom arrow:*/
    .tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.bs-tooltip-bottom .arrow::before {
        margin-left: -3px;
        content: "";
        border-width: 0 5px 5px;
        border-bottom-color: #000;
        color: #fff;
        background-color: #000;
    }

    /*Css for left arrow:*/
    .tooltip.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.bs-tooltip-left .arrow::before {
        right: 0;
        margin-top: -3px;
        content: "";
        border-width: 5px 0 5px 5px;
        border-left-color: #000;
        color: #fff;
        background-color: #000;
    }
}

@media screen and (-ms-high-contrast: white-on-black) {
    .tooltip-inner {
        max-width: 400px;
        padding: 3px 8px;
        color: #fff;
        text-align: center;
        background-color: #000;
        border: 1px solid #fff;
        border-radius: 0;
        font-size: 12px !important;
    }

    /*Css for top arrow:*/
    .tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.bs-tooltip-top .arrow::before {
        margin-left: -3px;
        content: "";
        border-width: 5px 5px 0;
        border-top-color: #fff;
        color: #000;
        background-color: #fff;
    }

    /*Css for right arrow:*/
    .tooltip.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.bs-tooltip-right .arrow::before {
        margin-top: -3px;
        content: "";
        border-width: 5px 5px 5px 0;
        border-right-color: #fff;
        color: #000;
        background-color: #fff;
    }

    /*Css for bottom arrow:*/
    .tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.bs-tooltip-bottom .arrow::before {
        margin-left: -3px;
        content: "";
        border-width: 0 5px 5px;
        border-bottom-color: #fff;
        color: #000;
        background-color: #fff;
    }

    /*Css for left arrow:*/
    .tooltip.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.bs-tooltip-left .arrow::before {
        right: 0;
        margin-top: -3px;
        content: "";
        border-width: 5px 0 5px 5px;
        border-left-color: #fff;
        color: #000;
        background-color: #fff;
    }
}


/*
    Bugs - CC - select options background
    Bug Ids - 3423310,3423229,3423153
*/
option:hover, option:focus, option:checked {
    color: #FFF !important;
    background-color: #004680 !important;
}


/*Bugs - HC - Disabed elements styling on HC White Mode*/
@media screen and (-ms-high-contrast: black-on-white) {

    /*Pagination changes*/
    .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
        color: #600000 !important;
    }
}

/*Bugs - HC - Disabed elements styling on HC Black Mode Mode*/
@media screen and (-ms-high-contrast: white-on-black) {

    /*Pagination changes*/
    .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
        color: #3FF23F !important;
    }
}

/*Bugs HC button background images in white mode*/
@media screen and (-ms-high-contrast: black-on-white) {
    /*Depends on requirement if bug arises*/
    /*img.btn-download[src="/Images/Download.svg"], img.btn_svg_Downld[src="/Images/Upload_white.svg"], img.uploadImg[src="/Images/Download.svg"] {
        background-color: #006FC8 !important;
    }*/
}

@media screen and (-ms-high-contrast: white-on-black) {
    /*Depends on requirement if bug arises*/
    /*img[src="/Images/Save_icon_blue.svg"], img[src="/Images/delete.svg"], img[src="/Images/convert.svg"],a.delete-icon {
        background-color: #FFFF00 !important;
    }*/
}

/*Comments line break not working as expected...*/
.table th, .table td {
    padding: 0.40rem;
    vertical-align: middle;
}

#gridHelpDeskRequests table tbody td {
    /*white-space: pre-line;
    word-wrap: break-word;*/
    padding: 0.25rem 0.40rem;
}

/*Bug Id - 3421549
    Focus to Subsidaries and business groups
*/
ul.list-group:focus {
    border: 1px solid #006FC8 !important;
}


/*
    Bug Id - 3606155
    Bug 3606155: Accessibility_High contrast_CDM_Home page_feed back page:-colors are not visible in hc black and
    white modes and also cc ratio is not greater than 7:1
*/
@media screen and (-ms-high-contrast: white-on-black) {
    .satisfied {
        height: 15px;
        width: 15px;
        background-color: #85F78D;
        border-radius: 50%;
        display: inline-block;
    }

    .dissatisfied {
        height: 15px;
        width: 15px;
        background-color: #F5CF0E;
        border-radius: 50%;
        display: inline-block;
    }

    .very-satisfied {
        height: 15px;
        width: 15px;
        background-color: #028609;
        border-radius: 50%;
        display: inline-block;
    }

    .very-dissatisfied {
        height: 15px;
        width: 15px;
        background-color: #F11204;
        border-radius: 50%;
        display: inline-block;
        margin-right: 5px;
    }

    .satisfied-bluebackground {
        height: 15px;
        width: 15px;
        background-color: #85F78D;
        border-radius: 50%;
        display: inline-block;
    }

    .dissatisfied-bluebackground {
        height: 15px;
        width: 15px;
        background-color: #F5CF0E;
        border-radius: 50%;
        display: inline-block;
    }

    .very-satisfied-bluebackground {
        height: 15px;
        width: 15px;
        background-color: #028609;
        border-radius: 50%;
        display: inline-block;
    }

    .very-dissatisfied-bluebackground {
        height: 15px;
        width: 15px;
        background-color: #F11204;
        border-radius: 50%;
        display: inline-block;
    }
}

/*
    Bug Id - 3606155
    Bug 3606155: Accessibility_High contrast_CDM_Home page_feed back page:-colors are not visible in hc black and
    white modes and also cc ratio is not greater than 7:1
*/
@media screen and (-ms-high-contrast: black-on-white) {
    .satisfied {
        height: 15px;
        width: 15px;
        background-color: #85F78D;
        border-radius: 50%;
        display: inline-block;
    }

    .dissatisfied {
        height: 15px;
        width: 15px;
        background-color: #F5CF0E;
        border-radius: 50%;
        display: inline-block;
    }

    .very-satisfied {
        height: 15px;
        width: 15px;
        background-color: #028609;
        border-radius: 50%;
        display: inline-block;
    }

    .very-dissatisfied {
        height: 15px;
        width: 15px;
        background-color: #F11204;
        border-radius: 50%;
        display: inline-block;
    }

    .satisfied-bluebackground {
        height: 15px;
        width: 15px;
        background-color: #85F78D;
        border-radius: 50%;
        display: inline-block;
    }

    .dissatisfied-bluebackground {
        height: 15px;
        width: 15px;
        background-color: #F5CF0E;
        border-radius: 50%;
        display: inline-block;
    }

    .very-satisfied-bluebackground {
        height: 15px;
        width: 15px;
        background-color: #028609;
        border-radius: 50%;
        display: inline-block;
    }

    .very-dissatisfied-bluebackground {
        height: 15px;
        width: 15px;
        background-color: #F11204;
        border-radius: 50%;
        display: inline-block;
    }
}

/*
    BugId - 3617596
    Description - Accessibility_Keyboard_CDM_Home page_feed back page]:-ESC key is not working in grid 
*/
table:focus {
    border: 1px solid #006FC8;
}

td .form-control {
    width: auto !important;
}

:disabled.form-control, [readonly].form-control {
    background-color: #F4F6F8 !important;
    opacity: 1;
}

/* 
    SVG Icons in HC Mode
*/

.delete-icon {
    background-image: url('../Images/delete.svg');
    background-repeat: no-repeat;
    background-position: center;
    width: auto;
    height: 15px;
    display: block;
    margin-right: auto;
    margin-left: 5px;
}

.save-icon {
    background-image: url('../Images/Save_icon_blue.svg');
    background-repeat: no-repeat;
    background-position: center;
    width: auto;
    height: 15px;
    display: block;
    margin-right: auto;
    margin-left: 5px;
}

.convert-icon {
    background-image: url('../Images/Convert.svg');
    background-repeat: no-repeat;
    background-position: center;
    width: auto;
    height: 15px;
    display: block;
    margin-right: auto;
    margin-left: 5px;
}

.download-icon {
    background-image: url('../Images/download-dark.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 25px;
    height: 25px;
    display: block;
    margin-right: auto;
    margin-left: 5px;
}

.search-icon {
    background-image: url('../Images/Search_1-WF.svg');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0rem;
    color: #6c757d;
    content: url("../Images/House-08.svg") !important;
    height: 12px;
    width: 25px;
}

#breadcrum.container {
    padding: 0rem !important;
}

.home-icon {
    background-image: url('../Images/Home_icon_white.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 25px;
    height: 25px;
    display: block;
}


@media screen and (-ms-high-contrast: white-on-black) {
    .delete-icon {
        background-image: url('../Images/delete_white.svg');
        background-repeat: no-repeat;
        background-position: center;
        width: auto;
        height: 15px;
        display: block;
        margin-right: auto;
        margin-left: 5px;
    }

    .save-icon {
        background-image: url('../Images/Save_icon_white.svg');
        background-repeat: no-repeat;
        background-position: center;
        width: auto;
        height: 15px;
        display: block;
        margin-right: auto;
        margin-left: 5px;
    }

    .convert-icon {
        background-image: url('../Images/Convert_white.svg');
        background-repeat: no-repeat;
        background-position: center;
        width: auto;
        height: 15px;
        display: block;
        margin-right: auto;
        margin-left: 5px;
    }

    .download-icon {
        background-image: url('../Images/download-white.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        width: 25px;
        height: 25px;
        display: block;
        margin-right: auto;
        margin-left: 5px;
    }

    .search-icon {
        background-image: url('../Images/Search_white.svg');
        background-size: 70%;
        background-repeat: no-repeat;
        background-position: center;
        display: block;
    }

    .breadcrumb-item::before {
        display: inline-block;
        padding-right: 0.5rem;
        padding-left: 0rem;
        color: #6c757d;
        content: url('../Images/House-08-yellow.svg') !important;
        height: 12px;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        display: inline-block;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
        color: #FFFFFF !important;
        content: ">" !important;
    }

    .home-icon {
        background-image: url('../Images/Home_icon_yellow.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        width: 25px;
        height: 25px;
        display: block;
    }
}

@media screen and (-ms-high-contrast: black-on-white) {
    .delete-icon {
        background-image: url('../Images/delete_bluecontrast.svg');
        background-repeat: no-repeat;
        background-position: center;
        width: auto;
        height: 15px;
        display: block;
        margin-right: auto;
        margin-left: 5px;
    }

    .save-icon {
        background-image: url('../Images/Save_icon_bluecontrast.svg');
        background-repeat: no-repeat;
        background-position: center;
        width: auto;
        height: 15px;
        display: block;
        margin-right: auto;
        margin-left: 5px;
    }

    .convert-icon {
        background-image: url('../Images/Convert_bluecontrst.svg');
        background-repeat: no-repeat;
        background-position: center;
        width: auto;
        height: 15px;
        display: block;
        margin-right: auto;
        margin-left: 5px;
    }

    .download-icon {
        background-image: url('../Images/download-dark-whitemode.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        width: 25px;
        height: 25px;
        display: block;
        margin-right: auto;
        margin-left: 5px;
    }

    .search-icon {
        background-image: url('../Images/Search_black.svg');
        background-size: 70%;
        background-repeat: no-repeat;
        background-position: center;
        display: block;
    }


    .breadcrumb-item::before {
        display: inline-block;
        padding-right: 0.5rem;
        padding-left: 0rem;
        color: #6c757d;
        content: url("../Images/House-08.svg") !important;
        height: 12px;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        display: inline-block;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
        color: #626262 !important;
        content: ">" !important;
    }

    .home-icon {
        background-image: url('../Images/Home_icon_blue.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        width: 25px;
        height: 25px;
        display: block;
    }
}

/*
    Bug Id - 3425286 
    Skip link CSS

*/
/* to hide the bypasslinks */
.Skiplink {
    clip: rect(0 0 0 0);
    Position: absolute;
}

    /* to show the bypasslinks when it is focused */
    .Skiplink:focus, .Skiplink:hover {
        color: yellow;
        clip: auto;
        Position: static;
    }


li.list-group-item:focus {
    border: 1px solid #000 !important;
}

.filename-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 250px;
    display: inline-block;
}

#tblFeedback th {
    background-color: #00204F !important;
}

.multi-line-header {
    white-space: normal !important;
}


/*Bootstrap auto-complete textbox styling...*/

.bootstrap-select button, .bootstrap-select button:hover {
    background-color: #ffffff;
    font-weight: normal !important;
    border-style: none;
    border: 1px solid #707070;
    padding: 0.20rem 0.75rem;
}

.bootstrap-select :not(:disabled):not(.disabled).btn-light:active, :not(:disabled):not(.disabled).btn-light.active, .show > .btn-light.dropdown-toggle {
    border: 1px solid #707070 !important;
}

    .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
        border: 1px solid #006fc8 !important;
        box-shadow: none;
    }

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select .dropdown-toggle:active {
    outline: 1px solid #006fc8 !important;
    border: 1px solid #006fc8 !important;
    box-shadow: none;
    outline-offset: -2px;
}

.red-border, .red-border:focus, .red-border:active {
    border: 1px solid #D93737 !important;
}


/* CDM Update 3.0 Changes in File Submissions Page */

#file-details-tab-list .nav-item .nav-link, #convert-partner-tab-list .nav-item .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    margin-right: 0.25rem !important;
    box-shadow: none !important;
    background-color: white !important;
    color: #333333 !important;
    font-weight: normal;
}

    #file-details-tab-list .nav-item .nav-link.active, #convert-partner-tab-list .nav-item .nav-link.active {
        border-bottom: 2px solid #006fc8 !important;
        font-weight: 600;
    }

/*Expandable section styling*/
a.collapsible:before {
    content: "\23F7"; /* Unicode character for "down arrow" sign */
}

a.collapsible.active:before {
    content: "\23F6"; /* Unicode character for "up arrow" sign */
}

#report-type.form-control {
    border: none !important;
    font-size: 12px !important;
}

.download-file-icon {
    background: url("../Images/Download_Icon.svg") no-repeat center;
    width: 20px;
    height: 15px;
    display: inline-block;
}

.upload-file-icon {
    background: url("../Images/Upload_Icon.svg") no-repeat center;
    width: 20px;
    height: 15px;
    display: inline-block;
}

.form-control#report-type:focus {
    border: 1px dotted black !important;
}

.error-message {
    color: #bf0606;
}

#file-details-tab-list .nav-item a.disabled, #convert-partner-tab-list .nav-item a.disabled {
    cursor: not-allowed;
    opacity: 0.75;
    text-decoration: none;
}

#error-message-container .alert {
    left: 10%;
    right: 10%;
    max-width: 80%;
    border-radius: 0 !important;
}

.showAsLink {
    cursor: pointer;
    color: #0094ff;
}

.filter-icon {
    background: url("../Images/Filter_Icon.svg") no-repeat center;
    width: 20px;
    height: 15px;
    display: inline-block;
}

.clear-filter-icon {
    background: url("../Images/Clear_Filter_Icon.svg") no-repeat center;
    width: 20px;
    height: 15px;
    display: inline-block;
}

.info-icon {
    background: url("../Images/Warning_Info_Icon.svg") no-repeat center;
    width: 15px;
    height: 15px;
    display: inline-table;
}

.escalation-icon {
    background: url("../Images/Escalation_Icon.svg") no-repeat center;
    width: 20px;
    height: 15px;
    display: inline-table;
}

.filter-icon {
    background: url("../Images/Filter_Icon.svg") no-repeat center;
    width: 20px;
    height: 15px;
    display: inline-block;
}

.clear-filter-icon {
    background: url("../Images/Clear_Filter_Icon.svg") no-repeat center;
    width: 20px;
    height: 15px;
    display: inline-block;
}

.info-icon {
    background: url("../Images/Warning_Info_Icon.svg") no-repeat center;
    width: 15px;
    height: 15px;
    display: inline-table;
}

.escalation-icon {
    background: url("../Images/Escalation_Icon.svg") no-repeat center;
    width: 20px;
    height: 15px;
    display: inline-table;
}

.upload-file-icon-2 {
    background: url("../Images/Upload.svg") no-repeat center;
    width: 20px;
    height: 15px;
    display: inline-block;
}

.success-message {
    color: #047d20;
    font-family: Segoe UI;
    font-size: 28px;
    font-weight: lighter;
}

.font-16 {
    font-size: 16px;
    font-weight: 600;
}

.loader {
    background: url('../Images/spinner.gif') no-repeat center;
    width: 35px;
    height: 35px;
}

.table th, .table td {
    vertical-align: top !important;
}

/*#tblReportRecords tbody td {
    width: 7.5rem !important;
    max-width: 10rem !important;
}*/

#tblReportRecords tbody td input {
    height: 25px !important;
}

#tblReportRecords thead th > input[type='text'] {
    height: 25px !important;
    width: 7.5rem !important;
}



/*cursor- styles*/
.cursor-alias {
    cursor: alias;
}

.cursor-all-scroll {
    cursor: all-scroll;
}

.cursor-auto {
    cursor: auto;
}

.cursor-cell {
    cursor: cell;
}

.cursor-context-menu {
    cursor: context-menu;
}

.cursor-col-resize {
    cursor: col-resize;
}

.cursor-copy {
    cursor: copy;
}

.cursor-crosshair {
    cursor: crosshair;
}

.cursor-default {
    cursor: default;
}

.cursor-e-resize {
    cursor: e-resize;
}

.cursor-ew-resize {
    cursor: ew-resize;
}

.cursor-grab {
    cursor: -webkit-grab;
    cursor: grab;
}

.cursor-grabbing {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.cursor-help {
    cursor: help;
}

.cursor-move {
    cursor: move;
}

.cursor-n-resize {
    cursor: n-resize;
}

.cursor-ne-resize {
    cursor: ne-resize;
}

.cursor-nesw-resize {
    cursor: nesw-resize;
}

.cursor-ns-resize {
    cursor: ns-resize;
}

.cursor-nw-resize {
    cursor: nw-resize;
}

.cursor-nwse-resize {
    cursor: nwse-resize;
}

.cursor-no-drop {
    cursor: no-drop;
}

.cursor-none {
    cursor: none;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-progress {
    cursor: progress;
}

.cursor-row-resize {
    cursor: row-resize;
}

.cursor-s-resize {
    cursor: s-resize;
}

.cursor-se-resize {
    cursor: se-resize;
}

.cursor-sw-resize {
    cursor: sw-resize;
}

.cursor-text {
    cursor: text;
}

.cursor-url {
    cursor: url(myBall.cur),auto;
}

.cursor-w-resize {
    cursor: w-resize;
}

.cursor-wait {
    cursor: wait;
}

.cursor-zoom-in {
    cursor: zoom-in;
}

.cursor-zoom-out {
    cursor: zoom-out;
}


.multiselect-dropdown .dropdown-list {
    width: 15rem !important;
    border: 1px solid #707070 !important;
    border-radius: 0px !important;
    margin-top: 5px !important;
}

.multiselect-dropdown .dropdown-btn {
    width: 12.5rem !important;
    padding: 2px 2px !important;
    height: 25px !important;
    border-radius: 0px !important;
    border: 1px solid #707070 !important;
    background: #ffffff !important;
    color: #707070 !important;
}

    .multiselect-dropdown .dropdown-btn .dropdown-down {
        top: 5px !important;
        border-top: 5px solid #707070 !important;
        border-left: 5px solid transparent !important;
        border-right: 5px solid transparent !important;
    }

    .multiselect-dropdown .dropdown-btn .dropdown-up {
        border-bottom: 5px solid #707070 !important;
        border-left: 5px solid transparent !important;
        border-right: 5px solid transparent !important;
    }

    .multiselect-dropdown .dropdown-btn .selected-item {
        margin: 0 !important;
        background: #006fc8 !important;
        padding: 0px 2.5px !important;
        color: #ffffff !important;
        float: left !important;
        font-size: 12px !important;
        border: 0.5px solid #707070;
        border-radius: 0px !important;
    }

.multiselect-dropdown .dropdown-list li {
    padding: 3px 5px !important;
    cursor: pointer;
    text-align: left;
}

.multiselect-dropdown .dropdown-list .filter-textbox input {
    border: 1px solid #707070 !important;
    width: 100% !important;
    padding: 0 0 0 10px !important;
}

.multiselect-dropdown li.multiselect-item-checkbox {
    border-bottom: none !important;
}

.multiselect-dropdown .dropdown-list .filter-textbox {
    border-bottom: none !important;
}

    .multiselect-dropdown .dropdown-list .filter-textbox input {
        width: auto !important;
    }

.multiselect-item-checkbox input[type=checkbox] {
    border: 1px solid #707070 !important;
    width: auto !important;
}

#toast-message-container .alert {
    left: 0 !important;
    right: 0 !important;
    padding: 0.5rem 1.5rem !important;
    border: 1px solid #006FC8 !important;
}

#toast-message-container .alert-dismissible .close {
    margin-top: 0.5rem !important;
    padding: 0.25rem !important;
    opacity: 1;
    font-size: 1rem !important;
}


.infinite-progress-bar {
    height: 3px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

    .infinite-progress-bar:before {
        display: block;
        position: absolute;
        content: "";
        left: -200px;
        width: 200px;
        height: 2px;
        background-color: #006fc8;
        animation: loading 2s linear infinite;
    }

@keyframes loading {
    from {
        left: -200px;
        width: 30%;
    }

    50% {
        width: 30%;
    }

    70% {
        width: 70%;
    }

    80% {
        left: 50%;
    }

    95% {
        left: 120%;
    }

    to {
        left: 100%;
    }
}

.scrollable-thead-records {
    display: block;
    min-height: 3.6rem;
}

.scrollable-tbody-records {
    max-height: 25rem !important;
    display: block;
    overflow-y: scroll;
}

/*Accessibility bugs - CC , HC */
.hyperlink {
    cursor: pointer !important;
    color: #0057d9 !important;
}


    .hyperlink:focus {
        outline: none;
        border: 2px solid #000;
    }

#file-details-tab-list {
    margin-bottom: 1px !important;
    border: none !important;
}

    #file-details-tab-list .nav-item .nav-link {
        border: none !important;
    }


/*HC- Active mode*/
@media screen and (-ms-high-contrast: active) {

    .infinite-progress-bar {
        height: 3px;
        width: 100%;
        position: relative;
        overflow: hidden;
        background-color: #000;
    }

        .infinite-progress-bar:before {
            display: block;
            position: absolute;
            content: "";
            left: -200px;
            width: 200px;
            height: 2px;
            background-color: #fff;
            animation: loading 2s linear infinite;
        }

    @keyframes loading {
        from {
            left: -200px;
            width: 30%;
        }

        50% {
            width: 30%;
        }

        70% {
            width: 70%;
        }

        80% {
            left: 50%;
        }

        95% {
            left: 120%;
        }

        to {
            left: 100%;
        }
    }
}

/*HC black mode*/
@media screen and (-ms-high-contrast: white-on-black) {
    .hyperlink {
        color: #FFFF00 !important;
    }


    .setup-heading {
        color: #FFFFFF !important;
    }

    /*Loader in HC Black mode*/
    .infinite-progress-bar {
        background-color: #000;
    }

        .infinite-progress-bar:before {
            background-color: #fff;
        }

    /* Dropdown btn for multi select filter in HC black mode*/
    .multiselect-dropdown .dropdown-btn .dropdown-down {
        top: 5px !important;
        border-top: 5px solid #fff !important;
        border-left: 5px solid #000 !important;
        border-right: 5px solid #000 !important;
    }
}

/*HC - White Mode*/
@media screen and (-ms-high-contrast: black-on-white) {
    .hyperlink {
        color: #00009f !important;
    }

    .setup-heading {
        color: #FFFFFF !important;
    }

    /*Loader in HC Black mode*/
    .infinite-progress-bar {
        background-color: #fff;
    }

        .infinite-progress-bar:before {
            background-color: #000;
        }

    /* Dropdown btn for multi select filter in HC white mode*/
    .multiselect-dropdown .dropdown-btn .dropdown-down {
        top: 5px !important;
        border-top: 5px solid #000 !important;
        border-left: 5px solid #fff !important;
        border-right: 5px solid #fff !important;
    }
}

.margin-left--15 {
    margin-left: -15px;
}

.p-10 {
    padding-top: 9rem !important;
}

.card-text {
    font-size: 14px !important;
}

.margin-top--17 {
    margin-top: -17px;
}

.margin-top--1 {
    margin-top: -1px;
}

.table-head {
    height: 30px !important;
    color: #FFFFFF !important;
    background-color: #006FC8 !important;
    font-size: 12px !important;
    border: 1px solid #006FC8 !important;
}

}

.mt--15 {
    margin-top: -15px
}

.wrap-text {
    white-space: pre-wrap;
}

td .spnTooltip {
    font-weight: 600;
    font-size: 14px;
    z-index: 10;
    display: none;
    padding: 14px 20px;
    margin-top: 10px;
    margin-left: -440px;
    width: 400px;
    line-height: 16px;
}

td:hover .spnTooltip {
    font-size: 12px;
    display: inline;
    position: absolute;
    color: #111;
    border: 1px solid #DCA;
    background: #eaeaea;
}

.callout {
    font-weight: 600;
    font-size: 14px;
    z-index: 20;
    position: absolute;
    top: 30px;
    border: 0;
    left: -12px;
}

/*Contact Management*/

.custom-accordion-group .custom-accordion {
    border-radius: 0;
    box-shadow: none;
    border-color: #C1C1C1;
}

.custom-accordion-title {
    padding: 0;
    border-radius: 0;
    color: #212121;
    background-color: #d1d1d1;
    border-color: #C1C1C1;
    margin-bottom: 0px !important;
    margin-top: 5px;
}

.custom-accordion-body {
    border: 1px solid #C1C1C1;
    margin-bottom: 5px;
    padding: 5px;
}

.custom-accordion-title {
    font: 'Segoe UI';
    font-size: 16px;
    font-weight: 600;
}

    .custom-accordion-title > a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: #212121;
    }

.more-less {
    float: right;
    color: #212121;
}

.custom-accordion-default > .custom-accordion-heading + .custom-accordion-collapse > .custom-accordion-body {
    border: 1px solid #EEEEEE;
    margin: -8px 0 5px 0;
    padding-bottom: 10px;
}


.accordion-expand {
    top: 0px;
    left: 0px;
    width: 1366px;
    height: 1098px;
    background: #F3F3F3 0% 0% no-repeat padding-box;
    opacity: 1;
}

.accordion-minimize {
    top: 896px;
    left: 1249px;
    width: 15px;
    height: 8px;
    transform: matrix(-1, 0, 0, -1, 0, 0);
    background: #333333 0% 0% no-repeat padding-box;
    opacity: 1;
}

.edit-icon {
    background-image: url('../Images/edit-icon.svg');
    width: 12px;
    height: 15px;
    display: block;
    margin-right: auto;
    margin-left: 12px;
    color: #707070 !important;
}

.view-icon {
    color: #006FC8;
}

/*Contact Management*/

td .ulNotificationTooltip {
    font-weight: 600;
    font-size: 14px;
    z-index: 10;
    display: none;
    padding: 14px 20px;
    margin-top: -30px;
    margin-left: 10px;
    width: 250px;
    line-height: 16px;
}

td:hover .ulNotificationTooltip {
    font-size: 12px;
    display: inline;
    position: absolute;
    color: #111;
    border: 1px solid #DCA;
    background: #eaeaea;
}

/* Loading spinner */
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}
/* //Loading spinner */

.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
    color: #495057 !important;
}

/* Accessibility Bug Fix : 6834938*/
.links:focus {
    outline: none;
    border: 1px solid #000;
}

.datepicker-switch:focus {
    outline: none;
    border: 1px solid #000;
}

.font-segoe-ui-18 {
    font-size: 18px;
    font-family: Segoe UI;
}

.font-segoe-ui-16 {
    font-size: 16px;
    font-family: Segoe UI;
}

/*.datepicker {
    width: 25% !important;
}*/

@media (max-width: 320px) {
    .table-responsive-xs {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

        .table-responsive-xs > .table-bordered {
            border: 0;
        }

    .pagination > li > a, .pagination > li > span {
        font-size: xx-small;
    }

    .pagination > li {
        padding-right: 0px;
    }
}

@media (max-width: 256px) {
    .table-responsive-xs {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

        .table-responsive-xs > .table-bordered {
            border: 0;
        }

    .pagination > li > a, .pagination > li > span {
        font-size: xx-small;
    }

    .pagination > li {
        padding-right: 0px;
        padding-left: 3px;
    }
}

@media only screen and (max-width:1280px) and (min-width:1024px) {
    .main-container {
        overflow-x: hidden;
    }
}

@media only screen and (max-width:320px) {
    .div-banner-block {
        max-width: 83.33%;
    }

    .banner-block-header {
        font-size: 25px;
    }

    .main-container {
        overflow-x: hidden;
    }
}

@media only screen and (max-width:256px) {
    .div-banner-block {
        max-width: 83.33%;
    }

    .banner-block-header {
        font-size: 20px;
    }

    .main-container {
        overflow-x: hidden;
    }
}

@media only screen and (min-width:280px) and (max-width:450px) {
    .input-group {
        width: 90%;
        margin-top: 5px;
    }
}
