.label-group {
  width: 100%;
  position: relative;
}

.label-group label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-gray3);
  
  margin-bottom: 12px;
}

.label-group label input:not([type="checkbox"]), 
.label-group label select {
  padding: 10px 45px 10px 20px;
  border: var(--input-border);
  border-radius: var(--input-border-radius);
  
  transition: var(--color-transition);
  
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
}

.label-group label input[type="datetime-local"] {
  padding: 10px 20px !important;
}

.label-group label input:focus-visible, select:focus-visible {
  border: 1px solid var(--color-blue) !important;
  outline: none;
}

.pointer {
  cursor: pointer !important;
}

.help {
  cursor: help !important;
}

.select-none {
  user-select: none;
}

.visibility-icon {
  position: absolute;
  top: 32px;
  right: 15px;
}

.link {
  text-decoration: none;
  color: var(--color-black);
}

.errorMsg, .errorFormMessage {
  font-size: 12px;
  color: var(--color-red);
}

.flexRow {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  width: 100%;
}

.spaceBetween {
  justify-content: space-between;
}

.flexWrap {
  flex-wrap: wrap;
}

.relative {
  position: relative;
}

.flexRowCenter {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.marginAuto {
  margin-left: auto;
  margin-right: auto;
}

.justifyCenter {
  justify-content: center;
}

.flexRowStart {
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 4px;
}

.flexColumnCenter {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.flexColumn {
  display: flex;
  flex-direction: column;
}

.columnReverse {
  flex-direction: column-reverse;
}

.gap8 {
  gap: 8px;
}

.gap12 {
  gap: 12px;
}

.gap16 {
  gap: 16px;
}

.Font12 {
  font-size: 12px;
  line-height: 16px;
}

.Font14 {
  font-size: 14px;
  line-height: 16px;
}

.Font16 {
  font-size: 16px;
  line-height: 24px;
}

.Font18 {
  font-size: 18px;
  line-height: 24px;
}

.Font20 {
  font-size: 20px;
  line-height: 24px;
}

.Font24 {
  font-size: 24px;
  line-height: 32px;
}

.Font28 {
  font-size: 28px;
  line-height: 40px;
}

.Font32 {
  font-size: 32px;
  line-height: 40px;
}

.center {
  text-align: center;
}

.mTop12 {
  margin-top: 12px;
}

.mTop24 {
  margin-top: 24px;
}

.mBottom12 {
  margin-bottom: 12px;
}

.mBottom24 {
  margin-bottom: 24px;
}

.mHorAuto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.underline {
  text-decoration: underline !important;
}

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


.success-checkmark {
    width: 80px;
    height: 115px;
    margin: 0 auto;
    
    .check-icon {
        width: 80px;
        height: 80px;
        position: relative;
        border-radius: 50%;
        box-sizing: content-box;
        border: 4px solid #4CAF50;
        
        &::before {
            top: 3px;
            left: -2px;
            width: 30px;
            transform-origin: 100% 50%;
            border-radius: 100px 0 0 100px;
        }
        
        &::after {
            top: 0;
            left: 30px;
            width: 60px;
            transform-origin: 0 50%;
            border-radius: 0 100px 100px 0;
            animation: rotate-circle 5.25s ease-in;
        }
        
        &::before, &::after {
            content: '';
            height: 100px;
            position: absolute;
            background: #FFFFFF;
            transform: rotate(-45deg);
        }
        
        .icon-line {
            height: 5px;
            background-color: #4CAF50;
            display: block;
            border-radius: 2px;
            position: absolute;
            z-index: 10;
            
            &.line-tip {
                top: 46px;
                left: 14px;
                width: 25px;
                transform: rotate(45deg);
                animation: icon-line-tip 1.45s;
            }
            
            &.line-long {
                top: 38px;
                right: 8px;
                width: 47px;
                transform: rotate(-45deg);
                animation: icon-line-long 1.45s;
            }
        }
        
        .icon-circle {
            top: -4px;
            left: -4px;
            z-index: 10;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            position: absolute;
            box-sizing: content-box;
            border: 4px solid rgba(76, 175, 80, .5);
        }
        
        .icon-fix {
            top: 8px;
            width: 5px;
            left: 26px;
            z-index: 1;
            height: 85px;
            position: absolute;
            transform: rotate(-45deg);
            background-color: #FFFFFF;
        }
    }
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

.overlay {
  position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: auto;
    margin-right: auto;
    background: rgb(0 0 0 / 16%);
    width: 100%;
    height: 100%;
    z-index: 9;
    
    display: grid;
    place-content: center;
    
    border-radius: var(--border-radius-main);
}

.tooltip {
  position: absolute;
  background-color: var(--color-black1);
  color: var(--color-white);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  z-index: 9999;
  max-width: 320px;
  opacity: 0;
  pointer-events: none;
  transition: var(--tooltip-transition);
}

.tooltip-visible {
  opacity: 1;
}

.bgColorVerde{
  border-color: var(--color-green) !important;
  background-color: var(--color-green) !important;
}

.bgColorRojo{
  border-color: var(--color-red) !important;
  background-color: var(--color-red) !important;
}

.bgColorNaranja{
  border-color: var(--color-yellow) !important;
  background-color: var(--color-yellow) !important;
}

.bgColorBlueCool {
  border-color: var(--color-blue) !important;
  background-color: var(--color-blue) !important;
}

.boxShadow {
  box-shadow: var(--box-shadow);
}

#msjConsole{
  position: fixed;
  bottom: 10px;
  left: 10px;
  min-width: 30%;
  z-index: 9999999999;
  max-width: calc(100% - 32px);
}

.msjConsoleItem{
  width: max-content;
  padding: 15px;
  border-radius: 5px;
  color: white;
  width: 100%;
  margin: 5px;
  text-align: left;
}

.msjConsoleIcon{
  font-size: 16px;
  margin-right: 10px;
}

.msjConsoleClose{
  float: right;
  margin-top: 5px;
  font-size: 12px;
}

.msjConsoleClose:hover{
  color: #fafafa;
}


.bold {
  font-weight: 600;
}

.textoLimitadoOneLine {
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    max-width: 20ch;
    overflow: hidden;
}

button {
  transition: all .25s;
  &:hover {
    transform: scale(1.01);
  }
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.shadow {
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
}

.shadow-none {
    box-shadow: 0 0 #0000;
}

.checkbox-wrapper-19 {
    box-sizing: border-box;
    gap: 10px;
  }

  @-moz-keyframes dothabottomcheck-19 {
    0% {
      height: 0;
    }
    100% {
      height: calc(var(--checkbox-height) / 2);
    }
  }

  @-webkit-keyframes dothabottomcheck-19 {
    0% {
      height: 0;
    }
    100% {
      height: calc(var(--checkbox-height) / 2);
    }
  }

  @keyframes dothabottomcheck-19 {
    0% {
      height: 0;
    }
    100% {
      height: calc(var(--checkbox-height) / 2);
    }
  }

  @keyframes dothatopcheck-19 {
    0% {
      height: 0;
    }
    50% {
      height: 0;
    }
    100% {
      height: calc(var(--checkbox-height) * 1.2);
    }
  }

  @-webkit-keyframes dothatopcheck-19 {
    0% {
      height: 0;
    }
    50% {
      height: 0;
    }
    100% {
      height: calc(var(--checkbox-height) * 1.2);
    }
  }

  @-moz-keyframes dothatopcheck-19 {
    0% {
      height: 0;
    }
    50% {
      height: 0;
    }
    100% {
      height: calc(var(--checkbox-height) * 1.2);
    }
  }

  .checkbox-wrapper-19 input[type=checkbox] {
    display: none;
  }

  .checkbox-wrapper-19 .check-box {
    height: var(--checkbox-height);
    width: var(--checkbox-height);
    background-color: transparent;
    border: calc(var(--checkbox-height) * .1) solid #000;
    border-radius: 5px;
    position: relative;
    display: inline-block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: border-color ease 0.2s;
    -o-transition: border-color ease 0.2s;
    -webkit-transition: border-color ease 0.2s;
    transition: border-color ease 0.2s;
    cursor: pointer;
    margin-bottom: 0;
  }
  .checkbox-wrapper-19 .check-box::before,
  .checkbox-wrapper-19 .check-box::after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    height: 0;
    width: calc(var(--checkbox-height) * .2);
    background-color: var(--color-primary);
    display: inline-block;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    border-radius: 5px;
    content: " ";
    -webkit-transition: opacity ease 0.5;
    -moz-transition: opacity ease 0.5;
    transition: opacity ease 0.5;
  }
  .checkbox-wrapper-19 .check-box::before {
    top: calc(var(--checkbox-height) * .72);
    left: calc(var(--checkbox-height) * .41);
    box-shadow: 0 0 0 calc(var(--checkbox-height) * .05) var(--background-color);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .checkbox-wrapper-19 .check-box::after {
    top: calc(var(--checkbox-height) * .37);
    left: calc(var(--checkbox-height) * .05);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .checkbox-wrapper-19 input[type=checkbox]:checked + .check-box,
  .checkbox-wrapper-19 .check-box.checked {
    border-color: var(--color-primary);
  }
  .checkbox-wrapper-19 input[type=checkbox]:checked + .check-box::after,
  .checkbox-wrapper-19 .check-box.checked::after {
    height: calc(var(--checkbox-height) / 2);
    -moz-animation: dothabottomcheck-19 0.2s ease 0s forwards;
    -o-animation: dothabottomcheck-19 0.2s ease 0s forwards;
    -webkit-animation: dothabottomcheck-19 0.2s ease 0s forwards;
    animation: dothabottomcheck-19 0.2s ease 0s forwards;
  }
  .checkbox-wrapper-19 input[type=checkbox]:checked + .check-box::before,
  .checkbox-wrapper-19 .check-box.checked::before {
    height: calc(var(--checkbox-height) * 1.2);
    -moz-animation: dothatopcheck-19 0.4s ease 0s forwards;
    -o-animation: dothatopcheck-19 0.4s ease 0s forwards;
    -webkit-animation: dothatopcheck-19 0.4s ease 0s forwards;
    animation: dothatopcheck-19 0.4s ease 0s forwards;
  }

@font-face {
  font-family: 'BarlowMedium';
  src: url('/panel/fonts/Barlow-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'BentonSansBook';
  src: url('/panel/fonts/BentonSans-Book.otf') format('truetype');
}

@font-face {
  font-family: 'BentonSansCondBlack';
  src: url('/panel/fonts/BentonSansCond-Black.otf') format('truetype');
}

@font-face {
  font-family: 'CairoBold';
  src: url('/panel/fonts/Cairo-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'CubanoRegular';
  src: url('/panel/fonts/Cubano-Regular.otf') format('truetype');
}
@font-face {
  font-family: 'MayfieldRegular';
  src: url('/panel/fonts/Mayfield-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Sugo';
  src: url('/panel/fonts/Sugo.otf') format('truetype');
}










