/* Full background image */
/*.bg {
    background-image: url(../img/background3.jpg) !important;
}*/
.bg {
  background: url("../img/main_background.png") no-repeat center center fixed !important;
  background-size: 100% auto !important;
  background-color: #000000 !important;
}

@media (max-width: 576px) {
  .bg {
    background: none !important;
    background-color: #000000 !important;
  }
}
/* html {
    font-size:17px!important
}*/
body {
  font-family: "roboto", sans-serif;
}
.sp-2 {
  letter-spacing: 2px;
}
.shadow-img {
  filter: drop-shadow(2px 2px 2px #696969);
}
.shadow-img-2 {
  filter: drop-shadow(4px 4px 4px lightgrey);
}
.bg-login {
  background-image: linear-gradient(
    to top,
    #e6e9f0 0%,
    #eef1f5 100%
  ) !important;
}

.bg-container {
  background: #eef1f5 !important;
}
.bg-container-dark {
  background: #242424 !important;
}

.bg-card {
  background: url("bg2.jpg");
  background-size: cover;
}

/* ----------------- 
      SIDEBAR 
----------------- */
.active_list .v-list-item-group .v-list-item--active {
  background-color: #f26925;
  border-radius: 7px;
  color: #fff;
}

.sidebar-light {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 10px;
}

.sidebar-dark {
  background-color: #171717 !important;
  box-shadow: 7px 0 12px -4px #111111;
}

/* ----------------- 
      CARDS 
----------------- */

.card_style {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px !important;
}

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

/*/
///// Welcome Banner /////
/*/
/* Loaded body */
body.loaded {
  opacity: 1;
  transition: 1s opacity;
}
/* Default banner */
.banner {
  position: relative;
  width: 100%;
  height: 40rem;
  padding: 0 5%;
  overflow: hidden;
  backface-visibility: hidden;
}
/* Default image container */
.banner .background {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transform: translate3d(0, 0, 0) scale(1.25);
  background: black
    url(https://images.unsplash.com/photo-1531971085967-431db1ec65a2?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=212d5ac2d6b763d2f2168d4f0a85b36c&auto=format&fit=crop&w=2250&q=80)
    no-repeat center center;
  background-size: cover;
}
/* Loaded image container */
.loaded .banner .background {
  transform: scale(1);
  transition: 6.5s transform;
}
/* Other stuff */
.banner h1 {
  color: #eee;
  margin: 0;
  line-height: 40rem;
  text-transform: uppercase;
  text-shadow: 0 0 0.3rem black;
}

.no-uppercase {
  text-transform: unset !important;
}

.custom-loader {
  animation: loader 1s infinite;
  display: flex;
}

h3.linea {
  position: relative;
  opacity: 30%;
  z-index: 1;
}
h3.linea:before {
  border-top: 2px solid #cccccc;
  content: "";
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 95%;
  z-index: -1;
}
h3.linea span {
  background: #fff;
  padding: 0 15px;
}

@-moz-keyframes loader {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loader {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@-o-keyframes loader {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes loader {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ----------------- 
    SWEETALERT
----------------- */

.toast-custom-light {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 10px !important;
}

.toast-custom-dark {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7) !important;
}

.sweet-btn {
  border-radius: 1rem !important;
}
.sweet-btn:focus {
  /* se desactiva linea que rodea al boton focus */
  outline: none !important;
  box-shadow: none !important;
}

/* ----------------- 
      SCROLL 
----------------- */

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

#scrollbar_tire::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
  border-radius: 10px;
}

#scrollbar_tire::-webkit-scrollbar-thumb {
  background-color: #f26925;
  border-radius: 10px;
}

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

#scrollbar_tire_filter::-webkit-scrollbar
{
	width: 6px;
	background-color: #ffffff;
  border-radius: 10px;
}

#scrollbar_tire_filter::-webkit-scrollbar-thumb
{
	background-color: #ffffff;
  border-radius: 10px;
}

/* ----------------- 
    FORM SCROLL
----------------- */

.form_responsive {
  max-height: 675px !important;
}

.form_filter_scroll {
  max-height: 550px !important;
}
@media only screen and (min-width: 1030px) and (max-width: 1366px) {
  .form_responsive {
    max-height: 400px !important;
  }
}


/* ----------------- 
    UTILITIES
----------------- */

.pos-relative {
  position: relative !important;
}
.pos-absolute {
  position: absolute !important;
}
.pos-fixed {
  position: fixed !important;
}
.pos-sticky {
  position: sticky !important;
}

.w-100 {
  width: 100% !important
}

.w-50 {
  width: 50% !important
}

.w-75 {
  width: 75% !important;
}

.w-25 {
  width: 25% !important;
}

.h-100 {
  height: 100% !important;
}
.h-50 {
  height: 50% !important;
}
.h-75 {
  height: 75% !important;
}
.h-25 {
  height: 25% !important;
}

.top-0 { top: 0 } .top-1 { top: 0.25rem } .top-2 { top: 0.5rem } .top-3 { top: 0.75rem } .top-4 { top: 1rem } .top-5 { top: 1.25rem } .top-6 { top: 1.5rem } .top-7 { top: 1.75rem } .top-8 { top: 2rem } 
.top-9 { top: 2.25rem } .top-10 { top: 2.5rem } .top-11 { top: 2.75rem } .top-12 { top: 3rem } .top-13 { top: 3.25rem } .top-14 { top: 3.5rem } .top-15 { top: 3.75rem } .top-16 { top: 4rem }

.top-n1 { top: -0.25rem } .top-n2 { top: -0.5rem } .top-n3 { top: -0.75rem } .top-n4 { top: -1rem } .top-n5 { top: -1.25rem } .top-n6 { top: -1.5rem } .top-n7 { top: -1.75rem } .top-n8 { top: -2rem }
.top-n9 { top: -2.25rem } .top-n10 { top: -2.5rem } .top-n11 { top: -2.75rem } .top-n12 { top: -3rem } .top-n13 { top: -3.25rem } .top-n14 { top: -3.5rem } .top-n15 { top: -3.75rem } .top-n16 { top: -4rem }

.left-0 { left: 0 } .left-1 { left: 0.25rem } .left-2 { left: 0.5rem } .left-3 { left: 0.75rem } .left-4 { left: 1rem } .left-5 { left: 1.25rem } .left-6 { left: 1.5rem } .left-7 { left: 1.75rem } .left-8 { left: 2rem } 
.left-9 { left: 2.25rem } .left-10 { left: 2.5rem } .left-11 { left: 2.75rem } .left-12 { left: 3rem } .left-13 { left: 3.25rem } .left-14 { left: 3.5rem } .left-15 { left: 3.75rem } .left-16 { left: 4rem }

.left-n1 { left: -0.25rem } .left-n2 { left: -0.5rem } .left-n3 { left: -0.75rem } .left-n4 { left: -1rem } .left-n5 { left: -1.25rem } .left-n6 { left: -1.5rem } .left-n7 { left: -1.75rem } .left-n8 { left: -2rem }
.left-n9 { left: -2.25rem } .left-n10 { left: -2.5rem } .left-n11 { left: -2.75rem } .left-n12 { left: -3rem } .left-n13 { left: -3.25rem } .left-n14 { left: -3.5rem } .left-n15 { left: -3.75rem } .left-n16 { left: -4rem }

.right-0 { right: 0 } .right-1 { right: 0.25rem } .right-2 { right: 0.5rem } .right-3 { right: 0.75rem } .right-4 { right: 1rem } .right-5 { right: 1.25rem } .right-6 { right: 1.5rem } .right-7 { right: 1.75rem } .right-8 { right: 2rem } 
.right-9 { right: 2.25rem } .right-10 { right: 2.5rem } .right-11 { right: 2.75rem } .right-12 { right: 3rem } .right-13 { right: 3.25rem } .right-14 { right: 3.5rem } .right-15 { right: 3.75rem } .right-16 { right: 4rem }

.right-n1 { right: -0.25rem } .right-n2 { right: -0.5rem } .right-n3 { right: -0.75rem } .right-n4 { right: -1rem } .right-n5 { right: -1.25rem } .right-n6 { right: -1.5rem } .right-n7 { right: -1.75rem } .right-n8 { right: -2rem }
.right-n9 { right: -2.25rem } .right-n10 { right: -2.5rem } .right-n11 { right: -2.75rem } .right-n12 { right: -3rem } .right-n13 { right: -3.25rem } .right-n14 { right: -3.5rem } .right-n15 { right: -3.75rem } .right-n16 { right: -4rem }

.bottom-0 { bottom: 0 } .bottom-1 { bottom: 0.25rem } .bottom-2 { bottom: 0.5rem } .bottom-3 { bottom: 0.75rem } .bottom-4 { bottom: 1rem } .bottom-5 { bottom: 1.25rem } .bottom-6 { bottom: 1.5rem } .bottom-7 { bottom: 1.75rem } .bottom-8 { bottom: 2rem } 
.bottom-9 { bottom: 2.25rem } .bottom-10 { bottom: 2.5rem } .bottom-11 { bottom: 2.75rem } .bottom-12 { bottom: 3rem } .bottom-13 { bottom: 3.25rem } .bottom-14 { bottom: 3.5rem } .bottom-15 { bottom: 3.75rem } .bottom-16 { bottom: 4rem }
.bottom-n1 { bottom: -0.25rem } .bottom-n2 { bottom: -0.5rem } .bottom-n3 { bottom: -0.75rem } .bottom-n4 { bottom: -1rem } .bottom-n5 { bottom: -1.25rem } .bottom-n6 { bottom: -1.5rem } .bottom-n7 { bottom: -1.75rem } .bottom-n8 { bottom: -2rem }
.bottom-n9 { bottom: -2.25rem } .bottom-n10 { bottom: -2.5rem } .bottom-n11 { bottom: -2.75rem } .bottom-n12 { bottom: -3rem } .bottom-n13 { bottom: -3.25rem } .bottom-n14 { bottom: -3.5rem } .bottom-n15 { bottom: -3.75rem } .bottom-n16 { bottom: -4rem }

.gap-0 { gap: 0 } .gap-1 { gap: 0.25rem } .gap-2 { gap: 0.5rem } .gap-3 { gap: 0.75rem } .gap-4 { gap: 1rem } .gap-5 { gap: 1.25rem } .gap-6 { gap: 1.5rem } .gap-7 { gap: 1.75rem } .gap-8 { gap: 2rem }
.gap-9 { gap: 2.25rem } .gap-10 { gap: 2.5rem } .gap-11 { gap: 2.75rem } .gap-12 { gap: 3rem } .gap-13 { gap: 3.25rem } .gap-14 { gap: 3.5rem } .gap-15 { gap: 3.75rem } .gap-16 { gap: 4rem }

.w-0 { width: 0 } .w-1 { width: 0.25rem } .w-2 { width: 0.5rem } .w-3 { width: 0.75rem } .w-4 { width: 1rem } .w-5 { width: 1.25rem } .w-6 { width: 1.5rem } .w-7 { width: 1.75rem } .w-8 { width: 2rem }
.w-9 { width: 2.25rem } .w-10 { width: 2.5rem } .w-11 { width: 2.75rem } .w-12 { width: 3rem } .w-13 { width: 3.25rem } .w-14 { width: 3.5rem } .w-15 { width: 3.75rem } .w-16 { width: 4rem }
.w-n1 { width: -0.25rem } .w-n2 { width: -0.5rem } .w-n3 { width: -0.75rem } .w-n4 { width: -1rem } .w-n5 { width: -1.25rem } .w-n6 { width: -1.5rem } .w-n7 { width: -1.75rem } .w-n8 { width: -2rem }
.w-n9 { width: -2.25rem } .w-n10 { width: -2.5rem } .w-n11 { width: -2.75rem } .w-n12 { width: -3rem } .w-n13 { width: -3.25rem } .w-n14 { width: -3.5rem } .w-n15 { width: -3.75rem } .w-n16 { width: -4rem }

.h-0 { height: 0 } .h-1 { height: 0.25rem } .h-2 { height: 0.5rem } .h-3 { height: 0.75rem } .h-4 { height: 1rem } .h-5 { height: 1.25rem } .h-6 { height: 1.5rem } .h-7 { height: 1.75rem } .h-8 { height: 2rem }
.h-9 { height: 2.25rem } .h-10 { height: 2.5rem } .h-11 { height: 2.75rem } .h-12 { height: 3rem } .h-13 { height: 3.25rem } .h-14 { height: 3.5rem } .h-15 { height: 3.75rem } .h-16 { height: 4rem }

.h-n1 { height: -0.25rem } .h-n2 { height: -0.5rem } .h-n3 { height: -0.75rem } .h-n4 { height: -1rem } .h-n5 { height: -1.25rem } .h-n6 { height: -1.5rem } .h-n7 { height: -1.75rem } .h-n8 { height: -2rem }
.h-n9 { height: -2.25rem } .h-n10 { height: -2.5rem } .h-n11 { height: -2.75rem } .h-n12 { height: -3rem } .h-n13 { height: -3.25rem } .h-n14 { height: -3.5rem } .h-n15 { height: -3.75rem } .h-n16 { height: -4rem }

/* ----------------- 
    CUSTOM COMPONENTS
----------------- */

.custom_navbar .v-toolbar__content {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  flex-direction: column !important;
  border-bottom: 1px solid #EAECEE !important;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom_navbar {
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom_navbar .v-toolbar__extension{
  padding-left: 0!important;
  padding-right: 0!important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.custom_expansion_header .v-expansion-panel-header{
  background-color: #F5F5F5;
  border-bottom: #EAECEE 1px solid;
}

.red_chip {
  background-color: #FFF2F2 !important;
  border: #f26925 1px solid !important;
}

.rotate-icon {
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}

.custom_pagination .v-pagination__item {
  box-shadow: none !important;
}
.custom_pagination .v-pagination__navigation {
  box-shadow: none !important;
}
.custom_pagination .v-pagination__navigation:hover:not(:disabled) {
  background-color: #EAECEE !important;
}

.custom_switch_large {
  transform: scale(2); /* Ajusta el tamaño del switch visualmente */
  transform-origin: center right;
  height: 50px;
  width: 100px;
}
