@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* ================== Root ================== */
:root {
  --midnight_blue: #1A384F;
  --Sapphire_blue:#0D578F;
  --Cobalt_blue:#1273BA;
  --royal_blue: #304fc9;
  --honey_orange:#FF9A25;
  --slate_grey: #6B7280;
  --soft_white:#F8FAFC;
  --light_grey:#ECEFF1;
  --success_green:#00E676;
}
body {
  font-family: "Roboto", sans-serif;
  overflow-y: auto;
  color: var(--slate_grey);
  margin: unset;
}
a{
  text-decoration: none;
}

/* Header Section */
.header-section {
  background: #2D4D68;
  box-shadow: 4px 4px 4.3px rgb(0 0 0 / 50%);
  padding: 20px 20px;
}
.header-section .inner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-section .logo-block img {
  width: 250px;
}
.header-section .menu-block {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: end;
}
.header-section .dropdown-wrap select {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2px 32px 2px 18px;
  width: 275px;
  height: 50px;
  background: url(/images/icons/dropdown-icon.png) no-repeat 95% 50% #F9FAFB;
  border-radius: 16px;
  border: unset;
  cursor: pointer;
  font-size: 16px;
  font-weight: 
  color: var(--slate_grey) !important;
  font-weight: 500 !important;
  background-size: 8px;
  -webkit-appearance: none;
  -moz-appearance:none;
  appearance:none;
}
.header-section .dropdown-wrap select:focus-visible,
.header-section .search-wrap input{
  outline: none;
}
.header-section .search-wrap .form-inline {
   position: relative;
}
.header-section .search-wrap input::placeholder{
  color: var(--slate_grey) !important;
}
.header-section .search-wrap input, .search-wrap input {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px 20px 0px 50px;
  width: 275px;
  height: 50px;
  background: #F9FAFB;
  border-radius: 16px;
  position: relative;
  border: unset;
  margin-left: 25px;
  font-size: 16px;
  color: #000;
  font-weight: 500;
}
.header-section .search-wrap .fa-search-icon {
  position: absolute;
  left: 45px;
  top: 15px;
}
.search-wrap .btn-link {
  position: absolute;
  left: 47px;
  top: 11px;
}
.header-section .search-wrap .fa-search-icon img{
  width: 20px;
  height: auto;
}
.header-section .logout-wrap a {
    display: flex;
    align-items: center;
}
.header-section .logout-wrap img {
    width: 32px;
    height: auto;
    max-width: 100%;
}
.header-section .logout-wrap span {
    font-size: 16px;
    color: #fff;
    margin-left: 30px;
    margin-right: 5px;
}

.label-warning {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
    background-color: #f0ad4e;
    padding-top: 5.6px !important;
    margin-left: 30px;
    margin-right: 10px;
    margin-bottom: 0;
}

.dropdown-wrap .form-group {
    margin-bottom: 0;
}

.iconNames {
  display: block;
  color: black;
  font-size:14px;
  font-weight:500;
  /*margin-top: 5px;*/
  min-width: 40px;
}

#LoginButton {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  background-color: #1273BA;
  border: none;
  border-radius: 15px;
  padding: 10px 24px;
}

#user-search-container input {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px 20px 0px 50px;
  width: 232px;
  height: 42px;
  background: #F9FAFB;
  border-radius: 16px;
  position: relative;
  border: unset;
  margin-left: 25px;
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

#user-search-container a{
  position: absolute;
  left: 56px;
  top: 15px;
}

.tIconActive span:first-of-type {
  background-color: #7baaccbf;
  border-radius: 20px;
  padding: 6px 15px 11px;
}

.tIcon a span:first-of-type:hover {
  background-color: #1273BA;
  border-radius: 20px;
  padding: 6px 15px 11px;
}
/*.tIcon span:hover .iconNames  {
  padding-left: 11px !important;
}*/

/*span:first-of-type:hover {
  background-color: #e5dee2;
  border-radius: 20px;
  padding: 6px 15px 11px;
}*/

.tIconActive .iconNames {
  padding-left: 11px !important;
}
.btn-primary, .btn-warning {
  border-radius: 12px;
}
.header-section{
  padding: 10px 25px 10px 25px;
  overflow-x: hidden;
}
.header-section .logout-wrap span{
  margin-left: 10px;
}
@media screen and (max-width:1280px){
  .header-section .dropdown-wrap select, .header-section .search-wrap input{
    width: 200px;
  }
  /*.header-section .search-wrap input{
    width: 200px;
  }*/
  #user-search-container input {
    width: 167px !important;
  }
}
@media screen and (max-width:1018px) {
  .logout-wrap a {
    width: 124px;
  }
}
@media screen and (max-width:946px) {
  .logo-block {
    width: 197px;
  }

}
@media screen and (max-width:912px) {
  a button {
    width: 80px !important;
    font-size: 12px !important;
  }
  #user-search-container input {
    width: 158px !important;
  }
}
@media screen and (max-width: 877px) {
  a button {
    width: 73px !important;
  }
}
@media screen and (max-width: 857px) {
  #frmUserSearch .row {
    margin-left: -39px !important;
  }
  /* #topSearchFrm .form-control, .cus-right-padding-15 .form-group .form-control {
  width: 143px !important;
  } */
}
@media screen and (max-width: 790px) {
  #frmUserSearch .row {
    margin-left: -44px !important;
  }
}
@media screen and (max-width: 835px) {
  a button {
    width: 69px !important;
    font-size: 10px !important;
  }
}
@media (min-width: 768px) and (max-width: 768px) {
  #mobileSearchField {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 802px) {
  a button {
  width: 59px !important;
  font-size: 9px !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  #toggleSidebar {
    display: block !important;
  }
}
/*@media (min-width: 686px) and (max-width: 767px) {
  .tIcon {
    display: inherit;
    text-align: left;
    padding-left: 12px;
  }
}*/
/*@media screen and (max-width: 767px) {
  a button {
    width: 25% !important;
    font-size: 14px !important;
  }

}*/

/*@media screen and (max-width: 1280px) {
  #user-search-container input {
  width: 158px !important;
}*/
/*@media screen and (max-width:909px) {
  .col-sm-12 .pull-left .btn-warning .btn-xs {
    display: inline-grid;
  }
}*/

.side-b {
  position: absolute;
  top: 0px;
  width: 300px;
  z-index: 1000;
  background: rgb(221, 221, 221);
  display: none;
  box-shadow: rgba(0, 0, 0, 0.1) -2px 0px 5px;
  transition: right 0.3s ease 0s;
  margin-left: 122px;
  /* height: 100%; */
  height: -webkit-fill-available;
  max-height: 400px;
}
@media (min-width: 320px) and (max-width: 403px) {
  body .tIcon {
    display: inherit;
    text-align: left;
    padding-left: 11px;
  }
}
div .tIcon {
    margin: 9px 0;
    border-bottom: 1px solid #ECEFF1;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 320px) and (max-width: 510px) {
  #topSearchFrm .form-control, .cus-right-padding-15 .form-group .form-control {
    width: 149px !important;
    margin-right: 35px;
  }
  .header-section .search-wrap input, .search-wrap input {
    padding: 0px 20px 0px 35px;
    height: 39px;
    margin-left: 25px;
  }
  .header-section .search-wrap .fa-search-icon {
    left: 66%;
    top: 26px;
  }
  .logo-block {
    display: none;
  }
  .dropdown-wrap {
    margin-right: -18px;
  }
  .cus-right-padding-15 {
    padding-right: 0px !important;
  }
  .logout-wrap span {
    display: none;
  }
  .header-section .logout-wrap img {
    width: 25px;
    margin-left: 0px;
  }
  .logo-block1 {
    display: block;
    width: 50px;
  }
  .header-section .dropdown-wrap select {
    padding: 2px 32px 2px 18px;
    height: 38px;
  }
  .logout-wrap {
    width: 34px;
    margin-left: 24px;
  }
  .logo-block1 .img-responsive {
    margin-left: -20px;
  }
  .menu-block .col-sm-1 {
    margin-left: -50px;
  }
  #mobileSidebar {
    margin-right: 0px;
    width: 175px;
    left: 0px;
  }
  .container-fluid {
    font-size: 11px;
  }
  body .tIconActive span:first-of-type {
    padding: 3px 13px 5px 14px;
  }
  body .tIcon a span:first-of-type:hover {
    padding: 3px 13px 4px 14px;
  }
}
@media (min-width: 395px) and (max-width: 425px) {
  #topSearchFrm .form-control, .cus-right-padding-15 .form-group .form-control {
    margin-right: 42px;
  }

}
@media (min-width: 593px) and (max-width: 614px) {
.side-b {
    margin-left: 164px;
  }
  .logout-wrap a {
    width: 114px;
  }
  .logout-wrap span {
    display: block;
  }
}
@media (min-width: 615px) and (max-width: 637px) {
.side-b {
    margin-left: 189px;
  }
}
@media (min-width: 638px) and (max-width: 664px) {
.side-b {
    margin-left: 215px;
  }
}
@media (min-width: 360px) {
  .logo-block1  {
    display: none;
  }
  .logo-block {
    display: block;
    margin-right: 20px;
    margin-left: -21px;
  }
}
@media screen and (max-width: 767px) {
  .header-section .logo-block img, .logo-block1 img{
    width: 50px;
  }
  .header-section .search-wrap .fa-search-icon {
    left: 66%;
    top: 26px;
  }
}

@media (min-width: 818px) and (max-width: 992px) {
  .header-section .logo-block img{
    width: 250px;
  }
}
@media screen and (max-width:1024px){
  #mobileSidebar{
    display: none;
    position: fixed;
    top: 57px;
    right: 0;
    width: 120px;
    height: 100%;
    background: #f8f8f8;
    z-index: 9999;
    box-shadow: -2px 0 5px rgba(0,0,0,0.3);
    text-align: left !important;
    margin-top: 13px;
    margin-right: 30px;
  }
  a button {
    width: 25% !important;
    font-size: 14px !important;
  }
  .header-section .menu-block {
    flex: 0;
  }
}

@media (max-width: 1024px) and (min-width: 320px){
  div .tIcon {
    display: inherit;
    text-align: left;
    padding-left: 12px;
  }
}
@media screen and (max-width:742px){
  .side-b {
    width: 214px;
  }
}
@media (min-width:768){
  #mobileSearchField {
    display: none;
  }
}
@media screen and (max-width:1023px) {
  .tIconActive span:first-of-type {
    background-color: initial;
    border-radius: 0px;
    padding: 0px;
  }
}
@media (min-width:330px) and  (max-width:355px ) {
  #mobileSidebar {
    left: 33px;
  }
  .header-section .search-wrap .fa-search-icon {
    left: 216px;
  }
}
@media (min-width:356px) and  (max-width:380px ) {
  #mobileSidebar {
    left: 57px;
  }
}
@media (min-width:381px) and  (max-width:395px ) {
  #mobileSidebar {
    left: 69px;
  }
}
@media (min-width:396px) and  (max-width:417px ) {
  #mobileSidebar {
    left: 97px;
  }
}
@media (min-width:425px) {
  #mobileSidebar {
    left: 105px;
  }
}
@media (min-width:768px) and (max-width:778px) {
  #mobileSidebar {
    left: 434px;
  }
  .side-b {
    right: 0;
  }
}
@media (min-width:1024px) {
  #mobileSidebar{
  left: 700px;
  }
}
@media (min-width:356px) and  (max-width:450px ) {
  .logout-wrap {
    margin-left: 41px;
  }
}
@media (min-width:451px) and  (max-width:510px ) {
  .logout-wrap {
    margin-left: 41px;
  }
}
@media (min-width:511px) and  (max-width:767px ) {
  .logout-wrap span {
    display: none;
  }
  .logout-wrap a img {
    margin-left: 78px;
  }
  .visible-xs a {
    margin-left: 26px;
  }
}
/* side/submenu */
@media (min-width:418px) and  (max-width:434px ) {
  #mobileSidebar {
    left: 112px;
  }
}
@media (min-width:435px) and  (max-width:451px ) {
  #mobileSidebar {
    left: 129px;
  }
}
@media (min-width:452px) and  (max-width:467px ) {
  #mobileSidebar {
    left: 145px;
  }
}
@media (min-width:468px) and  (max-width:485px ) {
  #mobileSidebar {
    left: 163px;
  }
  .header-section .search-wrap .fa-search-icon {
    left: 70%;
  }
}
@media (min-width:486px) and  (max-width:516px ) {
  #mobileSidebar {
    left: 180px;
  }
  .header-section .search-wrap .fa-search-icon {
    left: 70%;
  }
  .side-b {
    margin-left: 301px;
  }
}
@media (min-width:517px) and  (max-width:534px ) {
  .side-b {
    right: 0;
  }
  #mobileSidebar {
    left: 198px;
  }
  .header-section .search-wrap .fa-search-icon {
    left: 70%;
  }
}
@media (min-width:536px) and  (max-width:553px ) {
  .side-b {
    right: 0;
  }
  #mobileSidebar {
    left: 217px;
  }
  .header-section .search-wrap .fa-search-icon {
    left: 70%;
  }
}
@media (min-width:554px) and  (max-width:571px ) {
  .side-b {
    right: 0;
  }
  #mobileSidebar {
    left: 235px;
  }
  .header-section .search-wrap .fa-search-icon {
    left: 70%;
  }
}
@media (min-width:572px) and  (max-width:589px ) {
  .side-b {
    right: 0;
  }
  #mobileSidebar {
    left: 254px;
  }
  .header-section .search-wrap .fa-search-icon {
    left: 70%;
  }
}
@media (min-width:590px) and  (max-width:607px ) {
  .side-b {
    right: 0;
  }
  #mobileSidebar {
    left: 272px;
  }
  .header-section .search-wrap .fa-search-icon {
    left: 70%;
  }
}
@media (min-width:608px) and  (max-width:623px ) {
  .side-b {
    right: 0;
  }
  #mobileSidebar {
    left: 288px;
  }
  .header-section .search-wrap .fa-search-icon {
    left: 70%;
  }
}
@media (min-width:624px) and  (max-width:639px ) {
  .side-b {
    right: 0;
  }
  #mobileSidebar {
    left: 304px;
  }
  .header-section .search-wrap .fa-search-icon {
    left: 70%;
  }
}
@media (min-width:640px) and  (max-width:656px ) {
  .side-b {
    right: 0;
  }
  #mobileSidebar {
    left: 321px;
  }
  .header-section .search-wrap .fa-search-icon {
    left: 70%;
  }
}
@media (min-width:657px) and  (max-width:673px ) {
  .side-b {
    right: 0;
  }
  #mobileSidebar {
    left: 338px;
  }
  .header-section .search-wrap .fa-search-icon {
    left: 70%;
  }
}
@media (min-width:674px) and  (max-width:692px ) {
  .side-b {
    right: 0;
  }
  #mobileSidebar {
    left: 357px;
  }
  .header-section .search-wrap .fa-search-icon {
    left: 70%;
  }
}
@media (min-width:693px) and  (max-width:711px ) {
  .side-b {
    right: 0;
  }
  #mobileSidebar {
    left: 376px;
  }
  .header-section .search-wrap .fa-search-icon {
    left: 70%;
  }
}
@media (min-width:712px) and  (max-width:729px ) {
  .side-b {
    right: 0;
  }
  #mobileSidebar {
    left: 394px;
  }
  .header-section .search-wrap .fa-search-icon {
    left: 70%;
  }
}
@media (min-width:730px) and  (max-width:749px ) {
  .side-b {
    right: 0;
  }
  #mobileSidebar {
    left: 413px;
  }
  .header-section .search-wrap .fa-search-icon {
    left: 70%;
  }
}
@media (min-width:750px) and  (max-width:768px ) {
  .side-b {
    right: 0;
  }
  #mobileSidebar {
    left: 433px;
  }
  .header-section .search-wrap .fa-search-icon {
    left: 70%;
  }
}
@media (min-width:769px) and  (max-width:787px ) {
  .side-b {
    right: 0;
  }
  #mobileSidebar {
    left: 452px;
  }
}
.menu-group {
    margin-bottom: 15px;
}
@media (min-width:320px) and  (max-width:1024px ) {
  .menu-group {
    margin-bottom: 0px;
  }
  div .tIcon{
    padding:1px;
  }
  #mobileSidebar {
    left:0px;
  }
  /* .side-b{
    right: 22%;
  } */
}
/* iPad and smaller tablets */
@media (max-width: 768px) {
  .side-b {
    right: 46%;
  }
}
@media (max-width: 540px) {
  .side-b {
    right: 38%;
  }
}
/* Large phones (e.g. iPhone 14 Pro Max) */
@media (max-width: 430px) {
  .side-b {
    right: 23%;
  }
}

/* Medium phones (e.g. iPhone 12, Pixel) */
@media (max-width: 414px) {
  .side-b {
    right: 20%;
  }
}
@media (max-width: 390px) {
  .side-b {
    right: 15%;
  }
}
/* Small phones (e.g. iPhone SE) */
@media (max-width: 375px) {
  .side-b {
    right: 11%;
  }
}
@media (max-width: 344px) {
  .side-b {
    right: 3%;
  }
}
@media (max-width: 320px) {
  .side-b {
    right: 0%;
  }
}
/* This will always show the image by default (for desktop) */
/* .tIcon a img {
  display: inline-block;
} */

/* This will hide the image only on mobile (max-width: 768px) */
/* @media (max-width: 767px) {
  .tIcon a img {
    display: none;
  }
} */