﻿/* Fonts */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

/* remove after chrtismas */
.holiday-hat {
    background-image: url(../Images/hat.png);
}
/*remove after chrtismas*/

body {
    font-family: Inter !important;
}

    body input, body select {
        font-family: Inter !important;
    }

maxLengthable480
.spanMaxWidth {
    width: 100%;
}

/* Header Styles */
.header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 1rem !important;
    background-color: rgb(26, 39, 62) !important; /* Bootstrap-like navbar color */
    color: white !important;
    width: auto;
    line-height: 1.2rem;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 0.25rem;
    box-shadow: none;
    align-items: center;
    font-size: 0.75rem;
    font-weight: bold;
    font-family: Inter, Helvetica, Sans-Serif;
    vertical-align: middle;
    border-radius: 0.25rem;

}

/* Header Content Styles */
.header-content {
    display: flex !important;
    align-items: center !important;
}

/* Logo Styles */
.logo {
    height: 50px !important;
    margin-right: 15px !important;
}

/* Headline Link Styles */
.headline-link {
    color: white !important;
    text-decoration: none !important;
    font-size: 1.2rem !important;
}

/* User Controls Styles */
.user-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.icon, .person-name-label, .notification-count {
    margin-right: 10px; /* Adjust spacing between elements as needed */
}

/* Icon Link Hover Styles */
.icon-link:hover {
    color: #dcdcdc !important;
}

/* Notification Icon Styles */
.icon {
    position: relative !important; /* This makes it a positioning context for absolutely positioned children */
    margin-left: 10px !important;
    margin-right: 10px !important;
    font-size: 1.5rem !important;
}

/* Notification Count Styles */
.notification-count {
    position: absolute !important; /* Position absolutely within .icon-item */
    top: -10px !important; /* Align to the top of .icon-item */
    right: -10px !important; /* Align to the right of .icon-item */
    background-color: rgb(143, 38, 57) !important; /* Notification count background color */
    color: white !important; /* Notification count text color */
    border-radius: 50% !important; /* Make it round */
    padding: 2px 5px !important; /* Padding around the number */
    font-size: 0.75rem !important; /* Smaller font size for the count */
    min-width: 20px !important; /* Minimum width to ensure it's round if there's only one digit */
    height: 20px !important; /* Height to match min-width for a perfect circle */
    display: flex !important; /* Use flex to center content */
    align-items: center !important; /* Center vertically */
    justify-content: center !important; /* Center horizontally */
    font-weight: bold !important; /* Optional: make the font bold */
    box-shadow: 0 0 2px #000 !important; /* Optional: add a shadow for better visibility */
}

/* Icon Link Styles */
.icon-link {
    color: white !important;
    font-size: 2rem !important;
    background: none !important;
    border: none !important;
}

/* Person Name Label Styles */
.person-name-label {
    color: white !important;
    font-size: 1rem !important;
    background: rgb(26, 39, 62);
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
    /*border*/
    border: 2px solid #fff !important;
    margin-left: 10px !important;
}

.person-name-label-initials {
    display: none;
}

/* Style for all table elements */
.MainGrid {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse; /* Use collapse for unified border */
    border: 1px solid #dee2e6; /* Gray border around the table */
    border-radius: 0.25rem; /* Rounded corners for the table */
}



    .MainGrid th,
    .MainGrid td {
        padding: 0.75rem; /* Consistent padding */
        vertical-align: top;
        border-top: 1px solid #dee2e6; /* Light border for cells */
    }

    /* Table header with a light background */
    .MainGrid thead th {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6; /* Thicker border for header */
        background-color: #f8f9fa; /* Light gray background for the header */
        font-weight: bold; /* Bold font for header */
    }

    /* Hover effect for rows */
    .MainGrid tbody tr:hover {
        background-color: #f1f3f5;
    }
    

table {
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse; /* Use collapse for unified border */
    border: 1px solid #dee2e6; /* Gray border around the table */
    border-radius: 0.25rem; /* Rounded corners for the table */
}



    table th,
    table td {
        padding: 0.75rem; /* Consistent padding */
        vertical-align: top;
        border-top: 1px solid #dee2e6; /* Light border for cells */
    }

    /* Table header with a light background */
    table thead th {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6; /* Thicker border for header */
        background-color: #f8f9fa; /* Light gray background for the header */
        font-weight: bold; /* Bold font for header */
    }

    /* Hover effect for rows */
    table tbody tr:hover {
        background-color: #f1f3f5;
    }




.height1 {
    height: 30px;
}

.height1Imp {
    height: 30px !important;
}

.height2 {
    height: 60px;
}

.height3 {
    height: 90px;
}

.height4 {
    height: 120px;
}

.height5 {
    height: 150px;
}

.height6 {
    height: 180px;
}

.width5px {
    width: 5px;
}

.width5px-important {
    width: 5px !important;
}

.width10px {
    width: 10px;
}

.width10px-important {
    width: 10px !important;
}

.width05 {
    width: 15px;
}

.width25px {
    width: 25px !important;
}

.width1 {
    width: 30px;
}

.width45 {
    width: 45px;
}

.width40 {
    width: 40px;
}

.width50px-important {
    width: 50px !important;
}

.width2 {
    width: 60px;
}

.width2-important {
    width: 60px !important;
}

.width75 {
    width: 75px;
}

.width75px-important {
    width: 75px !important;
}

.width3 {
    width: 90px;
}

.width3-important {
    width: 90px !important;
}

.width4 {
    width: 120px;
}

.width4-important {
    width: 120px !important;
}

.width105 {
    width: 105px;
}

.width105px-important {
    width: 105px !important;
}

.width130 {
    width: 130px;
}

.width135 {
    width: 135px;
}

.width135-important {
    width: 135px !important;
}

.width147 {
    width: 147px;
}

.width5 {
    width: 150px;
}

.width130-important {
    width: 130px !important;
}

.width5-important {
    width: 150px !important;
}

.width165-important {
    width: 165px;
}

.width6 {
    width: 180px;
}

.width6-important {
    width: 180px !important;
}

.width7 {
    width: 210px;
}

.width7-important {
    width: 210px !important;
}

.width225px-important {
    width: 225px !important;
}

.width8 {
    width: 240px;
}

.width8-important {
    width: 240px !important;
}

.width276 {
    width: 180px;
}

.width9 {
    width: 270px;
}

.width10 {
    width: 300px;
}

.width550px {
    width: 550px;
}

.width92pc {
    width: 92% !important;
}

.width78p5pc {
    width: 78.5%;
}

.maxwidth92pc {
    max-width: 92% !important;
}

.max_width1 {
    max-width: 30px;
}

.max_width2 {
    max-width: 60px;
}

.max_width3 {
    max-width: 90px !important;
}

.min_width105 {
    min-width: 105px !important;
}

.offset01 {
    margin-left: 10px;
}

.offset02 {
    margin-left: 20px;
}

.offset025 {
    margin-left: 25px;
}

.offset03 {
    margin-left: 30px;
}

.offset04 {
    margin-left: 40px;
}

.offset05 {
    margin-left: 50px;
}

.size-12 {
    font-size: 12px;
}

.size-14 {
    font-size: 14px;
}

.size-16 {
    font-size: 16px;
}

.size-18 {
    font-size: 18px;
}

.size-21 {
    font-size: 21px;
}

.size-24 {
    font-size: 24px;
}

.size-36 {
    font-size: 36px;
}

.size-48 {
    font-size: 48px;
}

.size-60 {
    font-size: 60px;
}

.size-72 {
    font-size: 72px;
}

.height1 {
    height: 50px;
}

.height2 {
    height: 80px;
}

.height3 {
    height: 110px;
}

.height4 {
    height: 140px;
}

.height5 {
    height: 170px;
}

.height6 {
    height: 200px;
}

.text-align-right {
    text-align: right;
}

.text-align-right-imp {
    text-align: right !important;
}

.vertical-top {
    vertical-align: top !important;
}

label {
    display: inline-block !important;
    margin: 0px;
}

.selected-row-red {
    background-color: #B30F28 !important;
}

.component:has(.inline-component) {
    display: inline-table                                                                                                                !important;
}

.gray-backgroupnd {
    background-color: #E2E2E2;
    padding: 5px;
}

.smaller-text {
    font-size: 0.7em !important;
}

.login-body {
    background: url("../Images/VUZF.svg");
    background-repeat: no-repeat;
    background-size: cover;
}
/* global tbx settings start*/
.fullSizeTxb {
    max-width: 90% !important;
}

.container input[type="text"], .container-fluid input[type="text"],.container-fluid input[type="password"], .container-fluid select, .container select, .container input[multiple], .container-fluid input[multiple] {
    max-width: 100%;
    width: 95%;
}

.container p > span, .container-fluid p > span {
    font-size: 0.85em;
}
/*global tbx settings end*/

/*red line footer start*/
.container-footer {
    padding-right: 2px !important;
    width: 100% !important;
}

.modal-footer {

}

.footer-a a {
    color: white !important;
    text-decoration: none !important;
}

    .footer-a a:hover {
        color: white !important;
        text-decoration: underline !important;
        cursor: pointer !important;
    }

.QuickAccess a {
    color: #999999;
    text-decoration: none;
    cursor: default !important;
}

    .QuickAccess a:focus,
    .QuickAccess a:hover {
        color: #999999;
        text-decoration: underline;
        cursor: pointer !important;
    }

/*red line footer end*/

.modalPopupFixedWidthLargeNoMargin {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    border-radius: 5px;
    margin-bottom: 3%;
    position: absolute;
    left: 2%;
    top: 10px;
    width: 1600px; /*1550px; стария вариант */
    z-index: 99999;
    padding-bottom: 10px;
}
.modalPopupFixedWidthLargePrint {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    border-radius: 5px;
    margin-bottom: 3%;
    position: absolute;
    left: 2%;
    top: 10px;
    width: 1630px;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopupFixedWidthLarge {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 10%;
    top: 10px;
    width: 1200px;
    border-radius: 5px;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopupFixed {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 10%;
    border-radius: 5px;
    top: 10px;
    width: 1000px;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopupInnerWidthLarge {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 0%;
    top: 0px;
    width: 1200px;
    border-radius: 5px;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopupInnerWidthLarge1000 {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    border-radius: 5px;
    position: absolute;
    left: 0%;
    top: 0px;
    width: 1000px;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopup {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 10%;
    border-radius: 5px;
    top: 10px;
    border-radius: 5px;
    width: 75%;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopupError {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 10%;
    border-radius: 5px;
    top: 10px;
    border-radius: 5px;
    width: 75%;
    z-index: 999999;
    padding-bottom: 10px;
}

.modalPopupLarge {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 0%;
    top: 0px;
    border-radius: 5px;
    width: 100%;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopupLargeInfoPage {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    display: contents;
    margin-bottom: 3%;
    position: absolute;
    left: 0%;
    top: 0px;
    border-radius: 5px;
    width: 100%;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopup95pc {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 2%;
    top: 10px;
    width: 95%;
    z-index: 99999;
    border-radius: 5px;
    padding-bottom: 10px;
}

.modalPopup90pc {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 5%;
    top: 10px;
    width: 90%;
    border-radius: 5px;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopup85pc {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 7%;
    top: 10px;
    width: 85%;
    border-radius: 5px;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopup80pc {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    border-radius: 5px;
    left: 10%;
    top: 10px;
    width: 80%;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopup74pc {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-radius: 5px;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 13%;
    top: 10px;
    width: 74%;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopup72pc {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    border-radius: 5px;
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 14%;
    top: 10px;
    width: 72%;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopup70pc {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 15%;
    top: 10px;
    border-radius: 5px;
    width: 70%;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopup65pc {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 17%;
    border-radius: 5px;
    top: 10px;
    width: 65%;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopup50pc {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 17%;
    border-radius: 5px;
    top: 10px;
    width: 50%;
    z-index: 99999;
    padding-bottom: 10px;
    /*margin-top:45px;*/
}

.modalPopup-dynamicChanged {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    border-radius: 5px;
    left: 10%;
    top: 10px;
    width: 80%;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopup-middle {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 20%;
    top: 10px;
    border-radius: 5px;
    width: 60%;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopupSlave {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    position: absolute;
    left: 10%;
    top: 10px;
    border-radius: 5px;
    width: 80%;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopupSearch {
    background-color: #ffffdd;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    position: absolute;
    left: 13%;
    top: 10px;
    border-radius: 5px;
    width: 80%;
    z-index: 99999;
    padding-bottom: 10px;
}

    .modalPopupSearch a {
        color: Black;
    }

.modalPopup-Centered-Large {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: fixed !important;
    left: 0%;
    top: 0% !important;
    border-radius: 5px;
    width: 100%;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopup-Centered {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 20%;
    top: 10% !important;
    width: 54%;
    z-index: 99999;
    border-radius: 5px;
    padding-bottom: 10px;
}

.modalPopup50pc {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 25%;
    top: 10% !important;
    width: 50%;
    border-radius: 5px;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopup40pc {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 30%;
    top: 10% !important;
    border-radius: 5px;
    width: 40%;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopup-CenteredFixedWidth {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: fixed !important;
    left: 20%;
    top: 5% !important;
    width: 750px;
    z-index: 99999;
    border-radius: 5px;
    padding-bottom: 10px;
}

.modalPopup-Small-CenteredFixedWidth {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: fixed !important;
    left: 20%;
    top: 5% !important;
    width: 45%;
    z-index: 99999;
    border-radius: 5px;
    padding-bottom: 10px;
}

.modalPopupInOutDoc {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 14%;
    top: 10px;
    width: 75%;
    border-radius: 5px;
    z-index: 99999;
    padding-bottom: 10px;
}

.modalPopupFixedSchedule {
    background-color: White;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    /*   padding: 10px;*/
    display: block;
    margin-bottom: 3%;
    position: absolute;
    left: 10%;
    top: 10px;
    width: 1000px;
    z-index: 99999;
    padding-bottom: 10px;
    zoom: 1.5;
    -ms-zoom: 1.5;
    -webkit-zoom: 1.5;
    -moz-transform: scale(1.5,1.5);
    transform-origin: 20px 20px;
}

.blind {
    /* position element so the z-index can be set     */
    position: fixed;
    /* set z-index so the blind will cover all page content    */
    z-index: 9999;
    /* set the top, left, width and height so the blind covers the browser window */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    /* set the background to a suitably dark tone */
    /* Theoretically for IE 8 & 9 (more valid) */
    /* ...but not required as filter works too */
    /* should come BEFORE filter */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    /* This works in IE 8 & 9 too */
    /* ... but also 5, 6, 7 */
    filter: alpha(opacity=50);
    /* Older than Firefox 0.9 */
    -moz-opacity: 0.5;
    /* Safari 1.x (pre WebKit!) */
    -khtml-opacity: 0.5;
    /* Modern!
	/* Firefox 0.9+, Safari 2?, Chrome any?
	/* Opera 9+, IE 9+ */
    opacity: 0.5;
}

.blind2 {
    /*/* position element so the z-index can be set     */
    position: fixed;
    /* set z-index so the blind will cover all page content    */
    z-index: 99999;
    /* set the top, left, width and height so the blind covers the browser window */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    /* set the background to a suitably dark tone */
    /* Theoretically for IE 8 & 9 (more valid) */
    /* ...but not required as filter works too */
    /* should come BEFORE filter */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    /* This works in IE 8 & 9 too */
    /* ... but also 5, 6, 7 */
    filter: alpha(opacity=33);
    /* Older than Firefox 0.9 */
    -moz-opacity: 0.33;
    /* Safari 1.x (pre WebKit!) */
    -khtml-opacity: 0.33;
    /* Modern!
	/* Firefox 0.9+, Safari 2?, Chrome any?
	/* Opera 9+, IE 9+ */
    opacity: 0.33;
}

.blue {
    color: #005580;
}

.cssPager span {
    padding: 2px 4px 2px 4px;
    color: White;
    background-color: rgb(52, 78, 124); /*#B3102B;*/
    /*background-color: #91193B;*/ /*#B3102B;*/
}

.marked-table-row {
    background-color: #FFC0CB;
}

.MainGrid {
    width: 100%;
    background-color: White;
}

.MainGrid94pc {
    width: 94%;
    background-color: White;
}

.MainGridSmall {
    font-size: small;
}

.Grid-No-Padding td {
    padding: 0px !important;
}

.MainGrid tr:first-child th {
    background-color: #F5F5F5;
}

.MainGrid th {
    text-align: center !important;
}

.MainGrid a {
    color: Black;
}

.MainGrid tr:hover td {
}

.MainGrid .header-light a {
    color: #66b3ff !important;
}

.GridSchShipCount {
}

    .GridSchShipCount th {
        padding: 5px 5px 5px 5px !important;
        font-size: 14px !important;
    }

    .GridSchShipCount td {
        padding: 7px 7px 7px 7px !important;
    }

.GridSchShipCountPadTh {
    padding: 5px 5px 5px 5px !important;
}

.MainGrid_td_item_center {
    text-align: center !important;
}

.MainGrid_td_item_right {
    text-align: right !important;
}

.MainGrid_tr_diff_1 {
    background-color: #FFCCE6 !important;
}

    .MainGrid_tr_diff_1:hover td {
        background-color: #FFACED !important; /*FFBDF4*/
    }

.MainGrid_tr_diff_2 {
    background-color: #FFFF95 !important;
}

    .MainGrid_tr_diff_2:hover td {
        background-color: #FFFF84 !important;
    }

.MainGrid_td_diff_1 {
    background-color: #FDFF49 !important;
}

    .MainGrid_td_diff_1:hover {
        background-color: #FDFF49 !important;
    }

.MenuGrid td {
    padding-left: 30px !important;
    padding-bottom: 1px !important;
    padding-top: 1px !important;
    padding-right: 1px !important;
}

    .MenuGrid td:hover {
        background: 0 !important;
    }

.MenuGrid-th-font-size {
    font-size: 13px !important;
}

.SubMenuGrid td {
    padding-left: 30px !important;
    padding-bottom: 1px !important;
    padding-top: 1px !important;
    padding-right: 1px !important;
}

.LinkMenuGrid td {
    padding-left: 30px !important;
    padding-bottom: 1px !important;
    padding-top: 1px !important;
    padding-right: 1px !important;
}

    .LinkMenuGrid td:hover {
        background: #F5F5F5 !important;
    }

.tbx_align_right {
    text-align: right !important;
}

.ColumnTotal {
    background: #F5F5F5 !important;
}

.bold {
    font-weight: bold;
}

.ajax__tab_darkblue-theme > span {
    font-weight: bold;
    font-family: Inter, Helvetica, Sans-Serif;
}

.ajax__tab_darkblue-theme a:focus {
    outline: 1px;
}

.ajax__tab_darkblue-theme .ajax__tab_header {
    /*border-bottom: solid 2px rgb(26, 39, 62);*/ /*#B3102B;*/
    /*border-bottom: solid 2px #91193B;*/ /*#B3102B;*/
    overflow-x: auto;
    display: flex;
}

    .ajax__tab_darkblue-theme .ajax__tab_header .ajax__tab_outer {
        color: #000;
        background: White;
        margin: 0px 0.16em 0px 0px;
        padding: 1px 0px 1px 0px;
        vertical-align: bottom;
        /*border: solid 1px #a3a3a3;*/
        border: solid 1px rgb(52, 78, 124);
        border-bottom-width: 0px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        white-space: nowrap;
    }

    .ajax__tab_darkblue-theme .ajax__tab_header .ajax__tab_tab {
        color: #000;
        padding: 0.35em 0.75em;
        margin-right: 0.01em;

    }

.ajax__tab_darkblue-theme .ajax__tab_hover .ajax__tab_outer {
    background: #213372; /*#1d2d65;*/ /*#890011;*/
}

    .ajax__tab_darkblue-theme .ajax__tab_hover .ajax__tab_outer span {
        color: White;
        white-space: nowrap;
    }

.ajax__tab_darkblue-theme .ajax__tab_active .ajax__tab_tab {
    color: #fff;
}

.ajax__tab_darkblue-theme .ajax__tab_active .ajax__tab_outer {
    background: rgb(52, 78, 124); /*#B3102B;*/
    /*border: solid 1px rgb(52, 78, 124) !important;*/ /*#B3102B!important;*/
    border: solid 1px rgb(52, 78, 124) !important; /*#B3102B!important;*/
    /*background: #91193B;*/ /*#B3102B;*/
    /*border: solid 1px #91193B !important;*/ /*#B3102B!important;*/
}

.ajax__tab_darkblue-theme .ajax__tab_body {
    padding: 0.25em 0.5em;
    background-color: White;
    border: solid 1px rgb(26, 39, 62);
    /*border-top-width: 0px;*/
    border-bottom-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}



.divTable {
    display: table;
    width: auto;
    border-spacing: 1px;
}

.divCellHead {
    float: left;
    display: table-column;
    width: 250px;
    background-color: #ccc;
    border: 1px solid black;
}

.divRow {
    display: table-row;
    width: auto;
}

.divCell {
    float: left;
    display: table-column;
    width: 300px;
    border: 0px solid black;
}

.divCell600 {
    float: left;
    display: table-column;
    width: 600px;
    border: 0px solid black;
}

.divCellEmpty {
    float: left;
    display: table-column;
    width: 100%;
    border: 1px solid black;
    height: 2px;
}



.ResultContext {
    /*height: 20px;*/
    width: 100%;
    margin-top: 2%;
    margin-bottom: 2%;
}

.ResultContextPage {
    height: 20px;
    width: 100%;
    margin-top: 10px !important;
    margin-bottom: 20px !important;
}

.EmptySpace {
    height: 1px;
    width: 100%;
    margin-top: 1.5%;
    margin-bottom: 2%;
}

.alert {
    width: 100% !important;
}

.TextBoxDescription {
    width: 80%;
}

.TextBoxDescription90 {
    width: 90%;
}

.TextBoxAnswer {
    width: 100%;
}

.DropDownListTime {
    width: 90px;
}

/*header control styles */


.custom-desing {
    background-color: #91193B;
    padding-left: 1%;
    padding-bottom: 1%;
    padding-top: 15px;
    color: White;
}

#headline-info {
    /*padding-left: calc(50% - 300px);*/
    padding-left: calc(40%);
    font-family: Inter;
    font-size: 1.9em;
}

    #headline-info:hover {
        text-decoration: none;
        color: White;
    }

#headline {
    font-family: Inter;
    text-align: center;
}

.headline {
    font-family: Inter;
    text-align: center;
}
/* login form*/
#login-form {
    margin-top: 1.5%;
}

#error-login {
    color: Red;
}

#tbxUserName, #tbxPassword {
    height: 30px;
}

/*main-css*/

html, body {
    margin: 0;
    padding: 0;
    height: 100%; /* calc(100% - 20px); /* 95% background-color:#E5E5E5; */
}

/*footer*/
#footer-text, #smaller-text-footer {
    text-align: center;
    font-size: 0.7em;
}

#copyright {
    text-align: center;
    font-size: 0.75em;
    color: White;
}

    #copyright a {
        color: white !important;
        text-decoration: none !important;
    }

        #copyright a:hover {
            color: white !important;
            text-decoration: underline !important;
            cursor: pointer !important;
        }

#smaller-text-footer {
    display: none;
}

#footer {
    /*Changed from -999 to 0*/
    z-index: 0;
    position: fixed;
    bottom: 0;
    margin-left: 0px; /*position:relative;    top:90%;*/
}

.footer-line {
    background-color: rgb(26, 39, 62) !important; /*#b3102b;*/
    height: 20px;
    /*width: 100%!important;*/
    vertical-align: middle;
}

/* the most outer container*/

input[type="text"] {
    min-height: 30px !important;
}


/* tabs adminstration container*/
.main-container {
    padding-left: 2%;
    padding-right: 2%;
}

#ContentPlaceHolder_TabContainer_tabMainData_UNIMainData_pnlFormData {
    padding-bottom: 1%;
}

#ContentPlaceHolder_StudentMainData_TabContainer {
    margin-top: 2%;
}

#ContentPlaceHolder_KeyType_TabContainer_tabValues_bntNewKeyValue {
    margin-top: 1%;
    margin-left: 0 !important;
}

.margin-top10px
/*grids styles*/
.MainGrid {
}

.exitBtn a, .exitBtn input {
    /* position: absolute;
    top: 1%;
    left: 88%; */
    margin-right: 25px;
    float: right;
    display: inline-block;
}

.saveBtn {
    position: absolute;
    top: 1%;
    left: 3%;
    width: 100%;
}

    .saveBtn a {
        color: #808080;
        font-weight: bold;
    }

        .saveBtn a:hover {
            text-decoration: none;
        }



.buttonsTopPanel {
    /*position: absolute;
    top: 60px;
    left: 3%;*/
    width: 100%;
    margin: 10px 0px 0px 0px;
}

.buttonsRow {
    left: 3%;
    width: 100%;
}

.buttonsRowRight {
    float: right;
    width: 100%;
    margin-top: 10px;
}

.rightBtn input {
    float: right;
    margin-left: 5px;
}

.leftBtn input {
    display: inline-block;
    float: left;
    margin-left: 5px;
}

.leftBtn a {
    display: inline-block;
    float: left;
    margin-left: -10px;
}

.nowrap-text {
    white-space: nowrap;
}

.wrap-text {
    white-space: normal;
}

.max-width70 {
    width: 500px;
}

.lbResultSaveSuccess {
    color: Green;
}

.lbResultSaveError {
    color: Red;
}

/* adding new item pop up styles*/
.pnlErrorsPopUp {
    top: 5%;
    z-index: 100000;
}

.newItemPopUpTitle {
    background-color: #91193B; /*#B51029;*/
    border-radius: 4px;
    box-shadow: 5px 5px 5px #888888;
}

    .newItemPopUpTitle h4 {
        color: White;
    }

/*.newItemPopUp {
    background-color: rgb(52, 78, 124);
    width: 100%;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 10px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    margin-left: auto;*/ /* This will push the div to the right */
/*}

    .newItemPopUp h4 {
        color: White;
    }*/
.newItemPopUp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(52, 78, 124);
    padding: 7px 10px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.offset01 h4 {
    margin: 0;
    color: #fff;
}

.pnl-size-icons {
    margin-left: auto; /* Ensures the button is pushed to the right */
}

.span12Separator {
    height: 10px;
    display: block;
    width: 100%;
}

#btns-students-holder {
    z-index: 999;
    background-color: White;
}

.alphabet {
    background-color: #ededed;
    / Simplified background color / border-radius: 2px;
    / Unified border-radius property / margin-bottom: 2px;
    border: 1px solid rgb(26, 39, 62);
    display: inline-block;
    color: Black; /*#91193B;*/
    font-family: sans-serif;
    / Added fallback font / font-size: 11px;
    font-weight: 300;
    height: 15px;
    line-height: 15px;
    /*width: 75%;*/
    width: 100%;
    text-align: center;
    margin-right: 1px;
}

    .alphabet:hover {
        background-color: rgb(52, 78, 124) !important;
        /*background-color: #91193B !important;*/
        color: #ffffff !important;
    }

    .alphabet:active {
        background-color: rgb(52, 78, 124) !important;
        /*background-color: #91193B !important;*/
        color: #ffffff !important;
    }

.alphabet-additional {
    width: auto !important;
/*    padding: 5% 7% 14% 7% !important;*/
    margin-bottom: 5%;
}

.newItemAdd {
    margin-left: -32% !important;
}

.activeLatter {
    /*background-color: #91193B !important;*/
    background-color: #344e7c !important;
    color: White !important;
}


.MainMenuGrid {
    background-color: White;
}

.bg-color-white {
    background-color: White; /*White!important; */
}

.color-white {
    color: White;
}

.hidden {
    display: none;
}

.scheduleDaysOFweek {
    height: 80px !important;
    width: 120px !important;
    vertical-align: middle !important;
    font-size: 0.9em;
}

.scheduleClassPeriod {
    width: 60px !important;
    font-size: 0.7em;
}

.classHolder {
    height: 80px !important;
    width: 60px !important;
    border: 1px solid black !important;
}

.schedulePart {
    /*   display:inline-block;*/
}

.scheduleDaysOfWeek {
    float: left;
    padding-top: 15px;
}

.scheduleClasses {
    float: inherit; /*padding-top:-40px;*/
}

#scheduleTable th, #scheduleTable td {
    padding: 0;
}

#scheduleTable tr td {
    vertical-align: middle;
    text-align: center;
}

#scheduleTable tr:hover td, #scheduleTable tr:hover th {
    background-color: inherit;
}

#scheduleTable tr td:hover {
    background-color: #f5f5f5;
}

#scheduleTable tr td .scheduleCell:hover {
    background: url("../css/img/glyphicons-halflings.png") 0 -96px;
}

.scheduleCell {
    margin-left: 37%;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    text-align: center;
}


#scheduleTable .ui-selecting {
    background: #FECA40;
}

#scheduleTable .ui-selected {
    background: #F39814;
    color: white;
}

#scheduleInfo, .scheduleInfo {
    margin-left: 30%;
}

.no-margin-imp {
    margin-left: 5% !important;
}

.marked-class {
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
}

    .marked-class:hover {
        opacity: 0.7;
    }

.btn-delete-class {
    position: absolute;
    top: 10px;
}

.hr-style-gray {
    color: Gray;
}

.li-margin-bottom {
    margin-bottom: 22px;
}

.li-margin-bottom40 {
    margin-bottom: 40px;
}

.dotBefore:before {
    content: url(http://placekitten.com/g/250/250);
}

/* curruculum styles -start */
.curriculimTable, .curriculimTable tr, .curriculimTable tr td {
    padding: 0 !important;
    border: 1px solid black;
    text-align: center;
    font-size: 0.9em;
}

.nestedCurriculumTable .cellCurriculumTable {
    min-width: 16px;
}

.nestedCurriculumTable {
    border-spacing: 2px !important;
    border: 0 !important;
    font-size: 1em !important;
    width: 100%
}

    .nestedCurriculumTable tr.no-border-table-part, .nestedCurriculumTable td.no-border-table-part {
        padding: 0 !important;
        border: 0 !important;
        font-size: 1.2em !important;
    }

    .nestedCurriculumTable td, .nestedCurriculumTable td input[type="text"] {
        margin: 0 !important;
        padding: 0 !important;
        min-height: 20px !important;
    }

.addNewCurriculumBtn {
    cursor: pointer;
    font-size: 1.1em !important;
    font-weight: bold;
    color: Gray;
}

.tbxMedium {
    max-width: 125px;
}

.tbxLarge {
    max-width: 160px;
}

.tbxSmall {
    text-align: center;
    width: 40px;    
}

.tbxSmallSummary {
    text-align: center;
    width: 45px;
}

.tbxSmallMedium {
    max-width: 65px;
}

.valuesCell {
    padding: 0 !important;
    margin: 0 !important;
}

.absolute-pos {
    color: Olive;
    position: absolute;
    top: 15%;
    left: 4%;
}
/* curruculum styles -end */
/* colors */
.red-colored {
    background-color: pink;
}

.bordered-red {
    border: 3px dashed pink !important;
}

/* Hides the breadcrumbs when empty */
#lbNodeName:empty {
    display: none !important;
}


.nodeNameFrontLine {
    width: auto;
    align-items: center; /* Aligns items vertically in the center */
    font-size: 0.75rem; /* Using rem units for better scalability */
    font-weight: bold;
    font-family: Inter, Helvetica, Sans-Serif;
    line-height: 1.2rem; /* Adjusted line-height for better readability */
    color: #F0F0F0; /* Consider adjusting for better contrast if needed */
    background: rgb(52, 78, 124);
    padding: 0.5rem 1rem; /* Consistent padding around the text */
    margin: 0.25rem;
    white-space: nowrap;
    vertical-align: middle; /* Aligns text vertically */
    border-radius: 0.25rem; /* Optional: adds rounded corners for a modern look */
    box-shadow: none;
    display: block; /* Using Flexbox for better alignment and responsiveness */
    align-items: center; /* Aligns items vertically in the center */
    font-size: 0.75rem; /* Using rem units for better scalability */
    font-weight: bold;
    font-family: Inter, Helvetica, Sans-Serif;
    /* Space between breadcrumb items */
    white-space: nowrap;
    vertical-align: middle; /* Aligns text vertically */
    border-radius: 0.25rem; /* Optional: adds rounded corners for a modern look */
    box-shadow: none; /* Removing text-shadow for a cleaner look */
}

    .nodeNameFrontLine span i {
        margin-right: 5px;
        margin-left: 5px;
    }

.personNameFrontLine {
    float: right !important;
    padding-right: 30px;
    font-size: 11.844px;
    font-weight: bold;
    font-family: Inter, Helvetica, Sans-Serif;
    line-height: 14px;
    color: #F0F0F0;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    white-space: nowrap;
    vertical-align: baseline;
    background: #91193B; /*#b3102b;*/
}

.closeModalWindow {
    font-size: 1.8em;
}
/*.newbtn:hover
{
    color: #ffffff !important;
    background: none !important;
    background-color: #b3102b !important;
    text-shadow: none !important;
}

.newbtn:focus
{
    color: #ffffff !important;
    background: none !important;
    background-color: #b3102b !important;
    text-shadow: none !important;
}

.newbtn:active
{
    color: Red;
    position: relative;
    top: 1px;
}*/
.btn-additional {
    width: auto !important;
    padding: 5% 7% 14% 7% !important;
    margin-bottom: 5%;
}

.btn-full-width {
    width: 100% !important;
}

.btn-alphabetic-width {
    width: 100%!important;
}

.component:has(.width-180) {
    width: 180px !important;
}

.width-100 {
    width: 100% !important;
}
.width-95 {
    width: 95% !important;
}
.width-85 {
    width: 85% !important;
}
.width-80 {
    width: 80% !important;
}
.width-75 {
    width: 75% !important;
}
.width-97-5 {
    width: 97.5% !important;
}

.width-98-5 {
    width: 98.7% !important;
}

.color-red {
    color: red;
}

.align-center-table {
    text-align: center !important;
}

.width-30p {
    width: 30px;
}

.width-50p {
    width: 50px !important;
}

.display-inline-flex {
    display: inline-flex;
}

.fa-times:hover {
    color: #fff;
}

.margin-5 {
    margin-left: 5%;
}

.color-white {
    color: #fff;
}

.margin-top-2 {
    margin-top: 2%;
}

.margin-bottom-2 {
    margin-bottom: 2%;
}

.margin-left-5 {
    margin-left: 5% !important;
}

.margin-left-10 {
    margin-left: 10% !important;
}

.margin-left-2-5 {
    margin-left: 2.5%;
}
.margin-left-1-5 {
    margin-left: 1.5%;
}

.margin-left-1-25 {
    margin-left: 1.25%;
}

.margin-right-2-5 {
    margin-right: 2.5%;
}
.margin-right-2-5 {
    margin-right: 2.5%;
}
.padding-right-10 {
    padding-left: 10px;
}


.margin-left-20 {
    margin-left: 20px;
}
.padding-left-20 {
    padding-left: 20px;
}
.opacity-0 {
    opacity: 0;
}

.float-right {
    float: right;
}

.span-color-white span {
    color: #000 !important;
}
/* Resize windows */
.pnl-size-icons {
    /*display: flex;
    justify-content: space-between;*/ /* This will push the right-align div to the right */
    /*align-items: center;*/ /* Align items vertically center */
}

.pnl-size-icon-close {
    /*position: absolute;*/
    margin-top: 5px;
    margin-right: 10px;
    text-align: right;
}

.pnl-size-icons div {
    margin-left: auto;
    cursor: pointer;
}

.fixedMaximazedPnl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Resize windows */
.maxZ-index {
    z-index: 999999999999 !important;
    /*  border: 1px solid Gray */
}

    .maxZ-index li {
        list-style: none !important;
        padding-left: 15px !important;
    }

.personMenuItem {
    display: inline-block;
}

.boldRightBorder {
    border-right: 2px solid black !important;
}

.mandatory {
    box-shadow: 1px 1px 1px rgba(200, 0, 0, 0.85) !important;
}

input.mandatory:focus {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
    transition: border linear 0.2s, box-shadow linear 0.2s !important;
}

/*input.mandator:hover {
  opacity: 1!important;
}*/

.label-light-blue {
    color: #66b3ff;
}

.header-light-blue {
    color: #66b3ff !important;
    font-weight: bold;
}

.required {
    padding-right: 12px;
    background: url(../Images/required-red-star.gif) no-repeat right top;
}

.required-pink {
    padding-right: 12px;
    background: url(../Images/required-pink-star.gif) no-repeat right top;
}

.required-t {
    padding-right: 15px;
    background: url(../Images/req-triangle.png) no-repeat right top;
}

.bold-right-border {
    border-right: 2px solid black;
}

.app-diff-course {
    border: 2px solid #6AA9F9 !important;
}

.font085em {
    font-family: Inter !important;
    font-size: 0.85em !important;
}

.font9pt {
    font-family: Inter, Helvetica, Sans-Serif;
    font-size: 9pt !important;
}

.font9pt-bold {
    font-family: Inter, Helvetica, Sans-Serif;
    font-size: 9pt;
    font-weight: bold;
}

.fixedPicturePnl {
    width: 100px;
    height: 80px;
}

.margin-top {
    margin-top: 5px;
}

.margin-top10px {
    margin-top: 10px !important;
}

.margin-top30px {
    margin-top: 30px;
}

.margin-bottom20px {
    margin-bottom: 20px !important;
}

.margin-top-percentage {
    margin-top: 6%;
}

.bigSizePicture {
    margin-left: 90px;
    width: 350px;
}

.loginName {
    max-width: 100% !important;
    width: 100% !important;
    height: 45px !important;
    font-size: large !important;
    padding-left: 0.5rem !important;
}

/* Css class alert-login if there is no text in the span to not show it */
.alert-login:empty {
    display: none;
}

.alert-login {
    display: flex;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    padding: 0.75rem 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;

    font-size: 1.2rem;
    margin-top: 5px;
    width: 100%;
}


.loginPass {
    max-width: 100% !important;
    width: 100% !important;
    height: 45px !important;
    font-size: large !important;
    padding-left: 0.5rem !important;
}

.z-index999999 {
    z-index: 999999 !important;
}

.z-index9999999 {
    z-index: 9999999 !important;
}

.z-index99999999 {
    z-index: 99999999 !important;
}

.z-index999999999 {
    z-index: 999999999 !important;
}

.z-index1999999999 {
    z-index: 1999999999 !important;
}

.z-indexMax {
    z-index: 2147483647 !important;
}

.errorColor li {
    color: Red;
}

#Scheduler_test {
    visibility: hidden;
}

.two-digits {
}

.sectionBorder {
    border: solid 2px;
    border-color: #91193B;
    padding-left: 20px;
    padding-top: 10px;
}

.MainLogo {
    width: 100px !important;
}

.loginTitle {
    font-size: 2.2em;
    font-weight: bold;
    color: #91193B;
    margin-bottom: 10px;
    font-family: Inter, Helvetica, Sans-Serif;
}

.btn-moodle-logo {
    background-image: url('Media/layout/moodle-icon.svg');
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: -1.5px;
}

.btn-moodle-logo-inverted-big {
    -webkit-filter: invert();
    background-image: url('Media/layout/moodle-icon.svg');
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: -1.5px;
}

.btn-login-user {
    font-size: 18px !important;
    font-weight: normal !important;
}

.btn-candStudReg {
    font-size: 18px !important;
    font-weight: normal !important;
    width: 175px !important;
}

.btn-login-pass {
    width: 100px !important;
    white-space: normal;
    vertical-align: middle !important;
    padding: 2px 15px !important;
}


.flash-button {
    background-color: #91193B !important; /*#B3102B!important;*/
    padding: 5px 10px;
    color: White !important;
    border: 1px solid #91193B; /*#b3102b;*/
    border-radius: 5px;
    animation-name: flash;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    //Firefox 1+ -webkit-animation-name: flash;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    //Safari 3-4 -moz-animation-name: flash;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
}

.overflow-table {
    overflow: auto;
}

.row-5 {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-12, .col-md-6, .col-lg-4 {
    padding-right: 15px;
    padding-left: 15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

/* Specific class for col-9 */
.col-9 {
    flex: 0 0 75%;
    width: 75%;
}

/* Specific class for col-1 */
.col-1 {
    flex: 0 0 8.333333%;
    width: 8.333333%;
}

/* Specific class for col-8 */
.col-8 {
    flex: 0 0 66.666666%;
    width: 66.666666%;
}

/* Specific class for col-3 */
.col-3 {
    flex: 0 0 25%;
    width: 25%;
}

.inside-table {
    width: 98%;
    margin: 0 1%;
    overflow-x: auto;
}

.center-text {
    /*text-align: center !important;*/
    vertical-align: middle !important;
}

.transparent-text {
    color: rgba(0, 0, 0, 0);
}

.link {
    /*color: rgb(52, 78, 124);*/
    text-decoration: underline;
}

.row-5 textarea, .row-5 input[type="text"], .row-5 input[type="text"], .row-5 input[type="password"], .row-5 select, .row-5 select, .row-5 input[multiple], .row-5 input[multiple] {
    width: 100%;
}

.PersonalDataImage {
    /* width: 100px !important;*/
    display: block;
    margin: 0 auto;
}

.link[href=""] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

@media (min-width: 768px) {
    .col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }

    @media (min-width: 992px) {
        .col-lg-4 {
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
        }
    }

    @media (max-width: 767px) {
        .col-12 {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }

    @keyframes flash {
        0% {
            opacity: 1.5;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.5;
        }
    }

    //Firefox 1 + @-webkit-keyframes flash {
    0%

{
    opacity: 1.5;
}

50% {
    opacity: 0.0;
}

100% {
    opacity: 1.5;
}

}

//Safari 3-4
@-moz-keyframes flash {
    0%

{
    opacity: 1.5;
}

50% {
    opacity: 0.0;
}

100% {
    opacity: 1.5;
}
}


/* Custom CSS to mimic Bootstrap 5 file input */
.custom-file-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 15px; /* Adjust spacing as needed */
}

.custom-file-input {
    width: 100% !important;
    display: flex !important;
    height: 38px !important; /* Match the height of the button */
    padding: 8px 12px !important; /* Match padding of the custom file label */
    font-size: 1rem !important; /* Match font size */
    line-height: 0px !important; /* Match line height */
}



/* Custom input group for file upload and button */
.input-group-custom {
    display: flex; /* Use flexbox for side-by-side layout */
    width: 100%;
    align-items: center; /* Vertically align items */
}

    .input-group-custom .custom-file-input-wrapper {
        flex-grow: 1; /* Allow the file input to take available space */
        margin-bottom: 0; /* Remove bottom margin here, handled by parent */
    }

    .input-group-custom .btn {
        margin-left: 5px; /* Space between file input and button */
        height: 100%; /* Match height of the custom file label */
        line-height: 20px; /* Adjust line height for button text */
        padding: 8px 12px; /* Match padding of the custom file label */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0px;
    }

/* Margin */
.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.m-auto {
    margin: auto !important;
}

/* Margin Top */
.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mt-auto {
    margin-top: auto !important;
}

/* Margin Right */
.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.me-5 {
    margin-right: 3rem !important;
}

.me-auto {
    margin-right: auto !important;
}

/* Margin Bottom */
.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

/* Margin Left */
.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}

.ms-5 {
    margin-left: 3rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

/* Margin X-axis (left and right) */
.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
}

.mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}

.mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}

.mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}

.mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Margin Y-axis (top and bottom) */
.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

/* Breakpoint-specific margins (example for 'sm' breakpoint) */
/* You would generate similar sets for md, lg, xl, xxl */

/* Example: sm-specific margin (e.g., mt-sm-2) */
@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0 !important;
    }

    .m-sm-1 {
        margin: 0.25rem !important;
    }

    .m-sm-2 {
        margin: 0.5rem !important;
    }

    .m-sm-3 {
        margin: 1rem !important;
    }

    .m-sm-4 {
        margin: 1.5rem !important;
    }

    .m-sm-5 {
        margin: 3rem !important;
    }

    .m-sm-auto {
        margin: auto !important;
    }

    .mt-sm-0 {
        margin-top: 0 !important;
    }

    .mt-sm-1 {
        margin-top: 0.25rem !important;
    }

    .mt-sm-2 {
        margin-top: 0.5rem !important;
    }

    .mt-sm-3 {
        margin-top: 1rem !important;
    }

    .mt-sm-4 {
        margin-top: 1.5rem !important;
    }

    .mt-sm-5 {
        margin-top: 3rem !important;
    }

    .mt-sm-auto {
        margin-top: auto !important;
    }

    .me-sm-0 {
        margin-right: 0 !important;
    }

    .me-sm-1 {
        margin-right: 0.25rem !important;
    }

    .me-sm-2 {
        margin-right: 0.5rem !important;
    }

    .me-sm-3 {
        margin-right: 1rem !important;
    }

    .me-sm-4 {
        margin-right: 1.5rem !important;
    }

    .me-sm-5 {
        margin-right: 3rem !important;
    }

    .me-sm-auto {
        margin-right: auto !important;
    }

    .mb-sm-0 {
        margin-bottom: 0 !important;
    }

    .mb-sm-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-sm-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-sm-3 {
        margin-bottom: 1rem !important;
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-sm-5 {
        margin-bottom: 3rem !important;
    }

    .mb-sm-auto {
        margin-bottom: auto !important;
    }

    .ms-sm-0 {
        margin-left: 0 !important;
    }

    .ms-sm-1 {
        margin-left: 0.25rem !important;
    }

    .ms-sm-2 {
        margin-left: 0.5rem !important;
    }

    .ms-sm-3 {
        margin-left: 1rem !important;
    }

    .ms-sm-4 {
        margin-left: 1.5rem !important;
    }

    .ms-sm-5 {
        margin-left: 3rem !important;
    }

    .ms-sm-auto {
        margin-left: auto !important;
    }

    .mx-sm-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .mx-sm-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .mx-sm-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .mx-sm-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .mx-sm-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .mx-sm-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .mx-sm-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-sm-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-sm-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-sm-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-sm-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-sm-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }
}

.btn-bar {
    display: flex;
    border: 1px solid #6c757d;
    border-radius: 0.375rem;
    overflow: hidden;
    padding: 5px;
    gap: 5px;
    margin: 0px 0px 15px 0px;
}

    .btn-bar .btn {
        margin: 0;
        border-radius: 0;
        border: none;
    }

.align-middle {
    vertical-align: middle !important;
}