:root {
  /* Colores */
  --azul: #0c2d80;
  --naranja: #fb7214;
  --amarillo: #f0cb01;
  --black: #002232;
  --celeste: #00abe9;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.contenedor {
  /*width: min(88%, 1550px);*/
  width: min(88%, 1184px);
  margin-inline: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
}

section {
  width: 100%;
  height: 100%;
}

main {
  width: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

h1 {
  color: var(--azul);
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

h2 {
  color: var(--1, #0c2d80);
  text-align: center;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

/*img {
    width: 100%;
    height: auto;
}*/

p {
  color: var(--black);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.none {
  display: none;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
}

/*Estilos generales*/
.accordion {
  width: 100%;
  max-width: 45rem;
  margin: 0 auto;
  .accordion-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin: 10px 0;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);

    summary {
      padding: 15px;
      cursor: pointer;
      font-weight: bold;
      font-size: 1rem;
      list-style: none;
      position: relative;
      color: #002232;
      display: flex;
      align-items: center;
      justify-content: start;
      color: var(--1, #0c2d80);
      font-family: Poppins;
      font-size: 20px;
      font-style: normal;
      font-weight: 700;
      line-height: 25px;
      gap: 1rem;

      &::after {
        display: inline-block;
        position: unset;
      }

      @media (max-width: 768px) {
        max-width: 90%;

        &::after {
          right: -1rem !important;
        }
      }

      .number-ask {
        color: var(--2, #82c633);
        font-family: Poppins;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: 30px;
      }
    }
  }

  .accordion-item summary::-webkit-details-marker {
    display: none;
    /* Oculta el marcador predeterminado */
  }

  .accordion-item summary:after {
    content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOSIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDE5IDEyIiBmaWxsPSJub25lIj4KPHBhdGggaWQ9IlZlY3RvciIgZD0iTTkuNDcyNzkgNi4yNDA0NkMxMC4yMTI1IDUuNDY1MTcgMTAuODMxNCA0LjgxMTUgMTEuNDY1NCA0LjE3MzAzQzEyLjU5NzUgMy4wMzI5MSAxMy43Mjk3IDEuODkyNzggMTQuODYxOSAwLjc1MjY1OEMxNS44NTgyIC0wLjIzNTQ1MSAxNy4zNTI2IC0wLjIzNTQ1MSAxOC4zMDM2IDAuNzUyNjU4QzE5LjIzOTUgMS43MTAzNiAxOS4yMzk1IDMuMTg0OTIgMTguMjU4MyA0LjE3MzAzQzE1Ljk0ODcgNi41MTQwOSAxMy42MzkxIDguODM5OTQgMTEuMzE0NCAxMS4xNjU4QzEwLjIxMjUgMTIuMjc1NSA4LjgwODU5IDEyLjI3NTUgNy43MjE3MiAxMS4xODFDNS4zOTcwMiA4Ljg1NTE0IDMuMDcyMzIgNi41MjkyOSAwLjc2MjcxOCA0LjE4ODIzQy0wLjIzMzU4MSAzLjE4NDkyIC0wLjI0ODY3NyAxLjY5NTE2IDAuNjg3MjQxIDAuNzIyMjUyQzEuNjM4MjUgLTAuMjUwNjU0IDMuMTYyODkgLTAuMjUwNjU1IDQuMTc0MjkgMC43ODMwNThDNS45MTAyNiAyLjU2MTY1IDcuNjMxMTQgNC4zNTU0NSA5LjQ3Mjc5IDYuMjQwNDZaIiBmaWxsPSIjRkI3MjE0Ii8+Cjwvc3ZnPg==);
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: #ffa500;
    margin-left: auto;
    /* position: absolute; */
    right: 1rem;
    /* Cambia el color de la flecha si es necesario */
  }

  .accordion-item[open] summary:after {
    transform: rotate(180deg);
    /* Invierte la flecha al abrir */
  }

  .accordion-item .content {
    width: 100%;
    margin: 0;
    background-color: #f9f9f9;
    overflow: hidden;
    /* Asegura que no se muestren bordes inesperados */
    max-height: 0;
    opacity: 0;
    transition: all 0.5s ease;
    /* Ajusta la velocidad y suavidad aquí */
    font-size: 0.95rem;
    color: #333333;
    display: flex;
    /* justify-content: center;*/

    p {
      width: 80%;
    }
  }

  .accordion-item .content.list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 1rem;

    p {
      font-weight: 700;
    }

    ul {
      display: flex;
      flex-direction: column;
      padding-left: 1.5rem;

      li {
        list-style-type: disc;
      }
    }
  }

  .accordion-item[open] .content {
    max-height: 80rem;
    height: fit-content;
    /* Ajusta según la altura máxima esperada del contenido */
    opacity: 1;
    justify-content: center;
  }
}

/*Estilos para el header*/
.site-header {
  .container {
    .options-desktop {
      display: none;
    }
  }
}

.site-header-nav {
  .main-navegation {
    display: flex;

    .aside-hambur {
      background: transparent;
      border: none;
    }

    .sidebar {
      width: 450px;
      position: fixed;
      right: -450px;
      /* Viene de la derecha */
      top: 50%;
      height: 100vh;

      bottom: 0;
      background-image: url(../../images/sidebar.webp);
      background-size: cover;
      background-repeat: no-repeat;
      z-index: 1000;
      overflow-x: hidden;
      transform: translateY(-50%);
      transition: right 0.3s;

      &.open {
        right: 0;
      }

      &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 34, 50, 0.5);
        z-index: -1;
      }

      .close-sidebar {
        position: absolute;
        top: 1rem;
        left: 1rem;
      }

      .option-sidebar {
        height: 100%;
        display: flex;
        flex-direction: column;
        padding-inline: 2rem;

        justify-content: center;
        gap: 8rem;

        .menu-aside-bar-container {
          .menu {
            display: flex;
            flex-direction: column;
            gap: 1rem;

            li.menu-item {
              a {
                width: fit-content;
                color: white !important;
              }
            }
          }
        }

        .contact-us {
          display: flex;
          flex-direction: column;
          gap: 1rem;
          align-items: start;

          .contact {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: start;

            h3 {
              color: var(--4, #fb7214);
              font-family: Poppins;
              font-size: 15px;
              font-style: normal;
              font-weight: 700;
              line-height: 15px;
            }

            p {
              color: var(--5, #fff);
              font-family: Poppins;
              font-size: 16px;
              font-style: normal;
              font-weight: 300;
              line-height: 20px;
              text-align: start;
            }

            .redes {
              display: flex;
              gap: 1rem;
            }
          }
        }
      }
    }

    .sidebar-overlay {
      position: fixed;
      display: none;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 999;

      &.open {
        display: block;
      }
    }
  }
}

.site-header-top {
  background-color: #0c2d80;
  width: 100%;
  height: 5rem;

  .container {
    display: flex;
    justify-content: flex-end;

    .options {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;

      .xoo-wsc-sc-cont {
        .xoo-wsc-cart-trigger {
          width: 40px;
          height: 40px;
          border-radius: 5px;
          background: var(--4, #fb7214);
          display: flex;
          align-items: center;
          justify-content: center;

          .xoo-wsc-sc-subt {
            display: none;
          }

          .xoo-wsc-sc-bkcont {
            .xoo-wsc-sc-bki.xoo-wsc-icon-basket1 {
              &::before {
                content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDE4IDE4IiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTAgMC42MTQzNDRDMC4xOTI1MzEgMC4xNTUyMzIgMC40MTk2MTkgMC4wMDIxOTQwOSAwLjkxMzI4OSAwLjAwMjE5NDA5QzEuNDIxNzcgMC4wMDIxOTQwOSAxLjkzMDI1IC0wLjAwMjc0MjYxIDIuNDM4NzMgMC4wMDIxOTQwOUMzLjM4NjU3IDAuMDEyMDY3NSA0LjExNzIxIDAuNjQzOTY1IDQuMjYwMzcgMS41ODE5NEM0LjMxOTYxIDEuOTY3IDQuMzc4ODUgMi4zNTcgNC40MzMxNSAyLjc0MjA2QzQuNDQ3OTYgMi44NTA2NyA0LjQ5NzMzIDIuOTAwMDMgNC42MDU5NCAyLjg5NTFDNC42NzAxMSAyLjg5NTEgNC43MzQyOSAyLjg5NTEgNC43OTg0NyAyLjg5NTFDOC44MzY2OSAyLjg5NTEgMTIuODc0OSAyLjg5NTEgMTYuOTEzMSAyLjg5NTFDMTcuMDMxNiAyLjg5NTEgMTcuMTQ1MSAyLjkwMDAzIDE3LjI2MzYgMi45MTk3OEMxNy43ODY5IDMuMDAzNzEgMTguMDgzMSAzLjQxODM5IDE3Ljk3OTUgMy45MzE4QzE3LjU1NDkgNi4wNzQzMyAxNy4xMzAzIDguMjIxNzkgMTYuNjkxIDEwLjM1OTRDMTYuNDg4NiAxMS4zMzY5IDE1Ljg4MTQgMTEuOTU4OSAxNC44OTg5IDEyLjE4NkMxNC43MDY0IDEyLjIzMDQgMTQuNTA0IDEyLjI0MDMgMTQuMzA2NSAxMi4yNDAzQzExLjYxMTEgMTIuMjQ1MiA4LjkxMDc0IDEyLjI0NTIgNi4yMTAzNiAxMi4yNDAzQzUuMTY4NzIgMTIuMjQwMyA0LjMxOTYxIDExLjY3NzUgMy45ODM5MSAxMC43NzlDMy44NTU1NiAxMC40NDMzIDMuODMwODggMTAuMDgyOSAzLjc4MTUxIDkuNzMyNDJDMy42MzM0MSA4LjczNTIxIDMuNDg1MzEgNy43MzMwNiAzLjM0MjE0IDYuNzM1ODVDMy4xOTQwNCA1Ljc0MzU3IDMuMDUwODggNC43NDYzNiAyLjkwMjc4IDMuNzU0MDhDMi44MTM5MiAzLjE1Njc0IDIuNzM0OTMgMi41NjQzNCAyLjY0NjA3IDEuOTY3QzIuNjAxNjQgMS42OTA1NCAyLjU0NzM0IDEuNjQ2MTEgMi4yNjU5NCAxLjY0NjExQzEuODE2NyAxLjY0NjExIDEuMzYyNTMgMS42NDYxMSAwLjkxMzI4OSAxLjY0NjExQzAuNDE5NjE5IDEuNjQ2MTEgMC4xOTI1MzEgMS40OTMwOCAwIDEuMDM4OUMwIDAuODk1NzM2IDAgMC43NTI1NzIgMCAwLjYxNDM0NFoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0xMy42MzAyIDE3LjE2NzFDMTIuNDQ1NCAxNy4xNjcxIDExLjUxMjMgMTYuMjM0IDExLjUxMjMgMTUuMDU0MkMxMS41MTIzIDEzLjg4NDIgMTIuNDcgMTIuOTMxNCAxMy42MzUxIDEyLjkzMTRDMTQuNzg1NCAxMi45MzE0IDE1Ljc0OCAxMy45MDg5IDE1Ljc0OCAxNS4wNzM5QzE1Ljc0OCAxNi4yMzkgMTQuODA1MSAxNy4xNjcxIDEzLjYzMDIgMTcuMTY3MVoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik04LjUwNTg5IDE1LjA1NDJDOC40ODYxNCAxNi4yMjQyIDcuNTgyNzMgMTcuMTQ3MyA2LjQxNzY3IDE3LjE1MjNDNS4zMDE5NyAxNy4xNTcyIDQuMzU5MDYgMTYuMjc4NSA0LjM1NDEzIDE1LjA2NEM0LjM1NDEzIDEzLjgyIDUuMzI2NjYgMTIuOTYxIDYuNDMyNDggMTIuOTQxM0M3LjU2Mjk4IDEyLjkyMTUgOC41MTA4MiAxMy45MTM4IDguNTA1ODkgMTUuMDU0MloiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPg==");
              }
            }

            .xoo-wsc-sc-count {
              background-color: #82c633;
              color: white;
              right: -15px;
              top: -8px;
            }
          }
        }
      }

      .login-button {
        width: fit-content;
        height: 100%;

        a {
          display: block;
          width: 40px;
          height: 40px;
          border-radius: 5px;
          background: var(--4, #fb7214);
          display: flex;
          align-items: center;
          justify-content: center;
        }
      }

      .dgwt-wcas-search-wrapp {
        max-width: 18.563rem;
        background-color: transparent;

        form.dgwt-wcas-search-form {
          .dgwt-wcas-sf-wrapp {
            background-color: transparent;

            #dgwt-wcas-search-input-1 {
              background-color: white;
              max-height: 1.75rem;

              &::placeholder {
                color: var(--1, #0c2d80);
                font-family: Poppins;
                font-size: 11px;
                font-style: normal;
                font-weight: 400;
                line-height: 11px;
              }
            }

            .dgwt-wcas-search-submit {
              top: 18px;
              height: 16px;
              width: 16px;
              min-height: 16px;
              min-width: 16px;

              svg {
                path {
                  fill: #fb7214;
                }
              }
            }
          }
        }
      }
    }
  }
}

.login-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;

  .login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .login-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 90%;
    max-width: 41rem;

    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    z-index: 1001;

    .modal-close {
      position: absolute;
      right: -15px;
      top: -15px;
      font-size: 24px;
      cursor: pointer;
      background: none;
      border: none;
      color: #666;
      z-index: 10;
    }

    .u-column1 {
      display: flex;
      /* Visible por defecto */
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      text-align: center;
      padding: 3rem 0;
      width: 100%;

      form.woocommerce-form-login {
        width: 80%;
        margin: auto;

        .woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide {
          label {
            display: none;
          }
        }
      }
    }

    .u-column2 {
      display: none;
      width: 100%;

      p.contexto {
        color: var(--1, #0c2d80);
        text-align: center;
        font-family: Poppins;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 25px;
      }

      form.woocommerce-form.woocommerce-form-register.register {
        width: 80%;
        margin: auto;

        .woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide {
          label {
            display: none;
          }
        }

        .woocommerce-privacy-policy-text {
          display: none;
        }

        .woocommerce-form-row.form-row {
          display: flex;

          button.woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit {
            margin-bottom: 1rem;
            width: fit-content;
            margin: auto;
            padding: 10px 15px;
            border-radius: 10px;
            background: var(--4, #fb7214);
            color: #fff;

            text-align: center;
            font-family: Poppins;
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: 20px;
            cursor: pointer;
          }
        }

        .form-row {
          .woocommerce-form__label.woocommerce-form__label-for-checkbox {
            display: flex;
            gap: 0.5rem;

            input[type="checkbox"] {
              appearance: auto;
              width: unset;
            }

            span {
              color: var(--1, #0c2d80);
              font-family: Poppins;
              font-size: 15px;
              font-style: normal;
              font-weight: 300;
              line-height: 20px;
            }
          }
        }
      }
    }

    /* Estilos para los formularios */
    .form-row {
      margin-bottom: 15px;
    }

    .form-row input {
      width: 100%;
      padding: 15px;
      border-radius: 15px;
      border: 1px solid #fff;
      background: rgba(178, 178, 178, 0.4);
      color: var(--1, #0c2d80);

      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: 20px;

      &::placeholder {
        color: var(--1, #0c2d80);

        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
      }
    }

    .woocommerce-form-grid {
      display: grid;
      grid-template-columns: 1fr;
      place-items: start;
      gap: 1rem;
      margin-bottom: 1rem;

      .woocommerce-button {
        margin-bottom: 1rem;
        width: fit-content;
        margin: auto;
        padding: 10px 15px;
        border-radius: 10px;
        background: var(--4, #fb7214);
        color: #fff;

        text-align: center;
        font-family: Poppins;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        cursor: pointer;
      }
    }

    .woocommerce-form-link {
      display: grid;
      place-items: center;

      a {
        color: var(--4, #fb7214);
        text-align: center;
        font-family: Poppins;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 25px;
      }

      p {
        display: flex;
        gap: 1rem;
        color: var(--1, #0c2d80);
        text-align: center;
        font-family: Poppins;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 25px;

        button {
          color: var(--4, #fb7214);
          font-family: Poppins;
          font-size: 20px;
          font-style: normal;
          font-weight: 700;
          line-height: 25px;
          background-color: transparent;
        }
      }
    }
  }
}

/*Fin de estilos header*/

/*Estilos para el footerr*/
.questions {
  min-height: 500px;
  display: none;

  .left {
    flex: 1.5;
    background-color: #002232;
    min-height: 600px;

    .container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      width: 80%;

      h2 {
        font-weight: 700;
        text-align: center;
        color: white;
      }
    }
  }

  .right {
    flex: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

/*Fin estilos footer*/

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;

  .product-card {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 15px 10px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease-in-out;

    .product-image {
      img {
        width: 100%;
        height: auto;
        object-fit: cover;
      }
    }

    .product-details {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;

      .product-title {
        color: var(--1, #0c2d80);
        font-family: "Poppins", sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 25px;
      }

      .product-categories {
        border-radius: 5px;
        background: var(--2, #82c633);
        padding: 5px;
        width: fit-content;
        color: #fff;
        font-family: "Poppins", sans-serif;
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 13px;
        position: absolute;
        top: 3rem;
        left: 1rem;
      }

      .product-prices {
        .sale-price {
          color: var(--1, #0c2d80);
          font-family: "poppins", sans-serif;
          font-size: 20px;
          font-style: normal;
          font-weight: 700;
          line-height: 25px;

          bdi {
            font-weight: 700;

            span {
              font-weight: 700;
            }
          }
        }

        .regular-price {
          color: #4d4d4d;
          font-family: Poppins;
          font-size: 13px;
          font-style: normal;
          font-weight: 400;
          line-height: 13px;
          text-decoration: line-through;

          &.only {
            color: var(--1, #0c2d80);
            font-family: "poppins", sans-serif;
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 25px;
            text-decoration: none;

            bdi {
              font-weight: 700;

              span {
                font-weight: 700;
              }
            }
          }
        }
      }

      .product-link {
        display: flex;
        justify-content: center;
        padding: 10px 23px;
        background-color: var(--naranja);
        text-decoration: none;
        border-radius: 4px;
        color: #fff;
        font-family: "Poppins", sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        text-align: center;
      }
    }
  }
}

/*Fin de estilos generales*/

#hero_cursos {
  /*height: 100vh;*/
  margin-top: 5rem;
  padding-block-start: 5rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    top: 4.5rem;
    left: 0;
    width: 100%;
    height: 425px;
    top: 0;
    left: 0;
    background-image: url(../../images/lost.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
  }

  .contenedor {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 1rem;

    .left {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: start;
      padding-block-start: 5rem;
      flex: 1.5;

      p {
        text-align: start;
      }

      b {
        color: var(--azul);
        font-weight: 900;
      }

      .btn-link {
        border-radius: 10px;
        background: var(--4, #fb7214);
        padding: 15px 25px;
        color: white;
        width: fit-content;
        cursor: pointer;
      }
    }

    .rigth {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;

      img {
        object-fit: contain;
        max-height: 392px;
        max-width: 350px;
      }
    }
  }

  .valores {
    max-width: 1150px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;

    .card-valor {
      display: flex;
      justify-content: center;
      padding: 20px;
      gap: 1rem;
      border-radius: 20px;
      background: #fff;
      box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);

      .box-svg {
        height: unset;
      }

      .textos {
        display: flex;
        flex-direction: column;
        gap: 1rem;

        span {
          color: var(--4, #fb7214);
          font-family: Poppins;
          font-size: 16px;
          font-style: normal;
          font-weight: 700;
          line-height: 16px;
        }

        p {
          font-size: 15px;
        }
      }
    }
  }
}

#list-cursos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 0;

  .cursos-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;

    .cursos-sidebar {
      border-radius: 13px;
      background: var(--Color6, #f5f6fe);
      display: flex;
      flex-direction: column;
      padding: 1rem;

      .sidebar-close {
        display: none;
      }

      .sidebar-section {
        margin-bottom: 2rem;

        h3 {
          color: var(--1, #0c2d80);
          font-family: Poppins;
          font-size: 17px;
          font-style: normal;
          font-weight: 700;
          line-height: 18px;
          padding-left: 0.5rem;
          border-left: 2px solid var(--naranja);
        }

        ul {
          list-style: none;
          padding: 0.5rem;
          margin: 0;

          li {
            margin-bottom: 0.8rem;

            a {
              color: #4d4d4d;
              font-family: Poppins;
              font-size: 16px;
              font-style: normal;
              font-weight: 400;
              line-height: 18px;

              &:hover,
              &.active {
                color: var(--naranja);
                font-weight: 700;
              }
            }
          }
        }
      }
    }

    .order-bar {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0 2rem;

      #desplegar-filtros {
        display: none;
      }

      label {
        color: #666;
        font-family: "Poppins", sans-serif;
        font-size: 14px;
      }

      select {
        padding: 8px 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        color: #333;
        background-color: white;
        cursor: pointer;

        &:focus {
          outline: none;
          border-color: var(--naranja);
        }

        option {
          padding: 8px;
        }
      }
    }

    .pagination {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 2rem;
      padding: 1rem;

      a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 32px;
        height: 32px;
        padding: 0 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
        color: #666;
        text-decoration: none;
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        transition: all 0.3s ease;

        &:hover {
          background-color: #f5f5f5;
        }

        &.active {
          background-color: var(--naranja);
          border-color: var(--naranja);
          color: white;
        }

        &.page-nav {
          font-weight: bold;
        }
      }
    }
  }
}

#preguntas-frecuentes {
  display: flex;

  .left {
    flex: 1.5;
    background-color: #002232;
    min-height: 600px;

    .container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      width: 80%;

      h2 {
        font-weight: 700;
        text-align: center;
        color: white;
        position: relative;
        padding-bottom: 1rem;

        &::after {
          content: "";
          position: absolute;
          left: 50%;
          bottom: 0;
          transform: translateX(-50%);
          height: 4px;
          background-color: #82c633;
          width: 50%;
        }
      }
    }
  }

  .right {
    flex: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

/*Single-product*/
#producto-curso {
  display: flex;
  margin-top: 8rem;
  padding: 4rem 0;

  .contenedor {
    display: flex;
    gap: 2rem;
    flex-direction: column;

    h1 {
      color: var(--1, #0c2d80);
      font-family: Poppins;
      font-size: 35px;
      font-style: normal;
      font-weight: 700;
      line-height: 45px;
      max-width: 55%;
      margin-bottom: 1rem;
      position: relative;

      &::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 4px;

        background-color: #fb7214;
        width: 20%;
      }
    }

    .contain {
      display: flex;
      gap: 2rem;
      position: relative;

      .left {
        border-radius: 20px;
        background: #fff;
        flex: 1.5;
        height: 100%;
        padding: 1rem;
        box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);

        .flex-col {
          align-items: start;
          gap: 1.5rem;
          margin-bottom: 2rem;

          h2 {
            color: var(--Color7, #002232);
            font-family: Poppins;
            font-size: 26px;
            font-style: normal;
            font-weight: 700;
            line-height: 30px;
          }
        }

        .teorico,
        .teorico-practico {
          .detalles {
            .grid-detalles {
              display: grid;
              grid-template-columns: repeat(2, 1fr);
              border-radius: 15px;
              border: 0.5px solid var(--2, #82c633);
              width: 100%;
              background: #fdfffb;

              .card-detalle {
                width: 100%;
                height: 100px;
                display: grid;
                grid-template-columns: 1fr 1fr;

                &:first-child {
                  border-right: 0.5px solid var(--2, #82c633);
                  border-bottom: 0.5px solid var(--2, #82c633);
                }

                &:nth-child(2) {
                  border-bottom: 0.5px solid var(--2, #82c633);
                }

                &:last-child {
                  border-left: 0.5px solid var(--2, #82c633);
                }

                .box-svg {
                  display: flex;
                  align-items: center;
                  justify-content: center;

                  img {
                    max-height: 32px;
                    max-width: 32px;
                  }
                }

                .box-text {
                  display: flex;
                  align-items: center;

                  p {
                    color: var(--1, #0c2d80);
                    font-family: Poppins;
                    font-size: 18px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 23.35px;

                    b {
                      font-weight: 600;
                    }
                  }
                }
              }
            }
          }

          .dirigido {
            span {
              display: flex;
              align-items: center;
              gap: 1rem;
            }
          }

          .logros {
            .logros-list {
              display: grid;
              grid-template-columns: repeat(2, 1fr);
              gap: 1rem;

              .card-logro {
                display: flex;
                gap: 1rem;
                border-radius: 10px;
                background: var(--Color6, #f5f6fe);
                padding: 1rem;
              }
            }
          }

          .instructores {
            .list-instructores {
              display: flex;
              flex-direction: column;
              gap: 1rem;

              .card-instructor {
                border-radius: 25px;
                background-color: #82c633;
                padding: 1rem;
                display: flex;
                align-items: center;

                .instructor-info {
                  flex: 1.5;
                  display: flex;
                  flex-direction: column;
                  gap: 1rem;
                  align-items: start;

                  .open {
                    background-color: transparent;
                    border: none;
                  }
                }

                .image-instructor {
                  flex: 0.7;
                }
              }
            }
          }

          .valoraciones {
            .rating-summary {
              display: flex;
              gap: 1rem;
              width: 100%;
              align-items: center;

              .rating-number {
                flex: 1;
                display: flex;
                align-items: center;
                flex-direction: column;
                gap: 1rem;

                .avg-rating {
                  color: var(--1, #0c2d80);
                  text-align: center;
                  font-family: Poppins;
                  font-size: 90.698px;
                  font-style: normal;
                  font-weight: 700;
                  line-height: 90.698px;
                }

                .stars {
                  display: flex;
                  gap: 0.25rem;
                }

                .rating-text {
                  color: var(--Color7, #002232);
                  text-align: center;
                  font-family: Poppins;
                  font-size: 15px;
                  font-style: normal;
                  font-weight: 300;
                  line-height: 15px;
                }
              }

              .rating-bars {
                flex: 1.5;
                display: flex;

                flex-direction: column;
                gap: 0.5rem;

                .rating-bar {
                  display: flex;
                  align-items: center;
                  gap: 0.5rem;

                  .stars-label {
                    display: flex;
                    gap: 0.25rem;
                    width: 100px;
                  }

                  .progress-bar {
                    flex: 1;
                    height: 8px;
                    background: #eee;
                    border-radius: 9999px;
                    overflow: hidden;

                    .progress {
                      height: 100%;
                      background: #82c633;
                      border-radius: 9999px;
                    }
                  }

                  .percentaje {
                    min-width: 3rem;
                    color: var(--Color7, #002232);
                    text-align: center;
                    font-family: Poppins;
                    font-size: 15px;
                    font-style: normal;
                    font-weight: 300;
                    line-height: 15px;
                  }
                }
              }
            }
          }

          .certificados {
            .container-certificado {
              display: flex;
              align-items: center;
              gap: 1rem;

              .image-certificado {
                flex: 1;

                img {
                  border-radius: 10px;
                }
              }

              .textos-certificado {
                flex: 1.3;
                display: flex;
                flex-direction: column;
                gap: 1rem;

                h3 {
                  color: var(--1, #0c2d80);
                  font-family: Poppins;
                  font-size: 20px;
                  font-style: normal;
                  font-weight: 700;
                  line-height: 20px;
                }

                p {
                  color: var(--Color7, #002232);
                  font-family: Poppins;
                  font-size: 15px;
                  font-style: normal;
                  font-weight: 300;
                  line-height: 20px;
                }
              }
            }
          }
        }
      }

      .right {
        flex: 1;
        border-radius: 20px;
        background: #fff;
        height: fit-content;
        padding: 1rem;
        box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 5rem;

        .woocommerce-product-rating {
          display: none;
        }

        .product_title.entry-title {
          display: none;
        }

        .price {
          display: none;
        }

        .product_meta {
          display: none;
        }

        .variations_form.cart {
          .woovr-variations {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;

            .woovr-variation {
              padding: 0.8rem;
              border-radius: 10px;
              border: 1px solid var(--1, #0c2d80);
              background: #fff;

              .woovr-variation-selector {
                input[type="radio"] {
                  -webkit-appearance: none;
                  width: 20px;
                  height: 20px;
                  border: 1px solid darkgray;
                  border-radius: 50%;
                  outline: none;
                }

                input[type="radio"]:before {
                  content: "";
                  display: block;
                  width: 60%;
                  height: 60%;
                  margin: 20% auto;
                  border-radius: 50%;
                }

                input[type="radio"]:checked:before {
                  background: var(--naranja);
                }
              }

              .woovr-variation-info {
                display: flex;
                flex-direction: column;
                justify-content: center;

                .woovr-variation-name {
                  label {
                    color: var(--Color7, #002232);
                    font-family: Poppins;
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 500;
                    line-height: 20px;
                  }
                }

                .woovr-variation-price {
                  display: flex;
                  flex-direction: row-reverse;
                  justify-content: start;
                  gap: 1rem;

                  ins {
                    span {
                      color: var(--Color7, #002232);
                      font-weight: 700;

                      bdi {
                        color: var(--Color7, #002232);
                        font-weight: 700;
                      }
                    }
                  }

                  del {
                    span {
                      bdi {
                        text-decoration: line-through;
                        font-size: 15px;
                      }
                    }
                  }

                  .woocommerce-Price-amount.amount {
                    color: var(--Color7, #002232);
                    font-family: Poppins;
                    font-size: 20px;
                    font-style: normal;

                    line-height: 20px;
                  }
                }
              }
            }
          }

          .single_variation_wrap {
            .woocommerce-variation-add-to-cart {
              .custom-quantity-container {
                display: flex;
                justify-content: center;
                align-items: center;
                padding-bottom: 1rem;
                span.custom-message {
                  margin-right: 1rem;
                  max-width: 40%;
                  text-align: center;

                  color: var(--Color7, #002232);
                  font-family: Poppins;
                  font-size: 16px;
                  font-style: normal;
                  font-weight: 500;
                  line-height: 16px;
                }

                .custom-quantity-btn.minus,
                .custom-quantity-btn.plus {
                  width: fit-content;
                  background-color: #fb7212;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  font-weight: 900;
                  /* height: .7rem; */
                  color: white;
                  height: fit-content;
                  padding: 0.2rem;
                }

                .quantity {
                  width: fit-content;
                  padding: 0.2rem;

                  input {
                    background-color: #fb7214;
                    color: white;
                    font-size: 20px;
                    border-radius: 10px;

                    font-weight: 500;
                  }
                }
              }

              button {
                background-color: var(--naranja);
                width: 100%;
                padding: 1.5rem 1rem;
                border-radius: 10px;
              }
            }
          }
        }
      }
    }
  }
}

.cursos-relacionados {
  padding: 3rem 0;

  .contenedor {
    background-color: white;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding-block: 1rem;

    h2 {
      text-align: center;
      color: var(--Color7, #002232);
      text-align: center;
      /* titulos */
      font-family: Poppins;
      font-size: 30px;
      font-style: normal;
      font-weight: 700;
      line-height: 30px;
    }
  }
}

.comments {
  display: flex;
  flex-direction: column;
  background-color: var(--cream);
  padding-bottom: 2.5rem;

  .margin {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: min(88%, 1184px);
    margin-inline: auto;

    > h3 {
      font-family: var(--co-bold);
      color: var(--purple-cold);
      font-size: 2rem;
      text-align: center;
      align-self: center;
    }
  }

  .reviews-container {
    .splide__slide {
      padding: 0.5rem;
    }

    .splide__arrow--prev {
      left: -2.5em !important;
      border: 1px solid #fb7214;
      background: transparent;

      svg {
        path {
          fill: #fb7214;
        }
      }
    }

    .splide__arrow--next {
      right: -2.5rem !important;
      border: 1px solid #fb7214;
      background: transparent;

      svg {
        path {
          fill: #fb7214;
        }
      }
    }

    .review-card {
      display: flex;
      flex-direction: column;
      background-color: var(--white);
      border-radius: 0.668rem;
      box-shadow: 0px 1.184px 5.919px 0px rgba(0, 0, 0, 0.25);
      padding: 1rem 1rem;
      gap: 0.2rem;
      justify-content: space-between;
      height: 22rem;

      .top {
        display: flex;
        flex-direction: column;

        .comment {
          font-size: 0.938rem;

          color: var(--gray);
          display: -webkit-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 6;
          overflow: hidden;
          text-overflow: ellipsis;
          max-height: 100%;
        }
      }

      .bottom {
        gap: 0.2rem;
        display: flex;
        flex-direction: column;

        .client-avatar {
          display: flex;
          width: 100%;
          padding-block: 0.5rem;

          .avatar {
            display: flex;
            width: 4rem;
            height: 4rem;
            overflow: hidden;
            border-radius: 100%;

            img {
              object-position: center;
              object-fit: cover;
              width: 100%;
              height: 100%;
            }
          }
        }

        .client-name {
          font-size: 1.25rem;
          color: var(--azul);
        }

        .review-date {
          color: #575656;
          font-family: Poppins;
          font-size: 13px;
          font-style: normal;
          font-weight: 400;
          line-height: 15px;
        }

        .rating-container {
          display: flex;
          background-color: var(--naranja);
          padding: 0.3rem 0.6rem;
          border-radius: 0.363rem;
          gap: 0.3rem;
          justify-content: center;
          align-items: center;
          width: min-content;

          .rating-count {
            font-size: 0.8rem;

            color: white;
          }

          &::before {
            content: "";
            background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDE0IDEzIiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTUuODk3IDAuODQ4MTM3QzYuMjQzODkgMC4yOTAyMTIgNy4wNTU5IDAuMjkwMjEyIDcuNDAyNzkgMC44NDgxMzdMOC45ODQzIDMuMzkxNzdDOS4xMDYzNiAzLjU4ODA3IDkuMzAwMjUgMy43Mjg5NCA5LjUyNDY2IDMuNzg0MzZMMTIuNDMyNSA0LjUwMjQ0QzEzLjA3MDMgNC42NTk5NCAxMy4zMjEyIDUuNDMyMjEgMTIuODk3OCA1LjkzNDU0TDEwLjk2NzQgOC4yMjQ2N0MxMC44MTg0IDguNDAxNCAxMC43NDQ0IDguNjI5MzQgMTAuNzYxIDguODU5ODlMMTAuOTc2NiAxMS44NDczQzExLjAyMzkgMTIuNTAyNiAxMC4zNjcgMTIuOTc5OSA5Ljc1ODQzIDEyLjczMjRMNi45ODM4NSAxMS42MDQyQzYuNzY5NzMgMTEuNTE3MSA2LjUzMDA2IDExLjUxNzEgNi4zMTU5NCAxMS42MDQyTDMuNTQxMzYgMTIuNzMyNEMyLjkzMjc4IDEyLjk3OTkgMi4yNzU4NSAxMi41MDI2IDIuMzIzMTUgMTEuODQ3M0wyLjUzODc5IDguODU5ODlDMi41NTU0MyA4LjYyOTM0IDIuNDgxMzcgOC40MDE0IDIuMzMyMzkgOC4yMjQ2N0wwLjQwMTk2NyA1LjkzNDU0Qy0wLjAyMTQ1NiA1LjQzMjIyIDAuMjI5NDcgNC42NTk5NCAwLjg2NzI4NCA0LjUwMjQ0TDMuNzc1MTQgMy43ODQzNkMzLjk5OTU1IDMuNzI4OTQgNC4xOTM0NCAzLjU4ODA3IDQuMzE1NDkgMy4zOTE3N0w1Ljg5NyAwLjg0ODEzN1oiIGZpbGw9IiNFNEFDNUIiLz4KPC9zdmc+");
            width: 1rem;
            height: 1rem;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
          }
        }
      }
    }
  }
}

.comment-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--cream);
  padding-block: 4rem;

  .margin {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    > h3 {
      font-size: 2rem;
      color: #0c2d80;
      width: 100%;
      text-align: center;
    }
  }

  .comment-box-container {
    display: flex;
    flex-direction: column;

    #contenedor_formulario_comentario {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

      #formulario_comentario {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;

        #formulario {
          display: flex;
          flex-direction: column;
          width: 80%;
          gap: 0.8rem;

          .main-comment {
            display: flex;
            flex-direction: column;
            background-color: #65348a1a;
            padding: 1.5rem 1.5rem;
            border-radius: 1rem;
          }

          .calificacion-comentario {
            display: flex;
            justify-content: flex-end;

            .estrellas {
              display: flex;
              flex-direction: row-reverse;
              justify-content: flex-end;

              label {
                cursor: pointer;

                svg path {
                  opacity: 0.5;
                  fill: #575656;
                  transition: var(--anim-low);
                }

                &:hover svg path,
                &:hover ~ label svg path,
                input:checked ~ & svg path {
                  opacity: 1;
                  fill: #e4ac5b;
                }
              }
            }
          }

          .texto-comentario {
            display: flex;
            background-color: transparent;
            max-height: 6rem;

            > textarea {
              width: 100%;
              background: transparent;
              border: 0;

              resize: none;

              &::placeholder {
                opacity: 0.8;
              }
            }
          }

          .enviar-formulario {
            display: flex;
            width: 100%;
            justify-content: flex-end;

            .enviar {
              width: max-content;
              padding: 0.5rem 0.8rem;
              color: white;
              background: #82c633;
              font-size: 0.938rem;

              border-radius: 0.7rem;
              line-height: normal;
              cursor: pointer;
            }
          }
        }
      }
    }
  }
}

/* fin Single-product*/

/*Estilos para el aside-cart*/
.xoo-wsc-modal {
  &.xoo-wsc-cart-active {
    background-color: red !important;

    .xoo-wsc-container {
      left: 0 !important;
    }
  }
}

.xoo-wsc-container {
  /* background-color: rgba(0, 0, 0, .3); 
    */
  background-color: transparent;
  left: -500px !important;

  .xoo-wsc-basket {
    background-color: #0c2d80;

    .xoo-wsc-bki {
      &::before {
        color: #fb7214;
      }
    }

    .xoo-wsc-items-count {
      border: 1px solid #fb7214;
      background-color: white;
      color: #fb7214;
    }
  }

  .xoo-wsc-header {
    background-color: #0c2d80;
    border-radius: 0 20px 0 0px;
    border-bottom: 0;

    .xoo-wsch-top {
      flex-direction: row-reverse;
      gap: 1rem;
    }

    .xoo-wsch-text {
      color: var(--5, #fff);
      font-family: Poppins;
      font-size: 25px;
      font-style: normal;
      font-weight: 700;
      line-height: 25px;
    }

    .xoo-wsch-close.xoo-wsc-icon-cross {
      right: -1rem;
      top: -2rem;

      &::before {
        content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MiIgaGVpZ2h0PSI1MiIgdmlld0JveD0iMCAwIDUyIDUyIiBmaWxsPSJub25lIj4KPGNpcmNsZSBjeD0iMjYiIGN5PSIyNiIgcj0iMjYiIGZpbGw9IiM4MkM2MzMiLz4KPHJlY3QgeD0iMTQuODU5NCIgeT0iMzQuNzIxNSIgd2lkdGg9IjI4IiBoZWlnaHQ9IjYiIHJ4PSIzIiB0cmFuc2Zvcm09InJvdGF0ZSgtNTAuODc0NyAxNC44NTk0IDM0LjcyMTUpIiBmaWxsPSIjRDlEOUQ5Ii8+CjxyZWN0IHg9IjE4LjI0MjciIHk9IjEzLjczMyIgd2lkdGg9IjI4IiBoZWlnaHQ9IjYiIHJ4PSIzIiB0cmFuc2Zvcm09InJvdGF0ZSg0NSAxOC4yNDI3IDEzLjczMykiIGZpbGw9IiNEOUQ5RDkiLz4KPC9zdmc+");
      }
    }

    .xoo-wscb-icon {
      &::before {
        content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNiIgaGVpZ2h0PSIzNiIgdmlld0JveD0iMCAwIDM2IDM2IiBmaWxsPSJub25lIj4KPGNpcmNsZSBjeD0iMTgiIGN5PSIxOCIgcj0iMTgiIGZpbGw9IiNGQjcyMTQiLz4KPC9zdmc+");
      }
    }

    .xoo-wscb-count {
      color: var(--1, #0c2d80);
      text-align: center;
      font-family: Poppins;
      font-size: 20px;
      font-style: normal;
      font-weight: 500;
      line-height: 20px;
      top: 0.5rem;
    }
  }

  .xoo-wsc-body {
    background-color: #0c2d80;

    .xoo-wsc-products {
      .xoo-wsc-sum-col {
        .xoo-wsc-sm-info {
          .xoo-wsc-sm-left {
            .xoo-wsc-pname {
              .product-category {
                width: fit-content;
                padding: 5px 9px;
                border-radius: 10px;
                background: #e7e7e7;
                color: var(--1, #0c2d80);
                font-family: Poppins;
                font-size: 13px;
                font-style: normal;
                font-weight: 500;
                line-height: 13px;
              }

              a {
                color: var(--1, #0c2d80);
                font-family: Poppins;
                font-size: 20px;
                font-style: normal;
                font-weight: 700;
                line-height: 25px;
                /* 125% */
              }
            }

            .xoo-wsc-pprice {
              color: white;

              del {
                .woocommerce-Price-amount.amount {
                  bdi {
                    color: var(--1, #0c2d80);
                    font-family: Poppins;
                    font-size: 13px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 13px;
                  }
                }
              }

              ins {
                .woocommerce-Price-amount.amount {
                  bdi {
                    color: var(--4, #fb7214);
                    font-family: Poppins;
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 25px;
                  }
                }
              }
            }

            .variation {
              display: flex;
              align-items: center;
            }
          }

          .xoo-wsc-sm-right {
            .xoo-wsc-icon-trash:before {
              content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMyIgdmlld0JveD0iMCAwIDIwIDIzIiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTYuMDA4OTcgMC44MTE3NjVMNS43Mzk5MSAxLjQ0MzE0SDEuNDM0OThDMC42Mjc4MDMgMS40NDMxNCAwIDIuMDc0NTEgMCAyLjg4NjI3QzAgMy42OTgwNCAwLjYyNzgwMyA0LjMyOTQxIDEuNDM0OTggNC4zMjk0MUgxOC41NjVDMTkuMzcyMiA0LjMyOTQxIDIwIDMuNjk4MDQgMjAgMi44ODYyN0MyMCAyLjA3NDUxIDE5LjM3MjIgMS40NDMxNCAxOC41NjUgMS40NDMxNEgxNC4yNjAxTDEzLjkwMTMgMC44MTE3NjVDMTMuNjMyMyAwLjM2MDc4NCAxMy4xODM5IDAgMTIuNjQ1NyAwSDcuMjY0NTdDNi44MTYxNCAwIDYuMjc4MDMgMC4yNzA1ODggNi4wMDg5NyAwLjgxMTc2NVpNMTguNTY1IDUuNzcyNTVIMS40MzQ5OEwyLjQyMTUyIDIxLjAxNTdDMi40MjE1MiAyMi4wOTggMy40MDgwNyAyMyA0LjQ4NDMgMjNIMTUuNTE1N0MxNi42ODE2IDIzIDE3LjU3ODUgMjIuMDk4IDE3LjY2ODIgMjEuMDE1N0wxOC41NjUgNS43NzI1NVoiIGZpbGw9IiNGQjcyMTQiLz4KPC9zdmc+);
            }
          }

          .xoo-wsc-qty-price {
            .woocommerce-Price-amount.amount {
              color: var(--naranja);
              font-family: Poppins;
              font-size: 20px;
              font-style: normal;
              font-weight: 700;
              line-height: 20px;
            }
          }
        }
      }
    }
  }

  .xoo-wsc-footer {
    background-color: var(--azul);
    border-radius: 0 0 20px 0px;

    .xoo-wsc-ft-totals {
      .xoo-wsc-ft-amt-subtotal {
        display: flex;
        justify-content: space-between;
        width: 100%;

        .xoo-wsc-ft-amt-label {
          color: white;
        }

        .woocommerce-Price-amount.amount {
          bdi {
            color: var(--5, #fff);
            text-align: right;
            font-family: Poppins;
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 20px;
          }
        }
      }
    }

    .xoo-wsc-ft-buttons-cont {
      place-items: center;

      .xoo-wsc-ft-btn.xoo-wsc-btn.xoo-wsc-ft-btn-checkout {
        border: none;
        background-color: var(--naranja);
        width: fit-content;
        color: white;
        font-family: Poppins;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        border-radius: 10px;

        .woocommerce-Price-amount.amount {
          display: none;
        }
      }

      .xoo-wsc-ft-btn.xoo-wsc-btn.xoo-wsc-cart-close.xoo-wsc-ft-btn-continue {
        background-color: transparent;
        border: none;
        color: var(--5, #fff);
        text-align: center;
        font-family: Poppins;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 15px;

        &:hover {
          background-color: transparent;
        }
      }
    }
  }
}

/*Fin de estilos para el aside-cart*/

/*Estilos para el account-del header*/

.mi-cuenta {
  padding: 5rem 0;
  margin-top: 5rem;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 425px;
    top: 0;
    left: 0;
    background-image: url(../../images/lost.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
  }

  h1 {
    text-align: center;
    color: var(--Color7, #002232);
    padding-block: 0 5rem;
  }

  .contenedor {
    display: flex;
    justify-content: center;

    #filtros-navigation {
      display: none;
    }

    .woocommerce {
      width: 100%;
      /*max-width: 1250px;*/

      form.woocommerce-ResetPassword.lost_reset_password {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;

        h1 {
          text-align: center;
          color: black;
        }

        p.hidden {
          display: none;
        }

        p.contexto.flex-col {
          align-items: center;
          gap: 1.5rem;
        }

        .textos {
          display: flex;
          flex-direction: column;
          gap: 1rem;
          align-items: center;

          span {
            display: flex;
            gap: 0.5rem;
            color: var(--4, #fb7214);
            text-align: center;
            font-family: Poppins;
            font-size: 30px;
            font-style: normal;
            font-weight: 700;
            line-height: 30px;
          }

          p {
            color: #4d4d4d;
            display: block;

            text-align: center;
            font-family: Poppins;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: 25px;
            /* 125% */
            letter-spacing: 0.111px;
          }
        }

        .flex-row {
          width: 100%;
          display: flex;
          justify-content: center;
          gap: 2rem;

          align-items: center;

          @media (max-width: 768px) {
            flex-direction: column;
          }

          p.woocommerce-form-row.woocommerce-form-row--first.form-row.form-row-first {
            input {
              padding: 1rem;
              border-radius: 15px;
              background: var(--Color8, #f3f4fd);
              color: #4d4d4d;
              font-family: Poppins;
              font-size: 15px;
              font-style: normal;
              font-weight: 400;
              line-height: 15px;

              /* 100% */
              &::placeholder {
                color: #4d4d4d;
                font-family: Poppins;
                font-size: 15px;
                font-style: normal;
                font-weight: 400;
                line-height: 15px;
                /* 100% */
              }
            }
          }

          p.woocommerce-form-row.woocommerce-form-row--last.form-row.form-row-last {
            label {
              display: none;
            }

            input {
              padding: 1rem;
              border-radius: 15px;
              background: var(--Color8, #f3f4fd);
              color: #4d4d4d;
              font-family: Poppins;
              font-size: 15px;
              font-style: normal;
              font-weight: 400;
              line-height: 15px;

              /* 100% */
              &::placeholder {
                color: #4d4d4d;
                font-family: Poppins;
                font-size: 15px;
                font-style: normal;
                font-weight: 400;
                line-height: 15px;
                /* 100% */
              }
            }
          }
        }

        .woocommerce-form-row.woocommerce-form-row--first.form-row.form-row-first {
          label {
            display: none;
          }

          input[type="text"] {
            border-radius: 10px;
            background: var(--Color8, #f3f4fd);
            padding: 10px 20px;
            color: #4d4d4d;
            text-align: center;
            font-family: Poppins;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px;

            &::placeholder {
              color: #4d4d4d;
              text-align: center;
              font-family: Poppins;
              font-size: 20px;
              font-style: normal;
              font-weight: 400;
              line-height: 20px;
            }
          }
        }

        .woocommerce-form-row.form-row {
          button.woocommerce-Button.button {
            border-radius: 10px;
            background: var(--4, #fb7214);
            color: #fff;

            font-family: Poppins;
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: 20px;
          }
        }
      }
    }

    /*Estilos para la parte de my-account/eddit*/
    .woocommerce {
      .woocommerce-MyAccount-wrapper {
        display: flex;
        gap: 2rem;

        .woocommerce-MyAccount-content-heading {
          display: none;
        }

        nav.woocommerce-MyAccount-navigation {
          .close-navigation {
            display: none;
          }
        }

        .woocommerce-MyAccount-navigation {
          width: fit-content;

          ul {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 1rem;

            li.woocommerce-MyAccount-navigation-link {
              width: 100%;

              a {
                display: flex;
                align-items: center;
                border-radius: 10px;
                background-color: #efefef;
                padding: 10px 15px;
                gap: 0.7rem;

                span {
                  color: var(--1, #0c2d80);
                  font-family: Poppins;
                  font-size: 20px;
                  font-style: normal;
                  font-weight: 300;
                  line-height: 20px;
                }
              }

              &.is-active {
                a {
                  background: var(--2, #82c633);

                  span {
                    color: white;
                    font-weight: 500;
                  }

                  svg {
                    path {
                      fill: white;
                    }
                  }
                }
              }
            }
          }
        }

        .woocommerce-MyAccount-content {
          /* width: 100%; */

          p {
            color: #4f5054;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;

            b {
              font-weight: 900;
              color: #000;
            }
            a {
              font-weight: 900;
              color: #000;
            }
          }

          .woocommerce-EditAccountForm.edit-account {
            padding: 1rem;
            border-radius: 20px;
            border: 2px solid var(--Color8, #f3f4fd);
            background: #fff;
            display: flex;
            flex-direction: column;
            gap: 2rem;

            .form-box {
              h2 {
                text-align: start;
              }

              .form-group {
                display: flex;
                width: 100%;
                flex-direction: row;
                justify-content: space-between;
                &::after {
                  display: none;
                }

                @media (max-width: 768px) {
                  flex-direction: column;
                }

                span {
                  width: 100%;
                }

                span.show-password-input {
                  display: none;
                }

                input {
                  border-radius: 10px;
                  background: var(--Color6, #f5f6fe);
                  position: relative;
                }

                &::before {
                  content: none;
                }

                p {
                  width: 50%;

                  @media (max-width: 768px) {
                    width: 100%;
                  }

                  label {
                    display: none;
                  }
                }
              }

              &:last-child {
                background-color: red;
              }
            }

            p {
              button.woocommerce-Button.button {
                border-radius: 10px;
                background: var(--4, #fb7214);
                padding: 13px 20px;
                font-size: 15px;
                font-weight: 500;
                color: white;
              }
            }
          }

          .woocommerce-courses {
            padding: 1rem;
            border-radius: 20px;
            border: 2px solid var(--Color8, #f3f4fd);
            background: #fff;

            .heading-courses {
              display: flex;
              justify-content: space-between;
            }

            h2 {
              text-align: start;
              color: var(--1, #0c2d80);
            }

            .sensei-course-search {
              margin: 20px 0;
              padding: 0 20px;
              position: relative;

              input {
                width: 320px;
                max-width: unset;
                border: none;
                padding: 8px 12px;
                background: var(--Color8, #f3f4fd);
              }

              &::after {
                content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2IiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTEwLjk2MjMgMTEuNzkzNUM3LjcyODA0IDE0LjMwMjMgMy42Njg0OSAxMy41MjcyIDEuNTAxMTcgMTAuODg1Qy0wLjY2NjE0OSA4LjI0Mjc5IC0wLjQ2NjA4OSA0LjM1MDM0IDEuOTY3OTggMS45NDE1M0M0LjM5MzcxIC0wLjQ3NTYyNSA4LjI1MzIgLTAuNjUwNjYgMTAuODc5IDEuNDk5NzdDMTMuNTI5OCAzLjY2Njg3IDE0LjI5NjcgNy43MjYwMiAxMS44Mzc2IDEwLjg5MzNDMTIuMzIxMSAxMS4zNzY4IDEyLjgxMjkgMTEuODY4NSAxMy4zMDQ3IDEyLjM2MDNDMTQuMTEzMyAxMy4xNjg4IDE0LjkyMTkgMTMuOTY4OSAxNS43MjIxIDE0Ljc3NzRDMTYuMDYzOSAxNS4xMjc1IDE2LjA4ODkgMTUuNTE5MyAxNS44MDU1IDE1LjgwMjZDMTUuNTIyMSAxNi4wODYgMTUuMTIxOSAxNi4wNjk0IDE0Ljc4MDIgMTUuNzE5M0MxMy41ODgxIDE0LjUzNTcgMTIuNDA0NCAxMy4zNDM4IDExLjIyMDggMTIuMTUxOUMxMS4xMTI0IDEyLjA1MTkgMTEuMDM3NCAxMS45MTAyIDEwLjk2MjMgMTEuNzkzNVpNNi42NjEwNiAxMi4wMDE5QzkuNTk1MjcgMTIuMDAxOSAxMS45OTYgOS42MDk3MyAxMS45OTYgNi42ODQxNUMxMi4wMDQzIDMuNzUwMjIgOS42MjAyOCAxLjM0OTc0IDYuNjg2MDYgMS4zNDE0MUMzLjczNTE3IDEuMzI0NzQgMS4zMzQ0NSAzLjcxNjg4IDEuMzM0NDUgNi42NzU4MUMxLjMzNDQ1IDkuNjAxNCAzLjcyNjg0IDExLjk5MzUgNi42NjEwNiAxMi4wMDE5WiIgZmlsbD0iIzBDMkQ4MCIvPgo8L3N2Zz4=);
                margin-left: -2rem;
              }
            }

            .course-hidden {
              display: none !important;
            }

            #sensei-user-courses {
              p.my-messages-link-container {
                display: none;
              }

              #user-course-status-toggle {
                display: none;
              }

              .course-container.columns-1.my-custom-class {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 20px;
                padding: 20px 0;
                list-style: none;

                li {
                  .course-content {
                    height: auto;

                    .entry {
                      display: flex;
                      flex-direction: column;
                      padding: 9px;
                      border-radius: 5px;
                      box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);

                      .course-title {
                        order: 3;
                        font-size: 1.474rem;

                        text-wrap: wrap;
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        margin: 0;
                        line-height: 1.2;

                        a {
                          color: var(--1, #0c2d80);
                          font-family: Poppins;
                          font-size: 18px;
                          font-style: normal;
                          font-weight: 500;
                          line-height: 23px;
                          display: block;
                        }
                      }

                      .sensei-course-meta {
                        order: 4;
                        display: none;
                      }

                      .course-author {
                        display: none;
                      }

                      a.course-image-wrap {
                        display: block;
                        order: 1;
                        height: 11.6rem;
                        border-radius: 19px;
                        overflow: hidden;

                        img {
                          width: 100%;
                          height: 100%;
                          margin: 0;
                        }
                      }

                      a {
                        display: none;
                      }

                      .top-info {
                        order: 4;
                        display: flex;
                        justify-content: space-between;
                        margin-top: 9px;
                        border-bottom: 1px solid #444;
                        padding-bottom: 1rem;

                        .estudiantes {
                          color: #575656;

                          font-size: 14.878px;
                          font-style: normal;
                          font-weight: 400;
                          line-height: 14.878px;
                          display: flex;
                          align-items: center;
                          gap: 4px;
                        }

                        .total-lecciones {
                          color: #575656;

                          font-size: 14.878px;
                          font-style: normal;
                          font-weight: 400;
                          line-height: 14.878px;
                          display: flex;
                          align-items: center;
                          gap: 4px;
                        }
                      }

                      .container-progress {
                        order: 5;
                        display: flex;
                        flex-direction: column-reverse;
                        margin-top: 1rem;

                        span {
                          color: var(--1, #0c2d80);

                          font-size: 15px;
                          font-style: normal;
                          font-weight: 400;
                          line-height: 15px;
                        }

                        .progress-bar {
                          width: 100%;
                          height: 6px;
                          border-radius: 8px;
                          background: #d9d9d9;
                          margin-bottom: 9px;

                          .progress {
                            width: 0%;
                            height: 100%;
                            background-color: #82c633;
                            border-radius: 10px;
                          }
                        }
                      }

                      .btn-seguir-curso {
                        order: 6;
                        margin-top: 1rem;
                        background-color: var(--naranja);
                        padding: 10px 23px;
                        width: fit-content;
                        border-radius: 5px;
                        color: #fff;
                        font-size: 15px;
                        font-style: normal;
                        font-weight: 500;
                        line-height: 15px;

                        a {
                          display: block;
                          color: white;
                        }
                      }

                      .course-categories {
                        order: 2;
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        margin-block: 10px;
                        position: absolute;
                        left: 1.9rem;

                        li {
                          border-radius: 5px;
                          background: var(--2, #82c633);
                          color: white;

                          font-size: 9.918px;
                          font-style: normal;
                          font-weight: 350;
                          line-height: 9.918px;
                          padding: 5px 10px;
                        }
                      }
                    }
                  }
                }

                .course-excerpt {
                  display: none;
                }
              }
            }
          }

          .woocommerce-support {
            padding: 1rem;
            border-radius: 20px;
            border: 2px solid var(--Color8, #f3f4fd);
            background: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;

            background-color: white;
            position: relative;

            h2 {
              text-align: start;
              width: 100%;
            }

            .search-container {
              position: absolute;
              right: 5%;
              top: 5%;
              margin: 0 !important;
              display: flex;
              align-items: center;
              justify-content: center;
              #tutorialSearch {
                width: 320px;
                max-width: unset;
                position: relative;
                background: var(--Color8, #f3f4fd);
                border: none;
                padding: 8px 12px;
              }

              &::after {
                content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2IiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTEwLjk2MjMgMTEuNzkzNUM3LjcyODA0IDE0LjMwMjMgMy42Njg0OSAxMy41MjcyIDEuNTAxMTcgMTAuODg1Qy0wLjY2NjE0OSA4LjI0Mjc5IC0wLjQ2NjA4OSA0LjM1MDM0IDEuOTY3OTggMS45NDE1M0M0LjM5MzcxIC0wLjQ3NTYyNSA4LjI1MzIgLTAuNjUwNjYgMTAuODc5IDEuNDk5NzdDMTMuNTI5OCAzLjY2Njg3IDE0LjI5NjcgNy43MjYwMiAxMS44Mzc2IDEwLjg5MzNDMTIuMzIxMSAxMS4zNzY4IDEyLjgxMjkgMTEuODY4NSAxMy4zMDQ3IDEyLjM2MDNDMTQuMTEzMyAxMy4xNjg4IDE0LjkyMTkgMTMuOTY4OSAxNS43MjIxIDE0Ljc3NzRDMTYuMDYzOSAxNS4xMjc1IDE2LjA4ODkgMTUuNTE5MyAxNS44MDU1IDE1LjgwMjZDMTUuNTIyMSAxNi4wODYgMTUuMTIxOSAxNi4wNjk0IDE0Ljc4MDIgMTUuNzE5M0MxMy41ODgxIDE0LjUzNTcgMTIuNDA0NCAxMy4zNDM4IDExLjIyMDggMTIuMTUxOUMxMS4xMTI0IDEyLjA1MTkgMTEuMDM3NCAxMS45MTAyIDEwLjk2MjMgMTEuNzkzNVpNNi42NjEwNiAxMi4wMDE5QzkuNTk1MjcgMTIuMDAxOSAxMS45OTYgOS42MDk3MyAxMS45OTYgNi42ODQxNUMxMi4wMDQzIDMuNzUwMjIgOS42MjAyOCAxLjM0OTc0IDYuNjg2MDYgMS4zNDE0MUMzLjczNTE3IDEuMzI0NzQgMS4zMzQ0NSAzLjcxNjg4IDEuMzM0NDUgNi42NzU4MUMxLjMzNDQ1IDkuNjAxNCAzLjcyNjg0IDExLjk5MzUgNi42NjEwNiAxMi4wMDE5WiIgZmlsbD0iIzBDMkQ4MCIvPgo8L3N2Zz4=");
                margin-left: -2rem;
                z-index: 2;
              }
            }

            .grid-container-tutoriales {
              display: grid;
              grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
              gap: 20px;
              width: 100%;
              padding: 20px;

              .tutorial-card {
                background: #fff;
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
                display: flex;
                flex-direction: column;
                gap: 1rem;

                .tutorial-thumbnail {
                  width: 100%;
                  height: 200px;
                  /* height:100%; */
                  background: #f0f0f0;

                  img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                  }
                }

                .tutorial-title {
                  color: var(--1, #0c2d80);
                  font-size: 18px;
                  font-style: normal;
                  font-weight: 500;
                  line-height: 23px;
                }

                .btn-tutorial {
                  width: fit-content;
                  padding: 10px;
                  background: #ff6b00;
                  border: none;
                  border-radius: 4px;
                  cursor: pointer;
                  color: #fff;
                  font-size: 15px;
                  font-style: normal;
                  font-weight: 500;
                  line-height: 15px;
                }
              }

              .video-modal {
                position: fixed;
                display: none;
                top: 4rem;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgb(151, 151, 151, 0.2);
                justify-content: center;
                align-items: center;
                z-index: 1000;

                .play-button {
                  position: absolute;
                  background: none;
                  border: none;
                  cursor: pointer;
                  outline: none;
                  z-index: 1;
                }

                .modal-content {
                  /*position: relative;*/
                  position: absolute;
                  top: 50%;
                  transform: translateY(-50%);
                  width: 80%;
                  max-width: 750px;
                  background: #fff;
                  padding: 20px;
                  border-radius: 8px;
                  text-align: center;
                  border-radius: 23.669px;
                  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

                  video {
                    width: 100%;
                    background: black;
                  }

                  .video-player {
                    opacity: 0;
                    transition: opacity 0.3s ease-in-out;
                  }

                  .close-modal {
                    position: absolute;
                    right: -30px;
                    top: -30px;
                    color: white;
                    font-size: 30px;
                    cursor: pointer;
                  }
                }
              }
            }

            .tutorial-pagination {
              display: flex;
              justify-content: center;
              gap: 10px;
              margin-top: 20px;

              span {
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
              }

              .page {
                &.active {
                  background: #ff6b00;
                  color: white;
                  border-radius: 4px;
                }
              }
            }
          }

          .woocommerce-certificates {
            padding: 1rem;
            border-radius: 20px;
            border: 2px solid var(--Color8, #f3f4fd);
            background: #fff;

            h2 {
              text-align: start;
              margin: 0;
              padding-block-end: 2rem;
            }

            .certificates-list {
              display: grid;
              grid-template-columns: repeat(3, 1fr);

              .certificate-item {
                .certificate-content {
                  .certificate-info {
                    display: flex;
                    flex-direction: column;
                    gap: 0;

                    .certificate-actions {
                      display: flex;
                      flex-direction: column;
                      gap: 0.5rem;
                    }

                    a:first-child,
                    a:last-child {
                      padding: 8px 10px;
                      border-radius: 5px;
                      background: var(--4, #fb7214);
                      color: white;
                      font-size: 15px;
                      font-weight: 500;
                      width: fit-content;
                      display: flex;
                      align-items: center;
                      gap: 1rem;
                    }

                    a:last-child {
                      background: var(--2, #0c2d80);
                    }
                  }

                  .certificate-image {
                    img {
                      border-radius: 10px;
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

/*Estilos para el single-lesson*/
.section-contenido-lesson {
  margin-top: 5rem;
  padding: 5rem 0;

  .contenedor {
    display: flex;
    gap: 1rem;

    .left {
      flex: 0 0 73%;
      max-width: 73%;
      display: flex;
      flex-direction: column;

      #video-container {
        position: relative;
        width: 100%;
        background: #f5f5f5;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 2rem;
        order: 2;

        height: auto;
        overflow: hidden;
        aspect-ratio: 16 / 9;
        iframe {
          position: relative;
          width: 100%;
          height: 100%;
          /* aspect-ratio: 16/9; */
          border: none;
        }
      }

      .sensei-course-theme-lesson-actions__take-quiz-form.take_quiz {
        order: 3;

        .wp-block-button {
          margin-bottom: 2rem;

          button {
            border: none;
            width: 100%;
            padding: 10px 15px;
            color: white;
            border-radius: 10px;
            background: var(--2, #82c633);
            color: #fff;
            font-size: 25px;
            font-style: normal;
            font-weight: 500;
            line-height: 25px;
          }
        }
      }

      .lesson-tabs {
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        order: 4;

        .tab-buttons {
          display: flex;
          gap: 0.5rem;

          .tab-button {
            padding: 1rem 2rem;
            border: none;
            color: var(--Color7, #002232);
            font-family: Poppins;
            font-size: 20px;
            font-style: normal;
            font-weight: 300;
            line-height: 20px;
            border-radius: 10px;
            background: #f4f4f4;

            &.active {
              font-weight: 500;
              color: white;
              background: var(--4, #fb7214);
            }
          }
        }

        .tab-content {
          padding: 2rem;

          .tab-pane {
            display: none;

            &.active {
              display: block;
            }

            .recursos-list {
              display: flex;
              flex-direction: column;
              gap: 1rem;

              .recurso-item {
                padding: 1rem;
                background: #f8f9fa;
                border-radius: 6px;

                svg {
                  path {
                    fill: #fb7214;
                  }
                }

                .recurso-link {
                  display: flex;
                  align-items: center;
                  gap: 0.5rem;
                  color: var(--4, #fb7214);
                  font-family: Poppins;
                  font-size: 20px;
                  font-style: normal;
                  font-weight: 400;
                  line-height: 20px;
                }
              }
            }

            h3#comments {
              display: none;
            }

            form.comment-form {
              .logged-in-as {
                display: none;
              }

              .comment-form-comment {
                textarea {
                  width: 100%;
                  border: 1px solid #002232;
                  border-radius: 5px;
                }
              }

              .form-submit {
                width: fit-content;

                input[type="submit"] {
                  border-radius: 10px;
                  background: var(--4, #fb7214);
                  padding: 13px 20px;
                  color: #fff;

                  font-family: Poppins;
                  font-size: 20px;
                  font-style: normal;
                  font-weight: 500;
                  line-height: 20px;
                }
              }
            }

            .commentlist {
              display: flex;
              flex-direction: column;
              gap: 1rem;

              .comment {
                .comment-body {
                  background-color: white;
                  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
                  padding: 1rem;
                  display: flex;
                  width: 100%;
                  flex-direction: column;
                  gap: 1rem;
                  padding-bottom: 1rem;
                  border-bottom: 2px solid #002232;

                  .comment-author {
                    display: flex;
                    gap: 1rem;
                    align-items: center;

                    img {
                      border-radius: 50%;
                    }

                    .fn {
                      color: var(--Color7, #002232);
                      font-family: Poppins;
                      font-size: 18px;
                      font-style: normal;
                      font-weight: 500;
                      line-height: 18px;
                    }

                    .says {
                      display: none;
                    }
                  }

                  .comment-meta {
                    display: none;
                  }

                  .reply {
                    width: fit-content;

                    padding: 13px 20px;
                    border-radius: 10px;
                    background: var(--4, #fb7214);

                    a {
                      color: #fff;

                      font-family: Poppins;
                      font-size: 15px;
                      font-style: normal;
                      font-weight: 500;
                      line-height: 15px;
                    }
                  }
                }
              }
            }
          }
        }
      }

      .return-profile {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
        color: #444;
        font-weight: 500;
        margin-bottom: 1rem;

        svg {
          width: 20px;
          height: 20px;
        }
      }

      .header-lesson {
        display: flex;
        justify-content: space-between;
        padding-block: 0 2rem;
        order: 1;

        h1 {
          color: var(--Color7, #002232);
          font-family: Poppins;
          font-size: 35px;
          font-style: normal;
          font-weight: 700;
          line-height: 45px;
          position: relative;
          height: fit-content;

          &::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 10%;
            height: 3px;
            background-color: #ff6b00;
          }
        }

        .header-modules {
          display: flex;
          gap: 2rem;
          align-items: center;

          h2 {
            color: var(--Color7, #002232);
            font-size: 25px;
            font-style: normal;
            font-weight: 700;
            line-height: 25px;
            margin: 0;
          }

          .pagination-lesson {
            display: flex;
            justify-content: center;

            align-items: center;
            gap: 1rem;

            .post-entries {
              display: flex;
              justify-content: center;
              gap: 2rem;

              .nav-prev,
              .nav-next {
                display: flex;
                align-items: center;
                justify-content: center;
                min-width: 44px !important;
                padding-inline: 0.5rem;
                height: 44px;
                border-radius: 10px;
                background: var(--2, #82c633);

                a {
                  color: white;
                }
              }
            }
          }
        }

        &.side-bard {
          display: none;
        }
      }
    }

    .right {
      flex: 0 0 30%;
      max-width: 27%;
      /* padding-block: 7.5rem 0;*/
      padding-block: 2.8rem 0;
      .module-counter-wrapper {
        padding-bottom: 1rem;
      }

      .modulos-sidebar {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-height: 23.5rem;
        overflow-y: auto;
        padding-right: 0.5rem;

        &::-webkit-scrollbar {
          width: 5px;
        }

        /* Track */
        &::-webkit-scrollbar-track {
          -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          -webkit-border-radius: 3px;
          border-radius: 3px;
        }

        /* Handle */
        &::-webkit-scrollbar-thumb {
          -webkit-border-radius: 3px;
          border-radius: 3px;
          background: var(--1, #0c2d80);
          -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
        }

        .module-counter-wrapper {
          .module-counter-heading {
            color: var(--Color7, #002232);
            font-size: 25px;
            font-style: normal;
            font-weight: 700;
            line-height: 25px;
          }
        }

        .close-lesson-nav {
          display: none;
        }

        .modulo-item {
          padding: 0.5rem;
          border-radius: 10px;
          border: 1px solid var(--2, #82c633);
          background: var(--2, #82c633);

          .angle-icon {
            transition: transform 0.3s ease;
          }

          &.expanded {
            display: flex;
            flex-direction: column;
            gap: 1rem;

            .angle-icon {
              transform: rotate(180deg);
            }
          }

          h3 {
            color: var(--5, #fff);
            font-family: Poppins;
            font-size: 17px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            display: grid;
            grid-template-columns: 1fr auto;
            place-items: start;

            svg {
              path {
                fill: white;
              }
            }

            .toggle-module {
              background: none;
              border: none;
              cursor: pointer;
              margin-left: 10px;

              span {
                color: white;
              }
            }
          }

          .lecciones-lista {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;

            .leccion-item {
              display: flex;
              flex-direction: column;

              .leccion-content {
                display: flex;
                justify-content: space-between;
                width: 100%;

                .leccion-title {
                  display: flex;
                  flex: 0.9;
                  font-size: 13px;
                  font-style: normal;
                  font-weight: 400;
                  line-height: 15px;
                }

                .leccion-tiempo {
                  display: flex;
                  align-items: center;
                  justify-content: space-between;
                  /* width: 100%; */
                  flex: 0.2;
                  font-size: 13px;
                  font-style: normal;
                  font-weight: 400;
                  line-height: 15px;
                }
              }

              a {
                color: white;

                svg {
                  path {
                    fill: white;
                  }
                }
              }

              &.locked {
                a {
                  display: flex;

                  cursor: not-allowed;
                  align-items: center;
                  gap: 0.1rem;

                  &::before {
                    content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjExIiB2aWV3Qm94PSIwIDAgOCAxMSIgZmlsbD0ibm9uZSI+CjxwYXRoIGQ9Ik02LjkwODczIDQuMzc3NDNDNy41Mzg0OCA0LjQ2NTg2IDcuODU3NDQgNC43MTMyOSA3Ljk3MTk0IDUuMTk4NTJDNy45OTQyMSA1LjI5MzM3IDcuOTk4MyA1LjM5NDYzIDcuOTk4NzUgNS40OTMxNEM4LjAwMDU3IDYuOTY2NzEgOC4wMDA1NyA4LjQ0MDI4IDcuOTk5NjYgOS45MTM0QzcuOTk5MiAxMC41NzE0IDcuNTczNDYgMTAuOTk5MyA2LjkxODI3IDEwLjk5OThDNC45NzI2OCAxMS4wMDA3IDMuMDI3MDkgMTEuMDAwNyAxLjA4MTA1IDEwLjk5OThDMC40MjYzMDggMTAuOTk5MyAwLjAwMTAyMjMyIDEwLjU3MTQgMC4wMDA1Njc5NTYgOS45MTI0OEMtMC4wMDAzNDA3NzQgOC40OTIwNiAwLjAwMDExMzU5MSA3LjA3MjEgMC4wMDAxMTM1OTEgNS42NTE2OEMwLjAwMDExMzU5MSA0LjgzMDU5IDAuMjgyMjc0IDQuNDk1MTggMS4wOTEwNCA0LjM3NjA1QzEuMDkxMDQgMy45MTU1NiAxLjA5MDU5IDMuNDUxNDEgMS4wOTEwNCAyLjk4NzI1QzEuMDkyNDEgMS4yNzIyMSAyLjM5MjggLTAuMDIyMjA1OCA0LjA5MTY3IC0wLjAwMDIxMjE2N0M1LjU5Nzg5IDAuMDE5OTQ4NiA2Ljg5MjM3IDEuMzI4NTcgNi45MDc4MiAyLjg1MTE2QzYuOTEzMjcgMy4zNjExNCA2LjkwODczIDMuODcxMTIgNi45MDg3MyA0LjM3NzQzWk0zLjk4NzYyIDEwLjI2NTNDNC45NDkwNSAxMC4yNjUzIDUuOTEwMDQgMTAuMjY1OCA2Ljg3MTQ3IDEwLjI2NDhDNy4xNzMxNyAxMC4yNjQ0IDcuMjcwODYgMTAuMTcgNy4yNzEzMSA5Ljg3NTM3QzcuMjcyMjIgOC40MjUxNiA3LjI3MjIyIDYuOTc0OTYgNy4yNzEzMSA1LjUyNDc2QzcuMjcxMzEgNS4yMjc4NSA3LjE3NDk5IDUuMTMzOTIgNi44NzMyOSA1LjEzMzQ2QzQuOTU4MTQgNS4xMzI1NCAzLjA0MzQ1IDUuMTMzIDEuMTI4MyA1LjEzMzQ2QzAuODE5Nzg4IDUuMTMzNDYgMC43Mjg0NiA1LjIyODMgMC43Mjg0NiA1LjU0NTM4QzAuNzI4MDA2IDYuOTgwNDYgMC43MjgwMDYgOC40MTUwOCAwLjcyODQ2IDkuODUwMTZDMC43Mjg0NiAxMC4xNzU5IDAuODE4ODc5IDEwLjI2NDQgMS4xNDkyIDEwLjI2NDhDMi4wOTU2NCAxMC4yNjU4IDMuMDQxNjMgMTAuMjY1MyAzLjk4NzYyIDEwLjI2NTNaTTYuMTM1ODUgNC4zODc5N0M2LjEzNTg1IDMuNzQ2NDkgNi4xOTg1NiAzLjExNDYzIDYuMTIxNzcgMi41MDExQzUuOTk2MzYgMS41MDA4NSA1LjAzOTAyIDAuNzM5NzggNC4wMTg1MiAwLjczNDI4MkMyLjk4MjU2IDAuNzI4MzI1IDIuMDExNTkgMS40ODA2OSAxLjg4MDczIDIuNDg3MzVDMS44MDAzMSAzLjEwNzMgMS44NjU3NCAzLjc0NjAzIDEuODY1NzQgNC4zODc5N0MzLjI3Njk5IDQuMzg3OTcgNC43MTMyNCA0LjM4Nzk3IDYuMTM1ODUgNC4zODc5N1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPg==);
                  }
                }
              }

              &.active {
                a {
                  color: #0c2d80;

                  .leccion-content {
                    display: flex;
                    justify-content: space-between;

                    .leccion-tiempo {
                      svg {
                        path {
                          fill: #0c2d80;
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }

        .modulo-item.locked {
          background: #fff;
          pointer-events: none;
          opacity: 0.3;

          h3 {
            color: #82c633;

            .modulo-tiempo {
              color: #0c2d80;
            }

            svg {
              path {
                fill: #0c2d80;
              }
            }

            .toggle-module {
              svg {
                path {
                  fill: #82c633;
                }
              }
            }
          }
        }
      }
    }
  }
}

/*Fin estilos del single-lesson*/

/*Estilos para los quiz*/
.main-single-quiz {
  .section-contenido-quiz {
    margin: 7rem 0;
    .return-lesson {
      max-width: 1184px;
      margin: 0 auto;
    }

    .contenedor {
      h2 {
      }

      .table-rules-exam {
        .right {
          display: flex;
          align-items: center;
          gap: 2rem;

          img {
          }

          ul {
            display: flex;
            flex-direction: column;
            gap: 1rem;

            li {
              position: relative;
              color: var(--1, #0c2d80);

              font-size: 19px;
              font-style: normal;
              font-weight: 400;
              line-height: 34px;

              &::before {
                content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMSIgaGVpZ2h0PSIxMSIgdmlld0JveD0iMCAwIDExIDExIiBmaWxsPSJub25lIj4KPGNpcmNsZSBjeD0iNS41IiBjeT0iNS41IiByPSI1LjUiIGZpbGw9IiM4MkM2MzMiLz4KPC9zdmc+);
                position: absolute;
                left: -1rem;
              }
            }
          }
        }
      }

      .list-questions {
        .wp-block-sensei-lms-quiz.form_border.quiz-form {
          display: flex;
          flex-direction: column;
          gap: 1rem;

          > p {
            display: none;
          }

          #sensei-quiz-list {
            order: 1;
            .wp-block-sensei-lms-quiz-question {
              display: flex;
              flex-direction: column;
              gap: 1.5rem;

              .sensei-lms-question-block__header {
                margin: 0;

                h2 {
                  color: var(--4, #fb7214);
                  font-size: 20px;
                  font-style: normal;
                  font-weight: 700;
                  line-height: 30px;
                  text-align: start;
                }
              }

              .wp-block-sensei-lms-question-description {
                margin: 0;
                border-top: 4px solid #d9d9d9;
                padding-top: 1rem;
                color: var(--1, #0c2d80);
                font-family: Poppins;
                font-size: 17px;
                font-style: normal;
                font-weight: 400;
                line-height: 24px;
              }

              .wp-block-sensei-lms-question-answers {
                .answers {
                  display: flex;
                  flex-direction: column;
                  gap: 1rem;

                  li {
                    display: flex;
                    align-items: center;

                    input {
                      appearance: none;
                      width: 20px;
                      height: 20px;

                      border-radius: 50%;
                      background-color: #d9d9d9;
                      margin-right: 10px;
                      cursor: pointer;

                      &:checked {
                        background-color: #333;
                        border: 3px solid #d9d9d9;
                      }
                    }

                    label {
                      color: var(--1, #0c2d80);
                      font-family: Poppins;
                      font-size: 17px;
                      font-style: normal;
                      font-weight: 500;
                      line-height: 24px;
                    }
                  }
                }
              }
            }
          }

          .sensei-quiz-actions {
            padding: 3rem 0rem;
            display: flex;
            margin-left: unset;
            justify-content: center;
            gap: 2rem;

            .sensei-quiz-actions-primary {
              .sensei-quiz-action.enabled {
                button {
                  cursor: pointer;
                  pointer-events: unset;
                  opacity: 1;
                }
              }
              .sensei-quiz-action {
                button {
                  border-radius: 10px;
                  /*background: var(--4, #FB7214);*/
                  background: var(--4, #82c633);
                  padding: 10px 15px;
                  color: #fff;
                  font-size: 25px;
                  font-style: normal;
                  font-weight: 500;
                  line-height: 25px;

                  cursor: not-allowed;
                  pointer-events: none;
                  opacity: 0.5;
                }
              }
            }

            .sensei-quiz-actions-secondary {
              .sensei-quiz-action {
                button {
                  border-radius: 10px;
                  /*background: #b91c1c;*/
                  background: var(--4, #fb7214);
                  padding: 10px 15px;
                  color: #fff;
                  font-size: 25px;
                  font-style: normal;
                  font-weight: 500;
                  line-height: 25px;

                  &.save {
                    /*background-color: purple;*/
                    background-color: #0c2d80;
                  }
                }
              }
            }
          }

          .sensei-next-lesson-button {
            display: flex;
            justify-content: end;

            a {
              padding: 10px 15px;
              border-radius: 10px;
              background-color: #82c633;
              width: fit-content;
              color: white;
              font-size: 15px;
              font-style: normal;
              font-weight: 500;
              line-height: 15px;
            }
          }
        }
      }
    }
  }
}

/*Fin de estilos para los quiz*/

/*Comienzo estilos curso-completado*/
.section-resultado-exam-final {
  margin: 5rem 0rem;
  padding: 5rem 0rem;
  background-color: rgba(194, 85, 10, 0.1);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;

  .contenedor {
    position: relative;

    .top {
    }

    .content {
      h1 {
        color: var(--4, #fb7214);
        text-align: center;
        font-family: Poppins;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px;
        padding-block-end: 3rem;
      }

      &.reproved,
      &.passed {
        display: flex;
        flex-direction: column;
        align-items: center;

        .puntaje {
          display: flex;
          gap: 1rem;
          border-radius: 15px;
          background: var(--4, #fff);
          box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
          padding: 1rem 1.5rem;

          .calificacion,
          .aciertos {
            flex: 1;

            h2 {
              color: var(--4, #fb7214);
              text-align: center;

              font-size: 73.115px;
              font-style: normal;
              font-weight: 700;
              line-height: 73.115px;
            }

            p {
              color: var(--4, #fb7214);
              text-align: center;
              font-family: Poppins;
              font-size: 36.557px;
              font-style: normal;
              font-weight: 300;
              line-height: 36.557px;
            }
          }
        }

        .message-resumen {
          display: flex;
          flex-direction: column;
          gap: 1rem;
          padding-bottom: 1rem;
          border-bottom: 2px solid #82c633;
          max-width: 350px;

          .rigth {
            p {
              color: var(--1, #0c2d80);
              text-align: center;

              font-size: 18px;
              font-style: normal;
              font-weight: 400;
              line-height: 23px;
              overflow: hidden;
              display: -webkit-box;
              -webkit-box-orient: vertical;
              -webkit-line-clamp: 3;
            }
          }
        }

        .action {
          margin-top: 2rem;

          form {
            button.retry-quiz {
              padding: 13px 25px;
              border-radius: 10px;
              background: var(--4, #fb7214);
              color: #fff;
              font-size: 25px;
              font-style: normal;
              font-weight: 500;
              line-height: 25px;
            }
          }
        }
      }

      &.passed {
        display: flex;
        flex-direction: column;
        align-items: center;

        .puntaje {
          display: none;
        }

        .puntaje-aprobado {
          display: flex;
          width: 100%;
          justify-content: center;
          gap: 4rem;

          .calificacion {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            background-color: white;
            border-radius: 50%;
            padding: 5rem;

            h2 {
              color: var(--4, #fb7214);
              text-align: center;
              font-family: Poppins;
              font-size: 134.02px;
              font-style: normal;
              font-weight: 700;
              line-height: 134.02px;
            }

            p {
              color: var(--4, #fb7214);
              text-align: center;
              font-family: Poppins;
              font-size: 36.66px;
              font-style: normal;
              font-weight: 400;
              line-height: 36.66px;
            }
          }

          .aciertos {
            display: flex;
            flex-direction: column;
            align-items: start;

            gap: 1rem;

            .congratulations {
              display: flex;
              flex-direction: column;
              gap: 0.5rem;
              padding-block-end: 1rem;

              h2 {
                color: var(--4, #fb7214);
                font-family: Poppins;
                font-size: 40px;
                font-style: normal;
                font-weight: 700;
                line-height: 40px;
              }

              .intentos {
                display: flex;
                align-items: center;
                gap: 1rem;

                h3 {
                  color: #0c2d80;

                  strong {
                    color: #0c2d80;
                  }
                }

                p {
                  color: var(--1, #0c2d80);
                  font-family: Poppins;
                  font-size: 20px;
                  font-style: normal;
                  font-weight: 400;
                  line-height: 20px;
                }
              }
            }

            .textos-congratulations {
              display: flex;
              flex-direction: column;
              gap: 1rem;

              h4 {
                color: var(--1, #0c2d80);
                font-family: Poppins;
                font-size: 30px;
                font-style: normal;
                font-weight: 700;
                line-height: 40px;
              }

              p {
                color: var(--5, #575656);
                font-family: Poppins;
                font-size: 18px;
                font-style: normal;
                font-weight: 400;
                line-height: 23px;
                width: 80%;
                position: relative;
                padding-block-end: 1rem;

                &::after {
                  content: "";
                  width: 80%;
                  height: 2px;
                  background-color: #fb7214;
                  position: absolute;
                  left: 0;
                  bottom: 0;
                }
              }
            }

            .actions-certificate {
              padding: 15px 30px;
              border-radius: 10px;
              background: var(--4, #fb7214);

              a {
                color: #fff;
                font-size: 20px;
                font-style: normal;
                font-weight: 400;
                line-height: 20px;
                display: flex;
                align-items: center;
                gap: 1rem;
              }
            }
          }
        }

        .mesagge-resumen {
          .left {
            position: absolute;
            left: -10rem;

            img {
              max-width: 498px;
              max-height: 529px;
            }
          }
        }
      }
    }
  }
}

/*Fin estilos curso completado*/

/*Sección para la verificación del certificado*/
.verificar-certificado {
  /*margin: 5rem 0;
    padding: 5rem 0;*/
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  flex-direction: column;
  justify-content: center;

  &::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 425px;
    top: 0;
    left: 0;
    background-image: url(../../images/lost.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
  }

  h1 {
    text-align: center;
  }

  .contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;

    p,
    label {
      color: #4d4d4d;

      text-align: center;
      font-family: Poppins;
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: 20px;
    }

    .textos {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-block-start: 2rem;

      h2 {
        color: var(--4, #fb7214);
        text-align: center;
        font-family: Poppins;
        font-size: 25px;
        font-style: normal;
        font-weight: 700;
        line-height: 25px;
      }
    }

    form#verify-cert-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;

      input {
        border-radius: 15px;
        background: var(--Color8, #f3f4fd);
        padding: 15px 20px;
        min-width: 300px;

        &::placeholder {
          color: #4d4d4d;
          text-align: center;
          font-family: Poppins;
          font-size: 20px;
          font-style: normal;
          font-weight: 400;
          line-height: 20px;
        }
      }

      button {
        padding: 15px 25px;
        border-radius: 10px;
        background: var(--4, #fb7214);
        color: #fff;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        width: fit-content;
      }
    }
  }

  #certificate-result {
    width: 100%;
    .title-certificado {
      text-align: center;
      font-family: Poppins;
      font-size: 25px;
      font-style: normal;
      font-weight: 700;
      line-height: 25px; /* 100% */
      letter-spacing: 0.111px;
    }
    .container-certificate {
      border-radius: 10px;
      background: var(--Color8, #f3f4fd);
      display: flex;
      align-items: center;
      gap: 2rem;
      padding: 1.5rem;
      @media (max-width: 768px) {
        flex-direction: column;
      }
      .text-certificado {
        color: var(--1, #0c2d80);
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: 30px; /* 100% */
        text-align: start;
        letter-spacing: 0.111px;
      }
      h3 {
        color: var(--1, #0c2d80);

        font-size: 20px;
        font-style: normal;
        font-weight: 300;
        line-height: 20px; /* 100% */
        letter-spacing: 0.111px;
        margin-bottom: 1rem;
      }
      .name-certificate,
      .fecha-entrega,
      .fecha-expiracion {
        text-align: start;
        color: var(--1, #0c2d80);

        font-size: 20px;
        font-style: normal;
        font-weight: 300;
        line-height: 20px;
        letter-spacing: 0.111px;
        margin-bottom: 1rem;
        strong {
          font-weight: 700;
        }
      }
      .container-descarga {
        padding: 15px 20px;
        border-radius: 10px;
        background: var(--2, #82c633);
        display: flex;
        align-items: center;
        gap: 0.7rem;
        .btn-download {
          color: var(--Color7, #002232);
          text-align: center;
          font-family: Poppins;
          font-size: 19.238px;
          font-style: normal;
          font-weight: 400;
          display: flex;
          gap: 0.5rem;
          align-items: center;
        }
      }
    }
    .contenedor {
      display: flex;
      justify-content: center;
      align-items: center;
      .certificate-card {
        display: flex;

        align-items: center;
        justify-content: space-between;
        width: 60%;
        border-radius: 10px;
        background: var(--Color8, #f3f4fd);
        padding: 1rem;

        .certificate-box {
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 0.5rem;

          .certificate-title {
            display: flex;
            flex-direction: column;
            align-items: start;
            padding-bottom: 1rem;

            h3,
            p {
              color: var(--1, #0c2d80);
              font-size: 30px;
              font-style: normal;
              font-weight: 700;
              line-height: 30px;
            }

            p {
              font-weight: 300;
            }
          }

          .name-student,
          .date {
            color: var(--1, #0c2d80);
            font-size: 20px;
            font-style: normal;
            font-weight: 300;
            line-height: 20px;
            text-align: start;

            strong {
              font-weight: 700;
            }
          }
        }

        .container-descarga {
          padding: 15px 20px;
          border-radius: 10px;
          background: var(--2, #82c633);
          display: flex;
          align-items: center;
          gap: 0.7rem;

          a {
            color: var(--Color7, #002232);
            text-align: center;
            font-family: Poppins;
            font-size: 19.238px;
            font-style: normal;
            font-weight: 400;
          }
        }
      }

      .return-home-page {
        padding: 15px 25px;
        border-radius: 10px;
        background: var(--4, #fb7214);
        color: white;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
      }
    }
  }
}

/*Fin*/

.woovr-variation-radio .woovr-variation-availability p.stock.in-stock {
  display: none;
}

.single_variation_wrap
  .woocommerce-variation.single_variation
  .woocommerce-variation-availability
  p.stock.in-stock {
  display: none;
}

/* estilos para mi cuenta*/
section.mi-cuenta {
  h1 {
    color: var(--1, #0c2d80);
    text-align: center;
    font-size: 25px;
    font-style: normal;
    line-height: 25px;
    font-weight: 700;
  }

  #customer_login {
    .u-column1.col-1 {
      h2 {
      }
      p.contexto {
        margin-top: 1rem;
      }
      form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        & > p {
          input {
            padding: 0.5rem;
          }
          .show-password-input {
            top: 0;
          }
        }
        .w-100.woocommerce-form-grid {
          display: flex;
          flex-direction: column;
          margin: 0 auto;
          width: fit-content;
          flex-flow: column-reverse;
          gap: 0.5rem;
          a {
          }
          button {
            text-align: center;
            width: fit-content;
            border-radius: 10px;
            background: var(--4, #fb7214);
            border: 2px solid #fb7214;
            padding: 15px 29px;
            transition: all 0.3s ease-in-out;
            color: var(--5, #fff);
            font-family: "Lato", sans-serif;
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 20px;
            transition: all 0.3s ease-in-out;
            margin: 0 auto;

            &:hover {
              background-color: white;
              color: #fb7214;
            }
          }
        }
        .w-100.woocommerce-form-link {
          display: none;
          p {
            display: flex;
            align-items: center;
            justify-content: center;
            button {
              margin-left: 0.5rem;
              background: none;

              color: var(--1, #0c2d80);
              font-family: Poppins;
              font-size: 18px;
              font-style: normal;
              font-weight: 700;
              line-height: 20px;
            }
          }
        }
      }
      .w-100.woocommerce-form-link {
        display: flex;
        a {
          text-align: center;
          width: fit-content;
          border-radius: 10px;
          background: var(--4, #fb7214);
          border: 2px solid #fb7214;
          padding: 15px 29px;
          transition: all 0.3s ease-in-out;
          color: var(--5, #fff);
          font-family: "Lato", sans-serif;
          font-size: 20px;
          font-style: normal;
          font-weight: 700;
          line-height: 20px;
          transition: all 0.3s ease-in-out;
          margin: 0 auto;
          &:hover {
            background-color: white;
            color: #fb7214;
          }
        }
      }
    }
    .u-column2.col-2 {
      h2 {
      }
      p.contexto {
        margin-top: 0.5rem;
      }
      form {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        p {
          & > input[type="text"],
          & > input[type="email"] {
            padding: 1rem;
            box-sizing: border-box;
            border-radius: 10px;
            background: var(--Color6, #f5f6fe);
          }
        }
        p.woocommerce-form-row.form-row {
          button {
            text-align: center;
            width: fit-content;
            border-radius: 10px;
            background: var(--4, #fb7214);
            border: 2px solid #fb7214;
            padding: 15px 29px;
            transition: all 0.3s ease-in-out;
            color: var(--5, #fff);
            font-family: "Lato", sans-serif;
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 20px;
            transition: all 0.3s ease-in-out;
            margin: 0 auto;
            &:hover {
              background-color: white;
              color: #fb7214;
            }
          }
        }
        p.form-row {
          label {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            input[type="checkbox"] {
              height: 1rem;
              width: 1rem;
              background: #d9d9d9;
              border-radius: 50%;
              flex-shrink: 0;
              &:checked {
                background: #fb7214;
              }
            }
          }
        }
        .w-100.woocommerce-form-link {
          display: none;
          & > p {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            button {
              text-align: center;
              width: fit-content;
              border-radius: 10px;
              background: var(--4, #fb7214);
              border: 2px solid #fb7214;
              padding: 15px 29px;
              transition: all 0.3s ease-in-out;
              color: var(--5, #fff);
              font-family: "Lato", sans-serif;
              font-size: 20px;
              font-style: normal;
              font-weight: 700;
              line-height: 20px;
              transition: all 0.3s ease-in-out;
              margin: 0 auto;
              &:hover {
                background-color: white;
                color: #fb7214;
              }
            }
          }
        }
      }
      & > .w-100.woocommerce-form-link {
        display: none;
      }
    }
  }
}
