/* ======== fonts ======== */

@font-face {
    font-family: averta;
    src: url(../fonts/AvertaStd-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: averta;
    src: url(../fonts/AvertaStd-Semibold.ttf);
    font-weight: 600;
}

/* ======== root ======== */
:root {
    --dark: #1a1a1a;
    --primary: #344D99;
    --gray-100: #8b8d98;
    --white: #fff;
    --gray-200: #E7E7E7;
    --gray-300: #9CA3AF;
    --gray-400: #F3F4F6;
    --gray-500: #6D6D6D;
    --gray-600: #454545;
    --gray-700: #f6f6f6;
    --success: #4bae4f;
    --warning: #FB9E12;
    --danger: #E11C1C;
    --info: #3E63DD;
}

/* ======== common ======== */
*,
html {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

body {
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: averta;
    font-weight: 400;
    color: var(--dark);
    font-size: 12px;
    background: #F6FAFE;
    padding: 40px 120px;
}

.form-heading {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-subhead {
    font-size: 12px;
    color: var(--gray-100);
}

#login-form {
    margin-top: 40px;
}

#login-form .form {
    border-radius: 20px;
    padding: 50px;
    -webkit-box-shadow: 0px 56px 62px -20px rgba(14, 51, 146, 0.12);
    -moz-box-shadow: 0px 56px 62px -20px rgba(14, 51, 146, 0.12);
    box-shadow: 0px 56px 62px -20px rgba(14, 51, 146, 0.12);
}

.form,
.table-wrap {
    background: var(--white);
    border-radius: 30px;
    padding: 35px;
    transition: all .3s;
}

.form:hover,
.table-wrap:hover {
    -webkit-box-shadow: 0px 56px 62px -20px rgba(14, 51, 146, 0.12);
    -moz-box-shadow: 0px 56px 62px -20px rgba(14, 51, 146, 0.12);
    box-shadow: 0px 56px 62px -20px rgba(14, 51, 146, 0.12);
}

.form-label {
    font-size: 12px;
    margin-bottom: 8px;
}

.form-select,
.form-control,
.input-group {
    border: 1px solid var(--gray-200);
    padding: 12px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--gray-500);
}

.form-control:focus {
    box-shadow: none;
    outline: none;
}

.input-group .form-control {
    padding: 0;
    border: none;
}

.input-group-text {
    padding: 0;
    border: none;
    background-color: none;
}

.btn {
    padding: 12px;
    border-radius: 4px;
    font-size: 12px;
}

.seperator {
    height: 1px;
    background-color: var(--gray-200);
    margin-block: 24px;
}

.table th {
    padding: 12px 0px 12px 30px;
    font-size: 12px;
    background-color: var(--gray-700);
    color: var(--gray-600);
    vertical-align: middle;
}

.table .btn {
    padding: 6px 12px;
    border-radius: 18px;
}
.table .view_btn.btn:hover, .table .edit_btn.btn:hover{
    color: white !important ;
}

.table td {
    padding: 16px 0px 16px 30px;
    font-size: 14px;
    color: var(--gray-500);
    vertical-align: middle;
}

.table td {
    color: var(--gray-500);
}
.table td.cus_size{    
    width: 50% ;
}
.cus_size{
    width: 50% ;
}
.table.audit td.cus{    
    text-align: center ;
}

.login-page-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 100vh;
    display: inline-flex ;
    width: 100% ;
}

.form-wrap {
    padding: 140px;
}

.form-container {
    background-color: var(--white);
    padding: 30px;
}

.header {
    padding: 25px 30px;
    border-radius: 120px;
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.nav-item-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 30px;
}

.nav-item {
    position: relative;
    font-size: 16px;
    color: var(--gray-500);
    font-weight: 600;
    transition: all .3s ease;
}

.nav-item:hover {
    color: var(--primary);
}

.nav-item::after {
    position: absolute;
    bottom: -3px;
    border-radius: 5px;
    width: 0%;
    height: 2px;
    background: var(--primary);
    content: '';
    left: 30%;
    transition: all .3s ease
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 30%;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary);
}

.table-header {
    padding: 25px 30px;
}

.table-section-wrap {
    margin-block: 40px;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
}

.btn-rounded {
    padding: 6px 12px;
    border-radius: 18px;
}

.alert {
    margin-block: 10px;
    border: none;
    padding-inline: 35px;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
}

.alert-light-success {
    background-color: rgba(75, 174, 79, 10%);
}

.alert-light-success::after {
    position: absolute;
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    width: 22px;
    height: 22px;
    left: 10px;
    top: 13px;
    background-image: url('../icons/thumbsUp.png');
}

.alert-light-warning {
    background-color: rgba(251, 158, 18, 10%);
}

.custom_btn{
    display: none ;
}

.alert-light-warning::after {
    position: absolute;
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    width: 22px;
    height: 22px;
    left: 10px;
    top: 13px;
    background-image: url('../icons/cool.png');
}

.alert-light-danger {
    background-color: rgba(225, 28, 28, 10%);
}

.alert-light-danger::after {
    position: absolute;
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    width: 22px;
    height: 22px;
    left: 10px;
    top: 13px;
    background-image: url('../icons/blocked.png');
}

.alert-light-info {
    background-color: rgba(62, 99, 221, 10%);
}

.alert-light-info::after {
    position: absolute;
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    width: 22px;
    height: 22px;
    left: 10px;
    top: 13px;
    background-image: url('../icons/ok.png');
}

.copy-btn:hover svg path {
    fill: white;
}

/* ================ Audit report ================== */
#heading {
    padding-bottom: 40px;
}

.heading {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 600;
}

.sub-head {
    font-size: 16px;
    color: var(--gray-100);
}

.btn {
    padding: 14px 22px;
    border-radius: 10px;
}

.expand-btn {
    text-decoration: underline;
}

#report-status {
    padding-block: 40px;
}

.status-banner {
    padding: 60px 35px;
    border-radius: 20px;
}

.status-title {
    font-size: 36px;
    margin-bottom: 8px;
    font-weight: 600;
    margin-top: 40px;
}

.status-desc {
    font-size: 16px;
    margin-bottom: 0;
}

.separator {
    height: 1px;
    background-color: var(--dark);
    opacity: 20%;
    margin-block: 40px;
}

.separator.light {
    background-color: var(--white);
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title img {
    margin-top: -10px;
}

.accordion-item {
    margin-block: 10px;
    border: none;
    padding-inline: 35px;
}

.accordion-button:not(.collapsed),
.accordion-button {
    background-color: inherit;
    padding: 12px 0;
    font-size: 16px;
    color: var(--dark);
}

.accordion-button:not(.collapsed) {
    border-bottom: 1px solid rgba(55, 65, 81, 20%);
}

.accordion-body {
    padding: 12px 0;
    font-size: 14px;
    opacity: 60%;
}

.accordion-button::after {
    width: 0.8rem;
    height: 0.8rem;
    background-size: 0.8rem;
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.accordion-button::before {
    position: absolute;
    content: 'Read more';
    right: 20px;
    font-size: 14px;
}

.accordion-item {
    position: relative;
    color: var(--dark);
}

.accordion .accordion-item::after {
    position: absolute;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 17px;
    content: '';
    top: 12px;
    left: 12px;
}

.accordion-success .accordion-item {
    background-color: rgba(75, 174, 79, 10%);
}

.accordion-success .accordion-item::after {
    background-image: url('../icons/done.png');
}

.accordion-warning .accordion-item {
    background-color: rgba(251, 158, 18, 10%);
}

.accordion-warning .accordion-item::after {
    background-image: url('../icons/warning.png');
}

.accordion-danger .accordion-item {
    background-color: rgba(225, 28, 28, 10%);
}

.accordion-danger .accordion-item::after {
    background-image: url('../icons/danger.png');
}

.accordion-info .accordion-item {
    background-color: rgba(62, 99, 221, 10%);
}

.accordion-info .accordion-item::after {
    background-image: url('../icons/info.png');
}

/* ================ responsive =============== */
@media (max-width: 1680px) {
    .form-wrap {
        padding: 65px 140px;
    }
}

@media (max-width: 1440px) {
    #login-form .form {
        padding: 20px;
    }
}

@media (max-width: 1280px) {
    .login-page-wrap {
        grid-template-columns: 1fr;
    }

    .form-wrap {
/*        padding: 65px 190px;*/
    }
}

@media (max-width: 1024px) {
    body {
        padding: 40px 80px;
    }

    .form-heading {
        font-size: 18px;
    }

    .heading {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .sub-head {
        font-size: 14px;
    }

    .status-title {
        font-size: 28px;
    }

    .status-desc {
        font-size: 14px;
    }

    .separator {
        margin-block: 25px;
    }

    .btn {
        padding: 12px 18px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-title img {
        width: 20px;
        margin-top: -7px;
    }
}

@media (max-width: 820px) {
    .form-wrap {
        padding: 65px 140px;
    }

    .logo-wrap img {
        width: 200px;
    }

    .illus-wrap img {
        width: 50%;
    }

    .table th,
    .table td {
        text-wrap: nowrap;
        padding-right: 20px;
    }

    .table,
    .table-section-wrap {
        overflow: auto;
    }

    .nav-item {
        font-size: 14px;
    }

    .nav-item-wrap {
        column-gap: 20px;
    }
}

@media (max-width: 600px) {
    body {
        padding: 30px 50px;
    }

    .form-wrap {
        padding: 50px;
    }

    .logo-wrap img {
        width: 150px;
    }

    #login-form .form {
        padding: 30px;
    }

    .illus-wrap {
        display: none;
    }

    .header {
        flex-direction: column;
        row-gap: 20px;
        border-radius: 20px;
    }

    .accordion-button::before {
        content: '';
    }

    .accordion-button,
    .accordion-button:not(.collapsed) {
        font-size: 12px;
    }

    .accordion-body {
        font-size: 10px;
    }
}