:root {
    --yellow-50: #FFFBEB;
    --yellow-100: #FEF3C7;
    --yellow-200: #FDE68A;
    --yellow-300: #FCD34D;
    --yellow-400: #FBBF24;
    --yellow-500: #F59E0B;
    --yellow-600: #D97706;
    --yellow-700: #B45309;
    --yellow-800: #92400E;
    --yellow-900: #78350F;
    --gray-50: #FAFAFA;
    --gray-100: #F4F4F5;
    --gray-200: #E4E4E7;
    --gray-300: #D4D4D8;
    --gray-400: #A1A1AA;
    --gray-500: #71717A;
    --gray-600: #52525B;
    --gray-700: #3F3F46;
    --gray-800: #27272A;
    --gray-900: #18181B;
    --naranja1-100: #fff2e5;
    --naranja1-200: #ffe5cb;
    --naranja1-300: #ffd8b1;
    --naranja1-400: #ffcb97;
    --naranja1-500: #ffbe7d;
    --naranja1-600: #cc9864;
    --naranja1-700: #99724b;
    --naranja1-800: #664c32;
    --naranja1-900: #332619;
    --naranja2-100: #fce9cc;
    --naranja2-200: #fad399;
    --naranja2-300: #f7bd66;
    --naranja2-400: #f5a733;
    --naranja2-500: #f29100;
    --naranja2-600: #c27400;
    --naranja2-700: #915700;
    --naranja2-800: #613a00;
    --naranja2-900: #301d00;
    --azul1-100: #d0e9f7;
    --azul1-200: #a0d3ef;
    --azul1-300: #71bde8;
    --azul1-400: #41a7e0;
    --azul1-500: #1291d8;
    --azul1-600: #0e74ad;
    --azul1-700: #0b5782;
    --azul1-800: #073a56;
    --azul1-900: #041d2b;
    --azul2-100: #cee0e6;
    --azul2-200: #9dc1ce;
    --azul2-300: #6ba2b5;
    --azul2-400: #3a839d;
    --azul2-500: #096484;
    --azul2-600: #07506a;
    --azul2-700: #053c4f;
    --azul2-800: #042835;
    --azul2-900: #02141a;
    --buttons-gap: 1rem;
    --col-gap: 30px;
    
}

* {
    text-decoration: none;
}


#logo{
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: #ebeff5;
    font-size: 0.875rem;
}

p, ul {
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.7em;
	color: #999;
}

ul {
    list-style: none;
    padding: 0;
    height: 100%;
}

/* Header */
header.container.row {
    padding-block: 1.25rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: 1px solid var(--gray-500);
}
.authentication {
    display: flex;
    gap: 1rem;
    align-items: center;
} 


/* main.css | http://127.0.0.1:8000/static/css/main.css */

header.container.row {
  font-size: 1rem;
  color: 1px solid var(--gray-500);
}






/* Hero section */

.hero__content {
    max-width: 40%;
  }
  .title,
  .hero__title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-top: 0;
  }

  .hero__buttons {
    display: flex;
    gap: var(--buttons-gap);
  }
  
  .hero__img {
    width: 60%;
    height: auto;
    border-radius: 10px;
  }
  .hero__img img {
    border-radius: 10px;
    max-width: 100%;
  }
  
  .container.row {
    display: flex;
    width: 80%;
    max-width: 1080px;
    justify-content: space-between;
    gap: var(--col-gap);
    margin: 0;
    padding: 6rem 10%;
    align-items: center;
  }

#blurb {
    gap: 60px;
  }
  #blurb.container.row {
    flex-direction: column;
    text-align: center;
    background-color: var(--gray-100);
  }
  .blurb__items {
    display: flex;
    gap: 30px;
  }
  .blurb__item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .blurb__img {
    width: 5rem;
    height: 5rem;
    background-color: var(--yellow-100);
    border: 2px solid var(--yellow-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .blurb__icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--yellow-500);
  }

  .blurb__more-icon {
    width: 1rem;
    height: 1rem;
  }

  

  #prices {
    gap: 60px;
  }
  #prices.container.row {
    flex-direction: column;
    text-align: center;
    /* background-color: var(--gray-100); */
  }

  .prices__plans {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 20px;
  }

  .prices__plan {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    border: 2px solid var(--gray-500);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: left;
  }
  .featured-plan {
    border-color: var(--yellow-500);
  }
  
  .prices__plan-name {
    margin: 0;
  }
  .prices__plan-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 3rem;
  }

  .prices__title {
    border-bottom: 1px solid var(--gray-200);
    position: relative;
  }
  .prices__title-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--yellow-500);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
  }

  .prices__plan-period {
    color: var(--gray-500);
    font-weight: 400;
    font-size: 1.125rem;
  }

  .prices__plan-bullet {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .prices__plan-bullet-img {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--gray-400);
    color: #ffffff;
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
  }
  .prices__plan-bullet-icon {
    width: 0.75rem;
    height: 0.75rem;
  }

  .prices__button {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }



#statistics {
  background-color: var(--yellow-100);
}

.statistics__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.statistics__item-mumber {
  margin: 0;
  font-size: 2.25rem;
}

.statistics__item-name {
  margin: 0;
}




#footer {
    flex-direction: column;
  }
  #footer .container.row {
    padding: 2rem 10%;
  }
  #footer .container.row + .container.row {
    border-top: 1px solid var(--gray-200);
  }
  #footer .container.row:last-child {
    background-color: var(--gray-200);
    display: flex;
    padding-block: 0;
  }


  .footer__title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-900);
  }
  
  .footer__list {
    color: var(--gray-500);
    list-style: none;
  }
  
  .footer__list li:hover {
    color: var(--gray-800);
  }
  
  
  .footer__search {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    font-size: 0.875rem;
  }
  .footer__search-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  #footer-field {
    padding: 0.25rem 0.75rem;
  }
  .footer__search * {
    font-size: 0.875rem !important;
  }
  .footer__search p {
    margin: 0;
  }
  .footer__social {
    display: flex;
    gap: 0.5rem;
  }
  .footer__social-icon {
    height: 1.125rem;
    width: 1.125rem;
    color: var(--gray-500);
  }



  
  
  


  
  
  

  

  





.table th,
.table td {
    font-size: 14px;
    padding: 0.25rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
}
.pagination {
    font-size: 12px;
    justify-content: center;
}
.pagination.step-links {
    justify-content: space-between;
}


#total-orders{
    background-color: #335DFF;
}

#orders-delivered{
    background-color: #335DFF;
}

#orders-pending{
    background-color: #335DFF;
}

.django-ckeditor-widget{
    width: 100%;
}

/* Reemplazo de estilos de bootstrapp */

button {
    -webkit-appearance: button;
}

.btn {
    padding: .5em 1.5em;
    cursor: pointer;
}
.btn-icon {
    width: 1rem;
    height: 1rem;
}
.btn-primary {
    font-size: 1.125rem;
    background-color: var(--yellow-500);
    border: 1px solid var(--yellow-500);
    border-radius: 0.25rem;
    color: #ffffff;
}
.btn-primary:hover {
    background-color: var(--yellow-600);
    border: 1px solid var(--yellow-600);
}
.btn-primary-outline {
    color: var(--yellow-500);
    border: 1px solid var(--yellow-500);
    border-radius: 0.25rem;
}
.btn-primary-outline:hover {
    background-color: var(--yellow-600);
    border: 1px solid var(--yellow-600);
}
.btn-secondary {
    font-size: 1.125rem;
    background-color: var(--gray-100);
    border: 1px solid var(--gray-100);
    border-radius: 0.25rem;
    color: var(--gray-700);
}
.btn-secondary:hover {
    background-color: var(--gray-200);
}
.btn-secondary-outline {
    color: var(--gray-100);
    border: 1px solid var(--gray-100);
    border-radius: 0.25rem;
}
.btn-secondary-outline:hover {
    background-color: var(--gray-200);
    border: 1px solid var(--gray-200);
}

.prices__menu-buttons {
	display: flex;
	justify-content: center;
}
.btn-menu-switch-primary {
    font-size: 1.125rem;
    background-color: var(--yellow-500);
    border: 2px solid var(--yellow-500);
    border-radius: 0.25rem 0 0 0.25rem;
    color: #ffffff;
}
.btn-menu-switch-primary-outline {
    font-size: 1.125rem;
    background-color: transparent;
    border: 2px solid var(--yellow-500);
    border-radius: 0 0.25rem 0.25rem 0;
    color: #000000;
}




a {
    color: inherit;
}
/* a:hover {
    color: #153ace;
} */

/********************************************/
/***************** TOOLTIPS *****************/
/********************************************/

/* Tooltip */
.test + .tooltip > .tooltip-inner {
background-color: #343a40; 
color: #FFFFFF; 
border: 1px solid #343a40; 
padding: 10px;
font-size: 20px;
}
/* Tooltip on top */
.test + .tooltip.top > .tooltip-arrow {
border-top: 5px solid #343a40;
}
/* Tooltip on bottom */
.test + .tooltip.bottom > .tooltip-arrow {
border-bottom: 5px solid #343a40;
}
/* Tooltip on left */
.test + .tooltip.left > .tooltip-arrow {
border-left: 5px solid #343a40;
}
/* Tooltip on right */
.test + .tooltip.right > .tooltip-arrow {
border-right: 5px solid #343a40;
}


.form-control-inline {
    display: unset;
    display: inline-block !important;
}

