/*----------------------------

[Table of contents]

1. Custom variables

2. Custom web fonts

3. Sass mixins

4. Body

5. Margins & Paddings

6. Text/Font styles

7. Spacings

8. Background colors

9. Graph heights

10. Header styles

		10.1. Logo / Header actions / Support / Custom search

11. Navbar CSS

12. Dashboard wrapper

13. Mian container

14. Right sidebar
		14.1. Panel / Actions

15. Top bar
		15.1. Page title / Sales stats

16. Widgets - Components
		16.1 	Visitors Stats / Select Date Range Radio Buttons
					Accounts to Review / Activity / Sales Block
					Links / Traffic Sources / Views / Contributions
					Tags / Global VS Local / Todo Container
					Messages Dropdown / Tasks / Users List
					Users Online / Messages / Top Clients
					User Profile / Project Activity / Articles / Social Buttons

17. Footer
		17.1. Scroll Up

18. Plugins Overwrite

19. Loading

20. Icon Sizes

21. Invoice Page

22. Bootstrap Overwrite CSS

----------------*/
/*************** 1. Custom Variables ***************/
/*************** 2. Custom Web Fonts ***************/
@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/open-sans/OpenSans-Light.ttf") format("ttf");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/open-sans/OpenSans-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/open-sans/OpenSans-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
}

/*************** 3. Sass Mixins ***************/
/*************** 4. Body CSS ***************/
html {
  height: 100%;
}

body {
  min-height: 100%;
}

body {
  /* overflow: hidden; */
  margin: 0;
  font: normal 13px 'Open Sans', sans-serif;
  line-height: 18px;
  color: var(--main-text-color);
  background: #272f3a;
  background: rgb(173, 173, 173) no-repeat fixed center;
  background-size: cover;
}

a {
  color: var(--navtabs-color);
  text-decoration: none;
}

a:hover {
  color: var(--navtabs-color);
  text-decoration: none;
}

a:focus {
  outline: none;
  text-decoration: none;
  color: var(--navtabs-color);
}

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

ul.default {
  margin: inherit;
  padding: 0 30px;
  list-style-type: inherit;
}

ul.default ul {
  list-style-type: circle;
}

ul.default ul ul {
  list-style-type: square;
}

ul.custom-bullets {
  padding-left: 20px;
}

ul.custom-bullets li:before {
  color: red;
  content: "\2022";
  font-size: 30px;
  width: 20px;
  height: 20px;
}

hr {
  margin-top: 10px;
  margin-bottom: 10px;
  border-top: 1px solid #e3ebf4;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 500;
  padding: 0;
}



select {
  background: var(--selected-background);
}

.col-lg-1 {
  padding: 0 !important;
  width: 11% !important;
  margin-right: 2px !important;
}

/*************** 5. Margins & Paddings ***************/
.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.auto-margin {
  margin: auto;
}

.padding-10 {
  padding: 10px;
}

.padding-15 {
  padding: 15px;
}

/*************** 6. Text Styles ***************/
.center-text {
  text-align: center;
}

.right-text {
  text-align: right;
}

.text-success {
  color: #71c586;
}

.text-danger {
  color: #e84f4c;
}

.text-info {
  color: #3a86c8;
}

.text-warning {
  color: #ffb400;
}

.text-brown {
  color: #ab7967;
}

.text-pink {
  color: #F782AA;
}

.text-white {
  color: #ffffff;
}

.text-grey {
  color: gray;
}

.text-light {
  color: #b3b3b3;
}

/*************** 7. Spacers ***************/
.spacer5 {
  height: 5px;
}

.spacer10 {
  height: 10px;
}

.spacer20 {
  height: 20px;
}

.spacer30 {
  height: 30px;
}


/*************** 8. Background Colors ***************/
.green-bg {
  background: #71c586;
}

.red-bg {
  background: #e84f4c;
}

.dark-red-bg {
  background: #f35454;
}

.blue-bg {
  background: #3a86c8;
}

.yellow-bg {
  background: #ffb400;
}

.mustard-bg {
  background: #e3b442;
}

.pink-bg {
  background: #F782AA;
}

.brown-bg {
  background: #ab7967;
}

.light-green-bg {
  background: #aed048;
}

.violet-bg {
  background: #c38fbb;
}

.teal-bg {
  background: #47BCC7;
}

.orange-bg {
  background: #f2682a;
}

.grey-bg {
  background: #b3b3b3;
}

.dark-grey-bg {
  background: gray;
}

.fb-bg {
  background: #3B5998;
}

.tw-bg {
  background: #55ACEE;
}

.purple-bg {
  background: #500776;
}

/*************** 9. Chart Heights ***************/
.chart-height {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.chart-height1 {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.chart-height2 {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.chart-height3 {
  position: relative;
  height: 235px;
  overflow: hidden;
}

.chart-height4 {
  position: relative;
  height: 80px;
  width: 80px;
  overflow: hidden;
  float: left;
}

.chart-height5 {
  position: relative;
  height: 100px;
  overflow: hidden;
}

/*************** 10. Header / Logo / Actions / Support / Custom Search ***************/
#header {
  padding: 0 25px;
  vertical-align: middle;
  background: #181d24;
}

@media (max-width: 767px) {
  #header {
    padding: 0 20px;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
  }
}

.logo {
  margin: 17px 0;
  float: left;
}

.logo h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #e6e6e6;
  line-height: 24px;
}

.logo h4 i {
  color: #71c586;
  font-size: 21px;
  margin-left: 2px;
  vertical-align: middle;
}

.logo img {
  max-width: 90px;
  margin: 0;
  filter: brightness(0) invert(1);
}

ul#header-actions {
  margin: 0 0 0 10px;
}

ul#header-actions li.list-box {
  position: relative;
  cursor: pointer;
  float: left;
  text-align: center;
  line-height: 100%;
  vertical-align: middle;
}

ul#header-actions li.list-box a {
  padding: 13px 15px;
  display: block;
}

ul#header-actions li.list-box a .info-label {
  color: #ffffff;
  text-align: center;
  height: 28px;
  width: 28px;
  line-height: 28px;
  display: block;
  background: #313b49;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

ul#header-actions li.list-box a .info-icon {
  text-align: center;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-shadow: 0 7px 5px #000000;
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 16px;
}

ul#header-actions li.list-box:hover {
  background: #212730;
}

ul#header-actions li.list-box:hover .info-label {
  background: #35404f;
}

ul#header-actions li.list-box.open {
  background: #212730;
}

ul#header-actions li.list-box.open .info-label {
  background: #35404f;
}

ul#header-actions li.list-box.user-admin {
  text-align: right;
  background: transparent;
}

ul#header-actions li.list-box.user-admin .admin-details {
  float: left;
  margin: 12px 10px 0 10px;
  color: #f5f8fb;
}

ul#header-actions li.list-box.user-admin .admin-details .name {
  line-height: 18px;
}

ul#header-actions li.list-box.user-admin .admin-details .designation {
  font-size: 12px;
  color: #97a5b9;
}

ul#header-actions li.list-box.user-admin .dropdown-menu {
  min-width: 215px;
  min-height: 180px;
}

ul#header-actions li.list-box.user-admin .dropdown-menu .dropdown-content a {
  padding: 7px 12px;
  font-size: 12px;
  color: #000000;
}

ul#header-actions li.list-box.user-admin .dropdown-menu .dropdown-content a i {
  font-size: 21px;
  color: #e84f4c;
  margin-right: 10px;
}

ul#header-actions li.list-box.user-admin .dropdown-menu .dropdown-content a:first-child {
  border-bottom: 1px solid #d9d9d9;
}

ul#header-actions li.list-box.user-admin .dropdown-menu .dropdown-content a:first-child:hover {
  background: #e84f4c;
  color: #ffffff;
  border-bottom: 1px solid #e84f4c;
}

ul#header-actions li.list-box.user-admin .dropdown-menu .dropdown-content a:first-child:hover i {
  color: #ffffff;
}

ul#header-actions li.list-box.user-admin a.dropdown-toggle {
  background: #c38fbb;
  float: right;
  padding: 4px;
  text-align: center;
  margin-top: 8px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

ul#header-actions li.list-box.user-admin a.dropdown-toggle i {
  color: #ffffff;
  font-size: 30px;
}

ul#header-actions li.list-box:last-child a {
  padding-right: 0;
}

ul#header-actions .dropdown-menu {
  padding: 0;
  min-width: 320px;
  min-height: 210px;
  float: left;
  position: absolute;
  right: 0;
  top: 50px;
  left: inherit;
  border: 0;
  border-top: 4px solid #3a86c8;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

ul#header-actions .dropdown-menu:before {
  content: "";
  position: absolute;
  top: -14px;
  right: 10px;
  border-bottom: 10px solid #3a86c8;
  border-right: 10px solid transparent;
}

ul#header-actions .dropdown-header {
  background: #ffffff;
  padding: 10px 15px;
  color: #3a86c8;
  font-weight: 600;
}

ul#header-actions .dropdown-footer {
  border-top: 1px solid #cccccc;
  padding: 10px 15px;
  color: #3a86c8;
  font-size: 11px;
}

ul#header-actions .dropdown-footer i {
  font-size: 12px;
  margin-left: 4px;
  vertical-align: middle;
  color: #71c586;
}

@media (max-width: 767px) {
  ul#header-actions li.list-box {
    display: none;
  }

  ul#header-actions li.list-box.user-admin {
    display: block;
  }
}

.dropdown-menu {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 0;
}

.dropdown-menu>li a:hover {
  background: var(--changelanghover-color);
}

a.support {
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  text-transform: uppercase;
  padding: 2px 10px;
  display: inline-block;
  margin: 16px 10px 0 30px;
  font-size: 9px;
  background: #009688;
  color: #ffffff;
  float: right;
}

@media (max-width: 767px) {
  a.support {
    display: none;
  }
}

.custom-search {
  margin: 9px auto 0 auto;
  position: relative;
  top: 0;
  line-height: 36px;
  float: right;
}

.custom-search ::-webkit-input-placeholder {
  color: #4e5e74;
}

.custom-search :-moz-placeholder {
  color: #4e5e74;
}

.custom-search ::-moz-placeholder {
  color: #4e5e74;
}

.custom-search :-ms-input-placeholder {
  color: #4e5e74;
}

.custom-search .search-query {
  padding: 7px 15px;
  margin-bottom: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  line-height: 20px;
  border: 1px solid #313b49;
  width: 240px;
}

.custom-search .search-query:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid #3f4c5e;
  width: 280px;
}

.custom-search i {
  padding: 0 20px;
  height: 36px;
  line-height: 36px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  color: #ffffff;
  border-left: 1px solid #313b49;
  font-size: 16px;
}

@media (max-width: 991px) {
  .custom-search {
    display: none;
  }
}

/*************** 11. Navbar ***************/
.navbar-default {
  border: none;
  background: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin: 0;
  min-height: 36px;
}

.navbar-default .navbar-toggle {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border-color: #71c586;
  padding: 9px 12px;
  margin: 0;
  background: #71c586;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #e53935;
  border-color: #e53935;
}

.navbar-default .navbar-toggle:hover .icon-bar,
.navbar-default .navbar-toggle:focus .icon-bar {
  background-color: #888;
}

.navbar-default .navbar-collapse {
  border-top: 0;
  padding: 0;
  box-shadow: none;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
}

.navbar-default .navbar-nav>li {
  margin-right: 1px;
}

.navbar-default .navbar-nav>li>a {
  text-align: center;
  min-width: 80px;
  min-height: 44px;
  display: grid;
  padding: 3px 7px;

  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #f1f5fa 86%, #c9d9ea 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #f1f5fa 86%, #c9d9ea 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #f1f5fa 86%, #c9d9ea 100%);
  font-size: 12px;
  color: #333333;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
}

.navbar-default .navbar-nav>li>a i {
  font-size: 12px;
  float: left;
  margin-right: 5px;
  line-height: 18px;
}

.navbar-default .navbar-nav>li>a:hover {
  color: #ffffff;
  background: #3a86c8;
}

.navbar-default .navbar-nav>li>a:hover i {
  color: #ffffff;
}

.navbar-default .navbar-nav>li>a .caret {
  position: absolute;
  font-family: 'icomoon';
  border: none;
  top: 22px;
}

.navbar-default .navbar-nav>li>a .caret:before {
  content: "\e313";
}

.navbar-default .navbar-nav>li>.dropdown-menu {
  border: 0;
  background: #3a86c8;
}

.navbar-default .navbar-nav>li>.dropdown-menu li a {
  color: #ffffff;
  font-size: 12px;
  padding: 5px 15px;
  display: block;
}

.navbar-default .navbar-nav>li>.dropdown-menu li a:hover,
.navbar-default .navbar-nav>li>.dropdown-menu li a:focus {
  background: #2e6ea6;

}

.navbar-default .navbar-nav>.open>a {
  color: #ffffff;
  background: #3a86c8;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
}

.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
  color: #ffffff;
  background: #3a86c8;
}

.navbar-default .navbar-nav>.open>a i {
  color: #ffffff;
}

.navbar-default .navbar-nav>.active>a {
  position: relative;
  background-color: #3a86c8;
  background: -moz-linear-gradient(top, #3a86c8 0%, #3a86c8 30%, #3a86c8 100%);
  background: -webkit-linear-gradient(top, #3a86c8 0%, #3a86c8 30%, #3a86c8 100%);
  background: linear-gradient(to bottom, #3a86c8 0%, #3a86c8 30%, #3a86c8 100%);
  color: #ffffff;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
}

.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
  background-color: #3a86c8;
  color: #ffffff;
}

.navbar-default .navbar-nav>.active>a i {
  color: #ffffff;
}

@media (min-width: 768px) {
  .navbar-default .navbar-nav>li:hover>a {
    color: #ffffff;
    background: #3a86c8;
  }

  .navbar-default .navbar-nav>li:hover>.dropdown-menu {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .navbar-default .navbar-nav>li a {
    padding: 12px 15px;
    min-width: 95px;
    font-size: 13px;
  }

  .navbar-default .navbar-nav>li a i {
    font-size: 14px;
  }

  .navbar-default .navbar-nav>li a .caret {
    display: none;
  }
}

@media (max-width: 767px) {
  .navbar {
    position: inherit;
    top: 0;
  }

  .navbar-default .navbar-collapse {
    padding: 0 15px;
  }

  .navbar-default .navbar-nav>li {
    border-bottom: 1px solid #f2f2f2;
  }

  .navbar-default .navbar-nav>li a {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    text-align: left;
    margin-right: 0;
    padding: 10px 15px;
  }

  .navbar-default .navbar-nav>li a i {
    margin-right: 10px;
  }

  .navbar-default .navbar-nav>li a .caret {
    top: 12px;
    right: 30px;
  }

  .navbar-default .navbar-nav>li.active {
    border-bottom: 1px solid #3a86c8;
  }

  .navbar-default .navbar-nav .open .dropdown-menu {
    top: 55px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 0;
  }

  .navbar-default .navbar-nav .open .dropdown-menu>li {
    background-color: #3a86c8;
  }

  .navbar-default .navbar-nav .open .dropdown-menu>li>a {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    color: #ffffff;
    padding: 7px 40px 7px 20px;
  }

  .navbar-default .navbar-nav .open .dropdown-menu>li:hover {
    background: #ffffff;
    color: #000000;
  }

  .navbar-default .navbar-nav .open .dropdown-menu:before {
    border: 0;
  }
}

/*************** 12. Dashboard Wrapper ***************/
.dashboard-wrapper {
  margin: 25px 10px 10px 10px;
  position: relative;
  padding: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

@media (max-width: 1199px) {
  .dashboard-wrapper {
    margin: 20px 5px;
  }
}

.dashboard-wrapper-full {
  margin: 25px 10px 20px 10px;
  position: relative;
  padding: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/*************** 13. Mian Container ***************/
.main-container {
  position: relative;
  padding: 20px;
  min-height: 795px;
  background: var(--maincontainer-background);
}

/*************** 14. Right Sidebar ***************/
.right-sidebar {
  position: absolute;
  right: 25px;
  top: 125px;
  width: 190px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #ffffff;
  border-top: 5px solid #3a86c8;
  padding: 15px;
  min-height: 700px;
}

.right-sidebar .panel {
  margin-bottom: 5px;
}

.right-sidebar .panel.panel-blue .panel-body {
  background: #357ebe;
}

.right-sidebar a.action {
  position: relative;
  padding: 15px;
  display: block;
  margin-bottom: 5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.right-sidebar a.action:after {
  position: absolute;
  right: 15px;
  bottom: 15px;
  color: #ffffff;
  font-size: 24px;
  content: "\e96b";
  font-family: icomoon;
  opacity: 0.5;
}

@media (max-width: 1199px) {
  .right-sidebar {
    display: none;
  }
}

/*************** 15. Top Bar  ***************/
.top-bar {
  padding: 0 20px;
  background: var(--topbar-background);
  border-top: 5px solid var(--sidebarborder-color);
  border-bottom: 1px solid #d1dfec;
  -webkit-border-radius: 0 3px 0 0;
  -moz-border-radius: 0 3px 0 0;
  border-radius: 0 3px 0 0;
}

.top-bar .page-title {
  float: left;
}

.top-bar .page-title h4 {
  margin: 0;
  padding: 0;
  color: var(--topbar-color);
  font-size: 21px;
  line-height: 70px;
}

.top-bar .page-title h4 .fa {
  font-size: 14px;
  padding-left: 3px;
  color: #e84f4c;
}

@media (max-width: 767px) {
  .top-bar {
    margin-top: 15px;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
  }

  .top-bar .page-title h4 {
    font-size: 16px;
    line-height: 48px;
  }
}

ul.topbar-stats {
  float: right;
}

ul.topbar-stats li {
  border-left: 1px solid #d9d9d9;
  padding: 0 24px;
  margin: 15px 0 0 0;
  float: left;
}

ul.topbar-stats li:first-child {
  border-left: none;
  padding-left: 0;
}

ul.topbar-stats li:last-child {
  padding-right: 0;
}

ul.topbar-stats li h4 {
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-weight: 600;
}

ul.topbar-stats li h4 i {
  font-size: 18px;
  font-weight: 600;
}

ul.topbar-stats li h4 i.up {
  color: #71c586;
}

ul.topbar-stats li h4 i.down {
  color: #e84f4c;
}

ul.topbar-stats li h5 {
  padding: 0;
  margin: 0;
  line-height: 16px;
}

ul.topbar-stats li .sales-details {
  float: left;
  margin-left: 5px;
}

ul.topbar-stats li .sales-block {
  float: left;
  position: relative;
  height: 30px;
  text-align: center;
  top: 6px;
  margin-right: 12px;
}

@media (max-width: 767px) {
  ul.topbar-stats {
    display: none;
  }
}

/*************** 16. Widgets/Components  ***************/
ul.visitor-stats {
  margin-top: 10px;
}

ul.visitor-stats li {
  float: left;
  width: 25%;
  padding: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 92px;
}

ul.visitor-stats li:nth-child(n+1) {
  background: #eef3f8;
}

ul.visitor-stats li:nth-child(2n+2) {
  background: #e3ebf4;
}

ul.visitor-stats li h5.visitor-title {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  color: #666666;
  margin: 0;
}

ul.visitor-stats li h5.visitor-title span.growth {
  float: right;
  color: #000000;
}

ul.visitor-stats li h5.visitor-title span.growth i {
  font-size: 10px;
  font-weight: 600;
  margin-right: 5px;
}

ul.visitor-stats li h5.visitor-title span.growth i.up {
  color: #71c586;
}

ul.visitor-stats li h5.visitor-title span.growth i.down {
  color: #e84f4c;
}

ul.visitor-stats li h2.num-stats {
  margin: 5px 0;
  color: #000000;
  letter-spacing: 1px;
}

ul.visitor-stats li h3.avg-time {
  margin: 20px 0 0 0;
  color: #000000;
  letter-spacing: 1px;
}

ul.visitor-stats li .progress {
  margin: 0;
  background-color: #ffffff;
}

@media (max-width: 767px) {
  ul.visitor-stats li {
    width: 100%;
  }
}

.date-range {
  margin: 10px 5px;
}

.date-range h3.title {
  font-size: 32px;
  color: #000000;
  margin: 0 0 10px 0;
  display: inline-block;
}

.date-range .btn {
  border: 2px solid #dbe6f1;
  color: #000000;
  font-size: 12px;
  padding: 7px 12px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.date-range .btn:hover {
  border: 2px solid #c9d9ea;
}

.date-range .btn.active,
.date-range .btn:focus,
.date-range .btn:active:focus,
.date-range .btn.active:focus,
.date-range .btn.focus,
.date-range .btn:active.focus,
.date-range .btn.active.focus {
  box-shadow: none;
  border: 2px solid #e84f4c;
}

ul.accounts-review {
  margin-bottom: 19px;
  text-align: center;
}

ul.accounts-review li {
  background: #6dc6cd;
  padding: 12px 10px;
  display: inline-block;
  width: 46%;
  margin: 0 2% 10px 2%;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
  position: relative;
}

ul.accounts-review li:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 20px solid #ffffff;
  border-left: 20px solid transparent;
}

ul.accounts-review li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-bottom: 20px solid #40b3bc;
  border-right: 20px solid transparent;
  -webkit-border-radius: 0 0 0 6px;
  -moz-border-radius: 0 0 0 6px;
  border-radius: 0 0 0 6px;
}

ul.accounts-review li:last-child {
  margin-right: 0;
}

ul.accounts-review li:first-child {
  margin-left: 0;
}

ul.accounts-review li h1 {
  font-size: 48px;
  color: #ffffff;
  margin: 5px 0 10px 0;
}

ul.accounts-review li h5 {
  margin: 0 0 10px 0;
  color: #ffffff;
}

ul.accounts-review li h5 strong {
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
}

ul.accounts-review li a:hover {
  color: #000000;
}

ul.accounts-review li.blue {
  background: #3a86c8;
}

ul.accounts-review li.blue:before {
  border-bottom: 20px solid #2d6ca2;
}

p.account-notify {
  text-align: center;
  padding: 0 20px;
}

p.account-notify i {
  margin-right: 10px;
  color: #e3b442;
  font-size: 24px;
}

p.account-notify strong {
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
}

ul.activity li {
  padding: 5px 0 5px 15px;
  border-left: 3px solid #b4b1b1;
  position: relative;
}

ul.activity li img.activity-avatar {
  width: 48px;
  height: 48px;
  float: left;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

ul.activity li .activity-info {
  margin: 0 0 0 5px;
}

ul.activity li .activity-info h4 {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
}

ul.activity li .activity-info p.activity-details {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

ul.activity li .activity-info p.activity-details span {
  font-weight: 600;
  color: #e84f4c;
}

ul.activity li .activity-info p.activity-date {
  margin: 0;
  padding: 7px 0 3px 0;
}

ul.activity li .activity-labels {
  position: absolute;
  right: 0;
  top: 5px;
}

ul.activity li .activity-labels a.label {
  margin-left: 5px;
  text-transform: uppercase;
}

ul.activity li.green {
  border-left: 3px solid #71c586;
}

ul.activity li.red {
  border-left: 3px solid #e84f4c;
}

ul.activity li.violet {
  border-left: 3px solid #f8c10b;
}

ul.activity li:last-child {
  margin-bottom: 0;
}

ul.activity .divider {
  padding: 0;
  border: 0;
  border-bottom: 1px solid #e3ebf4;
  margin: 10px 0;
}

@media (max-width: 767px) {
  ul.activity li .activity-labels {
    display: none;
  }
}

.info-stats {
  padding: 6px;
}

.info-stats .sale-num {
  margin: 0 0 0 48px;
}

.info-stats .sale-num h4 {
  font-size: 24px;
  margin: 0;
  padding: 0;
  line-height: 100%;
  font-weight: 600;
}

.info-stats .sale-num p {
  font-size: 13px;
  margin: 0;
  padding: 0;
  line-height: 100%;
  color: #4d4d4d;
}

.info-stats .icon-type {
  height: 36px;
  width: 36px;
  float: left;
  position: relative;
  margin-right: 10px;
  text-align: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.info-stats .icon-type i {
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  color: #ffffff;
}

.info-stats.green .icon-type {
  background: #71c586;
  box-shadow: -3px 3px 0 #54b96d;
}

.info-stats.green-one .icon-type {
  background: #6dc6cd;
  box-shadow: -3px 3px 0 #4fbac3;
}

.info-stats.green-two .icon-type {
  background: #52bf8a;
  box-shadow: -3px 3px 0 #3fa976;
}

.info-stats.green-three .icon-type {
  background: #638ca5;
  box-shadow: -3px 3px 0 #52778e;
}

.info-stats.blue .icon-type {
  background: #3a86c8;
  box-shadow: -3px 3px 0 #2f71aa;
}

.info-stats.yellow .icon-type {
  background: #e3b442;
  box-shadow: -3px 3px 0 #dca521;
}

.info-stats.pink .icon-type {
  background: #F782AA;
  box-shadow: -3px 3px 0 #f55c90;
}

.info-stats.violet .icon-type {
  background: #c38fbb;
  box-shadow: -3px 3px 0 #b574ab;
}

.info-stats.teal .icon-type {
  background: #47BCC7;
  box-shadow: -3px 3px 0 #35a5b0;
}

.info-stats.red .icon-type {
  background: #e84f4c;
  box-shadow: -3px 3px 0 #e32b28;
}

.info-stats.tw .icon-type {
  background: #55ACEE;
  box-shadow: -3px 3px 0 #309aea;
}

.info-stats.fb .icon-type {
  background: #3B5998;
  box-shadow: -3px 3px 0 #30487b;
}

.links {
  margin-bottom: 7px;
}

.links .link-details {
  margin-left: 80px;
  text-align: center;
}

.links .link-details li {
  width: 25%;
  float: left;
  margin-right: 5px;
  /* border-bottom: 3px solid #e84f4c; */
}

.links .link-details li h4 {
  font-weight: 600;
  margin: 15px 0 0 0;
}

.links .link-details li p {
  margin: 0 0 5px 0;
}

.links .link-details.domestic li:nth-child(1) {
  /* border-color: #e84f4c;  */
}

.links .link-details.domestic li:nth-child(2) {
  /* border-color: #3a86c8;  */
}

.links .link-details.domain li {
  width: 17%;
}

.links .link-details.domain li:nth-child(1) {
  border-color: #fa9255;
}

.links .link-details.domain li:nth-child(2) {
  border-color: #fee074;
}

.links .link-details.domain li:nth-child(3) {
  border-color: #47BCC7;
}

.links .link-details.domain li:nth-child(4) {
  border-color: #F782AA;
}

.links .link-details.domain li:nth-child(5) {
  border-color: #aed048;
}

.links .link-details.img-fonts li {
  width: 25%;
}

.links .link-details.img-fonts li:nth-child(1) {
  border-color: #c38fbb;
}

.links .link-details.img-fonts li:nth-child(2) {
  border-color: #3a86c8;
}

.links .link-details.img-fonts li:nth-child(3) {
  border-color: #F782AA;
}

.links:last-child {
  margin-bottom: 1px;
}

.traffic-sources {
  margin-bottom: 11px;
}

.traffic-sources .symbol {
  width: 16px;
  height: 16px;
  background: #66c0dc;
  display: block;
}

.traffic-sources .symbol.orange {
  background: #f2682a;
}

.traffic-sources .symbol.purple {
  background: #500776;
}

.traffic-sources .symbol.yellow {
  background: #ffb400;
}

.traffic-sources .symbol.pink {
  background: #F782AA;
}

.traffic-sources .progress {
  margin: 4px 0;
}

ul.views {
  padding: 7px 15px;
}

ul.views li {
  position: relative;
  padding: 3px 0;
}

ul.views li i {
  font-size: 9px;
  padding-right: 7px;
  float: left;
  line-height: 19px;
}

ul.views li i.red {
  color: #e84f4c;
}

ul.views li i.green {
  color: #71c586;
}

ul.views li i.blue {
  color: #3a86c8;
}

ul.views li p.detail-info {
  text-transform: uppercase;
  font-size: 11px;
  color: #4d4d4d;
  padding: 0;
  margin: 0;
}

ul.contributions {
  padding: 15px;
}

ul.contributions li {
  margin-bottom: 15px;
}

ul.contributions li .progress {
  margin: 0;
  height: 4px;
  background: #e6e6e6;
}

ul.contributions li p {
  margin: 0;
  font-size: 11px;
  color: gray;
}

ul.contributions li p span {
  color: #000000;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 600;
}

ul.contributions li:last-child {
  margin-bottom: 0;
}

.tags {
  padding: 15px;
}

.tags a {
  font-size: 11px;
  margin: 1px 1px 0 0;
  float: left;
  padding: 1px 12px;
  color: #ffffff;
  background: #3276b2;
}

.tags a:nth-child(2n) {
  background: #357ebe;
}

.tags a:nth-child(3n) {
  background: #3a86c8;
}

.tags a:nth-child(4n) {
  background: #468dcb;
}

.tags a:nth-child(5n) {
  background: #5295cf;
}

.tags a:nth-child(6n) {
  background: #5e9cd2;
}

.tags a:nth-child(7n) {
  background: #6aa3d5;
}

.tags a:nth-child(8n) {
  background: #76abd9;
}

.tags a:nth-child(9n) {
  background: #82b2dc;
}

.tags a:nth-child(10n) {
  background: #8eb9df;
}

.global-local {
  margin: 10px 0 0 0;
}

.global-local i {
  color: #52bf8a;
  font-size: 60px;
  line-height: 100%;
  vertical-align: middle;
  float: left;
}

.global-local i.small {
  font-size: 24px;
  float: none;
}

.global-local h3 {
  margin: 0 0 5px 72px;
  font-size: 36px;
  color: #52bf8a;
  font-weight: 600;
  line-height: 100%;
  vertical-align: middle;
}

.global-local p {
  margin: 0 0 -20px 72px;
  padding: 0;
}

.todo {
  padding: 15px;
}

.todo .todo-list-item {
  padding: 12px 0px;
  cursor: pointer;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  border-bottom: 1px solid #ebebeb;
  position: relative;
}

.todo .todo-list-item:first-child {
  padding-top: 0;
}

.todo .todo-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.todo .todo-list-cb {
  display: none;
}

.todo .todo-list-mark {
  position: relative;
  float: left;
  margin-right: 10px;
  width: 16px;
  height: 16px;
  border: 2px solid #b3b3b3;
  vertical-align: middle;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.todo .todo-list-mark:before {
  content: '';
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -3px 0 0 -4px;
  height: 5px;
  width: 8px;
  border: solid #3a86c8;
  border-width: 0 0 3px 3px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.todo .todo-list-cb:checked~.todo-list-mark {
  border-color: #3a86c8;
}

.todo .todo-list-cb:checked~.todo-list-mark:before {
  display: block;
}

.todo .todo-list-cb.overdue:checked~.todo-list-mark {
  border-color: #e84f4c;
}

.todo .todo-list-cb.overdue:checked~.todo-list-mark:before {
  border: solid #e84f4c;
  border-width: 0 0 3px 3px;
}

.todo .todo-list-desc {
  font-weight: 600;
  margin-left: 30px;
  display: block;
}

.todo small.scheduled {
  font-weight: 500;
  font-size: 10px;
  display: block;
  margin: 5px 0 0 30px;
  color: #999999;
  line-height: 100%;
}

.todo .todo-list-cb:checked~.todo-list-desc {
  color: #3a86c8;
  text-decoration: line-through;
}

.todo .todo-list-cb.overdue:checked~.todo-list-desc {
  color: #e84f4c;
  text-decoration: line-through;
}

ul.imp-notify li {
  padding: 12px 10px 10px 10px;
  border-bottom: 1px solid #ededed;
}

ul.imp-notify li .thumb {
  float: left;
}

ul.imp-notify li .thumb img {
  width: 48px;
  height: 48px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

ul.imp-notify li .details {
  font-size: 12px;
  display: block;
  background: transparent;
  border: none;
  width: auto;
  margin-left: 60px;
}

ul.imp-notify li .details strong {
  font-weight: 600;
  display: block;
  color: #35404f;
}

ul.imp-notify li .details p {
  margin: 5px 0 0 0;
  line-height: 18px;
}

ul.imp-notify li .details small.date {
  display: block;
  padding: 5px 0 0 0;
  font-weight: 600;
  color: #b3b3b3;
}

.task-list li {
  display: block;
  padding: 8px 0;
  margin: 0;
  cursor: pointer;
  line-height: 16px;
  border-bottom: 1px solid #eaf0f7;
  font-size: 12px;
}

.task-list li.list span:before {
  margin-right: 8px;
  font-size: 16px;
  content: "\e876";
  font-family: 'icomoon';
  vertical-align: middle;
}

.task-list li.completed {
  text-decoration: line-through;
  color: #3a86c8;
}

.task-list li.completed span:before {
  content: "\e877";
  font-family: 'icomoon';
}

.task-list li:first-child {
  padding-top: 0;
}

.task-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

ul.friends-list {
  margin: 0;
}

ul.friends-list li {
  width: 28%;
  height: 28%;
  margin: 2%;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul.friends-list li img {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  width: 100%;
  height: 100%;
}

ul.friends-list li:hover {
  opacity: 0.8;
}

ul.online-users li {
  border-bottom: 1px solid #eaf0f7;
}

ul.online-users li a {
  position: relative;
  display: block;
  padding: 5px 0;
}

ul.online-users li a img {
  margin-right: 3px;
  width: 16px;
  height: 16px;
}

ul.online-users li a .user-name {
  display: inline-block;
}

ul.online-users li a .online,
ul.online-users li a .busy,
ul.online-users li a .away {
  position: absolute;
  top: 10px;
  right: 0;
  width: 8px;
  height: 8px;
  background: #71c586;
}

ul.online-users li a .online.busy,
ul.online-users li a .busy.busy,
ul.online-users li a .away.busy {
  background: #e84f4c;
}

ul.online-users li a .online.away,
ul.online-users li a .busy.away,
ul.online-users li a .away.away {
  background: #ffb400;
}

ul.online-users li:last-child {
  border-bottom: 0;
}

.message-wrapper li {
  padding: 10px 0 15px 0;
  border-bottom: 1px solid #ededed;
}

.message-wrapper li img.avatar {
  height: 48px;
  width: 48px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.message-wrapper li.in img.avatar {
  margin-right: 10px;
  float: left;
}

.message-wrapper li .name {
  font-weight: 600;
}

.message-wrapper li .date-time {
  color: gray;
  font-size: 11px;
}

.message-wrapper li.out img.avatar {
  float: right;
  margin-left: 10px;
}

.message-wrapper li .message {
  display: block;
  padding: 0 15px;
  position: relative;
}

.message-wrapper li.in .message {
  text-align: left;
  border-left: 2px solid #e84f4c;
  margin-left: 60px;
}

.message-wrapper li.in .message .arrow {
  display: block;
  position: absolute;
  top: 7px;
  left: -7px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #e84f4c;
}

.message-wrapper li.out {
  text-align: right;
}

.message-wrapper li.out .message {
  border-right: 2px solid #71c586;
  margin-right: 60px;
  text-align: right;
}

.message-wrapper li.out .message .arrow {
  display: block;
  position: absolute;
  top: 7px;
  right: -7px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #71c586;
}

.message-wrapper li .message .body {
  display: block;
  color: #333333;
  padding-top: 6px;
}

.message-wrapper li .message .body span {
  font-style: italic;
  font-weight: 600;
  color: #1a1a1a;
}

.message-wrapper li:last-child {
  border-bottom: none;
}

ul.top-clients li {
  position: relative;
  height: 54px;
  display: block;
  padding: 6px 0;
  width: 100%;
  margin-bottom: 13px;
  cursor: pointer;
  overflow: hidden;
}

ul.top-clients li .progress {
  opacity: .8;
  position: absolute;
  height: 3px;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  transition: opacity 0.2s ease-in-out;
}

ul.top-clients li .avatar {
  position: relative;
  float: left;
  width: 36px;
  height: 36px;
  background: #ffffff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  z-index: 2;
  overflow: hidden;
}

ul.top-clients li .avatar img {
  width: 36px;
  height: 36px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

ul.top-clients li .value {
  margin-top: 10px;
  float: right;
  font-weight: 600;
  color: #333333;
}

ul.top-clients li .biz {
  margin-top: 10px;
  margin-left: 10px;
  font-size: 12px;
  float: left;
}

ul.top-clients li .biz p.biz-name {
  float: left;
  font-weight: 600;
  margin: 0;
}

ul.top-clients li .biz .biz-date {
  float: left;
  font-size: 10px;
  font-style: italic;
  margin-left: 15px;
}

ul.top-clients li:last-child {
  margin-bottom: 0;
}

.user-account {
  background: #181d24;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  text-align: center;
}

.user-account .user-pic {
  width: 150px;
  margin: auto;
  padding: 10px 0;
}

.user-account .user-pic img {
  border-radius: 50%;
  border-top-left-radius: 50% 50%;
  border-top-right-radius: 50% 50%;
  border-bottom-right-radius: 50% 50%;
  border-bottom-left-radius: 50% 50%;
  /* -webkit-border-radius: 50px; */
  /* -moz-border-radius: 50px; */
  /* border-radius: 50px; */
  border: 10px solid #181d24
}

.user-account h4 {
  color: #ffffff;
  padding: 0 0 10px 0;
  margin: 0;
}

.user-account p {
  color: #ffffff;
  padding: 0 0 20px 0;
  margin: 0;
}

ul.project-activity {
  margin-bottom: 20px;
}

ul.project-activity li.activity-list {
  position: relative;
  border-left: 1px solid #bed2e5;
}

ul.project-activity li.activity-list:after {
  background-color: #ffffff;
  border-color: #F782AA;
  border-radius: 10px;
  border-style: solid;
  border-width: 2px;
  bottom: 0;
  content: "";
  height: 9px;
  left: 0;
  margin-left: -5px;
  position: absolute;
  width: 9px;
}

ul.project-activity li.activity-list .detail-info {
  margin: 0 0 0 15px;
  padding-bottom: 15px;
}

ul.project-activity li.activity-list p.message {
  padding: 0;
  margin: 0;
}

ul.project-activity li.activity-list.success {
  border-left-color: #71c586;
}

ul.project-activity li.activity-list.success:after {
  border-color: #71c586;
}

ul.project-activity li.activity-list.danger {
  border-left-color: #e84f4c;
}

ul.project-activity li.activity-list.danger:after {
  border-color: #e84f4c;
}

ul.project-activity li.activity-list.info {
  border-left-color: #3a86c8;
}

ul.project-activity li.activity-list.info:after {
  border-color: #3a86c8;
}

ul.project-activity li.activity-list.warning {
  border-left-color: #ffb400;
}

ul.project-activity li.activity-list.warning:after {
  border-color: #ffb400;
}

ul.project-activity li.activity-list.pink {
  border-left-color: #F782AA;
}

ul.project-activity li.activity-list.pink:after {
  border-color: #F782AA;
}

ul.project-activity li.activity-list.brown {
  border-left-color: #ab7967;
}

ul.project-activity li.activity-list.brown:after {
  border-color: #ab7967;
}

ul.project-activity li.activity-list:before {
  content: " ";
  display: table;
}

ul.project-activity li.activity-list:after {
  content: " ";
  display: table;
  clear: both;
  bottom: auto;
  top: 6px;
}

ul.project-activity li.activity-list:last-child .detail-info {
  padding-bottom: 0;
}

ul.articles {
  margin: 0;
}

ul.articles li {
  padding: 10px 0;
  border-bottom: 1px dotted #d4e1ee;
}

ul.articles li a {
  position: relative;
  color: #4d4d4d;
  display: block;
  line-height: 16px;
  padding-left: 20px;
  text-decoration: underline;
}

ul.articles li a:hover {
  text-decoration: none;
}

ul.articles li a .label-bullet {
  position: absolute;
  left: 0;
  top: 4px;
  width: 0;
  height: 0;
  border: 4px solid #e84f4c;
}

ul.articles li a .date {
  margin-top: 5px;
  font-size: 11px;
  font-weight: normal;
  display: block;
  font-style: italic;
}

ul.articles li:nth-child(1n+1) a .label-bullet {
  border: 4px solid #3a86c8;
}

ul.articles li:nth-child(2n+1) a .label-bullet {
  border: 4px solid #71c586;
}

ul.articles li:nth-child(3n+1) a .label-bullet {
  border: 4px solid #ffb400;
}

ul.articles li:nth-child(4n+1) a .label-bullet {
  border: 4px solid #e84f4c;
}

ul.articles li:first-child {
  padding-top: 0;
}

ul.articles li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}


ul.social-buttons {
  text-align: center;
  margin: auto;
}

ul.social-buttons li {
  text-align: center;
  padding: 5px;
  display: inline-block;
  width: 10%;
  margin: 5px 3px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

ul.social-buttons li:hover {
  zoom: 1;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

ul.social-buttons li.facebook {
  background-color: #344e86;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3B5998), to(#344e86));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #3B5998, #344e86);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #3B5998, #344e86);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #3B5998, #344e86);
  /* IE10 */
  background-image: -o-linear-gradient(top, #3B5998, #344e86);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #3B5998, #344e86);
}

ul.social-buttons li.twitter {
  background-color: #3ea1ec;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#55ACEE), to(#3ea1ec));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #55ACEE, #3ea1ec);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #55ACEE, #3ea1ec);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #55ACEE, #3ea1ec);
  /* IE10 */
  background-image: -o-linear-gradient(top, #55ACEE, #3ea1ec);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #55ACEE, #3ea1ec);
}

ul.social-buttons li.gplus {
  background-color: #d62020;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#E02F2F), to(#d62020));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #E02F2F, #d62020);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #E02F2F, #d62020);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #E02F2F, #d62020);
  /* IE10 */
  background-image: -o-linear-gradient(top, #E02F2F, #d62020);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #E02F2F, #d62020);
}

ul.social-buttons li.pinterest {
  background-color: #b51d23;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#cb2027), to(#b51d23));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #cb2027, #b51d23);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #cb2027, #b51d23);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #cb2027, #b51d23);
  /* IE10 */
  background-image: -o-linear-gradient(top, #cb2027, #b51d23);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #cb2027, #b51d23);
}

ul.social-buttons li.linkedin {
  background-color: #006a9c;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#007BB5), to(#006a9c));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #007BB5, #006a9c);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #007BB5, #006a9c);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #007BB5, #006a9c);
  /* IE10 */
  background-image: -o-linear-gradient(top, #007BB5, #006a9c);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #007BB5, #006a9c);
}

ul.social-buttons li.blog {
  background-color: #ff7410;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FF8329), to(#ff7410));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #FF8329, #ff7410);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #FF8329, #ff7410);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #FF8329, #ff7410);
  /* IE10 */
  background-image: -o-linear-gradient(top, #FF8329, #ff7410);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #FF8329, #ff7410);
}

ul.social-buttons li.youtube {
  background-color: #a20000;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#bb0000), to(#a20000));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #bb0000, #a20000);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #bb0000, #a20000);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #bb0000, #a20000);
  /* IE10 */
  background-image: -o-linear-gradient(top, #bb0000, #a20000);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #bb0000, #a20000);
}

ul.social-buttons li.dribbble {
  background-color: #e7357a;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ea4c89), to(#e7357a));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #ea4c89, #e7357a);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #ea4c89, #e7357a);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #ea4c89, #e7357a);
  /* IE10 */
  background-image: -o-linear-gradient(top, #ea4c89, #e7357a);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #ea4c89, #e7357a);
}

ul.social-buttons li a {
  color: #ffffff;
  display: block;
  padding: 10px;
}

ul.social-buttons li i {
  display: block;
  font-size: 36px;
}

@media (max-width: 767px) {
  ul.social-buttons li {
    width: 30%;
  }
}

/*************** 17. Footer CSS  ***************/
.footer {
  border-top: 1px solid #d1dfec;
  height: 60px;
  line-height: 60px;
  text-align: left;
  font-size: 12px;
  width: 100%;
  padding: 0 20px;
  background: var(--topbar-background);
  /* position: relative; */
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}

.footer span {
  color: #e84f4c;
}

#scrollUp {
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  padding: 0;
  font-size: 21px;
  line-height: 48px;
  text-align: center;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
  color: #ffffff;
  background-color: #6dc6cd;
  -webkit-transition: bottom 150ms linear;
  -moz-transition: bottom 150ms linear;
  -ms-transition: bottom 150ms linear;
  -o-transition: bottom 150ms linear;
  transition: bottom 150ms linear;
}

#scrollUp:hover {
  background-color: #36969e;
}

@media (max-width: 767px) {
  #scrollUp {
    bottom: 20px;
  }
}

/*************** 18. Plugin Overwrite CSS  ***************/
.jqstooltip {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  background: #000000;
  border: 1px solid #000000;
}

.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;
  background: #000000;
  color: #ffffff;
  font-size: 12px;
  padding: 6px 12px;
}

.legendLabel {
  padding-left: 5px;
  padding-right: 10px;
  font-size: 12px;
}

.legendColorBox div {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.tickLabel {
  color: #4d4d4d;
  font-weight: 400;
  font-size: 11px;
  text-align: left;
}

#flotTip {
  padding: 0.9em;
  border-radius: 0.2em;
  font-size: 1em;
  font-weight: 600;
  z-index: 110;
}

.legend div {
  background: transparent;
}

/*************** 19. Loading CSS  ***************/
.loader-wrapper {
  margin-bottom: 16px;
  position: relative;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 15px;
  height: 160px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: #f5f8fb;
}

#loading-wrapper #loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #e84f4c;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

#loading-wrapper #loader:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #3a86c8;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

#loading-wrapper #loader:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: #ffb400;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.loaded #loading-wrapper {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/*************** 20. Icon Sizes  ***************/
.icon-2x {
  font-size: 2em;
}

.icon-3x {
  font-size: 3em;
}

.icon-4x {
  font-size: 4em;
}

.icon-5x {
  font-size: 5em;
}

.icons {
  text-align: center;
}

.icons span {
  font-size: 24px;
  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;
  color: #595959;
  background: #f5f8fb;
  margin-bottom: 3px;
}

.icons span:hover {
  background-color: #3a86c8;
  color: #ffffff;
  text-shadow: 0 10px 10px #000000;
}

/*************** 21. Invoice Page  ***************/
.invoice a .logo {
  width: 110px;
  margin: 0 auto;
  text-align: center;
}

.invoice .invoice-num {
  margin-bottom: 30px;
}

.invoice p {
  margin: 0 0 7px 0;
}

.invoice address h4 {
  margin: 0 0 10px 0;
}

.invoice .table .btn {
  min-width: 36px;
}

.invoice .btn-group {
  margin-bottom: 7px;
  float: right;
}

.invoice address.from {
  border-left: 3px solid #71c586;
  padding: 0 10px 0 20px;
}

.invoice address.to {
  border-left: 3px solid #3a86c8;
  padding: 0 10px 0 20px;
}

.invoice-stats h3 {
  margin: 0;
  padding: 0;
  font-weight: 600;
}

.invoice-stats h5 {
  margin: 0;
}

/***************** 22. Bootstrap Overwrite CSS ****************/
.panel {
  margin-bottom: 16px;
  background-color: var(--panelbody-background) !important;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #c9d9ea;
}

.panel.no-margin {
  margin: 0;
}

.panel.plain {
  border: 0;
  margin-bottom: 25px;
}

.panel.plain .panel-heading {
  padding: 0;
  margin-bottom: 15px;
  background-color: #2d2d2d;
}

.panel.plain .panel-heading h5 {
  color: #333333;
  text-align: left;
  font-weight: 600;
}

.panel.plain .panel-body {
  padding: 0;
}

.panel-heading {
  padding-bottom: 0;
  position: relative;
  border: 0;
  padding: 15px;
  background-color: transparent;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}

.panel-heading h4 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  display: inline-block;
}

.panel-heading h4 span {
  font-size: 12px;
  margin-left: 5px;
  font-weight: 600;
  color: white;
}

.panel-heading h4 i {
  margin-right: 8px;
}

.panel-heading h5 {
  margin: 0;
  font-size: 21px;
  color: #ffffff;
  text-align: center;
}

.panel-heading h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.panel-light {
  background: #ffffff;
}

.panel-light .panel-footer {
  background: #f7f7f7;
}

.panel-light .panel-heading {
  /* border-bottom: 1px solid #d1dfec; */
}

.panel-light .panel-heading h4 {
  color: var(--main-text-color);
}
.panel-light .panel-heading h5 {
  color: var(--main-text-color);
}

.panel-blue {
  background: #3a86c8;
  border: 1px solid #3a86c8;
}

.panel-blue .panel-heading {
  background: #357ebe;
}

.panel-blue .panel-footer {
  background: #357ebe;
}

.panel-green {
  /* background: #71c586; */
  border: 1px solid #a9a9a9;
  width: 127px;
  margin-right: 3px;
  display: inline-grid;
}

.panel-green .panel-body {
  padding-top: 1px;
}

.panel-green h4 {
  min-width: 60px;
  padding: 18px;
}

.panel-green .panel-heading {
  text-align: center;
  padding-top: 14px;
  background: var(--panel-background) !important;
}

.panel-green .panel-footer {
  background: #5fbe77;
}

.panel-green-one {
  background: #6dc6cd;
  border: 1px solid #6dc6cd;
}

.panel-green-one .panel-heading {
  background: #5abfc6;
}

.panel-green-one .panel-footer {
  background: #5abfc6;
}

.panel-green-two {
  background: #52bf8a;
  border: 1px solid #52bf8a;
}

.panel-green-two .panel-heading {
  background: #43b57d;
}

.panel-green-two .panel-footer {
  background: #43b57d;
}

.panel-red {
  background: #e84f4c;
  border: 1px solid #e84f4c;
}

.panel-red .panel-heading {
  background: #e53935;
}

.panel-red .panel-footer {
  background: #e53935;
}

.panel-yellow {
  background: #ffb400;
  border: 1px solid #ffb400;
}

.panel-yellow .panel-heading {
  background: #e6a200;
}

.panel-yellow .panel-footer {
  background: #e6a200;
}

.panel-grey {
  background: #666666;
  border: 1px solid #666666;
}

.panel-grey .panel-heading {
  background: #595959;
}

.panel-grey .panel-footer {
  background: #595959;
}

.panel-darkgrey {
  background: #404040;
  border: 1px solid #404040;
}

.panel-darkgrey .panel-heading {
  background: #333333;
}

.panel-darkgrey .panel-footer {
  background: #333333;
}

.panel-pink {
  background: #F782AA;
  border: 1px solid #F782AA;
}

.panel-pink .panel-heading {
  background: #f674a0;
}

.panel-pink .panel-footer {
  background: #f674a0;
}

.panel-brown {
  background: #ab7967;
  border: 1px solid #ab7967;
}

.panel-brown .panel-heading {
  background: #a6705d;
}

.panel-brown .panel-footer {
  background: #a6705d;
}

.panel-violet {
  background: #c38fbb;
  border: 1px solid #c38fbb;
}

.panel-violet .panel-heading {
  background: #be85b5;
}

.panel-violet .panel-footer {
  background: #be85b5;
}

.panel-mustard {
  background: #e3b442;
  border: 1px solid #e3b442;
}

.panel-mustard .panel-heading {
  background: #e0ab2c;
}

.panel-mustard .panel-footer {
  background: #e0ab2c;
}

.panel-orange {
  background: #f2682a;
  border: 1px solid #f2682a;
}

.panel-orange .panel-heading {
  background: #f15712;
}

.panel-orange .panel-footer {
  background: #f15712;
}

.panel-teal {
  background: #47BCC7;
  border: 1px solid #47BCC7;
}

.panel-teal .panel-heading {
  background: #39b0bb;
}

.panel-teal .panel-footer {
  background: #39b0bb;
}

.panel-dark-blue {
  background: #2a303e;
  border: 1px solid #2a303e;
}

.panel-dark-blue .panel-heading {
  background: #20242f;
}

.panel-dark-blue .panel-footer {
  background: #20242f;
}

.panel-purple {
  background: #500776;
  border: 1px solid #500776;
}

.panel-purple .panel-heading {
  background: #430663;
}

.panel-purple .panel-footer {
  background: #430663;
}

.panel-facebook {
  background: #3B5998;
  border: 1px solid #3B5998;
}

.panel-facebook .panel-heading {
  background: #355089;
}

.panel-facebook .panel-footer {
  background: #355089;
}

.panel-twitter {
  background: #55ACEE;
  border: 1px solid #55ACEE;
}

.panel-twitter .panel-heading {
  background: #42a3ec;
}

.panel-twitter .panel-footer {
  background: #42a3ec;
}

.panel-linkedin {
  background: #007BB5;
  border: 1px solid #007BB5;
}

.panel-linkedin .panel-heading {
  background: #006da1;
}

.panel-linkedin .panel-footer {
  background: #006da1;
}

.panel-gplus {
  background: #E02F2F;
  border: 1px solid #E02F2F;
}

.panel-gplus .panel-heading {
  background: #da2121;
}

.panel-gplus .panel-footer {
  background: #da2121;
}

.panel-instagram {
  background: #5280a4;
  border: 1px solid #5280a4;
}

.panel-instagram .panel-heading {
  background: #4b7596;
}

.panel-instagram .panel-footer {
  background: #4b7596;
}

.panel-peach {
  background: #f5907c;
  border: 1px solid #f5907c;
}

.panel-peach .panel-heading {
  background: #f48069;
}

.panel-peach .panel-footer {
  background: #f48069;
}

.panel-body {
  padding: 15px;
  position: relative;
  background: var(--panelbody-background);
  -webkit-border-radius: 0 0 2px 2px;
  -moz-border-radius: 0 0 2px 2px;
  border-radius: 0 0 2px 2px;
}

.panel-footer {
  border: 0;
  margin-top: -1px;
  background: #ededed;
  -webkit-border-radius: 0 0 2px 2px;
  -moz-border-radius: 0 0 2px 2px;
  border-radius: 0 0 2px 2px;
}

.progress {
  background-color: #eef3f8;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.progress-bar-danger {
  background-color: #e84f4c;
  box-shadow: none;
}

.progress-bar-success {
  background-color: #71c586;
  box-shadow: none;
}

.progress-bar-warning {
  background-color: #ffb400;
  box-shadow: none;
}

.progress-bar-info {
  background-color: #3a86c8;
  box-shadow: none;
}

.progress-sm {
  height: 6px;
}

.progress-md {
  height: 9px;
}

.progress-xs {
  height: 3px;
}

.progress-rounded {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.btn {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  position: relative;
  -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;
  box-shadow: none;
  border: 0;
  color: var(--main-text-color)
}

.btn:hover {
  box-shadow: none;
  border: 0;
}

.btn:focus,
.btn.active,
.btn:active,
.btn:focus,
.btn.active.focus,
.btn:active.focus,
.btn:active:focus {
  box-shadow: none;
  border: 0;
}

.btn .caret {
  margin-left: 7px;
}

.btn i {
  font-size: 21px;
  vertical-align: middle;
}

.btn i.icon-left {
  margin-right: 5px;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
  box-shadow: none;
  overflow: hidden;
}

.btn-light-grey {
  background-color: #eaf0f7;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f5fa), to(#eaf0f7));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #f1f5fa, #eaf0f7);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #f1f5fa, #eaf0f7);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #f1f5fa, #eaf0f7);
  /* IE10 */
  background-image: -o-linear-gradient(top, #f1f5fa, #eaf0f7);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #f1f5fa, #eaf0f7);
  border: 1px solid #dbe6f1;
  color: #000000;
}

.btn-light-grey:hover {
  color: #000000;
  border: 1px solid #dbe6f1;
  background-color: #e3ebf4;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f5fa), to(#e3ebf4));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #f1f5fa, #e3ebf4);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #f1f5fa, #e3ebf4);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #f1f5fa, #e3ebf4);
  /* IE10 */
  background-image: -o-linear-gradient(top, #f1f5fa, #e3ebf4);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #f1f5fa, #e3ebf4);
}

.btn-light-grey:focus,
.btn-light-grey.active,
.btn-light-grey:active,
.btn-light-grey:focus,
.btn-light-grey.active.focus,
.btn-light-grey:active.focus,
.btn-light-grey:active:focus {
  background-color: #eaf0f7;
  border: 1px solid #dbe6f1;
  color: #000000;
}

.btn-inverse {
  background-color: #4d4d4d;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#666666), to(#4d4d4d));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #666666, #4d4d4d);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #666666, #4d4d4d);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #666666, #4d4d4d);
  /* IE10 */
  background-image: -o-linear-gradient(top, #666666, #4d4d4d);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #666666, #4d4d4d);
  color: #ffffff;
}

.btn-inverse:hover {
  color: #ffffff;
  background-color: #333333;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#4d4d4d), to(#333333));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #4d4d4d, #333333);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #4d4d4d, #333333);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #4d4d4d, #333333);
  /* IE10 */
  background-image: -o-linear-gradient(top, #4d4d4d, #333333);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #4d4d4d, #333333);
}

.btn-inverse:focus,
.btn-inverse.active,
.btn-inverse:active,
.btn-inverse:focus,
.btn-inverse.active.focus,
.btn-inverse:active.focus,
.btn-inverse:active:focus {
  background: #595959;
  color: #ffffff;
}

.btn-default {
  background-color: #d8e4ef;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f5fa), to(#d8e4ef));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #f1f5fa, #d8e4ef);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #f1f5fa, #d8e4ef);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #f1f5fa, #d8e4ef);
  /* IE10 */
  background-image: -o-linear-gradient(top, #f1f5fa, #d8e4ef);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #f1f5fa, #d8e4ef);
  color: #000000;
}

.btn-default:hover {
  color: #000000;
  background-color: #d1dfec;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#eaf0f7), to(#d1dfec));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #eaf0f7, #d1dfec);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #eaf0f7, #d1dfec);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #eaf0f7, #d1dfec);
  /* IE10 */
  background-image: -o-linear-gradient(top, #eaf0f7, #d1dfec);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #eaf0f7, #d1dfec);
}

.btn-default:focus,
.btn-default.active,
.btn-default:active,
.btn-default:focus,
.btn-default.active.focus,
.btn-default:active.focus,
.btn-default:active:focus {
  background-color: #c9d9ea;
  color: #000000;
}

.btn-primary {
  background-color: #333333;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#4d4d4d), to(#333333));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #4d4d4d, #333333);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #4d4d4d, #333333);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #4d4d4d, #333333);
  /* IE10 */
  background-image: -o-linear-gradient(top, #4d4d4d, #333333);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #4d4d4d, #333333);
  color: #ffffff;
}

.btn-primary:hover {
  color: #ffffff;
  background-color: #1a1a1a;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#333333), to(#1a1a1a));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #333333, #1a1a1a);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #333333, #1a1a1a);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #333333, #1a1a1a);
  /* IE10 */
  background-image: -o-linear-gradient(top, #333333, #1a1a1a);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #333333, #1a1a1a);
}

.btn-primary:focus,
.btn-primary.active,
.btn-primary:active,
.btn-primary:focus,
.btn-primary.active.focus,
.btn-primary:active.focus,
.btn-primary:active:focus {
  background-color: #595959;
}

.btn-danger {
  background-color: #e53935;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e84f4c), to(#e53935));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #e84f4c, #e53935);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #e84f4c, #e53935);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #e84f4c, #e53935);
  /* IE10 */
  background-image: -o-linear-gradient(top, #e84f4c, #e53935);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #e84f4c, #e53935);
  color: #ffffff;
}

.btn-danger:hover {
  color: #ffffff;
  background-color: #db201c;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e84f4c), to(#db201c));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #e84f4c, #db201c);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #e84f4c, #db201c);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #e84f4c, #db201c);
  /* IE10 */
  background-image: -o-linear-gradient(top, #e84f4c, #db201c);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #e84f4c, #db201c);
}

.btn-danger:focus,
.btn-danger.active,
.btn-danger:active,
.btn-danger:focus,
.btn-danger.active.focus,
.btn-danger:active.focus,
.btn-danger:active:focus {
  background-color: #e53935;
}

.btn-success {
  background-color: #4db667;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#71c586), to(#4db667));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #71c586, #4db667);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #71c586, #4db667);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #71c586, #4db667);
  /* IE10 */
  background-image: -o-linear-gradient(top, #71c586, #4db667);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #71c586, #4db667);
  color: #ffffff;
}

.btn-success:hover {
  color: #ffffff;
  background-color: #44a65c;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#71c586), to(#44a65c));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #71c586, #44a65c);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #71c586, #44a65c);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #71c586, #44a65c);
  /* IE10 */
  background-image: -o-linear-gradient(top, #71c586, #44a65c);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #71c586, #44a65c);
}

.btn-success:focus,
.btn-success.active,
.btn-success:active,
.btn-success:focus,
.btn-success.active.focus,
.btn-success:active.focus,
.btn-success:active:focus {
  background-color: #4db667;
}

.btn-info {
  background-color: #3379b6;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3a86c8), to(#3379b6));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #3a86c8, #3379b6);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #3a86c8, #3379b6);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #3a86c8, #3379b6);
  /* IE10 */
  background-image: -o-linear-gradient(top, #3a86c8, #3379b6);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #3a86c8, #3379b6);
  color: #ffffff;
}

.btn-info:hover {
  color: #ffffff;
  background-color: #285e8e;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3a86c8), to(#285e8e));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #3a86c8, #285e8e);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #3a86c8, #285e8e);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #3a86c8, #285e8e);
  /* IE10 */
  background-image: -o-linear-gradient(top, #3a86c8, #285e8e);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #3a86c8, #285e8e);
}

.btn-info:focus,
.btn-info.active,
.btn-info:active,
.btn-info:focus,
.btn-info.active.focus,
.btn-info:active.focus,
.btn-info:active:focus {
  background-color: #2d6ca2;
}

.btn-warning {
  background-color: #e6a200;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffb400), to(#e6a200));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #ffb400, #e6a200);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #ffb400, #e6a200);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #ffb400, #e6a200);
  /* IE10 */
  background-image: -o-linear-gradient(top, #ffb400, #e6a200);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #ffb400, #e6a200);
  color: #ffffff;
}

.btn-warning:hover {
  color: #ffffff;
  background-color: #c28900;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffb400), to(#c28900));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #ffb400, #c28900);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #ffb400, #c28900);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #ffb400, #c28900);
  /* IE10 */
  background-image: -o-linear-gradient(top, #ffb400, #c28900);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #ffb400, #c28900);
}

.btn-warning:focus,
.btn-warning.active,
.btn-warning:active,
.btn-warning:focus,
.btn-warning.active.focus,
.btn-warning:active.focus,
.btn-warning:active:focus {
  background-color: #cc9000;
}

.btn-fb {
  background-color: #344e86;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3B5998), to(#344e86));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #3B5998, #344e86);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #3B5998, #344e86);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #3B5998, #344e86);
  /* IE10 */
  background-image: -o-linear-gradient(top, #3B5998, #344e86);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #3B5998, #344e86);
  color: #ffffff;
}

.btn-fb:hover {
  color: #ffffff;
  background-color: #263961;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3B5998), to(#263961));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #3B5998, #263961);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #3B5998, #263961);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #3B5998, #263961);
  /* IE10 */
  background-image: -o-linear-gradient(top, #3B5998, #263961);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #3B5998, #263961);
}

.btn-fb:focus,
.btn-fb.active,
.btn-fb:active,
.btn-fb:focus,
.btn-fb.active.focus,
.btn-fb:active.focus,
.btn-fb:active:focus {
  background-color: #2d4373;
}

.btn-tw {
  background-color: #3ea1ec;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#55ACEE), to(#3ea1ec));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #55ACEE, #3ea1ec);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #55ACEE, #3ea1ec);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #55ACEE, #3ea1ec);
  /* IE10 */
  background-image: -o-linear-gradient(top, #55ACEE, #3ea1ec);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #55ACEE, #3ea1ec);
  color: #ffffff;
}

.btn-tw:hover {
  color: #ffffff;
  background-color: #1689e0;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#55ACEE), to(#1689e0));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #55ACEE, #1689e0);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #55ACEE, #1689e0);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #55ACEE, #1689e0);
  /* IE10 */
  background-image: -o-linear-gradient(top, #55ACEE, #1689e0);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #55ACEE, #1689e0);
}

.btn-tw:focus,
.btn-tw.active,
.btn-tw:active,
.btn-tw:focus,
.btn-tw.active.focus,
.btn-tw:active.focus,
.btn-tw:active:focus {
  background-color: #2795e9;
}

.btn-gp {
  background-color: #d62020;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#E02F2F), to(#d62020));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #E02F2F, #d62020);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #E02F2F, #d62020);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #E02F2F, #d62020);
  /* IE10 */
  background-image: -o-linear-gradient(top, #E02F2F, #d62020);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #E02F2F, #d62020);
  color: #ffffff;
}

.btn-gp:hover {
  color: #ffffff;
  background-color: #a91919;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#E02F2F), to(#a91919));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #E02F2F, #a91919);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #E02F2F, #a91919);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #E02F2F, #a91919);
  /* IE10 */
  background-image: -o-linear-gradient(top, #E02F2F, #a91919);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #E02F2F, #a91919);
}

.btn-gp:focus,
.btn-gp.active,
.btn-gp:active,
.btn-gp:focus,
.btn-gp.active.focus,
.btn-gp:active.focus,
.btn-gp:active:focus {
  background-color: #bf1d1d;
}

.btn-lkdn {
  background-color: #006a9c;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#007BB5), to(#006a9c));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #007BB5, #006a9c);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #007BB5, #006a9c);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #007BB5, #006a9c);
  /* IE10 */
  background-image: -o-linear-gradient(top, #007BB5, #006a9c);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #007BB5, #006a9c);
  color: #ffffff;
}

.btn-lkdn:hover {
  color: #ffffff;
  background-color: #004769;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#007BB5), to(#004769));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #007BB5, #004769);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #007BB5, #004769);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #007BB5, #004769);
  /* IE10 */
  background-image: -o-linear-gradient(top, #007BB5, #004769);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #007BB5, #004769);
}

.btn-lkdn:focus,
.btn-lkdn.active,
.btn-lkdn:active,
.btn-lkdn:focus,
.btn-lkdn.active.focus,
.btn-lkdn:active.focus,
.btn-lkdn:active:focus {
  background-color: #005882;
}

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

.btn-group.open .dropdown-toggle {
  box-shadow: none;
}

.btn-link {
  padding: 6px 0;
  font-size: 12px;
  border: 0;
}

.btn-link i {
  font-size: 16px;
  float: left;
  margin-right: 5px;
}

.btn-transparent {
  background: transparent;
  background-image: none;
  border: 1px solid #c9d9ea;
}

.btn-transparent:hover,
.btn-transparent:focus,
.btn-transparent:active {
  background-image: none;
  border: 1px solid #acc5de;
}

.btn-transparent.btn-danger {
  color: #e84f4c;
}

.btn-transparent.btn-danger:focus,
.btn-transparent.btn-danger:active {
  color: #ffffff;
}

.btn-transparent.btn-warning {
  color: #ffb400;
}

.btn-transparent.btn-warning:focus,
.btn-transparent.btn-warning:active {
  color: #ffffff;
}

.btn-transparent.btn-success {
  color: #71c586;
}

.btn-transparent.btn-success:focus,
.btn-transparent.btn-success:active {
  color: #ffffff;
}

.btn-transparent.btn-info {
  color: #3a86c8;
}

.btn-transparent.btn-info:focus,
.btn-transparent.btn-info:active {
  color: #ffffff;
}

.demo-btn-group .btn {
  min-width: 80px;
}

.blog-btn-group .btn {
  margin-left: 2px;
  float: left;
  margin-bottom: 2px;
}

@media (max-width: 767px) {
  .demo-btn-group {
    text-align: center;
  }

  .demo-btn-group .btn {
    margin-bottom: 3px;
  }
}

.badge {
  color: #ffffff;
  font-weight: 600;
  padding: .3em .8em;
}

.badge-default {
  background: #d1dfec;
  border: 1px solid #d1dfec;
  color: #2a303e;
}

.badge-default[href]:hover,
.badge-default[href]:focus {
  background: #bed2e5;
  border: 1px solid #bed2e5;
  color: #2a303e;
}

.badge-success {
  background-color: #71c586;
  border: 1px solid #71c586;
}

.badge-success[href]:hover,
.badge-success[href]:focus {
  background-color: #4db667;
  border: 1px solid #4db667;
}

.badge-info {
  background-color: #3a86c8;
  border: 1px solid #3a86c8;
}

.badge-info[href]:hover,
.badge-info[href]:focus {
  background-color: #2d6ca2;
  border: 1px solid #2d6ca2;
}

.badge-warning {
  background-color: #ffb400;
  border: 1px solid #ffb400;
}

.badge-warning[href]:hover,
.badge-warning[href]:focus {
  background-color: #cc9000;
  border: 1px solid #cc9000;
}

.badge-danger {
  background-color: #e84f4c;
  border: 1px solid #e84f4c;
}

.badge-danger[href]:hover,
.badge-danger[href]:focus {
  background-color: #e2231f;
  border: 1px solid #e2231f;
}

.badge-grey {
  background-color: #4d4d4d;
  border: 1px solid #4d4d4d;
  color: #ffffff;
}

.badge-grey[href]:hover,
.badge-grey[href]:focus {
  background-color: #333333;
  border: 1px solid #333333;
}

.badge-bdr {
  background-color: transparent;
}

.badge-bdr.badge-default {
  color: #4d4d4d;
}

.badge-bdr.badge-danger {
  color: #e84f4c;
}

.badge-bdr.badge-success {
  color: #71c586;
}

.badge-bdr.badge-warning {
  color: #ffb400;
}

.badge-bdr.badge-info {
  color: #3a86c8;
}

.badge-bdr.badge-grey {
  color: #000000;
}

.labels-inline .label {
  margin: 2px;
  float: left;
}

.label {
  color: #ffffff;
  font-weight: 600;
  padding: .3em .8em;
}

.label-default {
  background: #d1dfec;
  border: 1px solid #d1dfec;
  color: #2a303e;
}

.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #bed2e5;
  border: 1px solid #bed2e5;
  color: #2a303e;
}

.label-primary {
  background-color: #2a303e;
  border: 1px solid #2a303e;
}

.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #151820;
  border: 1px solid #151820;
}

.label-success {
  background-color: #71c586;
  border: 1px solid #71c586;
}

.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #4db667;
  border: 1px solid #4db667;
}

.label-info {
  background-color: #3a86c8;
  border: 1px solid #3a86c8;
}

.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #2d6ca2;
  border: 1px solid #2d6ca2;
}

.label-warning {
  background-color: #ffb400;
  border: 1px solid #ffb400;
}

.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #cc9000;
  border: 1px solid #cc9000;
}

.label-danger {
  background-color: #e84f4c;
  border: 1px solid #e84f4c;
}

.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #e2231f;
  border: 1px solid #e2231f;
}

.label-grey {
  background-color: #4d4d4d;
  border: 1px solid #4d4d4d;
  color: #ffffff;
}

.label-grey[href]:hover,
.label-grey[href]:focus {
  background-color: #333333;
  border: 1px solid #333333;
}

.label-bdr {
  background-color: transparent;
}

.label-bdr.label-default {
  color: #4d4d4d;
}

.label-bdr.label-danger {
  color: #e84f4c;
}

.label-bdr.label-success {
  color: #71c586;
}

.label-bdr.label-warning {
  color: #ffb400;
}

.label-bdr.label-info {
  color: #3a86c8;
}

.label-bdr.label-grey {
  color: #000000;
}

.label-light {
  font-weight: 500;
  padding: 4px 10px;
}

.label-light.label-default {
  background: #e3ebf4;
  border: 1px solid #bed2e5;
  color: #4578ac;
}

.label-light.label-danger {
  background: #fcebea;
  border: 1px solid #f19290;
  color: #e84f4c;
}

.label-light.label-success {
  background: #f0f9f2;
  border: 1px solid #95d4a5;
  color: #71c586;
}

.label-light.label-warning {
  background: #fff8e5;
  border: 1px solid #ffc333;
  color: #cc9000;
}

.label-light.label-info {
  background: #edf4fa;
  border: 1px solid #76abd9;
  color: #3a86c8;
}

.label-light.label-grey {
  background-color: #e6e6e6;
  border: 1px solid #bfbfbf;
  color: #000000;
}

.pager li>a,
.pager li>span {
  background-color: #3a86c8;
  border-color: #3a86c8;
  color: #ffffff;
}

.pager li>a:hover,
.pager li>span:hover {
  color: #ffffff;
  background-color: #3379b6;
  border: 1px solid #3379b6;
}

.pager li>a:focus,
.pager li>span:focus {
  color: #ffffff;
  background-color: #2d6ca2;
  border: 1px solid #2d6ca2;
}

.list-group-item {
  border: 1px solid #ededed;
  background-color: #ffffff;
}

.list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.list-group-item:last-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.list-group-item i {
  font-size: 16px;
  vertical-align: middle;
}

a.list-group-item-info {
  background-color: #3a86c8;
  color: #ffffff;
  border: 1px solid #3a86c8;
}

a.list-group-item-info:hover,
a.list-group-item-info:focus {
  background-color: #4e92ce;
  border: 1px solid #4e92ce;
  color: #ffffff;
}

a.list-group-item-warning {
  background-color: #ffb400;
  color: #ffffff;
  border: 1px solid #ffb400;
}

a.list-group-item-warning:hover,
a.list-group-item-warning:focus {
  background-color: #ffbc1a;
  border: 1px solid #ffbc1a;
  color: #ffffff;
}

a.list-group-item-success {
  background-color: #71c586;
  color: #ffffff;
  border: 1px solid #71c586;
}

a.list-group-item-success:hover,
a.list-group-item-success:focus {
  background-color: #83cc95;
  border: 1px solid #83cc95;
  color: #ffffff;
}

a.list-group-item-danger {
  background-color: #e84f4c;
  color: #ffffff;
  border: 1px solid #e84f4c;
}

a.list-group-item-danger:hover,
a.list-group-item-danger:focus {
  background-color: #eb6563;
  border: 1px solid #eb6563;
  color: #ffffff;
}

a.list-group-item-inverse {
  background-color: #4d4d4d;
  color: #ffffff;
  border: 1px solid #4d4d4d;
}

a.list-group-item-inverse:hover,
a.list-group-item-inverse:focus {
  background-color: #404040;
  border: 1px solid #404040;
  color: #ffffff;
}

.modal-content {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
  background: #e3ebf4;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin: 0 0 10px 0;
}

.breadcrumbs {
  font-size: 14px;
  padding: 15px;
  background: #e3ebf4;
  margin: 0 0 10px 0;
}

.breadcrumbs i {
  vertical-align: middle;
}

.breadcrumbs>li {
  display: inline-block;
  margin: 0 10px 0 0;
  position: relative;
  vertical-align: middle;
  color: #666666;
  padding: 0 10px;
}

.breadcrumbs>li:before,
.breadcrumbs>li:after {
  display: block;
  position: absolute;
  vertical-align: middle;
  color: transparent;
  font-size: 0;
  content: "";
  height: 1px;
  width: 7px;
  background-color: #1d1d1d;
  top: 50%;
  left: 100%;
  margin-left: 5px;
}

.breadcrumbs>li:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -2px;
}

.breadcrumbs>li:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: 2px;
}

.breadcrumbs>li>a {
  color: inherit;
  display: inline-block;
  line-height: 1;
}

.breadcrumbs>li:last-child {
  color: #000000;
  font-weight: bolder;
}

.breadcrumbs>li:last-child a {
  cursor: default;
}

.breadcrumbs>li:last-child:before,
.breadcrumbs>li:last-child:after {
  background-color: transparent;
}

.breadcrumbs>li:hover {
  color: #1d1d1d;
}

.breadcrumbs img,
.breadcrumbs .icon {
  display: inline-block;
  line-height: .8;
  height: 1rem;
  width: 1rem;
  font-size: 1rem;
  vertical-align: -15%;
}

.breadcrumbs.dark {
  background-color: #333333;
}

.breadcrumbs.dark>li:hover,
.breadcrumbs.dark>li:last-child {
  color: #ffffff;
}

.breadcrumbs.dark>li:before,
.breadcrumbs.dark>li:after {
  background-color: #ffffff;
}

.breadcrumbs.primary {
  background-color: #3a86c8;
}

.breadcrumbs.primary>li {
  color: #9ec3e4;
}

.breadcrumbs.primary>li:hover,
.breadcrumbs.primary>li:last-child {
  color: #ffffff;
}

.breadcrumbs.primary>li:before,
.breadcrumbs.primary>li:after {
  background-color: #ffffff;
}

.breadcrumbs2 {
  margin: 0 0 10px 0;
  overflow: hidden;
  width: 100%;
}

.breadcrumbs2 i {
  vertical-align: middle;
}

.breadcrumbs2 li {
  float: left;
  margin: 0 .2em 0 1em;
}

.breadcrumbs2 a {
  background: #dbe6f1;
  padding: 10px 10px;
  float: left;
  text-decoration: none;
  color: #2a303e;
  position: relative;
}

.breadcrumbs2 a:hover {
  background: #3a86c8;
  color: #ffffff;
}

.breadcrumbs2 a:hover:before {
  border-color: #3a86c8 #3a86c8 #3a86c8 transparent;
}

.breadcrumbs2 a:hover:after {
  border-left-color: #3a86c8;
}

.breadcrumbs2 a:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -20px;
  border-width: 20px 0 20px 12px;
  border-style: solid;
  border-color: #dbe6f1 #dbe6f1 #dbe6f1 transparent;
  left: -13px;
  margin-left: 1px;
}

.breadcrumbs2 a:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -20px;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 12px solid #dbe6f1;
  right: -13px;
  margin-right: 1px;
}

.breadcrumbs2>li:first-child {
  margin-left: 0;
}

.breadcrumbs2>li:first-child a:before {
  content: normal;
}

.breadcrumbs2>li:last-child {
  background: #d1dfec;
}

.breadcrumbs2>li:last-child a {
  color: #3a86c8;
}

.breadcrumbs2>li:last-child:after,
.breadcrumbs2>li:last-child:before {
  content: normal;
}

.breadcrumbs2>li:last-child:hover a {
  color: #ffffff;
}

.breadcrumbs2 .active {
  background: none;
}

.breadcrumbs2 .active:hover {
  background: none;
}

.breadcrumbs2 .active a {
  color: #1d1d1d;
}

.breadcrumbs2 .active:hover a {
  color: #1d1d1d;
  color: #ffffff;
}

.breadcrumbs2 .active:after,
.breadcrumbs2 .active:before {
  content: normal;
}

.breadcrumbs2.small a {
  padding: .2em 1em;
  font-size: 11.9px;
}

.breadcrumbs2>li>a>[class*=mif] {
  vertical-align: -10%;
}

.alert-dismissable .close {
  right: 0;
}

.alert {
  padding: 15px 15px 15px 45px;
  margin-bottom: 10px;
  font-size: 15px;
  position: relative;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.alert i {
  margin-right: 10px;
  font-size: 21px;
  vertical-align: middle;
  position: absolute;
  left: 15px;
  top: 14px;
}

.alert.no-margin {
  margin: 0;
}

.alert.alert-transparent {
  background-color: transparent;
}

.alert.alert-transparent.alert-success {
  color: #71c586;
}

.alert.alert-transparent.alert-info {
  color: #3a86c8;
}

.alert.alert-transparent.alert-danger {
  color: #e84f4c;
}

.alert.alert-transparent.alert-warning {
  color: #ffb400;
}

.alert-success {
  color: #ffffff;
  background-color: #71c586;
  border-color: #71c586;
}

.alert-success.light {
  color: #44a65c;
  background-color: #def1e3;
}

.alert-info {
  color: #ffffff;
  background-color: #3a86c8;
  border-color: #3a86c8;
}

.alert-info.light {
  color: #285e8e;
  background-color: #b2cfe9;
}

.alert-warning {
  color: #ffffff;
  background-color: #ffb400;
  border-color: #ffb400;
}

.alert-warning.light {
  color: #b37e00;
  background-color: #ffe9b3;
}

.alert-danger {
  color: #ffffff;
  background-color: #e84f4c;
  border-color: #e84f4c;
}

.alert-danger.light {
  color: #cd1e1a;
  background-color: #fcebea;
}

.alert-borderd {
  background: transparent;
  color: #4d4d4d;
}

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

.popover {
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
  color: #ffffff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.popover.left>.arrow:after {
  border-left-color: #1a1a1a;
}

.popover.right>.arrow:after {
  border-right-color: #1a1a1a;
}

.popover.top>.arrow:after {
  border-top-color: #1a1a1a;
}

.popover.bottom>.arrow:after {
  border-bottom-color: #1a1a1a;
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
  padding: 8px 12px;
}

.table-condensed>tbody>tr>td,
.table-condensed>tbody>tr>th,
.table-condensed>tfoot>tr>td,
.table-condensed>tfoot>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>thead>tr>th {
  padding: 6px 12px;
}

.table>thead>tr>th,
.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.table>thead>tr>th,
.table>thead>tr>td {
  font-size: 15px;
  font-weight: 500;
}

.table>thead>tr>th {
  border-bottom: 1px solid #3a86c8;
}

.table-striped>tbody>tr:nth-child(odd)>td,
.table-striped>tbody>tr:nth-child(odd)>th {
  background: var(--table-background);
}

/* .table-bordered>thead>tr>th,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>tbody>tr>td,
.table-bordered>tfoot>tr>td {
  border: 1px solid #e3ebf4;
} */

/* .table-bordered {
  border: 1px solid #e3ebf4;
} */

.table-hover>tbody>tr:hover>td,
.table-hover>tbody>tr:hover>th {
  background: #eef3f8;
}

.table>thead>tr>td.success,
.table>tbody>tr>td.success,
.table>tfoot>tr>td.success,
.table>thead>tr>th.success,
.table>tbody>tr>th.success,
.table>tfoot>tr>th.success,
.table>thead>tr.success>td,
.table>tbody>tr.success>td,
.table>tfoot>tr.success>td,
.table>thead>tr.success>th,
.table>tbody>tr.success>th,
.table>tfoot>tr.success>th {
  background: black;
  color: #ffffff;
  border-top: 0;
}

.table-hover>tbody>tr>td.success:hover,
.table-hover>tbody>tr>th.success:hover,
.table-hover>tbody>tr.success:hover>td,
.table-hover>tbody>tr:hover>.success,
.table-hover>tbody>tr.success:hover>th {
  background: #71c586;
}

.table>thead>tr>td.danger,
.table>tbody>tr>td.danger,
.table>tfoot>tr>td.danger,
.table>thead>tr>th.danger,
.table>tbody>tr>th.danger,
.table>tfoot>tr>th.danger,
.table>thead>tr.danger>td,
.table>tbody>tr.danger>td,
.table>tfoot>tr.danger>td,
.table>thead>tr.danger>th,
.table>tbody>tr.danger>th,
.table>tfoot>tr.danger>th {
  background: #e84f4c;
  color: #ffffff;
  /* border-top: 0; */
}

.table-hover>tbody>tr>td.danger:hover,
.table-hover>tbody>tr>th.danger:hover,
.table-hover>tbody>tr.danger:hover>td,
.table-hover>tbody>tr:hover>.danger,
.table-hover>tbody>tr.danger:hover>th {
  background: #e63d3a;
}

.table>thead>tr>td.warning,
.table>tbody>tr>td.warning,
.table>tfoot>tr>td.warning,
.table>thead>tr>th.warning,
.table>tbody>tr>th.warning,
.table>tfoot>tr>th.warning,
.table>thead>tr.warning>td,
.table>tbody>tr.warning>td,
.table>tfoot>tr.warning>td,
.table>thead>tr.warning>th,
.table>tbody>tr.warning>th,
.table>tfoot>tr.warning>th {
  background: #ffb400;
  color: #ffffff;
  /* border-top: 0; */
}

.table-hover>tbody>tr>td.warning:hover,
.table-hover>tbody>tr>th.warning:hover,
.table-hover>tbody>tr.warning:hover>td,
.table-hover>tbody>tr:hover>.warning,
.table-hover>tbody>tr.warning:hover>th {
  background: #e09e00;
}

.table>thead>tr>td.info,
.table>tbody>tr>td.info,
.table>tfoot>tr>td.info,
.table>thead>tr>th.info,
.table>tbody>tr>th.info,
.table>tfoot>tr>th.info,
.table>thead>tr.info>td,
.table>tbody>tr.info>td,
.table>tfoot>tr.info>td,
.table>thead>tr.info>th,
.table>tbody>tr.info>th,
.table>tfoot>tr.info>th {
  background: #3a86c8;
  color: #ffffff;
  border-top: 0;
}

.table-hover>tbody>tr>td.info:hover,
.table-hover>tbody>tr>th.info:hover,
.table-hover>tbody>tr.info:hover>td,
.table-hover>tbody>tr:hover>.info,
.table-hover>tbody>tr.info:hover>th {
  background: #3174ae;
}

@media screen and (max-width: 767px) {
  .table-responsive {
    border: 1px solid #e6e6e6;
  }
}

.table-middle>tbody>tr>td,
.table-middle>tbody>tr>th,
.table-middle>tfoot>tr>td,
.table-middle>tfoot>tr>th,
.table-middle>thead>tr>td,
.table-middle>thead>tr>th {
  vertical-align: middle;
}

.table-no-border>tbody>tr>td,
.table-no-border>tbody>tr>th,
.table-no-border>tfoot>tr>td,
.table-no-border>tfoot>tr>th,
.table-no-border>thead>tr>td,
.table-no-border>thead>tr>th {
  border: none;
  padding: 10px 0px;
}

.table>tbody>tr>td.td-v-align {
  vertical-align: middle;
}

.pagination>li>a,
.pagination>li>span {
  background: var(--pagination-background);
  color: var(--pagination-color);
  border: 1px solid #d1dfec;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
  margin-left: 0;
  border-top-left-radius: 0;
  background: var(--pagination-background);
  border-bottom-left-radius: 0;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
  border-top-right-radius: 0;
  background: var(--pagination-background);
  border-bottom-right-radius: 0;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
  color: var(--paginationborder-color);
  background-color: var(--pagination-background);
  border-color: #d1dfec;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
  color: #ffffff;
  background-color: var(--paginationactive-background);
  border-color: var(--paginationborder-color);
}

.pagination>.disabled>span,
.pagination>.disabled>span:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
  background-color: var(--pagination-background);
  border-color: white;
  color: var(--pagination-color);
}

.pagination-lg>li:first-child>a,
.pagination-lg>li:first-child>span {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pagination-lg>li:last-child>a,
.pagination-lg>li:last-child>span {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pagination-sm>li:first-child>a,
.pagination-sm>li:first-child>span {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pagination-sm>li:last-child>a,
.pagination-sm>li:last-child>span {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.form-control {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  box-shadow: none;
  -webkit-box-shadow: none;
  border: 1px solid #d4dae2;
  background: var(--formcontrol-background);
  padding: 6px 10px;
  -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;
}

.form-control:focus {
  border: 1px solid #97a5b9;
  box-shadow: none;
  outline: none;
  -webkit-box-shadow: none;
  color: var(--formcontrol-color);
}

.input-group-addon {
  border: 1px solid #bed2e5;
  background: #f5f8fb;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background: var(--inputdisabled-background);
  color: var(--main-text-color);
}

.has-feedback label~.form-control-feedback {
  top: 23px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #71c586;
}

.has-success .form-control {
  border-color: #71c586;
  box-shadow: none;
  -webkit-box-shadow: none;
  color: #71c586;
}

.has-success .form-control:focus {
  border-color: #4db667;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.has-success .form-control-feedback {
  color: #71c586;
}

.has-success .input-group-addon {
  border-color: #71c586;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #e84f4c;
}

.has-error .form-control {
  border-color: #e84f4c;
  box-shadow: none;
  -webkit-box-shadow: none;
  color: #e84f4c;
}

.has-error .form-control:focus {
  border-color: #e2231f;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.has-error .form-control-feedback {
  color: #e84f4c;
}

.has-error .input-group-addon {
  border-color: #e84f4c;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
  color: #ffb400;
}

.has-warning .form-control {
  border-color: #ffb400;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.has-warning .form-control:focus {
  border-color: #cc9000;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.has-warning .form-control-feedback {
  color: #ffb400;
}

.has-warning .input-group-addon {
  border-color: #ffb400;
}

.has-info .help-block,
.has-info .control-label,
.has-info .radio,
.has-info .checkbox,
.has-info .radio-inline,
.has-info .checkbox-inline {
  color: #3a86c8;
}

.has-info .form-control {
  border-color: #3a86c8;
  box-shadow: none;
  -webkit-box-shadow: none;
  color: #3a86c8;
}

.has-info .form-control:focus {
  border-color: #2d6ca2;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.has-info .form-control-feedback {
  color: #3a86c8;
}

.has-info .input-group-addon {
  border-color: #3a86c8;
}

legend {
  padding: 0 0 6px 0;
  font-size: 16px;
  line-height: inherit;
  border: 0;
  border-bottom: 1px solid #e0e0e0;
}

label {
  font-size: 14px;
  font-weight: 500;
}

.help-block {
  font-size: 11px;
}

input[type=checkbox],
input[type=radio] {
  margin-top: 2px;
}

.nav-tabs {
  border-bottom: 1px solid #d1dfec;
}

.nav-tabs li a {
  margin-right: 1px;
  color: var(--navtabs-color);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 1px solid #e3ebf4;
  background: var(--navtabs-background);
}

.nav-tabs li a:hover {
  background: var(--navprofilehover-background);
  border: 1px solid #d8e4ef;
}

.dropdown-list {
  background: var(--dropdownmenu-background) !important;
  color: var(--main-text-color) !important;
}

.dropdown-list .filter-textbox input {
  border: 0;
  width: 100%;
  padding: 0 0 0 26px;
  background: var(--formcontrol-background);
}


.dropdown-list li {
  padding: 6px 10px;
  cursor: pointer;
  text-align: left;
  background: var(--dropdownmenu-background);
}

.multiselect-item-checkbox input[type="checkbox"]+div {
  color: var(--main-text-color) !important;
}

svg:not(:root) {
  overflow: hidden;
  fill: var(--main-text-color);
}

.owl-dt-calendar-control,
.owl-dt-calendar-header,
.owl-dt-calendar-table .owl-dt-calendar-cell,
.owl-dt-timer-content .owl-dt-timer-input,
.owl-dt-control,
.owl-dt-inline-container,
.owl-dt-popup-container,
.owl-dt-timer-hour12 .owl-dt-timer-hour12-box .owl-dt-control-button-content {
  background: var(--navprofile-background) !important;
  color: var(--main-text-color) !important;
}

/* .owl-dt-container,
.owl-dt-container * {
  box-sizing: border-box;
  background: var(--calendar-background) !important;
  color: var(--main-text-color);
} */


.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
  background: transparent;
  color: var(--navtabs-color);
  background-color: var(--navprofilehover-background) !important;
  border: 1px solid #d1dfec;
  border-bottom: 1px solid #ffffff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.tab-content {
  padding: 40px;
  border: 1px solid #d1dfec;
  border-top: 0;
}

.mark,
mark {
  background-color: #ffb400;
  color: #000000;
}

.gutter.row {
  /* background: var(--panel-background); */
  margin-right: -8px;
  margin-left: -8px;
}
@media (max-width: 500px) {
  .gutter>[class^="col-"],
.gutter-10>[class^=" col-"] {
  margin-bottom: 8px;
}
}

.gutter>[class^="col-"],
.gutter-10>[class^=" col-"] {
  padding-right: 8px;
  padding-left: 8px;
}

.panel-sortable {
  cursor: move;
}

.panel-sortable .panel {
  -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;
}

.panel-sortable .panel:after {
  content: "\e5c8";
  font-family: 'icomoon';
  position: absolute;
  right: 15px;
  bottom: 25px;
  font-size: 20px;
  -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;
}

.panel-sortable .panel:hover {
  border: 1px dashed #3a86c8;
  background: #212730;
  background-color: #ffffff;
}

.panel-sortable .panel:hover:after {
  color: #3a86c8;
  font-size: 36px;
}

.panel-sortable .panel .panel-body {
  min-height: 90px;
}

/*# sourceMappingURL=main.css.map */
.panel {
  margin-bottom: 16px;
  /* background-color: #1f1f1f; */
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #c9d9ea;
  /* border: 1px solid #1f1f1f; */
}

.panel.no-margin {
  margin: 0;
}

.panel.plain {
  border: 0;
  margin-bottom: 25px;
}

.panel.plain .panel-heading {
  padding: 0;
  margin-bottom: 15px;
}

.panel.plain .panel-heading h5 {
  color: #333333;
  text-align: left;
  font-weight: 600;
}

.panel.plain .panel-body {
  padding: 0;
}

.panel-heading {
  padding-bottom: 0 !important;
  position: relative;
  border: 0;
  padding: 15px;
  background-color: transparent;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}

.panel-heading h4 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  display: inline-block;
}

.panel-heading h4 span {
  font-size: 12px;
  margin-left: 5px;
  font-weight: 600;
  color: white;
}

.panel-heading h4 i {
  margin-right: 8px;
}

.panel-heading h5 {
  margin: 0;
  font-size: 21px;
  color: #ffffff;
  text-align: center;
}

.panel-heading h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}



.panel-light .panel-heading {
  /* border-bottom: 1px solid #d1dfec;  */
  /* border-bottom: 1px solid #000000; */
}

.panel-light .panel-heading h4 {
  /* color: #000000; */
  /* color: #ffffff; */
}

.panel-blue {
  background: #3a86c8;
  border: 1px solid #3a86c8;
}

.panel-blue .panel-heading {
  background: #357ebe;
}

.panel-blue .panel-footer {
  background: #357ebe;
}

.panel-green {
  /* background: #71c586; */
  border: 1px solid #a9a9a9;
  width: 10.8%;
  margin-right: 3px;
  display: inline-table;
  height: 143px;
}

.panel-green .panel-body {
  padding-top: 1px;
}

.panel-green h4 {
  min-width: 60px;
  padding: 18px;
}

.panel-green .panel-heading {
  text-align: center;
  padding-top: 14px;
  background: #ffffff;
}

.panel-green .panel-footer {
  background: #5fbe77;
}

.panel-green-one {
  background: #6dc6cd;
  border: 1px solid #6dc6cd;
}

.panel-green-one .panel-heading {
  background: #5abfc6;
}

.panel-green-one .panel-footer {
  background: #5abfc6;
}

.panel-green-two {
  background: #52bf8a;
  border: 1px solid #52bf8a;
}

.panel-green-two .panel-heading {
  background: #43b57d;
}

.panel-green-two .panel-footer {
  background: #43b57d;
}

.panel-red {
  background: #e84f4c;
  border: 1px solid #e84f4c;
}

.panel-red .panel-heading {
  background: #e53935;
}

.panel-red .panel-footer {
  background: #e53935;
}

.panel-yellow {
  background: #ffb400;
  border: 1px solid #ffb400;
}

.panel-yellow .panel-heading {
  background: #e6a200;
}

.panel-yellow .panel-footer {
  background: #e6a200;
}

.panel-grey {
  background: #666666;
  border: 1px solid #666666;
}

.panel-grey .panel-heading {
  background: #595959;
}

.panel-grey .panel-footer {
  background: #595959;
}

.panel-darkgrey {
  background: #404040;
  border: 1px solid #404040;
}

.panel-darkgrey .panel-heading {
  background: #333333;
}

.panel-darkgrey .panel-footer {
  background: #333333;
}

.panel-pink {
  background: #F782AA;
  border: 1px solid #F782AA;
}

.panel-pink .panel-heading {
  background: #f674a0;
}

.panel-pink .panel-footer {
  background: #f674a0;
}

.panel-brown {
  background: #ab7967;
  border: 1px solid #ab7967;
}

.panel-brown .panel-heading {
  background: #a6705d;
}

.panel-brown .panel-footer {
  background: #a6705d;
}

.panel-violet {
  background: #c38fbb;
  border: 1px solid #c38fbb;
}

.panel-violet .panel-heading {
  background: #be85b5;
}

.panel-violet .panel-footer {
  background: #be85b5;
}

.panel-mustard {
  background: #e3b442;
  border: 1px solid #e3b442;
}

.panel-mustard .panel-heading {
  background: #e0ab2c;
}

.panel-mustard .panel-footer {
  background: #e0ab2c;
}

.panel-orange {
  background: #f2682a;
  border: 1px solid #f2682a;
}

.panel-orange .panel-heading {
  background: #f15712;
}

.panel-orange .panel-footer {
  background: #f15712;
}

.panel-teal {
  background: #47BCC7;
  border: 1px solid #47BCC7;
}

.panel-teal .panel-heading {
  background: #39b0bb;
}

.panel-teal .panel-footer {
  background: #39b0bb;
}

.panel-dark-blue {
  background: #2a303e;
  border: 1px solid #2a303e;
}

.panel-dark-blue .panel-heading {
  background: #20242f;
}

.panel-dark-blue .panel-footer {
  background: #20242f;
}

.panel-purple {
  background: #500776;
  border: 1px solid #500776;
}

.panel-purple .panel-heading {
  background: #430663;
}

.panel-purple .panel-footer {
  background: #430663;
}

.panel-facebook {
  background: #3B5998;
  border: 1px solid #3B5998;
}

.panel-facebook .panel-heading {
  background: #355089;
}

.panel-facebook .panel-footer {
  background: #355089;
}

.panel-twitter {
  background: #55ACEE;
  border: 1px solid #55ACEE;
}

.panel-twitter .panel-heading {
  background: #42a3ec;
}

.panel-twitter .panel-footer {
  background: #42a3ec;
}

.panel-linkedin {
  background: #007BB5;
  border: 1px solid #007BB5;
}

.panel-linkedin .panel-heading {
  background: #006da1;
}

.panel-linkedin .panel-footer {
  background: #006da1;
}

.panel-gplus {
  background: #E02F2F;
  border: 1px solid #E02F2F;
}

.panel-gplus .panel-heading {
  background: #da2121;
}

.panel-gplus .panel-footer {
  background: #da2121;
}

.panel-instagram {
  background: #5280a4;
  border: 1px solid #5280a4;
}

.panel-instagram .panel-heading {
  background: #4b7596;
}

.panel-instagram .panel-footer {
  background: #4b7596;
}

.panel-peach {
  background: #f5907c;
  border: 1px solid #f5907c;
}

.panel-peach .panel-heading {
  background: #f48069;
}

.panel-peach .panel-footer {
  background: #f48069;
}

.panel-body {
  padding: 15px;
  position: relative;
  background: var(--panelbody-background);
  /* background: #2d2d2d; */
  -webkit-border-radius: 0 0 2px 2px;
  -moz-border-radius: 0 0 2px 2px;
  border-radius: 0 0 2px 2px;
}

.panel-footer {
  border: 0;
  margin-top: -1px;
  background: #ededed;
  -webkit-border-radius: 0 0 2px 2px;
  -moz-border-radius: 0 0 2px 2px;
  border-radius: 0 0 2px 2px;
}

.progress {
  background-color: #eef3f8;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.progress-bar-danger {
  background-color: #e84f4c;
  box-shadow: none;
}

.progress-bar-success {
  background-color: #71c586;
  box-shadow: none;
}

.progress-bar-warning {
  background-color: #ffb400;
  box-shadow: none;
}

.progress-bar-info {
  background-color: #3a86c8;
  box-shadow: none;
}

.progress-sm {
  height: 6px;
}

.progress-md {
  height: 9px;
}

.progress-xs {
  height: 3px;
}

.progress-rounded {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}