/************************************************
	************************************************
							Importing Sass Variables
	************************************************
************************************************/
/*************** 1. Sass Variables ***************/
/************************************************
	************************************************
											Colors
	************************************************
************************************************/
/************************************************
	************************************************
											Mixins
	************************************************
************************************************/
/************************************************
	************************************************
										Web Fonts
	************************************************
************************************************/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");
/************************************************
	************************************************
								Table of Contents							
	************************************************
************************************************/
/*----------------------------
	---------------------
	-----------------
1. Body
2. Global Styles - a link, ul, hr
3. Reusable Styles
	 3 A. Card Fixed Height
	 3 B. Spacers/Heights
	 3 C. Background Colors
	 3 D. Text Colors
	 3 E. Font Sizes
	 3 F. Custom Typography
	 3 G. Image Sizes
	 3 H. Borders
4. Layout - app, app-wrap, app-header, app-container, app-main,
						main-heading, main-content, main-footer, app-side,
						side-content, side-nav, onoffcanvas, sidebar-widget,
5. Custom Headers/Custom Banners
	 5 A. Custom Header
	 5 B. Profile Page Banner
	 			5 B 1. Welcome Message
	 			5 B 2. User plans
	 			5 B 3. Share footer
	 5.C. Widgets Page Banner
	 5 D. Tasks Page Banner
	 5 E. Search Results Page Banner
6. Custom Search Box - used in Contacts/Search and Tasks Pages
7. Date Range CSS
8. Main CSS
	 8 A. Logo
	 8 B. Header Scrolling live Updates
	 8 C. Header Actions
	 8 D. Header Messages Dropdown
	 8 E. Tasks Widget
	 8 F. User Settings
	 8 G. Toggle Mini Nav
	 8 H. Toggle Sidebar
9. Widgets
	 9 A. Product Status Widget
	 9 B. Project activity Widget
	 9 C. Graph Notifi Info
	 9 D. Orders Widget
	 9 E. Info Widget
	 9 F. Toggle switch
	 9 G. Messages Widget
	 9 H. Icon Stats Widget
	 9 I. Newsticker Widget
	 9 J. Tasks Widget
	 9 K. Todo Widget
	 9 L. Traffic Sources Widget
	 9 M. Revenue Widget
	 9 N. Simple widget
	 9 O. Plain widget
	 9 P. Settings
	 9 Q. Deals Widget
	 9 R. Invoices Widget
	 9 S. Tags Widget
	 9 T. Post Widget
	 9 U. Projects Table
10. Pages
	 10 A. Invoice Page
	 10 B. Icons Page
	 10 C. Gallery Page
	 10 D. News Feed Page
	 10 E. Social Stats Page
	 10 F. Small Gallery Page
	 10 G. Search Results Page
	 10 H. Custom Forms Page
	 10 I. Pricing Plans
	 10 J. Tasks
	 10 K. Timeline
11. Chart Heights
12. Plugins Overwrite CSS
	 12 A. Gmap Skins
	 12 B. jVector Map
	 12 C. Flot Chart
	 12 D. Notify
	 12 E. Rating
	 12 F. Google Maps
13. Login, Signup, Lock and Error Screens
	 13 A. Login Screen
	 13 B. OR | Line between two blocks
	 13 C. Lock Screen
	 13 D. Error screen
14. Loading
15. Sections
16. Inline Bagdes
17. Secure Account
18. Bootstrap Overwrite CSS
	 18 A. Modals
	 18 B. Carousel
	 18 C. Buttons
	 18 D. Outline Buttons
	 18 E. Dropdown Menus
	 18 F. Media
	 18 G. Cards
	 18 H. Card Header Tabs
	 18 I. Accordion Card
	 18 J. Tooltips
	 18 K. Badges
	 18 L. Alerts
	 18 M. Progress bars
	 18 N. Popovers
	 18 O. Tabs & Navs
	 18 P. Pills
	 18 Q. Page Item
	 18 R. Breadcrumbs
	 18 S. jumbotron
	 18 T. List Group
	 18 U. Pagination
	 18 V. Blockquote
	 18 W. Custom File Labels
	 18 X. Form Controls
	 18 Y. Checkbox & Radios
	 18 Z. Navbar
19 Tables
20 Gutters
21 Code Syntax Highlight
	--------------------
	-------------------------
----------------------*/
/************************************************
	************************************************
									  1. Body							
	************************************************
************************************************/
html {
  height: 100%; }

body {
  min-height: 100%;
  position: relative; }

body {
  margin: 0;
  padding: 0;
  font: normal .9rem 'Open Sans', sans-serif;
}
  body.boxed {
    margin: 0 auto;
    max-width: 1200px;
  }
    body.boxed .app-header {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      left: inherit;
      right: inherit; }
    body.boxed .main-footer {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      left: inherit;
      right: inherit; }
  body.full-screen a.onoffcanvas-toggler {
    display: inline-block; }
  body.full-screen .app-side {
    left: 0; }
    body.full-screen .app-side.is-open {
      left: -230px; }
  @media (max-width: 992px) {
    body.full-screen .app-side {
      left: -230px; }
      body.full-screen .app-side.is-open {
        left: 0; } }
  body.full-screen .app-main {
    margin-left: 0; }
  @media (max-width: 1100px) {
    body.off-canvas a.onoffcanvas-toggler {
      display: inline-block; }
    body.off-canvas a.mini-nav-btn {
      display: none; } }
  body.error-bg {
    background-size: cover;
    background-position: center center; }

/************************************************
	************************************************
										2. Global Styles
	************************************************
************************************************/
a {
  text-decoration: none; }
  a:hover {
    text-decoration: none; }
  a:focus {
    outline: none;
    text-decoration: none; }

ul {
  margin: 0;
  padding: 0; }
  ul li {
    list-style-type: none; }

ul.custom {
  margin: 0 0 0 20px;
  padding: 0; }
  ul.custom li {
    list-style-type: none;
    line-height: 180%; }

hr {
  margin-top: 10px;
  margin-bottom: 10px;}

/************************************************
	************************************************
								3. Reusable Styles
	************************************************
************************************************/
/*************** 3 A. Card Fixed Heights ***************/
.card333 {
  height: 324px; }

.card160 {
  height: 159px; }

/*************** 3 B. Spacers ***************/
.spacer10 {
  height: 10px; }

.spacer20 {
  height: 20px; }

.spacer30 {
  height: 30px; }

.spacer50 {
  height: 50px; }

.spacer60 {
  height: 60px; }

.spacer70 {
  height: 70px; }


/************* 3 E. Font Sizes **************/
.font-light {
  font-weight: 300; }

.font-regular {
  font-weight: 400; }

.font-semibold {
  font-weight: 600; }

.font-bold {
  font-weight: 700; }

/************* 3 F. Custom Typography **************/
p.custom {
  line-height: 180%;
  font-size: .85rem; }

h1.custom {
  margin: 0 0 30px 0;
  line-height: 100%; }

h2.custom {
  margin: 0 0 25px 0;
  line-height: 100%; }

h3.custom {
  margin: 0 0 20px 0;
  line-height: 100%; }

h4.custom {
  margin: 0 0 20px 0;
  line-height: 100%; }

h5.custom {
  margin: 0 0 20px 0;
  line-height: 100%; }

/************* 3 G. Image Sizes **************/
.img-30 {
  width: 30px;
  height: 30px; }

.img-48 {
  width: 48px;
  height: 48px; }

.img-60 {
  width: 60px;
  height: 60px; }

.img-72 {
  width: 72px;
  height: 72px; }

.img-90 {
  width: 90px;
  height: 90px; }

/************* Overflows Scrolls **************/
.overflow-scroll {
  overflow: auto; }

/************* Char Count **************/
.charCount {
  font-size: .7rem; }

/************************************************
	************************************************
									4. Layout CSS
	************************************************
************************************************/
.app {
  min-height: 100%; }

.app-wrap {
  min-height: 100vh;
  position: relative; }

.app-header {
  padding: 0;
  position: fixed;
  z-index: 1020;
  top: 0;
  left: 0;
  right: 0; }

@media (max-width: 1100px) {
  .app-header {
    left: 0; } }
@media (max-width: 576px) {
  .app-header {
    position: inherit; } }
.app-container {
  position: relative;
  top: 60px; }

@media (max-width: 576px) {
  .app-container {
    top: inherit; } }
.app-main {
  position: relative;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  margin-left: 230px; }
  .app-main.left-toggle {
    margin-left: 0; }

.main-heading {
  padding: 0 .5rem;
  position: relative;
  z-index: 10; }
  .main-heading .page-icon {
    float: left;
    padding: 25px 20px 25px 0; }
    .main-heading .page-icon i {
      font-size: 1.5rem;
      margin: 0;
      display: block; }
  .main-heading .page-title {
    margin: 15px 0 15px 65px; }
    .main-heading .page-title h3 {
      margin: 0;
      padding: 0;
      font-weight: 300;
      font-size: 1.5rem;
      line-height: 125%; }
    .main-heading .page-title h6.sub-heading {
      margin: 0;
      padding: 0;
      font-size: .75rem;
    }
    .main-heading .page-title .breadcrumb {
      padding: 0;
      margin: 0;
      font-size: .8rem;
      background: transparent; }

@media (max-width: 768px) {
  .main-heading .page-icon {
    display: none; }
  .main-heading .page-title {
    margin: 12px 0 0 0; } }
.main-content {
  position: relative;
  margin-bottom: auto;
  padding: 1.5rem; }

.main-footer {
  padding: .7rem 1.3rem;
  font-size: .65rem;
}

.app-side {
  margin: 0;
  width: 230px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 1000;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out; }
  .app-side.fixed {
    position: fixed;
    padding: 60px 0 0 0; }
  .app-side.left-toggle {
    left: -230px; }

@media (max-width: 1100px) {
  .app-side {
    left: 0;
    box-shadow: none; }
    .app-side.is-open {
      left: -230px; } }
@media (max-width: 992px) {
  .app-side {
    left: -230px; }
    .app-side.is-open {
      left: 0; } }
.side-content {
  margin-bottom: auto; }
  .side-content ul.user-actions {
    display: block;
    margin: 0 auto 10px auto;
    padding: 20px 10px 10px 10px;
    text-align: center;
  }
    .side-content ul.user-actions .quick-links {
      margin: 0 0 20px 0;
      display: block; }
    .side-content ul.user-actions > li {
      display: inline-block; }
      .side-content ul.user-actions > li:nth-child(3n+3) {
        border-right: 0; }
      .side-content ul.user-actions > li:nth-child(4) {
        border-bottom: 0; }
      .side-content ul.user-actions > li:nth-child(5) {
        border-bottom: 0; }
      .side-content ul.user-actions > li:nth-child(6) {
        border-bottom: 0; }
      .side-content ul.user-actions > li a {
        font-size: .65rem;
        text-align: center;
        display: block;
        width: 36px;
        height: 36px;
        line-height: 32px;
        margin: 5px;
        float: left;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        border-radius: 30px; }

        .side-content ul.user-actions > li a i {
          font-size: 1.2rem;
          margin: auto;
          vertical-align: middle; }
        .side-content ul.user-actions > li a .count-label {
          position: absolute;
          top: 5px;
          right: 7px;
          width: 10px;
          height: 10px;
          -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
          border-radius: 10px;
          animation: glow 1s ease-out;
          -moz-animation: glow 1s ease-out;
          -moz-animation-iteration-count: infinite;
          -o-animation: glow 1s ease-out;
          -o-animation-iteration-count: infinite;
          -webkit-animation: glow 1s ease-out;
          -ms-animation: glow 1s ease-out;
          -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite; }

      .side-content ul.user-actions > li:last-child {
        border-right: 0; }
      .side-content ul.user-actions > li:first-child {
        border-left: 0; }

.side-nav {
  margin-bottom: 1rem; }
  .side-nav .unifyMenu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0; }
    .side-nav .unifyMenu > li {
      position: relative; }
      /*.side-nav .unifyMenu > li.selected:after {
        position: absolute;
        content: "";
        right: -1px;
        top: 0px;
        background: url("../img/menu-arrow.svg");
        background-size: 100%;
        width: 9px;
        height: 40px;
        z-index: 2020; }*/
      .side-nav .unifyMenu > li.selected:before {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        height: 100%;
        /*max-height: 40px;
        min-height: 40px;*/
        z-index: 2020; }
      .side-nav .unifyMenu > li.selected > a {
        font-weight: 600;
      }
        /*.side-nav .unifyMenu > li.selected > a .has-icon i:before {
          background: -moz-linear-gradient(top, #999999 0%, #333333 100%);
          background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #999999), color-stop(100%, #333333));
          background-clip: text;
          text-fill-color: transparent;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent; }*/
      .side-nav .unifyMenu > li.selected .current-page {
        pointer-events: none;
      }
      .side-nav .unifyMenu > li.active a span.lbl {
        display: none; }
      /*.side-nav .unifyMenu > li.active a span.badge {
        display: none; }*/
    .side-nav .unifyMenu a {
      position: relative;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      outline-width: 0;
      -webkit-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
      font-size: .85rem;
      padding: 0;
      font-weight: 500; }

      .side-nav .unifyMenu a span.lbl {
        position: absolute;
        right: 30px;
        top: 17px;
        height: 7px;
        width: 7px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px; }

      .side-nav .unifyMenu a span.badge {
        position: absolute;
        right: 15px;
        top: 14px;
        height: 14px;
        min-width: 24px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        font-size: 10px;
        padding: 2px 5px; }

      .side-nav .unifyMenu a span.chat-badge {
        top:24px;
        height:16px;}

      .side-nav .unifyMenu ul a {
        padding: .5em .5em .5em 2.5em;
        font-size: .85rem; }

    .side-nav .unifyMenu ul a .has-icon{
      margin-left: 0;
    }
      .side-nav .unifyMenu ul a.smsContacts{
        padding: .5em .5em .5em 1.5em;
        font-size: .85rem; }
      .side-nav .unifyMenu ul ul a {
        padding-left: 4rem;
      }
  .side-nav .collapse {
    display: none; }
    .side-nav .collapse.in {
      display: block; }
  .side-nav .collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: .35s;
    -o-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-property: height, visibility;
    -o-transition-property: height, visibility;
    transition-property: height, visibility; }
  .side-nav .arrow {
    float: right;
    line-height: 1.42857; }
  .side-nav .has-arrow {
    position: relative; }
    .side-nav .has-arrow::after {
      position: absolute;
      content: '';
      width: .5em;
      height: .5em;
      border-width: 1px 0 0 1px;
      border-style: solid;
      border-color: initial;
      right: 1.3em;
      -webkit-transform: rotate(135deg) translate(0, -50%);
      -ms-transform: rotate(135deg) translate(0, -50%);
      -o-transform: rotate(135deg) translate(0, -50%);
      transform: rotate(135deg) translate(0, -50%);
      -webkit-transform-origin: top;
      -ms-transform-origin: top;
      -o-transform-origin: top;
      transform-origin: top;
      top: 50%;
      -webkit-transition: all .3s ease-out;
      -o-transition: all .3s ease-out;
      transition: all .3s ease-out; }
  .side-nav .active > .has-arrow::after,
  .side-nav .has-arrow[aria-expanded="true"]::after {
    -webkit-transform: rotate(225deg) translate(0, -50%);
    -ms-transform: rotate(225deg) translate(0, -50%);
    -o-transform: rotate(225deg) translate(0, -50%);
    transform: rotate(225deg) translate(0, -50%);
    margin-top: 0; }

@media (min-width: 992px) {
  .app-side.is-mini {
    width: 80px;
    left: 0; }
    .app-side.is-mini ~ .app-main {
      margin-left: 80px; }
    .app-side.is-mini .unifyMenu > li.selected:after {
      background: transparent; }
    .app-side.is-mini .unifyMenu > li > ul {
      position: absolute;
      top: 100%;
      left: 100%;
      display: none; }
      .app-side.is-mini .unifyMenu > li > ul > li > a {
        padding: 0.5em 0.5em 0.5em 1.5em; }
    .app-side.is-mini .unifyMenu > li:hover > ul {
      display: block;
      min-width: 192px;
      height: auto !important; }
    .app-side.is-mini .unifyMenu > li:hover > a {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      min-width: 257px;
    }

    .app-side.is-mini .unifyMenu > li:hover .nav-title {
      display: inline-block;
      -webkit-align-self: center;
      -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center; }
    .app-side.is-mini .unifyMenu > li:hover > .has-arrow::after {
      border-width: 1px 0 0 1px; }
    .app-side.is-mini .unifyMenu > li > a.has-arrow::after {
      border-width: 0; }
    .app-side.is-mini .unifyMenu li:last-child {
      padding-bottom: 0; }
    .app-side.is-mini .unifyMenu ul ul a {
      padding-left: 2.5rem; }
    .app-side.is-mini .unifyMenu a span.lbl {
      display: none; }
    .app-side.is-mini .unifyMenu a span.badge {
      display: none; }
    .app-side.is-mini .nav-title {
      display: none; }
    .app-side.is-mini a.logo {
      padding: 20px 10px 20px 10px; }
      .app-side.is-mini a.logo img {
        max-width: 50px; }
    .app-side.is-mini .has-icon {
      width: 80px;
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 80px;
      -ms-flex: 0 0 80px;
      flex: 0 0 80px; } }
@media (max-width: 1100px) {
  .app-main {
    margin-left: 0; }

  .side-nav .unifyMenu > li.selected:after {
    background: transparent; } }
.has-icon {
  margin-left: 10px;
  width: 40px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 40px;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  height: 2.5rem;
  font-size: 1.4em;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  /*.has-icon i:before {
    background: -moz-linear-gradient(top, #f3f3f3 0%, #7387a9 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f3f3f3), color-stop(100%, #7387a9));
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; }*/

.onoffcanvas {
  visibility: hidden; }
  .onoffcanvas.is-open {
    visibility: visible; }

  .sidebar-widget ul.contributions {
    padding: 15px; }
    .sidebar-widget ul.contributions li {
      margin-bottom: 1.5rem; }
      .sidebar-widget ul.contributions li p {
        margin: 0 0 5px 0;
        font-size: .8rem;
      }
        .sidebar-widget ul.contributions li p span {
          float: right;
          font-size: .9rem;
          font-weight: 600; }
      .sidebar-widget ul.contributions li:last-child {
        margin-bottom: 0; }

@media (min-width: 992px) {
  .app-side.is-mini .sidebar-widget ul.contributions li p span {
    float: none;
    display: block; } }
/************************************************
	************************************************
					5. Custom Headers/Custom Banners
	************************************************
************************************************/
/*************** 5 A. Custom Header ***************/
.custom-header {
  padding: 1rem 1rem;
  position: relative;
  z-index: 10; }
  .custom-header:before {
    content: "";
    background-size: 100%;
    background-position: center 5%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.35; }

    .custom-header .page-title h3 {
      font-size: 2rem;
      font-weight: 300;
      margin: 0; }
    .custom-header .page-title h6.sub-heading {
      line-height: 180%;
      margin: 0;
      font-weight: 300;
      font-size: .80rem; }
  .custom-header .daterange-container {
    margin: 13px 0 0 0; }


/*************** 5 B. Profile Page Banner ***************/
.profile-header {
  padding: 2rem 1rem;
  position: relative;
  z-index: 10; }
  .profile-header:before {
    content: "";
    background-size: 100%;
    background-position: center 5%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.5; }

@media (max-width: 767px) {
  .profile-header .welcome-msg .btn {
    display: none; }
  .profile-header .welcome-msg .welcome-title {
    margin-bottom: 0; }
  .profile-header .welcome-msg .welcome-designation {
    margin-bottom: 0; } }
.welcome-msg {
  padding-left: 0; }
  .welcome-msg .welcome-user-thumb {
    margin-bottom: 10px; }
    .welcome-msg .welcome-user-thumb img {
      width: 60px;
      height: 60px;
      -webkit-border-radius: 100px;
      -moz-border-radius: 100px;
      border-radius: 100px; }
  .welcome-msg .welcome-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: .7rem; }
    .welcome-msg .welcome-title span {
      font-weight: 500; }
  .welcome-msg .welcome-designation {
    line-height: 100%;
    margin-bottom: 1rem;
    margin-right: 10%; }

@media (max-width: 767px) {
  .welcome-msg .btn {
    display: none; }
  .welcome-msg .welcome-title {
    margin-bottom: 0;
    font-size: 1.5rem; }
  .welcome-msg .welcome-designation {
    margin-bottom: 0; }
  .welcome-msg .welcome-user-thumb img {
    width: 32px;
    height: 32px; } }
.user-plans {
  margin: 2.5rem 0 0 0; }

  .user-plans.sm {
    margin: 1rem 0 0 0; }

@media (max-width: 767px) {
  .user-plans {
    margin: 1rem 0 0 0; }
    .user-plans.sm {
      margin: 1rem 0 0 0; } }
.share-footer a:not(.btn) {
  margin-top: 4px;
  margin-right: 10px;
  font-size: 1rem;
  display: inline-block; }

/*************** 5 C. Widgets Page Banner ***************/
.widgets-header {
  padding: 2rem 1rem;
  position: relative;
  z-index: 10; }
  .widgets-header:before {
    content: "";
    background-size: 100%;
    background-position: center center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.4; }

/*************** 5 D. Tasks Page Banner ***************/
.tasks-banner {
  padding: 1rem 1rem;
  position: relative;
  z-index: 10;
  text-align: center; }
  .tasks-banner:before {
    content: "";
    background-size: 100%;
    background-position: center center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
  .tasks-banner .page-title h3 {
    font-size: 2rem;
    font-weight: 300;
    margin: 0;
    line-height: 170%;
  }
  .tasks-banner .page-title h6#today-date {
    margin: 0 0 2rem 0;
    font-weight: 300;
  }
  .tasks-banner .add-btn {
    position: absolute;
    bottom: 0;
    right: 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    width: 40px;
    height: 38px;
    padding: 10px;
    text-align: center;
    border: 0;
    font-size: 1rem; }
    .tasks-banner .add-btn:hover {
      border: 0; }
    .tasks-banner .add-btn:focus {
      border: 0;
      outline: none;
      box-shadow: none; }

/*************** 5 E. Search Results Page Banner ***************/
.search-results-banner {
  padding: 2rem 1rem;
  position: relative;
  z-index: 10;
  text-align: center; }
  .search-results-banner:before {
    content: "";
    background-size: 100%;
    background-position: center 25%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.2; }

    .search-results-banner .page-title h3 {
      font-size: 2rem;
      font-weight: 300;
      margin: 0;
      line-height: 250%; }
    .search-results-banner .page-title p {
      margin: 0 0 1rem 0; }

/************************************************
	************************************************
								6. Custom Search Box
	************************************************
************************************************/
.tasks-search {
  position: relative;
  margin-right: 50px; }
  .tasks-search .form-control {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: .7rem 1rem; }
  .tasks-search .btn {
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0; }

/************************************************
	************************************************
								7. Date Range CSS
	************************************************
************************************************/
.daterange-container {
  float: right;
  margin: 18px 0; }
  .daterange-container .form-control {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: .4rem .7rem .4rem 1rem;
    font-size: .8rem;
  }
    .daterange-container .form-control > span {
      float: left;
      margin-top: 2px; }
    .daterange-container .form-control i.down-arrow {
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      border-radius: 3px;
      font-size: 1rem;
      width: 24px;
      height: 24px;
      text-align: center;
      line-height: 24px;
      margin-left: 20px;
      display: inline-block; }

/************************************************
	************************************************
										8. Main CSS
	************************************************
************************************************/
/*************** 8 A. Logo ***************/
.logo-block {
  min-width: 215px;
  max-width: 215px;
  margin: 0;
  float: left; }

.img-logo{
  width: 45%;
  margin-top: 70px;
}

a.logo {
  padding: 14px 0px 14px 5px;
  float: left;
  min-width: 165px; }
  a.logo img {
    max-width: 120px;
    max-height: 30px; }

@media (max-width: 767px) {
  .logo-block {
    min-width: 190px;
    max-width: 190px; }

  a.logo {
    min-width: 140px; }
    a.logo img {
      max-width: 100px;
      max-height: 30px; } }
/*************** 8 B. Header Scrolling live Updates ***************/
.live-updates {
  display: inline-block;
  margin-left: 25px;
  position: relative;
  top: 15px; }
  .live-updates ul.header-news li {
    line-height: 30px; }
    .live-updates ul.header-news li a {
      font-size: .85rem; }
      .live-updates ul.header-news li a i {
        padding: 5px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        width: 30px;
        height: 30px;
        font-size: 1rem;
        text-align: center;
        margin-right: 10px;
        line-height: 20px;
        float: left;
      }

@media (max-width: 1100px) {
  .live-updates {
    display: none; } }
/*************** 8 C. Header Actions ***************/
.header-actions {
  float: right;
  margin-right: 5px; }
  .header-actions > li {
    float: left;
  }
    .header-actions > li > a {
      padding: 18px 20px;
      display: block;
      position: relative; }
      .header-actions > li > a > i {
        font-size: 1.5rem;
        vertical-align: middle;
      }
      .header-actions > li > a .count-label {
        position: absolute;
        top: 12px;
        right: 10px;
        width: 17px;
        height: 17px;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        border-radius: 30px;
        text-align: center;
        font-size: .60rem;
        line-height: 18px; }



      .header-actions > li > a.user-settings {
        padding: 10px 0 10px 18px; }
        .header-actions > li > a.user-settings .avatar {
          position: relative;
          width: 40px;
          height: 40px;
          -webkit-border-radius: 50px;
          -moz-border-radius: 50px;
          border-radius: 50px;
          line-height: 40px;
          display: inline-block;
          text-align: center; }
          .header-actions > li > a.user-settings .avatar .status {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 13px;
            height: 13px;
            -webkit-border-radius: 30px;
            -moz-border-radius: 30px;
            border-radius: 30px; }

        .header-actions > li > a.user-settings span.user-name {
          margin-left: 5px;
          vertical-align: middle;
          font-size: .80rem;
          display: inline-block;
          max-width: 90px;
          overflow: hidden;
          white-space: nowrap;
          text-overflow: ellipsis;
          font-weight: 600; }
        .header-actions > li > a.user-settings i.downarrow {
          -webkit-border-radius: 30px;
          -moz-border-radius: 30px;
          border-radius: 30px;
          font-size: 1rem;
          margin-left: 5px; }
    .header-actions > li .dropdown-menu {
      margin-top: 0; }
    .header-actions > li:first-child {
      border-left: 0; }

@media (max-width: 767px) {
  .header-actions > li {
    display: none; }
    .header-actions > li:last-child {
      display: block;
      border-left: 0; } }
@media (max-width: 992px) {
  .header-actions > li > a.user-settings span.user-name {
    display: none; } }
.logout-btn {
  margin: 10px 10px 0 10px; }
  .logout-btn .btn {
    display: block;
    width: 100%; }

/*************** 8 D. Header Messages Dropdown ***************/
ul.imp-notify li {
  padding: 10px 15px;
  border-bottom: 1px solid #e6ecf3; }
  ul.imp-notify li:last-child {
    border-bottom: 0; }
  ul.imp-notify li .icon {
    float: left;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
  }

  ul.imp-notify li .details {
    display: block;
    margin-left: 55px; }
    ul.imp-notify li .details h6.username {
      font-weight: 600;
      font-size: .9rem; }
    ul.imp-notify li .details p.desc {
      font-size: .8rem;
      margin: 0;
      line-height: 130%; }
    ul.imp-notify li .details p.time {
      font-size: .7rem;
      margin: 5px 0 0 0;
      display: none; }

/*************** 8 E. Tasks Widget ***************/
ul.tasks-widget {
  margin: 0;
  padding: 0;
  list-style-type: none; }
  ul.tasks-widget li {
    padding: 15px 15px; }
    ul.tasks-widget li p {
      margin: 0 0 10px 0;
      padding: 0;
      line-height: 100%; }
      ul.tasks-widget li p span {
        float: right;
        font-size: .75rem; }
    ul.tasks-widget li .progress {
      margin-bottom: 0px;
      height: 5px; }
    ul.tasks-widget li:last-child {
      border-bottom: 0 solid transparent; }

/*************** 8 F. User Settings ***************/
.admin-settings ul.admin-settings-list {
  margin: 0; }
  .admin-settings ul.admin-settings-list > li {
    display: block;
  }
    .admin-settings ul.admin-settings-list > li a {
      font-size: .8rem;
      display: block;
      padding: 7px 15px; }
      .admin-settings ul.admin-settings-list > li a span.icon {
        margin-right: 10px;
        font-size: 1rem;
        vertical-align: middle; }
      .admin-settings ul.admin-settings-list > li a span.text-name {
        margin-right: 10px;
        vertical-align: middle; }
      .admin-settings ul.admin-settings-list > li a .badge {
        float: right;
        font-size: .65rem;
        margin-top: 1px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px; }

.admin-settings .actions {
  margin: 10px 15px 3px 15px; }
  .admin-settings .actions .btn {
    display: inline-block;
    font-size: 1rem; }

/*************** 8 G. Toggle Mini Nav ***************/
a.mini-nav-btn {
  padding: 18px 10px 18px 10px;
  width: 50px;
  height: 50px;
  display: inline-block;
  position: relative;
  top: 5px; }
  a.mini-nav-btn i.open {
    position: absolute;
    display: block;
    height: 2px;
    width: 30px;
    left: 10px;
    -webkit-transition: all .3s;
    transition: all .3s; }
    a.mini-nav-btn i.open:nth-child(1) {
      top: 16px; }
    a.mini-nav-btn i.open:nth-child(2) {
      top: 24px; }
    a.mini-nav-btn i.open:nth-child(3) {
      top: 32px; }
  a.mini-nav-btn i.mini {
    position: absolute;
    display: block;
    height: 2px;
    width: 30px;
    left: 10px;
    -webkit-transition: all .3s;
    transition: all .3s; }
    a.mini-nav-btn i.mini:nth-child(1) {
      top: 25px;
      -webkit-transform: rotateZ(45deg);
      transform: rotateZ(45deg); }
    a.mini-nav-btn i.mini:nth-child(2) {
      background: transparent; }
    a.mini-nav-btn i.mini:nth-child(3) {
      top: 25px;
      -webkit-transform: rotateZ(-45deg);
      transform: rotateZ(-45deg); }

@media (max-width: 1100px) {
  a.mini-nav-btn {
    display: none; } }
/*************** 8 H. Toggle Sidebar ***************/
a.onoffcanvas-toggler {
  padding: 18px 10px 18px 10px;
  width: 50px;
  height: 50px;
  display: none;
  position: relative;
  top: 5px; }
  a.onoffcanvas-toggler i.open {
    position: absolute;
    display: block;
    height: 2px;
    width: 30px;
    left: 10px;
    -webkit-transition: all .3s;
    transition: all .3s; }
    a.onoffcanvas-toggler i.open:nth-child(1) {
      top: 16px; }
    a.onoffcanvas-toggler i.open:nth-child(2) {
      top: 24px; }
    a.onoffcanvas-toggler i.open:nth-child(3) {
      top: 32px; }
  a.onoffcanvas-toggler i.mini {
    position: absolute;
    display: block;
    height: 2px;
    width: 30px;
    left: 10px;
    -webkit-transition: all .3s;
    transition: all .3s; }
    a.onoffcanvas-toggler i.mini:nth-child(1) {
      top: 25px;
      -webkit-transform: rotateZ(45deg);
      transform: rotateZ(45deg); }
    a.onoffcanvas-toggler i.mini:nth-child(2) {
      background: transparent; }
    a.onoffcanvas-toggler i.mini:nth-child(3) {
      top: 25px;
      -webkit-transform: rotateZ(-45deg);
      transform: rotateZ(-45deg); }

@media (max-width: 1100px) {
  a.onoffcanvas-toggler {
    display: inline-block; } }
/************************************************
	************************************************
										9. Widgets
	************************************************
************************************************/
/*************** 9 A. Product Status Widget ***************/
ul.product-status li {
  margin-bottom: 15px; }
  ul.product-status li:last-child {
    margin-bottom: 0px; }
  ul.product-status li .customer {
    float: left; }
    ul.product-status li .customer img {
      width: 48px;
      height: 48px;
      -webkit-border-radius: 30px;
      -moz-border-radius: 30px;
      border-radius: 30px; }
    ul.product-status li .customer .empty-avatar {
      height: 48px;
      width: 48px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px;
      text-align: center;
      line-height: 48px; }

  ul.product-status li .product-details {
    margin-left: 75px; }
    ul.product-status li .product-details .badge {
      font-size: .7rem;
      padding: 3px 10px 4px 10px;
      margin: 15px 0 10px 0; }
    ul.product-status li .product-details h6 {
      margin: 0;
      line-height: 180%;
      font-size: .9rem; }
    ul.product-status li .product-details p {
      line-height: 180%; }

/*************** 9 B. Project activity Widget ***************/
ul.project-activity {
  margin-left: 20px;
  padding: 0 0 20px 0; }
  ul.project-activity li.activity-list {
    position: relative; }
    ul.project-activity li.activity-list .lbl {
      -webkit-border-radius: 2px;
      -moz-border-radius: 2px;
      border-radius: 2px;
      content: "";
      height: 10px;
      width: 10px;
      text-align: center;
      text-transform: uppercase;
      position: absolute;
      top: 10px;
      left: -6px;
      transform: rotate(-45deg); }

    ul.project-activity li.activity-list:last-child .detail-info {
      padding-bottom: 0; }
    ul.project-activity li.activity-list .detail-info {
      line-height: 100%;
      margin: 0 0 0 30px;
      padding-bottom: 25px; }
      ul.project-activity li.activity-list .detail-info p.desc-info {
        margin: 0 0 5px 0;
        line-height: 150%; }

      ul.project-activity li.activity-list .detail-info a.activity-status {
        font-size: .85rem; }
        ul.project-activity li.activity-list .detail-info a.activity-status i {
          font-size: 1rem;
          vertical-align: middle;
          margin-right: 5px; }

/*************** 9 C. Graph Notifi Info ***************/
.notifi {
  position: absolute; }
  .notifi.tr {
    top: 1rem;
    right: 1rem; }
  .notifi.tl {
    top: 1rem;
    left: 1rem; }
  .notifi.bl {
    bottom: 1rem;
    left: 1rem; }
  .notifi.br {
    bottom: 1rem;
    right: 1rem; }
  .notifi a {
    display: inline-block; }
    .notifi a i {
      font-size: 30px; }

/*************** 9 D. Orders Widget ***************/
ul.order-list li {
  padding: .8rem 0; }
  ul.order-list li .order-num {
    margin: 0 0 7px 0;
    padding-left: 10px; }

  ul.order-list li .order-desc {
    margin: 0 0 0 15px;
    line-height: 180%; }
    ul.order-list li .order-desc span {
      text-decoration: underline; }
  ul.order-list li .order-date {
    float: right;
    margin-top: 2px;
    font-size: .8rem; }
  ul.order-list li:first-child {
    padding-top: 0; }
  ul.order-list li:last-child {
    padding-bottom: 0; }

/*************** 9 E. Info Widget ***************/
.info-stats {
  text-align: center;
  margin-bottom: 20px; }
  .info-stats p.info-title {
    margin: 5px 0; }
  .info-stats h6.info-title {
    margin: 10px 0;
    font-size: .85rem; }
    .info-stats h6.info-title.small {
      font-size: .75rem; }
  .info-stats h6.info-total {
    margin: 0; }
  .info-stats h5.info-total {
    margin: 0; }
  .info-stats h4.info-total {
    margin: 10px 0 0 0;
    font-size: .85rem;
    line-height: 140%;
    display: inline-block;
    padding: 2px 20px;
    color: #ffffff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px; }

  .info-stats span.info-label {
    width: 12px;
    height: 12px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    display: inline-block; }
/*************** 9 F. Toggle switch ***************/
.toggle-switch {
  position: relative;
  width: 40px;
  height: 20px;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px; }
  .toggle-switch .check {
    position: absolute;
    display: block;
    cursor: pointer;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 6;
    margin: 0; }

    .toggle-switch .check:checked ~ .switch {
      right: 2px;
      left: 20px;
      transition: 0.35s cubic-bezier(0.7, 0.1, 0.15, 0.8);
      transition-property: left, right;
      transition-delay: .05s, 0s; }
      .toggle-switch .check:checked ~ .switch:after {
        position: absolute;
        content: "\e900";
        font-size: .75rem;
        font-family: 'icomoon';
        line-height: 100%;
        top: 2px;
        left: 3px; }
  .toggle-switch .switch {
    position: absolute;
    left: 2px;
    top: 2px;
    bottom: 2px;
    right: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    z-index: 1;
    transition: 0.35s cubic-bezier(0.7, 0.1, 0.15, 0.8);
    transition-property: left, right;
    transition-delay: 0s, .05s; }
    .toggle-switch .switch:after {
      position: absolute;
      content: "\e901";
      font-size: .75rem;
      font-family: 'icomoon';
      line-height: 100%;
      top: 2px;
      left: 3px; }
  .toggle-switch .track {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: 0.35s cubic-bezier(0.7, 0.1, 0.15, 0.8);
  }
  .toggle-switch.tr {
    position: absolute;
    top: 15px;
    right: 15px; }
  .toggle-switch.tr-xl {
    position: absolute;
    top: 16px;
    right: 15px; }

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 6px;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 6px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 4px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/*************** 9 G. Messages Widget ***************/
.message-wrapper li {
  padding: 16px 0 17px 0;
}
  .message-wrapper li img.avatar {
    height: 60px;
    width: 60px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px; }
  .message-wrapper li .empty-avatar {
    height: 60px;
    width: 60px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    line-height: 60px; }

  .message-wrapper li.in img.avatar {
    float: left; }
  .message-wrapper li.in .empty-avatar {
    float: left; }
  .message-wrapper li.in .plain-avatar {
    float: left; }
  .message-wrapper li .name {
    line-height: 180%; }
  .message-wrapper li .date-time {
    font-size: .65rem; }
  .message-wrapper li.out img.avatar {
    float: right; }
  .message-wrapper li.out .empty-avatar {
    float: right; }
  .message-wrapper li.out .plain-avatar {
    float: right; }
  .message-wrapper li .message {
    display: block;
    padding: 0;
    position: relative;
    line-height: 180%; }
  .message-wrapper li.in .message {
    text-align: left;
    margin-left: 80px; }
  .message-wrapper li.out {
    text-align: right; }
    .message-wrapper li.out .message {
      margin-right: 80px;
      text-align: right; }
  .message-wrapper li .message .body {
    display: block;
    padding-top: 5px; }
    .message-wrapper li .message .body span {
      font-style: italic; }
  .message-wrapper li:first-child {
    padding-top: 0; }
  .message-wrapper li:last-child {
    border-bottom: none; }

/*************** 9 H. Icon Stats Widget ***************/
ul.stats li {
  line-height: 36px;
  margin-bottom: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 300; }
  ul.stats li span.icon {
    width: 36px;
    height: 36px;
    text-align: center;
    display: inline-block;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    margin-right: 15px;
    float: left; }
    ul.stats li span.icon i {
      font-size: 1rem;
      line-height: 36px; }
/*************** 9 I. Newsticker Widget ***************/
.scroll-stats {
  text-align: center;
  margin: 0 auto; }
  .scroll-stats i {
    font-size: 36px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    line-height: 36px;
    display: inline-block;
    margin: auto; }

ul#newsticker li {
  overflow: hidden;
  padding: 12px 0;
  min-height: 80px;
  text-align: left;
  line-height: 150%; }
  ul#newsticker li .ticker-image {
    width: 56px;
    height: 56px;
    float: left;
    padding: 3px; }
    ul#newsticker li .ticker-image img {
      width: 50px;
      height: 50px;
      -webkit-border-radius: 50px;
      -moz-border-radius: 50px;
      border-radius: 50px; }
    ul#newsticker li .ticker-image .empty-avatar {
      height: 56px;
      width: 56px;
      -webkit-border-radius: 50px;
      -moz-border-radius: 50px;
      border-radius: 50px;
      text-align: center;
      line-height: 56px; }
  ul#newsticker li .ticker-wrapper {
    margin: 5px 0 0 70px; }
    ul#newsticker li .ticker-wrapper a {
      text-decoration: underline; }

/*************** 9 J. Tasks Widget ***************/
.task-list li {
  display: block;
  padding: 15px 0 15px 0;
  margin: 0;
  cursor: pointer; }
  .task-list li.list span {
    float: left;
    margin-top: 20px; }
    .task-list li.list span:before {
      font-size: 1.5rem;
      content: "\e5ca";
      font-family: 'icomoon';
      vertical-align: middle;
      -webkit-border-radius: 50px;
      -moz-border-radius: 50px;
      border-radius: 50px;
      padding: 4px; }
  .task-list li.completed {
    text-decoration: line-through;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
    .task-list li.completed span:before {
      content: "\e5ca";
      font-family: 'icomoon';
      text-decoration: none; }
  .task-list li:first-child {
    padding-top: 0; }
  .task-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0; }
  .task-list li .task-details {
    margin-left: 60px; }
    .task-list li .task-details p {
      margin: 0;
      padding: 10px 0 6px 0;
      line-height: 140%; }
      .task-list li .task-details p small {
        padding: 0; }
    .task-list li .task-details p.date {
      padding: 0;
      margin: 0;
      font-size: .75rem; }
      .task-list li .task-details p.date small {
        text-transform: uppercase; }

/*************** 9 K. Todo Widget ***************/
.todo-container #today-date {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 600; }
.todo-container .todo-body {
  margin-left: 25px;
  padding: 20px 20px 0 0; }
  .todo-container .todo-body li.todo-list {
    position: relative;
    display: block;
    cursor: pointer; }
    .todo-container .todo-body li.todo-list .dot {
      -webkit-border-radius: 50px;
      -moz-border-radius: 50px;
      border-radius: 50px;
      content: "";
      height: 19px;
      width: 19px;
      text-align: center;
      text-transform: uppercase;
      position: absolute;
      top: 4px;
      left: -10px; }
      .todo-container .todo-body li.todo-list .dot:before {
        font-size: .7rem;
        content: "\e901";
        font-family: 'icomoon'; }

    .todo-container .todo-body li.todo-list.done {
      text-decoration: line-through;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out; }

        .todo-container .todo-body li.todo-list.done .dot:before {
          content: "\e901";
          font-family: 'icomoon';
          text-decoration: none; }

      .todo-container .todo-body li.todo-list.done .todo-info p {
        opacity: 0.3; }
      .todo-container .todo-body li.todo-list.done .todo-info small {
        opacity: 0.3; }
    .todo-container .todo-body li.todo-list:last-child .detail-info {
      padding-bottom: 0; }
    .todo-container .todo-body li.todo-list .todo-info {
      line-height: 100%;
      margin: 0 0 0 20px;
      padding-bottom: 25px; }
      .todo-container .todo-body li.todo-list .todo-info p {
        margin: 0 0 5px 0;
        line-height: 150%; }
        .todo-container .todo-body li.todo-list .todo-info p span.time {
          font-size: .7rem;
          float: right; }

/*************** 9 L. Traffic Sources Widget ***************/
ul.traffic-sources {
  margin: 0; }
  ul.traffic-sources li {
    padding: 6px 0; }
    ul.traffic-sources li:last-child {
      border-bottom: 0;
      padding-bottom: 4px; }
    ul.traffic-sources li .source-graph {
      float: right; }
  ul.traffic-sources .symbol {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-top: 3px; }
/*************** 9 M. Revenue Widget ***************/
.revenue-container {
  min-height: 208px; }
  .revenue-container .revenue-footer .live-sales {
    float: right;
    margin-top: 10px; }
    .revenue-container .revenue-footer .live-sales ul.sales-ticker li {
      line-height: 30px; }
      .revenue-container .revenue-footer .live-sales ul.sales-ticker li a {
        font-size: .80rem; }
        .revenue-container .revenue-footer .live-sales ul.sales-ticker li a .num {
          padding: 5px;
          -webkit-border-radius: 30px;
          -moz-border-radius: 30px;
          border-radius: 30px;
          width: 30px;
          height: 30px;
          font-size: 1rem;
          text-align: center;
          margin-right: 10px;
          line-height: 20px;
          float: left;
        }

/*************** 9 N. Simple widget ***************/
.simple-widget {
  position: relative;
  padding: 15px;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  border-radius: 0.3rem;
  margin-bottom: .9rem; }
  .simple-widget .growth {
    position: absolute;
    right: 15px;
    top: 15px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center; }
  .simple-widget h3 {
    margin: 0 0 15px 0;
    font-size: 2rem;
    letter-spacing: 1px; }
  .simple-widget p {
    margin: 0;
    padding: 0 0 10px 0; }

/*************** 9 O. Plain widget ***************/
.plain-widget {
  position: relative;
  padding: 15px;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  border-radius: 0.3rem;
  margin-bottom: .9rem;
}

  .plain-widget .growth {
    position: absolute;
    right: 15px;
    top: 15px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    color: #ffffff;
    font-weight: 600;
    text-align: center; }
  .plain-widget h3 {
    margin: 0 0 15px 0;
    font-size: 2rem;
    font-weight: 300; }
  .plain-widget p {
    margin: 0;
    padding: 0 0 10px 0; }

/*************** 9 P. Settings ***************/
.settings li {
  padding: 10px 0; }
  .settings li p {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
    line-height: 150%; }
  .settings li .toggle-switch {
    float: right; }
  .settings li a.cancel {
    float: right;
    margin-left: 10px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center; }
    .settings li a.cancel i {
      font-size: 18px; }

  .settings li:first-child {
    padding-top: 0; }
  .settings li:last-child {
    padding-bottom: 0;
    border-bottom: 0; }

/*************** 9 Q. Deals Widget ***************/
.deals-widget h5 {
  margin: 0;
  padding: 0;
  font-size: .8rem; }
.deals-widget p {
  padding: 0;
  margin: 0;
  font-size: 1.5rem; }
  .deals-widget p small {
    margin-left: 5px;
    font-size: 85%; }
  .deals-widget p i {
    margin-right: 5px;
    font-size: 1.5rem;
    vertical-align: middle; }
.deals-widget .small-graph {
  margin: 10px 0 4px 0; }

/*************** 9 R. Invoices Widget ***************/
.invoices-widget h5 {
  margin: 0;
  padding: 0;
  font-size: .8rem; }
.invoices-widget p {
  padding: 0;
  margin: 0;
  font-size: 1.5rem; }
  .invoices-widget p small {
    margin-left: 5px;
    font-size: 85%; }
  .invoices-widget p i {
    margin-right: 5px;
    font-size: 1.5rem;
    vertical-align: middle; }
.invoices-widget .progress {
  margin: 14px 0 15px 0; }

/*************** 9 T. Post Widget ***************/
.post-slider {
  margin-bottom: .8rem; }
  .post-slider .post-bg {
    padding: 1rem;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background-size: cover; }

  .post-slider .post-body {
    min-height: 180px; }
    .post-slider .post-body h4 {
      margin: 0 0 10px 0;
      font-weight: 300; }
    .post-slider .post-body h6 {
      text-transform: uppercase;
      margin: 0;
      font-size: .8rem;
      line-height: 150%; }
  .post-slider .post-footer {
    padding: 15px 0 0 0;
    margin-bottom: 40px; }
    .post-slider .post-footer .like-box {
      margin-bottom: 10px; }
      .post-slider .post-footer .like-box i {
        font-size: 1.5rem;
        margin-right: 5px;
        vertical-align: middle; }

      .post-slider .post-footer .like-box span.total {
        font-size: .8rem;
        font-weight: 700; }

/*************** 9 U. Projects Table ***************/
  .projects-table.table i {
    font-size: 10px;
    margin-right: 5px; }

/*************** 9 V. User Cards ***************/
figure.user-card {
  padding: 20px;
  text-align: center; }

  figure.user-card .profile {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    max-width: 72px;
    margin-bottom: 20px; }
  figure.user-card h5 {
    margin: 0 0 5px 0; }
  figure.user-card h6 {
    margin: 0 0 15px 0;
    font-size: 14px; }
  figure.user-card p {
    margin: 0;
    padding: 0 0 15px 0;
    line-height: 150%;
    font-size: .85rem; }
  figure.user-card ul.contacts {
    margin: 0;
    padding: 0 0 15px 0;
    line-height: 150%;
    font-size: .85rem; }
    figure.user-card ul.contacts li {
      padding: .2rem 0; }

        figure.user-card ul.contacts li a i {
          min-width: 36px;
          float: left;
          font-size: 1rem; }
/************************************************
	************************************************
										10. Pages
	************************************************
************************************************/
/*************** 10 A. Invoice Page ***************/
.invoice-container {
  padding: 0; }
  .invoice-container .invoice-header {
    padding: 1rem 1.5rem; }
    .invoice-container .invoice-header img.invoice-logo {
      max-width: 120px; }
  .invoice-container .invoice-address {
    padding: 1rem 1.5rem; }
  .invoice-container address {
    margin-top: 10px;
    font-size: .8rem; }
  .invoice-container .invoice-details {
    margin-top: 2.5rem;
    text-align: right; }
  .invoice-container .invoice-body {
    padding: 3rem 1.5rem 1rem 1.5rem; }
  .invoice-container .invoice-footer {
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: .7rem; }
  .invoice-container .invoice-payment {
    padding: 0 1.5rem 0 1.5rem;
    text-align: right;
    font-size: .8rem;
    line-height: 200%; }

/*************** 10 B. Icons Page ***************/
.icons {
  text-align: center; }
  .icons span {
    font-size: 1.5rem;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 3px; }
    .icons span:before {
      background-clip: text;
      text-fill-color: transparent;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }
/*************** 10 C. Gallery Page ***************/
.gallery {
  margin: 0 auto; }
  .gallery a {
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    display: block;
    margin: 0 0 15px 0;
    opacity: 1; }
    .gallery a img {
      max-height: 180px; }
    .gallery a .overlay {
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      opacity: 0;
      position: absolute;
      z-index: 20;
      overflow: hidden;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out; }
    .gallery a .expand {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 100;
      text-align: center;
      line-height: 44px;
      font-size: 30px;
      margin-left: -20px;
      margin-top: -20px;
      width: 48px;
      height: 48px;
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s; }
    .gallery a:hover {
      opacity: 1; }
      .gallery a:hover .overlay {
        opacity: 1; }
      .gallery a:hover span.expand {
        width: 48px;
        height: 48px;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px; }

/*************** 10 D. News Feed ***************/
ul.news-feed {
  width: 100%; }
  ul.news-feed li {
    padding: 25px 0; }
    ul.news-feed li:last-child {
      border-bottom: 0;
      padding-bottom: 0; }
    ul.news-feed li:first-child {
      border-bottom: 0; }
    ul.news-feed li img.avatar {
      float: left;
      width: 48px;
      height: 48px; }
    ul.news-feed li blockquote {
      padding: 0;
      font-size: .85rem;
      line-height: 180%; }
    ul.news-feed li .message-wrapper {
      margin-left: 60px; }
      ul.news-feed li .message-wrapper .url {
        font-size: .8rem; }
        ul.news-feed li .message-wrapper .url a {
          text-decoration: underline; }
        ul.news-feed li .message-wrapper .url i {
          font-size: 1rem;
          margin-right: 5px;
          vertical-align: middle; }
      ul.news-feed li .message-wrapper h6 {
        margin: 15px 0 15px 0; }
        ul.news-feed li .message-wrapper h6 .message-date {
          float: right;
          font-size: .75rem;
          font-weight: 600; }

ul.users-group li {
  margin-right: 10px;
  width: 36px;
  float: left;
  padding: 0; }
  ul.users-group li a {
    padding: 0;
    margin: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px; }
    ul.users-group li a img {
      -webkit-border-radius: 2px;
      -moz-border-radius: 2px;
      border-radius: 2px;
      width: 36px;
      height: 36px; }

ul.team-group li {
  float: left;
  padding: 0; }
  ul.team-group li a:not(.btn) {
    padding: 6px 10px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: .8rem; }

/*************** 10 E. Social Stats ***************/
.socail-stats {
  margin-bottom: .8rem;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  border-radius: 0.3rem;
  padding: 10px;
  text-align: center;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .socail-stats h5 {
    margin: 10px 0 0 0; }
  .socail-stats i {
    font-size: 2rem; }
  .socail-stats:hover {
    opacity: 0.8; }

/*************** 10 F. Small Gallery ***************/
.gallery-sm {
  margin: 0; }
  .gallery-sm img {
    margin: 5px auto; }

/*************** 10 G. Search Results Page ***************/
.search-results {
  padding: 1.5rem;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  border-radius: 0.3rem;
  margin: 0; }
  .search-results .results-header {
    margin-bottom: 1.5rem;
    padding: 0 0 1rem 0; }
  .search-results .search-section {
    margin-bottom: 3rem;
    max-width: 60%; }
    .search-results .search-section a {
      font-size: 1rem;
      margin: 0 0 10px 0;
      font-weight: 700;
      display: inline-block; }
    .search-results .search-section p.title {
      font-size: .9rem;
      margin: 0 0 10px 0; }
    .search-results .search-section p.desc {
      font-size: .9rem;
      margin: 0;
      line-height: 150%; }

@media (max-width: 767px) {
  .search-results .search-section {
    width: 100%;
    max-width: 100%; } }
/*************** 10 H. Custom Forms ***************/
.form-block {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }
  .form-block .form-block-header {
    padding: 1rem 1.5rem; }
    .form-block .form-block-header h5 {
      margin: 0 0 8px 0; }
    .form-block .form-block-header h4 {
      margin: 0 0 15px 0; }
    .form-block .form-block-header h6 {
      margin: 0;
      font-size: .8rem; }
  .form-block .form-block-body {
    padding: 1.5rem; }

/*************** 10 I. Pricing Plans ***************/
.plan-one {
  margin: 0 0 20px 0;
  width: 100%;
  position: relative;
  -webkit-border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px; }
  .plan-one .pricing-header {
    padding: 0;
    margin-bottom: 10px;
    text-align: center; }
    .plan-one .pricing-header .plan-title {
      -webkit-border-radius: 10px 10px 0px 0px;
      -moz-border-radius: 10px 10px 0px 0px;
      border-radius: 10px 10px 0px 0px;
      font-size: 1.2rem;
      padding: 10px 0;
      text-transform: uppercase;
      font-weight: 600;
      margin: 0; }
    .plan-one .pricing-header .plan-cost {
      padding: 15px 0;
      font-size: 2.5rem;
      font-weight: 700; }
    .plan-one .pricing-header .plan-save {
      padding: 10px 0;
      font-size: 1rem;
      font-weight: 700; }

  .plan-one .plan-features {
    padding: 0;
    margin: 20px 0;
    text-align: left; }
    .plan-one .plan-features li {
      padding: 10px 15px 10px 40px;
      margin: 5px 0;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      position: relative;
      line-height: 100%; }
      .plan-one .plan-features li:before {
        position: absolute;
        left: 15px;
        top: 10px;
        font-size: 1rem;
        content: "\e901";
        font-family: 'icomoon'; }
  .plan-one .plan-footer {
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
    text-align: center;
    padding: 10px 0 30px 0; }

@media (max-width: 767px) {
  .plan-one .pricing-header {
    text-align: center; }
    .plan-one .pricing-header i {
      display: block;
      float: none;
      margin-bottom: 20px; } }
/***************** 10 J. Tasks *****************/
.task-checkbox {
  position: relative; }
  .task-checkbox input,
  .task-checkbox .label,
  .task-checkbox .check {
    display: inline-block;
    vertical-align: middle; }
  .task-checkbox .check {
    position: absolute;
    top: 0;
    right: 0; }
  .task-checkbox input[type="checkbox"] {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    cursor: pointer; }
    .task-checkbox input[type="checkbox"]:focus {
      outline: 0; }

    .task-checkbox input[type="checkbox"]:checked + .ripple-container .check-on {
      -webkit-transform: scale(0.8);
      -moz-transform: scale(0.8);
      -ms-transform: scale(0.8);
      -o-transform: scale(0.8);
      transform: scale(0.8);
      -webkit-transition: -webkit-transform 0.3s;
      -moz-transition: -moz-transform 0.3s;
      transition: transform 0.3s; }
    .task-checkbox input[type="checkbox"]:checked + .ripple-container .check-ripple:before, .task-checkbox input[type="checkbox"]:checked + .ripple-container .check-ripple:after {
      -webkit-transition: all 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
      -moz-transition: all 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
      transition: all 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
      opacity: 0; }
    .task-checkbox input[type="checkbox"]:checked + .ripple-container .check-ripple:before {
      -webkit-transform: scale(3);
      -moz-transform: scale(3);
      -ms-transform: scale(3);
      -o-transform: scale(3);
      transform: scale(3); }
    .task-checkbox input[type="checkbox"]:checked + .ripple-container .check-ripple:after {
      -webkit-transform: scale(1.5);
      -moz-transform: scale(1.5);
      -ms-transform: scale(1.5);
      -o-transform: scale(1.5);
      transform: scale(1.5); }
    .task-checkbox input[type="checkbox"] + .ripple-container {
      width: auto;
      position: relative;
      display: inline-block;
      width: 25px;
      height: 25px;
      top: 0;
      pointer-events: none; }
      .task-checkbox input[type="checkbox"] + .ripple-container:before {
        content: "";
        position: absolute;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        display: block;
        height: auto;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        transition: all 0.5s; }
      .task-checkbox input[type="checkbox"] + .ripple-container .check-off {
        position: absolute;
        width: 25px;
        height: 25px;
        left: 0;
        top: 0;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        transition: border-color ease 0.28s; }
      .task-checkbox input[type="checkbox"] + .ripple-container .check-on {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        -webkit-transition: all 0s;
        -moz-transition: all 0s;
        transition: all 0s;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        text-align: center;
        line-height: 25px; }
      .task-checkbox input[type="checkbox"] + .ripple-container .check-ripple:before, .task-checkbox input[type="checkbox"] + .ripple-container .check-ripple:after {
        -webkit-transition: all 0s;
        -moz-transition: all 0s;
        transition: all 0s;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        content: "";
        position: absolute;
        display: block;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        width: 25px;
        height: 25px;
        opacity: 1; }

.task-container {
  position: relative;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }
  .task-container:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
    background-image: url("../img/header-bg4.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 5% 5%; }
  .task-container.high-priority {
    -webkit-border-radius: 10px 0 0 10px;
    -moz-border-radius: 10px 0 0 10px;
    border-radius: 10px 0 0 10px;
    z-index: 1; }
    .task-container.high-priority ul li {
      border-top: 1px solid rgba(255, 255, 255, 0.2); }
  .task-container.low-priority {
    -webkit-border-radius: 0 10px 10px 0;
    -moz-border-radius: 0 10px 10px 0;
    border-radius: 0 10px 10px 0; }

  .task-container h4.task-header {
    padding: 1.5rem 1.5rem 0 1.5rem;
    font-weight: 300;
    font-size: 1.5rem;
    opacity: 0.5; }
  .task-container .tasks-list {
    padding: 1rem 1.5rem; }
    .task-container .tasks-list .task-name {
      margin-bottom: 15px;
      font-size: 1rem;
      font-weight: 600; }
    .task-container .tasks-list .task-desc {
      margin-bottom: 15px;
      font-size: .9rem;
      line-height: 180%;
      font-weight: 300;
      opacity: 0.6; }
    .task-container .tasks-list .task-time {
      font-weight: 300;
      font-size: .8rem; }
    .task-container .tasks-list .task-types {
      margin-top: 15px; }
      .task-container .tasks-list .task-types .badge {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0; }
    .task-container .tasks-list ul {
      position: relative;
      z-index: 1; }
      .task-container .tasks-list ul li {
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        padding: 1rem 0;
        position: relative; }
        .task-container .tasks-list ul li .label {
          -webkit-transition: all 0.3s ease-out;
          -moz-transition: all 0.3s ease-out;
          -ms-transition: all 0.3s ease-out;
          -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
          opacity: 1;
          line-height: 120%;
          margin-right: 60px; }
        .task-container .tasks-list ul li .task-msg {
          -webkit-transition: all 0.3s ease-out;
          -moz-transition: all 0.3s ease-out;
          -ms-transition: all 0.3s ease-out;
          -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
          right: 35px;
          top: 12px;
          position: absolute;
          font-size: .75rem;
          opacity: 0; }
        .task-container .tasks-list ul li.task-checked .task-msg {
          -webkit-animation: fadeInOut 2s;
          -moz-animation: fadeInOut 2s;
          animation: fadeInOut 2s; }
        .task-container .tasks-list ul li.task-checked .label {
          opacity: 0.5;
          text-decoration: line-through; }
        .task-container .tasks-list ul li:last-child {
          padding-bottom: 0; }
        .task-container .tasks-list ul li:first-child {
          border-top: 0; }

@media (max-width: 767px) {
  .task-container.high-priority {
    margin-bottom: 1rem;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px; }
  .task-container.low-priority {
    margin-bottom: 1rem;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px; } }
@-webkit-keyframes fadeInOut {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(10px, -50%, 0); }
  30% {
    opacity: 1;
    -webkit-transform: translate3d(0, -50%, 0); }
  75% {
    opacity: 1;
    -webkit-transform: translate3d(0, -50%, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-10px, -50%, 0); } }
@-moz-keyframes fadeInOut {
  0% {
    opacity: 0;
    -moz-transform: translate3d(10px, -50%, 0); }
  30% {
    opacity: 1;
    -moz-transform: translate3d(0, -50%, 0); }
  75% {
    opacity: 1;
    -moz-transform: translate3d(0, -50%, 0); }
  100% {
    opacity: 0;
    -moz-transform: translate3d(-10px, -50%, 0); } }
@keyframes fadeInOut {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(10px, -50%, 0);
    -moz-transform: translate3d(10px, -50%, 0);
    -ms-transform: translate3d(10px, -50%, 0);
    -o-transform: translate3d(10px, -50%, 0);
    transform: translate3d(10px, -50%, 0); }
  30% {
    opacity: 1;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0); }
  75% {
    opacity: 1;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-10px, -50%, 0);
    -moz-transform: translate3d(-10px, -50%, 0);
    -ms-transform: translate3d(-10px, -50%, 0);
    -o-transform: translate3d(-10px, -50%, 0);
    transform: translate3d(-10px, -50%, 0); } }
/*************** 10 K. Timeline ***************/
.timeline {
  position: relative;
  padding: 10px;
  margin: 0 auto;
  overflow: hidden; }
  .timeline:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1px;
    height: 100%;
    display: block; }

.timeline-row {
  padding-left: 50%;
  position: relative;
  margin-bottom: 30px; }
  .timeline-row .timeline-time {
    position: absolute;
    right: 50%;
    top: 31px;
    text-align: right;
    margin-right: 20px;
    font-size: 1.5rem; }
    .timeline-row .timeline-time small {
      display: block;
      font-size: .8rem; }
  .timeline-row .timeline-content {
    position: relative;
    padding: 20px 30px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px; }
    .timeline-row .timeline-content:after {
      content: "";
      position: absolute;
      top: 20px;
      height: 3px;
      width: 40px; }
    .timeline-row .timeline-content:before {
      content: "";
      position: absolute;
      top: 20px;
      right: -50px;
      width: 20px;
      height: 20px;
      -webkit-border-radius: 100px;
      -moz-border-radius: 100px;
      border-radius: 100px;
      z-index: 100; }
    .timeline-row .timeline-content h4 {
      margin: 0 0 20px 0;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      line-height: 150%; }
    .timeline-row .timeline-content p {
      margin-bottom: 30px;
      line-height: 150%; }
    .timeline-row .timeline-content i {
      font-size: 2rem;
      line-height: 100%;
      padding: 10px;;
      -webkit-border-radius: 100px;
      -moz-border-radius: 100px;
      border-radius: 100px;
      margin-bottom: 10px;
      display: inline-block; }
    .timeline-row .timeline-content .thumbs {
      margin-bottom: 20px; }
      .timeline-row .timeline-content .thumbs img {
        margin-bottom: 10px; }
  .timeline-row:nth-child(even) .timeline-content {
    margin-left: 40px;
    text-align: left; }
    .timeline-row:nth-child(even) .timeline-content:after {
      left: -39px;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent; }
    .timeline-row:nth-child(even) .timeline-content:before {
      left: -50px;
      right: initial; }
  .timeline-row:nth-child(odd) {
    padding-left: 0;
    padding-right: 50%; }
    .timeline-row:nth-child(odd) .timeline-time {
      right: auto;
      left: 50%;
      text-align: left;
      margin-right: 0;
      margin-left: 20px; }
    .timeline-row:nth-child(odd) .timeline-content {
      margin-right: 40px;
      margin-left: 0;
      text-align: right; }
      .timeline-row:nth-child(odd) .timeline-content:after {
        right: -39px;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent; }

@media (max-width: 767px) {
  .timeline {
    padding: 15px 10px; }
    .timeline:after {
      left: 28px; }
    .timeline .timeline-row {
      padding-left: 0;
      margin-bottom: 16px; }
      .timeline .timeline-row .timeline-time {
        position: relative;
        right: auto;
        top: 0;
        text-align: left;
        margin: 0 0 6px 56px; }
        .timeline .timeline-row .timeline-time strong {
          display: inline-block;
          margin-right: 10px; }
      .timeline .timeline-row .timeline-icon {
        top: 52px;
        left: -2px;
        margin-left: 0; }
      .timeline .timeline-row .timeline-content {
        padding: 15px;
        margin-left: 56px;
        position: relative; }
        .timeline .timeline-row .timeline-content:after {
          right: auto;
          left: -39px;
          top: 32px; }
      .timeline .timeline-row:nth-child(odd) {
        padding-right: 0; }
        .timeline .timeline-row:nth-child(odd) .timeline-time {
          position: relative;
          right: auto;
          left: auto;
          top: 0;
          text-align: left;
          margin: 0 0 6px 56px; }
        .timeline .timeline-row:nth-child(odd) .timeline-content {
          margin-right: 0;
          margin-left: 55px; }
          .timeline .timeline-row:nth-child(odd) .timeline-content:after {
            right: auto;
            left: -39px;
            top: 32px;
            border-left: inherit; }
    .timeline.animated .timeline-row:nth-child(odd) .timeline-content {
      left: 20px; }
    .timeline.animated .timeline-row.active:nth-child(odd) .timeline-content {
      left: 0; } }
/************************************************
	************************************************
								11. Chart Heights
	************************************************
************************************************/
/*************** Map/Chart/Graph Heights ***************/
.chart-height {
  position: relative;
  height: 210px; }

.chart-height-2 {
  position: relative;
  height: 120px; }

.chart-height-md {
  position: relative;
  height: 190px; }

.chart-height-lg {
  position: relative;
  height: 280px;
  text-align: center;
  overflow: hidden; }

.chart-height-lgx {
  position: relative;
  height: 261px; }

.chart-height-xl {
  position: relative;
  height: 360px; }

/************************************************
	************************************************
						12. Plugins Overwrite CSS
	************************************************
************************************************/
/*************** 12 A. Gmap Skins ***************/
.map {
  width: 100%;
  height: 320px; }

.map-xl {
  width: 100%;
  height: 500px;
}

/*************** 12 B. jVector Map ***************/
.jvectormap-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  touch-action: none; }

.jvectormap-tip {
  position: absolute;
  display: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-size: .75rem;
  padding: 6px 12px; }

/*************** 12 C. Flot Chart ***************/
.legendLabel {
  padding-left: 5px;
  padding-right: 10px;
  font-size: 10px; }

/*************** 12 D. Notify ***************/
.notify-notifications .btn {
  margin: 3px;
  min-width: 120px;
  float: left; }

/*************** 12 E. Rating ***************/
.stars {
  margin: 5px 0 0 0;
  width: 100% !important; }
  .stars img {
    width: 18px;
    height: 18px; }

/*************** 12 F. Google Maps ***************/
.map-xl *,
.map-xl::after,
.map-xl::before {
  box-sizing: initial; }

.gm-style-mtc div[role=button] {
  font-size: 13px !important;
}

/************************************************
	************************************************
		13. Login, Signup, Lock and Error Screens
	************************************************
************************************************/
/*************** 13 A. Login Screen ***************/
.login-screen {
  position: relative;
  margin: 3rem auto 1rem auto;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px; }

.login-screen .login-header{
    text-align: left;
    padding: 2rem 2rem 1rem 2rem;
    margin-bottom: 0;
}

/* Registration Css */
.sign-screen {
  position: relative;
  margin: 3rem auto 1rem auto;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

.sign-screen .sign-header{
  text-align: left;
  padding: 2rem 2rem 3rem 2rem;
  margin-bottom: -1.5rem;
}

.sign-screen .sign-logo {
  margin: 20px 0 30px 0;
  display: block;
}

.sign-screen .sign-logo > img {
  margin: 0;
  max-height: 36px;
}

.sign-screen .sign-box {
  padding: 3rem 2rem 2rem 2rem;
}

.sign-screen .sign-box h5 {
  margin: 0 0 20px 0;
  text-align: left;
}

.sign-screen .actions {
  display: block;
  margin-bottom: 20px;
  text-align: center;
}

.sign-screen .actions a {
  text-decoration: none;
  margin-top: 12px;
  display: block;
  font-size: .8rem;
}

.sign-screen .actions a:hover {
  text-decoration: underline;
}

.sign-screen .actions .btn {
  padding: 8px 25px;
  text-transform: uppercase;
}

.sign-screen a.additional-link {
  text-decoration: none;
  margin: 30px auto 0 auto;
  text-align: center;
  display: block;
}

.sign-screen a.additional-link span {
  text-decoration: underline;
}

.sign-screen p.info {
  padding: 0;
  margin: 0 0 20px 0;
  line-height: 150%;
  text-align: center;
}

.form-group label {
  display: block;
}

label.error {
  font-size: small;
  font-weight: bold;
  margin-bottom: 0;
}

.hide {
  display: none;
}

/* Registration Css */


/* Registration tab css */
.order-tab .order-tab-style {
  cursor: pointer;
}

.order-tab .order-tab-style .order-tab-circule {
  width: 50px;
  height: 50px;
  font-weight: 700;
  line-height: 50px;
  font-size: 24px;
  border-radius: 200%;
  text-align: center;
  margin: 0 auto 12px;
}

.order-tab .order-tab-style .order-tab-text {
  font-size: 16px;
}

.order-tab-divider {
  margin: 18px 0px 18px;
}

.checkbox {
  padding-left: 20px;
}

.checkbox label {
  display: inline-block;
  position: relative;
  padding-left: 5px;
  margin-bottom: 0;
  line-height: 17px;
}

/* Registration tab css */


  .login-screen .login-logo {
    margin: 20px 0 30px 0;
    display: block; }
    .login-screen .login-logo > img {
      margin: 0;
      max-height: 36px; }

.login-screen .login-box {
    padding: 30px 30px; }

.login-screen .login-box h5 {
      margin: 0 0 20px 0;
      text-align: center; }

.login-screen .actions {
    display: block;
    margin-bottom: 20px;
    text-align: center; }

.login-screen .actions a {
      text-decoration: none;
      margin-top: 12px;
      display: block;
      font-size: .8rem; }

.login-screen .actions a:hover {
        text-decoration: underline; }
.login-screen .actions .btn {
      padding: 8px 25px;
      text-transform: uppercase; }
.login-screen a.additional-link {
    text-decoration: none;
    margin: 30px auto 0 auto;
    text-align: center;
    display: block; }
.login-screen a.additional-link span {
      text-decoration: underline;
}
.login-screen p.info {
    padding: 0;
    margin: 0 0 20px 0;
    line-height: 150%;
    text-align: center; }

/*************** 13 B. OR | Line between two blocks ***************/
.or {
  position: relative;
  text-align: center;
  margin-bottom: 20px; }
  .or::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    width: 70%;
    height: 1px; }
  .or span {
    position: relative;
    padding: 0 10px;
    z-index: 10; }

/*************** 13 C. Lock Screen ***************/
.lock-screen {
  position: absolute;
  top: 120px;
  left: 50%;
  width: 300px;
  margin-left: -150px;
  text-align: center; }
  .lock-screen .avatar {
    position: relative;
    margin: auto;
    width: 90px;
    margin: 10px auto; }
    .lock-screen .avatar img {
      width: 90px;
      height: 90px;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      border-radius: 100%; }
    .lock-screen .avatar .status {
      position: absolute;
      top: 3px;
      right: 3px;
      width: 18px;
      height: 18px;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      border-radius: 100%; }
  .lock-screen h6 {
    margin: 0 0 30px 0; }

.lock-screen-input {
  margin: 20px auto;
  height: 52px;
  position: relative; }
  .lock-screen-input .form-control {
    height: 52px;
    padding: 12px 5px 12px 20px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px; }
  .lock-screen-input .lock-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    border: none;
    height: 42px;
    width: 70px;
    text-align: center;
    cursor: pointer;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px; }
    .lock-screen-input .lock-btn i {
      font-size: 21px;
      vertical-align: middle;
      line-height: 42px; }

/*************** 13 D. Error screen ***************/
.error-screen {
  max-width: 600px;
  margin: 100px auto 50px auto;
  text-align: center; }
  .error-screen img {
    max-width: 480px;
    max-height: 480px;
    margin-bottom: 1rem; }
  .error-screen h5 {
    margin-bottom: 2rem; }
  .error-screen h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 150%; }
  .error-screen .btn i {
    font-size: 1.2rem;
    margin-top: 3px;
    float: right !important;
    margin-left: 3px; }

/************************************************
	************************************************
									14. Loading
	************************************************
************************************************/
#loading-wrapper {
    display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5000; }
  #loading-wrapper #loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -30px;
    margin-top: -30px;
    width: 60px;
    height: 60px; }
    #loading-wrapper #loader:before {
      content: '';
      box-sizing: border-box;
      position: absolute;
      top: 50%;
      left: 50%;
      width: 48px;
      height: 48px;
      margin-left: -24px;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%;
      -moz-animation: spinner .6s linear infinite;
      -webkit-animation: spinner .6s linear infinite;
      animation: spinner .6s linear infinite;
    }

#loading-wrapper2 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5000; }
#loading-wrapper2 #loader2 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -30px;
  margin-top: -30px;
  width: 60px;
  height: 60px; }
#loading-wrapper2 #loader2:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin-left: -24px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-animation: spinner .6s linear infinite;
  -webkit-animation: spinner .6s linear infinite;
  animation: spinner .6s linear infinite;
}

@-moz-keyframes spinner {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
@-webkit-keyframes spinner {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
@keyframes spinner {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
/************************************************
	************************************************
									15. Sections
	************************************************
************************************************/
.section-container {
  background-color: #ffffff;
  padding: 1.5rem;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  border-radius: 0.3rem;
  margin-bottom: .8rem; }
  .section-container h6.section-title {
    text-transform: uppercase;
    margin: 0 0 30px 0;
    font-weight: 600; }
  .section-container p.section-desc {
    margin-bottom: 30px;
    line-height: 200%; }
  .section-container p.section-title {
    font-weight: 600;
    margin-bottom: 20px; }
    .section-container p.section-title i {
      font-size: 2rem;
      margin-right: 10px;
      vertical-align: middle; }
  .section-container ul.section-list {
    margin: 0 0 20px 40px; }
    .section-container ul.section-list li {
      padding-left: 10px;
      list-style-type: disc;
      margin-bottom: 15px;
      line-height: 200%; }
  .section-container .section-wrapper {
    padding: 30px;
    text-align: center; }
    .section-container .section-wrapper.left {
      text-align: left; }
/************************************************
	************************************************
							16. Inline Bagdes
	************************************************
************************************************/
.badges-inline .badge {
  margin-right: 5px;
  float: left; }

/************************************************
	************************************************
								17. Secure Account
	************************************************
************************************************/
.acc-secure {
  max-width: 280px;
  margin: 100px auto 50px auto;
  text-align: center; }
  .acc-secure img {
    max-width: 250px;
    max-height: 250px;
    margin-bottom: 1rem; }
  .acc-secure .btn i {
    font-size: 1.2rem;
    margin-top: 3px;
    float: right !important;
    margin-left: 3px; }

/************************************************
	************************************************
							18. Bootstrap Overwrite CSS
	************************************************
************************************************/
/*************** 18 A. Modals ***************/
.modal-header {
  padding: 10px 15px; }

.modal-title {
  font-size: 1rem; }

.modal-danger .modal-content {
  border: 0; }
.modal-danger .modal-header {
  border: 0; }

.modal-danger .modal-footer {
  border: 0; }
.modal-danger .form-control {
  border: 0; }
  .modal-danger .form-control:focus {
    border: 0;
  }

/*************** 18 B. Carousel ***************/
.carousel-item {
  max-height: 450px; }

/*************** 18 C. Buttons ***************/
button {
  outline: none; }

.btn {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 0;
  padding: .375rem 1rem; }
  .btn .icon {
    font-size: 1.4rem;
    vertical-align: middle;
    margin-top: -4px;
    display: inline-block; }

.btn-sm {
  padding: .25rem .75rem; }
  .btn-sm .icon {
    font-size: 1rem;
    vertical-align: middle;
    margin-top: -2px;
    display: inline-block; }

.btn-rounded {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px; }

  .btn-primary:hover {
    opacity: 0.8; }

  .btn-secondary:hover {
    opacity: 0.8; }

  .btn-success:hover {
    opacity: 0.8; }

  .btn-danger:hover {
    opacity: 0.8; }

  .btn-warning:hover {
    opacity: 0.8; }

  .btn-info:hover {
    opacity: 0.8; }

  .btn-light:hover {
    opacity: 0.8; }

  .btn-dark:hover {
    opacity: 0.8; }

  .btn-lighter:hover {
    opacity: 0.8; }

  .btn-fb:hover {
    opacity: 0.8;
  }

  .btn-tw:hover {
    opacity: 0.8; }

  .btn-orange:hover {
    opacity: 0.8; }

  .btn-link:hover {
    text-decoration: none; }

/*************** 18 D. Outline Buttons ***************/

.btn-bdr-white {
  background: transparent;;
  padding: .5rem 1.5rem; }
  .btn-bdr-white:hover {
    opacity: 0.8;
  }

.btn.disabled,
.btn:disabled {
  pointer-events: none; }

/*************** 18 E. Dropdown Menu ***************/
.dropdown-menu {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 0;
  min-width: 12rem; }
  .dropdown-menu.lg {
    min-width: 18rem; }
  .dropdown-menu:before {
    content: "";
    position: absolute;
    top: -8px;
    left: 10px;
    width: 40px;
    height: 10px;
    background-size: 100%; }
  .dropdown-menu .dropdown-item {
    font-size: 13px;
    padding: .25rem 1rem; }

  .dropdown-menu.dropdown-menu-right:before {
    content: "";
    position: absolute;
    top: -8px;
    right: 10px;
    left: auto;
    width: 40px;
    height: 10px;
    background-size: 100%; }

.dropup .dropdown-menu:before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 5px;
  top: auto;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: inherit; }

/*************** 18 F. Media ***************/
.media.comments {
  margin-top: 0; }
  .media.comments .media-left a {
    display: block; }
  .media.comments a .empty-avatar {
    height: 64px;
    width: 64px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    text-align: center;
    display: block;
    line-height: 60px; }
    .media.comments a .empty-avatar.sm {
      width: 48px;
      height: 48px;
      line-height: 48px; }
  .media.comments .media-body h5.media-heading {
    font-size: 1rem; }
    .media.comments .media-body h5.media-heading span.date {
      font-size: .75rem;
      padding-left: 5px; }
  .media.comments .media-body p {
    padding: 0 0 0 15px;
    margin: 15px 0;
    line-height: 170%;
  }
  .media.comments .comments-footer {
    margin: 25px 0 50px 20px; }
    .media.comments .comments-footer ul li {
      float: left;
      margin-right: 10px; }
  .media.comments .comments-form .form-group {
    margin-bottom: 10px; }

.media.disabled {
  opacity: 0.3;
  cursor: no-drop; }

@media (max-width: 767px) {
  .media.comments {
    overflow: auto; } }
/*************** 18 G. Cards ***************/
.card {
  border: 0;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  border-radius: 0.3rem;
  margin-bottom: .8rem;
  box-shadow: none; }
  .card .card-header:first-child {
    -webkit-border-radius: 0.3rem 0.3rem 0 0;
    -moz-border-radius: 0.3rem 0.3rem 0 0;
    border-radius: 0.3rem 0.3rem 0 0; }
  .card.custom-bdr {
    border: 0;
    -webkit-border-radius: 0.3rem;
    -moz-border-radius: 0.3rem;
    border-radius: 0.3rem; }
    .card.custom-bdr .card-header {
      box-shadow: none; }
  .card.bdr {
    -webkit-border-radius: 0.3rem;
    -moz-border-radius: 0.3rem;
    border-radius: 0.3rem; }
    .card.bdr .card-header {
      box-shadow: none; }
  .card.bdr-primary {
    -webkit-border-radius: 0.3rem;
    -moz-border-radius: 0.3rem;
    border-radius: 0.3rem; }
    .card.bdr-primary .card-header {
      box-shadow: none; }

  .card .card-body {
    padding: 1rem;
    position: relative; }
  .card .card-header {
    font-size: 1rem;
    padding: .8rem 1rem;
    position: relative;
    font-weight: 600;
  }
    .card .card-header h5 {
      font-size: 1rem; }

    .card .card-header a.link {
      position: absolute;
      right: 15px;
      top: 15px;
      font-size: .75rem; }
  .card .card-footer {
    border-top: 0;
    font-size: 1rem;
    padding: .75rem 1rem;
    position: relative; }
    .card .card-footer h5 {
      font-size: 1rem; }

  .card h6.card-title {
    text-align: center;
    margin: 1rem; }

.card-deck {
  margin-right: -7px;
  margin-left: -7px; }
  .card-deck .card {
    margin: 0 7px;
    margin-bottom: .8rem; }

.card-message {
  padding: 12px 20px; }
  .card-message i {
    font-size: 2rem;
    margin-right: 10px;
    float: left; }

/*************** 18 H. Card Header Tabs ***************/
.card-header-tabs {
  margin-right: 0;
  margin-left: 0; }

/*************** 18 I. Accordion Card ***************/
.card-accordion .card {
  margin-bottom: .3rem; }

.accordion-icons a {
  position: relative;
  padding-left: 30px; }
  .accordion-icons a:before {
    position: absolute;
    left: 0;
    content: "\ea8a";
    font-family: 'icomoon';
    font-size: 18px; }
  .accordion-icons a.collapsed:before {
    content: "\ea7f"; }

/*************** 18 J. Tooltips ***************/
.tooltip {
  font-size: 0.75rem; }

.tooltip-inner {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

/*************** 18 K. Badges ***************/
.badge {
  padding: 0.4em 1em 0.4em 1em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 400; }

.badge-pill {
  padding: 0.4em 1em 0.4em 1em;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px; }

.badge-bdr,
.badge-bdr-pill {
  background: transparent; }
  .badge-bdr.badge-bdr-pill,
  .badge-bdr-pill.badge-bdr-pill {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px; }
/*************** 18 L. Alerts ***************/
.alert {
  padding: .75rem 1rem;
  position: relative;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  border-radius: 0.3rem;
  margin-bottom: 1rem;
  box-shadow: none;
  line-height: 160%;
  word-wrap: break-word;
}
  .alert i {
    font-size: 24px;
    margin-right: 10px;
    vertical-align: middle; }

.alert-dismissible .close {
  padding: .75rem 1rem;
}

.close {
  text-shadow: none; }


  .alert-primary .alert-link {
    text-decoration: underline; }

  .alert-secondary .alert-link {
    text-decoration: underline; }

.alert-success .alert-link {
    text-decoration: underline; }

.alert-success .alert-link {
    text-decoration: underline; }

  .alert-danger .alert-link {
    text-decoration: underline; }

  .alert-warning .alert-link {
    text-decoration: underline; }

  .alert-info .alert-link {
    text-decoration: underline; }

  .alert-light .alert-link {
    text-decoration: underline; }

  .alert-dark .alert-link {
    text-decoration: underline; }
/*************** 18 M. Progress bars ***************/
.progress {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }
  .progress.no-shadow {
    box-shadow: none; }

  .progress.xl {
    height: 20px; }
  .progress.md {
    height: 8px; }
  .progress.sm {
    height: 5px; }
  .progress.xs {
    height: 2px; }

/*************** 18 N. Popovers ***************/
.popover {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

/*************** 18 O. Tabs & Navs ***************/


.nav-tabs {
  padding: 10px 10px 0 10px; }
  .nav-tabs .nav-link {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0; }

.nav-link {
  border: none;
  position: relative;
  padding: .8rem 1.2rem; }
  .nav-link i {
    font-size: 1.3rem;
    float: left;
    margin-right: 5px; }

  .nav-link.active {
    text-decoration: none;
    font-weight: 700; }
  .nav-link.disabled {
    pointer-events: none; }

.tab-content {
  padding: 1rem 1.5rem;
  border-top: 0; }
  .tab-content .tab-pane {
    line-height: 180%; }

/*************** 18 P. Pills ***************/
.nav-pills .nav-link {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }
  .nav-pills .nav-link:after {
    background: transparent; }

/*************** 18 R. Breadcrumbs ***************/
.breadcrumb {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

    .breadcrumb .breadcrumb-item a i {
      font-size: 1rem; }

      .breadcrumb.light .breadcrumb-item a i {
        font-size: 1rem; }

/*************** 18 U. Pagination ***************/
.page-item:first-child .page-link {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }
.page-item:last-child .page-link {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

.pagination-lg .page-item:first-child .page-link {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }
.pagination-lg .page-item:last-child .page-link {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

.pagination-sm .page-item:first-child .page-link {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }
.pagination-sm .page-item:last-child .page-link {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

/*************** 18 V. Blockquote ***************/
.blockquote {
  font-size: 1rem;
  line-height: 150%;
  margin-bottom: 2rem; }
  .blockquote p {
    margin: 0; }

/*************** 18 W. Custom File Labels ***************/
.custom-file-label {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }
  .custom-file-label::after {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }

.custom-file-label-primary {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }
  .custom-file-label-primary::after {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }

.custom-file-label-secondary {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }
  .custom-file-label-secondary::after {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0; }

/*************** 18 X. Form Controls ***************/
  .input-group-text.min-w-120 {
    width: 120px; }

.form-control {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
  .form-control.no-bdr {
    border: 1px solid transparent; }

.input-group-text {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

.input-group-addon {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

/*************** 18 Y. Checkbox & Radios ***************/
.form-check {
  padding-bottom: .5rem;
  font-size: 1rem; }

.form-check-label {
  font-size: .85rem; }

.form-check-input {
  margin-top: .25rem; }

.custom-control-label::before {
  top: .1rem; }

.custom-control-label::after {
  top: .1rem; }

/*************** 18 Z. Navbar ***************/
.navbar .navbar-brand {
  font-size: 1.2rem;
  font-weight: 600; }
  .navbar .navbar-brand img {
    max-height: 30px;
    margin-right: 10px; }

/*************** 19. Tables ***************/
.table {
  font-size: .85rem; }

.table.no-border {
  border: 0; }

.table thead th {
  border-top: 0;
  border-bottom: 0; }
.table td {
  vertical-align: middle; }

/************************************************
	************************************************
										20 Gutters
	************************************************
************************************************/
.gutters {
  margin-right: -7px;
  margin-left: -7px; }

.gutters > .col,
.gutters > [class*="col-"] {
  padding-right: 7px;
  padding-left: 7px; }

.no-gutters {
  margin-right: -0px;
  margin-left: -0px; }

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0px;
  padding-left: 0px; }

/************************************************
	************************************************
							21 Code Syntax Highlight
	************************************************
************************************************/
.ge {
  font-style: italic; }

.sd {
  font-style: italic;
}

.language-bash::before,
.language-sh::before {
  content: "$ ";
  user-select: none; }

.language-powershell::before {
  content: "PM> ";
  user-select: none; }

.highlight {
  font-size: 1rem;
  line-height: 150%;
  margin-bottom: 30px; }
  .highlight pre {
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    background-color: transparent;
    border: 0; }
  .highlight pre code {
    font-size: inherit; }

#agreed{
  margin: 3px 5px 0 0;}

.showcounter {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 7px;
  text-align: center;
  font-weight: bold;
}

.nomargin{
    margin: 0 !important;
}

.nopadding{
    padding: 0 !important;
}

.card.card-filter{
    margin: 0 !important;
}

.card.card-filter .card-header{
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.card.card-filter .card-body{
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.flash-content{
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.flash-content .alert{
    margin-bottom: 0;
}

.acl-check{
  padding: 10px;
  margin: 0 0 15px 0;
}

input.icheck {
  margin-right: 5px;
  vertical-align: middle;
}

.subscriptionName {
  font-size: 1.75rem;
}

.showpackagename {
  padding-top: 8px;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 600;
}

.noborder {
  border: 0 !important;
}


.final-price {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  padding-left: 16px;
  padding-bottom: 7px;
}

.price {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1rem;
  line-height: normal;
}

.order-header-style-2 {
  margin-top: 10px;
  padding-bottom: 12px;
  margin-bottom: 10px;
}


.btn-default:hover,
.btn-default:focus{
    box-shadow: none;
}

.clickableDiv {
  cursor:pointer;
}

td a {
  text-decoration: none; }

.notification {
  background-color: #555;
  color: white;
  text-decoration: none;
  font-weight: bold!important;
  padding: 15px 26px;
  position: relative;
  display: inline-block;
  border-radius: 2px;
}

.notification .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 5px 10px;
  border-radius: 50%;
  background: red;
  color: white;
}

.list-header {
  font-size: larger;
  font-weight: bold;
  color: #FFF;
  margin: 0;
  padding: 10px;
}

.nav-chat-item{
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #DDD;
}

.nav-chat-item a{
  padding: 10px!important;
}


/*# sourceMappingURL=main.css.map */