﻿/**** GENERAL  ****/
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 300px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        position: absolute;
        z-index: 1;
        top: -5px;
        left: 105%;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
    }
.mainSection {
    width: 100%;
}

    .mainSection .flexRow {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .mainSection .w-40 {
        width: 40%;
    }

    .mainSection .w-60 {
        width: 60%;
    }

    .mainSection input[type="radio"] {
        -ms-transform: scale(1.1); /* IE 9 */
        -webkit-transform: scale(1.1); /* Chrome, Safari, Opera */
        transform: scale(1.1);
    }

.wrapper {
    display: flex;
    flex-direction: column;
}

.fw-600 {
    font-weight: 600;
}

.text-justify {
    text-align: justify !important;
}

.fs-14 {
    font-size: 14px;
}

table {
    border-collapse: collapse;
    width: 100%;
}

td, th {
    font-weight: 300;
}

th {
    text-align: left;
    font-weight: 900;
}

label {
    color: #0a0a0a;
}

.empty-required {
    border: 1px solid #ff0000 !important;
}

.grid-container-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1%;
    grid-row-gap: 20px;
}

.grid-container-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 1%;
    grid-row-gap: 20px;
}

.grid-container-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 1%;
    grid-row-gap: 20px;
}

.custom-flex-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.d-none {
    display: none;
}

input[type="checkbox"] {
    width: 15px;
    height: 15px;
}

.inline-upload {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 50px;
    max-width: 100%;
}

.group-item {
    display: flex;
    gap: 0;
}

    .group-item > :nth-child(1) {
        width: 70%;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .group-item > :nth-child(2) {
        width: 30%;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

.flexdatalist-results li {
    cursor: pointer;
}

    .flexdatalist-results li:hover {
        background-color: #ACCEF7;
    }

input:disabled,
input:read-only {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
    cursor: auto;
}

.align-center{
    align-items: center;
}

.btn-default{
    transition: 0.3s all;
}

    .btn-default:hover {
        background-color: #3d72a7;
        border-color: #3d72a7;
    }

.bg-white{
    background-color: #fff;
}

input:read-only.bg-white {
    background-color: #fff;
}

.gap10{
    gap: 10px;
}

/**** EMBLEM & LOGOS  ****/
.emblem {
    align-self: center;
    height: 100px;
    margin: 0 1em 1em 1em;
}

.push-right {
    margin-left: auto;
    text-align: right;
}

.header-font {
    font-size: 1.2em
}


/**** FORM LEGEND  ****/
.legend {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
}

.ordered-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
}

    .ordered-list li {
        margin-right: 20px;
        cursor: pointer;
        white-space: nowrap;
    }

        .ordered-list li.step-completed:before {
            background-color: #00d20e;
            border-color: #00d20e;
        }

.very-light-yellow {
    background-color: #ffffcc;
}




/****  MAIN CONTENT  ****/
.main-content {
    max-width: 100%;
    padding: 10px 20px;
    border-radius: 0 8px 8px 0;
    background-color: #f5f5f5;
}

.info-steps-list li {
    margin-bottom: 10px;
}

.input-group {
    margin: 20px 0;
    display: flex;
    align-items: center;
}

.statement-wrapper {
    padding: 1em;
    margin-bottom: 1em;
    padding-bottom: .33em;
    background-color: rgba(0, 0, 0, 0.066);
    border-radius: 0.66em;
}

input,
select,
.faked_input {
    padding-left: .5em;
}

.file-upload {
    display: unset !important;
    height: auto;
    margin: 8px 0 8px 10px;
}


.uploaded-files-section {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
}

.uploaded-files-list {
    list-style-type: none;
    padding: 0;
}


.file-item {
    display: flex;
    justify-content: space-between;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 8px;
    margin-left: 8px;
}

    .file-item .remove-file {
        cursor: pointer;
        transition: 0.3s all;
    }

        .file-item .remove-file:hover {
            transform: scale(1.1);
        }

    .file-item label {
        display: flex;
        align-items: center;
        margin: 0;
    }

        .file-item label img {
            margin-right: 10px;
        }

    .file-item .file-name {
        display: inline-block;
        max-width: 650px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        vertical-align: bottom;
        margin-left: 4px;
    }

    .file-item .file-size {
        margin-left: 10px;
        color: #999;
    }

.table-row-btn {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
}

.active-application {
    padding: 1em;
    border-radius: 0.7em;
    border: 1px solid #fff;
    background-color: rgba(240,240,240,0.6);
    border-spacing: 0.1em 0.5em;
    color: #0a0a0a;
}

.editBtn:disabled,
.editBtn[disabled] {
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
    cursor: default;
}

.applicationDetailsTable a:hover {
    text-decoration: underline;
}

.applicationDetailsTable tbody tr td:first-child {
    width: 30%;
    vertical-align: top;
}

/*BACK BTN Styles*/
.btn-share,
.btn-back {
    gap: 1em;
    width: unset;
}

.btn-share {
    display: none;
    margin-left: auto;
}

    .btn-share > img,
    .btn-back > img {
        height: 28px;
        cursor: pointer;
    }

    .btn-share:hover > img,
    .btn-back:hover > img {
        filter: brightness(0) invert(1);
    }

    .btn-share > label,
    .btn-back > label {
        margin: 0;
    }

    .btn-share:hover > label,
    .btn-back:hover > label {
        color: #fff;
        cursor: pointer;
    }

.title {
    display: flex;
    align-items: center;
    gap: 1em;
}

.titleContainer{
    display:flex;
    justify-content: space-between;
    align-items: center;
}

.searchContainer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
}


/**** PAGINATION  ****/
.paginationWrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}

.pagination-container {
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .pagination li {
        margin: 0 5px;
        cursor: pointer;
    }

        .pagination li span {
            display: block;
            padding: 10px 15px;
            color: #0c4f91;
            text-decoration: none;
            border: 1px solid #dee2e6;
            border-radius: 4px;
        }

        .pagination li.active span {
            background-color: #0c4f91;
            color: #fff;
            border-color: #0c4f91;
        }

        .pagination li:hover span {
            background-color: #e9ecef;
        }

        .pagination li.disabled span {
            color: #6c757d;
            cursor: not-allowed;
        }

        .pagination li[data-page="prev"] span::before {
            content: "<";
            margin-right: 5px;
        }

        .pagination li[data-page="next"] span::after {
            content: ">";
            margin-left: 5px;
        }



/**** MEDIA QUERIES  ****/
@media (orientation:landscape) {
    td, th {
        padding: 0.8em;
    }
}
