@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap");

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#root {
  height: 100%;
}

body {
  min-height: 100%;
  background-color: #ededed;
  font-family: "Montserrat", sans-serif;
  height: 100vh;
}

/* -=-=-=-=-=-=-=-=- SIGN IN FORM -=-=-=-=-=-=-=-=-*/
body.loginContainer {
  background-color: #424242;
}

.bg {
  background-image: url("../img/bkg_login.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  width: 100vw;
  height: 100%;
  opacity: 0.26;
  min-height: 100%;
}

main.form-signin {
  width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

img.bkgLoginImg {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  opacity: 0.4;
  background-size: cover;
  background-position: center center;
}

.signinOverlay {
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: rgb(36 36 36 / 85%);
}

.container.signIn {
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
  align-items: center;
  justify-content: space-between;
}

.loginViacotone {
  height: 80px;
}

label.login {
  text-transform: uppercase;
  color: white;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 2px;
}

.form-control.login {
  border: none;
  height: auto;
  margin-top: 5px;
  box-shadow: -5px 5px 10px 0px rgb(0 0 0 / 50%);
  padding: 8px 10px;
  border-radius: 2px !important;
}

main.form-signin .btn {
  text-transform: uppercase;
  margin-top: 15px !important;
  font-size: 14px;
  letter-spacing: 3px;
  padding: 8px;
}

.passwordRecover a {
  letter-spacing: 2px;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

img.logInLogoUno {
  height: 200px;
  margin-top: 60px;
  margin-bottom: 50px;
}

img.logInLogoDos {
  height: 40px;
  margin-top: 50px;
  margin-bottom: 20px;
}

/* -=-=-=-=-=-=-=-=- SIDE NAV -=-=-=-=-=-=-=-=-*/
a.nav-logo {
  position: absolute;
  width: 100%;
  border-bottom: 1px solid #333;
  height: 59px;
  left: 0px;
}

a.nav-logo img {
  height: 40px;
  margin-top: 10px;
  margin-left: -80px;
}

.side-navbar {
  width: 300px;
  height: 100%;
  position: fixed;
  margin-left: -300px;
  background-color: #1a1a1a;
  transition: 0.4s;
  padding: 0px 40px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: scroll;
}

.nav-link:active,
.nav-link:focus,
.nav-link:hover {
  background-color: #ffffff26;
}

.nav-link:focus,
.nav-link:hover {
  color: #fff !important;

  box-shadow: none;
}

.active-cont nav.navbar.top-navbar.navbar-light {
  padding: 3px 20px 3px 20px;
}

nav.navbar.top-navbar.navbar-light {
  background-color: #ededed;
  padding: 5px 20px 5px 70px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
}

.my-container {
  transition: 0.4s;
}

.active-nav {
  margin-left: 0;
}

/* for main section */
.active-cont {
  margin-left: 300px;
}

#menu-btn {
  background-color: transparent;
  color: #fff;
  margin-left: -56px;
  position: fixed;
  top: 11px;
}

.active-cont .navbar #menu-btn .menuOpen {
  background-image: url("icons/menuClose.svg");
  width: 25px;
  height: 25px;
  background-size: contain;
  transform: translateX(0px);
}

.active-cont .navbar #menu-btn {
  transition: 0.2s;
  transform: translateX(0px);
}

.navbar #menu-btn .menuOpen {
  background-image: url("icons/menuOpen.svg");
  width: 25px;
  height: 25px;
  background-size: contain;
  transform: translateX(0px);
}

.active-cont .navbar #menu-btn {
  transition: 0.2s;
  transform: translateX(-20px);
  position: fixed;
  top: 14px;
}

ul.nav {
  margin-top: 0px;
  margin-bottom: 0px;
}

.form-control.mainSearch {
  background-color: #d9d9d9;
  border-radius: 0px;
  border: none;
  position: relative;
  top: 7px;
}

.form-control.mainSearch:focus {
  color: #212529;
  background-color: #d9d9d9;
  border-color: #000;
  outline: 0;
  box-shadow: none;
}

.input-group-text.mainSearch {
  width: 35px;
  height: 36px;
  padding: 0px;
  background-color: #d9d9d9;
  border: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  position: relative;
  top: 7px;
}

.input-group-text.mainSearch img {
  width: 20px;
  height: 20px;
}

.body-container {
  width: 100%;
  padding: 10px 30px;
}

.icon.logOut {
  background-image: url("icons/iconLogout.svg");
  width: 30px;
  height: 30px;
  position: absolute;
  right: 23px;
  top: 13px;
}

@media (max-width: 768px) {
  .active-cont {
    display: block;
    width: 100%;
  }

  .side-navbar {
    height: auto;
  }

  nav.navbar.top-navbar.navbar-light {
    position: fixed;
    z-index: 1500;
  }

  .body-container {
    margin-top: 60px;
  }
}

/* -=-=-=-=-=-=-=-=- ELEMENTOS SIDE NAV -=-=-=-=-=-=-=-=-*/
.userProfileContainer {
  margin-top: calc(10% + 60px);
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  margin-bottom: 20px;
}

.profileImg {
  position: relative;
  width: 90px;
  height: 90px;
  margin-left: auto;
  margin-right: 20px;
}

.profileInfo {
  height: 40px;
  display: block;
  width: 100%;
}

.profileInfo h1 {
  font-size: 15px;
  color: #ededed;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 0px;
  word-break: break-word;
}

.profileInfo span {
  font-size: 15px;
  color: #ededed;
  font-weight: 200;
  text-decoration: none;
  margin-top: 0px;
  margin-bottom: 0px;
  cursor: pointer;
  word-break: break-word;
}

.sideLogo {
  padding-bottom: 20px;
  margin-top: 30px;
}

.sideLogo img {
  height: 36px;
}

/* -=-=-=-=-=-=-=-=- BOTONES -=-=-=-=-=-=-=-=-*/
.btn.btn-mainSearch {
  background-color: #1a1a1a;
  border: none;
  border-radius: 0px;
  position: relative;
  top: 7px;
  color: #f7f7f7;
  padding: 0px 30px;
  font-size: 14px;
}

.btn {
  border-radius: 2px !important;
  font-family: "Montserrat", sans-serif;
  padding: 5px 10px;
  font-size: 14px;
}

.btn-dark:hover {
  color: #fff;
  background-color: #31363d;
  border-color: #31363d;
}

.btn-primary {
  color: #fff;
  background-color: #ff671d;
  border-color: #ff671d;
}

.btn-primary:hover {
  color: #fff;
  background-color: #df5f24;
  border-color: #df5f24;
}

.btn-check:focus + .btn-primary,
.btn-primary:focus {
  color: #fff;
  background-color: #df5f24;
  border-color: #df5f24;
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}

.btn-outline-light {
  border: 1px solid #ededed;
  text-align: center;
  color: white;
}

.btn-outline-light:hover {
  color: white !important;
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-side {
  padding: 10px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 15px;
  border-radius: 0px;
  width: 100%;
}

.btn-primary.btn-side {
  margin-top: 0px;
  margin-bottom: 15px;
}

a.btn-side.active {
  background-color: rgba(255, 255, 255, 0.25);
  color: white;
}

a.btn-side.subSection {
  color: white;
  background-color: transparent;
  padding: 0px;
  text-align: center;
  box-shadow: none;
}

.btn-config {
  padding: 5px 45px;
  margin: 15px 10px 30px 10px;
  border-radius: 0px;
  box-shadow: -5px 5px 10px 0px rgb(0 0 0 / 50%);
  text-transform: uppercase;
}

.catNavContainer {
  background-color: #ededed;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.catNav {
  display: flex;
  flex-direction: row;
  align-content: center;
  list-style: none;
  justify-content: space-around;
  padding: 0px;
  margin: 0px;
  flex-wrap: wrap;
}

.catNavLink {
  text-transform: uppercase;
  padding: 0px 10px;
  color: #333333;
  text-decoration: none;
  transition: 0.4s;
  border: none;
  font-size: 14px;
}

.catNavLink a {
  text-transform: uppercase;
  padding: 0px 10px;
  color: #333333;
  text-decoration: none;
  transition: 0.4s;
  border: none;
}

.catNavLink.active {
  font-weight: bold;
}

li.catNavLink:hover {
  color: #999;
  transition: 0.4s;
}

li.catNavLink.active {
  font-weight: 700;
}

div.catNavDivider {
  width: 1px;
  height: 16px;
  background-color: black;
  margin-top: 4px;
  display: inline-block;
}

ul.tabSections li a {
  text-decoration: none;
  color: #333333;
  padding: 20px 30px;
  position: relative;
  transition: 0.4s;
  font-size: 14px;
}

ul.tabSections li a:hover {
  opacity: 0.4;
  transition: 0.4s;
}

ul.tabSections {
  display: flex;
  list-style: none;
  margin-top: -5px;
  margin-bottom: 20px;
}

li.catNavDivider {
  width: 1px;
  height: 16px;
  background-color: black;
  margin-top: 4px;
}

/* -=-=-=-=-=-=-=-=- PRODUCT CARDS -=-=-=-=-=-=-=-=-*/
.prodLink {
  cursor: pointer;
}

a.prodLink {
    text-decoration: none;
    color: #1a1a1a;
    transition: 0.4s;
    cursor: pointer;
    height: 100%;
}

.card.prodView .card-header:hover {
  opacity: 0.4;
  transition: 0.4s;
  /* cursor: pointer; */
}

.card.prodView .card-header img {
  width: 100%;
  max-height: 147px;
  max-width: 147px;
  align-self:center;
}

.card.prodView {
  border-radius: 3px;
  border: none;
  background-color: transparent;
  margin-bottom: 30px;
  transition: 0.4s;
}

.card.prodView.cart {
    margin-top: 15px;
    height: calc(100% - 15px);
}

.card.prodView .card-header {
    border: none;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    background-color: white;
    border-radius: 3px;
    z-index: 1;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-height: 200px;
    justify-content: center;
}

.card.prodView .card-body {
    background-color: #d9d9d9;
    font-size: 15px;
    text-align: center;
    margin-bottom: 0px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    margin-top: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 100%;
    min-height: 50px;
}

.card.prodView .card-body p {
    background-color: #d9d9d9;
    font-size: 13px;
    text-align: center;
    margin-bottom: 0px;
    line-height: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

div.prodLink.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

div.prodLink.disabled .card.prodView {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn.btn-delete-item {
  position: absolute;
  height: 35px;
  width: 35px;
  background-color: transparent;
  right: 0px;
  top: 0px;
  padding: 6px;
  transition: 0.4s;
}

button.btn.btn-delete-item:hover {
  opacity: 0.5;
  transition: 0.4s;
}

.input-icon-item {
  position: absolute;
  background-color: transparent;
  right: 0px;
  top: 0px;
  z-index: 2;
  transition: 0.4s;
}

.input-icon-item:hover {
  opacity: 0.5;
  transition: 0.4s;
}

.cantidades {
  position: absolute;
  top: -17px;
  left: 15px;
  background-color: #fe681d;
  height: 40px;
  width: 40px;
  z-index: 4;
  border-radius: 50rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 11px;
}

.prodPrice {
    position: absolute;
    z-index: 4;
    background-color: #fe681d;
    color: white;
    padding: 2px 10px;
    right: 8px;
    font-size: 13px;
    font-weight: 400;
    float: right;
    bottom: 50px;
}

.prodPriceUpdated {
  position: absolute;
  z-index: 4;
  background-color: #fe681d;
  color: white;
  padding: 2px 10px;
  right: 8px;
  font-size: 13px;
  font-weight: 400;
  float: right;
  bottom: 73px;
}

@media (max-width: 1399px) {
.card.prodView .card-header {
    min-height: 150px;
}
}

@media (max-width: 991px) {
.card.prodView .card-header {
    min-height: 120px;
}
}

/* -=-=-=-=-=-=-=-=- MODAL -=-=-=-=-=-=-=-=-*/
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 980px;
  }
}

.modal-backdrop {
  background-color: rgb(237 237 237);
}

.modal-backdrop.show {
  opacity: 0.7;
}

.modal-content.prodModal .modal-header {
  padding-bottom: 0px;
}

.modal-content.prodModal .modal-body {
  padding: 5px 40px 0px 40px;
}

.modal-content {
  border: none;
  background-color: #ededed;
  box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 25%);
  border-radius: 3px;
}

.modal-header {
  border: none;
}

.prodModal h1 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 9px;
}

.prodModal h2 {
  font-size: 13px;
  margin-bottom: 13px;
}

.prodModal p {
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 24px;
}

.thumbContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.modalThumb {
  min-width: 17%;
  height: auto;
  border: 1px solid #c1c1c1;
  margin-right: 10px;
  margin-bottom: 10px;
}

.prodMainImg {
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: white;
}

.form-label.modalProd {
  font-size: 13px;
  margin-bottom: 3px;
}

.form-label.multiSelect {
  font-size: 13px;
  margin-bottom: 3px;
}

.form-label.multiSelect::after {
  content: "";
  position: absolute;
  margin-left: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 8px solid black;
  margin-top: 7px;
}

.form-control.modalProd {
  background-color: #d9d9d9;
  border: none;
  border-radius: 0px;
  margin-bottom: 8px;
  padding: 5px 10px;
  font-size: 14px;
}

label.form-label.modalProd.disabled {
  opacity: 0.3;
}

.form-control.modalProd.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.form-select.modalProd {
  background-color: #d9d9d9;
  border: none;
  border-radius: 0px;
  margin-bottom: 8px;
  background-image: none;
  font-size: 13px;
}

.modal-content.prodModal .modal-footer {
  width: 45%;
  float: right;
  padding: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  border: none;
  margin-left: 52%;
}

.modal-content.prodModal .modal-footer::after {
  content: "";
  width: 50%;
  left: 50%;
  background-color: #ededed;
  position: absolute;
  bottom: -20px;
  border: none;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.25);
  height: 20px;
}
.modal-content.prodModal .modal-footer.after-white::after {
  content: "";
  width: 50%;
  left: 50%;
  background-color: white;
  position: absolute;
  bottom: -20px;
  border: none;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.25);
  height: 20px;
}

.modal-content.prodModal .modal-footer.home {
  width: 55%;
  float: right;
  padding: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  border: none;
  margin-left: 42%;
}

.modal-content.prodModal .modal-footer.home::after {
  content: "";
  width: 60%;
  left: 40%;
  background-color: #ededed;
  position: absolute;
  bottom: -20px;
  border: none;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.25);
  height: 20px;
}

.btn-footer-add {
  width: 100%;
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  border-radius: 3px;
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #707070 !important;
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  opacity: 0.4;
}

.btn-footer-cancel {
  width: 100%;
  background-color: transparent;
  border-color: #484848;
  color: #484848;
  border-radius: 3px;
}

.prodModalContainer {
  max-height: 400px;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 5px 20px 5px 0px;
}

.modal-content.prodModal.bg-md {
  background-color: #d9d9d9;
}


.deleteForm {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.deleteForm .form-label {
    margin-right: 20px;
    text-transform: uppercase;
}

.deleteForm .form-select.modalProd {
    background-color: white;
    margin-left: 20px;
}

.deleteForm textarea.form-control {
    border-radius: 0px;
    border: none;
    margin-left: 20px;
    min-height: calc(1.25em + (.5rem + 2px));
    padding: 0.375rem 0.75rem!important;
    font-size: 13px;
    font-style: italic;
}

.prodModal h1.deleteForm {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 9px;
}

/* -=-=-=-=-=-=-=-=- NUEVA COTIZACION -=-=-=-=-=-=-=-=-*/
.main-header {
  display: block;
  width: 100%;
  padding: 0px 15px;
  margin-top: 5px;
}

.main-header h1 {
  color: #f26825;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 700;
  padding-top: 8px;
}

.main-header p {
  font-size: 14px;
}

/* -=-=-=-=-=-=-=-=- NP ABIERTA -=-=-=-=-=-=-=-=-*/
.card.npCard {
    border: none;
    box-shadow: -5px 5px 10px 2px rgb(0 0 0 / 25%);
    border-radius: 3px;
    margin: 0px 10px;
    height: calc(100% - 80px);
}

.card.npCard .card-header {
    padding: 15px 50px 0px 20px;
    border-bottom: none;
    background-color: #ededed;
}

.card.npCard .card-footer {
    background-color: #ededed;
    border: none;
}

.card.npCard h1 {
  font-size: 17px;
  margin-bottom: 0px;
  font-weight: 600;
  letter-spacing: 1px;
}

.card.npCard .card-header p {
  font-size: 14px;
}

.card.npCard .btn-delete-item {
  margin-top: 5px;
  margin-right: 5px;
}

.card.npCard .card-body {
    background-color: #ededed;
    opacity: 1;
    padding: 0px 20px 0px 20px;
}

.npCard.actions {
  background-color: #d9d9d9;
  padding: 15px 15px;
  margin: 0px 10px 25px 10px;
}

.npCard.actions .btn {
  font-weight: 300;
  padding: 3px;
}

.w-33 {
  width: 33.3333%;
}

.actionIcon {
  width: 100%;
  height: 20px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.actionIcon img {
  width: 20px;
  height: 20px;
}

.searchContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
}

button.btn.btn-dark.btn-cargaManual {
  min-width: 160px;
  margin-top: -10px;
  height: 36px;
  margin-left: 20px;
  display: flex;
  flex-direction: row;
}

.btn-cargaManual img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.modalThumb .form-check {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0px;
  padding: 0px;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: calc(100% - 50px);
}

.form-check-input.thumbCheck {
  background-color: transparent;
  position: absolute;
  background-image: none;
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  border-radius: 0px;
  box-shadow: none;
  transition: 0.4s;
  border: none;
  cursor: pointer;
}

.form-check-input.thumbCheck.disabled {
  background-color: transparent;
  position: absolute;
  background-image: none;
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  border-radius: 0px;
  box-shadow: none;
  transition: 0.4s;
  border: none;
  cursor: not-allowed;
}

.form-check-input.thumbCheck:checked {
  background-color: transparent;
  position: absolute;
  background-image: none;
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  border-radius: 0px;
  box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 1);
  transition: 0.4s;
  border: none;
}

.input-group-append.show-password {
  z-index: 1;
  margin-top: 13px;
  position: relative;
  right: 30px;
  margin-right: -20px;
  pointer-events: all !important;
  z-index: 10 !important;
  cursor: pointer;
}

.text-error {
  color: red;
  font-weight: 600;
}

.loader-pendulums-container-overlay {
  position: fixed;
  background: transparent;
  opacity: 0.6;
  height: 100%;
  width: 100%;
  z-index: 999999;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
}

.bg-spinner {
  background: #424242;
  position: absolute;
  width: 100%;
  height: auto;
  min-height: 100%;
}

@-webkit-keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.loadingContainer {
  /* minHeight: '500px', display: 'flex', justifyContent: 'center', alignItems: 'center', width: '100%' */
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.loadingContainerInner {
  position: relative;
  width: 100%;
  height: 100%;
}

.rainbow {
  position: relative;
  z-index: 0;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  margin-top: 30px;
}

.rainbow.inner {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  margin-top: 30px;
}

.loadingContainerInner .rainbow::before,
.loadingContainer .rainbow::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(transparent, transparent),
    linear-gradient(#ff671d, #ff671d), linear-gradient(transparent, transparent),
    linear-gradient(#ff671d, #ff671d);
  -webkit-animation: rotate 3s linear infinite;
  animation: rotate 3s linear infinite;
}
.rainbow::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(#424242, #424242),
    linear-gradient(#ff671d, #ff671d), linear-gradient(#424242, #424242),
    linear-gradient(#ff671d, #ff671d);
  -webkit-animation: rotate 3s linear infinite;
  animation: rotate 3s linear infinite;
}

.loadingContainerInner .rainbow::after,
.loadingContainer .rainbow::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 9px;
  top: 9px;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  background: #ededed;
  border-radius: 5px;
}

.rainbow::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 9px;
  top: 9px;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  background: #424242;
  border-radius: 5px;
}

.tooltip.bs-tooltip-left > div.arrow::before {
  border-left-color: whitesmoke !important;
}

.tooltip.bs-tooltip-right > div.arrow::before {
  border-right-color: whitesmoke !important;
}

.tooltip.bs-tooltip-top > div.arrow::before {
  border-top-color: whitesmoke !important;
}

.tooltip.bs-tooltip-bottom > div.arrow::before {
  border-bottom-color: whitesmoke !important;
}

.show.tooltip .tooltip-inner {
  border: 1px whitesmoke solid;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top,
.bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow,
.bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right,
.bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow,
.bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow,
.bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left,
.bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow,
.bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.pagination .page-item .sr-only {
  display: none;
}

.pagination .page-item .page-link {
  color: #f26825 !important;
}

.pagination .page-item.active .page-link {
    background-color: #f26825 !important;
    color: white !important;
    border-color: transparent;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem #ecae8f;
}



/* -=-=-=-=-=-=-=-=- FILTROS -=-=-=-=-=-=-=-=-*/
.input-group.filtros {
    width: 100%;
}

.input-group.filtros .input-group-text {
    background-color: #212529;
    border: none;
    border-radius: 0px;
    padding: 10px 10px;
    font-size: 12px;
    z-index: 1;
    color: #ededed;
    height: 34px;
}
.input-group.filtros .form-select {
    height: 34px;
}

.text-orange {
    color: #f26825;
}

/* Cambiar el color del checkbox */
.form-check-input:checked {
  background-color: #f26825; 
  border-color: #f26825; 
}

/* Cambiar el color del indicador del checkbox (punto) cuando se pasa el cursor */
.form-check-input:checked:hover {
  background-color: #f26825;
  border-color: #f26825;
}

  /* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.carousel-control-prev .sr-only,
.carousel-control-next .sr-only {
  display: none;
}

.bi-chevron-double-right {
  color: black; 
}
.bi-chevron-double-left {
  color: black; 
}