html,
body {
  position: relative;
  height: 100%;
}
body {
  background: url("/static/img/wheelbe/banderafondo.png");
  background-size: cover;
}
a,
a:visited,
a:hover,
a:active {
  color: #6ebe4b;
  text-decoration: none;
}
/**NAVBARS**/
.navbar-top .dropdown .dropdown-toggle::after {
  display: none;
}
/** FORM CONTAINER **/
.form-container {
  /*height: 100%;*/
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 16px;
  color: #737277;
  /** INPUTS **/
}
.form-container legend {
  font-size: 1rem;
  color: #6ebe4b;
  font-weight: bold;
}
@media (max-width: 800px) {
  .form-container {
    height: 100% !important;
  }
}
@media (max-width: 640px) {
  .form-container {
    font-size: 14px;
    height: auto;
  }
}
.form-container .logo {
  display: block;
  text-align: center;
  margin-bottom: 1.5rem;
}
.form-container .logo img {
  width: 250px;
  max-width: 100%;
}
@media (max-width: 800px) {
  .form-container .logo img {
    width: 325px;
  }
}
.form-container .form-group {
  /* position: relative;
     margin-bottom: 1.25rem;
     padding-top: 1.4rem;

     input:focus{
       outline: none!important;
       box-shadow:none!important;
     }
     input[type="text"],
     input[type="email"],
     input[type="password"]{
         border-radius: 0;
         border: 0;
         border-bottom: 1px solid @green-wheelbe;
         color: @darktext;
         position: relative;
         box-sizing: border-box;
         height: auto;
         padding: 0 5px;
     }

     input[type="text"]::placeholder ,
     input[type="email"]::placeholder ,
     input[type="password"]::placeholder {
         color: @gray;
     }

     input:placeholder-shown{
         border-radius: 0;
         border: 0;
         border-bottom: 1px solid @gray;
         background: @bgwhite;
     }*/
}
.form-container .form-group textarea {
  width: 100%;
  border: 1px solid #000000;
  color: #000000;
  border-radius: 1rem;
  padding: .1rem .75rem;
  font-size: .75rem !important;
  line-height: 1.3rem;
}
.form-container .form-group button[type="submit"] {
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 40px;
  min-width: 50%;
  border: 0;
  background: linear-gradient(270deg, #6ebe4b 50%, #a6ce39 100%) !important;
}
@media (max-width: 640px) {
  .form-container .form-group button[type="submit"] {
    min-width: 70%;
  }
}
.form-container .form-control {
  height: auto;
  padding: .1rem .75rem;
  font-size: .75rem !important;
  line-height: 1.3rem;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 2rem;
}
.form-container .input-group .input-group-append:not(:last-child) > .btn {
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
}
.form-container .input-group .input-group-append.custom-dropdown select {
  width: 100%;
  background-color: #72bf44;
  color: #fff;
  font-size: inherit;
  padding-right: 2.95rem;
  margin: 0;
  border-radius: 0 2rem 2rem 0;
  text-indent: 0.01px;
  text-overflow: '';
  -webkit-appearance: button;
}
.form-container .input-group-append.custom-dropdown::before {
  background-color: #6ebe4b;
  border: 1px solid #000000;
  border-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.form-container .input-append.custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
/*Checkboxes & Radios*/
.custom-checkbox .custom-control-label {
  position: absolute;
}
.custom-checkbox .custom-control-label::before {
  background-color: transparent;
  border-radius: 0;
  width: 1.2rem;
  height: 1.2rem;
  top: .15rem;
  left: -1.2rem;
  border: 1px solid #000000;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: transparent;
  border-color: transparent;
  color: #6ebe4b;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  content: '\f00c';
  font-family: FontAwesome;
  color: #6ebe4b;
  background-image: none;
  font-size: 1rem;
  line-height: 1.4;
  left: -1.1rem;
}
.custom-checkbox .custom-control-label::after {
  position: absolute;
  top: 0;
  left: -1.5rem;
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  content: "";
}
.custom-checkbox.switch .custom-control-label::before {
  background-color: transparent;
  border-radius: 0;
  left: -0.75rem;
  border: 0;
  content: "\f204";
  font-family: fontAwesome;
  font-size: 1.8em;
  line-height: .75;
  color: #6ebe4b;
}
.custom-checkbox.switch .custom-control-input:checked ~ .custom-control-label::after {
  top: 0;
  border: 0;
  content: "\f205";
  font-family: fontAwesome;
  font-size: 1.8em;
  line-height: .86;
  color: #6ebe4b;
}
.custom-checkbox.switch .custom-control-input:checked ~ .custom-control-label::before {
  content: "";
}
textarea:focus,
input:focus {
  outline: none;
}
/*Custom Range*/
.custom-range::-webkit-slider-thumb {
  background: #666666 !important;
}
.custom-range::-moz-range-thumb {
  background: #666666 !important;
}
.custom-range::-ms-thumb {
  background: #666666 !important;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem #666666 !important;
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem #666666 !important;
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem #666666 !important;
}
/*File browser*/
.custom-file {
  height: auto;
}
.custom-file .custom-file-label {
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 20px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: auto;
  padding: .1rem .75rem;
  line-height: 1.8;
  font-size: 0.75rem !important;
}
.custom-file .custom-file-label::after {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 3;
  display: block;
  height: auto;
  padding: 0.375rem 1rem;
  line-height: .75;
  color: #ffffff;
  content: "\f002" !important;
  background-color: #6ebe4b;
  border: 0.06rem solid #000000;
  border-radius: 20px;
  font-family: fontAwesome;
}
.custom-file .custom-file-input {
  height: auto;
}
/* Custom dropdown Select */
.custom-dropdown {
  position: relative;
  display: block;
  vertical-align: middle;
  padding: 0 !important;
}
.custom-dropdown select {
  width: 100%;
  background-color: #ffffff;
  color: #333;
  font-size: inherit;
  padding: .3em;
  padding-right: 2.5em;
  border: 1px solid #6ebe4b;
  margin: 0;
  border-radius: 0;
  text-indent: 0.01px;
  text-overflow: '';
  -webkit-appearance: button;
  /* hide default arrow in chrome OSX */
}
.custom-dropdown::before,
.custom-dropdown::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.custom-dropdown::after {
  /*  Custom dropdown arrow */
  content: "\25BC";
  height: 1em;
  font-size: .625em;
  line-height: 1;
  right: 1.2em;
  top: 50%;
  margin-top: -0.5em;
}
.custom-dropdown::before {
  /*  Custom dropdown arrow cover */
  width: 2em;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0;
}
.custom-dropdown select[disabled] {
  color: rgba(255, 255, 255, 0.3);
}
.custom-dropdown select[disabled]::after {
  color: rgba(255, 255, 255, 0.1);
}
.custom-dropdown::before {
  background-color: #6ebe4b;
}
.custom-dropdown::after {
  color: #ffffff;
}
.custom-file.image .custom-file-label::after {
  content: "\f03e";
}
/* Custom dropdown Select */
.custom-dropdown {
  position: relative;
  display: block;
  vertical-align: middle;
  padding: 0;
}
.custom-dropdown select {
  width: 100%;
  background-color: #ffffff;
  color: #333;
  font-size: inherit;
  padding-right: 2.5em;
  margin: 0;
  border-radius: 2rem;
  text-indent: 0.01px;
  text-overflow: '';
  -webkit-appearance: button;
  /* hide default arrow in chrome OSX */
}
.custom-dropdown::before,
.custom-dropdown::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.custom-dropdown::after {
  /*  Custom dropdown arrow */
  content: "\f078";
  height: 1em;
  font-size: 1rem;
  line-height: 1;
  right: 1rem;
  top: 50%;
  margin-top: -0.5em;
  font-family: fontAwesome;
}
.custom-dropdown::before {
  /*  Custom dropdown arrow cover */
  width: 3em;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 2rem;
}
.custom-dropdown select[disabled] {
  color: #000000;
}
.custom-dropdown select[disabled]::after {
  color: rgba(255, 255, 255, 0.1);
}
.custom-dropdown::before {
  background-color: #6ebe4b;
  border: 1px solid #000000;
}
.custom-dropdown.disabled::before {
  background-color: #737277;
  border: 1px solid #444242;
}
.custom-dropdown::after {
  color: #ffffff;
}
/** LABELS **/
label {
  color: #000000;
  margin-bottom: 0;
}
input[type="text"] + label,
input[type="email"] + label,
input[type="password"] + label {
  display: inline-block;
}
input:placeholder-shown + label {
  display: none;
}
/*BUTTONS*/
.btn-action {
  width: 70px;
  height: 70px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.btn-action:hover {
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.btn-action.btn-action-ok {
  background: url(/static/img/wheelbe/icondone.png);
}
.btn-action.btn-action-ok:hover {
  background: url(/static/img/wheelbe/icondonegreen.png);
}
.btn-action.btn-action-marker {
  background: url(/static/img/wheelbe/markergraymenu.png);
}
.btn-action.btn-action-marker:hover {
  background: url(/static/img/wheelbe/markermenublue.png);
}
.btn-action.btn-action-cancel {
  background: url(/static/img/wheelbe/cancelgreen.png);
}
.btn-action.btn-action-cancel:hover {
  background: url(/static/img/wheelbe/cancelred.png);
}
.btn-action.btn-action-small {
  width: 50px;
  height: 50px;
}
.text-accent {
  color: #6ebe4b !important;
}
.border-accent {
  border-color: #6ebe4b !important;
}
.bg-accent {
  background-color: #6ebe4b;
  color: #ffffff;
}
.btn-outline-primary,
.btn-outline-primary:hover,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
  background: transparent;
  border-color: #6ebe4b;
  color: #6ebe4b;
}
/** LOGIN FORM **/
.form-signin {
  width: 100%;
  /*max-width: 330px;
  padding: 15px;*/
  margin: auto;
}
@media (max-width: 800px) {
  .form-signin {
    max-width: 70%;
  }
}
@media (max-width: 640px) {
  .form-signin {
    max-width: 80%;
  }
}
/** FOOTER **/
.footer {
  text-align: center;
  left: 0;
  bottom: 0;
  width: 100%;
  position: relative;
  display: block;
  height: auto;
  margin-top: -30px;
}
@media (max-width: 800px) {
  .footer {
    position: absolute !important;
    left: 0;
    bottom: 15px !important;
    height: 60px;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .footer {
    position: relative !important;
    display: block;
    height: auto;
    font-size: 14px;
    margin-top: -30px;
  }
}
/** STARS RATE **/
.Rate__star.filled[data-v-59a74259] {
  color: #6ebe4b !important;
}
button.Rate__star:not(.filled) .icon[data-v-59a74259] {
  stroke-width: 2;
  color: white;
  stroke: #6ebe4b;
}
i.fa.fa-star,
i.fa.fa-star-o {
  color: #6ebe4b;
}
/** HOJA DE INSPECCION **/
.card-header {
  background-color: white;
}
.card-header h6 {
  font-size: .87rem;
}
.card-header button[data-toggle="collapse"].collapsed::before {
  content: "\f078";
  font-family: fontAwesome;
}
.card-header button[data-toggle="collapse"]:not(.collapsed)::before {
  content: "\f077";
  font-family: fontAwesome;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #6ebe4b;
}
/** CAR INVENTORY CAROUSEL**/
.inventory-carousel .carousel-item {
  padding-right: 2px;
}
.inventory-carousel .carousel-item .removeImage {
  background: #ff0000;
  color: #ffffff;
  cursor: pointer;
  display: block;
  padding: 2px 4px;
  position: absolute;
  top: 2px;
  right: 4px;
}
.inventory-carousel .slick-prev:before {
  content: "\f053" !important;
  font-family: FontAwesome;
  color: #6ebe4b !important;
}
.inventory-carousel .slick-next:before {
  content: "\f054" !important;
  font-family: FontAwesome!important;
  color: #6ebe4b !important;
}
