/**
* BASICS
**/

@import url('https://fonts.googleapis.com/css?family=Red+Hat+Text:400,400i,500,500i,700,700i&display=swap&subset=latin-ext');

.wrapper {
  display: flex;
  width: 100%;
}

body {
  font-family: 'Red Hat Text', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fbfbfb; /* fallback for old browsers */
  background: -webkit-linear-gradient(right, #fbfbfb, #fff);
  background: -moz-linear-gradient(right, #fbfbfb, #fff);
  background: -o-linear-gradient(right, #fbfbfb, #fff);
  background: linear-gradient(to left, #fbfbfb, #fff);
}

body.wait {
  cursor:wait;
}

p {
  font-family: 'Red Hat Text', sans-serif;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1.7em;
  color: #999;
}

a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}

.navbar {
  padding: 15px 10px;
  background: #fff;
  border: none;
  border-radius: 0;
  margin-bottom: 40px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
  box-shadow: none;
  outline: none !important;
  border: none;
}

.line {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #ddd;
  margin: 40px 0;
}

.title {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #4f5f6f;
}

.title-description {
  margin: 0;
  font-size: 0.9rem;
  font-weight: normal;
  color: #7e8e9f;
}

.striped {
  background: repeating-linear-gradient( 135deg, #fff, #fff 10px, #efefef 10px, #efefef 20px );
  background-color: rgba(0, 0, 0, 0);
}

/**
* SCROLLBAR
**/
::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(255,0,0,0.4);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

/**
* DROPDOWN
**/
.dropdown-menu {
  border-radius: 0 !important;
}

.dropdown-item {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
}

.dropdown-menu.radius {
  border-radius: 10px !important;
  margin-top: 5px;
}

.dropdown-menu..dropdown-item {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  margin: inherit 10px;
}

/**
* BUTTONS
**/
a.minibutton {
  float: right;
  margin: 8px 0;
  margin-left: 0px;
  margin-left: 0.7em;
  color:
  #fff;
}
.minibutton {
  border-radius: 0;
  width: 20px;
  height: 20px;
  padding: 0.18em;
  font-size: 0.7em;
  margin-bottom: 6px;
}

.btn {
  background-image: none;
  border-radius: 0;
  margin-bottom: 5px;
  line-height: 1.2;
}

.btn.btn-primary {
  color: #212529;
  background-color: #4bcf99;
  border-color: #4bcf99;
}

.btn.btn-primary,
.btn.btn-primary:hover {
  color: #ffffff;
  background-color: #3fbb88;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  background-color: #3fbb88 !important;
  border: 0 !important;
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(63, 187, 136, 0.5) !important;
}

.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: none !important;
}

.btn.btn-danger {
  color: #212529;
  background-color: #bf2e3c;
  border-color: #bf2e3c;
}

.btn.btn-danger,
.btn.btn-danger:hover {
  color: #ffffff;
  background-color: #bf2e3c;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  background-color: #9d3737 !important;
  border: 0 !important;
}

.btn-danger:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(157, 55, 55, 0.5) !important;
}

/**
* TIPOGRAFIA
**/
.text-black {
  font-weight: 500;
  color: #333;
  letter-spacing: 1px;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-smaller {
  font-size: 0.8em;
}
.no-wrap{
  white-space: nowrap;
}

/**
* FORMS
**/
select,
input,
textarea {
  border-radius: 0 !important;
  font-size: 14px !important;
}

select.uppercase,
select.uppercase option,
input.uppercase {
  text-transform:uppercase;
}

/**
* PAGINATIONS
**/
ul.pagination {
  border-radius: 0 !important;
}

ul.pagination li a.page-link {
  border-radius: 0 !important;
}

ul.pagination li.page-item.active a.page-link {
  z-index: 1;
  color: #fff;
  background-color: #4bcf99 !important;
  border-color: #5bbd95;
}

/* ---------------------------------------------------
MEDIAQUERIES
----------------------------------------------------- */

#content {
  width: calc(100% - 250px);
  padding: 40px;
  padding-top: 60px;
  min-height: 100vh;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  right: 0;
}

#content.active {
  width: 100%;
}

@media (max-width: 768px) {
  #content {
    width: 100%;
  }
  #content.active {
    width: calc(100% - 250px);
  }
}

/**
* TITLEBAR
**/
.titlebar {
  position: relative;
}

.titlebar .title-block {
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d7dde4;
}

.titlebar .items-search {
  position: absolute;
  margin-bottom: 15px;
  right: 0;
  top: 0;
}

.titlebar .items-search #buttons_group .act_btn {
  margin-right: 5px;
}

.titlebar .items-search > form {
  display: inline-block;
}

.titlebar .items-search > a {
  display: inline-block;
}

.titlebar .items-search div.action {
  display: inline-block;
}

.titlebar .items-search > form input.search {
  border-radius: 0;
  height: 27px;
  font-size: 12px;
}

.titlebar .items-search > form button.search {
  background-image: none;
  border-radius: 0;
  margin-bottom: 0;
  line-height: 1;
  font-size: 12px;
}

.titlebar .title-block .action {
  display: inline;
}

.titlebar .dropdown-menu {
  border-radius: 0;
}

.titlebar .dropdown-menu.show {
  display: block;
}

.titlebar .dropdown-menu.show i.fa {
  font-size: 12px;
  width: 20px;
  text-align: center;
}

.titlebar .title-block .action a {
  padding: 10px 15px;
  letter-spacing: 1px;
  font-size: 14px;
}

.titlebar .title-block .action a:hover {
  background-color: #e9e9e9;
}

.titlebar .dropdown-item.active,
.titlebar .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #4bcf99;
}

.titlebar .dropdown-menu .dropdown-item {
  display: block;
  padding: 6px 15px;
  clear: both;
  font-weight: normal;
  color: #4f5f6f;
  white-space: nowrap;
  -webkit-transition: none;
  transition: none;
}

.titlebar .dropdown-menu .dropdown-item:hover{
  background-color: #e9e9e9;
  text-decoration: none;
}

.titlebar .title-block .action a .icon {
  margin-right: 5px;
  text-align: center;
  width: 16px;
}

/**
*  TOP HEADER
**/
#top_header {
  background-color: #d7dde4;
}

#top_header .navbar-nav .nav-link {
  letter-spacing: 1px;
  font-size: 14px;
}

#top_header .navbar-nav .dropdown-menu {
  position: absolute;
  font-size: 0.9em !important;
  background-color: #333e48;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 0;
  padding: 0;
}

#top_header .navbar-nav .dropdown-item {
  color: rgba(255, 255, 255, 0.5);
  text-transform: lowercase;
  letter-spacing: 1px;
  padding: 0.75rem 1.1rem;
}

#top_header .navbar-nav .dropdown-item:hover {
  color: #ffffff;
  background-color: #2d363f;
  text-decoration: none;
}

#top_header .logo-container {
  position: relative;
  display: block;
  width: 250px;
}

#top_header  .logo-container .navbar-brand {
  display: inline-block;
}

#top_header .logo-container button {
  color: #ddd;
  position: absolute;
  right: 0;
  top: 1px;
  border-radius: 0;
  background-color: transparent;
  border-color: transparent;
}

#top_header .logo-container button:hover,
#top_header .logo-container button:active,
#top_header .logo-container button.active {
  color: #fff !important;
  background-color: transparent !important;
  border-color: transparent !important;
}

#top_header .navbar-nav .nav-item {
  margin-right: 10px;
}

/**
* LOGIN Page
**/
@import url(https://fonts.googleapis.com/css?family=Roboto:300);

.login-page {
  width: 360px;
  padding: 8% 0 0;
  margin: auto;
}
.form {
  position: relative;
  z-index: 1;
  background: #ffffffc4;
  max-width: 360px;
  margin: 0 auto 100px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.form input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.form button {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: #4CAF50;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}
.form button:hover,.form button:active,.form button:focus {
  background: #43A047;
}
.form .message {
  margin: 15px 0 0;
  color: #b3b3b3;
  font-size: 12px;
}
.form .message a {
  color: #4CAF50;
  text-decoration: none;
}
.form .register-form {
  display: none;
}
.container {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0 auto;
}
.container:before, .container:after {
  content: "";
  display: block;
  clear: both;
}
.container .info {
  margin: 50px auto;
  text-align: center;
}
.container .info h1 {
  margin: 0 0 15px;
  padding: 0;
  font-size: 36px;
  font-weight: 300;
  color: #1a1a1a;
}
.container .info span {
  color: #4d4d4d;
  font-size: 12px;
}
.container .info span a {
  color: #000000;
  text-decoration: none;
}
.container .info span .fa {
  color: #EF3B3A;
}


/**
* RADIUS & BORDERS
**/


.radius{
  border-radius: 20px !important;
}

.radius-xs{
  border-radius: 5px !important;
}

.radius-md{
  border-radius: 10px !important;
}

.radius-lg{
  border-radius: 15px !important;
}

.radius-xl{
  border-radius: 20px !important;
}

.bottom-radius{
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
}

.top-radius{
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
}

.no-border{
  border: 0 !important;
}


/**
* INFO TAB
**/


.info_tab {
  background-color: #e9ecef5e;
  padding: 1.5rem 0;
}

.info_label {
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  font-weight: lighter;
  font-size: 0.8em;
}

.info_value {
  font-size: 2em;
  color: #52AEA0;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  font-family: "OpenSans", sans-serif;
  padding: 0;
  margin: 0;
  line-height: 35px;
}

.info_value.danger {
  color: #D2654B;
}

.info_value.warning {
  color: #ECD870;
}
