.risks-box {
    position: unset;
    margin-top: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: nowrap;
    cursor: default;
    color: rgb(59, 59, 59);
    color: white;
    flex: 1;
    cursor: default;
    overflow-y: scroll;
    overflow-x: scroll;
    height: fit-content;
    padding: 5px 15px 5px 15px;
    border-radius: 20px;
    /* box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.37); */
    
}
.risks-header {
    flex: 1;
    max-height: 20px;
}
.risks-columns {
    color: white;
    display: grid;
    grid-template-columns: 20px 1fr;
    flex: 1;
    height: 30px;
    border-radius: 5px;
    margin: 5px;
    background-color: rgb(25, 25, 25);
    box-shadow: 0px 0px 2px rgb(255, 255, 255);
    width: fit-content;
}
.risks-columns2 {
    display: grid;
    grid-template-columns: 20px 1fr;
    height: 30px;
    /* border-radius: 5px; */
    background-color: rgb(25, 25, 25);
    width: fit-content;
}
.risks-columns:hover {
    background-color: #606060;
}
.risks-row {
    font-size: 15px;
    display: grid;
    grid-template-columns: 250px 300px 110px 130px 800px ;
}
.risks-info {
    width: fit-content;
    /* background-color: red; */
}
.risks-checkbox {
    align-content: center;
    overflow: hidden;
    display: block;
    white-space: nowrap; 
}

.rr-background {
     display: none; 
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(61, 61, 61, 0.811);
    color: var(--font-color);
}
.rr-background.show{
    display: block;
}
.rr-box {
    opacity: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    height: 80%;
    width: 80%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 20px;
    background: var(--body-background-color);;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border:1px solid var(--font-color);
    padding: 15px;
    height: fit-content;
    max-height: 80vh;
    overflow: hidden;
}
.rr-header {
    padding: 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    margin-bottom: 15px;
    cursor: default;
    max-height: 80px;
}



.dgv-header-tooltip2 {
    font-weight: bold;
    font-size: 14px;
    position: relative;
    visibility: inherit;

    white-space: nowrap;
    text-align: center;
    color: white;
    font-weight: bold;
    cursor: default;
}