:root{
    --font-size: 16px;
    --font-size-xs: calc(0.5 * var(--font-size));
    --font-size-sm: calc(0.8 * var(--font-size));
    --font-size-regular: calc(1 * var(--font-size));
    --font-size-md: calc(1.5 * var(--font-size));
    --font-size-lg: calc(2 * var(--font-size));
    --font-size-xl: calc(2.5 * var(--font-size));
    --x-container-padding: 20vw;
    --x-container-fluid-padding: 12vw;
    --primary-color: #ff273a;
    --secondary-color: #222222;
    --tertiary-color: #f8f8fa;
    --muted-color: #707071;
    --light-color: #fefffe;
    --success-color: #93cb6e;
    --danger-color: #d0044b;
    --gradient-icon-start: #d5064a;
    --gradient-icon-end: #f61f3e;
    --gradient-background-start: #d4074a;
    --gradient-background-end: #de0e46;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
}
button {
    cursor: pointer;
}
a {
    text-decoration: none;
    color: inherit;
}
.color-picker {
    background: none;
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    /* background-color: #222222; */
}
.d-none {
    display: none;
}
.bg-tertiary {
    background-color: var(--tertiary-color);
}
.x-default-margin {
    margin: 0 var(--x-container-padding);
}
.bg-secondary {
    background-color: var(--secondary-color);
}
.bg-light {
    background-color: var(--light-color);
}

/* body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
} */
span, label, button, input, h1, h2, h3, p, small, table, li, a, textarea {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}
/* h1, h2, h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
} */
.main-header ul, .quot-header ul {
    display: flex;
    gap: 4rem;
    list-style: none;
    /* align-items: center; */
    /* vertical-align: middle; */
}

.quot-header .ul-header, .main-header .ul-header {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: var(--tertiary-color);
    flex-direction: column;
    z-index: 100;
    gap: 0;
    /* padding: 1rem 0rem; */
    box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%);
    transition: 0.3s;
}

.ul-header.show, .show .ul-header {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.quot-header .ul-header li, .main-header .ul-header li {
    /* width: 100%; */
    text-align: left;
    padding: 1rem 4rem 1rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    /* border-inline: 1px solid black; */
}

#open-bar {
    position: absolute;
    left: -5px;
    font-size: 1.4em;
    display: block;
}

.hidde-scroll {
    overflow: hidden;
}
.display-flex {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.flex-grow-1{
    flex-grow: 1;
}
.flex-direction-column {
    flex-direction: column;
}
.my-1 {
    margin: 1rem 0;
}
.my-2 {
    margin: 2rem 0;
}
.mt-1 {
    margin-top: 1rem;
}
.mt-2 {
    margin-top: 2rem;
}
.mt-3 {
    margin-top: 3rem;
}
.mt-4 {
    margin-top: 4rem;
}
.mt-5 {
    margin-top: 5rem;
}
.mt-6 {
    margin-top: 6rem;
}
.ml-1 {
    margin-left: 1rem;
}
.ml-2 {
    margin-left: 2rem;
}
.mr-1 {
    margin-left: 1rem;
}
.mr-2 {
    margin-left: 2rem;
}
.mb-1 {
    margin-bottom: 1rem;
}
.mb-2 {
    margin-bottom: 2rem;
}
.mb-3 {
    margin-bottom: 3rem;
}
.w-100 {
    width: 100%;
}
.w-75 {
    width: 75%;
}
.h-100 {
    height: 100%;
}
.font-xs {
    font-size: var(--font-size-xs);
}

.pa-1 {
    padding: 1rem;
}

.pa-2 {
    padding: 2rem;
}

.pa-3 {
    padding: 3rem;
}

.pa-4 {
    padding: 4rem;
}

.py-1 {
    padding: 1rem 0;
}

.py-2 {
    padding: 2rem 0;
}

.px-1 {
    padding: 0 1rem;
}

.px-2 {
    padding: 0 2rem;
}

.pl-1 {
    padding-left: 1rem;
}

.pr-1 {
    padding-right: 1rem;
}

.pt-1 {
    padding-top: 1rem;
}

.pb-1 {
    padding-bottom: 1rem;
}

.custom-container-column {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.font-sm {
    font-size: var(--font-size-sm);
}
.font-regular {
    font-size: var(--font-size-regular);
}
.font-md {
    font-size: var(--font-size-md);
}
.font-lg {
    font-size: var(--font-size-lg);
}
.font-xl {
    font-size: var(--font-size-xl);
}
.font-light {
    font-weight: 300;
}
.font-normal {
    font-weight: 400;
}
.font-semibold {
    font-weight: 500;
}
.font-bold {
    font-weight: 600;
}
.font-bolder {
    font-weight: 700;
}
.justify-content-between {
    justify-content: space-between;
}
.justify-content-end {
    justify-content: end;
}
.justify-content-center {
    justify-content: center;
}
.justify-content-around {
    justify-content: space-around;
}
.align-items-center {
    align-items: center;
}
.align-self-center {
    align-self: center;
}
.align-content-center {
    align-content: center;
}
.light-color {
    color: var(--light-color);
}
.muted-color {
    color: var(--muted-color);
}
.danger-color {
    color: var(--danger-color);
}
.success-color {
    color: var(--success-color)
}

button[data-close] {
    color: #d9d8d8;
}

.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}

.main-header {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--light-color);
    position: relative;
    z-index: 1000;
}

.position-sticky {
    position: sticky;
}

#fixed-nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    height: 5em;
    /* width: 100%; */
    padding-inline: var(--x-container-fluid-padding);
    transition: all 0.3 ease;
}

.logo-sm {
    /* width: 5rem; */
    width: 6rem;
    object-fit: contain;
}

.logo-center {
    display: block;
    margin: auto;
}

section[id] {
    scroll-margin-top: 60px;
}

.fixed-menu-solid {
    background-color: var(--light-color);
    color: var(--secondary-color);
    box-shadow: 1px 1px 15px 0px rgba(175, 167, 167, 0.414);
}



/* footer {
    position: absolute;
    bottom: 0;
    width: 100%;
} */

.main-footer {
    line-height: 2.5rem;
    padding-bottom: 1rem !important;
}

.main-footer a:hover {
    text-decoration: underline;
}

.main-footer hr {
    padding: 0;
    margin-block: 2rem;
    border: none;
    height: 1.5px;
    background-color: #909191;
}

.contact-info {
    text-align: left;
}   

.social-medias i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.quot-header:not(nav) {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 0.3rem 1rem;
    box-shadow: 1px 1px 15px 0px rgba(175, 167, 167, 0.414);
    font-weight: 500;
}

.header-content {
    margin: 6rem 3rem 0rem 3rem;
    max-width: 57rem;
    padding-inline: var(--x-container-fluid-padding);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
} 

.main-header-img {
    margin-top: 80px;
    width: 100%;
    min-height: 24rem;
    object-fit: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.card {
    padding: 1rem;
    border-radius: 15px;
}

.shadow {
    box-shadow: 0px 0px 5px 0px rgba(175, 167, 167, 0.414);
}

.responsive-table {
    width: 100%;
    overflow: auto;
}

.responsive-table th, .responsive-table td {
    padding: 0.5rem 1rem;
    text-align: left;
}

.striped-table {
    color: #2e273e;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.striped-table tr {
    border-radius: 100%;
    overflow: hidden;
}

.client-panel {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    height: 100%;
} 

.client-panel aside {
    box-sizing: border-box;
    padding: 2rem 0.5rem;
    background-color: #222223;
    color: var(--light-color);
    grid-area: 1 / 1 / 9 / 2;
}

.client-panel article {
    grid-area: 2 / 2 / 9 / 7;
    padding-inline: 5rem;
}

.client-panel header {
    padding: 0rem 2rem;
    background-color: #f6f7f8;
    /* max-height: 6rem; */
    grid-area: 1 / 2 / 2 / 7;
}

.client-panel-menu {
    margin-top: 1rem;
    /* width: 100%; */
}

.client-panel-menu ul {
    color: #929397;
    list-style: none;
    font-size: var(--font-size-regular);
    width: 250px;
    /* padding: ; */
}

.client-panel-menu ul li {
    border-radius: 15px;
    padding: 5px 15px;
    margin-top: 10px;
}

.client-panel-menu ul li i{
    font-size: 5px;
    vertical-align: middle;
}

li.active {
    color: var(--light-color);
    background-color: var(--danger-color);
    /* border-radius: 15px;
    padding: 5px 15px; */
}

.striped-table thead {
    border-radius: 100%;
    overflow: hidden;
    background-color: #fcf2f7;
}

.striped-table tbody tr:nth-child(odd) {
    background-color: #f7f7f9;
}

#password-strength {
    height: 10px;
    background-color: lightgray;
    margin-top: 5px;
}
.strength {
    height: 100%;
}
.weak {
    width: 25%;
    background-color: var(--danger-color);
}
.fair {
    width: 50%;
    background-color: rgb(220, 220, 49);
}
.good {
    width: 75%;
    background-color: #a2c28d;
}
.strong {
    width: 100%;
    background-color: var(--success-color);
}

.custom-dropzone {
    /* border: 2px  #fff; */
    border-radius: 20px;
    /* background: linear-gradient(135deg, #ff416c, #ff4b2b); */
    background: var(--success-color);
    padding: 10px;
    text-align: center;
    color: #fff;
    font-family: Arial, sans-serif;
    width: 500px;
    margin: 20px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .custom-dropzone .dz-message {
    flex: 1 1 100%;
  }
  
  .custom-dropzone .dz-preview {
    flex: 0 1 auto;
  }

  .custom-dropzone .dz-message h2 {
    font-size: 24px;
    margin: 0;
  }
  
  .custom-dropzone .dz-message p {
    font-size: 16px;
    margin: 10px 0;
  }
  
  .custom-dropzone .dz-message small {
    font-size: 12px;
    opacity: 0.8;
  }

  .custom-dropzone img {
    border-radius: 15px;
  }

  .dz-error-mark {
    display: none;
  }

  .dz-success-mark{
    display: none;
  }

  .dz-details{
    display: none;
  }

  .dz-preview-wrapper {
    display: flex;
    flex-wrap: wrap; /* Si tienes muchas vistas previas, esto las coloca en varias filas */
    gap: 10px; /* Espacio entre las vistas previas */
  }

.avatar-img-sm {
    border-radius: 100%;
    width: 40px;
    height: 40px;
    object-fit: cover;
    object-position: center;
    /* object-position: center; */
}

.custom-radio-label {
    display: flex;
    align-items: center;
    gap: 5px; /* Espacio entre el radio y el texto */
    cursor: pointer;
}

.custom-input-transparent {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e5e4e4;
    padding: 0.9rem 0.5rem;
    transition: 0.3s;
}

.custom-input {
    background-color: #f3f5f8;
    border: none;
    display: block;
    width: 100%;
    line-height: 2.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    padding: 0 1rem;
    height: 2.5rem;
    font-weight: 500;
    transition: 0.3s;
}

.custom-input.is-invalid, .custom-input-transparent.is-invalid {
    border: 1px solid var(--danger-color);
    background-color: #ef6b6b24;
}

.custom-checkbox {
    border-radius: 100%;
    /* padding: 10rem; */

}

.custom-input:focus {
    border: 1px solid #78a55a;
    outline: none;
    /* background-color: lightyellow; */
}

.input-group, .input-group-reverse {
    position: relative;
}

.input-group span {
    position: absolute;
    top: 6.5px;
    left: 10px;
}

.input-group .custom-input {
    padding: 0 2rem 0 3rem;
}

.input-group-reverse span {
    position: absolute;
    top: 6.5px;
    right: 10px;
}

.input-group-reverse .custom-input {
    padding: 0 3rem 0 1rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-weight: 500;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex: 1;
}

.text-black {
    color: black;
}

.header-content .btn-primary {
    display: block;
}
.btn-transparent {
    border: none;
    background-color: transparent;
}

.btn-danger {
    height: fit-content;
    background-color: var(--danger-color);
    color: var(--light-color);
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    border: none;
    align-self: center;
}

/* .header-content h1 {
    font-size: 1.7em;
} */

.how-do-it{
    /* padding: 10rem 10rem; */
    /* text-align: center; */
    text-align: justify;
    /* text-justify:distribute-all-lines; */
}

.how-do-it-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-around;
    /* padding: 15rem 0 3rem 0; */
}

.how-do-it-item {
    /* position: static; */
    flex-basis: 25rem;
    display: flex;
    flex-direction: column;
    width: auto;
    row-gap: 0.5rem;
    /* justify-content: baseline; */
    /* align-items: ; */
    /* align-content: center; */
}

.how-do-it-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.how-do-it-icon {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    background-image: linear-gradient(to right, var(--gradient-icon-start), var(--gradient-icon-end));
    /* background-color: var(--primary-color); */
    align-self: center;
}

.service-info {
    width: calc(100% - var(--x-container-padding));
    /* background-color: black; */
    /* background-color: line; */
    background-image: linear-gradient(to right,#eff1f6, #f6f6fb, #fafdfd);
    height: 5rem;
    position: absolute;
    left: var(--x-container-padding);
    border-radius: 20px 0 0 20px;
}

.service-info-right {
    width: calc(100% - var(--x-container-padding) + 10rem);
    /* width: 100%; */
    margin-left: calc(var(--x-container-padding) - 10rem);
    background-image: linear-gradient(to right,#eff1f6, #f6f6fb, #fafdfd);
    border-radius: 200px 0 0 200px;
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    gap: 3rem;
    line-height: 1.7rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    padding:  1rem 1rem;
    height: auto;
    padding: 1.5rem;
}

.service-info-left {
    gap: 3rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: row-reverse;
    /* margin-top: 1rem; */
    width: calc(100% - var(--x-container-padding) + 10rem);
    margin-right: var(--x-container-padding);
    background-image: linear-gradient(to right,#fafdfd, #f6f6fb, #eff1f6);
    height: auto;
    border-radius: 0px 200px 200px 0px;
    line-height: 1.7rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    /* padding:  1rem 1rem; */
    height: auto;
}

.custom-container {
    padding: 0 var(--x-container-padding);
}

.py-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hero-color {
    color: black;
}

.custom-container-fluid {
    padding: 0 var(--x-container-fluid-padding);
}

.service-img {
    height: auto;
    width: 21rem;
    /* align-self: center; */
    /* padding: 1rem; */
    /* margin: 1em; */
    border-radius: 100%;
    /* background-image: url('https://via.placeholder.com/300x300'); */
    background-position: center;
    background-size: cover;
}

.main-header .register-button {
    border-radius: 24px;
    padding: 0.8rem;
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.quot-header .register-button {
    /* display: none; */
    border-radius: 50px;
    padding: 0.5rem  0.5rem;
    font-size: var(--font-size-regular);
    background: none;
    border: 1px solid #d1044a;
    margin-left: 1rem;
    /* border-color: var(--light-color); */
    color: #d1044a;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quot-header .register-button:hover {
    background-color: #d10448;
    color: var(--light-color);
}

.main-header .register-button:hover {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 15px;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    padding: 0.5rem 1rem;
}
.btn-primary.flat {
    padding: 0.2rem 0.5rem !important;
    
}

.btn-primary:disabled {
    background-color: #ff273aaa;
    color: var(--light-color);
    border-radius: 15px;
    border: none;
    /* border: 1px solid #ff273a22; */
    cursor: pointer;
    padding: 0.5rem 1rem;
}

.btn-md {
    /* width: 5rem; */
    padding: 0.6rem 1.1rem;
    font-size: var(--font-size-regular);
}

.btn-success {
    background-color: var(--success-color);
    color: var(--light-color);
    border: 1px solid var(--success-color);
    border-radius: 30px;
    cursor: pointer;
    padding: 0.5rem 1rem;
}

.faq-section {
    padding: 3rem 15rem;
}

.faq-section .question {
    font-size: var(--font-size-md);
    text-align: left;
    display: block;
}

.faq-section .show-question {
    background-color: var(--danger-color);
    border: 0px;
    width: 22px;
    height: 22px;
    /* padding: 15px 10px; */
    border-radius: 100%;
    color: var(--light-color);
}

.faq-section hr {
    border: none;
    background-color: #e2e1e2;
    height: 2px;
    /* border-radius: 1px solid #e2e1e2; */
}

.store-icon {
    height: auto;
    width: 200px;
    object-position: center;
    /* flex-basis: 10rem; */
    /* max-width: 10rem; */
}

.parcel-label {
    width: 100px;
    text-align: center;
}

#fedex-label {
    background-color: #492c93;
    color: #b6717d;
}

#dhl-label {
    background-color: #fecb02;
    color: #b46700;
}

#estafeta-label {
    background-color: #c11415;
    color: #f9dfdd;
}

#paquetexpress-label {
    width: 150px;
    background-color: #fffefc;
    color: #304478;
}

.main-footer-content div {
    flex: 1;
}

.main-footer-content ul {
    list-style: none;
}

.label-shipping-method {
    color: #d0054a;
    font-weight: bold;
}

.service-content ul {
    list-style: none;
}

.service-ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-ul i {
    font-size: 4px;
}

.quot-banner {
    padding: 4rem 20rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-image: linear-gradient(to right, var(--gradient-background-start), var(--gradient-background-end));
    color: var(--light-color);
}

.quot-banner div {
    /* width: 50%; */
    margin: auto;
    align-content: center;
}

.quot-banner button {
    width: auto;
    border: none;
    color: var(--primary-color);
    background-color: #fffefe;
    padding: 10px;
    margin: auto;
    border-radius: 20px;
    /* flex-grow: 10; */
}

.modal {
    position: absolute;
    z-index: 1500;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.1s;
}

.modal-content {
    margin: auto;
    background-color: white;
    width: 25rem;
    transition: 0.5s;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    line-height: 1.5rem;
    opacity: 0;
}

.modal-md .modal-content {
    width: 50rem;
}

.btn-login {
    background-color: var(--danger-color);
    color: var(--light-color);
    border: none;
    border-radius: 15px;
    padding: 0.5rem 1rem;
    width: 100%;
}

.btn-login:disabled {
    background-color: #d0044baa;

}

.signup-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* padding: 0 var(--x-container-fluid-padding) 0 0; */
    height: 100%;
    overflow-y: auto;
}

.signup-container section {
    margin-top: auto;
    height: 100%;
    overflow-y: auto;
    padding: 0 20rem 0 10rem;
}

.signup-bg {
    z-index: 0;
    background-image: url('https://d1ih8jugeo2m5m.cloudfront.net/2022/10/envios-1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* flex-grow: 1; */
    flex-basis: 400px;
    height: 100%;
}
.modal.show, .modal-content.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.py-1 {
    padding: 1rem 0;
}
.px-1 {
    padding: 0 1rem;
}
.px-5 {
    padding-inline: 5rem;
}

.loader-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.loader-sm {
    border: 3px solid #f3f3f3; /* Color de fondo del círculo */
    border-top: 3px solid #3498db; /* Color de la parte superior */
    border-radius: 50%; /* Hacer el círculo */
    width: 18px; /* Ancho del loader */
    height: 18px; /* Alto del loader */
    animation: spin 0.6s linear infinite; /* Animación */
    margin-left: 5px; /* Espaciado a la izquierda del texto */
}

.add-new-element-form {
    padding: 1em;
    line-height: 2rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    :root {
        --font-size: 15px;
        --font-size-xs: calc(0.5 * var(--font-size));
        --font-size-sm: calc(0.8 * var(--font-size));
        --font-size-regular: calc(1 * var(--font-size));
        --font-size-md: calc(1.5 * var(--font-size));
        --font-size-lg: calc(1.8 * var(--font-size));
        --font-size-xl: calc(2 * var(--font-size));
        --x-container-padding: 1rem;
        --x-container-fluid-padding: 1rem;
    }

    .client-panel article {
        padding: 1rem;
    }

    .sm-flex-column {
        flex-direction: column;
    }

    .quot-banner {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .client-panel {
        display: block;
    }

    .client-panel article {
        width: 100%;
        box-sizing: border-box;
    }

    .signup-container {
        display: block;
        margin-top: 1rem;
        padding: auto;
        width: 100%;
    }

    .signup-container section {
        padding: 0 1rem;
    }

    .client-panel aside {
        /* display: none; */
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        position: absolute;
        left: 0;
        bottom: 0;
        top: 0;
        z-index: 1;
    }

    .main-footer {
        font-size: var(--font-size-xs);
    }

    .service-info-right, .service-info-left {
        flex-wrap: wrap;
        padding: 1rem 1rem;
        margin: 0;
        border-radius: 0;
        background-image: none;
        background-color: var(--tertiary-color);
        width: 100%;
        margin-bottom: 2rem;
    }

    .service-img {
        flex-grow: 1;
        height: 12rem;
        border-radius: 0;
        display: inline;
        align-self: center;
    }

    .faq-section {
        padding: 2rem 1rem;
    }

    .sm-nowrap {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .main-header {
        height: auto;
        /* padding-top: 1rem; */
    }

    .header-content {
        margin: 6rem 0rem;
    }

    
    .sm-d-block {
        display: block;
    }

    .sm-d-none {
        display: none;
    }

    .form-group {
        /* flex-basis: 40%; */
        flex-basis: content;
    }

    /* , .main-header */
    .quot-header {
        padding-left: 2rem;
    }

    .quot-header .register-button, .main-header .register-button {
        font-size: var(--font-size-sm);
    }

    .main-header ul li {
        color: var(--secondary-color);
    }

    #navbar {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        width: 16rem;
        background-color: var(--tertiary-color);
        z-index: 200;
        visibility: hidden;
        opacity: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    }
    
    #navbar.show {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    .main-header-img {
        width: 100%;
        min-height: auto !important;
    }
}

.rounded-sm {
    border-radius: 5px;
}

.rounded-md {
    border-radius: 10px;
}

.rounded-lg {
    border-radius: 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.row > .col {
    flex: 1 1 0;
}

.col-1  { flex: 0 0 8.33%; max-width: 8.33%; }
.col-2  { flex: 0 0 16.66%; max-width: 16.66%; }
.col-3  { flex: 0 0 25%; max-width: 25%; }
.col-4  { flex: 0 0 33.33%; max-width: 33.33%; }
.col-5  { flex: 0 0 41.66%; max-width: 41.66%; }
.col-6  { flex: 0 0 50%; max-width: 50%; }
.col-7  { flex: 0 0 58.33%; max-width: 58.33%; }
.col-8  { flex: 0 0 66.66%; max-width: 66.66%; }
.col-9  { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.33%; max-width: 83.33%; }
.col-11 { flex: 0 0 91.66%; max-width: 91.66%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (max-width: 768px) {
    .col-sm-12  { flex: 0 0 100%; max-width: 100%; }
    .col-sm-6   { flex: 0 0 50%; max-width: 50%; }
    .col-sm-4   { flex: 0 0 33.33%; max-width: 33.33%; }
    .col-sm-3   { flex: 0 0 25%; max-width: 25%; }
    .col-sm-3   { flex: 0 0 25%; max-width: 25%; }
}

@media (min-width: 769px) and (max-width: 992px) {
    .col-md-12  { flex: 0 0 100%; max-width: 100%; }
    .col-md-6   { flex: 0 0 50%; max-width: 50%; }
    .col-md-4   { flex: 0 0 33.33%; max-width: 33.33%; }
    .col-md-3   { flex: 0 0 25%; max-width: 25%; }
}

@media (min-width: 993px) {
    .col-lg-12  { flex: 0 0 100%; max-width: 100%; }
    .col-lg-6   { flex: 0 0 50%; max-width: 50%; }
    .col-lg-4   { flex: 0 0 33.33%; max-width: 33.33%; }
    .col-lg-3   { flex: 0 0 25%; max-width: 25%; }
}

.row.center { justify-content: center; }
.row.start { justify-content: flex-start; }
.row.end { justify-content: flex-end; }
.row.between { justify-content: space-between; }
.row.around { justify-content: space-around; }

.text-regular {
    font-weight: var(--font-weight-regular);
}
.text-medium {
    font-weight: 500; /* Medium */
}

.text-bold {
    font-weight: 700; /* Bold */
}

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

.text-xs {
  font-size: 14px;
}
  
.text-body2 {
    font-size: 14px;
    line-height: 20px;
}

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

.text-h1 {
    font-size: 96px;
    line-height: 120px;
}

.text-h2 {
    font-size: 60px;
    line-height: 72px;
}

.text-h3 {
    font-size: 48px;
    line-height: 56px;
}

.text-h4 {
    font-size: 34px;
    line-height: 40px;
}

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

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

.register-btn {
    padding: 18px;
    border: var(--primary-color);
    font-weight: 500;
    margin: 1rem 0;
}

.gap-22 {
    gap: 22px;
}

.strikethrough {
    text-decoration: line-through;
}


@media (max-width: 600px) {
    .text-body1 {
      font-size: 15px;
    }
    .text-body2 {
      font-size: 13px;
    }
  }

.position-relative {
    position: relative;
}

.custom-delete-button {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 5px 10px;
    font-size: 14px;
}

/* Animación para bajar el mensaje */
.slide-down-enter-active, .slide-down-leave-active {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.slide-down-enter-from, .slide-down-leave-to {
    opacity: 0;
    transform: translateY(-10px);
}
.slide-down-enter-to, .slide-down-leave-from {
    opacity: 1;
    transform: translateY(0);
}

.error-label {
    font-size: 18px;
    color: red;
}

.cursor-pointer {
    cursor: pointer;
}

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

.text-gray-600 {
    color: #6c757d;
}

.d-block {
    display: block;
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-outline-primary:disabled,
.btn-outline-primary[disabled] {
    background-color: transparent;
    color: #aaa;
    border-color: #aaa;
    cursor: not-allowed;
    opacity: 0.6;
}

.custom-scroll {
    scrollbar-width: thin;
    scrollbar-color: #888888 transparent;
}

 
.custom-scroll::-webkit-scrollbar {
    height: 12px;
    width: 14px;
    background: transparent;
    z-index: 12;
    overflow: visible;
}
  
.custom-scroll::-webkit-scrollbar-thumb {
    width: 10px;
    background-color: #888888;
    border-radius: 10px;
    z-index: 12;
    border: 4px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    -webkit-transition: background-color 0.28s ease-in-out;
    transition: background-color 0.28s ease-in-out;
    margin: 4px;
    min-height: 32px;
    min-width: 32px;
}
  
.custom-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #555555;
}

.text-block {
    display: block;
    margin: 0 auto;
    line-height: 1.6;
    white-space: pre-line;
    text-align: left;
}

.text-align-end {
    text-align: end;
}

.file-container {
    background: #f6fff0;
    border: 1px solid #b4dca3;
    border-radius: 15px;
    text-align: center;
    padding: 10px;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.file-icon {
    font-size: 2rem;
}

.file-name {
    margin: 5px auto 0;
    color: black;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: default;
}

.pdf-container {
    width: 100%;
    max-width: 816px;
    aspect-ratio: 10 / 11;
}

.pdf-frame {
  width: 100%;
  max-width: 816px; /* carta width */
  height: calc(100% * 1.294); /* o usa un valor fijo como: 1056px si width es 816px */
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.btn-primary-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary-outline:hover {
    background-color: var(--primary-color);  /* Color de fondo cuando se pasa el mouse */
    color: var(--light-color);  /* Cambia el texto a un color claro */
}

/* Versión Outline para .btn-success */
.btn-success-outline {
    background-color: transparent;  /* Fondo transparente */
    color: var(--success-color);  /* Color del texto en el color de éxito */
    border: 2px solid var(--success-color);  /* Borde del color de éxito */
    border-radius: 30px;  /* Borde redondeado igual que en .btn-success */
    cursor: pointer;  /* Cambia el cursor cuando se pasa por encima */
    padding: 0.5rem 1rem;  /* Relleno igual */
    transition: background-color 0.3s, color 0.3s;  /* Transiciones suaves para efectos */
}

.btn-success-outline:hover {
    background-color: var(--success-color);  /* Color de fondo cuando se pasa el mouse */
    color: var(--light-color);  /* Cambia el texto a un color claro */
}

.badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    font-family: sans-serif;
    width: fit-content;
    transition: transform 0.2s ease;
}
  
.badge .label {
    font-size: 11px;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 4px;
}
  
.badge .price {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}
  
.badge-featured {
    background-color: #007bff;
    color: #fff;
    padding: 16px 36px;
    min-width: none;
    border: 2px solid #0056b3;
    transform: scale(1.05);
}
  
.badge-featured .label {
    color: #cce5ff;
    font-size: 12px;
}
  
.badge-featured .price {
    font-size: 22px;
    color: #fff;
}

.order-container {
    border: 1px solid #bebebe;
    padding: 22px;
    border-radius: 8px;
}

.order-info-container {
    background-color: #eeeeee;
}

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

.img-parcel {
    width: 100px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.parcel-wrapper {
    position: relative;
    display: inline-block;
}
  
.preferred-star {
    position: absolute;
    top: -15px;
    right: -12px;
    color: gold;
    font-size: 25px;
    pointer-events: none;
}

.hero-content {
  z-index: 2;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.75); /* fondo oscuro detrás del texto */
  color: white;
  border: 2px solid white;
  border-radius: 10px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 47px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Negro con transparencia */
    z-index: 1;
}

@media (min-width: 769px) and (max-width: 1044px) {
    #fixed-nav {
        padding-inline: 1rem;
    }
}

@media(min-width: 769px) {
    .lg-d-none { display: none !important; }
}

@media(max-width: 850px) {
    .sm-hide {
        display: none !important;
    }
}

@media(max-width: 500px) {
    .register-btn {
        width: 80%;
        min-width: 270px;
        margin: 0;
    }
}

.address-container{
    cursor: pointer;
}

.address-container:hover {
    background: #f0f0f0;
}

.form-address-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-success:disabled {
    background-color: #94d3a2;
    cursor: not-allowed;
}