/* 
    Created on : 29/06/2020, 01:11:49 PM
    Author     : Axel Durand www.axeldurand.com
*/
:root {
    --color-I: #1e1c56;
    --color-II: #009ee3;
    --color-III: #ea0614;
    --color-IV: #00af50;
}

.bg-primary{
    background-color: var(--color-I) !important;
}

.display-none{
    display: none;
}

.navbar-brand{
    color: #FFF;
    font-weight: 700;
}
.navbar-brand span{
    opacity: .5;
}

.navbar a{
    color: #FFF;
}

label{
    font-weight: bold;
}

.producto-preview{
    width: 100%;
    text-align: left;
    border: 0;
}
.producto-preview .titulo{
    font-size: 1em;
    margin:0;
}
.producto-preview .desc{
    font-size: .75em;
}
.producto-preview .precio{
    margin: 0;
}
.producto-preview img{
    max-height: 100px;
}

.card-pedido{
    width: 100%;
    text-align: left;
}

.card-Pendiente{
  border-top: 5px solid #ffc107;
}

.btn-primary{
  background: var(--color-I);
  border-color: var(--color-I);
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-I);
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.navbar-nav .dropdown-menu { 
  right: 0px;
  left: auto;
}
.navbar-nav  .dropdown-menu a{
  color: #000;
}




.custom-file{
  display: block;
  width: 100%;
  height: 96px;
  cursor:pointer;
}
.custom-file-input{
  width: 100%;
  height: 96px;
  cursor:pointer;
}
.custom-file-label{
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  content: '<i class="fal fa-camera fa-3x"></i>Elegir imagen';
  display: block;
  font-weight: 400;
  color: #BDC3C7;
  text-align: center;
  vertical-align: middle;
  background-color: transparent;
  border: 2px dashed #BDC3C7;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  cursor:pointer;
}
.custom-file-label::hover{
  cursor:pointer;
}
.custom-file-label::after{
  opacity: 0;
}

.bubble{
  position: relative;
  background: #f2f2f2;
  padding: 15px;
  border-radius: 20px 20px 20px 0;
  margin: 0;
}

.datepicker .input-group-addon{
  padding-top: 7px;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
}

.datepicker table tr td.active.active, 
.datepicker table tr td.active.disabled.active, 
.datepicker table tr td.active.disabled:active, 
.datepicker table tr td.active.disabled:hover.active, 
.datepicker table tr td.active.disabled:hover:active, 
.datepicker table tr td.active:active, 
.datepicker table tr td.active:hover.active, 
.datepicker table tr td.active:hover:active {
    background-color: var(--color-I) !important;
    background-image: var(--color-I) !important;
}