/* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: .6em; /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}
[tooltip]::before {
  content: '';
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}
[tooltip]::after {
  content: attr(tooltip); /* magic! */
  
  /* most of the rest of this is opinion */
  font-family: "Roboto", sans-serif;
  text-align: center;
  
  /* 
    Let the content set the size of the tooltips 
    but this will also keep them from being obnoxious
    */
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: 5px;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: #fff;
  opacity: 1!important;
  color: #000;
  border: solid 1px #c0d824;
  z-index: 1000; /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #c0d824;
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -0.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #c0d824;
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, .5em);
}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #c0d824;
  left: calc(0em - 5px);
  transform: translate(-.5em, -50%);
}
[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #c0d824;
  right: calc(0em - 5px);
  transform: translate(.5em, -50%);
}
[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%);
  }
}

/* FX All The Things */ 
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}









/* FORM STYLING */

.after-fixed-div-new {
    padding: 0px 35px 35px 35px;   
}

.container-fluid {   
    padding-right: 0px!important;
    padding-left: 0px!important;    
}
.row {    
    margin-right: 0px;
    margin-left: 0px;
}
    .row > * {        
        padding-right: calc(var(--bs-gutter-x)* 0)!important;
        padding-left: calc(var(--bs-gutter-x)* 0)!important;
       
    }

.input-group {
    margin-left: 0px!important;
}
.input-group-dropdown {
    max-width: 125px;
    padding-left: 0px;
}


.radio-height {
    min-width: 200px;
    margin-top: 0px;
}




@media only screen and (max-width: 768px) {
    /* Your styles for extra small devices */
    .input-group-dropdown {
        min-width: 100%;
       
    }


}




    .table-container {
        margin: 0em auto;
        padding-top: 0px;
        width: 100%;
    }

    .responsive-table {
        width: 100%;
        margin-bottom: 0em;
        border-spacing: 0;
    }

    @media (min-width: 72em) {
        .responsive-table {
            font-size: 0.9em;
        }
    }

    @media (min-width: 72em) {
        .responsive-table {
            font-size: 0.9em;
        }
    }

    .responsive-table thead {
        position: absolute;
        clip: rect(1px 1px 1px 1px);
        /* IE6, IE7 */
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    /* tablet */
    @media (min-width: 72em) {
        .responsive-table thead {
            position: relative;
            clip: auto;
            height: auto;
            width: auto;
            overflow: auto;
        }
    }

    .responsive-table thead th {
        background-color: #232a34;
        border: 1px solid #607389;
        font-weight: normal;
        text-align: left;
        color: white;
    }

        .responsive-table thead th:first-of-type {
            text-align: left;
        }

    .responsive-table tbody,
    .responsive-table tr,
    .responsive-table th,
    .responsive-table td {
        display: block;
        padding: 0;
        text-align: left;
        white-space: normal;
    }

    @media (min-width: 72em) {
        .responsive-table tr {
            display: table-row;
        }
    }

    .responsive-table th,
    .responsive-table td {
        padding: 0.8em;
        vertical-align: middle;
    }

    @media (min-width: 30em) {
        .responsive-table th,
        .responsive-table td {
            padding: 0.75em 0.5em;
        }
    }
    /* tablet */
    @media (min-width: 72em) {
        .responsive-table th,
        .responsive-table td {
            display: table-cell;
            padding: 0.5em;
        }
    }




    @media (min-width: 72em) {
        .responsive-table th,
        .responsive-table td {
            padding: 0.75em 0.5em;
        }
    }







    @media only screen and (max-width: 77.5em) and (min-width: 75em) {


        .responsive-table th,
        .responsive-table td {
            padding: 0.55em;
        }
    }








    @media (min-width: 72em) {
        .responsive-table tbody {
            display: table-row-group;
        }
    }

    .responsive-table tbody tr {
        margin-bottom: 2.5em;
    }

    @media (min-width: 72em) {
        .responsive-table tbody tr {
            display: table-row;
            border-width: 1px;
        }
    }

    .responsive-table tbody tr:last-of-type {
        margin-bottom: 0;
    }

    @media (min-width: 72em) {
        .responsive-table tbody tr:nth-of-type(odd) {
            background-color: #fff;
        }
    }

    @media (min-width: 72em) {
        .responsive-table tbody tr:nth-of-type(even) {
            background-color: #efeff08c;
        }
    }

    .responsive-table tbody th[scope="row"] {
        background-color: #232a34;
        color: white;
    }



    .responsive-table tbody th[scope="row"] {
        border-left: 1px solid #232a34;
        border-bottom: 1px solid #232a34;
    }


    @media (min-width: 72em) {
        .responsive-table tbody th[scope="row"] {
            border-left: 1px solid #ccc;
            border-bottom: 1px solid #ccc;
        }
    }

    @media (min-width: 72em) {
        .responsive-table tbody th[scope="row"] {
            background-color: transparent;
            color: #000000;
            text-align: left;
        }
    }

    .responsive-table tbody td {
        text-align: right;
        font-size: 0.9em;
    }

    @media (min-width: 72em) {
        .responsive-table tbody td {
            border-left: 1px solid #ccc;
            border-bottom: 1px solid #ccc;
            text-align: left;
        }
    }

    @media (min-width: 72em) {
        .responsive-table tbody td:last-of-type {
            border-right: 1px solid #ccc;
        }
    }

    .responsive-table tbody td[data-type="info"] {
        text-align: right;
    }

    /* tablet */
    @media (min-width: 75em) {
        .responsive-table tbody td[data-type="info"] {
            text-align: left;
        }

        .responsive-table tbody td {
            font-size: 1em;
        }
    }

    /* screen */
    @media (min-width: 72em) {
        .responsive-table tbody td[data-type="info"] {
            text-align: left;
        }

        .align-expand {
            text-align: left !important;
        }

        .align-icons {
            text-align: center !important;
        }
    }

    .responsive-table tbody td[data-title]:before {
        content: attr(data-title);
        float: left;
        font-size: 0.9em;
        color: rgba(0, 0, 0, 0.54);
    }

    @media (min-width: 30em) {
        .responsive-table tbody td[data-title]:before {
            font-size: 0.8em;
        }
    }

    @media (min-width: 72em) {
        .responsive-table tbody td[data-title]:before {
            content: none;
        }
    }


    .icon-width {
        min-width: 160px;
    }

    .col-width {
        min-width: 160px;
    }


    .material-icons {
        display: inline-flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        cursor: pointer;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

        .material-icons i {
            padding: 5px;
            background-color: #232a34;
            border-radius: 50px;
            font-size: 0.9em;
            color: #fff;
            border: solid 1px #232a34;
        }

            .material-icons i:hover {
                padding: 5px;
                border-radius: 50px;
                font-size: 0.9em;
                color: #fff;
                background: #2e4b7d;
                border: 1px solid #2e4b7d;
            }

