@font-face {
    font-family: 'InterSemiBold'; /* Use a consistent font family name */
    src: url('/fonts/Inter/Inter-SemiBold.woff') format('truetype');
    /*font-weight: 400;*/ /* Standard numerical weight for 'regular' */
    font-style: normal;
    font-display: swap;
}

.InterSemiBoldFont {
    font-family: 'InterSemiBold';
}

@font-face {
    font-family: 'InterMeduim'; /* Use a consistent font family name */
    src: url('/fonts/Inter/Inter-Medium.woff') format('truetype');
    /*font-weight: 400;*/ /* Standard numerical weight for 'regular' */
    font-style: normal;
    font-display: swap;
}

.InterMeduimFont {
    font-family: 'InterMeduim';
}

@font-face {
    font-family: 'InterBold'; /* Use a consistent font family name */
    src: url('/fonts/Inter/Inter-Bold.woff') format('truetype');
    /*font-weight: 400;*/ /* Standard numerical weight for 'regular' */
    font-style: normal;
    font-display: swap;
}

.InterBoldFont {
    font-family: 'InterBold';
}

@font-face {
    font-family: 'InterRegular'; /* Use a consistent font family name */
    src: url('/fonts/Inter/Inter-Regular.woff') format('truetype');
    /*font-weight: 400;*/ /* Standard numerical weight for 'regular' */
    font-style: normal;
    font-display: swap;
}

.InterRegularFont {
    font-family: 'InterRegular';
}

.logo {
    float: left;
    margin-top: 10px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin-left: 30px;
    margin-bottom: 10px;
}

.breadcrumbbar {
    font-size: 15px;
}

.breadcrumStylling {
    color: #0d1a28;
    text-decoration: none;
    padding: 5px 10px; /* Give it some padding so the background color has space */
    transition: background-color 0.3s ease;
    border-radius: 15px; /*
        Smooth transition for hover effect */
}

    .breadcrumStylling:hover {
        background-color: #0d1a28; /* Light gray background on hover */
        color: #0056b3; /* Optional: Change text color on hover */
        text-decoration: none; /* Optional: Add underline on hover */
        border-radius: 15px;
    }

a {
    color: #00c2ff;
    cursor: pointer;
}

.dataTables_info{
    display:none;
}

.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.78);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.input-group {
    position: relative;
    display: table!important;
    border-collapse: separate;
    display: table-cell;
}

.btn-breadcrumb {
    width: 100%;
    color: black;
    display: inline-block;
    padding-top: 18px;
    padding-bottom: 10px;
    padding-left: 10px;
    background-color: #929497;
    color: black;
}

.btn-breadcrumbInTheSite {
    width: 95%;
    background-color: #929497;
    color: black;
    margin-left: 9px;
    padding-left: 4%;
    margin-top: -9px;
    margin-bottom: 0.5%;
    padding-bottom: 12px;
    padding-top: 13px;
    border-radius: 10px;
}

.swal2-icon {
    background-color: black;
}

.swal2-icon-content{
    color:white;
}

.swal-title {
    font-family: 'InterSemiBold' !important; /* Replace 'Roboto' with your font name */
}

.swal-text {
    font-family: 'InterSemiBold' !important; /* Replace 'Roboto' with your font name */
}

.swal2-title {
    font-family: 'InterSemiBold' !important; /* Replace 'Roboto' with your font name */
}

.swal2-input-label {
    font-family: 'InterSemiBold' !important; /* Replace 'Roboto' with your font name */
}

.swal2-validation-message {
    font-family: 'InterSemiBold' !important; /* Replace 'Roboto' with your font name */
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: red;
}

The issue is that the navigation bar is wrapping. Here's the fix:
CSS:
css.navigation-bar {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 25px;
    background: transparent;
    border: none;
    flex-wrap: nowrap; /* Prevent wrapping */
    width: auto;
}

.nav-item {
    color: white;
    font-size: 12px;
    padding: 12px 20px;
    text-decoration: none;
    background-color: #0d1a28;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0; /* Prevent items from shrinking */
}

    .nav-item:hover {
        background-color: #1a2b3d;
        color: white;
    }

    .nav-item.active {
        background-color: #2f4150;
        color: white;
    }

        /* Create the flow effect into top bar */
        .nav-item.active::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 0;
            right: 0;
            height: 8px;
            background-color: #2f4150;
            clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
        }

    .nav-item i {
        margin-right: 4px;
        color: white;
    }

.sign-out-btn {
    background: transparent;
    border: 1px solid #bdc3c7;
    color: #bdc3c7;
    padding: 5px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    margin-right: 5px;
    transition: all 0.3s;
}

    .sign-out-btn:hover {
        background: #bdc3c7;
        color: #1a252f;
    }

.filters {
    background: white;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.switch-icon-gradient {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: #0d1a28;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    /* Hidden by default */
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    pointer-events: none;
}

.image-container:hover .switch-icon-gradient {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.switch-icon-gradient:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
}

.switch-icon-gradient svg {
    width: 14px;
    height: 14px;
    fill: white;
}

#HSEReqbtn{
    background-color: #67676a;
    color:white;
}

    #HSEReqbtn:hover {
        background-color: #1a252f;
        color: white;
    }

input {
    /*    margin-bottom: 15px;*/
    /*    margin-top: 5px;*/
    border-radius: 5px;
    border-style: none;
}

#custom-search-container {
    width: 8%;
/*    background-color: red;*/
}

.table-container {
/*    background: white;*/
    border-radius: 8px;
    overflow: hidden;
/*    box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
}

textarea {
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    height: 30px;
    font-family: 'InterRegular';
    color: #67676a;
    font-size: 12px;
}

.section-headerLogIn {
    display: flex;
    align-items: center;
    padding: 15px 0;
    position: relative;
    border-top: 1px solid #e6e7e8;
    border-bottom: 1px solid #e6e7e8;
    margin-bottom:10px;
}

    .section-headerLogIn > i,
    .section-headerLogIn > .InterBoldFont {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .section-headerLogIn label {
        margin-left: auto;
        margin-bottom: 0;
    }

.dashboard-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

    .section-headerLogIn select {
        width: auto;
        min-width: 150px;
    }

.loggedInOptions-icon {
    width: 65px;
    height: 65px;
    border-radius: 10%;
    object-fit: cover;
    border: 1px solid #e6e7e8;
    cursor:pointer;
    margin-left: 15px;
}

.swal-icon--warning__body, .swal-icon--warning__dot{
    background-color:black;
}

.swal-icon swal-icon--warning {
    background-color: black;
}

.section-header {
    text-align: center;
    gap: 10px;
    font-size: 16px;
    /*border-radius: 8px;*/
    background: white;
    margin-bottom: 10px;
    color: black;
    padding: 40px 0;
    border-top: 1px solid #e6e7e8;
    border-bottom: 1px solid #e6e7e8;
}

.filter-label {
    font-size: 12px;
    color: #2c3e50;
}

.options-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    object-fit: contain;
    border: 1px solid #e6e7e8;
}

.loggedInOptions-icon {
    width: 65px;
    height: 65px;
    border-radius: 10%;
    object-fit: cover;
    border: 1px solid #e6e7e8;
    float: right;
}

.filter-btn, .tab-btn {
    padding: 7px 12px;
    border: none;
    /*background: #ecf0f1;*/
    color: #7f8c8d;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s;
}

    .filter-btn.active, .tab-btn.active {
        background: #5a6c7d;
        color: white;
    }

.content {
    padding: 1px 40px;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

.pro-badge {
    background: #2f4150;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}



.dashboard-btn {
    background-color: #5a6c7d;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

    .dashboard-btn:hover {
        background-color: #4a5c6d;
    }

.ntt-btn {
    background: #1a252f;
    color: white;
    width:220px;
    padding: 7px 12px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 12px;
}

.companies-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.company-card {
    background-color: #e8e8e8;
    border-radius: 5px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    width: 280px;
    text-align: center;
}

.company-name {
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.company-logo-circle {
    width: 180px;
    height: 180px;
    background-color: white;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ddd;
}

    .company-logo-circle img {
        max-width: 140px;
        max-height: 140px;
        border-radius: 25%;
    }

.pull-right{
    text-align:right;
}

.pull-left {
    text-align: left;
}

select {
    /*margin-top: 10px;*/
    color: #67676a;
    height: 30px;
    background-color:white;
    font-size: 12px;
    border: 1px solid #d3d3d3;
    border-radius: 5px;
}

select option:hover{
    background-color:red!important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    /* Change the background color on hover */
    background-color: #e6e7e8 !important; /* Example: A darker blue */
    /* Change the text color on hover */
    color: black !important; /* Example: White text */
}

input[type="text"] {
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    height: 30px;
    font-family: 'InterRegular';
    color: #67676a;
    font-size: 12px;
}

input[type="date"] {
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    height: 30px;
    font-family: 'InterRegular';
    color: #67676a;
    font-size: 12px;
}

.labelFontSize{
    font-size:12px!important;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #0d1a28;
    /*margin-top: -10px;*/
    margin-left: -10px;
    margin-right: -10px;
}

.search-input {
    background-color: #d7d8d9;
    border-radius:5px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 12px;
    font-family: 'InterSemiBold';
    color: #95a5a6;
    margin-top: -35px;
}

    .breadcrumb i {
        color: #95a5a6;
    }

    .breadcrumb span {
        color: #95a5a6;
    }

    .breadcrumb .active {
        color: #2c3e50;
        /*font-weight: 600;*/
    }

html, body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    display: grid;
    grid-template-rows: auto 1fr auto;
    margin-bottom: 60px;
    background-color: white;
}

.footer {
/*    position: absolute;*/
    bottom: 0;
    width: 100%;
    /*background-color: #eee;*/ /* Example footer background */
    text-align: center;
    padding: 10px 0;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.text-center{
    text-align:center;
}

.btn {
    padding: 7px 12px;
    border: none;
    background: #67676a;
    color: white;
    border-radius: 5px;
    font-family: 'InterMeduim';
    cursor: pointer;
    font-size: 12px!important;
    transition: all 0.3s;
}

    .btn:hover {
        background-color: #1a252f;
        color: white;
        font-family: 'InterSemiBold';
    }

#smallPROLogo {
    width: 42px;
    margin-left: auto;
    cursor: pointer;
    height: 25px;
}

*:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn:hover,
.btn:active,
.btn.hover {
    background-color: #0d1a28;
}

.login-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px; /* Adjust width as needed */
    max-width: 100%;
}

#body {
    font-family: sans-serif;
    background-image: url('../Images/SiteAdminLogin/SDC_SHEQEasy LB.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    justify-content: center;
    align-items: center;
    margin: 0;
}

#content {
    flex: 1;
    padding-bottom: 8%;
    box-sizing: border-box;
}

.form-control {
    width: 100%;
    padding: 5px;
/*    border-radius: 5px;*/
    box-sizing: border-box;
    font-size: 13px;
}

a {
    color: blue;
    text-decoration: none;
}

.modal{
    padding:55px!important;
}

    .modal h1 {
        font-size: 16px !important;
        font-weight: normal !important;
        border-radius: 15px !important;
        color: white !important;
        padding-top: 6px !important;
        width: 80% !important;
        margin: 0px auto!important;
        text-align:center;
        margin-bottom: 15px !important;
        padding-bottom: 6px !important;
        background-color: #0d1a28 !important;
    }

.drop-zone {
    border: 2px dashed #ccc;
    padding: 5px;
    text-align: center;
    cursor: pointer;
    font-family: 'InterRegular';
    background-color: white;
    transition: background-color 0.3s ease;
    /*min-width: 150px;*/ /* Adjust as needed */
}

    .drop-zone:hover,
    .drop-zone.dragover {
        background-color: #f0f0f0;
        border-color: #007bff;
    }

.drop-zone-text {
    display: block;
    margin-top: 5px;
    font-family: 'InterMeduim';
    font-size: 0.9em;
    color: #555;
}

.textInput {
    border-radius: 5px;
    background-color: #e8f0fe;
    border-style: hidden;
    text-align: center;
}

.search-icon {
    width: 18px;
    height: 18px;
    color: #6b7280;
}

.select-all-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

    .select-all-checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

    .select-all-checkbox label {
        font-size: 14px;
        color: #333;
        cursor: pointer;
    }

.search-section {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1px 5px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background-color: #f9fafb;
    flex-grow: 1;
    max-width: 200px;
}

    .search-box input {
        border: none;
        background: transparent;
        outline: none;
        font-size: 14px;
        width: 100%;
    }

.main-container {
    display: flex;
    min-height: calc(100vh -);
    /*margin-top: 8px;*/
    position: relative; /* Needed for positioning the toggle button */
}

.form-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-header {
    background-color: #111827;
    color: white;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
}

.form-body {
    padding: 40px;
    padding-right: 70px;
    padding-left: 70px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: start;
}

    .form-row label {
        text-align: right;
        padding-top: 8px;
        font-weight: 500;
    }


/* Sidebar Toggle Button */
.sidebar-toggle {
    position: absolute; /* Position relative to .main-container */
    top: 35px; /* Adjust as needed */
    left: 30px; /* Position it to the left */
    background-color: white;
    color: #67676a;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 1000; /* Ensure it's above other content */
    border-radius: 5px;
    font-size: 1.2em; /* Adjust icon size */
    transition: left 0.3s ease; /* Smooth transition for button movement */
}

.collapsible-menu-item {
    margin-bottom: 5px; /* Space between menu items */
    position: relative; /* For positioning caret */
}

.collapsible-header {
    display: flex; /* Allow text and icon to be on one line */
    justify-content: space-between; /* Push icon to the right */
    align-items: center; /* Vertically align items */
    padding: 10px 15px;
    background-color: #e9ecef; /* Slightly different background for header */
    color: #333;
    cursor: pointer;
    border-radius: 5px;
    font-size: 13px;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-family: 'InterBold';
}

.select2-container--default .select2-results__option{
    font-size:13px!important;
}

    .collapsible-header:hover:not(.disabled) {
        background-color: #dee2e6; /* Hover effect for header */
    }

    .collapsible-header.disabled {
        color: #6c757d;
        cursor: not-allowed;
        background-color: #f2f2f2;
        pointer-events: none; /* Prevent click events */
    }

.collapsible-content {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden; /* Hide overflow during height transition */
    transition: height 0.3s ease-out, opacity 0.3s ease-out; /* Smooth transition for height and opacity */
    height: auto; /* Default for when visible */
    opacity: 1; /* Default for when visible */
    padding-top: 5px; /* Little space above sub-items */
    font-size:13px;
}

    .collapsible-content.hidden {
        height: 0 !important; /* Force height to 0 when hidden */
        opacity: 0; /* Fade out content */
        padding-top: 0;
    }

    /* Sub-items within collapsible content */
    .collapsible-content li {
        padding-left: 20px; /* Indent sub-items */
    }

    .collapsible-content .side-menu-item {
        /* Inherit existing side-menu-item styles */
        font-size: 0.95em; /* Slightly smaller font for sub-items */
        padding: 8px 15px; /* Adjust padding for sub-items */
    }

/* Caret Icon Rotation */
.caret-icon {
    transition: transform 0.3s ease; /* Smooth rotation */
}

.collapsible-header.active .caret-icon {
    transform: rotate(180deg); /* Rotate 180 degrees when active (open) */
}

/* Ensure the disabled state is visually clear for the whole item */
.collapsible-menu-item.disabled .collapsible-header {
    background-color: #f2f2f2; /* Greyed out header */
    color: #6c757d;
    cursor: not-allowed;
    pointer-events: none;
}

    .collapsible-menu-item.disabled .collapsible-header .caret-icon {
        opacity: 0.5; /* Dim caret icon if disabled */
    }

/* When the entire side menu is collapsed, hide all content */
.side-menu.collapsed .collapsible-header,
.side-menu.collapsed .collapsible-content {
    display: none;
}

/* Side Menu Styles */
.side-menu {
    width: 280px;
    background-color: #f8f9fa;
    padding: 20px 15px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    flex-shrink: 0;
    height: 100vh;
    border-right: 1px solid #e0e0e0;
    position: relative; /* For z-index if needed */
    transition: width 0.3s ease, transform 0.3s ease, padding 0.3s ease; /* Smooth transition */
    overflow-x: hidden; /* Hide content that goes beyond the width */
    transform: translateX(0); /* Default position (visible) */
}

    .side-menu.collapsed {
        width: 0; /* Collapse to 0 width */
        padding: 0; /* Remove padding when collapsed */
        /* Alternative for hiding completely off-screen: */
        transform: translateX(-100%); /* Move off-screen to the left */
        box-shadow: none; /* No shadow when hidden */
        border-right: none; /* No border when hidden */
    }

/* Adjust main content margin when sidebar is shown */
.main-content {
    flex-grow: 1;
/*    padding: 20px;*/
    transition: margin-left 0.3s ease; /* Smooth transition for main content shift */
}

/* Adjust toggle button position when sidebar is open (optional, depends on desired look) */
.main-container.sidebar-open .sidebar-toggle {
    left: 260px; /* Move button to the right of the expanded sidebar (250px width + 10px padding) */
}

/* Hide content inside the sidebar when collapsed */
.side-menu.collapsed .side-menu-header,
.side-menu.collapsed .side-menu-list {
    display: none; /* Hide content instantly when collapsed */
    /* Alternatively, you could transition opacity or height if you prefer */
}


/* Existing styles for the sidebar content (header, list, items) still apply when not collapsed */
.side-menu-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    padding-top: 8px;
    border-bottom: 1px solid #ccc;
}

    .side-menu-header h3 {
        font-size: 1.2em;
        color: #333;
        margin: 0;
        font-family: 'InterBold', sans-serif;
    }

.side-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .side-menu-list li {
        margin-bottom: 5px;
    }

.side-menu-item {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #007bff;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-family: 'InterRegular';
    font-size: 13px;
}

    .side-menu-item:hover {
        background-color: #e2e6ea;
        color: #0056b3;
    }

    .side-menu-item.disabled {
        color: #6c757d;
        cursor: not-allowed;
        background-color: #f2f2f2;
        pointer-events: none;
    }

        .side-menu-item.disabled:hover {
            background-color: #f2f2f2;
            color: #6c757d;
        }

.menu-divider {
    border-top: 1px solid #eee;
    margin: 10px 0;
}

/* Styles for your main dashboard content (module-grid, etc.) */
.module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.module-box {
/*    min-height: 120px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}
    /* Ensure the disabled styles for module-box buttons are consistent */
    .module-box[disabled] {
        opacity: 0.6; /* Slightly fade out disabled buttons */
        cursor: not-allowed;
    }

th {
    background-color: #0d1a28 !important;
    color: white;
    font-size: 11px;
    font-weight: normal !important;
    border: 0px solid #ddd !important;
    font-family: 'InterSemiBold';
}

td {
    font-family: 'InterRegular';
    font-size: 11px;
}

select{
    border-style:none;
}

.display-none{
    display:none;
}

.display-block{
    display:block;
}

.aligntableInsideOfADiv {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dataTables_info {
    font-size: 13px;
    font-family: 'InterSemiBoldFont';
}

/*////////////FONT SIZES///////////*/
.fontSize11 {
    font-size: 11px;
}

.fontSize14 {
    font-size: 14px;
}

.fontsize15{
    font-size:15px;
}

.fontSize16 {
    font-size: 16px;
}

.fontSize20 {
    font-size: 20px;
}

.fontSize25 {
    font-size: 25px;
}

.fontSize10 {
    font-size: 10px;
}

/*/////////////MARGINS////////////*/
.margin-top10 {
    margin-top: 10px;
}

.margin-top15{
    margin-top:15px;
}

.margin-top20 {
    margin-top: 20px;
}


/*////////////PADDING//////////*/
.padding-top15 {
    padding: 15px;
}