@font-face {
    font-family: 'OpenSans';
    src: URL('OpenSans.ttf') format('truetype');
}

@font-face {
    font-family: 'Monstserrat';
    src: URL('Monstserrat.ttf') format('truetype');
}

/* ===== Breadcrumb Navigation ===== */
.breadcrumb-bar {
    position: relative;
    float: left;
    width: auto;
    margin: 10px 16px 0 16px;
    background: linear-gradient(135deg, #334158 0%, #3d5a80 100%);
    padding: 8px 16px;
    box-sizing: border-box;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    border-radius: 50px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 24px;
}

.breadcrumb-item {
    font-family: 'OpenSans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1;
    flex-shrink: 0;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    padding: 4px 6px;
    border-radius: 4px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.breadcrumb-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.12);
}

.breadcrumb-current {
    color: #ffffff;
    padding: 4px 6px;
}

.breadcrumb-brand {
    color: rgb(73, 150, 210) !important;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.page-title-bar {
    position: relative;
    float: left;
    width: 100%;
    background: none;
    padding: 12px 16px 10px 16px;
    box-sizing: border-box;
    border-bottom: none;
    text-align: center;
}

.page-title {
    font-family: 'Monstserrat', 'OpenSans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a2a3a;
    margin: 0;
    display: block;
    line-height: 1.2;
}

/* ===== projDash Modern Cards ===== */
.pd-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    min-height: 130px;
    margin: 8px;
    padding: 18px 12px 14px 12px;
    background: #ffffff;
    border: 1px solid rgba(73, 150, 210, 0.2);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    box-sizing: border-box;
    text-align: center;
    gap: 10px;
}

.pd-card:hover {
    border-color: rgb(73, 150, 210);
    background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
    box-shadow: 0 6px 20px rgba(73, 150, 210, 0.18);
    transform: translateY(-3px);
}

.pd-card:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(73, 150, 210, 0.12);
}

.pd-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
}

.pd-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pd-card-label {
    font-family: 'OpenSans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgb(73, 150, 210);
    line-height: 1.25;
}

.pd-card-danger .pd-card-label {
    color: rgb(220, 50, 50);
}

.pd-card-danger:hover {
    border-color: rgb(220, 50, 50);
    box-shadow: 0 6px 20px rgba(220, 50, 50, 0.15);
}

.pd-card-disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
    position: relative;
}

.pd-card-badge {
    font-family: 'OpenSans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    background: rgb(73, 150, 210);
    padding: 3px 10px;
    border-radius: 20px;
    line-height: 1;
}

a{
    color: black;
    text-decoration: none;
}

h1{
    font-size: 22px;
    margin: 0;
    display: inline;
}

.blueHvr:hover{
    background-color: rgb(222, 246, 255);
}

flexCtr{
    position: relative;
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
}

.flexCtr{
    position: relative;
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
}

icoBtn{
    display: block;
    position: relative;
    margin: auto;
    border: 2px solid rgb(73, 150, 210);
    border-radius: 5px;
    width: 300px;
    height: 60px;
    background: white;
    font-weight: bold;
}

icoBtn > icon{
    display: flex;
    width: 20%;
    height: 100%;
    justify-content: center;
    align-items: center;
    float: left;
}

icoBtn > icoText{
    display: flex;
    width: 80%;
    font-size: 24px;
    height: 100%;
    justify-content: center;
    align-items: center;
    float: left;
}

icoBtn:hover{
    border: 4px solid rgb(73, 150, 210);
    background-color: rgb(170, 220, 250);
    height: 56px;
}

eleBox{
    display: block;
    position: relative;
    margin: auto;
    width: 90%;
    overflow: hidden;
    border: 1px solid rgba(73, 150, 210, 0.4);
    border-radius: 8px;
    background: white;
    font-size: 28px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.reorderBtn {
    background: rgba(73, 150, 210, 0.15);
    border: 1px solid rgba(73, 150, 210, 0.3);
    border-radius: 5px;
    color: rgb(55, 135, 200);
    cursor: pointer;
    font-size: 14px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.15s ease;
    line-height: 1;
}

.reorderBtn:hover {
    background: rgb(73, 150, 210);
    color: white;
    border-color: rgb(55, 135, 200);
}

.eleWrapper {
    transition: opacity 0.15s ease;
}

.upload-drop-zone {
    border: 2px dashed rgba(73, 150, 210, 0.4);
    border-radius: 10px;
    padding: 24px 16px;
    text-align: center;
    background: rgba(73, 150, 210, 0.04);
    transition: border-color 0.2s ease, background 0.2s ease;
    cursor: default;
}

.upload-drop-zone.upload-drop-hover {
    border-color: rgb(73, 150, 210);
    background: rgba(73, 150, 210, 0.1);
}

.upload-browse-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 24px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, rgb(73, 150, 210), rgb(55, 135, 200));
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.upload-browse-btn:hover {
    background: linear-gradient(135deg, rgb(55, 135, 200), rgb(40, 120, 185));
}

.upload-progress-bar-bg {
    width: 100%;
    height: 20px;
    background: #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
}

.upload-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgb(73, 150, 210), rgb(55, 135, 200));
    border-radius: 10px;
    transition: width 0.2s ease;
}

mobileStrip{
    min-width: 320px;
    width: 100%;
    max-width: 1200px;
    position: relative;
    margin: auto;
    overflow: hidden;
    display: block;
}

qrContainer{
    display: block;
    position: relative;
    margin: 150px;
    width: 300px;
    height: 300px;
    border: 2px solid rgb(73, 150, 210);
}

qrOutline{
    display: block;
    float: left;
    position: relative;
    width: 600px;
    height: 600px;
    background-image: url("../resources/qr_outline.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-color: white;
}

qrInsBox{
    display: block;
    width: 350px;
    height: 350px;
    position: relative;
    float: left;
}

qrInsTxt{
    display: block;
    position: relative;
    float: left;
    width: calc(100% - 350px);
    overflow: hidden;
}

.textAreaBig{
    width: 80%;
    height: 60px;
}

.logo40{
    position: relative;
    float: left;
    display: block;
    height: auto;
    width: 40px;
}

titleminus40{
    position: relative;
    float: left;
    display: block;
    height: 40px;
    width: calc(100% - 40px);
    text-align: center;
    line-height: 40px;
    font-size: 25px;
}

.divCenter{
    position: relative;
    margin: auto;
    display: block;
}

.loadscr{
    position: fixed;
    z-index: 9999999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(32, 32, 32, 0.5);
    display: none;
}

.loadBtn{
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 250px;
    width: 250px;
    margin-top: 300px;
}

background{
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("../resources/background.jpg");
    background-size: cover;
}

.blankposButton{
    margin-top: 3px;
    margin-bottom: 3px;
    position: relative; 
    font-weight: bold; 
    background-color: rgb(230, 255, 230); 
    color: rgb(60, 200, 40); 
    border-radius: 10px; 
    padding-left: 10%; 
    padding-right: 10%; 
    border: 4px solid rgb(210, 230, 210);
    cursor: pointer;
    padding: 20px 15% 20px 15% !important;
}

.blankposButton:hover{
    background-color: rgb(235, 235, 235);
}

.blanknegButton{
    margin-top: 3px;
    margin-bottom: 3px;
    position: relative; 
    font-weight: bold; 
    background-color: rgb(255, 230, 230); 
    color: red; 
    border-radius: 10px; 
    padding-left: 10%; 
    padding-right: 10%; 
    border: 4px solid rgb(230, 210, 210);
    cursor: pointer;
    padding: 20px 15% 20px 15% !important;
}

.blanknegButton:hover{
    background-color: rgb(235, 235, 235);
}

.clmButton{
    margin-top: 3px;
    margin-bottom: 3px;
    position: relative; 
    font-weight: bold; 
    background-color: white;
    color: black; 
    border-radius: 7px;  
    border: 2px solid rgb(73, 150, 210);
    cursor: pointer;
    display: inline-block;
    margin: 8px;
    font-size: 20px;
    box-shadow: 2px 2px rgba(32, 32, 32, 0.2);
    padding: 10px 5% 10px 5% !important;
}

.clmButton:hover{
    background-color: rgb(238, 240, 250);
}

.posButton{
    position: relative; 
    font-weight: bold; 
    background: linear-gradient(135deg, rgb(73, 150, 210), rgb(55, 135, 200)); 
    color: white; 
    border-radius: 10px; 
    padding-left: 10%; 
    padding-right: 10%; 
    border: none;
    cursor: pointer;
    display: inline-block;
    margin: 8px;
    font-size: 33px;
    box-shadow: 0 2px 8px rgba(73, 150, 210, 0.3);
    padding: 20px 15% 20px 15% !important;
    transition: all 0.15s ease;
    box-sizing: border-box;
}

.posButton:hover{
    background: linear-gradient(135deg, rgb(55, 135, 200), rgb(40, 120, 185));
    box-shadow: 0 4px 12px rgba(73, 150, 210, 0.4);
    transform: translateY(-1px);
}

.negButton{
    padding:6px; 
    padding-left: 10%; 
    font-weight: bold; 
    padding-right: 10%; 
    position: relative; 
    cursor: pointer;
    background: linear-gradient(135deg, rgb(230, 50, 55), rgb(210, 40, 45)); 
    border: none;
    color: white; 
    border-radius: 10px;
    display: inline-block;
    margin: 8px;
    font-size: 33px;
    box-shadow: 0 2px 8px rgba(230, 50, 55, 0.3);
    padding: 20px 15% 20px 15% !important;
    transition: all 0.15s ease;
    box-sizing: border-box;
}

.negButton:hover{
    background: linear-gradient(135deg, rgb(210, 35, 35), rgb(190, 30, 30));
    box-shadow: 0 4px 12px rgba(230, 50, 55, 0.4);
    transform: translateY(-1px);
}

body{
    margin: 0;
    min-width: 320px;
    font-size: 17px;
    font-family: "OpenSans";
    background-image: linear-gradient(rgb(240, 240, 255),rgb(250, 250, 250));
    -webkit-font-smoothing: antialiased; /* Fix bold text on apple devices */
}

input[type=text], input[type=number], input[type=date], textarea, select, input[type=password], input[type=datetime-local] {
    border: 2px solid rgb(73, 150, 210);
    border-radius: 2px;
    font-family: OpenSans;
    margin-top: 3px;
    margin-bottom: 3px;
    resize: none;
    font-size: 20px;
    box-sizing: border-box;
}

input[type=radio], input[type=checkbox] {
    transform: scale(1.8);
}

form{
    margin: 0px;
    padding: 0px;
    display: inline;
}

input[type=number]
{
    width: 80px;
}

.header{
    height: 60px;
    width: 100%;
    display: block;
    position: relative;
    float: left;
    background-color: #334158;
    z-index: 9999;
    border-bottom: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.userStat{
    position: relative;
    float: left;
    font-weight: 600;
    width: 100%;
    color: white;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    background-color: rgba(73, 150, 210, 0.9);
    text-align: center;
    border-bottom: none;
    letter-spacing: 0.3px;
}

.headPage{
    height: 60px;
    line-height: 60px;
    font-family: Monstserrat;
    font-size: 35px;
    text-align: center;
    color: white;
}

.txtCenter{
    text-align: center;
}

.txtLeft{
    text-align: left;
}

.txtRight{
    text-align: right;
}

.overflow{
    overflow: hidden;
}

.center-vertical{
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.bodyBox{
    width: 100%;
    overflow: hidden;
    position: relative;
    float: left;
}

.stripBodyThin{
    min-height: 100%;
    width: 700px;
    background-color: white;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.stripBody{
    min-height: 100%;
    width: 80%;
    background-color: white;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.login{
    background-color: white;
    font-size: 20px;
    margin-top: 50px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    border: 6px ridge rgb(5, 75, 140);
    border-radius: 8px;
    width: 400px;
    overflow: hidden;
    padding: 10px;
    text-align: center;
}

.menuTT{
    position: fixed;
    left: 55px;
    width: 200px;
    height: 60px;
    background-color: white;
    box-sizing: border-box;
    border: 2px solid rgb(5, 75, 140);
    border-radius: 5px;
    line-height: 60px;
    text-align: center;
    font-size: 22px;
    font-family: Monstserrat;
    display: none;
    z-index: 1999;
}

.riskBtnBox{
    position: absolute;
    right: 0;
    top: 6px;
    height: 50px;
    width: 200px;
    text-align: center;
    line-height: 50px;
}

.imgFullHeight{
    height: 100%;
    width: auto;
}

.imgFullWidth{
    width: 100%;
    height: auto;
}

.loginLogo{
    position: relative;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 370px;
    overflow: hidden;
}

.fullWidth{
    position: relative;
    width: 100%;
    float: left;
    overflow: hidden;
}

.fLeft{
    position: relative;
    float: left;
}

.loginTextWidth{
    width: 350px;
}

.bottom10{
    margin-bottom: 10px;
}

.bottom20{
    margin-bottom: 20px;
}

.bottom30{
    margin-bottom: 30px;
}

.bottom50{
    margin-bottom: 50px;
}

.top5{
    margin-top: 5px !important;
}

.top10{
    margin-top: 10px !important;
}

.top20{
    margin-top: 20px !important;
}

.top30{
    margin-top: 30px !important;
}

.top50{
    margin-top: 50px !important;
}

.height15{
    height: 15px;
}

.height20{
    height: 20px;
}

.partBtn{
    font-weight: bold; 
    background-color: white; 
    color: grey; 
    border-radius: 10px; 
    height: 50px;
    line-height: 50px;
    font-size: 25px;
    margin: 1px;
    border: 2px solid rgb(63, 130, 195);
}

.partBtnSelected{
    font-weight: bold; 
    background-color: rgb(73, 150, 210); 
    color: white; 
    border-radius: 10px; 
    height: 50px;
    line-height: 50px;
    font-size: 25px;
    margin: 1px;
    border: 2px solid rgb(63, 130, 195);
}

bigbtn{
    display: inline-block;
    margin: 5px;
    font-size: 26px;
    box-shadow: 5px 5px rgba(32, 32, 32, 0.2);
}

qualBtn{
    display: inline-block;
    margin: 8px;
    font-size: 35px;
    box-shadow: 4px 4px rgba(32, 32, 32, 0.2);
    padding: 25px 20% 25px 20% !important;
    user-select: none;
}

.bigBtn{
    display: inline-block;
    margin: 8px;
    font-size: 35px;
    box-shadow: 4px 4px rgba(32, 32, 32, 0.2);
    padding: 25px 20% 25px 20% !important;
}

projectListing{
    display: block;
    width: 15%;
    min-width: 170px;
    background-color: white;
    margin: 0.5%;
    position: relative;
    aspect-ratio: 1 / 1;
    font-size: 22px;
    border: 1px solid rgba(73, 150, 210, 0.4);
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.15s ease;
}

projectListing:hover{
    background-color: rgb(222, 246, 255);
    border-color: rgb(50, 130, 200);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(73, 150, 210, 0.2);
    transition: all 0.15s ease;
}

pListInner{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50%;
    overflow: hidden;
    text-align: center;
}

pListIconL{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    height: 65px;
    width: 65px;
}

pListIconR{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    height: 65px;
    width: 65px;
}

.pListIcon{
    display: block;
    height: 55px;
    width: 55px;
}

table {
    table-layout: auto;
    border-collapse: collapse;
    width: 100%;
    font-size: 18px;
    text-align: center;
    background-color: white;
}
table .absorbing-column {
    width: 100%;
}
td, th{
    display: table-cell;
    border: 2px solid rgb(73, 150, 210);
}

enlarged{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000000;
    display: none;
    background-color: black;
}

backBtnBox{
    position: absolute;
    top: 0;
    z-index: 150;
    left: 0;
    height: 50;
    width: 50;
}

mediaCount{
    background-color: red;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    font-size: 15px;
    color: white;
    text-align: center;
    line-height: 25px;
    position: absolute;
    top: 10px;
    right: 10px;
}

mediaListBox{
    display: inline-block;
    position: relative;
    height: 150px;
    width: 150px;
    overflow: hidden;
    background: white;
    margin: 5px;
    border-radius: 15px;
}
mediaImg{
    position: relative;
    height: 50%;
    width: 100%;
    display: block;
}
mediaTitle{
    position: relative;
    height: 75px;
    line-height: 75px;
    font-size: 25px;
    width: 100%;
    display: block;
    text-align: center;
}


.dashList{
    width: 90%;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    font-size: 17px;
    overflow: hidden;
    border: 1px solid rgba(73, 150, 210, 0.4);
    border-radius: 12px;
    padding: 12px;
    box-sizing: border-box;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.15s ease;
}

.dashList:hover{
    border-color: rgb(73, 150, 210);
    background-color: rgb(240, 248, 255);
    box-shadow: 0 4px 12px rgba(73, 150, 210, 0.15);
    transform: translateY(-1px);
}

.greySub{
    font-size: 16px;
    color: rgb(100, 100, 100);
}

gradTitle{
    position: relative;
    display: block;
    text-align: center;
    font-family: Monstserrat;
    float: left;
    background: linear-gradient(180deg, #f0f4ff 0%, #f8f9ff 100%);
    width: 100%;
    height: 56px;
    line-height: 56px;
    font-size: 24px;
    font-weight: 700;
    color: #1a2a3a;
    border-bottom: 2px solid rgba(73, 150, 210, 0.15);
    letter-spacing: -0.2px;
}

.lightHeadFull{
    background: linear-gradient(135deg, rgb(73, 150, 210), rgb(55, 130, 195));
    text-align: center;
    height: 44px;
    line-height: 44px;
    font-family: Monstserrat;
    font-size: 18px;
    width: 100%;
    position: relative;
    float: left;
    color: white;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

.dashHead{
    position: relative;
    float: left;
    width: 100%; 
    height: 30px;
    font-size: 18px;
    font-family: Monstserrat;
    line-height: 30px;
    background-color: rgb(73, 150, 210);
    color: white;
}

.darkHead{
    background-color: #334158;
    color: white;
    text-align: center;
}

.lightHead{
    background-color: rgba(73, 150, 210, 0.12);
    text-align: center;
    height: 50px;
    line-height: 50px;
    font-size: 21px;
    border-bottom: 1px solid rgba(73, 150, 210, 0.15);
}

.sublightHead{
    background-color: rgba(73, 150, 210, 0.3);
    text-align: center;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
}

.neglightHead{
    background-color: rgba(255, 120, 120, 0.6);
    text-align: center;
    height: 60px;
    line-height: 60px;
    font-size: 23px;
}

.head65{
    position: relative;
    float: left;
    width: 65%; 
    height: 100%;
    text-align: center;
}

.head35{
    position: relative;
    float: left;
    width: 35%; 
    height: 100%;
    text-align: center;
}

.seg50{
    position: relative;
    width: 50%;
    overflow: hidden;
}

.seg30{
    position: relative;
    width: 30%;
    overflow: hidden;
}

.seg40{
    position: relative;
    width: 40%;
    overflow: hidden;
}

.seg33{
    position: relative;
    width: 33.333%;
    overflow: hidden;
}

.seg66{
    position: relative;
    width: 66.666%;
    overflow: hidden;
}

.seg20{
    position: relative;
    width: 20%;
    overflow: hidden;
}

.seg75{
    position: relative;
    width: 75%;
    overflow: hidden;
}

.seg60{
    position: relative;
    width: 60%;
    overflow: hidden;
}

.seg10{
    position: relative;
    width: 10%;
    overflow: hidden;
}

.seg15{
    position: relative;
    width: 15%;
    overflow: hidden;
}

.seg80{
    position: relative;
    width: 80%;
    overflow: hidden;
}

.seg25{
    position: relative;
    width: 25%;
    overflow: hidden;
}

.fullSpaced1{
    position: relative;
    margin: 1px auto 1px auto;
    width: calc(100% - 2px);
    overflow: hidden;
}

.fullSpaced2{
    position: relative;
    margin: 2px auto 2px auto;
    width: calc(100% - 4px);
    overflow: hidden;
}

.fullSpaced4{
    position: relative;
    margin: 4px auto 4px auto;
    width: calc(100% - 8px);
    overflow: hidden;
}

.fullSpaced10{
    position: relative;
    margin: 10px auto 10px auto;
    width: calc(100% - 20px);
    overflow: hidden;
}

.greyTxt{
    color: grey;
}

.taskBuilderClass{
    width: 100%;
    max-height: 400px;
    overflow-y: scroll;
    position: relative;
}

.taskBuilderClass input[type="text"],
.taskBuilderClass textarea {
    width: 98%;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

.greyBtm{
    border-bottom: 1px solid rgba(73, 150, 210, 0.5);
}

.greyTop{
    border-top: 1px solid rgba(73, 150, 210, 0.5);
}

.border1{
    border: 1px solid rgb(73, 150, 210);
}

.border1f{
    border: 1px solid rgba(73, 150, 210, 0.7);
}

.border2{
    border: 2px solid rgb(73, 150, 210);
}

.text15{
    font-size: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
}

.text18{
    font-size: 14px;
    height: 18.5px;
    line-height: 18px;
    text-align: center;
}

.text20{
    font-size: 15px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.text30{
    font-size: 15px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.text35{
    font-size: 20px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.text40{
    font-size: 25px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.overviewHolder{
    position: relative;
    float: left;
    width: 100%;
    height: 227px;
}

.overviewCanvas{
    position: relative;
    height: 134px;
    width: 134px;
    margin-left: auto;
    margin-right: auto;
}

.pagea4{
    width: 210mm;
    margin: 30mm 45mm 30mm 45mm;
    background-color: white;
    font-size: 19px;
}

.halfHeight{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.propMenu{
    background-color: white;
    overflow: hidden;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 600px;
    margin-top: 5px;
}

.width80{
    position: relative;
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.labels80{
    position: relative;
    display: block;
    width: 80%;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
}

.graphWidth{
    display: block;
    width: 100%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    height: auto;
}

.fill{
    height: 100%;
    width: 100%;
}

.fullWidthSquare{
    width: 100%;
    height: auto;
    position: relative;
}

.halfWidthSquare{
    width: 50%;
    height: auto;
    position: relative;
    margin: auto;
    display: block;
}

.p66WidthSquare{
    width: 66.66%;
    height: auto;
    position: relative;
    margin: auto;
    display: block;
}

.fullHeightSquare{
    width: auto;
    height: 100%;
    position: relative;
}

.PPSsub{
    position: relative;
    width: 100%;
    padding-bottom: calc(50% - 20px);
    float: left;
    overflow: hidden;
}

.budgetSub{
    position: relative;
    width: 100%;
    padding-bottom: calc(50% - 62px);
    float: left;
    overflow: hidden;
}

.left100{
    margin-left: 100px;
}

Lborder{
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(73, 150, 210, 0.5);
}

Rborder{
    position: absolute;
    top: 0; right: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(73, 150, 210, 0.5);
}

Rblack{
    position: absolute;
    top: 0; right: 0;
    height: 100%;
    width: 2px;
    background-color: rgba(0, 0, 0, 0.8);
}

Lblack{
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 2px;
    background-color: rgba(0, 0, 0, 0.8);
}

.redText{
    color: red;
}

.height5p{
    height: 5%;
}

.height60px{
    height: 60px;
}

.height62px{
    height: 62px;
}

.tipEnt{
    box-sizing: border-box;
    padding: 0 10px 0 10px;
    position: absolute;
    border-radius: 4px;
    height: 5%;
    line-height: 40px;
    cursor: pointer;
    user-select: none;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.popupContainer{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(20, 30, 50, 0.35);
    z-index: 99999;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.tipProgress{
    position: absolute;
    width: 3px;
    background-color: black;
    height: 5%;
}

.tipProgressJoin{
    height: 3px;
    background-color: black;
    position: absolute;
}

.Popup, .popup{
    position: relative;
    width: 90%;
    max-width: 450px;
    overflow: hidden;
    margin: 80px auto 0 auto;
    background-color: white;
    border: 1px solid rgba(73, 150, 210, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.mediaPopup{
    position: relative;
    width: 96%;
    max-width: 700px;
    height: 90%;
    overflow-y: hidden;
    margin: 2% auto 2% auto;
    background-color: white;
    border: 1px solid rgb(73, 150, 210);
    border-radius: 3px;
}

.popupScroller{
    height: calc(100% - 40px);
    position: relative;
    margin: auto;
    width: 100%;
    overflow: scroll;
}

.sScrl{
    position: relative;
    overflow-y: scroll;
    width: 90%;
    margin: auto;
    height: 200px;
}

.riskSec{
    height: calc(50% - 108px);
    width: 100%;
    margin-top: 3px;
    margin-bottom: 3px;
    overflow-y: scroll;
}

.scrollBar{
    overflow-y: scroll;
}

.clickable{
    cursor: pointer;
    user-select: none;
}

.qCatListInner{
    position: relative;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    float: left;
    height: 140px;
    line-height: 140px;
    width: calc(100% - 140px);
    font-size: 30px;
}

.whiteBackground{
    background-color: white;
}

.sideBar{
    position: fixed;
    z-index: 99999;
    background-color: white;
    width: 50px;
    height: 100%;
    top: 0;
    left: 0;
}

.sideBtn{
    position: relative;
    float: left;
    background-color: white;
    height: 60px;
    width: 50px;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid rgb(180, 180, 180);
}

.sideBtn:hover{
    background-color: rgb(235, 255, 235);
}

.sideBtnDead{
    position: relative;
    float: left;
    background-color: rgb(235, 235, 235);
    height: 60px;
    width: 50px;
    user-select: none;
    border-bottom: 1px solid rgb(180, 180, 180);
}

.sideIcon{
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.headerToggle{
    background-color: rgb(26, 111, 52);
    height: 60px;
    width: 50px;
    cursor: pointer;
    user-select: none;
    position: relative;
    float: left;
}

.headerToggle:hover{
    background-color: rgb(46, 131, 72);
}

.pidEditBox{
    overflow: hidden;
    position: relative;
    float: left;
    display: block;
    width: 98%;
    margin: 1%;
    font-size: 18px;
}

.question-block{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.editBtnContainer{
    position: fixed;
    z-index: 9999;
    top: 65px;
    right: 0px;
    overflow: hidden;
    width: 20%;
    min-width: 150px;
    cursor: pointer;
    user-select: none;
}

.editBtnText{
    height: 26px;
    line-height: 26px;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    width: calc(100% - 26px);
}

.editBtn{
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 150px;
    border: 1px solid grey;
    border-radius: 3px;
    background-color: rgb(245, 245, 245);
    height: 26px;
}

.hyperlink{
    color: blue;
    text-decoration: underline;
    cursor: pointer;
    user-select: none;
}

.minilink{
    color: blue;
    text-decoration: underline;
    cursor: pointer;
    user-select: none;
    font-size: 12px;
    font-weight: bold;
}

@keyframes fadeOut {
    0% {
        opacity: 100%;
    }
    85%{
        opacity: 100%
    }
    100% {
        opacity: 0%;
    }
}

@keyframes intro {
    0% {
        opacity: 0%;
        transform: scale(0);
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        opacity: 100%;
        transform: scale(1);
    }
}

.greyContain{
    margin: 15px auto 15px auto;
    background-color: rgb(240, 243, 250);
    width: 90%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    text-align: center;
    padding: 8px 0;
}

.newHead{
    margin: 5 auto 10 auto;
    background-color: rgb(73, 150, 210);
    width: 90%;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    color: white;
    text-align: center;
    font-size: 24px;
}