/**
 * Login page
 */

.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #f6f6f6;
}

.login-container .content {
  flex-grow: 1;
}

.form-signin {
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
  color: #1d1b1b;
  text-align: center;
}

h2 {
  text-align: center;
  color: #1d1b1b;
}

.td-no-data {
  text-align: center;
}

table.lead_preview {
  width: 100%;
  background-color: #fff;
}

table.lead_preview thead th {
  border-color: #009688;
  background-color: #009688;
  color: #fff;
}

table.lead_preview td {
  border-left: 1px solid #e0e0e0;
}

table.lead_preview tbody > tr {
  border-bottom: 1px solid #e0e0e0;
}

table.lead_preview td,
table.lead_preview th {
  padding: 1em 0.5em;
  width: 1;
}

table.lead_preview tbody tr.head {
  border-color: #009688;
  background-color: #009688;
  color: #fff;
  text-transform: uppercase;
}

.export-actions {
  padding: 20px;
  font-weight: 800;
}

.leads-list-table-container {
  padding: 0 20px;
}

.back-button {
  float: right;
}

.header {
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px;
  height: 50px;
  background: #009688;
  color: #fff;
}

.header a {
  color: #fff;
}

.table td,
.table th {
  vertical-align: middle;
}

/**
 * Global
 */
html {
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #717171;
  background-color: transparent;
}

.global-container {
  display: block;
  position: relative;
  width: 100vw;
  height: 100vh;
}

.side-nav-container {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 60px;
}

.side-nav-header {
  background-color: #ea5a5a;
  color: #fef8f8;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}

.side-nav-content {
  margin-top: 10px;
}

.side-nav-element {
  display: block;
  color: #a1a5ba;
  font-size: 25px;
  text-align: center;
  padding: 15px 10px;
}

.side-nav-element:hover {
  background: #4c4f5e;
  color: #a1a5ba;
  text-decoration: none;
}
.side-nav-element .description {
  font-size: 12px;
  margin-top: 10px;
}

.content-container {
  display: block;
  position: absolute;
  top: 0;
  background-color: #f6f6f6;
  left: 60px;
  bottom: 0;
  right: 0;
}

.header-container {
  position: fixed;
  left: 60px;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  background: #fff;
  height: 60px;
  z-index: 1;
}

.title {
  color: black;
  font-size: 24px;
  font-weight: 500;
}

.sub-title {
  color: #979797;
  font-size: 90%;
}

.inner-content {
  display: block;
  background: #fff;
  margin: 80px 20px 20px 20px;
  position: relative;
  min-height: calc(100% - 100px);
}

.header-dropdown-custom {
  /* z-index: 999; */
}

.header-dropdown-custom::after {
  background: #fff;
  content: "";
}

.dropdown-button {
  cursor: pointer;
  padding: 10px 25px 10px 15px;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #f1f1f1;
  color: #717171;
}

.dropdown-button:hover,
.dropdown-button:active {
  background-color: #fafafa;
}

.dropdown-button-icon {
  width: 30px;
  height: 30px;
  background: #a7bfef;
  color: #2a6496;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 3px;
  cursor: pointer;
}

.dropdown-button::after {
  position: absolute;
  left: 50px;
  top: 25px;
  color: #2a6496;
}

.sites-container,
.leads-container {
  width: 100%;
  height: 100%;
  padding: 10px;
}

.sites-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sites-button {
  margin-top: 10px;
}

.sites-container .custom-select {
  min-width: 300px;
  width: 70%;
  text-align: center;
}

.sites-list-label {
  font-weight: 700;
  font-size: 18px;
}

/**
 * leads page
 */
.leads-header {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.filters-title,
.begin-date-container label,
.end-date-container label {
  font-size: 12px;
  font-weight: 700;
  color: #b0b0b0;
}

.begin-date-container label,
.end-date-container label {
  width: 25px;
}

.filters-title,
.begin-date-container,
.end-date-container {
  margin-bottom: 10px;
}

.begin-date-container,
.end-date-container {
  display: flex;
  align-items: flex-end;
}

.leads-group-action-radio {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 10px;
}

.radio-pdf,
.radio-xls {
  text-align: center;
  padding: 0px 15px;
}

.radio-pdf label,
.radio-xls label {
  margin: 0;
  display: block;
  font-size: 50px;
  cursor: pointer;
}

.radio-pdf label {
  color: #ea5a5a;
}
.radio-xls label {
  color: #8bc34a;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f6f6f6;
}

.bg-black {
  background-color: #323544;
  color: #a1a5ba;
}

/* Scrollbar hack */
.slimScrollBar {
  border-radius: 0 !important;
}
::-webkit-scrollbar {
  width: 8px;
  height: 7px;
}
::-webkit-scrollbar-thumb {
  background-color: #e9ecef;
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(50, 50, 50, 0.6);
}
::-webkit-scrollbar-track {
  background-color: #fff;
}
::-webkit-scrollbar-track:hover {
  background-color: rgba(50, 50, 50, 0.2);
}
