/*
Created on : Jan 16, 2021
Author     : webiknows.com
Version: 1.1
*/

/*============================
 [Table of CSS]
 	1. Global variable css
	2. Background Color
	3. Color and Font
	4. Headings and Typographic Classes / .title, .uppercase etc
	5. Button
	6. Margins and Paddings
	7. Position
	8. Custom Checkbox and radio
	9. Reset Css
	10. Cus Scroll
	11. Ellipsis
    12. Animation
    13. FLOATING LABEL
    14. ACCORDION
========================================*/
/*-----------------
1. Global variable css
-----------------------*/
:root {
	--gradient-btn:  -webkit-linear-gradient(0deg, #fcb216 0%, #0092d8 100%);
    --primary-clr: #0092d8;
    --secondary-clr: #fcb216;
    --text-clr: #333333;
    --accent-clr: #8f8d8d;
    --lightgrey-clr: #ededed;
    --ff-heading: 'Roboto', sans-serif;
    --ff-para: 'Merriweather', serif;
}


@font-face {
    font-family: 'rupeeregular';
    src: url('../Fonts/rupee-webfont.woff2') format('woff2'),
         url('../Fonts/rupee-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
/*<span class="ruppee-f">`</span>*/
.ruppee-f {font-family: 'rupeeregular';font-weight: 600;}

/*-----------------
2. Background Color
-----------------------*/
.bg-primary {background: var(--primary-clr) !important;}
.bg-secondary {background: var(--secondary-clr);}
.bg-lightgrey {background: var(--lightgrey-clr);}
.bg-white {background: #fff !important;}
.bg-t {background: transparent !important;}
/*-----------------
3. Color and Fonts 
-----------------------*/
.primary-clr {color: var(--primary-clr);}
.secondary-clr {color: var(--secondary-clr);}
.white {color: #fff;}
.green{color:#38BC68;}
.f-headind {font-family: var(--ff-heading);}
.f-para {font-family: var(--ff-para);}
/*-----------------
4. Headings and Typographic Classes / .title, .uppercase etc
-----------------------*/
/* - Font size classes - */
.big {font-size: 3.6rem;line-height: 4.8;}
.bigger {font-size: 4.8rem;line-height: 1.2;}
.super {font-size: 6rem;line-height: 1.2;margin-bottom: 0;}
.f-8 {font-size: 0.8rem;}
.f-9 {font-size: 0.9rem;}
.f-10 {font-size: 1rem;}
.f-11 {font-size: 1.1rem;}
.f-12 {font-size: 1.2rem;}
.f-13 {font-size: 1.3rem;}
.f-14 {font-size: 1.4rem;}
.f-16 {font-size: 1.6rem;}
.f-18 {font-size: 1.8rem;}
.f-20 {font-size: 2rem;}
.f-22 {font-size: 2.2rem;}
.f-24 {font-size: 2.4rem;}
.f-26 {font-size: 2.6rem;}
.f-28 {font-size: 2.8rem;}

/* - Font weight classes - */
.bold {font-weight: bold;}
.regular {font-weight: normal;}
.bold-500 {font-weight: 500;}
.bold-600 {font-weight: 600;}
.bold-700 {font-weight: 700;}

/* - Text transform classes - */
.txt-upper {text-transform: uppercase;}
.txt-lower {text-transform: lowercase;}
.txt-capital {text-transform: capitalize;}
.l-h-1 {line-height: 1;}
.l-h-2 {line-height: 1.2;}
.l-h-3 {line-height: 1.3;}
.l-h-4 {line-height: 1.4;}
.l-h-5 {line-height: 1.5;}
.l-h-6 {line-height: 1.6;}
.l-h-7 {line-height: 1.7;}
.l-h-8 {line-height: 1.8;}
.l-h-9 {line-height: 1.9;}
.l-h2 {line-height: 2;}

/*-----------------
5. Button  
-----------------------*/
.btn-secondary {
	background-color: var(--secondary-clr);
    border-color: var(--secondary-clr);
}
.cus-primary-btn {
    color: #fff;
    background: var(--primary-clr);
    text-align: center;
    border: 1px solid var(--primary-clr);
    min-width: 100px;
    font-weight: 600;
    font-size: 14px;
    line-height: 34px;
    transition: all 0.3s;
}
.cus-primary-btn:hover {
    color: var(--primary-clr);
    background: var(--secondary-clr) ;
    border: 1px solid var(--secondary-clr);
}
.cus-primary-btn-outline {
    color: var(--primary-clr);
    background: transparent;
    text-align: center;
    border: 1px solid var(--primary-clr);
    min-width: 100px;
    font-weight: 600;
    font-size: 14px;
    line-height: 34px;
    transition: all 0.3s;
}
.cus-primary-btn-outline:hover {
    color: #fff !important;
    background: var(--secondary-clr) ;
    border: 1px solid var(--secondary-clr);
}

/*-----------------
7. Position
-----------------------*/
.top-left {position: absolute;top: 8px;left: 16px;}
.top-right {position: absolute;top: 8px;right: 16px;}
.top-center {position: absolute;top: 0;left: 50%;transform: translate(-50%, 0);}  
.bottom-right {position: absolute;bottom: 8px;right: 16px;}
.bottom-left {position: absolute;bottom: 8px;left: 16px;}
.bottom-center {position: absolute;bottom: 0;left: 50%;transform: translate(-50%, -50%);}  
.p-centered {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}
.v-center {-webkit-transform: translate(0,-50%);-o-transform: translate(0,-50%);transform: translate(0,-50%);top: 50%;margin: 0 auto;}
.modal-dialog-bottom {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: flex-end; min-height: calc(100% - 0rem);}
.modal-rounded {border-radius: 8px 8px 0 0;}



/*-----------------
9. Reset Css
-----------------------*/
/* @media screen and (min-width: 320px) {
  html {font-size: calc(16px + 6 * ((100vw - 320px) / 680));}
}
@media screen and (min-width: 1000px) {
  html {font-size: 22px;}
}
html{font-size: 62.5%;} */

::selection {
  background-color: var(--primary-clr);
  color: #fff;
}
/*-----------------
10. Custom Scrollbar
-----------------------*/
.cus-scrollbar {
	margin-left: 30px;
	float: left;
	height: 200px;
	background: #F5F5F5;
	overflow-y: scroll;
	margin-bottom: 25px;
}
/* * STYLE 1 */
.style-1::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}
.style-1::-webkit-scrollbar {
	width: 12px;
	background-color: #F5F5F5;
}
.style-1::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}
/** STYLE 2 **/
.style-2::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}
.style-2::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

.style-2::-webkit-scrollbar-thumb
{
	background-color: #000000;
}
/*-----------------
11.Ellipsis
-----------------------*/
.ellipsis-line1 {  
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis-line2 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ellipsis-line3 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.ellipsis-line4 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.ellipsis-line5 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
/*------------------------------
14. ACCORDION
-------------------------------*/
.accordion-plus:before {
    content: "\f107";
    position: absolute;
    right: 30px;
    font-family: FontAwesome;
}
.accordion-plus[aria-expanded="true"]:before {
    transform: rotateZ(180deg);
}
/*------------------------------
COMMON CSS
-------------------------------*/
.w-120px {width: 120px}
.w-250px {width: 250px}
.w-100px {width: 100px}

.vw-100 {width: 100vw;}
.vh-100 {height: 100vh;}
.vh-48 {height: 48vh;}

.h-60px {height: 60px}
.h-120px {height: 120px}
.h-130px {height: 130px}
.h-150px {height: 150px}
.h-160px {height: 160px}
.h-180px {height:180px;}
.h-200px {height: 200px;}
.h-210px {height: 210px;}
.h-230px {height: 230px;}
.h-250px {height: 250px} 

.b-r-5 {border-radius: 5px !important;}
.b-r-10 {border-radius: 10px !important;}
.b-r-15 {border-radius: 15px !important;}
.b-r-50 {border-radius: 50px;}
.b-r-50per {border-radius: 50%;}

.b-r-left-5 {
	border-radius: 5px 0px 0px 5px;
}
.b-r-left-10 {
	border-radius: 10px 0px 0px 10px;
}
.b-r-left-15 {
    border-radius: 15px 0px 0px 15px;
}

.b-r-top-5 {
	border-radius: 5px 5px 0px 0px;
}
.b-r-top-10 {
	border-radius: 10px 10px 0px 0px !important;
}
.b-r-top-15 {
    border-radius: 15px 15px 0px 0px;
}

.b-r-right-5 {
	border-radius: 0px 5px 5px 0px !important;
}
.b-r-right-10 {
	border-radius: 0px 10px 10px 0px;
}
.b-r-right-15 {
    border-radius: 0px 15px 15px 0px;
}

.b-r-bottom-5 {
	border-radius: 0px 0px 5px 5px;
}
.b-r-bottom-10 {
	border-radius: 0px 0px 10px 10px;
}
.b-r-bottom-15 {
	border-radius: 0px 0px 15px 15px;
}

.border-primary-clr {
	border: 1px solid var(--primary-clr);
}
.outline {
	border: 1px solid var(--primary-clr);
}
.text-transform-none {
    text-transform: none;
}

body[data-sidebar=dark] .navbar-brand-box {
    background: #fff;
}
body[data-sidebar=dark] .vertical-menu {
    background: var(--primary-clr);
}
body[data-sidebar=dark] #sidebar-menu ul li a i,
body[data-sidebar=dark] #sidebar-menu ul li a,
body[data-sidebar=dark] .menu-title,
body[data-sidebar=dark] #sidebar-menu ul li ul.sub-menu li a   {
    color: #fff;
}

.card {
	overflow:hidden;
}
.btn-primary {
    color: #fff;
    background-color: var(--primary-clr);
    border-color: var(--primary-clr);
}

.breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #74788d;
  content: "/";
}

.CusVerticalTabs .nav-item .nav-link {
	text-align:left;
}

.CusVerticalTabs .nav-item .nav-link.active {
    color: #fff;
    background: var(--primary-clr);
}
.CusVerticalTabs .nav-item .nav-link::after {
	display:none;
}
.CusVerticalTabs .nav-item .nav-link.active::before {
	content: "\e9de";
    position: absolute;
    right: 14px;
    top: 2px;
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    font-size: 20px;
} 

.accordion-item .accordion-header {
    background: #f9f9f9;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-right: 34px;
}
.repeater-btn {
    position: relative;
}
.repeater-btn > input {
    padding-left: 30px;
    background: #8c939e;
    border-color: #8c939e;
}
.repeater-btn > input:hover {
    padding-left: 30px;
    background: #828892;
    border-color: #828892;
}
.repeater-btn:before {
    content: "\F0415";
    position: absolute;
    left: 8px;
    top: 8px;
    z-index: 9999;
    display: inline-block;
    font: normal normal normal 24px/1 "Material Design Icons";
    color: #fff;
    font-size: 20px;
}
.showNameField {
    margin-top: 10px;
    display: none;
    transition: all 0.3s;
}
.showField:checked + label + .showNameField {
    display: block;
    transition: all 0.3s;
}
.RangeOfMotionTable tr td,
.RangeOfMotionTable tr th {
    font-size: 14px;
}
.RangeOfMotionTable tr td:nth-child(4),
.RangeOfMotionTable tr th:nth-child(4),
.RangeOfMotionTable tr th.LeftSide {
    border-right: 4px solid #eff2f7;
}


/*==============--- Common Website CSS - START ---==============*/
.shadow-md {
	box-shadow: 0px 0px 10px 0px #d6d6d6;
}
.nav-tabs .nav-link.active {
    background-color: var(--secondary-clr);
    color: white;
    border: 0px;
}
.tab-content {
    background: white;
    border: 1px solid #dddddd;
    margin-top: -2px;
    box-shadow: 0px 0px 10px 0px #d6d6d6;
    border-radius: 0px 5px 5px 5px;
}
.special_test_div > li {
    font-size: 16px;
    font-weight: 500;
    padding-top: 20px;
}
.special_test_fields > .special_test_title {
    padding-top: 10px;
}
.special_test_div ul > li {
    border-bottom: 1px solid #e8e5e5;
    padding: 10px 0px;
	list-style: disc;
}
.special_test_div ul > li:last-child {
    border: none;
}
.special_test_accordion .accordion-item {
    margin-bottom: 10px;
    border-top: 1px solid rgba(0,0,0,.125);
    border-radius: 5px;
}
.special_test_accordion .accordion-item .accordion-header {
    border-radius: 5px;
}

select.btn-mini {
    border: 1px solid #ddd;
    padding: 4px 10px;
    border-radius: 2px;
    margin-top: -4px;
}

.disable-menu {
    opacity: 0.4;
    //cursor: not-allowed;
	pointer-events: none;
}

/*==============--- Common Website CSS - END ---==============*/
.input-group button i {
    font-size: 18px;
    line-height: 1;
} 


/*==============--- Upload Documents CSS - START ---==============*/

.upload_docs_form + .tab-content > .tab-pane .save_next_btn, .upload_docs_form + .tab-content > .tab-pane:last-child .save_btn {
    display: none;
}

.upload_docs_form + .tab-content > .tab-pane:last-child .save_next_btn {
    display: inline-block;
}



/*==============--- Upload Documents CSS - END ---==============*/






/*######### MEDIA QUERY START HERE ########*/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

} 

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

} 

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

/*background*/
.lg-bg-primary {background: var(--primary-clr) !important;}
.lg-bg-secondary {background: var(--secondary-clr) !important;}
.lg-bg-white {background: #fff !important;}
.lg-bg-greylight {background: #f3f3f3 !important;}
.lg-bg-t {background: transparent !important;}  
}  


/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}

.showField:checked + label + .showNameField .select2-container {
    width: 100% !important;
}