/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/@angular-devkit/build-angular/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/@angular-devkit/build-angular/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./projects/mariano-max/src/styles.scss?ngGlobalStyle ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap);
/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/@angular-devkit/build-angular/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/@angular-devkit/build-angular/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./projects/mariano-max/src/styles.scss?ngGlobalStyle (1) ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  /* Vanguard Elite Palette - Linked to Dynamic Config */
  --primary-color: var(--primerColor, #039072);
  --primary-color-hover: var(--segundoColor, green);
  --primary-color-light: color-mix(in srgb, var(--primary-color), white 90%);
  --accent-color: var(--primary-color, #fcf9f9);
  --accent-color-hover: #000000;
  --text-main: #1a1a1a;
  --text-muted: #5f6368;
  --bg-app: #f2f4f7;
  --surface-card: #ffffff;
  --border-color: #e2e8f0;
  /* Global Color Mappings */
  --primerColor: var(--primary-color);
  --segundoColor: var(--accent-color);
  --tercerColor: #ffffff;
  --textoColor: var(--text-main);
  --sombraColor: rgba(0, 0, 0, 0.05);
  /* Legacy Variable Bridges */
  --first-ecommerce-color: var(--primary-color);
  --second-ecommerce-color: var(--accent-color);
  --third-ecommerce-color: #ffffff;
  --fourth-ecommerce-color: var(--bg-app);
  /* Vanguard Geometry */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-vanguard: 18px;
  --radius-pill: 100px;
  /* Vanguard Depth (Elite Shadows) */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-vanguard: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-blur: blur(12px);
  /* Motion */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes vanguard-float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}
:root {
  --first-ecommerce-color: var(--primerColor);
  --second-ecommerce-color: var(--segundoColor);
  --third-ecommerce-color: var(--tercerColor);
  --first-text-color: var(--textoColor);
  --sombra-color: var(--sombraColor);
  --foo-ecommerce-color: var(--foo-ecommerce-color);
  --foo-text-ecommerce-color: var(--foo-text-ecommerce-color);
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 599px) {
  html {
    margin: 0;
  }
}

@media (max-width: 599px) {
  .normalicedscreen {
    zoom: 1;
  }
}

#container-carga {
  background-color: rgba(28, 28, 28, 0.3);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}

#carga {
  border: 6px solid #eee;
  border-top: 6px solid var(--primary-color);
  height: 60px;
  width: 60px;
  border-radius: 50%;
  animation: girar 1s linear infinite;
}

@keyframes girar {
  to {
    transform: rotate(360deg);
  }
}
iframe {
  width: 100% !important;
  height: 800px !important;
}

body {
  margin: 0;
  background-color: var(--bg-app);
  color: var(--text-main);
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-app);
}

::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-main);
}

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

.notvisible {
  display: none;
}

.visible {
  display: block;
}

.blocked {
  overflow: hidden;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 4px solid var(--accent-color);
}

.tooltip .tooltiptext {
  width: 255px;
  background-color: var(--accent-color);
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  position: absolute;
  z-index: 10;
  left: 103%;
  bottom: 0;
  min-height: 2.3em;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-base);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
@media (max-width: 599px) {
  .tooltip .tooltiptext {
    left: 50%;
    transform: translateX(-50%);
    bottom: 70px;
  }
}

.tooltip:hover .tooltiptext,
.labelform:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  margin-left: -18px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent var(--accent-color) transparent transparent;
}
@media (max-width: 599px) {
  .tooltip .tooltiptext::after {
    top: 50%;
  }
}

.roundedOne {
  position: relative;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  margin-left: 10px;
  width: 17pt;
  height: 17pt;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.roundedOne label {
  cursor: pointer;
  margin-left: 40px;
  min-width: 300px;
}

.roundedOne label:after {
  content: "";
  width: 17pt;
  height: 17pt;
  position: absolute;
  background: var(--primary-color);
  opacity: 0;
  border-radius: 50%;
  left: -1pt;
  top: -1pt;
}

.roundedOne label:hover::after {
  opacity: 0.3;
}

.roundedOne input[type=checkbox] {
  visibility: hidden;
}

.roundedOne input[type=checkbox]:checked + label:after {
  opacity: 1;
}

.buttonpc {
  height: 44px;
  padding: 0 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  outline: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}
.buttonpc:hover {
  box-shadow: var(--shadow-md);
  opacity: 0.95;
}

.blubutton {
  background: var(--primary-color);
  color: white;
}
.blubutton:hover {
  background: var(--primary-color-hover);
}

.whibutton {
  background: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.whibutton:hover {
  background: var(--primary-color-light);
}

.redbutton {
  background: var(--accent-color);
  color: white;
}
.redbutton:hover {
  filter: brightness(1.1);
}

.botones {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 74px;
  z-index: 3;
  position: relative;
}
@media (max-width: 599px) {
  .botones {
    justify-content: center;
  }
}

.myimg {
  object-fit: contain;
}
@media (max-width: 599px) {
  .myimg {
    margin: 0;
  }
}

.myimg2 {
  width: 155px;
  height: 153px;
  object-fit: contain;
}
@media (max-width: 599px) {
  .myimg2 {
    align-self: end;
  }
}

.disable-dbl-tap-zoom {
  touch-action: manipulation;
}

@media (min-width: 1368px) {
  .roundedOne {
    position: relative;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    margin-left: 10px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .roundedOne label {
    cursor: pointer;
    margin-left: 40px;
    min-width: 300px;
  }
}
@media (min-width: 1368px) and (max-width: 599px) {
  .roundedOne label {
    min-width: 230px;
  }
}
@media (min-width: 1368px) {
  .roundedOne label:after {
    content: "";
    width: 17pt;
    height: 17pt;
    position: absolute;
    background: var(--primary-color);
    opacity: 0;
    border-radius: 50px;
    left: -1pt;
    top: -1pt;
  }
  .roundedOne label:hover::after {
    opacity: 0.3;
  }
  .roundedOne input[type=checkbox] {
    visibility: hidden;
  }
  .roundedOne input[type=checkbox]:checked + label:after {
    opacity: 1;
  }
}
.btnContinuar {
  color: white;
  max-height: 60px;
  font-size: 25px;
  background: var(--primary-color);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  display: flex;
  padding: 0.5em;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
}

.btnCancelar {
  color: white;
  max-height: 60px;
  font-size: 25px;
  background: var(--accent-color);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  display: flex;
  padding: 0.5em;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
}

/*# sourceMappingURL=styles.css.map*/