@font-face {
    font-family: 'AkkuratStd';
    src: url('../fonts/AkkuratStd.woff2') format('woff2'),
    url('../fonts/AkkuratStd.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'AkkuratStd';
    src: url('../fonts/AkkuratStd-Bold.woff2') format('woff2'),
    url('../fonts/AkkuratStd-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'AkkuratStd';
    src: url('../fonts/AkkuratStd-Light.woff2') format('woff2'),
    url('../fonts/AkkuratStd-Light.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}

body {
    overflow-x: hidden;
    color: var(--grey-700);
    font-family: 'AkkuratStd', 'Roboto', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    height: 100%;

    /* color variables */

    --pp-mint-600-prim: #57A7B1;
    --pp-mint-700-prim-main: #078091;
    --pp-mint-800-prim: #007080;
    --pp-mint-850-prim: #055F6B;

    --pp-solutions-blue-800: #0080B8;

    --white-100: #FFFFFF;
    --grey-150: #FCFCFC;
    --grey-200: #F4F4F4;
    --grey-250: #EDEDED;
    --grey-300: #E4E4E4;
    --grey-400: #CFCFD1;
    --grey-500: #BAB9BD;
    --grey-550: #A8A6AD;
    --grey-600: #8E8D94;
    --grey-700: #717479;
    --grey-800: #4A4C4F;
    --black-900: #303133;

    --func-red-700-main: #D45055;

    --func-yellow-100: #FFFBE5;
    --func-yellow-700: #E5C300;
    --func-yellow-900: #63570E;

    --button-shadow-hover: #0000002E; /* black, opacity: 0.18 */
    --button-shadow-focus: #00000033; /* black, opacity: 0.2 */
    --modal-shadow: #00000026; /* black, opacity: 0.15 */
    --modal-footer-shadow-1: #00000014; /* black, opacity: 0.08 */
    --modal-footer-shadow-2: #00000052; /* black, opacity: 0.32 */
    --banner-shadow: #0000004d; /* black, opacity: 0.3 */
    --modal-background: #00000066; /* black, opacity: 0.4 */

}

.desktop-only {
    display: inline-block;
}

.mobile-only {
    display: none;
}

.form-group {
    margin-bottom: 10px;
}

.rounded-borders {
    border-radius: 10px;
}

.header-bar {
    width: 100%;
    background: var(--pp-mint-600-prim);
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 2rem 1rem .5rem;
}

.language-selector {
    font-size: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent url("data:image/svg+xml;utf8,<svg fill='white' height= '24' viewBox= '0 0 24 24' width= '24' xmlns= 'http://www.w3.org/2000/svg' ><path d= 'M7 10l5 5 5-5z' /><path d= 'M0 0h24v24H0z' fill= 'none' /></svg>") no-repeat;
    background-position-x: 98%;
    background-position-y: 50%;

    color: var(--white-100);
    border-style: solid;
    border-width: 1px;
    border-color: var(--white-100);
    padding: 5px 50px 5px 5px;
    margin-right: 10px;
}

.header-logo-container {
    width: auto;
    display: inline-block;
}

.header-logo-container img {
    width: 100%;
    height: auto;
}


h1 {
    font-weight: 700;
    line-height: 1.3;
    font-size: 3rem;
    margin-bottom: .5em;
}

h3 {
    font-size: 2rem;
}

input[class*="input"] {
    border: 1px solid var(--grey-500);
    box-shadow: none;
}

input[class*="input"]:hover {
    border-color: var(--grey-550);
}

input[class*="input"]:focus {
    border: 2px solid var(--grey-700);
    box-shadow: none;

}

.input-lg {
    border-radius: 25px;
    font-size: 16px;
}

.bodybg {
    background-color: var(--grey-300);
    background-image: -webkit-linear-gradient(112deg, var(--grey-300) 50%, var(--pp-mint-600-prim) 50%);
    min-height: 100vh;
}

.logo {
    width: 100%;
    text-align: center;
}

.logo-polyid {
    width: 100%;
    text-align: center;
    padding: 20px 20px 10px 20px
}

.logo-polyid > img {
    width: 400px;
}

.main-row {
    padding: 1.5rem 2rem;
}

.main-col {
    background: var(--white-100);
    min-height: 75vh;
    padding-bottom: 30px;
}

.otp-main-col {
    padding-bottom: 50px !important;
}

.org-selector-main-col {
    min-height: 60vh !important
}

header {
    background-color: var(--grey-200);
}


.has-error .help-block {
    color: var(--func-red-700-main);
    font-size: .98em;
    font-weight: 100;
    text-align: right;
    margin-top: 1px;
    margin-bottom: -5px;
}

.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: var(--modal-background);
    overflow-x: hidden;
}

.btn {
    font-weight: 700;
    padding: 10px;
    max-width: 275px;
}

.btn-primary {
    font-size: 15px;
    background-color: var(--pp-mint-700-prim-main);
    margin-bottom: 1em;
    margin-top: 1em;
    border-radius: 25px;
    width: 25%;
    border: solid 2px transparent;
    min-width: 165px;
}

.btn-primary:hover {
    background-color: var(--pp-mint-850-prim);
    box-shadow: 1px 12px 24px -10px var(--button-shadow-hover);

}

.btn-primary.active, .btn-primary.focus, .btn-primary.active.focus, .btn-primary:active, .btn-primary:focus, .btn-primary:active:focus, .open > .dropdown-toggle.btn-primary {
    background-color: var(--pp-mint-700-prim-main);
    border-color: var(--pp-mint-850-prim);
    box-shadow: 0 4px 8px 0 var(--button-shadow-focus);
    outline: none;
    outline-offset: 0;
}

#link-hp.btn {
    margin: 48px auto;
}

.button-container {
    display: flex;
    flex-direction: row-reverse;
}

.log-in-again-container {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
}

/*OrganizationForm*/
.organization-form {
    display: flex;
    flex-flow: column;
}

.organization-input {
    border-radius: 25px;
    padding-left: 50px;
}

/*DROPDOWN*/
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white-100);
    min-width: 90%;
    left: 20px;
    border: 1px solid var(--grey-250);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: var(--grey-600);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: var(--grey-250);
}

.selected {
    background-color: var(--grey-250);
}

.dropdown .fa-search {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 25px;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
    display: block;
}

.organization-required {
    font-size: 15px;
    display: none;
    color: var(--func-red-700-main);
    padding: 15px;
}

.input-error {
    border: 1px solid var(--func-red-700-main);
}

.login-field-required {
    font-size: 15px;
    display: none;
    color: var(--func-red-700-main);
    padding: 15px 33px 15px 15px;
}

.login-info {
    font-size: 15px;
    color: var(--pp-solutions-blue-800);
    padding: 10px 15px 0 15px;
    overflow: auto;
}

.login-warning {
    font-size: 15px;
    color: var(--pp-solutions-blue-800);
    padding: 10px 15px 0 15px;
    overflow: auto;
}

.login-error {
    font-size: 15px;
    color: var(--func-red-700-main);
    padding: 10px 15px 0 15px;
    overflow: auto;
}

.error-technical-details {
    font-size: 14px;
    color: var(--func-red-700-main);
    padding: 0 0 8px 0;
    overflow: auto;
}

.error-technical-details p {
    margin: 0;
}

.footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    height: 60px;
    background: var(--grey-300);
    background-size: 100% auto;
    font-size: .9em;
    font-weight: 200;
    color: var(--grey-800);
    text-align: center;
    position: fixed;
}

.footer-span {
    color: var(--grey-800);
    margin-right: 1em;
}

.consent-header {
    font-size: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: var(--grey-800);
}

.consent-container {
    padding: 1em 6em;
}

.consent-header > span {
    margin: 5px;
}

.consent-personal-data {

}

.consent-personal-data .email {
    color: var(--pp-mint-700-prim-main);
}

.consent-request {
    margin-top: 1em;
    color: var(--black-900);
}

.consent-request p {
    font-size: 16px;
}

.consent-request .details {
    display: flex;
    flex-direction: row;
}

.consent-request .details img {
    margin-top: 0.5em;
    width: 20px;
}

.consent-request .details p {
    margin-left: 0.5em;
}

.consent-buttons {
    padding-bottom: 2em;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.consent-check {
    padding: 0.5em 0;
}

.title-logo {
    display: inline-block;
}

.title-logo-container {
    padding-bottom: 1em;
}

.title-logo-container > img {
    margin-right: 1em;
}

.consent-buttons .btn-accept {
    background-color: var(--pp-mint-700-prim-main);
    margin-bottom: 1em;
    margin-top: 2em;
    margin-left: 2em;
    border-radius: 25px;
    color: var(--white-100);
    width: 9em;
}

.consent-buttons .btn-decline {
    background-color: var(--grey-250);
    margin-top: 2em;
    margin-bottom: 1em;
    margin-right: 2em;
    border-radius: 25px;
    color: var(--grey-700);
    width: 9em;
}

a.consent-link {
    color: var(--pp-mint-700-prim-main);
    cursor: pointer;
}

.consent-error-message {
    font-size: 15px;
    color: var(--func-red-700-main);
    font-weight: bold;
    margin-top: 1em;
}

#error-message, #errorEmptyFields, #errorPasswordNotMatch, #errorNewPassword {
    display: none;
}

.toggle-password {
    display: inline-flex;
    align-items: flex-end;
    gap: 10px;
    margin: 15px 18px;
    cursor: pointer;
}

.toggle-password-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--pp-mint-700-prim-main);
    cursor: pointer;
}

.toggle-password-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
}


.footer-buttons {
    border: none;
    color: var(--grey-800);
    font-size: 1.4em;
    background: none;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: var(--modal-background); /* Black w/ opacity */
    background-color: var(--black-900); /* Fallback color */

}

/* Modal Content */
.modal-content {
    background-color: var(--grey-150);
    margin: auto;
    padding: 0 20px 20px 20px;
    border: 1px solid var(--grey-600);
    width: 80%;
    height: 80%;
    overflow: auto; /* Enable scroll if needed */
}

/* The Close Button */
.close {
    color: var(--grey-600);
    float: right;
    font-size: 40px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: var(--black-900);
    text-decoration: none;
    cursor: pointer;
}

.sticky {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    background: var(--white-100);
    height: 10%;
}

/* terms specific styles*/
.terms-header {
    margin-left: 0.5em;
}

.terms-inner-ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 5px;
}

.terms-inner-ul li {
    text-indent: 0;
}

.terms-inner-ul-text {
    margin-left: 1.7em;
}

.term-inner-ul-header {
    margin-left: 0.5em;
}

.uppercase_li {
    display: flex;
    flex-direction: row;
}

.uppercase_li_number {
    flex-basis: 30px;
    min-width: 30px;
}

.username {
    margin-top: 5px;
}

.progress {
    height: 6px;
}

.progress-bar-success {
    background-color: var(--grey-500);
}

select option {
    background: var(--grey-500);
    color: var(--black-900);
}

.legal-conditions-container {
    background-color: var(--white-100);
    padding: 25px;
}

.initial-microsoft-login-flow-hint-container {
    display: none;
}

.way-forward-hint-container {
    display: none;
}

.confirmation-container {
    text-align: center;
}

.confirmation-message {
    display: flex;
    padding: 5px 0;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 20px;
}

.confirmation-icon {
    height: 100px;
    width: 100px;
}

.redirect-message {
    display: none;
    font-style: italic;
}

.qr_code {
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: justify;
}

.otp_secret {
    display: flex;
    text-align: justify;
}

.otp-text {
    font-size: 16px;
}

.otp-img {
    height: 200px;
}


@media only screen and (max-height: 690px) {
    .consent-container {
        padding: 2em;
    }
}

/* Media Dynamic*/
@media only screen and (max-height: 770px) and (max-width: 475px) {
    .footer {
        position: relative;
        margin: 0;
    }
}

@media only screen and (max-width: 375px) {
    .footer {
        font-size: .8em;
    }

    .logo-polyid > img {
        width: 160px;
    }
}

@media only screen and (max-width: 475px) {
    .terms-conditions-container {
        display: grid;
    }

    .footer {
        height: 75px;
    }

    .footer-span {
        padding-bottom: 10px;
    }
}

@media (min-width: 341px) and (max-width: 600px) {
    .logo-polyid > img {
        width: 210px;
    }

}

@media only screen and (max-width: 600px) {
    .bodybg {
        background-image: -webkit-linear-gradient(135deg, var(--grey-300) 50%, var(--pp-mint-600-prim) 50%);
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: inline-block;
    }

    .organization-form {
        margin: 2em 0 1em 0;
    }

    .btn-primary {
        width: 50%;
    }

    .modal-content h1 {
        font-size: 1.2em;
    }

    .sticky {
        height: 12%;
    }

    .close {
        font-size: 25px;
    }


    .consent-buttons {
        padding-bottom: 4em;
    }

    .consent-container {
        padding: 1em 2em;
    }
}

.toggle-allow-mypp, .toggle-allow-mypp-dont {
    padding: 12px 0;
    display: flex;
    align-items: start;
    cursor: pointer;
}

.toggle-allow-mypp-text, .allow-mypp-text {
    cursor: pointer;
}

.toggle-allow-mypp {
    padding-bottom: 0;
}

.toggle-allow-mypp-checkbox, .toggle-allow-mypp-checkbox-dont {
    display: none;
    margin: 0 10px 0 0 !important;
    width: 20px;
    height: 20px;
    vertical-align: bottom;
    justify-content: right;
    cursor: pointer;
    accent-color: var(--pp-mint-700-prim-main);
}

.toggle-allow-mypp-text {
    display: none;
    color: var(--black-900);
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 0;
}

.allow-mypp-modal {
    background-color: var(--grey-150);
    margin: auto;
    border: 1px solid var(--grey-400);
    height: auto;
    width: auto;
    max-width: 580px;
    max-height: 500px;
    overflow: visible;
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    box-shadow: 0 2px 8px 0 var(--modal-shadow);
}

.allow-mypp-modal.open {
    display: flex;
    flex-direction: column;
}

.allow-mypp-modal-body {
    padding: 32px;
    background: var(--grey-150);
    flex: 1;
    overflow: auto;
}

body.allow-mypp-open {
    overflow: hidden;
}

.yes-button-allow-mypp-modal-body, .cancel-button-allow-mypp-modal-body {
    border-radius: 25px;
    margin-bottom: 0;
    width: 9.5em;
    border: 1px solid;
    text-align: center;
    font-size: 14px;
    padding: 9px;
    font-weight: 700;
    box-shadow: 0 2px 8px 0 var(--modal-shadow);
}

.yes-button-allow-mypp-modal-body {
    background-color: var(--pp-mint-700-prim-main);
    color: var(--white-100);
    border-color: var(--pp-mint-850-prim);
}

.yes-button-allow-mypp-modal-body:hover {
    background: var(--pp-mint-700-prim-main);
    border-color: var(--pp-mint-850-prim);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.20);
    border-width: 2px;
    padding: 8px 9px;
}

.cancel-button-allow-mypp-modal-body {
    background-color: var(--white-100);
    color: var(--grey-700);
}

.cancel-button-allow-mypp-modal-body:hover {
    background: var(--white-100);
    border-color: var(--grey-700);
    box-shadow: 0 4px 8px var(--button-shadow-hover);
    border-width: 2px;
    padding: 8px 9px;
}

.allow-mypp-modal-header {
    background-color: var(--white-100);
    text-align: left;
    box-shadow: 0 2px 8px 0 var(--modal-shadow);
    padding: 19px 32px;
    color: var(--black-900);
    z-index: 1;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.allow-mypp-modal-header--left, .allow-mypp-modal-header--right {
    height: 21px;
    width: 21px;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 0;
}

.allow-mypp-modal-header--left {
    display: none;
}

.allow-mypp-modal-header--right {
    margin-right: -14px;
    margin-left: 20px;
}

.allow-mypp-modal-header--left-icon, .allow-mypp-modal-header--right-icon {
    width: 100%;
}


.allow-mypp-modal-header--title {
    font-weight: 700;
    line-height: 1.4;
    font-size: 2.4rem;
    margin: 0;
    letter-spacing: -0.02em;
    color: var(--black-900);
    flex-basis: 100%;
}

.allow-mypp-modal-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    box-shadow: 0 0 16px 0 var(--modal-footer-shadow-1), 1px 12px 24px -12px var(--modal-footer-shadow-2);
    padding: 18px 24px;
    border-top: solid 1px var(--grey-400);
    background: var(--white-100);
}

.allow-mypp-modal-footer--actions {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    flex-direction: row-reverse;
    align-items: flex-start;
}

.allow-mypp-modal-body-message {
    padding: 0 !important;
    text-align: left;
    font-weight: 400;
    font-size: 1.6rem;
    overflow-x: visible;
    color: var(--black-900);
    margin-bottom: 20px;
}


/* MODAL MOBILE STYLES */
@media only screen and (max-width: 600px) {
    .allow-mypp-modal-open {
        overflow: hidden;
    }

    .allow-mypp-modal {
        height: 100%;
        width: 100%;
        max-height: unset;
        max-width: unset;
    }

    .allow-mypp-modal-header {
        padding: 12px 20px;
        background: var(--grey-200);
    }

    .allow-mypp-modal-header--left {
        display: block;
    }

    .allow-mypp-modal-header--right {
        display: none;
    }

    .allow-mypp-modal-header--title {
        font-size: 1.6rem;
    }

    .allow-mypp-modal-body {
        padding: 20px;
        height: calc(100vh - 78px - 107px);
        overflow: auto;
    }

    .allow-mypp-modal-body-message {
        font-size: 1.4rem;
        margin-bottom: 28px;
    }

    .allow-mypp-modal-body-message--title {
        font-size: 1.6rem;
        font-weight: 700;
    }

    .toggle-allow-mypp-text {
        font-size: 1.4rem;
    }

    .toggle-allow-mypp, .toggle-allow-mypp-dont {
        padding: 7px 0 7px 20px;
    }

    .toggle-allow-mypp-dont {
        border-bottom: 1px solid var(--grey-400);
    }

    .yes-button-allow-mypp-modal-body, .cancel-button-allow-mypp-modal-body {
        width: 100%;
    }
}

.text-button {
    color: var(--grey-700);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    font-family: 'AkkuratStd', 'Roboto', sans-serif;
    text-decoration: none;
}

.text-button:hover, .text-button:active, .text-button:focus {
    color: var(--grey-800);
    text-decoration: none;
}

.action-buttons {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: end;
}

@media only screen and (min-width: 600px) {
    .text-button {
        padding: 0 16px;
    }

    .action-buttons {
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
    }
}

.input-info {
    color: var(--black-900);
    font-size: 14px;
    line-height: 1.4;
    font-family: 'AkkuratStd', 'Roboto', sans-serif;
    padding: 12px 18px;
}

.submit-buttons {
    display: flex;
    justify-content: end;
    gap: 10px;
}

.login-with-microsoft-button {
    height: 41px;
    padding: 0 12px;
    font-weight: 600;
    color: var(--grey-800);
    background: var(--white-100);
    border: 1px solid var(--grey-600);
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    column-gap: 12px;
    margin-bottom: 1em;
    margin-top: 1em;
}

.separator-line {
    width: 100%;
    height: 1px;
    background: var(--grey-400);
}

.technical-details-toggle-container {
    display: block;
    margin-bottom: 0;
}

.error-toggle {
    padding-bottom: 12px;
}

.error-toggle-input {
    display: none;
}

.error-toggle-label {
    display: flex;
    gap: 10px;
    margin: 0;
    font-size: 14px;
    color: var(--black-900);
    font-weight: 400;
    cursor: pointer;
}

.error-technical-details {
    display: none;
}

.pp-toggle {
    width: 34px;
    height: 20px;
    background-color: var(--grey-400);
    border-radius: 68px;
    display: flex;
    align-items: center;
}

.pp-toggle.active {
    background-color: var(--pp-mint-700-prim-main);
}

.pp-toggle-circle {
    transition: left .2s;
    position: relative;
    width: 17px;
    height: 17px;
    background-color: var(--white-100);
    border-radius: 50%;
    left: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-toggle.active .check-icon {
    display: flex;
}

.check-icon {
    display: none;
    height: 12px;
}

.pp-toggle.active .pp-toggle-circle {
    left: 15px;
}

/** START System message banner styling **/
.conflict-wrapper-container {
    background: transparent;
}

.conflict-container {
    box-shadow: 0 0 4px var(--banner-shadow);
    border-radius: 3px;
    min-height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid var(--func-yellow-700);
    background: var(--func-yellow-100);
}

.detail-container-card {
    color: var(--black-900);
    display: none;
    align-items: center;
    padding: 10px 15px;
    margin: 0 40px;
    line-height: 140%;
    font-size: 14px;
    font-weight: 400;
}

.detail-container {
    width: 100%;
}

.conflict-container-header {
    color: var(--func-yellow-900);
    padding: 0 1.4rem;
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.conflict-container-header .warning-icon {
    height: 26px;
    width: 26px;
}

.conflict-container-header-icon-container {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    font-size: 16px;
    font-weight: 700;
}

.arrow-expand {
    height: 26px;
    width: 26px;
    display: flex;
}

.conflict-container--expanded .arrow-expand {
    transform: rotate(90deg);
}

.conflict-container--expanded .detail-container-card {
    display: flex;
}

/** END System message banner styling **/
