html,
body {
 height: 100%; 
}
body {
  background-color: #EAEDEF;
}
#content {
  	height: 100%;
  	padding-top: 10px;
}
#main {
	height: calc(100% - 64px);
}
.wrapper {
	height: 100%;
}
.bodyApp {
	background: url("../images/BACKGROUND.jpg") no-repeat right 50px;
    background-size: cover;
}

#main {
  --padding-left: 240px;
}

footer {
  padding-left: 240px;
}

footer.page-footer {
  padding-top: 0px;
}

select {
  background-color: transparent;
  width: 100%;
  padding: 5px;
  border: none;
  border-radius: 2px;
  height: 3rem;
  border-bottom: 1px solid #9e9e9e;
}

.galleria { max-width: 400px; height: 300px; background: #fff }


.container {
  padding: 0 0.5rem;
  margin: 0 auto;
  max-width: 100% !important;
  width: 98%;
}

#left-sidebar-nav {
  position: fixed;
  width: 100px;
  left: 180px;
  z-index: 999;
  height: auto;
}

#left-sidebar-nav span.badge.new {
  line-height: 20px;
  margin-top: 11px;
}

#content .header-middle-wrapper {
  width: 100%;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: calc(100% - 40px);
}

#content .container .row {
  margin-bottom: 0;
}

@media only screen and (min-width: 601px) {
  .container {
    width: 98%;
  }
}

@media only screen and (min-width: 993px) {
  .container {
    width: 98%;
  }
}

@media only screen and (max-width: 993px) {
  #main {
    padding-left: 0;
  }
  footer {
    padding-left: 0;
  }
}

.ps-scrollbar-x-rail {
  z-index: 9999;
}

.ps-scrollbar-y-rail {
  z-index: 9999;
}

/*---------------------------------
    Typography
-----------------------------------*/
.small {
  font-size: 1.0rem;
  margin: 0;
  padding: 0;
}

.medium-small {
  font-size: 0.9rem;
  margin: 0;
  padding: 0;
}

.ultra-small {
  font-size: 0.8rem;
  margin: 0;
  padding: 0;
}

small {
  font-size: 0.8rem;
}

.strong {
  font-weight: 600;
}

h4.header {
  line-height: 2.508rem;
  margin: 1.14rem 0 0.912rem 0;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
}

h4.header2 {
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
}

p.title {
  font-size: 1.3rem;
}

p.header {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

li.li-hover:hover {
  background: transparent !important;
}

li.search-out:hover {
  background: transparent;
}

li.mobile:before {
  background: #f7464a;
}

li.kitchen:before {
  background: #46bfbd;
}

li.home:before {
  background: #fdb45c;
}

.more-text {
  padding: 5px 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.valign-demo {
  height: 400px;
  background-color: #ddd;
}

.margin {
  margin: 0 !important;
}

.padding {
  padding: 0 !important;
}

/*----------------------------------------
    Pre-loader
------------------------------------------*/
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9009;
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #3c67a8;
  z-index: 1000;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 10px solid transparent;
  border-top-color: #4680d6;
  -webkit-animation: spin 0.3s linear infinite;
  animation: spin 0.3s linear infinite;
  z-index: 1001;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 8px solid transparent;
  border-top-color: WHITE;
  -webkit-animation: spin 0.2s linear infinite;
  animation: spin 0.2s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 8px solid transparent;
  border-top-color: #13B8D3;
  -webkit-animation: spin 1.3s linear infinite;
  animation: spin 1.3s linear infinite;
}

#loader-logo {
  display: block;
  position: absolute;
  left: 48%;
  top: 46%;
  background: url("../images/user-bg-2.jpg") no-repeat center center;
  z-index: 1001;
}

@-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-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}

.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.progress {
  background-color: rgba(255, 64, 129, 0.22);
}

/* JavaScript Turned Off */
.no-js #loader-wrapper {
  display: none;
}

/*=================================================================================
    Header
====================================================================================*/
/*----------------------------------------
    Page Header
------------------------------------------*/
h1.logo-wrapper {
  margin: 0;
}

h1 span.logo-text {
  display: none;
}

.menu-sidebar-collapse {
  margin: 0 10px;
}

.menu-sidebar-collapse i {
  line-height: 36px !important;
}

header .brand-logo {
  text-align: center;
  margin-top: 2px;
  margin-left: 40px;
}

header .brand-logo img {
  width: 40px;
  height: 40px;
  margin-left: 10px;
  margin-top: 10px;
}

@media screen and (max-width: 992px) {
  header .brand-logo {
	  margin-left: 80px;
	  left: 0px;
  }
  header .brand-logo img {
  	  margin-left: 0px;
	  width: 40px;
	  height: 40px;
  }
}

@media screen and (max-width: 598px) {
  header .brand-logo {
	  margin-left: 80px;
	  left: 0px;
  }
  header .brand-logo img {
  	  margin-top: 2px;
	  width: 48px;
	  height: 48px;
  }
}

.user-foto {
  float: left;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: 18px;
}

.user-foto-icon {
	float: left;
  	width: 30px;
  	height: 30px;
}

.menu-sidebar-collapse {
  margin: 0 10px 0 18px;
}

@media only screen and (max-width: 992px) {
  nav .nav-wrapper {
    text-align: center;
  }
  nav .nav-wrapper a.page-title {
    font-size: 36px;
  }
  ul.side-nav.leftside-navigation {
    top: 56px !important;
  }
}

.header-middle-wrapper {
  margin: 0 auto 0 100px;
  width: 300px;
  height: 100%;
  display: inline-block;
  position: relative;
}

.header-middle-wrapper i {
  position: absolute;
  font-size: 20px;
  top: 6px;
  left: 24px;
  line-height: 32px !important;
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
}

input.header-middle-input {
  display: block;
  padding: 8px 8px 8px 72px;
  width: calc(100% - 80px);
  background: rgba(255, 255, 255, 0.3);
  height: 24px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  border: none;
  font-size: 16px;
  appearance: textfield;
  font-weight: 400;
  outline: none;
  border-radius: 3px;
}
.main-sidebar-collapse {
  padding-left: 0px !important;
}

input.header-middle-input:hover {
  background: rgba(255, 255, 255, 0.5);
}

.switch label input[type=checkbox]:checked+.lever:after {
    background-color: #00BCD4 !important;
}
.switch label input[type=checkbox]:checked+.lever {
    background-color: #00BCD4 !important;
}

input.header-middle-input:focus {
  color: #333;
  background: #fff;
  border-bottom: none !important;
  box-shadow: none !important;
}

.header-middle-wrapper-focus i {
  color: #444;
}

.header-middle-input::-webkit-input-placeholder {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.header-middle-input::-moz-placeholder {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.header-middle-input:-ms-input-placeholder {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.header-middle-input:focus::-webkit-input-placeholder {
  color: #333;
  font-size: 16px;
  font-weight: 400;
}

.header-middle-input:focus::-moz-placeholder {
  color: #333;
  font-size: 16px;
  font-weight: 400;
}

.header-middle-input:focus::placeholder {
  color: #333;
  font-size: 16px;
  font-weight: 400;
}

.header-middle-input:focus:-ms-input-placeholder {
  color: #333;
  font-size: 16px;
  font-weight: 400;
}

.header-middle-input::placeholder {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.search-out {
  display: none;
}

.search-out input[type=text]:focus:not([readonly]) {
  border-bottom: 1px solid #fff !important;
  box-shadow: none;
}

input[type=text][readonly="readonly"] {
    background-color: transparent;
    color: #555;
}

.search-out-text {
  border-bottom: 1px solid #fff !important;
}

.translation-button img {
  position: relative;
  top: 12px;
}

#translation-dropdown .language-select {
  position: relative;
  top: -9px;
}

.notification-badge {
  position: relative;
  right: 5px;
  top: -60px;
  color: #ffffff;
  background-color: #FF4081;
  margin: 0 -.8em;
  border-radius: 50%;
  padding: 4px 5px;
  heigth: 30px;
}

#notifications-dropdown h5 {
  font-size: 1rem;
  text-transform: capitalize;
  font-weight: 500;
}

#notifications-dropdown li {
  padding: 10px;
  font-size: 1rem;
}

#notifications-dropdown li > a {
  padding: 0;
  font-size: 1rem;
  font-weight: 300;
}

#notifications-dropdown li > a > i {
  display: inline-block;
  font-size: 1.2rem;
  position: relative;
  top: 4px;
}

#notifications-dropdown li > time {
  font-size: 0.8rem;
  font-weight: 400;
}

#notifications-dropdown li.divider {
  padding: 0;
}

/*=================================================================================
    Sidebar
====================================================================================*/
/*----------------------------------------
    Sidebar Main Menu 
------------------------------------------*/
nav.top-nav {
  height: 122px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

nav.top-nav a.page-title {
  line-height: 122px;
  font-size: 48px;
}

nav ul li.no-hover:hover {
  background: none;
}

.side-nav a {
  line-height: 42px;
  height: 100%;
}

.side-nav.leftside-navigation .collapsible-body li.active {
  background-color: rgba(0, 0, 0, 0.04);
}

.side-nav.fixed.leftside-navigation .collapsible-body li.active {
  background-color: rgba(0, 0, 0, 0.04);
}

.side-nav .collapsible-body li a {
  margin: 0px 0px 0px 20px;
  height: 100%;
  padding-top: 4px;
  padding-bottom: 4px;
  line-height: 30px;
  font-weight: regular;
}

.side-nav a span, .side-nav .collapsible-body li a span {
	display: inline-block;
    width: 140px;
    white-space: pre-wrap;
    vertical-align: middle;
    line-height: 20px;
}

ul.side-nav.leftside-navigation {
  overflow: hidden;
}

ul.side-nav.leftside-navigation hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 1em 0;
  padding: 0;
}

ul.side-nav.leftside-navigation li {
  line-height: 54px;
}

ul.side-nav.leftside-navigation li:hover {
	background-color: rgba(0, 0, 0, 0.04);
}

ul.side-nav.leftside-navigation li.active {
	background-color: rgba(0, 0, 0, 0.04);
}

ul.side-nav.leftside-navigation li.user-details {
  background: url("../images/user-bg.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  margin-bottom: 15px;
  padding: 15px 0 0 15px;
}

ul.side-nav.leftside-navigation li.user-details #profile-dropdown a {
  padding: 8px 15px;
}

ul.side-nav.leftside-navigation .profile-btn {
  margin: 0;
  text-transform: capitalize;
  padding: 0;
  text-shadow: 1px 1px 1px #444;
  font-size: 15px;
}

ul.side-nav li {
  padding: 0;
}

ul.side-nav .collapsible-header {
  margin: 0;
}

#slide-out li a i {
  line-height: inherit;
  width: 2rem;
  font-size: 1.6rem;
  display: block;
  float: left;
  text-align: center;
  margin-right: 1rem;
}

#slide-out ul.side-nav li {
  padding: 0 !important;
}

.caption {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 30px;
}

.caption-uppercase {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.sidebar-collapse {
  position: absolute;
  left: -170px;
  top: -50px;
}

.user-task,
.user-time {
  margin: 0;
  font-size: 13px;
  color: #fff;
}

.user-roal {
  color: #fff;
  margin-top: -16px;
  font-size: 13px;
  text-shadow: 1px 1px 1px #444;
}

.user-details .row {
  margin: 0;
}

.bold > a {
  font-weight: bold;
}

.rightside-navigation {
  overflow: hidden;
}

/*----------------------------------------
    Right Chat Slideout
------------------------------------------*/
#right-search .input-field {
  margin-top: 0;
}

#chat-out .collapsible-header {
  background-color: transparent;
  border: none;
  line-height: 45px;
  height: 45px;
  font-weight: 400;
}

#chat-out .collapsible-header:after {
  color: #fff;
}

#chat-out .chat-out-list {
  padding: 5px;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
}

#chat-out .favorite-associate-list .circle {
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  border: 2px solid #999;
  padding: 3px;
  display: block;
}

#chat-out .favorite-associate-list .online-user {
  border: 2px solid #00e676;
}

#chat-out .favorite-associate-list p {
  padding: 0;
}

#chat-out .favorite-associate-list p.place {
  font-size: 0.8rem;
}

#chat-out .recent-activity-list-icon {
  margin-top: 8px;
  font-size: 2rem;
}

#chat-out .recent-activity-list-text a {
  font-size: 0.8rem;
  padding: 0;
  font-weight: 600;
}

#chat-out .recent-activity-list-text p {
  font-size: 0.9rem;
  padding: 0;
}

.chat-close-collapse {
  padding: 5px 15px 0 0;
}

/* =================================================================================
    Content
================================================================================= */
/*----------------------------------------
    Breadcrumb
------------------------------------------*/
#breadcrumbs-wrapper {
  background: #f3f3f3;
}

h5.breadcrumbs-header {
  font-size: 1.64rem;
  line-height: 1.804rem;
  margin: 1.5rem 0 0 0;
}

.breadcrumbs {
  padding: 0;
  margin: 15px 0;
  list-style: none;
}

.breadcrumbs > li {
  display: inline-block;
}

.breadcrumbs > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}

.breadcrumbs .active {
  font-weight: normal;
  color: #999;
}

.breadcrumbs-title {
  font-size: 1.5rem;
  line-height: 1.804rem;
  margin: 18px 0 0;
}

.breadcrumbs-nav {
  margin: 8px 0 9px;
}

.breadcrumb:before {
  content: "\e7c3";
  font-family: "Material-Design-Icons";
}

/*----------------------------------------
    Tables
------------------------------------------*/
.jsgrid-edit-row input[type="checkbox"], .jsgrid-insert-row input[type="checkbox"], .jsgrid-filter-row input[type="checkbox"], .jsgrid-alt-row input[type="checkbox"], .jsgrid-row input[type="checkbox"], .config-panel input[type=checkbox] {
  position: relative !important;
  left: 0 !important;
  visibility: visible !important;
}

.jsgrid-grid-body {
  height: auto !important;
}

.jsgrid-edit-row select {
  display: block !important;
}

.jsgrid-insert-row select {
  display: block !important;
}

.jsgrid-insert-row .select-wrapper .caret {
  display: none !important;
}

.jsgrid-insert-row .select-wrapper .select-dropdown {
  display: none !important;
}

#jsGrid-sorting {
  height: 500px !important;
  overflow: scroll !important;
}

#jsGrid-page {
  height: 500px !important;
  overflow: scroll !important;
}

#jsGrid-custom-row {
  height: 500px !important;
  overflow: scroll !important;
}

/*----------------------------------------
    Cards
------------------------------------------*/
.card {
  overflow: hidden;
}

#card-stats .card-content {
  text-align: center;
}

#card-stats .card-stats-title {
  font-size: 1.0rem;
}

#card-stats .card-stats-title i {
  font-size: 1.2rem;
}

#card-stats .card-stats-compare {
  font-size: 1.0rem;
}

#card-stats .card-stats-compare i {
  position: relative;
  top: 5px;
}

#card-stats .card-stats-number {
  font-size: 1.8rem;
  line-height: 2.0rem;
  margin: 0.2rem 0 0.2rem 0;
  font-weight: 500;
}

#card-stats .card .card-content {
  padding: 10px 14px;
}

#card-stats .card .card-action {
  padding: 10px 14px;
}

/* alert card */
#card-alert i {
  font-size: 20px;
  position: relative;
  top: 2px;
}

#card-alert .alert-circle {
  display: inline-block;
  width: 40px;
  white-space: nowrap;
  border-radius: 1000px;
  vertical-align: bottom;
  position: relative;
  top: -5px;
  left: -2px;
}

#card-alert .single-alert {
  line-height: 42px;
}

#card-alert button {
  background: none;
  border: none;
  position: absolute;
  top: 15px;
  right: 10px;
  font-size: 20px;
  color: #fff;
}

#card-alert .card .card-content {
  padding: 20px 40px 20px 20px;
}

#card-alert .card-action i {
  top: 0;
  margin: 0;
}

/* work card */
#work-collections .collection-header {
  font-size: 1.14rem;
  font-weight: 500;
}

#work-collections p.collections-title {
  font-size: 1.0rem;
  padding: 0;
  margin: 0;
  font-weight: 500;
}

#work-collections p.collections-content {
  font-size: 0.9rem;
  padding: 0;
  margin: 0;
  font-weight: 400;
}

#work-collections .collection-item.avatar {
  height: auto;
  padding-top: 22px;
}

/* flight card */
#flight-card .flight-card-title {
  margin: 0;
  font-weight: 300;
  color: #fff;
}

#flight-card .flight-card-date {
  font-size: 1.0rem;
  margin: 0;
  color: #fff;
}

#flight-card .flight-state {
  padding-bottom: 15px;
}

#flight-card .flight-state-two {
  border-left: 1px dashed #9e9e9e;
}

#flight-card .flight-icon {
  font-size: 2.2rem;
  display: block;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

#flight-card .card-content-bg {
  background: url("../images/sample-1.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#flight-card .card-content {
  background: rgba(0, 0, 0, 0.25);
}

#flight-card .flight-state-wrapper {
  margin: 0 0 100px 0 !important;
}

#flight-card .card-header .card-title {
  padding: 20px;
}

/* task card */
#task-card label {
  display: block;
  color: rgba(0, 0, 0, 0.87);
  height: auto;
}

#task-card .task-card-title {
  margin: 0;
  color: #fff;
  font-weight: 300;
}

#task-card .task-card-date {
  font-size: 1.0rem;
  margin: 0;
  color: #fff;
}

#task-card .collection-header {
  padding: 20px;
}

#task-card .task-add {
  position: absolute;
  right: 10px;
  top: 76px;
}

#task-card .task-cat {
  padding: 2px 4px;
  color: #fff;
  margin-left: 37px;
  font-weight: 300;
  font-size: 0.8rem;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background-clip: padding-box;
}

.task-cat {
  padding: 2px 4px;
  color: #fff;
  font-weight: 300;
  font-size: 0.8rem;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background-clip: padding-box;
}

.collection .collection-item.avatar i.circle {
  font-size: 28px;
}

/* profile card */
#profile-card .card-image {
  height: 150px;
}

#profile-card .card-profile-image {
  width: 70px;
  position: absolute;
  top: 110px;
  z-index: 1;
  cursor: pointer;
}

#profile-card .btn-move-up {
  position: relative;
  top: -40px;
  right: -18px;
  margin-right: 10px !important;
}

#profile-card .card-content p {
  font-size: 1.2rem;
  margin: 10px 0 12px;
}

.card-move-up .move-up {
  padding: 12px;
}

/*----------------------------------------
    Charts
------------------------------------------*/
#chart-dashboard {
  padding-top: 12px;
}

#chart-dashboard .card {
  overflow: hidden;
}

#chart-dashboard .card .card-content {
  padding: 10px 14px;
}

.sample-chart-wrapper {
  width: 100%;
}

.chart-title {
  font-size: 1.1rem;
}

/* Revenue Chart */
.chart-revenue {
  float: right;
  text-align: center;
  padding: 8px;
  border-radius: 3px;
}

.chart-revenue .chart-revenue-total {
  font-size: 0.9rem;
  margin: 0;
}

.chart-revenue .chart-revenue-per {
  font-size: 0.8rem;
  margin: 0;
}

.chart-revenue .chart-revenue-per i {
  position: relative;
  top: 5px;
}

.chart-revenue-switch {
  padding-top: 28px;
  padding-right: 10px;
  color: #fff;
  text-align: right;
}

/* doughnut chart */
.doughnut-chart-status {
  position: relative;
  top: -75px;
  left: 0;
  font-size: 16px;
  font-weight: 500;
  height: 0;
  text-align: center;
}

.doughnut-chart-status p {
  margin-top: -5px;
}

.doughnut-chart-legend li {
  padding: 2px 0;
  font-size: 0.9rem;
}

.doughnut-chart-legend li:before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  float: left;
  margin-top: 6px;
  margin-right: 4px;
}

a.button-collapse.top-nav {
  position: absolute;
  left: 7.5%;
  top: 0;
  float: none;
  margin-left: 1.5rem;
  color: #fff;
  font-size: 32px;
  z-index: 2;
}

/* trending bar chart */
.trending-bar-chart-wrapper {
  width: 100%;
}

.btn-move-up {
  position: relative;
  top: -28px;
  right: -18px;
  margin-right: 10px !important;
}

/* Flot Chart*/
.flotchart-placeholder {
  width: 100%;
  height: 300px;
  font-size: 13px;
  line-height: 1.2em;
}

#flotchart table {
  position: absolute;
  top: 13px;
  right: 17px;
  font-size: smaller;
  color: #545454;
  width: 100px;
}

#flotchart td {
  padding: 5px;
}

th {
  padding: 5px;
}

/* xCharts */
.xchart-placeholder {
  width: 90%;
  height: 300px;
}

/*Sparkline*/
.jqstooltip {
  border: none !important;
  box-sizing: content-box;
}

.tooltip-class {
  overflow: hidden;
  color: #fff;
  height: 20px;
  width: 30px;
}

#ct2-chart .ct-series.ct-series-a .ct-area {
  fill: #00bcd4;
}

#ct2-chart .ct-series.ct-series-a .ct-point {
  stroke: #00bcd4;
}

#ct2-chart .ct-series.ct-series-a .ct-line {
  stroke: #54e2f4;
}

/*  Widget */
.socialbox .logo {
  color: #fff;
  font-size: 28px;
  left: 20px;
  bottom: 20px;
  position: absolute;
}

.socialbox .info {
  color: #fff;
  margin: 0;
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 15px;
  padding: 0;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .doughnut-chart-status {
    display: none;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .doughnut-chart-status {
    display: none;
  }
  #card-stats .card-stats-compare {
    font-size: 0.8rem;
  }
}

/*----------------------------------------
    Calender
------------------------------------------*/
#full-calendar {
  padding-top: 30px;
}

#calendar h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 35px;
}

#calendar .fc-day-header {
  text-transform: uppercase;
  font-weight: 400;
}

.fc button {
  background: #fff;
}

.fc td {
  border-width: 0 !important;
}

.fc th {
  border-width: 0 !important;
}

.fc-state-active {
  color: #0277bd !important;
}

.fc-state-down {
  color: #0277bd !important;
}

/*----------------------------------------
    Color Palette css for css-color.html page
------------------------------------------*/
.dynamic-color .red, .dynamic-color .pink, .dynamic-color .purple, .dynamic-color .deep-purple, .dynamic-color .indigo, .dynamic-color .blue, .dynamic-color .light-blue, .dynamic-color .cyan, .dynamic-color .teal, .dynamic-color .green, .dynamic-color .light-green, .dynamic-color .lime, .dynamic-color .yellow, .dynamic-color .amber, .dynamic-color .orange, .dynamic-color .deep-orange, .dynamic-color .brown, .dynamic-color .grey, .dynamic-color .blue-grey {
  height: 55px;
  width: 100%;
  padding: 0 15px;
  line-height: 55px;
  font-weight: 500;
  font-size: 12px;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.dynamic-color .col {
  margin-bottom: 55px;
}

tr.group {
  background-color: #ddd !important;
}

tr.group:hover {
  background-color: #ddd !important;
}

@media only screen and (max-width: 1024px) {
  tfoot {
    display: none;
  }
}

/*----------------------------------------
    Grid - Flat Site Mockup
------------------------------------------*/
#site-layout-example-left {
  background-color: #90a4ae;
  height: 300px;
}

#site-layout-example-right {
  background-color: #26a69a;
  height: 300px;
}

#site-layout-example-top {
  background-color: #e57373;
  height: 50px;
}

.flat-text-header {
  height: 35px;
  width: 80%;
  background-color: rgba(255, 255, 255, 0.15);
  display: block;
  margin: 27px auto;
}

.flat-text {
  height: 25px;
  width: 80%;
  background-color: rgba(0, 0, 0, 0.15);
  display: block;
  margin: 27px auto;
}

.flat-text.small {
  width: 25%;
  height: 25px;
  background-color: rgba(0, 0, 0, 0.15);
}

.flat-text.full-width {
  width: 100%;
}

.col.grid-example {
  border: 1px solid #eee;
  margin: 7px 0;
  text-align: center;
  line-height: 50px;
  font-size: 28px;
  background-color: #ff6347;
  color: #fff;
  padding: 0;
}

.col.grid-example span {
  font-weight: 200;
  line-height: 50px;
}

.waves-color-demo .collection-item {
  height: 57px;
  line-height: 57px;
}

/*----------------------------------------
    Chrome Browser Grid Example
------------------------------------------*/
.browser-window {
  text-align: left;
  width: 100%;
  height: auto;
  display: inline-block;
  -webkit-border-radius: 5px 5px 2px 2px;
  -moz-border-radius: 5px 5px 2px 2px;
  border-radius: 5px 5px 2px 2px;
  background-clip: padding-box;
  background-color: transparent;
  margin: 20px 0;
  overflow: hidden;
}

.browser-window .top-bar {
  height: 30px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  background-clip: padding-box;
  border-top: thin solid #eaeae9;
  border-bottom: thin solid #ddd;
  background: linear-gradient(#e7e7e6, #e0e0e0);
}

.browser-window .circle {
  height: 10px;
  width: 10px;
  display: inline-block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background-color: #fff;
  margin-right: 1px;
}

.browser-window .circles {
  margin: 5px 12px;
}

.browser-window .content {
  margin: 0;
  width: 100%;
  display: inline-block;
  border-radius: 0 0 5px 5px;
  background-color: #fafafa;
}

.browser-window .row {
  margin: 0;
}

#close-circle {
  background-color: #ff5c5a;
}

#minimize-circle {
  background-color: #fdb45c;
}

#maximize-circle {
  background-color: #1bc656;
}

.clear {
  clear: both;
}

.promo i {
  color: #ee6e73;
  font-size: 6rem;
  display: block;
}

.promo-caption {
  font-size: 1.7rem;
  font-weight: 500;
  margin-top: 5px;
  margin-bottom: 0;
}

/*----------------------------------------
    Shadow effect
------------------------------------------*/
.shadow-demo {
  background-color: #26a69a;
  width: 100px;
  height: 100px;
  margin: 20px auto;
}

.collapsible-header {
  font-weight: 500;
}

/* Sidebar nav open close icons*/
.collapsible-header:after {
  font-family: "Material-Design-Icons";
  content: "\e7c3";
  float: right;
  color: #9e9e9e;
  font-size: 18px;
}

.collapsible-header.active:after {
  content: "\e7c1";
}

#input-select .input-field label {
  position: absolute;
  top: -14px;
  font-size: 0.8rem;
}

/*----------------------------------------
    icon page
------------------------------------------*/
.icon-demo {
  line-height: 50px;
}

.icon-container i {
  font-size: 3em;
  display: block;
  margin-bottom: 10px;
}

.icon-container .icon-preview {
  height: 120px;
  text-align: center;
}

.icon-holder {
  display: block;
  text-align: center;
  width: 150px;
  height: 115px;
  float: left;
  margin: 0 0 15px 0;
}

.icon-holder p {
  margin: 0;
}

/*----------------------------------------
    Error Page
------------------------------------------*/
.text-long-shadow {
  text-shadow: #1d7d74 1px 1px, #1d7d74 2px 2px, #1d7d74 3px 3px, #1d7d74 4px 4px, #1d7d74 5px 5px, #1d7d74 6px 6px, #1d7d74 7px 7px, #1d7d74 8px 8px, #1d7d74 9px 9px, #1d7d74 10px 10px, #1d7d74 11px 11px, #1d7d74 12px 12px, #1d7d74 13px 13px, #1d7d74 14px 14px, #1d7d74 15px 15px, #1d7d74 16px 16px, #1d7d74 17px 17px, #1d7d74 18px 18px, #1d7d74 19px 19px, #1d7d74 20px 20px, #1d7d74 21px 21px, #208b81 22px 22px, #208b81 23px 23px, #208b81 24px 24px, #208b81 25px 25px, #208b81 26px 26px, #208b81 27px 27px, #208b81 28px 28px, #208b81 29px 29px, #208b81 30px 30px, #26a69a 31px 31px, #26a69a 32px 32px, #26a69a 33px 33px, #26a69a 34px 34px, #26a69a 35px 35px, #26a69a 36px 36px, #26a69a 37px 37px;
  background-color: #26a69a;
  width: 100%;
  font-size: 10rem;
  color: #fff !important;
  text-align: center;
  padding: 20px 0 !important;
}

/*----------------------------------------
    Login Page
------------------------------------------*/
.login-form {
  width: 280px;
}

.login-form-text {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.profile-image-login {
  width: 100px;
  height: 100px !important;
}

.login-text {
  margin-top: -6px;
  margin-left: -6px !important;
}

/*----------------------------------------
    Email Page
------------------------------------------*/
#mail-app hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 1em 0;
  padding: 0;
}

#mail-app #email-sidebar {
  margin-top: 0;
}

#mail-app #email-list {
  margin-top: 0;
}

#mail-app #email-details {
  margin-top: 0;
}

#mail-app .modal .modal-content {
  padding: 0;
}

.email-unread .email-title {
  font-weight: 500;
}

#email-sidebar {
  min-height: 650px;
}

#email-sidebar li i {
  padding: 12px;
  color: #272727;
}

#email-sidebar li i.active {
  background: #ddd;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}

#email-sidebar li i:hover {
  background: #ddd;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}

#email-list {
  padding: 0;
}

#email-list .collection {
  margin: 0;
}

#email-list .collection .collection-item.avatar {
  height: auto;
  padding-left: 72px;
  position: relative;
}

#email-list .collection .collection-item.avatar .secondary-content {
  position: absolute;
  top: 10px;
  right: -4px;
}

#email-list .collection .collection-item.avatar .secondary-content.email-time {
  right: 8px;
}

#email-list .collection .collection-item.avatar .icon {
  position: absolute;
  width: 42px;
  height: 42px;
  overflow: hidden;
  left: 15px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  top: 20px;
}

#email-list .collection .collection-item.avatar .circle {
  position: absolute;
  width: 42px;
  height: 42px;
  overflow: hidden;
  left: 15px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 300;
  padding: 10px;
}

#email-list .collection .collection-item.avatar img.circle {
  padding: 0;
}

#email-list .collection .collection-item:hover {
  background: #e1f5fe;
  cursor: pointer;
}

#email-list .collection .collection-item.selected {
  background: #e1f5fe;
  border-left: 4px solid #29b6f6;
}

#email-list .attach-file {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  color: #9e9e9e;
  font-size: 1.1rem;
}

#email-details {
  padding: 15px;
}

#email-details .email-subject {
  font-size: 1.2rem;
}

#email-details .email-subject i {
  font-size: 2.2rem;
}

#email-details .email-tag {
  padding: 3px;
  font-size: 0.9rem;
}

#email-details .collection {
  border: none;
}

#email-details .collection .collection-item.avatar {
  height: auto;
  padding-left: 72px;
  position: relative;
}

#email-details .collection .collection-item.avatar .icon {
  position: absolute;
  width: 42px;
  height: 42px;
  overflow: hidden;
  left: 15px;
  display: inline-block;
  vertical-align: middle;
  top: 20px;
}

#email-details .collection .collection-item.avatar .circle {
  position: absolute;
  width: 42px;
  height: 42px;
  overflow: hidden;
  left: 15px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 300;
  padding: 10px;
}

#email-details .collection .collection-item.avatar img.circle {
  padding: 0;
}

#email-details .collection .collection-item.selected {
  background: #e1f5fe;
  border-left: 4px solid #29b6f6;
}

#email-details .email-actions {
  padding-top: 25px;
}

#email-details .email-actions a {
  color: #757575;
  padding: 5px;
}

.email-reply {
  padding-top: 20px;
}

.email-reply a {
  color: #757575;
}

.email-reply a i {
  font-size: 2rem;
}

.email-reply p {
  color: #757575;
  margin: 0;
}

.model-email-content {
  padding: 24px;
}

/*----------------------------------------
    Blog
------------------------------------------*/
/* ----- Blog Card -----*/
.blog-card .card .card-content .card-title, .blog-card .card .card-reveal .card-title {
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-weight: 400;
}

.blog-card .card {
  margin: 0;
}

.blog-card .card .card-content {
  padding: 5px 10px;
}

.blog-card ul.card-action-buttons {
  margin: -26px 10px 0 0;
  text-align: right;
}

.blog-card ul.card-action-buttons li {
  display: inline-block;
  padding-left: 5px;
}

/* -----Blogs Masonery Page----- */
.blog .card .card-content .card-title, .blog .card .card-reveal .card-title {
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-weight: 400;
}

.blog {
  width: 20%;
  padding: 10px;
}

.blog .card {
  margin: 0;
}

.blog .card .card-content {
  padding: 5px 10px;
}

.blog ul.card-action-buttons {
  margin: -26px 10px 0 0;
  text-align: right;
}

.blog ul.card-action-buttons li {
  display: inline-block;
  padding-left: 5px;
}

.blog-sizer {
  width: 20%;
}

.blog-post-content {
  padding-bottom: 10px;
}

/*  blog page media queries */
@media screen and (max-width: 2200px) {
  .blog-sizer {
    width: 20%;
  }
  .blog {
    width: 20%;
  }
  .doughnut-chart-status {
    top: -100px;
  }
  .product-sizer {
    width: 20%;
  }
  .product {
    width: 20%;
  }
  .gallary-sizer {
    width: 20%;
  }
  .gallary-item img {
    width: 20%;
  }
}

@media screen and (max-width: 1800px) {
  .blog-sizer {
    width: 30%;
  }
  .blog {
    width: 30%;
  }
  .product-sizer {
    width: 30%;
  }
  .product {
    width: 30%;
  }
  .gallary-sizer {
    width: 30%;
  }
  .gallary-item img {
    width: 30%;
  }
}

@media screen and (max-width: 1600px) {
  .blog-sizer {
    width: 33.33%;
  }
  .doughnut-chart-status {
    top: -75px;
  }
  .blog {
    width: 33.33%;
  }
  .product-sizer {
    width: 25%;
  }
  .product {
    width: 25%;
  }
  .gallary-sizer {
    width: 25%;
  }
  .gallary-item img {
    width: 25%;
  }
}

@media screen and (max-width: 1224px) {
  .blog-sizer {
    width: 33.33%;
  }
  .doughnut-chart-status {
    top: -75px;
  }
  .doughnut-chart-status {
    top: -100px;
  }
  .blog {
    width: 33.33%;
  }
  .product-sizer {
    width: 33.33%;
  }
  .product {
    width: 33.33%;
  }
  .gallary-sizer {
    width: 33.33%;
  }
  .gallary-item img {
    width: 33.33%;
  }
}

@media screen and (max-width: 980px) {
  .blog-sizer {
    width: 50%;
  }
  .blog {
    width: 50%;
  }
  .product-sizer {
    width: 50%;
  }
  .product {
    width: 50%;
  }
  .gallary-sizer {
    width: 50%;
  }
  .gallary-item img {
    width: 50%;
  }
}

@media screen and (max-width: 720px) {
  .blog-sizer {
    width: 50%;
  }
  .blog {
    width: 50%;
  }
  .product-sizer {
    width: 50%;
  }
  .product {
    width: 50%;
  }
  .gallary-sizer {
    width: 50%;
  }
  .gallary-item img {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .blog-sizer {
    width: 100%;
  }
  .blog {
    width: 100%;
  }
  .product-sizer {
    width: 100%;
  }
  .product {
    width: 100%;
  }
  .gallary-sizer {
    width: 100%;
  }
  .gallary-item img {
    width: 100%;
  }
}

/* -----Blogs Page Full width 2----- */
#blog-post-full .card-title {
  text-shadow: 1px 1px 4px #000;
  font-weight: 300;
  font-size: 2rem;
}

#blog-post-full .blog-post-full-cat {
  padding: 5px;
  margin: 25px;
  right: 0;
  left: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#blog-post-full .blog-post-full-cat a {
  color: #fff;
  text-shadow: none;
}

/*----------------------------------------
    Invoice Page
------------------------------------------*/
.invoice-table {
  padding-top: 40px;
}

.invoice-text {
  padding: 18px 0;
}

.invoice-icon i {
  font-size: 2rem;
}

/*----------------------------------------
    Products
------------------------------------------*/
/* ---- Product Card ----- */
.product-card .card .card-content .card-title, .product-card .card .card-reveal .card-title {
  font-size: 1.1rem;
  line-height: 1.6rem;
  font-weight: 400;
}

.product-card .card {
  margin: 0;
}

.product-card .card .card-content {
  padding: 5px 10px;
}

.product-card .card .btn-price {
  width: 65px;
  height: 65px;
  font-weight: 600;
  font-size: 1.0rem;
  line-height: 65px;
  margin: 10px;
  position: absolute;
  top: 0;
  letter-spacing: 0;
}

.product-card ul.card-action-buttons {
  margin: -26px 10px 0 0;
  text-align: right;
}

.product-card ul.card-action-buttons li {
  display: inline-block;
  padding-left: 5px;
}

/* -----Products Masonery ----- */
.product .card .card-content .card-title, .product .card .card-reveal .card-title {
  font-size: 1.1rem;
  line-height: 1.6rem;
  font-weight: 400;
}

.product {
  width: 20%;
  padding: 10px;
}

.product .card {
  margin: 0;
}

.product .card .card-content {
  padding: 5px 10px;
}

.product .card .btn-price {
  width: 65px;
  height: 65px;
  font-weight: 600;
  font-size: 1.0rem;
  line-height: 65px;
  margin: 10px;
  position: absolute;
  top: 0;
  letter-spacing: 0;
}

.product ul.card-action-buttons {
  margin: -26px 10px 0 0;
  text-align: right;
}

.product ul.card-action-buttons li {
  display: inline-block;
  padding-left: 5px;
}

.product-sizer {
  width: 20%;
}

/*----------------------------------------
    Gallary  Page
------------------------------------------*/
.gallary-sizer {
  width: 20%;
}

.gallary-item img {
  width: 20%;
}

.slider .indicators {
  z-index: 9999;
}

/*----------------------------------------
    Contact Page (Map-card)
------------------------------------------*/
.map-card .card .card-content .card-title, .map-card .card .card-reveal .card-title {
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-weight: 400;
}

/* ---- Map card ----*/
.map-card #map-canvas {
  width: 100%;
  height: 250px;
}

.map-card .btn-move-up {
  top: -38px;
}

/* ---- Map Contact Page ----*/
#map-canvas {
  width: 100%;
  height: 250px;
}

/*----------------------------------------
    Pricing Plan  Page
------------------------------------------*/
.plans-container .collection {
  border: none;
}

.plans-container .collection .collection-item {
  border-bottom: none;
  text-align: center;
  font-size: 1.07rem;
  line-height: 1.6em;
}

.plans-container .collection .collection-item:before {
  font-size: 1.28rem;
  line-height: 1.6em;
  color: #009315;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  content: "\e623";
  margin-right: 10px;
}

.plans-container .card .card-image {
  position: relative;
  width: 100%;
}

.plans-container .card .card-image .card-title {
  position: relative;
  font-size: 1.28rem;
  line-height: 1.6em;
  text-align: center;
  width: 100%;
  padding: 10px 15px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.1);
}

.plans-container .card .card-image .price {
  position: relative;
  font-size: 5rem;
  line-height: 1.6em;
  color: #fff;
  font-weight: 300;
  text-align: center;
}

.plans-container .card .card-image .price sup {
  font-weight: 100;
  font-size: 1.42rem;
  line-height: 1.6em;
  top: -35px;
}

.plans-container .card .card-image .price sub {
  font-weight: 100;
  font-size: 1.42rem;
  line-height: 1.6em;
  top: 0;
}

.plans-container .card .card-image .price-desc {
  text-align: center;
  color: #fff;
  padding-bottom: 10px;
}

.plans-container .card .card-content {
  padding: 0;
}

/*----------------------------------------
    Profile Page
------------------------------------------*/
#profile-page-header .card-image {
  height: 250px;
}

#profile-page-header .card-profile-image {
  width: 110px;
  position: absolute;
  top: 190px;
  z-index: 1;
  left: 40px;
  cursor: pointer;
  margin: 0;
}

#profile-page-header .card-content {
  margin-top: -40px;
}

#profile-page-header .card-content .card-title {
  margin-bottom: 0;
}

/*profile-page-wall*/
#profile-page-wall .profile-image-post {
  width: 60px;
  margin: 30px 10px;
}

#profile-page-wall .tab-content {
  padding: 10px;
}

#profile-page-wall .share-icons {
  margin-top: 10px;
}

#profile-page-wall .share-icons i {
  padding: 0 5px;
}

#profile-page-wall .tab-profile .tab i {
  font-size: 16px;
}

#profile-page-wall-posts .profile-small {
  height: 250px;
  overflow: hidden;
}

#profile-page-wall-posts .profile-medium {
  height: 350px;
  overflow: hidden;
}

#profile-page-wall-posts .profile-large {
  height: 450px;
  overflow: hidden;
}

#profile-page-wall-posts .card-profile-title {
  font-size: 16px;
  padding: 20px;
  border-radius: 0 0 2px 2px;
}

#profile-page-wall-posts .card-action-share {
  padding: 16px;
}

/*----------------------------------------
    footer charts
------------------------------------------*/
.page-footer .container {
  padding: 0 15px;
}

#world-map-markers {
  height: 300px;
}

#polar-chart-holder {
  padding-top: 20px;
}
/*----------------------------------------
    btn socials
------------------------------------------*/
.btn-facebook {
  color: #ffffff;
  background-color: #37609d !important;
  border-color: rgba(0, 0, 0, 0.2);
  padding-left: 8px;
  padding-right: 8px;
  
  font-size: 12px;
  font-weight: BOLD;
}
.btn-facebook:hover,
.btn-facebook:focus,
.btn-facebook.focus,
.btn-facebook:active,
.btn-facebook.active,
.open > .dropdown-toggle.btn-facebook {
  color: #ffffff;
  background-color: #2d4373;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-facebook:active,
.btn-facebook.active,
.open > .dropdown-toggle.btn-facebook {
  background-image: none;
}
.btn-facebook.disabled,
.btn-facebook[disabled],
fieldset[disabled] .btn-facebook,
.btn-facebook.disabled:hover,
.btn-facebook[disabled]:hover,
fieldset[disabled] .btn-facebook:hover,
.btn-facebook.disabled:focus,
.btn-facebook[disabled]:focus,
fieldset[disabled] .btn-facebook:focus,
.btn-facebook.disabled.focus,
.btn-facebook[disabled].focus,
fieldset[disabled] .btn-facebook.focus,
.btn-facebook.disabled:active,
.btn-facebook[disabled]:active,
fieldset[disabled] .btn-facebook:active,
.btn-facebook.disabled.active,
.btn-facebook[disabled].active,
fieldset[disabled] .btn-facebook.active {
  background-color: #3b5998;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-facebook .badge {
  color: #3b5998;
  background-color: #ffffff;
}

.modal {
	z-index: 9000;
	top: 50px;
}

.text-info {
	font-size: 15px;
	font-weight: 300;
	color: #212121;
}

.rotate-90 {
	-ms-transform: rotate(90deg); /* IE 9 */
    -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
    transform: rotate(90deg);
}

.dt-buttons {
	visibility: hidden;
}

.template-painel {
	position: absolute; 
	right: 10px; 
	top: 25px;
}

.menu-propriedades ul {
    padding:0px;
    margin:0px;
    margin-top: 10px;
    background-color:#EDEDED;
    list-style:none;
}

.menu-propriedades ul li { display: inline; }

.menu-propriedades ul li a {
    padding: 2px 10px;
    display: inline-block;
    background-color:#EDEDED;
    color: graytext !important;
    text-decoration: none;
    border-bottom:3px solid #EDEDED;
}
.menu-propriedades ul li a:hover {
    background-color:#D6D6D6;
    color: #6D6D6D;
    border-bottom:3px solid rgb(0,48,160);
}
.menu-propriedades .active a {
    border-bottom:3px solid graytext;
}
.img-thumbnail {
	width: 100%;
}
.modal-message {
	display:none;
	position: absolute;
	z-index: 8999;
	left: 0px;
	top: 0px;
	margin: 0px;
}

.hidden {
	display: none;
}
.line {
	clear: left;
}
#toast-container{
	height: 10px !important;
}
.col-space {
	width: 4px;
}

.message-plain {
	padding: 10px;
	padding-top: 2px;
	margin-bottom: 10px;
	border-radius: 4px;
	border: 1px solid rgba(0,0,0,0.2);
}

.message-plain h1 {
	font-size: 16px;
	font-weight: BOLD;
}
.no-shadow {
	box-shadow:none;
}
.info-total {
	font-size: 14px;
	font-weight: BOLD;
}
.menu-nivel-2 {
	margin-left: 26px !important;
	border-left: 1px solid #bbcde8 !important;
}
.menu-nivel-3 {
	margin-left: 34px !important;
	border-left: 1px solid #bbcde8 !important;
}
.menu-nivel-4 {
	margin-left: 44px !important;
	border-left: 1px solid #bbcde8 !important;
}
.programa-nivel-0 {
	margin-left: 26px !important;
	border-left: 1px solid #bbcde8 !important;
	background-color: #386EC1;
}
.programa-nivel-1 {
	margin-left: 26px !important;
	border-left: 1px solid #bbcde8 !important;
	background-color: #386EC1;
}
.programa-nivel-2 {
	margin-left: 50px !important;
	border-left: 1px solid #bbcde8 !important;
	background-color: #386EC1;	
}
.programa-nivel-3 {
	margin-left: 60px !important;
	border-left: 1px solid #bbcde8 !important;
	background-color: #386EC1;
}
.programa-nivel-4 {
	margin-left: 104px !important;
	border-left: 1px solid #bbcde8 !important;
	background-color: #386EC1;
}
.programa-filtrado .programa-nivel-0 {
	margin-left: 10px !important;
	border-left: 8px solid WHITE !important; 
}

.programa-filtrado:HOVER {
	background-color: #243e65!important;
}
.collapsible-header {
  min-height: 0rem;
}
.modal-form {
	z-index: 1050;
}

body::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

body::-webkit-scrollbar {
	width: 10px;
	background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb {
	background-color: rgb(87,136,208);
}

.card-produto .card-title {
	padding-top: 16px;
	padding-bottom: 16px;
	font-size: 14px;
	line-height: 24px !important;
	height: 60px;
}

.speech-bubble-left {
	position: relative;
	background: #9cd775;
	border-radius: .4em;
	padding: 10px;
}

.speech-bubble-left:after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 0;
	height: 0;
	border: 14px solid transparent;
	border-right-color: #9cd775;
	border-left: 0;
	margin-top: -14px;
	margin-left: -14px;
}
.venda-assistida-numero-pedido {
	font-size: 30px;
	font-weight: BOLD;
}
.table-info {
	margin-top: 6px;
}

.card-total {
	font-size: 22px;
	font-weight: BOLD;
	color: GRAY;
}

@media only screen and (max-width: 993px) {
  	.card-total {
		font-size: 16px;
		font-weight: BOLD;
		color: GRAY;
	}
}

.card-title-total {
	font-size: 12px;
	padding-top: 8px;
}

.cliente-analise-comercial{
	font-size:18px !important;
	font-weight: bold;
}

.contem-seguro {
	color: blue;
	font-weight: bold;
	font-size: 16px;
}

.texto-info {
	font-weight: bold;
	font-size: 16px;
}

.label-circle {
	border-radius: 50% !important;
}

.form-title {
	font-size: 22px;
	font-weight: BOLD;
	color: rgb(100,100,100);
}
.form-title.h1 {
	font-size: 38px;
}
.carimbo {
   	padding: 4px;
	font-size: 20px;
	font-weight: BOLD;
	border: 1px solid rgba(0, 0, 0, 0.5);      		
}

.tabela-totais { 
    border-spacing: 0px;
    border-collapse: separate;
    margin: 0px !important;
}
.tabela-totais tr {
	--background-color: WHITE !important;
}
.tabela-totais td {
	padding: 1px;
}
.font-info {
	font-size: 24px;
}
.large {
	font-size: 14px;
}
.large input, input.large {
	font-size: 18px;
}
input.big {
	font-size: 28px !important;
	height: 40px;
}

.card .card-action a:not(.btn):not(.btn-large):not(.btn-floating):not(.label-link-janela) {
  color: WHITE;
  font-size: 14px;
  padding: 4px;
}

.table a:not('.btn') {
  color: black !important;
}

.fc-day-number {
	text-align: center !important;
	font-size: 12px;
}
.fc-more {
	color: black !important;
}
.fa-cheque {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAKSSURBVGhD7Zg7aBRBHIdX41tjEtRAEAsfjQhGiMFGwcYoRmxECFqKhREsxAdCYhGCWFqIKKYxEAWJChITRNDGSkQQCx+gNlqoKFERFR/x+83NHHHZkLnsRnZxPvi4/c/u7M7/ZudxFwUCgUAgECgxHesK7Hw0PMCRgnsAy8GHAvoF1fYzWE6kiOzDkEie+P8SWYDLMnYpVmEWeCWyGL+iO5+lF3A85qASrzdRMl6JVOMdfJ6xz7Adx6MV1a4+EyWT+zHSjE9Q7dJacQiT8E5Er1dTStfgDPRFr9RrVJte4Q97vA3jeI+R7+jOp7EffdmAqnMfp+JBG5/DOF6JzMMh1A3Tuh99cWPjhomiaAvqHt0m+ptcj5H1qPb8xE5Ur4xF7gf7EXRj4yYuwiRyn4jQWNFgV9s0+DWTxak4kWm4CdtQq/1kUoOa7VbgQlSPqH29GKeiRLSleITuuveoB4m52IizTZQNW1HPGTBRFO1CxUkLo3cimrmeos4/xtv2+A1uxnc2VtdrvRDLsbZ0OCFWou75FrfjdRufwDjeiaiyzmn6U5dPwUFb5tQD9fkCXaLfcAc69Gqq5/TF+KB1J/6MJRjHKxH9KaHtwW9cqwKLvnlX5xpq1b43qkw/QfX5CfXw1aj9lcquog8z8RSqzkPU5jEJ7x7RatpROiyzCpWc6rSoAI6iYo2fBrxo47v40R6/xN3oyzq8hcdMlExFgz1OF7o62j4IfWuKh01U2t58Rnedtu2zMGtSJXIFXZ2TKgA33+tddmi61rV7UWNrMkiVSA+6OntUAGr0Jdxoon9HqkS0IJ7F45jVT9aJkiqRPJGYyM4Ceh7LifyyQZE9jdFhvFxgNcmMXrADgUAgEAgUnCj6A9N29d2xHsKVAAAAAElFTkSuQmCC)
    no-repeat center center;
  	width: 60px;
  	height: 40px;
  	margin-bottom: -7px;
}

.jstree-anchor {
	color:rgb(80,80,80) !important;
	font-size: 12px !important;
	padding: 0px !important;
	text-transform: none !important;
}
.menu-button-tools {
	right: 10px; top: 25px;z-index:2;
}
.button-show-card-reveal {
	position: absolute; 
	right: 18px; 
	bottom: -20px;
}
.button-close-card-reveal {
	position: absolute; 
	right: 0px; 
	top: 12px;
}
table.consulta {
	font-size: 10px;
}
table.consulta.DTFC_Cloned {
	border-bottom: none !important;
}
table.consulta.DTFC_Cloned th {
	background-color: #e0f7fa;
}
table.consulta th {
	font-weight: normal !important;
}
table.consulta.DTFC_Cloned .even td {
	background-color: #e0f7fa;
}
table.consulta.DTFC_Cloned .odd td {
	background-color: #b2ebf2;
}
table.consulta .btn-floating {
	z-index: auto;
}

#toast-container.toast-bottom-right {
	bottom: 60px;
	right: 10px;
}
#toast-container.toast-bottom-right .toast.toast-success {
	min-width: 32px !important;
	width: 32px !important;
	min-height: 50px !important;
	border-radius: 50% 50% 50% 50%;
	background-position: 20px 12px;
	background-color: #00897b;
	box-shadow: 0 0px 20px #004d40; 
}
.carto-menu a {
	padding: 0px !important;
	padding-left: 10px !important;
	padding-right: 10px !important;
}
table a:not(.btn):not(.btn-large):not(.btn-floating):not(td):not('.fc.content') {
    color: black !important;
    font-size: 8px;
    padding: 0px;
}
.radio-option {
	border: 1px solid rgb(200,200,200);
	margin-right: 2px;
	padding: 4px;
	padding-bottom: 6px;
	border-radius: 10px 10px 10px 10px;
}
#cappta-checkout-iframe body {
	background-color: rebeccapurple !important;
}
.extra-large {
	font-size: 30px !important;
}
#frozenLoading {
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 1050;
	width: 100%;
	height: 100%;
	display: none;
	background-color: rgba(0,0,0,0.8);
}

.paginate_button {
	color: rgb(60,60,60) !important;
	text-decoration: underline;
	cursor: pointer;
}

.handle-counter {
	overflow: hidden;
	display:flex; 
}
.handle-counter .counter-minus,  .handle-counter .counter-plus,  .handle-counter input {
	float: left;
  	text-align: center;
}
.handle-counter .counter-minus,  .handle-counter .counter-plus { text-align: center; }
.handle-counter input {
  	width: 50px;
  	height: 36px;
  	border-width: 1px;
  	border-left: none;
  	border-right: none;
  	border-top: 1px solid rgb(120,120,120);;
  	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.btn-counter {
  	height: 38px;
  	width: 38px;
  	padding: 6px 8px;
  	border: 1px solid rgb(120,120,120);
  	background-color: white;
  	color: rgb(120,120,120);
  	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.counter-minus {
	border-radius: 50% 0 0 50%;
	background-color: #ffebee;
}
.counter-plus {
	border-radius: 0 50% 50% 0;
	background-color: #c5e1a5;
}
.produto-small {
	width: 60px;
}
.font-shadow {
	font-weight: BOLD;
	text-shadow: 0px 0px 2px rgba(0,0,0,0.8);
}
.label-lg {
	font-size: 14px !important;
	font-weight: normal;
}

.drag-target {
  z-index: -1;
}
.form-price {
	font-size: 22px;
	font-weight: BOLD;
	color: #26c6da;
	text-shadow: 0px 0px 2px rgba(0,0,0,0.1);
}
.tooltip-message-erro, .tooltip-message-global-erro {
	padding: 4px;
	font-size: 14px;
	font-weight: BOLD;
	text-shadow: 0px 0px 2px rgba(0,0,0,0.8);
	color: white;
	background: #d50000;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.tooltip-message-erro {
	margin-top: -14px;
	margin-bottom: 14px;
	text-align: center;
}
.tooltip-message-global-erro {
	margin: 2px;
}
.tooltip_templates {
	display: none;
}
.icon {
	width: 60px;
	height: 40px;
	text-align: center;
	font-size: 12px;
	padding: 6px;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);
}
.form-menu {
	height: 34px;
	padding-top: 10px;
}
.card-region .card-panel {
	margin: 1px;
	border-radius: 0px;
	padding: 10px;
	padding-left: 14px;
}
.i-radio-label {
	padding-left: 4px;
	font-size: 11px;
}
.tab a {
	color: rgb(80, 80, 80) !important;
	font-weight: BOLD;
}

.tabs .indicator {
	background-color: #0097a7;
}
.card-content .row-title {
	margin-top: -8px;
	background-color: #bbdefb;
}
#toast-container.toast-bottom-left {
	bottom: 60px;
	left: 10px;
}
#toast-container.toast-bottom-left .toast.toast-success {
	min-width: 32px !important;
	min-height: 64px !important;
	border-radius: 50% 50% 50% 50%;
	box-shadow: 0 0px 10px #1b5e20;
	background-color: #388e3c;
	background-position: 20px 20px;
}
.responsive-table {
	padding: 6px;
}
.credit-card {
  	margin: auto;
  	color: #fff;
  	background: url("../img/card-background.png");
  	border: 1px solid BLACK;
  	-webkit-border-radius: 4px;
  	-webkit-background-clip: padding-box;
  	-moz-border-radius: 4px;
  	-moz-background-clip: padding;
  	border-radius: 4px;
  	background-clip: padding-box;
  	overflow: hidden;
}
.credit-card .chip {
  	position: relative;
  	width: 50px;
  	height: 40px;
  	margin-top: 10px;
  	margin-bottom: 10px;
  	background: #fffcb1;
  	background: -moz-linear-gradient(-45deg, #fffcb1 0%, #b4a365 100%);
  	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #fffcb1), color-stop(100%, #b4a365));
  	background: -webkit-linear-gradient(-45deg, #fffcb1 0%, #b4a365 100%);
  	background: -o-linear-gradient(-45deg, #fffcb1 0%, #b4a365 100%);
  	background: -ms-linear-gradient(-45deg, #fffcb1 0%, #b4a365 100%);
  	background: linear-gradient(135deg, #fffcb1 0%, #b4a365 100%);
  	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fffcb1", endColorstr="#b4a365", GradientType=1);
  	border: 1px solid #322d28;
  	-webkit-border-radius: 10px;
  	-webkit-background-clip: padding-box;
  	-moz-border-radius: 10px;
  	-moz-background-clip: padding;
  	border-radius: 10px;
  	background-clip: padding-box;
  	-webkit-box-shadow: 0 1px 2px #322d28, 0 0 5px 0 0 5px rgba(144, 133, 87, 0.25) inset;
  	-moz-box-shadow: 0 1px 2px #322d28, 0 0 5px 0 0 5px rgba(144, 133, 87, 0.25) inset;
  	box-shadow: 0 1px 2px #322d28, 0 0 5px 0 0 5px rgba(144, 133, 87, 0.25) inset;
  	overflow: hidden;
}
.credit-card .chip .side {
  	position: absolute;
  	top: 8px;
  	width: 12px;
  	height: 24px;
  	border: 1px solid #322d28;
  	-webkit-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1) inset;
  	-moz-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1) inset;
  	box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1) inset;
}
.credit-card .chip .side.left {
  	left: 0;
  	border-left: none;
  	-webkit-border-radius: 0 2px 2px 0;
  	-webkit-background-clip: padding-box;
  	-moz-border-radius: 0 2px 2px 0;
  	-moz-background-clip: padding;
  	border-radius: 0 2px 2px 0;
  	background-clip: padding-box;
}
.credit-card .chip .side.right {
  	right: 0;
  	border-right: none;
  	-webkit-border-radius: 2px 0 0 2px;
  	-webkit-background-clip: padding-box;
  	-moz-border-radius: 2px 0 0 2px;
  	-moz-background-clip: padding;
  	border-radius: 2px 0 0 2px;
  	background-clip: padding-box;
}
.credit-card .chip .side:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 100%;
  height: 0px;
  margin: auto;
  border-top: 1px solid #322d28;
  -webkit-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1);
}
.credit-card .chip .vertical {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 8.66666667px;
  height: 12px;
  border: 1px solid #322d28;
  -webkit-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1) inset;
}
.credit-card .chip .vertical.top {
  top: 0;
  border-top: none;
}
.credit-card .chip .vertical.top:after {
  top: 12px;
  width: 17.33333333px;
}
.credit-card .chip .vertical.bottom {
  bottom: 0;
  border-bottom: none;
}
.credit-card .chip .vertical.bottom:after {
  bottom: 12px;
}
.credit-card .chip .vertical:after {
  content: '';
  position: absolute;
  left: -8.66666667px;
  display: inline-block;
  width: 26px;
  height: 0px;
  margin: 0;
  border-top: 1px solid #322d28;
  -webkit-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1);
}
.credit-card .data {
  position: relative;
  z-index: 100;
  text-transform: uppercase;
}
.credit-card .data .pan,
.credit-card .data .name-on-card {
  position: relative;
  z-index: 20;
  letter-spacing: 1px;
  text-shadow: 1px 1px 1px #000;
}
.credit-card .data .pan:before,
.credit-card .data .name-on-card:before,
.credit-card .data .pan:after,
.credit-card .data .name-on-card:after {
  position: absolute;
  z-index: -10;
  content: attr(title);
  color: rgba(0, 0, 0, 0.2);
  text-shadow: none;
}
.credit-card .data .pan:before,
.credit-card .data .name-on-card:before {
  top: -1px;
  left: -1px;
  color: rgba(0, 0, 0, 0.1);
}
.credit-card .data .pan:after,
.credit-card .data .name-on-card:after{
  top: 1px;
  left: 1px;
  z-index: 10;
}
.credit-card .data .pan {
  position: relative;
  z-index: 50;
  margin: 0;
  letter-spacing: 1px;
  font-size: 16px;
}	
.card .card-info {
  font-size: 20px;
  color: rgb(100,100,100);
}
.badge-floating {
	border-radius: 50% !important;
	height: 30px;
	width: 30px;
	line-height: 30px;
	font-size: 20px;
}
.audit-foto {
    float: left;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 4px;
}
.content-section {
	overflow: auto;
}
.input-field, .input-group {
 	margin-top: 1.6rem;
}
.btn-discrete {
	background-color: transparent !important;
	box-shadow: none; 
}
.btn-discrete:FOCUS, .btn-discrete:HOVER {
	background-color: transparent;
}
.btn-discrete i {
	color: gray;
}
.sorting, .sorting_desc, .sorting_asc {
	cursor: pointer;
}
.bold {
	font-weight: BOLD;
}
.tree-wrapper {
  position: relative;
}
.tree-branch {
  position: relative;
  margin-left: 250px;
}
.tree-branch:before {
  content: "";
  width: 50px;
  border-top: 2px solid #eee9dc;
  position: absolute;
  left: -100px;
  top: 50%;
  margin-top: 1px;
}

.entry {
  position: relative;
  min-height: 60px;
}
.entry:before {
  content: "";
  height: 100%;
  border-left: 2px solid #eee9dc;
  position: absolute;
  left: -50px;
}
.entry:after {
  content: "";
  width: 50px;
  border-top: 2px solid #eee9dc;
  position: absolute;
  left: -50px;
  top: 50%;
  margin-top: 1px;
}
.entry:first-child:before {
  width: 10px;
  height: 50%;
  top: 50%;
  margin-top: 2px;
  border-radius: 10px 0 0 0;
}
.entry:first-child:after {
  height: 10px;
  border-radius: 10px 0 0 0;
}
.entry:last-child:before {
  width: 10px;
  height: 50%;
  border-radius: 0 0 0 10px;
}
.entry:last-child:after {
  height: 10px;
  border-top: none;
  border-bottom: 2px solid #eee9dc;
  border-radius: 0 0 0 10px;
  margin-top: -9px;
}
.entry.sole:before {
  display: none;
}
.entry.sole:after {
  width: 50px;
  height: 0;
  margin-top: 1px;
  border-radius: 0;
}

.tree-label {
  display: block;
  min-width: 150px;
  padding: 5px 10px;
  line-height: 20px;
  text-align: center;
  border: 2px solid #eee9dc;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -20px;
}
.box-title {
  font-size: 14px;
  margin-top: -14px;
  display: block;
  color: rgb(80,80,80);
}
.box-sub-title {
  font-size: 12px;
  color: rgb(80,80,80);
}
.box-value {
  font-size: 22px;
  font-weight: BOLD;
  display: block;
  margin-top: 10px;
  color: rgb(80,80,80);
}
.box-value-info {
  margin-top: -6px;
}
.box-value-info .box-value {
  font-size: 18px;
}

.app-page-title {
    padding: 10px;
    position: relative;
}

.app-page-title .page-title-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.app-page-title .page-title-heading {
    font-size: 1.25rem;
    font-weight: 400;
    display: flex;
    align-content: center;
    align-items: center;
}

.app-page-title .page-title-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    align-content: center;
    text-align: center;
    padding: .83333rem;
    margin: 0 10px 0 0;
    border-radius: .25rem;
    width: 40px;
    height: 40px;
}

.app-page-title .page-title-subheading {
    padding: 3px 0 0;
    font-size: .88rem;
    opacity: .6;
    display:block;
}
.app-page-title .page-title-actions {
    margin-left: auto;
}
.card .card-content {
	padding: 15px;
}
.table-link {
	color: black;
	font-size: 12px !important;
}
.table-link, .link-custom {
	cursor: pointer;
}
.table-link, .link-custom:HOVER {
	text-decoration: underline;
}
.card-header {
	padding: 10px;
	border-bottom: 1px solid rgb(240,240,240);
}
.card-header span {
	font-size: 16px;
	color: rgb(80,80,80);
	font-weight: 300;
}
.card-header i {
	margin-right: 6px;
	margin-left: 4px;
	color: rgb(100,100,100);
}
.multiselect.dropdown-toggle {
	border: 1px solid rgb(100,100,100);
}

.tags {
  list-style: none;
  margin: 0;
  overflow: hidden; 
  padding: 0;
}

.tags li {
  float: left; 
}

.tag {
  background: #eee;
  border-radius: 3px 0 0 3px;
  color: rgb(80,80,80) !important;
  display: inline-block;
  cursor: default;
  height: 26px;
  line-height: 26px;
  padding: 0 20px 0 23px;
  position: relative;
  margin: 0 10px 10px 0;
  text-decoration: none;
  -webkit-transition: color 0.2s;
}

.tag > span {
	margin-left: 4px;
}

.tag > a {
	cursor: pointer;
	margin-left: 4px;
	color: rgb(80,80,80) !important;
}

.tag::before {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
  content: '';
  height: 6px;
  left: 10px;
  position: absolute;
  width: 6px;
  top: 10px;
}

.tag::after {
  background: #fff;
  border-bottom: 13px solid transparent;
  border-left: 10px solid #eee;
  border-top: 13px solid transparent;
  content: '';
  position: absolute;
  right: 0;
  top: 0;
}

.tag:hover, .tag:hover a {
  	background-color: #2B579A;
	color: white !important;
}

.tag:hover::after {
   border-left-color: #2B579A; 
}

.tag .more {
	font-size: 16px;
	border-radius: 50%;
	font-weight: BOLD;
	background-color: #e7ebed;
	padding: 6px;
}
.tag:hover .more {
	background-color: #7CB342;
}
.eraser {
  	background: linear-gradient(to right, #6784A0 0%, #6784A0 50%, #D4512D 51%, #D4512D 100%);
}
.card-box {
	margin-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
    border: 1px solid #666;
    background: #fff;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2) inset;
}

.timeline-status {
  margin-top: 10px;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-status .li {
  transition: all 300ms ease-in;
}
.timeline-status .status {
  padding: 0px 4px;
  display: flex;
  justify-content: center;
  border-top: 1px solid #D6DCE0;
  position: relative;
  transition: all 400ms ease-in;
  height: 40px;
}
.timeline-status .status span {
  text-align:center;
  font-weight: 600;
  font-size: 9px;
  margin-top: 10px;
  width: 60px;
}
.timeline-status .status:before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: white;
  border-radius: 14px;
  border: 1px solid #ddd;
  position: absolute;
  top: -8px;
  left: 42%;
  transition: all 200ms ease-in;
}
.timeline-status .li.complete .status {
  border-top: 1px solid #2B579A;
}
.timeline-status .li.complete .status:before {
  background-color: #2B579A;
  border: none;
  transition: all 200ms ease-in;
}
.timeline-status .li.complete .status span {
  color: #2B579A;
}
.timeline-status .li.final.complete .status:before {
  background-color: #7CB342;
  border: none;
  transition: all 400ms ease-in;
}
.timeline-status .li.reprovada.complete .status:before {
  background-color: #ef5350;
  border: none;
  transition: all 400ms ease-in;
}
@media (min-device-width: 320px) and (max-device-width: 700px) {
  .timeline-status {
	list-style-type: none;
	display: block;
  }
  .timeline-status .li {
	transition: all 200ms ease-in;
	display: flex;
	width: inherit;
  }		  		
  .timeline-status .status:before {
	left: -8%;
	top: 30%;
	transition: all 200ms ease-in;
  }
}
.flex-row {
	flex-direction: row;
	margin: 0 auto;
	display: flex;
}
	
.flex-item {
	flex: 1;
	margin: 2px;
	text-align: center;
}

.nav-inner {
  mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 25%, #ffffff 75%, rgba(255, 255, 255, 0) 100%);
  margin: 0 auto;
  background-color: transparent;
  box-shadow: none;
  border-top:1px solid rgb(120,120,120); 
}

.nav-inner ul {
  text-align: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.6);
}

.nav-inner ul li {
  display: inline-block;
  height: 34px;
}

.nav-inner ul li a {
  font-family: "Open Sans";
  text-transform: uppercase;
  color: rgba(80,80,80);
  font-size: 12px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid rgb(180,180,180);
  height: 34px;
  line-height: 34px;
}

.nav-inner ul li a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(0, 35, 122, 0.7);
}

.flex {
  display: flex;
}
.flex .card {
	margin: 4px;
	width: 100%;
}
.info-text-container {
	width: 100%;
	display: block;
}
.info-text-container .title {
	font-size: 14px;
}
.info-text {
  line-height: 60px;
  font-weight: bold;
  color: #505b65;
  text-align: center;
  font-size: 30px;
  font-family: 'Roboto';
}

.info-text span {
  color: #f15755;
}
.info-circle-container {
	width: 100%;
	display: block;
}
.info-circle-container .title {
	font-size: 14px;
}
.info-circle {
  width: 100px;
  height: 100px;
  background: #fcfcfc;
  border-radius: 50%;
  margin-top: 10px;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.2), 0 3px 2px rgba(0, 0, 0, 0.2);
  line-height: 100px;
  font-weight: bold;
  color: #505b65;
  text-align: center;
  font-size: 26px;
  font-family: 'Roboto';
  margin-left: calc(50% - 50px);
}

.info-circle span {
  color: #f15755;
}	

/*==================================================
 * Effect 8
 * ===============================================*/
.effect8
{
  	position:relative;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
            box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.effect8:before, .effect8:after
{
	content:"";
    position:absolute;
    z-index:-1;
    -webkit-box-shadow:0 0 20px rgba(0,0,0,0.8);
    -moz-box-shadow:0 0 20px rgba(0,0,0,0.8);
    box-shadow:0 0 20px rgba(0,0,0,0.8);
    top:10px;
    bottom:10px;
    left:0;
    right:0;
    -moz-border-radius:100px / 10px;
    border-radius:100px / 10px;
}
.effect8:after
{
	right:10px;
    left:auto;
    -webkit-transform:skew(8deg) rotate(3deg);
       -moz-transform:skew(8deg) rotate(3deg);
        -ms-transform:skew(8deg) rotate(3deg);
         -o-transform:skew(8deg) rotate(3deg);
            transform:skew(8deg) rotate(3deg);
}

.map-marker-pin {		  
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  border: 4px solid rgba(0,0,0,0.1);
  transform: rotate(-45deg);
  cursor: pointer;
}

.map-marker-pin .map-marker-pin-text {
	color:white;
	left: 50%;
  	top: 50%;
	width: 100%;
	height: 100%;
	text-align: center;
	font-family: 'Roboto';
	font-size: 22px;
	font-weight: bold;
	-webkit-transform: rotate(45deg);
  	-moz-transform: rotate(45deg);
  	-o-transform: rotate(45deg);
  	-ms-transform: rotate(45deg);
  	transform: rotate(45deg);
}
		
.map-marker-pin.large {
	width: 40px;
  	height: 40px;
}
.map-marker-pin.large .map-marker-pin-text {
	font-size:30px;
}
.map-marker-pin.small {
	width: 20px;
  	height: 20px;
  	border: 2px solid rgba(0,0,0,0.1);
}
.map-marker-pin.small .map-marker-pin-text {
	font-size:16px;
}

.grid {
	display: grid;
}

.grid-panel-tooltip-5 {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-auto-flow: dense;
	max-width: 400px;
	margin: 0 auto;
}

.grid-panel-tooltip-5 .item {
	
	color: #212121;
	padding: 6px;
}

.grid-panel-tooltip-5 .item-icon {
	grid-row: span 2;
	padding-top: 20px;
	text-align: center;
}

.grid-panel-tooltip-5 .item-header {
	grid-column: span 4;
	font-size: 18px;
	padding-top: 10px;
	padding-bottom: 0px;
}

.grid-panel-tooltip-5 .item-content {
	grid-column: span 4;
	font-size: 24px;
	font-weight: BOLD;
	padding-top: 4px;
}

.grid-panel-tooltip-5 .item-content .item-content-suffix {
	float: right;
	margin-right: 10px;
	font-size: 16px;
	font-weight: normal;
	display: inline;
	background: rgba(0,0,0,0.1);
	padding: 4px;
	padding-left: 8px;
	padding-right: 8px;
	border-radius: 8px;
}
.grid-panel-tooltip-5.card-panel {
	padding: 0px;
}
textarea.materialize-textarea.readonly {
	border-bottom: none;
	font-size: 14px;
  		color: rgb(120, 120, 120);
  		padding: 1.0rem 0;
}
@font-face {
	font-family: "Carimbo";
	src: local(Carimbo),
		url("../font/Carimbo Regular.ttf") format("truetype");
	font-weight: 300;
}
.carimbo-pago {
	font-family: "Carimbo";
	font-size: 30px;
	text-transform: uppercase;
	font-weight: normal;	
}
.tachado {
	text-decoration: line-through;
}
.info-h1 {
	font-size: 20px;
}
.info-h2 {
	font-size: 14px;
}
.info-h3 {
	font-size: 12px;
}
.tag-lote {
	display: inline-block;
  
    width: auto;
	height: 34px;
	
	background-color: #95c981;
	-webkit-border-radius: 3px 4px 4px 3px;
	-moz-border-radius: 3px 4px 4px 3px;
	border-radius: 3px 4px 4px 3px;
	
	border-left: 1px solid #95c981;

	margin-left: 17px;
	margin-bottom: 4px;
	
	position: relative;
	
	color: rgb(60,60,60);
	font-weight: 300;
	font-family: Roboto;
	font-size: 20px;
	line-height: 34px;

	padding: 0 10px 0 10px;
}

/* Makes the triangle */
.tag-lote:before {
	content: "";
	position: absolute;
	display: block;
	left: -16px;
	width: 0;
	height: 0;
	border-top: 17px solid transparent;
	border-bottom: 17px solid transparent;
	border-right: 17px solid #95c981;
}

/* Makes the circle */
.tag-lote:after {
	content: "";
	background-color: white;
	border-radius: 50%;
	width: 8px;
	height: 8px;
	display: block;
	position: absolute;
	left: -9px;
	top: 13px;
}
.tag-lote-small {
	display: inline-block;
  
    width: auto;
	height: 24px;
	
	background-color: #7abc85;
	-webkit-border-radius: 3px 4px 4px 3px;
	-moz-border-radius: 3px 4px 4px 3px;
	border-radius: 3px 4px 4px 3px;
	
	border-left: 1px solid #7abc85;

	margin-left: 12px;
	margin-bottom: 4px;
	
	position: relative;
	
	color: rgb(60,60,60);
	font-weight: 300;
	font-family: Roboto;
	font-size: 14px;
	line-height: 24px;

	padding: 0 10px 0 10px;
}

/* Makes the triangle */
.tag-lote-small:before {
	content: "";
	position: absolute;
	display: block;
	left: -11px;
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-right: 12px solid #7abc85;
}

/* Makes the circle */
.tag-lote-small:after {
	content: "";
	background-color: white;
	border-radius: 50%;
	width: 4px;
	height: 4px;
	display: block;
	position: absolute;
	left: -2px;
	top: 10px;
}

.tag-lote-small span.more {
	margin-left: 4px;
	padding-left: 4px;
	padding-right: 4px;
	border-radius: 50%;
	background-color: #63a56c;
	color:white;
	font-size: 16px;
}

.row-detail {
	background: #bbdefb !important;
}

.row-alpha.odd {
	background: #c8e6c9 !important;
}
.row-alpha.odd:HOVER {
	background: #a5d6a7 !important;
}
.row-alpha.even {
	background: #e8f5e9;
}
.row-alpha.even:HOVER {
	background: #a5d6a7 !important;
}		
.row-alpha td {
	border-top: 1px solid #a5d6a7 !important;
}

.col-filtro-relatorio {
	display: table;
}

.col-filtro-relatorio .suffix {
    vertical-align: middle
}
.card-onion-title {
	font-size: 20px;
	font-weight: BOLD;
	color: #303030;
}
.card-onion-sub-title {
	font-size: 12px;
	color: #303030;
}
.dev {
	border: 2px dashed #303030;
	background: #e2e2e2;
	padding: 6px;
	border-radius: 4px;
}
.table-bordered {
    box-sizing: border-box !important;
}
.top-header {
	border-bottom: 1px solid black;
}
.border-left {
	border-left: 1px solid black;
}
.table-responsive {
	padding-bottom: 10px;
}
.table-responsive th, .table-responsive td, .table-responsive tr {
	box-sizing: border-box !important;
}   
.table-responsive::-webkit-scrollbar-track {
	background-color: #F3F3F3;
	border-radius: 4px;
}
.table-responsive::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	border-radius: 4px;
}
.table-responsive::-webkit-scrollbar-thumb {
	background-color: #dbdbdb;
	border-radius: 4px;
}
.layout-2 .fixed-action-btn {
	margin-right: 240px;
}
.layout-3 .fixed-action-btn {
	margin-right: 50px;
}
.skeleton {
     border-radius: 4px;
     background: rgba(130, 130, 130, 0.2);
     background: -webkit-gradient(linear, left top, right top, color-stop(8%, rgba(130, 130, 130, 0.2)), color-stop(18%, rgba(130, 130, 130, 0.3)), color-stop(33%, rgba(130, 130, 130, 0.2)));
     background: linear-gradient(to right, rgba(130, 130, 130, 0.2) 8%, rgba(130, 130, 130, 0.3) 18%, rgba(130, 130, 130, 0.2) 33%);
     background-size: 400px 40px;
     --animation: wave-lines 2s infinite ease-out;
     animation: shine-lines 1.6s infinite linear;
}

@keyframes wave-lines {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

@keyframes shine-lines {
  0% {
    background-position: -100px;
  }
  40%, 100% {
    background-position: 140px;
  }
}
 		
.skeleton-select {
	width: 100%;
	min-width: 120px;
	height: 30px;
}

.skeleton-button-floating {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.scroll::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.scroll::-webkit-scrollbar {
	width: 8px;
	background-color: #F5F5F5;
}

.scroll::-webkit-scrollbar-thumb {
	background-color: rgba(0,0,0,0.5);
}
.with-modal-footer-fixed {
	padding-bottom: 64px !important;
	background: #cfd4d6;
}
.modal-footer-fixed {
	position: absolute;
	bottom: 0px;
	left: 0px;
	padding: 10px;
	width: calc(100% - 15px);
	background: #EFF1F2;
	display: flex;
	justify-content:center;
	align-items: center;
	z-index: 1;
}
.card-panel-impressao {
	padding: 10px 14px 0px 10px !important;
	margin-bottom: 4px;
	border-radius: 24px;
	border-left: 3px solid #14B8D3;
			/*box-shadow: -3px 0 0 #2A5698;*/
}
.btn-floating i {
	font-size: 14px !important;
}
.btn-floating.btn-large i {
	font-size: 22px !important;
}
.page-title-icon .fa {
	font-size: 2rem !important;
}
.nav-tabs i {
	font-size: 16px !important;
}
.navbar-fixed i {
    font-size: 18px !important;
}
.animation-exclamation {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #7CB342;
	width: 40px;
	height: 40px;
	position: absolute;
	top: -10px;
	right: -14px;
	border-radius: 50%;
  	animation: shake 4s infinite;
  	--animation-duration: 2s;
  	--animation-iteration-count: infinite;
}
	   		
.offer-banner {
    position:relative;
    display:inline-flex;
    align-items:center;
    border-radius: 8px;
 			height: 90px;
    color:#fff;
    font:700 20px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    text-transform:uppercase;
    letter-spacing:.6px;

    background:linear-gradient(120deg,#D7C53B,#D32B2A,#FFAB40);
    background-size:300% 300%;
    animation:flow 10s infinite;
    
    overflow: visible !important; /* sobrescreve overflow do card-panel */
    
  }
  		
  @keyframes flow{
    0% { background-position:0% 50%; }
    50%{ background-position:100% 50%; }
    100%{ background-position:0% 50%; }
  }
  @keyframes shine{
    0%,100%{ background-position:0% 0%; opacity:.25; }
    50%    { background-position:100% 0%; opacity:.5; }
  }