
/* Common Class Start*/
:root{
	--isShow:none;
	--dataTableHeading:#231f20;
	--panelBoxColor:#502e6d;
	--posRelative:relative;
	--posAbsolute:absolute;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap');

/* Breadcrumb Part Start */
.breadcrumb {
  /*centering*/
  display: inline-block;
  /* box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.35); */
  overflow: hidden;
  border-radius: 5px;
  /*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
  counter-reset: flag; 
  padding:0px !important;
}

.breadcrumb a {
  text-decoration: none;
  outline: none;
  display: block;
  float: left;
  font-size: 10px;
  line-height: 28px;
  color: #2f302a;
  padding: 0 10px 0 44px;
  background: #d2d4cd;
  position: relative;
  font-weight: bold;
  border: 1px solid #aab8bd;
}
/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.breadcrumb a:first-child {
  padding-left: 41px;
  border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.breadcrumb a:first-child:before {
  left: 14px;
}
.breadcrumb a:last-child {
  border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
  padding-right: 20px;
}

/*hover/active styles*/
.breadcrumb a.active, .breadcrumb a:hover{
  background: #40b3a4;
}
.breadcrumb a.active:after, .breadcrumb a:hover:after {
  background: #40b3a4;
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb a:after {
    content: '';
    position: absolute;
    top: 0;
    right: -18px;
    width: 35px;
    height: 25px;
    transform: scale(0.707) rotate(45deg);
    z-index: 1;
    border-radius: 0 5px 0 50px;
}
/*we dont need an arrow after the last link*/
.breadcrumb a:last-child:after {
  content: none;
}
/*we will use the :before element to show numbers*/
.breadcrumb a:before {
  content: counter(flag);
  counter-increment: flag;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  line-height: 14px;
  margin: 8px 0;
  position: absolute;
  top: 0;
  left: 26px !important;
  /* background: #40b3a4; */
  font-weight: bold;
}


.flat a, .flat a:after {
  background: #502e6d;
  color:#eee;
  transition: all 0.7s;
}
.flat a:before {
  background: #502e6d;
  box-shadow: 0 0 0 1px #00c;
}
.flat a:hover, .flat a.active, 
.flat a:hover:after, .flat a.active:after{
  background: #502e6d;
}

/* Breadcrumb Part end */

.data-table-header-color{
	background-color:#200834 !important;
	color:white !important;
  font-size: 10px;
}
/* .table-bordered td, .table-bordered th{
  border:1px solid #dee2e670 !important;
} */
.text-primary{
  color: #3ab5b0 !important;
}

.light_blue{
    color: #75bcd3;
}
.light_grey{
    color:#47a9a4;
}
.fw_700{
    font-weight: 700;
    font-size: 27px;
}
.font_medium{
    font-size:medium;
}
.font_large{
    font-size:large;
}

.small_button {
    background-color: #40b3a4;
    border: 1px solid white;
    color: white;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    font-size: small;
    padding: 7px 24px;
  }
  .small_button:hover{
    background-color: #40b3a4;
    font-weight:bold;
} 

  .edit_button {
    background-color: #512f6f;
    border: 1px solid white;
    color: white;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    font-size: small;
    padding: 7px 24px;
  }

.small_button_red {
    background-color: #c90808;
    border: none;
    color: white;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    font-size: small;
    padding: 7px 24px;
	width:88px;
  }
.small_button_red:hover{
    background-color: #c90808;
    font-weight:bold;
} 
.small_button_blue{
    height:auto;
    background-color: #837bc9;
    border: none;
    color: white;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    font-size: small;
    padding: 7px 24px;
}
.small_button_blue:hover{
    font-weight:bold;
}
.small_button_grey{
    height:auto;
    background-color: #9d9999;
    border: none;
    color: white;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    font-size: small;
    padding: 7px 24px;
}
.small_button_grey:hover{
    border-radius: 0px;
}
/* Common Class End*/



body{
    font-style:Aerial;
}
.heading{
	font-weight:600;
	letter-spacing: 3px;
  filter: drop-shadow(2px 4px 6px black);
}
.title_tag{
	font-size: 11px;
    position: absolute;
    bottom: 29px;
    right: -153px;
    letter-spacing: 2px;
    font-style: italic;
}
.after_auth_tag{
	font-size: 10px;
    position: absolute;
    bottom: -6px;
    right: -29px;
    letter-spacing: 2px;
    font-style: italic;
    color: white;
}
.customlogo {
    margin-left: -45px;
	width: 299px;
  filter: drop-shadow(2px 4px 6px black);
}
#sidebar-nav > li:first-child{
	z-index: 1300;
}
.divider:after,
.divider:before {
content: "";
flex: 1;
height: 1px;
background: #eee;
}

::placeholder { 
    color:black !important;
    font-weight:500;
    font-size:12px;
 }
.text_box{
    background-color: #eaf1f1 !important;
    border: none !important;
    
}
.text_box:focus{
    border-radius: 0px;
}
.forgot_text{
    font-size: small;
    color: darkgrey;
    font-weight: 400;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: white;
  text-align: center;
  height:30px;
  z-index:1300;
  /* background-image: linear-gradient(to right, #3ab5b0 0%, #3d99be 31%, #56317a 100%); */
  background:#3e1b5a;
}

.footer-text {
    color: #fff;
	font-size: medium;
}

@media only screen and (min-device-width: 300px) and (max-device-width: 1024px) {
      .footer{
        margin-top:10px !important;
      }     
}

/* Register Page CSS */


.radio_button_text{
	font-size: small;
    font-weight: bold;
    color: #eb8c5e;
}
.npi_box{
	position:relative;
}
.npi_search_button{
	position: absolute;
    bottom: 2px;
    right: 17px;
}
.inner_icon_box{
	position:relative;
}
.inner_icon{
	position: absolute;
    /*bottom: 7px;
    right: 21px;*/
    bottom: 3px;
    right: 14px;
	font-size:medium;
}
.inner_icon_big_box{
	position: absolute;
    bottom: 7px;
    right: 6px;
	font-size:medium;
}
/* Register Page CSS End*/

/* Pricing Page CSS */

#btn-quote{
    width: 162px !important;
    margin-left: 70px !important;
    border: none;
    color: white !important;
    font-weight: 500;
}
#btn-quote:hover{
    border-radius: 0px !important;
    background-color: #218cd3;
    color:white;
}
.price_text{
    font-size: 39px;
    font-weight: 800;
    color: #8181c7;
}
.price_content_text{
    font-weight: 700;
    color: #5a5a68;
}
.pricing_box{
    box-shadow: 1px 1px 3px 5px grey;
	background-color: white;
}

/* Pricing Page CSS End*/

/* Forgot Username Page CSS Start */
.back-to-signin{
    font-size: smaller;
}
.btn-fget-uname{
    width: 302px;    
}
.align-center{
    text-align:center !important;
}
/* Forgot Username Page CSS End */

/* Profile Page CSS start */

.profile_label{
    font-size: small;
    font-weight: 700;
}
.profile_box{
    border: 2px solid #dbd9d9;
    box-shadow: 1px 1px 12px 2px grey;
}



/* Manage users CSS Start */

.manage_users_box{
	background-color:#3584A7  !important;
    border: 1px solid #8dd18a;
    box-shadow: 4px 2px 10px;
}

.users_list th{
    padding: 3px;
}
.users_list td{
    padding: 3px;
    font-size: 11px;
    font-weight: 500;
}
#MyTravelRequestTbl{
  overflow-y: clip !important;
}


/* Manage users CSS End */

/* Manage provider fee schedule CSS start */

.drop-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 9px;
    border-radius: 10px;
    border: 1.5px dashed #c3dd4e;
    color: white;
    cursor: pointer;
    transition: background .2s ease-in-out, border .2s ease-in-out;
}


.drop-title {
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: color .2s ease-in-out;
}

.fee_list{
    height:50px;
    overflow-y: scroll;
}
.fee_list th {

    background-color: #e2ffff;
    color: #010101;
    font-size: 10px;
    padding: 5px;
    font-weight: 700;    
}
.fee_list td {
    font-size: 10px;
    padding: 5px;
    font-weight: 700;
    background-color:none !important;
}
.date_picker{
    font-size: small;
    width: 148px;
}

/* Dashboard CSS starts */

#main {
    padding: 20px 30px;
    transition: all 0.3s;
	min-height:930px;
    background-image: url("../../img/common/bg.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
  
  @media (max-width: 1199px) {
    #main {
      padding: 20px;
    }
  }

  .pagetitle {
    margin-bottom: 10px;
  }
  
  .pagetitle h1  {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--dataTableHeading) !important;
  }  
  .pagetitle h5 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--dataTableHeading) !important;
  }

 

/* End */



/*.logo {
    animation-duration: 3s;
    animation-name: slidein;
  }
  
  @keyframes slidein {
    from {
      margin-left: 100%;
      width: 50%;
    }
  
    50% {
      margin-left: 0%;
      width: 100%;
    }
  
    to {
      margin-left: 0%;
      width: 100%;
    }
  }*/

.before-auth-body-color{
  height: 100vh;
  background-color: #3e1b5a;
}

.aside_logo{
	position:var(--posRelative);
  display: block;
  position: absolute;
  left: 86px;
  bottom: 50px;
}


.enable-search-div{
	position: relative;
    top: 8px;
    right: 10px;
}
.enable-search-badge{
	position: absolute;
    right: -29px;
    top: -13px;
    font-size: 9px;
}
.hyperlink-no-style{
	text-decoration:none;
}
.hyperlink-no-style:hover{
	text-decoration:none;
}

.login-checkbox{
	position: var(--posRelative);
}
.login-confirm-text{
	position: var(--posAbsolute);
    top: -18px;
    left: 13px;
    color: #064e4e;
    font-size: 13px;
    font-weight: 400;
}

.bg-black{
    background-color:#231f20 !important;
    color:white !important;
}
.br-5{
  border-radius: 5px;
}
.br-10{
  border-radius: 10px;
}
.CommonFormBackground{
  /* background:#200834; */
  /* background-image: linear-gradient(-225deg, #231557 0%, #44107A 29%, #3b4c36 67%, #4a4a40 100%); */
  background: linear-gradient(135deg, #1c3b72, #343a40);
}
.CommonPageBackground{
  background-color: lightcyan !important;
}
.CommonLabel{
  font-size: 11px;
  color: white;
  font-weight: 600;
  margin-bottom: 0;
}
.CommonSelect{
  height: 30px !important;
  font-size: 11px;
  font-weight:bold;
}
.CommonInput{
  height: 30px !important;
  font-size: x-small;
  font-weight: bold;
}
.CommonTextArea{
  height: 30px !important;
  font-size: 11px;
  font-weight: bold;
  width: 250px;
}
.CommonButtonDiv{
  background: #eee3e3;
  border-radius: 5px;
  padding: 5px;
  color: black;
}
.flex-container > div {
  width: auto;
  text-align: inherit;
  line-height: 15px;
  font-size: 10px;
  padding: 2px;
  font-weight: bold;
  color: black;
  font-size: 10px;
}
.separator{
  font-size: medium;
  color: white;
  padding: 5px 0px;
  font-weight: 600;
  letter-spacing: 1px;
}
.travel_summary_table{
  background-color: white;
}
#MyTravelRequestTbl_length,#MyTravelRequestTbl_info,#MyTravelRequestTbl_paginate,
#ReceivedRequestRMTbl_length,#ReceivedRequestRMTbl_info,#ReceivedRequestRMTbl_paginate,
#ReceivedRequestFHTbl_length,#ReceivedRequestFHTbl_info,#ReceivedRequestFHTbl_paginate,
#ReceivedRequestTravelDeskTbl_length,#ReceivedRequestTravelDeskTbl_info,#ReceivedRequestTravelDeskTbl_paginate,
#MyAdvanceRequestTbl_length,#MyAdvanceRequestTbl_info,#MyAdvanceRequestTbl_paginate,
#ReceivedAdvanceRequestBUHTbl_length,#ReceivedAdvanceRequestBUHTbl_info,#ReceivedAdvanceRequestBUHTbl_paginate,
#ReceivedAdvanceRequestFHTbl_length,#ReceivedAdvanceRequestFHTbl_info,#ReceivedAdvanceRequestFHTbl_paginate,
#ReceivedAdvanceRequestFinanceTbl_length,#ReceivedAdvanceRequestFinanceTbl_info,#ReceivedAdvanceRequestFinanceTbl_paginate,
#MyReimbursementRequestTbl_length,#MyReimbursementRequestTbl_info,#MyReimbursementRequestTbl_paginate,
#ReceivedReimbursementBUHTbl_length,#ReceivedReimbursementBUHTbl_info,#ReceivedReimbursementBUHTbl_paginate,
#ReceivedReimbursementFinanceTbl_length,#ReceivedReimbursementFinanceTbl_info,#ReceivedReimbursementFinanceTbl_paginate,
#ExchangeRateTbl_length,#ExchangeRateTbl_info,#ExchangeRateTbl_paginate,
#MyDelegateTbl_length,#MyDelegateTbl_info,#MyDelegateTbl_paginate,
#LevelDesignationTbl_length,#LevelDesignationTbl_info,#LevelDesignationTbl_paginate,
#tbl_user_list_length,#tbl_user_list_info,#tbl_user_list_paginate,
#TravelPolicyTbl_length,#TravelPolicyTbl_info,#TravelPolicyTbl_paginate,
#ReceivedRequestBUHTbl_length,#ReceivedRequestBUHTbl_info,#ReceivedRequestBUHTbl_paginate{
  font-size: x-small;
}


.SummaryTitle{
  background: #333;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center; 
  text-align: center;
  height: 30px;  
  border: 0.2px solid lightcoral;
  color:white;
}
.SummaryBody{
  text-align: center;
    background: lightblue;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.2px solid lightblue;
}
.CommonGrid{
  display: grid;
  grid-template-columns: 
  repeat(6, 1fr);gap: 15px;
}
.CommonCard{
  box-shadow: hsl(229, 4%, 50%) 0px 1px 5px 1px;
  background:lightcyan;
}
.CommonTable{
  background: aliceblue;
}
.CommonHeader{
  font-weight: 700;
}
.CommonPanelBackground{
  background-image: linear-gradient(to right, #b8cbb8 0%, #b8cbb8 0%, #b465da 0%, #cf6cc9 33%, #ee609c 66%, #ee609c 100%);
}
.CommonDTHeader{
  color: white !important;
  font-size: 10px;
  background-color: #2c3e50 !important;
}
.CommonActionButton{
  width: auto;
  border-radius: 5px;
  border: 0.5px solid #29d4d4;
  font-size: x-small;
  font-weight: 600;
  height: 30px;
  color: ghostwhite;
  outline: outset;
}
.cadetblue{
  background: #568889;
}
.tooltiptd {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltiptd .tooltiptext {
  visibility: hidden;
  width: 300px; /* Adjust to your needs */
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: left;
  border-radius: 5px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 100%; /* Adjust position above the cell */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  word-wrap: break-word; /* Ensures long text breaks into multiple lines */
  max-height: 200px; /* Optional, to limit the height and make it scrollable */
  overflow-y: auto; /* Allows scrolling if the text overflows */
}

.tooltiptd:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.full-width-input {
  width: 100%;
  height: 100%;
  box-sizing: border-box; 
  padding: 5px;
  border: 0.2px solid lightgray;
  height: 30px;
}
.CommonCancelBtn{
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 68px;
  font-size: smaller;
  background: #694d81;
  color: #f3ecec;
  font-weight: 500;    
  border-bottom: outset;
  border-radius: 5px;
}
.CommonSubmitBtn{
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 80px;
  font-size: smaller;
  background: #38ac56;
  color: #f6f6f4;
  font-weight: 500;    
  border-bottom: outset;
  border-radius: 5px;
}

.CommonDraftBtn{
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100px;
  font-size: smaller;
  background: #7f9585;
  color: #f6f6f4;
  font-weight: 500;    
  border-bottom: outset;
  border-radius: 5px;
}
.CommonSearchBtn{
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 75px;
  font-size: 12px;
  background: #53954b;
  color: white;
  font-weight: 500;
  border-radius: 5px;
  border-top: outset;
}
