@import url('https://fonts.cdnfonts.com/css/louis-george-cafe');
@import url('https://fonts.cdnfonts.com/css/champagne-limousines');

:root {
    --color-light: #FAF4E9;
    --color-dark: #2E0E31;
    --color-signal: #F4BD20;
    --color-zafeti: #00715B;
    --color-zafeti-light: #19B686;

    --color-gbc: #13ACE2;
    --color-gbc-light: #78CAB5;

    --color-mrs: #F4038D;
    --color-mrs-yellow: #FDE71F;
    --color-mrs-blue: #17CEAF;

    --color-let: #7DCC77;
    --color-let-black: #4C4E56;

    --color-background: var(--color-light);
    --color-text: var(--color-dark);
    --color-accent: var(--color-signal);
    --size-bezel: 0.5rem;
    --size-radius: 4px;
}
body {
    display: flex;
    background-color:#FAF4E9;
    font-family: 'sarvatrik-latin-variable', sans-serif;                                  
    font-style: normal;
    font-weight: 500;
    color: #2E0E31;
    flex-direction: column;
    margin: 0;
}
header {
    font-family: 'gravesend-sans', sans-serif;	
}
footer {
    position: fixed;
    bottom: 0;
    font-family: 'gravesend-sans', sans-serif;
    font-size: 8px;
    width: 100%;
    height: 1px;
    background: #00715B;
}

.mrs {
    background-color: var(--color-mrs);
}
/* Para el cuadro de proveedores */
.zafeti {
    transition: opacity 0.5s ease;
    display: block;
    margin: 25px;
    margin-bottom: 1em;
}
.zafeti-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.zafeti-body-images {

    max-width: 50em;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.zafeti-body-images img {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.zafeti-sup {
    border-radius: var(--size-radius);
    border: 3px solid var(--color-zafeti);
    box-shadow: 0.5rem 0.5rem 0 var(--color-shadow, currentColor);
    width: 100%;
    height: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.zafeti-sup div {
    outline: solid #00715B;
    padding: 10px;
    margin: 10px;
}
.zafeti-sup img {
    width: 100%;
    max-width: 30em;
}
.zafeti-gods {
    background-color: #13ACE2;
    border-radius: 5px;
}
.zafeti-gods:hover {
    background-image: url("../Images/Body/gods-personaje-zafeti.png");
    box-shadow: 5px 5px 10px #888; /* Sombra */
    background-position: center;
    transition: 0.5s;
}
.zafeti-sugar {
    background-color: #F4038D;
    border-radius: 5px;
}
.zafeti-sugar:hover {
    background-image: url("../Images/Body/mrsugar-personaje-zafeti.png");
    box-shadow: 5px 5px 10px #888; /* Sombra */
    background-position: center;
    transition: 0.5s;
}
.zafeti-lettuce {
    outline: solid red;
    background-color: transparent;
    border-radius: 5px;
}
.zafeti-lettuce:hover {
    background-image: url("../Images/Body/greenlettuce_pattern.png");
    box-shadow: 5px 5px 10px #888; /* Sombra */
    background-position: center;
    transition: 0.5s;
}
.link-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2em;
    color: #FAF4E9;
    text-decoration: none;
}
/* Para el navigation overlay */
.overlay-nav {
    height: 0%;
    width: 100%;
    background-color: #00715B;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-y: hidden;
    transition: height 0.3s ease;
}
.overlay-nav-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}
.overlay-nav a {
    text-decoration: none;
    font-size: 36px;
    color: #FDF6E8;
    display: block;
    transition: 0.3s;
	margin: 10px;
	height: 5vh;
}
.overlay-nav a:hover, .overlay-nav a:focus {
    color: black;
}
.overlay-nav .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}
.nav-bar {
    /* background-color: #1BAB7D; */
    background-color: #00715B;
    height: 6em;
    position: absolute;
    justify-content: center;
    align-items: center;
    display: flex;
    top: 0%;
    right: 0%;
    left: 0%;
    bottom: auto;
}
.nav-bar-container {
    object-fit: fill;
    overflow: visible;
    max-width: 100%;
    margin-left: auto;

    padding-left: 3rem;
    padding-right: 3rem;
    display: block;
}
.nav-bar-menu-wrap {
    flex-shrink: 0;
    position: absolute;
    left: 0%;
    top: 50%;
    margin-left: 10px;
    transform: translate(0, -50%);
    display: block;
}
.nav-bar-menu {
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 5px;
    display: flex;
    position: relative;
}
.nav-bar-menu-icon {
    cursor: pointer;
    display: block;
    padding: 10px;
    width: 30px;
}
.nav-bar-menu-icon span {
    display: block;
    border-radius: 5px;
    height: 3px;
    width: 25px;
    background-color: #FDF6E8;
    margin-bottom: 5px;
    transition: 0.5s ease;
}
.nav-bar-menu-text {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 90%;
}
.nav-bar-wrap {
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    display: flex;
    position: relative;
}
.nav-bar-logo {
    width: 250px;
    justify-content: center;
    align-items: center;
    display: flex;
    max-width: 100%;
    text-decoration: underline;
}
.nav-bar-logo:visited {
    color: VisitedText;
}
.nav-bar-logo-box {
    z-index: 51251;
    width: auto;
    max-width: 100%;
    display: inline-block;
    border: 0;
}

/* Para el footer */

.wave {
  position: absolute;
  top: -50px!important;
  left: 0;
  width: 100%;
  height: 50px!important;
  background-image: url("../Images/Footer/footer-verde.png");
  background-size: 1000px 100px;
}

#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWaves 4s linear infinite;
}

#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animate 4s linear infinite !important;
}

#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWaves 3s linear infinite;
}

#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animate 3s linear infinite;
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-position-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-position-x: 0px;
  }
}
/* Para el contenedor del código */
.container-main {
    margin: 20px;
    padding: 5px;
	border: 3px solid #7DCC77; /* Color del borde */
	box-shadow: 5px 5px 10px #888; /* Sombra */
}

.pruebas {
    display: block;
    width: 50%;
    max-width: 700px;
    padding-bottom: 10px;
}
.product-verification-container {
    transition: opacity 0.5s ease;
    padding: 15px;
    max-width: 580px;   
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border: 3px solid var(--color-zafeti);
}

.verification-encabezado {
    text-align: center;
    margin-top: 30px;

}

.verification-paragraph {
    text-align: center;
    margin-bottom: 42px;
    margin-top: 5%!important;
}

.query-btn-code {
    display: flex;
    margin-bottom: 3vw;
    flex-direction: column;
    box-sizing: border-box;
}

.queryBar {
    display: flex;
    width: 100%;
    margin: 0 auto;
    position: relative;
    height: 50px;
    flex-direction: column;
    border: 1px solid;
    border-radius: 3px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.queryBar-text {
    position: absolute;
    /* transform: translateY(100%); */
    transition: all 0.3s;
    height: max-content;
    padding-left: 12px;
    font-size: 15px;
    pointer-events: none;
    color: #777;
    max-height: max-content;
    bottom: 0;
    top: 0;
    margin: auto;
    line-height: initial;
    /* margin-bottom: 10px; */
}

#code {
    height: 27px;
    width: 80%;
    outline: none;
    border: none;
    box-sizing: border-box;
    font-size: 16px;
    margin-top: 5px;
    color: #000 !important;
    background: none !important;
    position: absolute;
    top: 41%;
    bottom: 0;
    margin: auto;
    box-shadow: none;
    padding: 0;
    padding-left: 12px;
    line-height: normal;
}

.close-icon-verification {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #8A8A8A;
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 5px;
    display: none;
}

.close-icon-verification::before,
.close-icon-verification::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: #000;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}

.close-icon-verification::after {
    transform: rotate(45deg);
}

.close-icon-verification::before {
    transform: rotate(-45deg);
}

.verification-result {
    display: flex!important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    min-height: 80px;
    background-color: white;
    width: 100%;
    margin-top: 20px;
    padding: 10px 10px 10px 10px;
    box-sizing: border-box;
    font-size: 14px;
    position: relative;
}

.submit-btn {
    outline: none;
    width: 100%;
    height: 50px;
    background: #78CAB5;
    color: #FFF !important;
    border: none;
    line-height: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    border-radius: 3px;
    text-transform: none;
}

.verification-loading {
    position: relative;
    display: none;
    justify-content: center;
    width: 30px;
    height: 30px;
    animation: demo 0.8s ease-in-out infinite;
    background: #FFFFFF !important;
}

.verification-instructions,
.mobile-head {
    text-align: center;
    margin: .5em;
}
.layout-layout,
.layout-layout-2,
.layout-images,
.layout-images-2 {
    display: flex;
    justify-content: space-between;
    text-align: center;

}
.layout-cell { 
    border: 3px solid var(--color-zafeti);
    width: 100%;
    margin: 1rem;
    padding: .5em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.layout-cell:hover {
    box-shadow: 5px 5px 10px #888; /* Sombra */
    transition: 200ms ease;
}
.layout-cell img {
    width: 10em;
    justify-content: center;
    align-items: center;
}
.container h1 {
    font-size: 28px;
}
.container h2 {
    font-size: 22px;
}

/* .main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.layout-layout,
.layout-layout-2,
.layout-images,
.layout-images-2 {
    display: flex;
}
.layout-cell {
    border: 3px solid var(--color-zafeti);
    margin: 0.5em;
    width: 100%;
    padding: 0.5em;
    display: flex;
    justify-content: center;
    font-size: 0.8em;
}
.paso1,
.paso2,
.paso3,
.paso4 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.image1-container,
.image2-container {
    justify-content: space-evenly;
    align-items: center;
    display: flex;
}
.image1-container img,
.image2-container img {
    width: 10em
} */
/* .paso1 {
    background-image: url("https://assets-global.website-files.com/62282607739bd61f2cabc5ee/64ac569851f5c2cf6397d087_01a.png");
}
.paso2 {
    background-image: url("https://muhaverify.com/wp-content/uploads/2022/04/02.png");
}
.paso3 {
    background-image: url("https://muhaverify.com/wp-content/uploads/2022/04/03.png");
}
.paso4 {
    background-image: url("https://muhaverify.com/wp-content/uploads/2022/04/04.png");
} */

#error-icon,
#repeat-icon,
#success-icon {
    position: absolute;
    top: 0;
    left: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 15px;
}

.verification-result-para {
    margin-top: 0;
}

.container-images {
    margin-bottom: 10px;
    display: flex;
    text-align: center;
    justify-content: space-evenly;
}
#mrsugar-logo {
	width: 50%!important;
	height: 50%!important;
	margin-right: 15px;
}
#broccoli-logo,
#vape-logo,
#edible-logo,
#zafeti-logo,
#verify-logo,
#qr-logo {
	width: 100%;
    max-width: 7em;
}
#header-mrsugar {
	width: 50%;
	margin-right: 20px;
}
#mrsugar-personaje {
	margin: 5px;
	width: 50%
}
.pruebas-marca {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.pruebas-body {
	margin-top: 15px;
}
#sugar-prueba {
	color: transparent;
}
.verification-result-des {
    margin-top: 1.5em;
    display: block!important;
    align-items: center;
    justify-content: center;
    font-size: 15px!important;
}

/* Cambios al 14 DIC 23 */
.pruebas {
    display: block!important;
}
.card-body {
    justify-content: space-between;
    align-items: center;
    display: flex;
}
/* Para el card del input */
  /* Card component */
.card-container {
    margin-top: 6em!important;
}
.container {
    margin-bottom: 12em!important;
}
.card-container,
.container,
.container-mobile {
    margin: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
  .container {
    margin-top: 1em!important;
  }
  .container-mobile {
    display: none;
  }
  .card,
  .main-container,
  .mobile-main {
    display: block;
    background: var(--color-background);
    padding: 1em;
    margin-top: var(--size-bezel);
    border-radius: var(--size-radius);
    border: 3px solid var(--color-zafeti);
    box-shadow: 0.5rem 0.5rem 0 var(--color-shadow, currentColor);
  }

  .card *:first-child {
    margin-top: 0;
  }
  .card-head {
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    align-items: center;
  }

  .zafeti-card {
    width: 100%;
    max-width: 8em;
    margin-bottom: 1em;
  }
  /* Input component */
  .input {
    position: relative;
  }
  
  .input__label {
    -webkit-transform: translate(0.25rem, -70%) scale(0.8);
    transition: transform 120ms ease-in;
    position: absolute;
    padding: calc(var(--size-bezel) * 0.75) calc(var(--size-bezel) * 0.5);
    margin: calc(var(--size-bezel) * 0.65 + 1em) calc(var(--size-bezel) * 0.5);
    white-space: nowrap;
    transform: translate(0, 0);
    transform-origin: 0 0;
    background: var(--color-background);
    transition: transform 120ms ease-in;
    font-weight: bold;
    line-height: 1.2;
  }
/* Aplicar top: -3.5em solo en Safari */
@media not all and (min-resolution: .001dpcm) { 
    @supports (-webkit-appearance:none) {
      .input__label {
        top: -3.5em;
      }
    }
  }
  
  /* Aplicar top: 0 para otros navegadores */
  @supports not (-webkit-appearance:none) {
    .input__label {
      top: 0;
    }
  }
  
  .input__field {
    -webkit-border-radius: var(--size-radius);
    -webkit-display: block;
    margin-top: 1em!important;
    box-sizing: border-box;
    display: block;
    width: 100%;
    border: 3px solid var(--color-zafeti);
    padding: calc(var(--size-bezel) * 1.5) var(--size-bezel);
    color: currentColor;
    background: transparent;
    border-radius: var(--size-radius);
  }
  
  .input__field:focus,
  .input__field:not(:placeholder-shown) {
    & + .input__label {
        -webkit-transform: translate(0.25rem, -70%) scale(0.8);
      transform: translate(0.25rem, -70%) scale(0.8);
      color: var(--color-zafeti-light);
    }
  }
  
  /* Button group and button styles */
  .button-group {
    display: flex;
    justify-content: center;
    margin-top: calc(var(--size-bezel) * 2.5);
    margin-bottom: 1em;
  }
  
  button {
    -webkit-color: currentColor;
    color: currentColor;
    padding: var(--size-bezel) calc(var(--size-bezel) * 2);
    background: var(--color-accent);
    border:none;
    border-radius: var(--size-radius);
    font-weight: 900;
    cursor: pointer;
    
    &[type=reset] {
      font-weight: 200;
    }
  }
    
    button + button {
      margin-left: calc(var(--size-bezel) * 2);
    }
    
    /* Icon styles */
    .icon-card {
      display: inline-block;
      width: 1em;
      height: 1em;
      margin-right: 0.5em;
    }
    
    /* Hidden class */
    .hidden {
      display: none;
    }
    
.verification-faces img {
    width: 8em;
}

/* Para el javascript */

.gbc {
    background-color: var(--color-gbc);
}
.wave-blue {
    transition: background-color 1s ease-in-out;
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("../Images/Footer/footer-azul.png");
    background-size: 1000px 100px;
    z-index: 1000;
    opacity: 1;
    bottom: 0;
  }
.card-gbc {
    border: 3px solid var(--color-gbc);
}
.subcard-gbc {
    border: 3px solid var(--color-gbc-light)!important;
}
.text-gbc {
    color: var(--color-gbc-light);
}
.outline-gbc {
    outline: solid var(--color-gbc-light)!important;
}

.mrs {
    background: var(--color-mrs);
}
.wave-pink {
    transition: background-color 1s ease-in-out;
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("../Images/Footer/footer-rosa.png");
    background-size: 1000px 100px;
    z-index: 1000;
    opacity: 1;
    bottom: 0;
}
.card-mrs {
    border: 3px solid var(--color-mrs);
}
.subcard-mrs {
    border: 3px solid var(--color-mrs-blue)!important;
}
.text-mrs {
    color: var(--color-mrs);
}
.outline-mrs {
    outline: solid var(--color-mrs-blue)!important;
}
.let {
    background: var(--color-let);
}
.wave-green {
    transition: background-color 1s ease-in-out;
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("../Images/Footer/footer-verde-bajo.png");
    background-size: 1000px 100px;
    z-index: 1000;
    opacity: 1;
    bottom: 0;
}
.card-let {
    border: 3px solid var(--color-let)
}
.subcard-let {
    border: 3px solid var(--color-let-black);
}
.text-let {
    color: var(--color-let-black);
}
.outline-let {
    outline: solid var(--color-let-black);
}

@media screen and (min-width: 360px) and (max-width: 480px) {
    .nav-bar {
        height: 4em;
    }
    .overlay-nav a {
        font-size: 25px;
    }
    .closebtn {
        top: 0.5em!important;
        right: 0.5em!important;
        font-size: 40px!important;
    }
    .card-container {
        margin-top: 4em!important;
    }
    .card-container,
    .zafeti {
        margin-bottom: 0;
    }
    .card {
        margin-top: 0;
    }
    .container {
        display: none;
    }
    .container-mobile {
        display: flex;
        margin-bottom: 7em;
    }
    .wave {
        top: -80px;
        width: 100%!important;
    }
    footer {
        position: relative;
        font-size: 6px;
        height: 20px;
    }
    .link-contact {
        margin: 0 auto;
    }
    #broccoli-logo,
    #vape-logo,
    #verify-logo,
    #qr-logo {
        max-width: 4em;
    }
    .zafeti-card {
        max-width: 7em;
    }
    .card-container h1 {
        font-size: 25px;
    }
    .verification-faces img {
        width: 7em;
    }
}
.mobile-body div {
    border-radius: var(--size-radius);
    border: 3px solid var(--color-zafeti);
    margin: 10px 0;
    display: block;
}
.mobile-body h1 {
    padding-top: 5px;
    font-size: 23px;
    justify-content: center;
    display: flex;
}
.mobile-body h2 {
    margin: 0 auto;
    display: flex;
    padding: 0 5px 0 5px;
    font-size: 20px;
    text-align: center;
}
.mobile-body img {
    display: flex;
    margin: 0 auto;
    max-width: 8em;
}

