
/* 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*/
background-color: #502e6d !important;
  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: 12px;
  line-height: 36px;
  color: white;
  /*need more margin on the left of links to accomodate the numbers*/
  padding: 0 10px 0 60px;
  background: #502e6d;
  background: #502e6d;
  position: relative;
}
/*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: 46px;
  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: #502e6d;
  background: #502e6d;
}
.breadcrumb a.active:after, .breadcrumb a:hover:after {
  background: #502e6d;
  background: #502e6d;
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb a:after {
  content: '';
  position: absolute;
  top: 0; 
  right: -18px; /*half of square's length*/
  /*same dimension as the line-height of .breadcrumb a */
  width: 36px; 
  height: 36px;
  /*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's: 
  length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
  if diagonal required = 1; length = 1/1.414 = 0.707*/
  transform: scale(0.707) rotate(45deg);
  /*we need to prevent the arrows from getting buried under the next link*/
  z-index: 1;
  /*background same as links but the gradient will be rotated to compensate with the transform applied*/
  background: #502e6d;
  background: #502e6d;
  /*stylish arrow design using box shadow*/
  box-shadow: 
    2px -2px 0 2px rgba(0, 0, 0, 0.4), 
    3px -3px 0 2px rgba(255, 255, 255, 0.1);
  /*
    5px - for rounded arrows and 
    50px - to prevent hover glitches on the border created using shadows*/
  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;
  /*some styles now*/
  border-radius: 100%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  margin: 8px 0;
  position: absolute;
  top: 0;
  left: 30px;
  background: #502e6d;
  background: #502e6d;
  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:#231f20 !important;
	color:white !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: #231f20;
    border: 1px solid white;
    color: white;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    font-size: small;
    padding: 7px 24px;
  }

  .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-family: 'Open Sans', sans-serif;
	font-weight:600;
	letter-spacing: 3px;
}
.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: 31px;*/
    right: 70px;
    letter-spacing: 2px;
    font-style: italic;
}
.customlogo {
    margin-left: -45px;
	width: 299px;
}
#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-color:#502e6d !important;
}

.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;
	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:var(--panelBoxColor) !important;
    border: 1px solid #8dd18a;
    box-shadow: 4px 2px 10px;
}

.users_list th{
    font-size: small;
    padding: 3px;
    font-weight: 600;
}
.users_list td{
    padding: 3px;
    font-size: small;
	background-color:#f1f2f2 !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 {
    margin-top: 60px;
    padding: 20px 30px;
    transition: all 0.3s;
	min-height:800px;
	background-color:white;
  }
  
  @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%;
    }
  }*/

.bg-body{
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
	background-image: linear-gradient(to bottom, #231f20,#382643);
}

.aside_logo{
	position:var(--posRelative);
}
.aside_img{
	position:var(--posAbsolute);
	top:50px;
	left:55px;
}
@media (max-width: 500px) {
    .aside_logo {
		position:fixed;
		bottom:90px;
		left:140px;
    }
	.header .toggle-sidebar-btn {
		margin-right: 163px !important;
	}
}

.enable-search-div{
	position: relative;
    top: 8px;
    right: 10px;
}
.enable-search-badge{
	position: absolute;
    right: -9px;
    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;
}