@import url('https://fonts.googleapis.com/css?family=Prompt&display=swap');
html,
body {
    font-size: 16px;
    font-family: 'Prompt', sans-serif;
    background-color: rgb(230, 230, 230);
}

nav.nav-shadow {
    box-shadow: 0 .25rem 1rem rgba(146, 146, 146, 0.15)!important;
}

.box-shadow {
    box-shadow: 0 .25rem 1rem rgba(146, 146, 146, .15);
    background-color: #fff;
    border-radius: .25rem;
}

#sticky-footer {
    flex-shrink: none;
    padding: 0;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
}

.report-name {
    color: rgb(99, 99, 99);
}

.table-rounded {
    border-collapse: separate;
    border-spacing: 0;
}


/*https://codepen.io/mlms13/pen/CGgLF*/

table.table-rounded tr th,
table.table-rounded tr td {
    border-right: 1px solid #dee2e6;
}

table.table-rounded tr th:first-child,
table.table-rounded tr td:first-child {
    border-left: 1px solid #dee2e6;
}

table.table-rounded tr th {
    border-top: 1px solid #dee2e6;
}

table.table-rounded tr:last-child td {
    border-bottom: 1px solid #dee2e6;
}


/* top-left border-radius */

.table-rounded tr:first-child th:first-child {
    border-top-left-radius: 4px;
}


/* top-right border-radius */

.table-rounded tr:first-child th:last-child {
    border-top-right-radius: 4px;
}


/* bottom-left border-radius */

.table-rounded tr:last-child td:first-child {
    border-bottom-left-radius: 4px;
}


/* bottom-right border-radius */

.table-rounded tr:last-child td:last-child {
    border-bottom-right-radius: 4px;
}

td.rotate {
    white-space: nowrap;
}

td.rotate>div {
    text-align: center;
    white-space: nowrap;
    transform-origin: 50% 50%;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

td.rotate>div>span {
    border-bottom: 1px solid #ccc;
    padding: 5px 10px;
}

.bordered {
    border: 1px solid #dee2e6 !important;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 6px;
}

.table.table-no-pad th,
.table.table-no-pad td {
    padding: 0.15rem;
}

.card-rounded {
    border-radius: 6px;
}

.circle {
    height: 25px;
    width: 25px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.rectangle {
    height: 25px;
    width: 25px;
    background-color: #bbb;
    border-radius: 5%;
    display: inline-block;
}

.square {
    height: 50px;
    width: 50px;
    background-color: #ccc;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    color: white;
    position: relative;
    margin: 2px 2px;
}

.grid {
    flex-wrap: wrap;
}

.cover-text {
    position: absolute;
    z-index: 5;
}

.text-square {
    height: 50px;
    width: 50px;
    background-color: rgba(204, 204, 204, 0);
    display: inline-block;
    text-align: center;
    line-height: 50px;
    color: rgb(37, 37, 37);
    position: relative;
    margin: 2px 2px;
}
.box-info-size {
    height: 50px;
    width: 50px;
    margin: 2px;
    border: 2px solid #fff;
    padding: 5px 5px;
    font-size: 12px;
}
.box-size {
    height: 150px;
    width: 150px;
    margin: 2px;
    border: 2px solid #fff;
    padding: 5px 5px;
    font-size: 12px;
}
.box-size-in>tr>td {
    height: 50px;
    width: 50px;
    text-align: center;
}

.risk-status {
    color: rgb(37, 37, 37);
    font-size: 16px;
    font-weight: 600;
}

hr.form {
    border-top: 2px solid rgb(195, 195, 195);
  }

.font-100{
    font-size: 100% !important;
}
.font-125{
    font-size: 125% !important;
}

.blink_x1 {
    animation: blinker 2s linear infinite;
  }
  
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }

  
.blink_x2 {
    animation: blinker 0.5s linear infinite;
  }
  
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }


.border_bottom{
    border-color: rgb(170, 170, 170) !important;
    border-bottom: 1px solid !important;
}
.no_right_border{
    border: 0px solid #dee2e6 !important;
}

.status_box{
    position: relative;
    /*width:100%;*/
  height: 100%;
}
.before_status{
    /*position: absolute;*/
    z-index: 0;
    /*padding-left: 7px;*/
    opacity: 1;
}
.after_status{
    z-index: 9;
    color:#fff;
    opacity: 0;

}