@font-face {
    font-family: "Cera Pro";
    src: url("../fonts/Cera-Pro-Light.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Cera Pro";
    src: url("../fonts/Cera-Pro-Medium.otf") format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Cera Pro";
    src: url("../fonts/Cera-Pro-Regular.otf") format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Cera Pro";
    src: url("../fonts/Cera-Pro-Bold.otf") format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Regular.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
}

html {
    font-size: 14px;
    overflow-x: hidden;
    margin-right: calc(-1 * (100vw - 100%));
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    background: #fbfafd;
    min-height: 100vh;
    font-family: 'Cera Pro';
    color: #2F2F2F;
}

.sidebar {
    overflow: auto;
}

h1 {
    font-weight: 600;
    font-size: 44px;
    line-height: 55px;
}

.sidebar {
    width: 290px;
    min-width: 290px;
    background: #fff;
    border-radius: 23px;
    filter: drop-shadow(0px 0px 10px #01579b66);
    height: calc(100vh - 50px);
    position: fixed;
    display: flex;
    flex-direction: column;
    background: #215684;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 360px;
    width: calc(100% - 360px);
}

.outside-wrapper {
    display: flex;
    padding-top: 25px;
    padding: 25px 0;
    min-height: 100vh;
}

.nav-top-wrapper {
    padding:20px 35px;
    background:#fff;
}

    .nav-top-wrapper > a {
        display: flex;
        align-items: center;
        column-gap: 15px;
    }

.nav-top-wrapper img{
    width: 60px;
    display: block;
    margin:auto;
}

.under-logo {
    font-size: 18px;
    color: #666;
    display: block;
    font-weight: 500;
    line-height: 24px;
}

.main-nav {
    padding: 0 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom:35px;
}

.nav-subheading {
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.68);
    margin: 35px 0 15px 0;
    display: block;
}

a.nav-link {
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    font-weight: 400;
    position: relative;
    font-size: 16px;
    line-height: 1.25;
    align-items: center;
    display: flex;
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.3);*/
}

li:last-child a.nav-link{
    border-bottom:none;
}

.nav-link i {
    margin-right: 10px;
    width: 18px;
}

a.nav-link:hover {
    color: #FF9900cc !important;
}

    a.nav-link.bottom-item {
        margin-top: auto;
        border-bottom:0;    
    }

.mobile-menu-toggle {
    display: none;
    width: 30px;
    height: 25px;
    border: none;
    background: url(../images/hamburger.svg);
    background-size: cover;
    transition: ease all 0.3s;
}

.mobile-nav-show .mobile-menu-toggle {
    background: url(../images/mobile-close.svg);
    background-size: 26px 26px;
    background-repeat: no-repeat;
    background-position: center;
}

@media only screen and (max-width: 1199px) {
    .sidebar {
        width: 100%;
        max-width: 960px;
        height: 94px;
        padding: 0 35px;
        top: 10px;
        z-index: 10;
        transition: all ease 0.3s;
    }

    .sidebar.mobile-nav-show {
        height: 100vh;
        width: 100%;
        top: 0;
        left: 0;
        max-width: 100%;
        border-radius: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-top-wrapper {
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0px;
    }

    .under-logo {
        color: #ddd;
        max-width: 200px;
    }

    .nav-top-wrapper img{
        filter:brightness(100);
    }

    .main-nav {
        display: none;
        width: 400px;
        max-width: 100%;
    }

    .mobile-nav-show .main-nav {
        display: flex;
    }

  
    .outside-wrapper {
        padding: 0;
    }

    main {
        margin-left: 0;
        width: 100%;
        margin-top: 145px;
    }
}

@media only screen and (max-width: 992px) {
    .sidebar {
        max-width: 720px;
    }
}

@media only screen and (max-width: 767px){
    .under-logo{
        font-size:15px;
        max-width:150px;
    }

    .sidebar {
        width: calc(100% - 20px);
        padding: 0 25px;
    }

    .outside-wrapper {
        max-width: 100%;
        padding: 0 10px;
    }
}

.login-pod {
    max-width: 400px;
    margin: 40px auto;
}

.pod {
    background: #FFFFFF;
    padding: 50px 48px;
    box-shadow: 0px 4px 34px #01579b66;
    border-radius: 12px;
    margin-bottom: 50px;
    width: 100%;
}

    .pod h2 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 25px;
    }

.inputWrapper {
    margin-bottom: 25px;
    position: relative;
}

    .inputWrapper label {
        font-family: 'Cera Pro';
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 23px;
        display: block;
        margin-bottom: 8px;
        color: #0C0C0D;
    }

    .inputWrapper input[type="text"], .inputWrapper input[type="password"], .inputWrapper input[type="email"], .inputWrapper input[type="url"] {
        width: 300px;
        max-width: 100%;
        border: 1px solid #D8DAE5;
        border-radius: 4px;
        padding: 4px 10px;
        font-size: 16px;
    }

.full-btn {
    width: 100%;
}

.btn-primary {
    background: #01579b;
    border-radius: 33px;
    border: none;
    font-family: 'Cera Pro';
    font-style: normal;
    font-weight: 500;
    text-transform: none;
    font-size: 17px;
    line-height: 24px;
    display: flex;
    -webkit-transition: background 1000ms linear;
    -ms-transition: background 1000ms linear;
    transition: background 1000ms linear;
    align-items: center;
    letter-spacing: 0.01em;
    padding: 13px 30px;
    color: #FFFFFF;
    justify-content: center;
    min-width: 180px;
}

.btn-secondary {
    background: transparent;
    border-radius: 33px;
    border: 2px solid #01579b;
    font-family: 'Cera Pro';
    font-style: normal;
    font-weight: 500;
    text-transform: none;
    font-size: 17px;
    line-height: 24px;
    display: flex;
    -webkit-transition: background 1000ms linear;
    -ms-transition: background 1000ms linear;
    transition: background 1000ms linear;
    align-items: center;
    letter-spacing: 0.01em;
    padding: 13px 30px;
    color: #01579b;
    justify-content: center;
    min-width: 180px;
}

.register-forgot {
    margin-top: 30px;
    margin-bottom: -20px;
    display: flex;
    justify-content: center;
}

a {
    color: #01579b;
    font-weight: 500;
    text-decoration: none;
}

.unauth main {
    margin-left: 0;
}

.outside-wrapper.unauth {
    justify-content: center;
    align-items: center;
}

.heading-center{
    text-align:center;
}

.password-toggle {
    background: url(../images/eye-off.svg);
    width: 16px !important;
    height: 16px;
    background-size: cover;
    display: block;
    right: 15px;
    position: absolute;
    bottom: 8px;
}

input[type="password"]{
    font-family:Verdana;
}

.message-pod.error-msg {
    background: #FFF8F8;
    border: 1px solid rgba(251, 197, 197, 0.6);
}

.message-pod {
    margin-bottom: 25px;
    background: #F9F8FF;
    padding: 15px 30px 15px 45px;
    color: #000;
    border: 1px solid rgba(221, 197, 251, 0.6);
    border-radius: 8px;
    font-family: 'Cera Pro';
    font-style: normal;
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #484848;
}

.message-area {
    display: none;
    position: relative;
}

.info-icon-wrapper {
    position: absolute;
    width: 18px;
    height: 18px;
    left: 16px;
    display: flex;
    top: 16px;
    border-radius: 50%;
    z-index: 1;
    background: transparent;
    background: #01579b;
}

.alert-close, .sr-close {
    position: absolute;
    right: 8px;
    top: 5px;
    color: #000;
    font-family: Arial;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.alert-pod p {
    margin-bottom: 5px;
}

.indent-block {
    margin: 0px 0 45px 50px;
    max-width: 500px;
    margin-top: 75px;
}

    .indent-block h1 {
        padding-bottom: 20px;
        display: inline-block;
        border-bottom: 1px solid #01579b;
    }

        .indent-block h1 + p {
            margin-top: 25px;
        }

    .indent-block p {
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 141%;
        letter-spacing: 0.01em;
    }

.account-pod {
    max-width: 640px;
}

.mobile-tabs {
    display: none;
    margin-left: 20px;
}

    .mobile-tabs button {
        background: transparent;
        border: none;
        font-size: 15px;
        font-family: 'Cera Pro';
        font-weight: 500;
        color: rgba(132, 135, 149, 1);
        padding: 0 0 8px 0;
        margin-right: 8px;
        margin-bottom: 20px;
    }

    .mobile-tabs button.active {
        color: #01579b;
        border-bottom: 2px solid #01579b;
    }

.split-pod {
    display: flex;
    column-gap: 50px;
}

.message-area {
    display: none;
    position: relative;
}

.split-pod h2 {
    display: block;
    font-family: 'Cera Pro';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    max-width: 150px;
    width: 150px;
    min-width: 150px;
    color: #01579b;
    margin-bottom: 5px;
}

.split-pod .btn-primary {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

.message-pod.success-msg {
    background: #F3FFF4;
    border: 1px solid #DDE9D8;
}

    .message-pod.success-msg .info-icon-wrapper {
        background: #268604;
    }

.message-pod.error-msg .info-icon-wrapper {
    background: #B81010;
}

.info-icon-wrapper img {
    width: 18px;
    height: 18px;
    filter: invert(1);
}

@media only screen and (max-width: 768px) {
    .mobile-tabs {
        display: block;
    }

    .inputWrapper {
        margin-bottom: 20px;
    }

    .account-pod {
        display: none;
        background: transparent;
        box-shadow: none;
        padding: 0 20px;
    }

    .inputWrapper input[type="text"], .inputWrapper input[type="password"], .inputWrapper input[type="email"] {
        font-size: 14px;
        width: 100%;
    }

    .account-pod.active {
        display: block;
    }

    .split-pod {
        display: flex;
        column-gap: 0;
        flex-direction: column;
        row-gap: 15px;
    }

    .inputWrapper label {
        font-size: 15px;
    }

    .account-pod .split-pod h2 {
        display: none;
    }

    .indent-block {
        margin: 0 20px 35px 20px;
    }

        .indent-block h1 {
            padding-bottom: 15px;
        }

    h1, .history-top h1, .projects-top h1, .project-contents h2 {
        font-size: 28px;
        line-height: 34px;
        font-weight: 500;
    }

    .indent-block h1 + p {
        margin-top: 10px;
    }

    .indent-block p {
        font-size: 15px;
        font-weight: 400;
    }
}

.history, .projects {
    margin: 0px 0 45px 50px;
    max-width: 100%;
    margin-top: 75px;
}

.projects-heading .btn-primary img {
    filter: invert(1);
}

.projects-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.history-top, .projects-top {
    border-bottom: 1px solid rgba(63, 29, 111, 0.2);
    padding-bottom: 10px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.projects-top {
    margin-bottom: 20px;
}

    .history-top h1, .projects-top h1 {
        font-family: 'Cera Pro';
        font-style: normal;
        font-weight: 600;
        font-size: 44px;
        line-height: 55px;
    }

.projects-heading .btn-primary {
    height: 50px;
}

.mobile-only {
    display: none;
}

.project-row i {
    font-size: 22px;
    margin-right: 8px;
    color: #01579b;
}

@media only screen and (max-width: 1199px) {
    .history, .projects {
        margin: 0px;
        max-width: 100%;
    }
}

@media only screen and (max-width: 992px) {
    .history-top, .projects-top {
        margin-left: 15px;
        margin-right: 15px;
        flex-wrap: wrap;
        position: relative;
    }
}

@media only screen and (max-width: 768px) {
    .create-btn.mobile-only {
        height: 40px;
        padding: 6px 15px;
        min-width: 100px;
    }

    h1, .history-top h1, .projects-top h1, .project-contents h2 {
        font-size: 28px;
        line-height: 34px;
        font-weight: 500;
    }

    .create-btn.mobile-only {
        height: 40px;
        padding: 6px 15px;
        min-width: 100px;
        display:block;
    }

    .create-btn.desktop-only{
        display:none;
    }
}

.record-overlay, .create-user-overlay {
    background: rgba(23, 25, 41, 0.51);
    backdrop-filter: blur(7px);
    display: none;
    position: fixed;
    height: 100vh;
    width: 100%;
    z-index: 2;
    top: 0;
    left: 0;
}

.record-overlay-inner{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.record-overlay .pod, .create-user-overlay .pod{
    max-width: 900px;
    height: auto;
    max-height: 90%;
    overflow-y: auto;
    margin-bottom: 0;
}

.record-overlay-controls, .create-user-overlay-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

    .record-overlay-controls span, .back-to-history span, .create-user-overlay-controls .back-to-history {
        cursor: pointer;
        font-family: 'Cera Pro';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.02em;
        color: #344054;
    }

    .record-overlay-controls img, .create-user-overlay-controls img {
        width: 16px;
        height: 16px;
        cursor: pointer;
    }

.back-to-history img {
    margin-right: 10px;
}

.inputWrapper select {
    border: 1px solid #D8DAE5;
    border-radius: 4px;
    padding: 4px 10px;
    width: 100%;
    font-size: 16px;
    height: 33px;
}

.project-list {
    margin: 20px 0;
}

.project-row {
    border-bottom: 1px solid rgba(150, 150, 150, 0.2);
    position: relative;
}

    .project-row span {
        font-size: 18px;
        font-weight: 500;
        line-height: 23px;
        letter-spacing: 0em;
        text-align: left;
        margin: 20px 0;
        display: inline-block;
        max-width: calc(100% - 70px);
        padding-right: 30px;
    }

.project-context {
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 19px;
    padding-left: 20px;
}

.project-row .context-menu {
    display: none;
    position: absolute;
    right: 35px;
    top: 10px;
    width: 230px;
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
    border: 1px solid rgba(242, 244, 247, 1);
    border-radius: 8px;
    z-index: 1;
    background: #fff;
}

.project-row .context-menu-item {
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    padding: 8px 15px;
    cursor: pointer;
    border-bottom: 1px solid rgba(232, 232, 232, 1);
}


.project-row .context-menu-item:first-child {
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

    .project-row .context-menu-item:last-child {
        border-bottom: none;
        border-bottom-right-radius: 8px;
        border-bottom-left-radius: 8px;
    }

@media only screen and (max-width: 768px) {
    .record-overlay, .create-user-overlay {
        background: rgba(251, 250, 253, 1);
        backdrop-filter: none;
    }

    .project-row span {
        font-size: 15px;
        line-height: 20px;
    }

    .record-overlay-inner {
        align-items: flex-start;
        margin-top: 120px;
    }

    .pod {
        padding: 20px;
    }

    .record-overlay .pod, .create-user-overlay .pod {
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding-bottom: 30px;
        max-height: calc(100% - 120px);
    }

    .record-overlay-controls .close-button, .create-user-overlay-controls .close-button {
        display: none;
    }
}

div.progress {
    margin-top: 15px;
    max-width: 400px;
}

.progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem;
}

.progress-bar {
    background-color: #FF9900;
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #0d6efd;
    transition: width .6s ease;
}

.buttons {
    display: flex;
    justify-content: space-between;
    margin-top:40px;
}

@media only screen and (max-width:767px){
    .buttons{
        flex-direction:column;
        row-gap:15px;
    }
}

.split-pod .buttons .btn-primary {
    margin: 0;
}

.date-select-wrapper {
    position: relative;
}

.filter-wrapper {
    display: flex;
    column-gap: 15px;
    margin-left: 15px;
}

.date-select {
    border: 1px solid #A7A8AD;
    border-radius: 8px;
    font-family: 'Cera Pro';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    width: 200px;
    line-height: 23px;
    cursor: pointer;
    justify-content: flex-start;
    padding: 0 15px;
    color: #01579b;
    display: flex;
    height: 44px;
    justify-content: flex-start;
    align-items: center;
}

    .date-select > img {
        margin-right: 10px;
    }

.search-box {
    background: #F2F4FA;
    background-image: url('../images/icons/search.svg');
    background-size: contain;
    background-position: 15px 10px;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    text-indent: 30px;
    border-radius: 8px;
    height: 44px;
    width: 350px;
    line-height: 44px;
    max-width: 100%;
    border: none;
    padding-left: 15px;
    padding-right: 75px;
    transition: 0.15s ease all;
}

    .search-box:not(:placeholder-shown) {
        background-image: none;
        text-indent: 0;
    }

.search-box-wrapper {
    position: relative;
}

    .search-box-wrapper > img {
        position: absolute;
        width: 24px;
        height: 24px;
        left: 15px;
        top: 10px;
    }

.search-box:placeholder-shown {
    font-family: 'Cera Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 135%;
    color: #A7A8AD;
}

.date-select-dropdown {
    display: none;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 50px;
    width: 200px;
    background: #FFFFFF;
    border: 1px solid #F2F4F7;
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
    border-radius: 8px;
}

    .date-select-dropdown > div {
        padding: 10px 15px;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #101828;
        cursor: pointer;
        transition: ease all 0.2s;
        position: relative;
    }

        .date-select-dropdown > div:hover {
            background: #F9FAFB;
        }

        .date-select-dropdown > div.active {
            background: #F9FAFB;
        }

            .date-select-dropdown > div.active:after {
                content: '';
                background: url(../images/icons/check.svg);
                width: 20px;
                height: 20px;
                position: absolute;
                top: 12px;
                right: 12px;
            }

.apply-search-wrapper {
    display: none;
    position: absolute;
    height: 44px;
    right: 0;
    align-items: center;
    top: 0;
}

.search-trigger-bg {
    cursor: pointer;
    background: url(../images/icons/apply-search-bg.svg);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.apply-search-wrapper .clear-search {
    cursor: pointer;
    width: 11px;
    height: 11px;
}

.apply-search-icon {
    width: 27px;
    height: 27px;
}

.apply-search-inner {
    display: flex;
    align-items: center;
    column-gap: 13px;
}

.pagination-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 15px 40px 0 40px;
    margin-top: 25px;
    border-top: 1px solid #E8EBFA;
    align-items: center;
}

    .pagination-wrapper button {
        border: none;
        background: transparent;
    }

        .pagination-wrapper button:disabled {
            opacity: 0.3;
        }

.pagination-prev img {
    transform: rotate(180deg);
}

.pagination-wrapper span {
    font-family: 'Cera Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.5px;
    color: #1F004A;
}

.projects .filter-wrapper {
    margin-left: 0;
    margin-bottom: 20px;
    justify-content: space-between;
}

.projects .date-select {
    width: 220px;
    justify-content: space-between;
}

.project-row:last-child {
    border-bottom: none;
}

.project-row span em {
    display: inline-block;
    margin-left: 10px;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    color: #333;
}

.project-row span em.red-text{
    color:red;
}

.project-row span em.green-text{
    color:green;
}

.loading {
    display: none;
}

.loading-inner {
    align-items: center;
    justify-content: center;
    display: flex;
    position: relative;
    height: 100%;
}

    .loading-inner:before {
        content: "Working on it...";
        font-size: 12px;
        position: absolute;
        font-weight: 500;
        color: #2F2F2F;
        left: 50%;
        display: block;
        transform: translateX(-50%);
        width: 100px;
        top: 0;
    }

    .loading-inner:after {
        content: "No need to wait, you can leave and return if you'd like!";
        font-size: 12px;
        position: absolute;
        font-weight: 500;
        color: #2F2F2F;
        left: 50%;
        display: block;
        transform: translateX(-50%);
        text-align: center;
        bottom: 0;
    }

@media only screen and (max-width: 992px) {
    .projects .filter-wrapper {
        margin-left: 15px;
        margin-right: 15px;
        width: calc(100% - 30px);
    }
}

@media only screen and (max-width: 768px) {
    .projects .filter-wrapper {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .search-box-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .search-box {
        font-size: 15px;
        padding-right: 25px;
        width: 100%;
    }

    .search-box:placeholder-shown {
        font-size: 15px;
    }

    .date-select-dropdown > div {
        font-size: 14px;
    }

    .project-row span{
        font-size:16px;
    }

    .project-row span em{
        display:block;
        margin-left:0;
        margin-top:5px;
        font-size:14px;
    }

    .date-select {
        width: 170px;
        font-size: 15px;
        padding: 0 10px;
    }

    .projects .date-select-wrapper {
        position: relative !important;
        margin-left: auto;
    }
}

.scrub-account-row h5 {
    align-items: center;
    display: flex;
    line-height: 28px;
    font-size: 18px;
    margin-bottom:0;
}

.scrub-account-row .success-label {
    font-size: 10px;
    display: inline-block;
    height: 14px;
    line-height: 14px;
    margin-left: 5px;
    padding: 0px 4px;
    border-radius: 109px;
    background: green;
    color: #fff;
    margin-bottom: -3px;
}

.scrub-account-row .success-label.failure{
    background:red;
}

.scrub-account-row {
    background: #fff;
    border: 1px solid #ddd;
    padding: 5px 15px;
    font-size: 14px;
    margin-bottom: 10px;
}

.contacts-heading img {
    width: 18px;
    height: 18px;
    margin-right: 4px;
    transform: rotate(-90deg);
    cursor:pointer;
    transition:ease all 0.5s;
}

.contacts-heading img.loaded{
    transform:rotate(0deg);
    cursor:default;
}

.contacts-heading {
    display: flex;
    align-items: center;
    margin-top:8px;
}

    .contacts-heading h6 {
        margin-bottom: 0;
    }

.contact-panel {
    margin: 10px 0;
}

.contact-list a {
    display: flex;
    column-gap: 10px;
    align-items: center;
    padding-bottom: 3px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 3px;
}

.contact-list a:last-child{
    margin-bottom:0;
    border-bottom:none;
}

.contact-list a span{
    display:inline-block;
}

    .contact-list a span.contact-role {
        font-size: 10px;
        display: inline-block;
        height: 14px;
        line-height: 14px;
        padding: 0px 4px;
        border-radius: 109px;
        background: #01579b;
        color: #fff;
        margin-bottom: -3px;
    }

    .contact-list a span.contact-email{
        color:#333;
    }