

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900&display=swap');
@import url(/assets/simplePagination-45d41779d0c9b5cf9141cd7729b3001e0a2c7df16e3c4ca5436bddba836efca9.css);
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 *= require_tree .
 *= require_self
 */

* {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
}

/* ----------------------------------------------------------------- */
/* ROOT */
/* ----------------------------------------------------------------- */

:root {

    /* Brand Colors DEV */

    /* Primaty Colors */
    /* Primaty Tints */
    --primary-color-dev-t: #2f3857;
    --primary-color-dev-t-100: #2d334d;
    --primary-color-dev-t-200: #2f3857;
    --primary-color-dev-t-300: #38446c;
    --primary-color-dev-t-400: #445385;
    --primary-color-dev-t-500: #576aa0;
    --primary-color-dev-t-600: #7889b8;
    --primary-color-dev-t-700: #a7b2d2;
    --primary-color-dev-t-800: #d0d5e7;
    --primary-color-dev-t-900: #eaecf4;

    /* Primaty Shades */

    --primary-color-dev-s-100: #670205;
    --primary-color-dev-s-200: #5C0205;
    --primary-color-dev-s-300: #500204;
    --primary-color-dev-s-400: #450104;
    --primary-color-dev-s-500: #390103;
    --primary-color-dev-s-600: #2E0102;
    --primary-color-dev-s-700: #220102;
    --primary-color-dev-s-800: #170001;
    --primary-color-dev-s-900: #0B0001;

    /* Secondary Colors */
    --secondary-color-dev-t: #8DFDF9;

    /* Secondary Tints */
    --secondary-color-dev-t-100: #99FDF9;
    --secondary-color-dev-t-200: #A4FDFA;
    --secondary-color-dev-t-300: #AFFDFB;
    --secondary-color-dev-t-400: #BBFDFB;
    --secondary-color-dev-t-500: #C6FEFC;
    --secondary-color-dev-t-600: #D1FEFC;
    --secondary-color-dev-t-700: #DDFEFD;
    --secondary-color-dev-t-800: #E8FEFE;
    --secondary-color-dev-t-900: #F4FFFE;

    /* Secondary Shades */
    --secondary-color-dev-s-100: #7FE3E0;
    --secondary-color-dev-s-200: #71CAC7;
    --secondary-color-dev-s-300: #63B1AE;
    --secondary-color-dev-s-400: #559795;
    --secondary-color-dev-s-500: #477E7C;
    --secondary-color-dev-s-600: #396563;
    --secondary-color-dev-s-700: #2A4C4B;
    --secondary-color-dev-s-800: #1C3232;
    --secondary-color-dev-s-900: #0E1919;


    /* Neutral Color */
    --black-color-100: #000000;
    --white-color-100: #FFFFFF;

    /* Gray Colors */
    --grey-color-100: #1A1A1A;
    --grey-color-200: #333333;
    --grey-color-300: #4D4D4D;
    --grey-color-400: #666666;
    --grey-color-500: #808080;
    --grey-color-600: #999999;
    --grey-color-700: #B3B3B3;
    --grey-color-800: #CCCCCC;
    --grey-color-900: #E6E6E6;

    /* THIS IS THE LINE */
    /* ---------------------------------- */
    /* Original color -- Brand Colors */
    --primary-color: #2F3857;
    --secondary-color: #CCDBDC;
    --tertiary-color: #34C0CA;

    /* Neutral Color */
    --gray-color-lite: #f1f1f1;
    --gray-color: #999999;
    --secondary-gray-color: #C9C9C9;
    --tertiary-gray-color: #878787;
    --white-color: #FFFFFF;
    --black-color: #000000;

    --absa-color: #77021E;
}


/* -------------------------------------------------- */
/* MAIN */
/* -------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
}

.main-container {
    width: 100%;
}

.page-content {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
}

.container {
    width: 100%;
    margin: 0 auto;
}

button, input[type='submit'] {
    outline: none;
    background-color: none;
    border: none;
    cursor: pointer;
}

.color_primary {
    color: var(--primary-color-dev-t)
}

a {
    text-decoration: none;
}

input[type=number]:read-only,
input[type=text]:read-only {
    background: #dddddd;
}

input[type='text'], input[type='password'], 
input[type='email'], input[type='number'],
select {
    line-height: 2rem;
    height: 2rem;
    font-weight: normal;
}

input[type='text'], input[type='password'], 
input[type='email'], input[type='number'],
input[type='date'], select {
    font-size: 1rem;
    padding: 0 5px;
    border-radius: 3px;
    border: 1px solid var(--secondary-gray-color);
}


/* -------------------------------------------------- */
/* LOGIN */
/* -------------------------------------------------- */
/* LOGIN BOX */

.login-box {
    height: 100vh;
    width: 100%;
}

.login-box__content {
    display: flex;
    height: 100%;
}

/* LOGIN BOX ON THE LEFT */

.login-box__content--left {
    background-color: #2F3857;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    padding: 0 1em;
}

.left__content--line {
    margin-top: .5em ;
    margin-bottom: 1.2em;
    width: 190px;
    height: 3px;
    background-color: #34C0CA;
}

/* LOGIN BOX ON THE RIGHT */

.login-box__content--right {
    background-color: white;    
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2em;
}

.right__content {
    width: 50%;
    color: #2F3857;
}

.right__content--img {
    width: 100px;
    max-width: 100%;
    margin-bottom: 3em;
}

.right__content--title {
    text-transform: uppercase;
}

.right__content--desc {
    color: #666666;
    font-size: 14px;
}

.right__content--form {
    padding: 0 .5em;
    margin-bottom: 2em;
}

.form__input {
    padding: .5em 0;
    margin: .5em 0;   
}

.form__input--label {
    margin-bottom: .4em;
}

.form-control {
    width: 100%;
    padding: .5em;
    font-size: 1rem;
    border-radius: .3em;
    border: 1px solid #999999;
}

.form__input--label {
    display: block;
}


/* -------------------------------------------------- */
/* BUTTON */
/* -------------------------------------------------- */

/* BTN */

.btn {
    padding: 0.75em 1.5em;
    border-radius: 1.125em;
    font-size: 1rem;
    color: var(--primary-color);
    letter-spacing: .5px;
    transition: .2s ease;
}

.btn-sm {
    padding: 0.6em 1.3em;
    border-radius: .8em;
    font-size: .9rem;
    color: var(--primary-color);
    letter-spacing: .5px;
    transition: .2s ease;
}

.btn:active {
    transform: translateY(1.4px);
}

.btn:hover {
    transform: scale(1.0355);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: #03091e;
}

.btn-secondary {
    background-color: var(--secondary-gray-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--grey-color-600)
}

.btn-danger {
    background-color: red;
    color: var(--white-color) !important;
}

.btn-danger:hover {
    background-color: #c70000;
}

/* --------------------------------------------------- */
/* --------------------------------------------------- */
/* --------------------------------------------------- */



/* ------------------------------------------------ */
/* LEFT WRAPPER CONTAINER */
/* ----------------------------------------------- */


.field-value {
    display: block;
}

/* -------------------------- */
/* -------------------------- */
/* -------------------------- */

.container {
    max-width: 92% !important;
    width: 90% !important;
    margin: 0 auto !important;
}

.table-icon {
    color: #999999;
}
.table-icon:hover {
    color: #2F3857;
}

.new_alert {
    color: red;
}

.alert {
    position: relative;
    color: red;
    padding: 0 !important; 
    margin-bottom: 0 !important;
}

.page-content {
    margin-top: 2em;
}

.content__top-wrapper {
    padding: 1em 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content__top-wrapper--title {
    font-weight: bold;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.content__top-wrapper--title-breadcrumbs {
    color: var(--tertiary-gray-color);
}


/* ---------------------------------------- */
/* ---------------------------------------- */
/* ---------------------------------------- */
.filter-modal {
    display: none;
    transition: 0.3s ease-in-out;
    padding: 1em;
    border-right: .5px solid var(--gray-color);
}
.filter-modal.active {
    display: block;
}


/* ---------------------------------------- */
/* ---------------------------------------- */
/* ---------------------------------------- */
.filter-modal__field-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.filter-modal__submit-wrapper,
.filter-modal__close-wrapper {
    display: flex;
    justify-content: end;
    align-items: center;
}

.filter-modal__submit-wrapper {
    /* padding: 1em 0; */
    display: flex;
  margin-top: 20px;
}

.field {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.form-label {
    display: block;
}

.form-control {
    width: 80%;
}

.filter-modal__close-btn {
    font-size: 2em;
    cursor: pointer;
    color: var(--gray-color);
    padding: .13em .4em; 
    border-radius: 50%; 
    transition: .1s ease-in-out;
}

.filter-modal__close-btn:hover {
    background: rgba(0, 0, 0, .05);
}


/* ---------------------------------------- */

.image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* ---------------------------------------- */
/* ---------------------------------------- */
.table-wrapper {
    position: relative;
    margin: 1em 0;
}

.table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    background-color: var(--white-color);
}

.table__thead {
    color: var(--white-color);
    background-color: var(--primary-color);
}

.table__thead th {
    padding: .3em;
}

.table__tbody td {
    padding: .7em .3em;
    border-bottom: .5px solid var(--secondary-gray-color);
}

.table__tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.table__pagination {
    margin: 1em 0;
    padding: 1.5em 0.5em;
    border-radius: 1em;
    background-color: var(--gray-color-lite);
    display: flex;
    align-items: center;
    justify-content: end;
}

.paginaiton__link {
    margin: 0 .8em;
    padding: .3em .5em;
    border-radius: .5em;
    color: var(--primary-color);
}

.paginaiton__link:hover,
.paginaiton__link.active {
    color: var(--white-color);
    background: var(--primary-color);
}

.tertiaty-btn {
    color: var(--primary-color);
}

.tertiaty-btn:hover {
    text-decoration: underline;
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */

.info {
   color: var(--primary-color);
}

.info__title-wrapper {
    padding: .3em 0;
    margin: .3em 0;
}

.info__title {
    font-size: 1.2rem;
}

.info__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.info__content-wrapper-1 {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.info__content--block {
    width: 45%;
    margin: .5em 0;
}

.info__content-wrapper-1 .info__content--block {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.info__content-wrapper-1 .info__content--block .info__table .td-input {
    padding: 0 1em;
}

.info__table {
    width: 100%;
    text-align: left;
    table-layout: fixed;
}

.info__table tr td {
    padding: .5em 0;
}

.info__btns {
    padding: .5em 0;
    margin-top: 1em;
}

/* ----------------------- */
/* ----------------------- */
/*  */

.navigation-wrapper {
    position: relative;
}

.navigation__right-wrapper {
    position: relative;
}

.navigation__right-wrapper:hover > .modal-acc {
    display: block;
}

.modal-acc {
    display: none;
    position: absolute;
    width: 150px;
    height: 50px;
    top: 45px;
    right: 0;
    z-index: 10;
    background-color: white;
    color: var(--primary-color);
    padding: .3em 0;
    transition: .1s ease-in-out;
}

.modal-acc ul {
    list-style: none;
    margin: 0;
}

.modal-acc ul li {
    display: block;
}

.modal-acc ul li a {
    display: block;
    background-color: #e8e8e8;
    color: var(--primary-color);
    padding: 1em;
}

.modal-acc ul li a:hover {
    background-color: #dcdcdc;
    font-weight: bold;
    color: red;
}

.modal-acc:hover {
    display: block;
}













.btn-link-container {
    margin: .3em 0 0 0;
    position: absolute;
    transform: scaleY(0);
    transform-origin: top;
    transition: .2s;
}

.btn-link-container.active {
    transform: scaleY(1);
}

.btn-link {
    display: block;
    margin-top: .3em;
}


.reset-btn {
    color: red;
    margin: 0 .3em;
}

.select-value {
    text-transform: capitalize;
}


.selected-field {
    width: 30%;
    padding: 0.3em;
}


.success {
    padding: 1em 0;
    color: green;
}



.table-link__hyperlink {
    color: black;

}

.table-link__hyperlink:hover {
    color: blue;
    text-decoration: underline;
}




.split__field {
    display: flex;
    width: 100%;
    margin-bottom: 3em;
}


.right__field {
    padding: 0 2em;
    width: 50%;
}

.left__field {
    width: 50%;
}

.left__field embed {
    width: 100%;
    height: 800px;
}

.select-wrapper {
    position: relative;
}

.select-box {
    display: flex;
    width: 350px;
    position: absolute;
    margin-top: .6em;
}

.select-box .select-box__container {
    background-color: whitesmoke;
    width: 100%;
    transition: all .3s;
    border-radius: 1em;
    overflow-y: scroll;
    max-height: 0;
    opacity: 0;
}

.select-box .select-box__container.active {
    max-height: 250px;
    opacity: 1;
}

.selected-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: whitesmoke;
}

.select-box .option,
.selected-btn {
    padding: .5em 1em;
    cursor: pointer;
}

.select-box .option:hover {
    background-color: #5f6479;
}

.select-box label {
    cursor: pointer;
}

.select-box .option .radio-option {
    display: none;
}

.supplier-close-btn {
    padding: .3em .5em;
    border-radius: 50%;
    display: none;
}

.supplier-close-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.look-up--btn {
    padding: .5em;
    background-color: var(--gray-color-lite);
    color: var(--primary-color);
}


.table-button {
    background: none;
    color: white;
    font-weight: 700;
}

.table-button:hover {
    color: orange;
}

.filter-tables {
    display: flex;
    align-items: center;
    width: 100%;
}

.filter-tables__item {
    flex: 1 1 0px;
    background-color: var(--secondary-gray-color);
    color: var(--primary-color);
    padding: 1em 0;
    text-align: center;
    border-left: 1px solid var(--secondary-color);
    font-weight: 600;
}
.filter-tables__item:hover,
.filter-tables__item.active {
    background: var(--primary-color);
    color: var(--gray-color-lite);
}

.accordion__label,
.accordion__label-a {
    position: relative;
    display: block;
    font-weight: 900;
    color: var(--primary-color);
    padding: .5em 0;
    width: 100%;
    transition: .1s ease;
}

.accordion__label::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 50%; 
    transform: translateY(-50%);
    right: 20px;
    width: 12px;
    background-size: contain;
}

.accordion__label:hover {
    background: rgba(0, 0, 0, 0.1);
}

.accordion-content {
    display: none;
}

.accordion__input {
    display: none;
}

.accordion__input:checked ~ .accordion-content {
    display: block;
}

.accordion__input:checked ~ .accordion__label::after {
    transform: translateY(-50%) rotate(.5turn);
}

.main-notification {
     width: 250px;
     position: absolute;
     transform: translate(-50%, -50%);
     top: 12%;
     left: 50%;
}

.notification__box {
    width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 7px;
    display: grid;
    grid-template-columns: 1.3fr 6fr .5fr;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-left: 10px solid rgb(255, 145, 0);

}

.not__box1,.not__box2 {
    align-self: center;
}

.not__box1 i {
    font-size: 20px;
}

.not__box2--bold {
    font-size: 16px;
    color: #101020;
    font-weight: 600;
}

.not__box2--light {
    font-size: 13px;
    color: #101020;
    font-weight: 400;
}

.notification__box button {
    align-self: flex-start;
    background: transparent;
    border: none;
    font-size: 25px;
    line-height: 0;
    cursor: pointer;
}

.pagination__container {
    padding: 2em 1em;
    margin: 1em 0;
    background: #ededed;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pagination__container p {
    color: var(--primary-color);
}

.hover-span {
    position: relative;
}

.span-details {
    position: absolute;
    top: -20px;
    left: 20px;
    transform: translateY(100%) scale(0);
    transition: transform 0.1s ease-in;
    transform-origin: left;
    display: inline;
    background: white;
    z-index: 20;
    min-width: 100%;
    padding: 1rem;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.hover-span:hover span {
    transform: translateY(70%) scale(1);
}


.notfication-wrapper {
    z-index: 200;
    width: 370px;
    padding: 20px 30px;
    position: absolute;
    top: 30px;
    right: 200px;
    overflow: hidden;
    background-color: white;
}

.notfication-content {
    /* position: relative; */
    width: 380px;
    height: 80px;
    padding: 20px;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-left: 8px solid transparent;
    border-radius: 7px; 
    display: grid;
    grid-template-columns: 1.2fr 6fr .5fr;
    transform: translate(450px);
}


.notification-container-1,
.notification-container-2 {
    align-self: center;
}

.notification-container-1 i {
    font-size: 40px;
}

.notification-container-2 p:first-child {
    color: #101020;
    font-weight: 600;
    font-size: 16px;
}

.notification-container-2 p:last-child {
    color: #656565;
    font-weight: 400;
    font-size: 12px; 
}

.notfication-content button {
    align-self: flex-start;
    background: transparent;
    font-size: 25px;
    line-height: 0;
    color: #656565;
    cursor: pointer;
}

.not-color-success,
.not-color-notice {
    border-left: 8px solid seagreen;
}

.not-color-success .notification-container-1 i,
.not-color-notice .notification-container-1 i
 {
    color: seagreen;
}

.not-color-error,
.not-color-alert,
.not-color-danger  {
border-left: 8px solid #c40000;
}

.not-color-error .notification-container-1 i,
.not-color-alert .notification-container-1 i,
.not-color-danger .notification-container-1 i {
    color: #c40000;
}

.certHistory button {
    background: transparent !important;
    background-color: transparent !important;
}


.history-icon {
    background: transparent !important;
    font-size: 1.2rem;
    color: #999999;
}

.history-icon:hover{
    color: #2F3857;
}

.Historylog__modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    height: 100%;
    /* overflow: auto; */
    background: rgba(0, 0, 0, 0.4);
    animation-name: modalopen ;
    animation-duration: 1s;
}

.Historylog-modal--content {
    background: white;
    border-radius: 1em;
    margin: 8% auto;
    padding: 20px;
    width: 70%;
    height: 60vh;
    overflow: auto;
    box-sizing: 0 5px 8px 0 rgba(0, 0, 0, .2), 0 7px 20px 0 rgba(0, 0, 0, .2);
}

.log-closebtn  {
    color: #ccc;
    float: right;
    font-size: 30px;
} 

.log-closebtn:hover,   .log-closebtn:focus {
    color: #2F3857;
    text-decoration: none;
    cursor: pointer;
}

.Historylog-modal--header, .potentialDuplicates-modal--header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 0;
}

.potentialDuplicates-modal--header {
    margin: 3em 0;
}

.potentialDuplicates-modal--header__h1 {
    padding: 2em 0;
    font-size: 6rem;
}

@keyframes modalopen {
    from{opacity: 0;}
    to{opacity: 0;}
}

.table__status {
    text-align: left;
    padding: .25em .5em;
    border-radius: .5em;
    font-weight: 600;
    margin: 0 .5em;
    font-size: 12px;
    letter-spacing: .5px;
}

.status_buyer_requested,
.status_buyer_Requested,
.status_Buyer_Requested,
.status_Invalid_Certificate,
.status_invalid_Certificate,
.status_invalid_certificate,
.status_Removed_From_Message_Queue, 
.status_removed_From_Message_Queue  {
    border: 1px solid var(--grey-color-200);
    color: var(--grey-color-200);
    background-color: var(--grey-color-900);
}

.status_form_recognizer,
.status_form_Recognizer,
.status_Form_Recognizer {
    border: 1px solid #001eff;
    color: #001eff;
    background-color: #83d0ecb3;
}

.status_submitted,
.status_Submitted {
    border: 1px solid #001eff;
    color: #001eff;
    background-color: #83d0ecb3;
}

.status_captured,
.status_Captured {
    border: 1px solid #ffa600;
    color: #ff8400;
    background-color: #f3deb5b6;
}

.status_verification_failed,
.status_Verification_failed,
.status_Verification_Failed,
.status_Duplicate_Certificate,
.status_duplicate_Certificate {
    border: 1px solid #ff0000;
    color: #ff0000;
    background-color: #f3c9c9b6;
}

.status_verified,
.status_Verified {
    border: 1px solid #005c08;
    color: #005c08;
    background-color: #c6f7cacd; 
}


button:disabled,
button[disabled],
input:disabled{
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666 !important;
}

.supplier-modal {
    display: none;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
}

.supplierModal {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.supplierModal__content {
    width: 80%;
    height: 80vh;
    border-radius: 2em;
    background: #FFFFFF;
    padding: 2em 0;
}

.modal-container {
    width: 90%;
    height: 100%;
    overflow: auto;
    margin: 0 auto;
}

.headerModal {
    margin-bottom: 2em;
}

.supplierModal__content--header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerModal__title {
    color: #2F3857;
}

.headerModal__body {
    font-size: 12px;
    color: #8f8f8f;
}

.supplierModal__content--header .btn {
    padding: .5em 1em;
}

.supplierModal__content--header .btn-primary {
    font-weight: 600;
    background: rgb(47, 56, 87);
    color: #FFFFFF;
}

.supplierModal__content--header .btn-primary:hover {
    background: rgba(0, 6, 29, 0.9);
}

.viewDoccie {
    width: 100%;
    height: 100vh;
    display: block;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    animation-name: modalopen ;
    animation-duration: 1s;
}

.viewDoccie-modal {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.viewDoccie-modal--content {
    margin: 0 auto;
    background: white;
    border-radius: 1em;
    margin: 20% auto;
    padding: 20px;
    width: 70%;
    height: 80vh;
    overflow: auto;
}

.viewDoccie-modal--header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 90%;
}

.viewDoccie-modal--certificate {
    display: flex;
    justify-content: center;
    
}

.view-doccie-closebtn {
    color: #a7a7a7;
    float: right;
    font-size: 30px;
}

.view-doccie-closebtn:hover,
.view-doccie-closebtn:focus {
    color: #2F3857;
    text-decoration: none;
    cursor: pointer;
}

.table__thead-edit {
    border-bottom: 4px solid var(--primary-color-dev-t-200);
    color: var(--grey-color-200);
    text-transform: uppercase;
    width: 100%;
    background-color: rgba(0, 0, 0, .09);
}

.table__thead-edit tr th {
    padding: 1em 0;
}

.table-button-edit {
    background: none;
    color: var(--grey-color-200);
    font-weight: 700;
    text-transform: uppercase;
}

.table-button-edit:hover {
    color: orange;
}


.regnum-search {
    position: relative;
}

.multiple-hits-modal {
    list-style: none;
    position: absolute;
    padding: 1em;
    background: var(--white-color-100);
    width: 300px;
    border-radius: .5em;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.multiple-hits-modal-link {
    border-bottom: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 0 1em;
}

.multiple-hits-modal-link:hover {
    background: rgba(0, 0, 0, .1);
}

.trValidity{
    position: relative;
}

.validity-modal {
    position: absolute;
    text-align: center;
    right: -80px;
    top: -30px;
    width: 150px;
    border-radius: 1em;
    padding: 2em 1em;
    border: 2px solid red;
    background-color: #ffd4d6ba;
    z-index: 200;
}

.validity-modal ul li{
    text-align: center;
    color: red;
    font-size: .9rem;
}


.filter-loader {
    position: absolute;
    left: 0;
    top: 22px;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(254, 255, 255, 0.75);
    z-index: 100;   
}

.filter-loader.active {
    display: block;
}

.add-filter {
    color: var(--grey-color-300);
    display: flex;
    padding: .5em 1em;
    font-size: 2rem;
    background-color: none !important;
    
}

.add-filter:hover {
    background: rgba(0, 0, 0, 0.1);
}

.add-filter span, i {
    font-weight: 700;
}

.add-filter span {
    margin: 0 1em;
}

.filter__button-wrapper {
    position: relative;
}

.inner__filter-modal {
    display: none;
    color: var(--primary-color-dev-t);
    width: 300px;
    padding: 1em;
    margin: .5em 0;
    border-radius: .5em;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}

.inner__filter-modal.active {
    display: block;
}

.inner__filter-input-group {
    padding: 1em .5em;
    margin: 1em 0;
}

.inner__filter-input-group:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

.inner__filter-input-group label {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 .5em;
}

.inner__filter-input-group-submit {
    display: flex;
    align-items: center;
    justify-content: end;
}

.inner__filter-input-group-submit input,
.inner__filter-input-group-submit button {
    margin: 0 .5em;
} 


.env_text-wrapper {
    position: fixed;
    right: 20px;
    bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 40px;
    background: var(--primary-color-dev-s-100);
    color: var(--white-color-100)
}

.env_text {
    font-size: 2.5rem;
}

.comment-box {
    width: 100%;
    outline: none;
    padding: .3em;
    font-family: sans-serif;
    font-size: 1.2rem;
}

.comment-box:focus {
    border: 2px solid var(--primary-color-dev-t-300);
}

.scrollable-form {
    overflow: scroll;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    height: 800px;
    padding: 0 1em;
}

.form-bee-field {
    position: relative;
}

.scroll-bench {
    overflow: scroll;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    height: 800px;
}

.content {
    position: relative;
}

.beeSector__select {
    width: 170px;
}

.supplier-table-cell {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.inner-spinner {
    margin: 5em 0;
    width: 10rem;
    height: 10rem;
    border: 1rem solid #DDD;
    border-radius: 50%;
    display: block;
    border-top-color: var(--primary-color-dev-s-100);
    animation: spin 1.7s infinite linear;
}

@keyframes spin {
    to {
        transform: rotate(1turn);
    }
}

.date-picker-btn {
    font-size: 1.2em;
    font-weight: 400;
    padding: .2em .7em;
    color: var(--grey-color-600);
    background-color: none;
}

.date-picker-btn:hover {
    color: var(--grey-color-400);
    background-color: var(--grey-color-800);
}

.links-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.links-wrapper__content {
    border-radius: 2em;
    color: var(--black-color-100);
    display: flex;
    align-items: center;
    width: 40%;
    margin: 2em ;
    padding: 2em;
    transition: .2s ease;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}

.links-wrapper__content:hover {
    color: var(--primary-color-dev-t);
    transform: scale(1.0005);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.links-wrapper__content:hover > i {
    color: var(--primary-color-dev-t);
}

.links-wrapper__content i {
    font-size: 2rem;
}

.links-wrapper__content h2 {
    margin: 0 2em;
}

.links-wrapper p {
    font-size: 2rem;
}

.comment_supplier-box {
    margin-top: 1em;
    width: 50%;
}

.file-input-att {
    outline: none;
    border: 1px solid gray;
}

::-webkit-file-upload-button {
    color: #FFFFFF;
    background-color: #2F3857;
    padding: .5em;
    border-radius: .5em;
}

.supplier-history-label {
    display: inline-block;
    text-transform: uppercase;
    color: #FFF ;
    text-align: center;
    background-color: #2f3857;
    padding: .75em 1.5em;
    cursor: pointer;
    user-select: none;
    border-radius: 4px;
}

.supplier-history-label i {
    margin-right: .7em;
}

.supplier-attachment-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



/* .page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    margin-top: 2em;
} */
  
.file-container {
    width: 50%;
}
  
.fields {
    width: 30%;
}
  
.field-control {
    padding: 1em;
    width: 100%;
}
  
.field-name {
    width: 30%;
    display: block;
}
  
.field-value {
    padding: 0.3em 0;
    width: 100%;
}
  
.field-btn {
    margin: 1em 0;
}
  
.radio__button-group {
    padding: 0 3em;
}

/* ------------------------------------ */
/* ------------------------------------ */
  
  
.information-page {
    background-color: red;
}
  
  
.fields-container {
    display: flex;
}
  
/* ------------------------------------ */
  
  
/*----*/
.file-container {
    width: 828px;
    height: 1168px;
    position: relative;
}
  
#navi, #navi2
  #infoi {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
  
#infoi {
    z-index: 10;
    width: 100%;
    height: 100%;
}
  
#infoi img {
    width: 100%;
    height: 100%;
}  
  
#navi, #navi2 {
    z-index: 20;
}
  
.Company .tooltipCompany {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}
  
/* Show the tooltip text when you mouse over the tooltip container */
.Company:hover .tooltipCompany {
    visibility: visible;
}



.loader__full-width-height {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 150px;
    height: 150px;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader .loader__circle {
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 2;
    stroke: var(--primary-color-dev-t);
    stroke-linecap: round;
    transform: translate(5px, 5px );
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    animation: animate 4s linear infinite;
}

@keyframes animate {
    0%, 100% {
        stroke-dashoffset: 440;
    }
    50%{
        stroke-dashoffset: 0;
    }
    50.1%{
        stroke-dashoffset: 880;
    }
}

.loader__circle--image {
    width: 70px;
    position: absolute; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

/* NAVIGAITION WRAPPER AND CONTAINER */
/* -------------------------------------------------- */
/* NAVIGAITION */
/* -------------------------------------------------- */

.navigation {
    height: 7vh;
    background-color: var(--white-color-100);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.navigation-wrapper {
    width: 98%;
    margin: 0 auto;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.navigation__logo {
    width: 60px;
}

.navigation__logo--image {
    max-width: 100%;
}

/* NAVIGATION LINKS */
.navigation__nav-links {
    margin: 0 3em;
}

.navigation__nav-links--navlink {
    padding: 0.75em 1.125em;
    border-radius: .75em;
    font-size: .875rem;
    color: var(--grey-color-100);
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .1s ease-in-out;
    border: .5px solid transparent;
}

.navigation__nav-links--navlink.active{
    background-color: var(--primary-color-dev-t-200);
    color: var(--white-color);
    text-decoration: none;
}

.navigation__nav-links--navlink:hover {
    background-color: var(--primary-color-dev-t-900);
    color: var(--primary-color-dev-t-100);
    border: .5px solid var(--primary-color-dev-t-100);
    text-decoration: none;
}

.navigation__account-name {
    font-weight: bold;
    margin-top: .4em;
}

.navigation__icon {
    margin: 0 .5em;
}

.navigation__left-wrapper {
    display: flex;
    align-items: center;
}

.navigation__right-wrapper {
    display: flex;
    height: 100%;
    padding: 0 2em;
    background-color: var(--white-color-100);
    align-items: center;
    color: var(--grey-color-100);
}

.navigation__right-wrapper:hover {
    background: rgba(var(--white-color-100), .9);
}


/* ---------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------- */

.alert-show-box {
    min-width: 400px;
    position: absolute;
    right: 20px;
    top: 30px;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 500; 
}

.alert-box__message {
    padding-right: 1em;
}

.alert-show-box .alert-icon {
    font-size: 1.3rem;
    padding: 0 1em;
}

.alert-box__close-button {
    cursor: pointer;
}

.alert-box__close-button {
    cursor: pointer;
    color: white;
    height: 100%;
    padding: 0 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.alert-danger {
    border-left: 4px solid #FF1212;
    background: #FFB0B0;
}

.alert-notice {
    border-left: 4px solid orange;
    background: #FFD382;
}

.alert-icon-notice {
    color: #b37400;
}

.alert-icon-danger {
    color: #FF3232;
}

.alert-close-danger {
    background: #FF3232;
}

.alert-close-notice {
    background: #FFAD14;
}


.loader__full-width-height {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 150px;
    height: 150px;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader .loader__circle {
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 2;
    stroke: var(--primary-color-dev-t);
    stroke-linecap: round;
    transform: translate(5px, 5px );
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    animation: animate 4s linear infinite;
}

@keyframes animate {
    0%, 100% {
        stroke-dashoffset: 440;
    }
    50%{
        stroke-dashoffset: 0;
    }
    50.1%{
        stroke-dashoffset: 880;
    }
}

.loader__circle--image {
    width: 70px;
    position: absolute; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.no_certificate_text {
    /* background-color: red;display:flex; align-items: center; justify-content: center; height: 80vh;font-size: 30px;font-weight: 700;color: #AEAEAE; */
}

#attachment-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#attachment-modal .modal-content {
    background: #fff;
    padding: 20px;
    position: relative;
    width: 80%;
    height: 80%;
}

#attachment-modal .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: #fff;
    border: none;
    padding: 10px;
}

.panel-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4em;
    border-radius: .5em;
    width: 5%;
    padding: .5em .4em;
    min-width: 40px;
}

.panel-back-btn-scp {
    border: 1px solid #2F3857;
    color: #2F3857;
}

.panel-back-btn-absa {
    border: 1px solid var(--absa-color);
    color: var(--absa-color);
}

.panel-back-btn:hover {
    background-color: rgba(47, 56, 87, .07);
}

.panel-back-btn i {
    font-size: 1.1rem;
}

.panel-back-btn span {
    margin: 0 .6em;
}

.button, .button:focus {
    padding: 0.5em .9em;
    border-radius: 1.125em;
    font-size: 1rem;
    color: var(--primary-color);
    letter-spacing: .5px;
    font-size: .8rem;
    transition: .2s ease;
}

.button-blocked {
    background-color: rgb(255, 114, 114);
    color: var(--white-color);
}

.button-blocked:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.button-unblocked {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.button-unblocked:hover {
    background-color: rgb(255, 114, 114);
    color: var(--white-color);
}

.button-delete-certicate {
    background-color: rgb(255, 114, 114);
    color: var(--white-color);
}

.button-delete-certicate:hover {
    background-color: rgb(241, 47, 47);
}

.button-primary-certicate {
    background-color: var(--primary-color-dev-t) !important;
    color: var(--white-color) !important;
}

.btn-text {
    color: var(--white-color) !important;
    font-size: .8rem;
}

.button-primary-loading {
    background-color: var(--grey-color-600);
    color: var(--grey-color-300);
    border: var(--grey-color-300);

}

.button-open {
    background-color: #3a456b;
    color: var(--white-color);
}

.button-open:hover {
    background-color: #2f3857;
}

.button.button-loading {
    background-color: var(--grey-color-900);
    color: var(--grey-color-300);
    border: 1px solid var(--grey-color-300);
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 600;
    transform: translate(-50%, -50%);
    width: 300px;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 8px;
    text-align: center;
}
.overlay {
    z-index: 600;
}

.modal a {
    display: block;
    margin: 10px 0;
    text-decoration: none;
    color: #383838;
    padding: .6em 0;
}

.modal a:hover {
    background-color: rgba(0, 0, 0, .1);
    color: var(--primary-color);
    font-weight: 600;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.close-btn {
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
    padding: 5px 10px;
    background: red;
    color: white;
    border: none;
    border-radius: 5px;
}

.sm-button {
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
    padding: 5px 10px;
    color: white;
    border: none;
    border-radius: 5px; 
}

.modal-supp {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-supp-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 8px;
    width: 800px;
    height: 80vh;
    overflow: hidden;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    margin: 10px;
    cursor: pointer;
}

iframe {
    width: 100%;
    height: calc(100% - 40px); /* adjust for close button */
    border: none;
}

.tag-wrapper {
    margin-bottom: 1em;
}

.tag-wl {
    padding: .5em 1em;
    color: var(--primary-color);
    margin: 0 .5em;
    border-radius: .7em;
}

.tag-wl.active, .tag-wl:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.tag {
    color: var(--primary-color);
    text-decoration: underline;
}

.absa-color {
    color: var(--absa-color) !important;
}

.absa-color-bg {
    background-color: var(--absa-color);
    color: var(--white-color);
}
/* display:none; position:fixed; top:0; left:0; width:100%; height:100%; background-color:rgba(0,0,0,0.5); */
