body {
	padding: 65px 0 0 0 !important;
}
/* override materialize */
.container {
	max-width: 1350px !important;
}

/* Header & Navigation */
.header-petrom {
    background: #003366;
    padding: 3px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 8px;
	height: 60px;
}

.logo {
    color: white;
    font-size: 22px;
    font-weight: bold;
}

.logo img {
    width: 200px;
    /*height: 50px;*/
    object-fit: contain; /* Ensure the aspect ratio is maintained */
	vertical-align: middle;
}
.menu-container {
	display: flex;
	align-items: center;
	justify-content: space-between;

}
/* Navigation Menu */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;  /* Apply Roboto font */
    font-weight: 400;                  /* Set font weight to 400 */
    font-size: 16px;                   /* Set font size to 16px */
    line-height: 24px;                 /* Set line height to 24px */
}

.nav-link-container {
	/*min-width: 80px;*/
}

/* Hover effect for nav-links */
#menu-link:hover {
    font-weight: 700;                  /* Change font weight to 700 on hover */
    transition: 0.3s;                  /* Smooth transition */
}

/* The pseudo element has the same content and hover style, so it pre-sets the width of the element and visibility: hidden hides the pseudo element from actual view. */
#menu-link::before {
    display: block;
    content: attr(title);
    font-weight: 700;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.nav-links li {
    margin: 0 5px;
}

#menu-link {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: 0.3s;
}

/* override btn properties from header */
#menu-link a.btn {
	font-size: inherit;
	color: inherit;
	background-color: inherit;
	border: none;
    border-radius: 0;
    display: inline-block;
    line-height: 18px;
    padding: 0px;
    text-transform: inherit;
    vertical-align: inherit;
    -webkit-tap-highlight-color: inherit;
}

#menu-link span::after {
	display: block;
    content: attr(title);
    font-weight: 700;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

/************************** main-menu-links *******************************/
/* Main Menu */
.dropdown {
  position: relative !important;
  display: inline-block !important;
 }

 /* Main Menu */
 .main-menu-links {
   text-align: center;
   /*width: 100%;*/
 }
 .main-menu-link ul {
   text-align: left;
   margin: 3px 0 2px 0;
   display: block;
   float: left;
   }
 .main-menu-links li {
   display: inline-block;
   padding: 0;
   position: relative;
   }
 .main-menu-links li > a {
   font-size: var(--menu-font-size);
   color: var(--header-nav-text-color);
   padding: 4px 8px 4px 8px;
   display: inline-block;
   border-radius: 5px;
   line-height: 23px;
   }
 .main-menu-links li a:hover {
   background: var(--header-nav-text-hover-bkcolor) !important;
   color: var(--header-nav-text-hover-color) !important;
   position: relative;
 }
 .main-menu-links ul a i.fa-solid{
     /*font-size: 20px;*/
     width: 22px;
     text-align: center;
     line-height: 150%;
     top: 2px;
     position: relative;
     margin: 0 4px 0 0;
     }
 .main-menu-links li.active > a{
   background: var(--practice-feed-btn-bkcolor);
   color: var(--practice-feed-btn-color) !important;
   position: relative;
   border-radius: 5px;
   font-weight: 700;
   }

 .main-menu-links li.active a:hover{
   background: var(--practice-feed-btn-hover-bkcolor);
   color: var(--practice-feed-btn-hover-color);
   }

 .main-menu-links ul li .dropdown-child {
   display: none;
   position: absolute;
   min-width: 250px;
   overflow: hidden;
   padding: 0px 0 0 0;
 	-webkit-border-top-right-radius: 5px !important;
 	-moz-border-radius-topright: 5px !important;
   border-top-right-radius: 5px !important;
   background: var(--menu-dropdown-child-bkcolor);
   margin-top: -15px;
   text-align: left;
 }
 .main-menu-links ul li .dropdown-child.dropwdown-wide {
   min-width: 900px;
   max-height: 550px;
   overflow-y: scroll;
 }
 .main-menu-links ul li .dropdown-child.dropwdown-wide a{
   width: 33.3% !important;
 }
 .main-menu-links ul li .dropdown-child a {
   color: var(--menu-dropdown-child-color) !important;
   font-size: var(--menu-dropdown-child-text-size) !important;
   font-weight: 400 !important;
   padding: 10px 15px 10px 15px;
   text-decoration: none !important;
   float: left !important;
   width: 100% !important;

 }
 .main-menu-links ul li .dropdown-child a:not(:last-child) {
	  border-bottom: 1px solid #003366;
 }

 .main-menu-links ul li .dropdown-child a:hover {
   color: var(--menu-dropdown-child-hover-color) !important;
   background-color: var(--menu-dropdown-child-hover-bkcolor) !important;
 }
 .main-menu-links ul li .dropdown-child a.active {
   color: var(--menu-dropdown-child-active-color) !important;
   background-color: var(--menu-dropdown-child-hover-bkcolor) !important;
 }
 .main-menu-links ul li.dropdown:hover > a{
   background: var(--menu-dropdown-hover-bkcolor) !important;
   color: var(--menu-dropdown-hover-color) !important;
   font-weight: 700;
   transition: 0.3s;
  }
/* */
.main-menu-links ul li.dropdown.has-children:hover > a {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
 /*
 .main-menu-links ul li.dropdown:hover > a:hover{
   color: var(--menu-dropdown-hover-active-color) !important;
  }
  */
 .main-menu-links ul li.dropdown:hover .dropdown-child {
   display: block;
   top: 45px;
   left: 0px;
   z-index: 999;
   -webkit-border-bottom-right-radius: 7px;
   -webkit-border-bottom-left-radius: 7px;
   -moz-border-radius-bottomright: 7px;
   -moz-border-radius-bottomleft: 7px;
   border-bottom-right-radius: 7px;
   border-bottom-left-radius: 7px;
   box-shadow: 10x 0px 5px rgba(0, 0, 0, 0.08);
 }
 .main-menu-links ul li.dropdown-child:last-child {
 	-webkit-border-bottom-right-radius: 7px;
 	-webkit-border-bottom-left-radius: 7px;
 	-moz-border-radius-bottomright: 7px;
 	-moz-border-radius-bottomleft: 7px;
 	border-bottom-right-radius: 7px;
 	border-bottom-left-radius: 7px;
   border-bottom: 0;
 }

/* Button Styling */
.nav-links-add-btn {
    background: #003366; /* Dark Blue Background */
    color: white;
    width: 195px;
    height: 28px;
    border: 1px solid white; /* White border */
    border-radius: 40px; /* Rounded corners */
    padding: 8px 12px; /* Padding: top/bottom 8px, left/right 12px */
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the text inside the button */
}

.nav-links li a .nav-links-btn a::before {
    display: block;
    content: attr(title);
    font-weight: 700;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.nav-links-add-btn i {
    margin-right: 0px;
}

.nav-links-add-btn:hover {

}

/* Search Icon Circle */
.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px; /* Circle diameter */
    height: 28px; /* Circle diameter */
    border: 1px solid white; /* White border */
    border-radius: 50%; /* Fully rounded */
    text-align: center;
    transition: 0.3s;
}

.nav-links li a .search-icon a::before {
    display: block;
    content: attr(title);
    font-weight: 700;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.search-icon i {
    /*font-size: 12px;*/ /* Adjust icon size */
    color: white;
}

/* Hover effect */
.search-icon:hover {
	/* Light white transparent effect */
   /* background: rgba(255, 255, 255, 0.2); */
}

/* Profile Initials */
.profile-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.profile-initials {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #FFED1A; /* Bright Yellow */
    color: #003366; /* Dark Blue */
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

span.header-notification-counter {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	width: 14px;
    height: 14px;
	border-radius: 50%;
	position: absolute;
	top: -6px;
    right: -3px;
    background: #d30101;
    color: #fff;
    font-size: 9px;
}


/* Language dropdown */
.language-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.language-flag {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #FFED1A; /* Bright Yellow */
    color: #003366; /* Dark Blue */
    line-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
	overflow: hidden;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 33px; /* Moved 2px closer from profile-dropdown */
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid white;
    border-radius: 4px;
    width: 110px; /* Increased width */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: left;
	z-index: 1000;
}
.dropdown-menu-flags {
    display: none;
    position: absolute;
    top: 33px; /* Moved 2px closer from profile-dropdown */
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid white;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
	z-index: 1000;
}

/* Arrow (Caret) */
.dropdown-caret {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
}

/* Dropdown List Items */
.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    padding: 4px; /* Added 4px padding to li items */
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #003366;
    margin-top: 1px !important;
    margin-bottom: 1px !important;
    margin-left: 1px !important;
    margin-right: 1px !important;
}

/* Dropdown List Items */
.dropdown-menu-flags ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu-flags li {
    padding: 4px; /* Added 4px padding to li items */
    color: #003366;
    margin-top: 1px !important;
    margin-bottom: 1px !important;
    margin-left: 1px !important;
    margin-right: 1px !important;
}

/* First item: rounded top-left and top-right */
.profile-settings {
    background: white;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
	border-bottom: 1px solid #B3C2D1;
}

.profile-notifications {
    background: white;
	border-bottom: 1px solid #B3C2D1;
}
/* Last item: rounded bottom-left and bottom-right */
.profile-logout {
    background: white; /* #FFEB00; */
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.flag {
	display: flex;
    align-items: center; /* Vertically aligns the image */
    gap: 10px; /* Optional: Adds space between the image and text */
	justify-content: center;
}

.flag img {
        max-width: 40px; /* You can adjust the image size */
        height: auto;
}

/* Hover effect */
.dropdown-menu li:hover {
    /*filter: brightness(90%);*/
	background-color: #FFEB00;
}

/* Show dropdown on hover */
.profile-dropdown:hover .dropdown-menu {
    display: block;
}

.language-dropdown:hover .dropdown-menu-flags {
	display: block;
}

/***************** Side bar menu **********************************/
.main-menu-sidebar-header {
	display: flex;
    justify-content: space-between;
	align-items: center;
    background-color: #003366;
    height: 64px;
}
.sidenav {
	background: #fff;
	color: #333;
	padding: 0 !important;
}

.logo-sidebar {
	padding-left: 8px;
}

.logo-sidebar img {
    width: 172px;
    height: 32px;
    object-fit: contain; /* Ensure the aspect ratio is maintained */
}

.sidenav-close-container {
	color: #003366;
    height: 64px;
    display: flex;
    align-items: center;
    width: 64px;
    background: white;
    justify-content: center;
	border-bottom: 0.5px solid #003366;
}

.main-menu-sidebar-list {
	margin-top: 1px;
}
.main-menu-sidebar-list > li {
	text-indent: 8px;
	border-bottom: 0.5px solid #003366;
}
.main-menu-sidebar-list > li:hover {
	background-color: #003366;
}
.main-menu-sidebar-list > li:hover a {
	color: white;
	font-weight: 700px;
}
.main-menu-sidebar-list > li.has-childs.active:hover > a {
	color: #003366 !important;
}
.main-menu-sidebar > ul > li.has-childs.active > ul > li:nth-child(n) > a.active {
    color: #003366 !important;
}


.main-menu-sidebar-list > li.has-childs ul li {
	text-indent: 16px;
	background-color: white;
}
.main-menu-sidebar-list > li.has-childs ul li:not(:last-child) {
    border-bottom: 0.5px solid #003366;
}
.main-menu-sidebar-list > li.has-childs ul li a{
	color: #003366;
}
.main-menu-sidebar-list > li.has-childs ul li:hover {
	background-color: #003366;
}
.main-menu-sidebar-list > li.has-childs ul li:hover a {
	color: white;
	font-weight: 700px;
}

.mobile-flag {
	display: flex;
    align-items: center; /* Vertically aligns the image */
    gap: 10px; /* Optional: Adds space between the image and text */
	justify-content:flex-start;
}

.mobile-flag img {
        max-width: 40px; /* You can adjust the image size */
        height: auto;
}
.mobile-language-flag-container {
	display:flex;
	align-items: center;
	gap: 5px;
	text-transform: uppercase;
}
.mobile-language-flag {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-color: #FFED1A; /* Bright Yellow */
	color: #003366; /* Dark Blue */
	line-height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
   	overflow: hidden;
}

.main-menu-sidebar-footer {
	border-bottom: 1px solid white !important;
	height: 150px !important;
}

/*********************** filter ***********************/
/* overrides materialize */
input[type=search]:not(.browser-default) {
	height: 2rem !important;
}
input[type=search]:not(.browser-default):focus:not([readonly]) {
	border-bottom: 1px solid #003366 !important;
	-webkit-box-shadow: 0 1px 0 0 #003366 !important;
	box-shadow: 0 1px 0 0 #003366 !important;
}
input[type=text]:not(.browser-default):focus:not([readonly]) {
	border-bottom: 1px solid #003366 !important;
	-webkit-box-shadow: 0 1px 0 0 #003366 !important;
	box-shadow: 0 1px 0 0 #003366 !important;
}
input[type=text]:not(.browser-default):focus:not([readonly]) + label {
	color: #003366 !important;
}
#filter-sidebar .modal-form .input-field input[type=text] {
    background: #fff;
    border-radius: 5px;
    padding: 0 10px 0 10px;
    box-sizing: inherit;
    margin: 0 0 10px 0;
    border: 1px solid #ccc;
	margin-bottom: 0px;
}
#filter-sidebar .modal-form .input-field {
    margin: 0 0 15px 0;
}

#filter-sidebar .modal-form .input-field-checkbox {
    margin: 0px 0 15px 0;
    display: inline-block;
    width: 100%;
    color: #333;
}


/* Responsive Design *********************************/
@media (max-width: 1330px) {
    .hide-on-small-window {
        display: none;
    }
}

@media (min-width: 1331px) {
    .hide-on-large-window {
        display: none;
    }
}

@media (max-width: 600px) { /*hide on small*/
	.nav-links-add-btn {
		width: 28px;
		border-radius: 50%;
	}
}
@media only screen and (max-width: 993px) {
    body {
        padding: 65px 0 0 0 !important;
    }
}
