:root {
  /* Colors*/
  --white: #FFFFFF;
  --background-light: #EDF6FF;
  --background-gray: #F7F8FA;
  --background: #EEF4F8;
  --gray: #676767;
  --gray-light: #E9E8ED;
  --dark: #05132E;
  --primary: #000066;
  --success: #00A700;
  --light-success: #D9FFEB;
  --danger: #F72100;
  --light-danger: #FFECEC;
  --warning: #EDB620;
  --light-warning: #FFFAE8;
  /* Font/text values */
  --font-family: "Outfit";
  --font-weight-600: 600;
  --font-weight-medium: 500;
  --font-weight-regular: 400;
  --font-size-14: 14px;
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-24: 24px;
  --font-size-32: 32px;
  --font-size-40: 40px;
}

/* Character Styles */
h1,
.h1 {
  font-weight: var(--font-weight-medium);
  font-size: 36px;
  letter-spacing: -0.48px;
  color: var(--dark);
}

h2,
.h2 {
  font-weight: var(--font-weight-600);
  font-size: var(--font-size-32);
  letter-spacing: -0.48px;
  color: var(--dark);
}

h3,
.h3 {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-24);
  letter-spacing: -0.48px;
  color: var(--dark);
}

h4,
.h4 {
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-18);
  letter-spacing: -0.48px;
  color: var(--dark);
}

h5,
.h5 {
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-16);
  letter-spacing: -0.48px;
  color: var(--dark);
}

p,
.p {
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-18);
  letter-spacing: -0.48px;
  color: var(--gray);
}

.tiny {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-14);
  letter-spacing: -0.48px;
  color: var(--gray);
}

a,
.link {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-14);
  letter-spacing: -0.48px;
  color: var(--primary);
  text-decoration: none;
}
a:hover,
.link:hover {
  color: var(--primary);
}
a.text-dark:hover,
.link.text-dark:hover {
  color: var(--primary) !important;
}

/* Text colors */
.text-primary {
  color: var(--primary) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.text-gray {
  color: var(--gray) !important;
}

.text-success {
  color: var(--success) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.text-warning {
  color: var(--warning) !important;
}

.text-muted {
  color: var(--gray) !important;
}

.dropdown .dropdown-menu {
  padding: 1.875rem;
  margin-top: 0.5rem !important;
  border-radius: 1rem;
  border: 1px solid var(--light);
  box-shadow: 0px 3px 39px rgba(0, 0, 0, 0.1215686275);
}
.dropdown .dropdown-hours {
  min-width: 16rem;
}

.form-control,
.form-select {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-medium);
  color: var(--dark);
  letter-spacing: -0.48px;
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 16px;
}
.form-control:focus,
.form-select:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--primary);
}
.form-control::placeholder,
.form-select::placeholder {
  color: var(--gray);
}

.form-floating .form-control,
.form-floating .form-select {
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 16px;
  color: var(--dark);
}
.form-floating .form-control:focus,
.form-floating .form-select:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--primary);
}
.form-floating label {
  padding: 18px 16px;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-medium);
  letter-spacing: -0.48px;
  color: var(--dark);
}
.form-floating .form-control:focus,
.form-floating .form-control:not(:placeholder-shown),
.form-floating .form-select {
  padding-top: 24px;
  padding-bottom: 13px;
}
.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label,
.form-floating .form-select ~ label {
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  background: transparent;
  padding-top: 18px;
  padding-left: 16px;
  padding-bottom: 0;
  height: auto;
  color: var(--gray);
}

.form-check .form-check-label {
  font-size: 14px;
  font-weight: 500;
}

.form-check-input {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-color: var(--gray-light);
  background-color: var(--gray-light);
}
.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}
.form-check-input:checked:focus {
  border-color: var(--primary);
}
.form-check-input:focus {
  box-shadow: none;
  border-color: var(--gray-light);
}
.form-check-input[type=checkbox] {
  border-radius: 100%;
  background-size: 14px;
}
.form-check-input[type=checkbox] ~ .form-check-label, .form-check-input[type=radio] ~ .form-check-label {
  margin-left: 5px;
}

.form-switch {
  padding-left: 0;
}
.form-switch .form-check-input {
  width: 40px;
  height: 24px;
  margin-top: 0;
  float: right;
  margin-left: auto;
  border-radius: 40px;
  border-color: var(--gray-light);
  background-color: var(--gray-light);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  background-size: contain;
}
.form-switch .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}
.form-switch .form-check-input:focus {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

/* .form-check {
    margin-top: 12px;
    margin-bottom: 12px;

    .form-check-input {
        width: 20px;
        height: 20px;
        border-color: $gray1;
        background-color: $gray1;

        &:checked {
            background-color: $primary;
            border-color: $primary;
        }

        &:focus,
        &:active {
            outline: none;
            box-shadow: none;
        }
    }

    .form-check-label {
        margin-left: 12px;
        font-size: 14px;
    }
}

.form-switch {
    padding-left: 0;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    .form-check-input {
        min-width: 48px;
        height: 24px;
        margin: 0;
        border-color: $secondary;
        background-color: $secondary;
        float: none;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");

        &:checked {
            background-color: $primary;
            border-color: $primary;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
        }

        &:focus,
        &:active {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
        }
    }

    .form-check-label {
        margin-left: 0;
        padding-right: 20px;
    }
} */
.card {
  border-radius: 2.75rem;
  box-shadow: 0px 2px 14px rgba(94, 94, 94, 0.0509803922);
  border: 2px solid var(--background);
}
.card .card-body {
  margin-top: 0;
  padding: 3.5rem;
}
.card:hover {
  box-shadow: 0px 3px 24px rgba(178, 178, 178, 0.1294117647);
}
.card a:hover .h2 {
  color: var(--primary);
}

.card-plans {
  position: relative;
  border-width: 4px;
}
.card-plans .card-body-plans {
  padding: 2.8125rem 2.5rem;
}
.card-plans.recommending {
  border-color: var(--primary);
}
.card-plans.recommending .badge {
  position: absolute;
  top: -17px;
  left: calc(50% - 72.4px);
  margin-left: auto;
  margin-top: 0;
}

.carousel {
  margin-bottom: 3.75rem;
}
.carousel .constrols-slider {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 999;
}
.carousel .constrols-slider .carousel-indicators,
.carousel .constrols-slider .carousel-control-prev,
.carousel .constrols-slider .carousel-control-next {
  position: relative;
}
.carousel .constrols-slider .carousel-indicators {
  margin: 0 30px;
}
.carousel .constrols-slider .carousel-indicators [data-bs-target] {
  width: 7px;
  height: 7px;
  border-radius: 3px;
  margin: 0 8px;
  background-color: var(--primary);
  background-clip: initial;
  border: 0;
  opacity: 0.2;
}
.carousel .constrols-slider .carousel-indicators [data-bs-target].active {
  opacity: 1;
}
.carousel .constrols-slider .carousel-control-next,
.carousel .constrols-slider .carousel-control-prev {
  min-width: 40px;
  height: 40px;
  border-radius: 13px;
  margin-right: 0.3125rem;
  background-color: var(--primary);
  opacity: 1;
  padding: 0.625rem;
}
.carousel .constrols-slider .carousel-control-next {
  margin-right: 0;
}
.carousel .constrols-slider .carousel-control-prev {
  margin-right: 5px;
}
.carousel .carousel-inner {
  border-radius: 1.875rem;
  overflow: hidden;
}
.carousel .carousel-inner .carousel-item img {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .carousel {
    margin-bottom: 2rem;
  }
  .carousel .constrols-slider {
    display: none;
  }
}
.navbar {
  padding-top: 18px;
  padding-bottom: 18px;
  background-color: var(--white);
  box-shadow: 0 3px 11.5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1;
}
.navbar .navbar-brand {
  width: 90px;
  padding: 0;
}
.navbar .navbar-brand img {
  width: 100%;
}
.navbar .nav-item .nav-link {
  font-weight: var(--font-weight-medium);
  font-size: 15px;
  letter-spacing: -0.48px;
  color: var(--dark);
  padding: 15px 18px;
  border-radius: 40px;
}
.navbar .nav-item .nav-link:hover {
  color: var(--primary);
  background-color: var(--background-light);
}
.navbar .navbar-toggler {
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 16px;
}
.navbar .navbar-toggler:active, .navbar .navbar-toggler:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

footer {
  background-color: var(--background-gray);
  padding-top: 75px;
}
footer .contact-link {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}
footer .contact-link .item-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}
footer .footer-bottom {
  margin-top: 85px;
  border-top: 2px solid var(--white);
  padding-top: 34px;
  padding-bottom: 34px;
}

@media (max-width: 767.98px) {
  footer .footer-bottom {
    margin-top: 50px;
  }
}
.btn {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-14);
  letter-spacing: -0.48px;
  color: var(--dark);
  padding: 14px 18px;
  border-radius: 65px;
}
.btn:focus, .btn:active {
  outline: 0;
  box-shadow: none;
  background-color: transparent;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--white);
  border-color: var(--primary) y;
  color: var(--primary);
}
.btn-primary:active, .btn-primary:focus {
  background-color: var(--white);
  border-color: var(--primary) y;
  color: var(--primary);
  outline: 0 !important;
  box-shadow: none !important;
}
.btn-primary:disabled {
  background-color: var(--gray-light);
  border-color: var(--gray-light);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.btn-secondary:hover {
  background-color: var(--gray);
  border-color: var(--gray);
  color: var(--dark);
}
.btn-secondary:active, .btn-secondary:focus {
  background-color: var(--gray);
  border-color: var(--gray);
  color: var(--dark);
  outline: 0 !important;
  box-shadow: none !important;
}
.btn-secondary:disabled {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.btn-outline-primary {
  background-color: var(--white);
  border-color: var(--primary) y;
  color: var(--primary);
}
.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn-outline-primary:active, .btn-outline-primary:focus {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn-outline-primary:disabled {
  background-color: var(--white);
  border-color: var(--primary) y;
  color: var(--primary);
}

.btn-whatsapp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  border-color: var(--success) y;
  color: var(--success);
}
.btn-whatsapp:hover {
  background-color: var(--success);
  border-color: var(--success);
  color: var(--white);
}
.btn-whatsapp:hover svg path {
  fill: var(--white);
}
.btn-whatsapp:active, .btn-whatsapp:focus {
  background-color: var(--success);
  border-color: var(--success);
  color: var(--white);
}
.btn-whatsapp:active svg path, .btn-whatsapp:focus svg path {
  fill: var(--white);
}
.btn-whatsapp:disabled {
  background-color: var(--white);
  border-color: var(--success) y;
  color: var(--success);
}

.btn-hours {
  display: flex;
  align-items: center;
  column-gap: 14px;
  border: 0;
  background-color: var(--white);
}
.btn-hours p.h4 {
  line-height: 1;
}

.btn-light {
  background-color: var(--background-light);
  border-color: var(--background-light);
  color: var(--dark);
}
.btn-light:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn-light:active, .btn-light:focus {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  outline: 0 !important;
  box-shadow: none !important;
}
.btn-light:disabled {
  background-color: var(--light);
  border-color: var(--light);
  color: var(--gray);
}

.btn-gray {
  background-color: var(--background);
  border-color: var(--background);
  color: var(--dark);
}
.btn-gray:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn-gray:hover svg path {
  fill: var(--white);
}
.btn-gray:active, .btn-gray:focus {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  outline: 0 !important;
  box-shadow: none !important;
}
.btn-gray:active svg path, .btn-gray:focus svg path {
  fill: var(--white);
}
.btn-gray:disabled {
  background-color: var(--light);
  border-color: var(--light);
  color: var(--gray);
}

.btn-close {
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg id='vuesax_twotone_close-circle' data-name='vuesax/twotone/close-circle' transform='translate(-246 -242)'%3E%3Cg id='close-circle' transform='translate(10 -10)'%3E%3Cpath id='Vector' d='M10,20.75A10.738,10.738,0,0,1,2.407,2.407,10.738,10.738,0,1,1,17.593,17.593,10.674,10.674,0,0,1,10,20.75Zm0-20A9.25,9.25,0,1,0,19.25,10,9.26,9.26,0,0,0,10,.75Z' transform='translate(238 254)' fill='%233022bc'/%3E%3Cg id='Group_686' data-name='Group 686' opacity='0.4'%3E%3Cpath id='Vector-2' data-name='Vector' d='M0,6.41a.748.748,0,0,1-.53-.22.75.75,0,0,1,0-1.061L5.13-.53a.75.75,0,0,1,1.061,0A.75.75,0,0,1,6.19.53L.53,6.19A.748.748,0,0,1,0,6.41Z' transform='translate(245.17 261.17)' fill='%233022bc'/%3E%3Cpath id='Vector-3' data-name='Vector' d='M5.66,6.41a.748.748,0,0,1-.53-.22L-.53.53A.75.75,0,0,1-.53-.53.75.75,0,0,1,.53-.53L6.19,5.13a.75.75,0,0,1-.53,1.28Z' transform='translate(245.17 261.17)' fill='%233022bc'/%3E%3C/g%3E%3Cpath id='Vector-4' data-name='Vector' d='M0,0H24V24H0Z' transform='translate(236 252)' fill='none' opacity='0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center/1em auto no-repeat;
}
.btn-close:focus, .btn-close:active {
  box-shadow: none;
}

/* .btn-group {
    padding: 0.32rem;
    border-radius: 1rem;
    background-color: var(--background);
    column-gap: 0.32rem;

    .btn-check:checked+.btn,
    .btn-check:active+.btn,
    &:active,
    &.active,
    &.show {
        color: var(--dark);
        background-color: var(--white);
        border-color: var(--white);

    }

    .btn {
        padding: 0.75rem 1.93rem;
        border-radius: 0.875rem !important;
    }

    .btn-light {
        background-color: transparent;
        &:hover{
            border-color: var(--background-light);
            background-color: var(--background-light);
        }
    }


} */
.modal .modal-content {
  border-radius: 1.0625rem;
  border-color: var(--light);
}
.modal .modal-header,
.modal .modal-footer {
  border-color: var(--light);
  border-width: 2px;
  padding: 1.25rem;
}
.modal .modal-footer {
  padding: 10px;
}
.modal .modal-footer button {
  margin-top: 0;
  margin-bottom: 0;
}
.modal .modal-body {
  padding: 1.875rem;
}
.modal .modal-lg {
  --bs-modal-width: 700px;
}

.accordion {
  --bs-accordion-border-color: var(--light);
  --bs-accordion-border-width: 2px;
  box-shadow: 0px 2px 14px rgba(94, 94, 94, 0.0509803922);
}
.accordion .accordion-button {
  padding: var(--bs-accordion-btn-padding-x);
}
.accordion .accordion-button:focus, .accordion .accordion-button:active {
  box-shadow: none;
}
.accordion .accordion-button:focus.accordion-button:not(.collapsed), .accordion .accordion-button:active.accordion-button:not(.collapsed) {
  box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color);
}
.accordion .accordion-button.accordion-button:not(.collapsed) {
  background-color: var(--white);
}
.accordion .accordion-button.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-icon);
}

/* convertir variables */
/* @import "carousel"; */
body {
  font-family: var(--font-family), sans-serif;
  font-weight: var(--font-weight-normal);
  overflow-x: hidden;
}

.content-general,
.content-login {
  max-width: 100vw;
  overflow-x: hidden;
}

.content-login {
  min-height: 100vh;
  background-color: var(--background-gray);
}

.header-login {
  margin-top: 50px;
  margin-bottom: 35px;
  text-align: center;
}
.header-login img {
  width: 100px;
}

.footer-login {
  margin-top: auto;
  text-align: center;
  padding: 25px;
}

.card-login {
  border-radius: 25px;
  border: 1px solid var(--gray-light);
  margin-bottom: 100px;
}
.card-login .card-body {
  padding: 40px 40px 35px 40px;
}

.title-login {
  font-size: 24px;
  font-weight: 600;
}

.btn-pass {
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
}
.btn-pass:focus, .btn-pass:active {
  border-color: transparent !important;
}

.grid-value-password {
  display: flex;
  gap: 3px;
  margin-top: 15px;
  margin-bottom: 10px;
}
.grid-value-password .value-password {
  width: 100%;
  height: 3px;
  background-color: var(--gray-light);
  border-radius: 15px;
}
.grid-value-password .value-password.check {
  background-color: var(--primary);
}

.grid-autogestion {
  display: flex;
}

.sidebar-autogestion {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 60px 40px 60px;
  width: 100%;
  max-width: 440px;
  min-height: 100vh;
  border-right: 1px solid var(--gray-light);
  background-color: var(--white);
}
.sidebar-autogestion .header-autogestion .logo {
  width: 100px;
  margin-bottom: 60px;
}
.sidebar-autogestion .header-autogestion .progress-status {
  margin-top: 40px;
}
.sidebar-autogestion .header-autogestion .progress-status .item-progress-status .grid-status {
  display: flex;
  gap: 10px;
}
.sidebar-autogestion .header-autogestion .progress-status .item-progress-status .grid-status .circle-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 30px;
  border: 2px solid var(--gray-light);
  padding: 2px;
}
.sidebar-autogestion .header-autogestion .progress-status .item-progress-status .grid-status .circle-count span {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-light);
}
.sidebar-autogestion .header-autogestion .progress-status .item-progress-status .grid-status .title-status {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 0;
}
.sidebar-autogestion .header-autogestion .progress-status .item-progress-status .line-status {
  width: 2px;
  height: 30px;
  margin-top: 2px;
  margin-bottom: 2px;
  background-color: var(--gray-light);
  margin-left: 10px;
}
.sidebar-autogestion .header-autogestion .progress-status .item-progress-status.active .grid-status .circle-count {
  border-color: var(--primary);
}
.sidebar-autogestion .header-autogestion .progress-status .item-progress-status.active .grid-status .circle-count span {
  color: var(--primary);
}
.sidebar-autogestion .header-autogestion .progress-status .item-progress-status.active .grid-status .title-status {
  color: var(--dark);
}
.sidebar-autogestion .header-autogestion .progress-status .item-progress-status.active .line-status {
  background-color: var(--primary);
}

.content-autogestion {
  margin-top: 90px;
  margin-bottom: 90px;
  flex-grow: 1;
}
.content-autogestion .map {
  width: 100%;
  height: 300px;
  border-radius: 14px;
  border: 1px solid var(--gray-light);
  background-color: var(--white);
  margin-bottom: 18px;
}

.commerce-type {
  width: 100%;
  padding: 0;
  gap: 14px;
  border-radius: 0;
  background-color: transparent;
  margin-bottom: 20px;
}
.commerce-type .btn {
  padding: 14px 30px 14px 20px;
  background-color: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 60px !important;
  transition: ease-in-out 0.4s;
}
.commerce-type .btn .grid-commerce-type {
  display: flex;
  align-items: center;
  gap: 14px;
}
.commerce-type .btn .grid-commerce-type .icon-type {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 14px;
  background-color: var(--background-gray);
}
.commerce-type .btn .grid-commerce-type .title-type {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
.commerce-type .btn:hover {
  background-color: var(--white);
  border-color: var(--primary);
}
.commerce-type .btn:hover .grid-commerce-type .icon-type {
  background-color: var(--primary);
}
.commerce-type .btn:hover .grid-commerce-type .icon-type svg path {
  fill: var(--white);
}
.commerce-type .btn:hover .grid-commerce-type .title-type {
  color: var(--primary);
}
.commerce-type .btn-check:checked + .btn,
.commerce-type .btn-check:active + .btn {
  background-color: var(--white);
  border-color: var(--primary);
}
.commerce-type .btn-check:checked + .btn .grid-commerce-type .icon-type,
.commerce-type .btn-check:active + .btn .grid-commerce-type .icon-type {
  background-color: var(--primary);
}
.commerce-type .btn-check:checked + .btn .grid-commerce-type .icon-type svg path,
.commerce-type .btn-check:active + .btn .grid-commerce-type .icon-type svg path {
  fill: var(--white);
}
.commerce-type .btn-check:checked + .btn .grid-commerce-type .title-type,
.commerce-type .btn-check:active + .btn .grid-commerce-type .title-type {
  color: var(--primary);
}
.commerce-type .btn-check:checked + .btn::before,
.commerce-type .btn-check:active + .btn::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='20' rx='10' fill='%23453AD8'/%3E%3Cpath d='M9.14867 13.433C9.00049 13.433 8.8557 13.3825 8.73937 13.2885C8.66846 13.2315 7.00151 11.8856 6.30348 11.2579C6.03556 11.017 6.01391 10.6046 6.25465 10.3368C6.4954 10.0689 6.90852 10.0476 7.17559 10.2881C7.60953 10.6785 8.46975 11.3868 9.02894 11.8433L12.4295 7.22221C12.6431 6.93221 13.0511 6.8698 13.3411 7.08348C13.6315 7.29705 13.6935 7.70529 13.4799 7.99539L9.67389 13.1675C9.5686 13.3108 9.40895 13.4048 9.23232 13.4276C9.20429 13.4312 9.1767 13.433 9.14867 13.433Z' fill='white'/%3E%3C/svg%3E%0A");
}

.domain-input .domain {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 16px;
  margin: 16px 18px;
  color: var(--primary);
}
.domain-input .form-control {
  padding-right: 100px;
}

.form-control-switch {
  margin-bottom: 5px;
  padding: 10px 10px 10px 16px;
  border-radius: 14px;
  border: 1px solid var(--gray-light);
  background-color: var(--white);
}
.form-control-switch .form-check-input {
  float: right;
  margin-left: auto;
}
.form-control-switch .form-check-label {
  margin-left: 0;
}

.footer-autogestion {
  margin-top: 60px;
}
.footer-autogestion .tiny {
  margin-bottom: 0;
}

/* utilities */
.line-v {
  width: 2px;
  height: 25px;
  background-color: var(--light);
}

.line-w {
  width: 100%;
  height: 1px;
  background-color: var(--light);
}

/* background */
.bg-primary {
  background-color: var(--primary) !important;
}

.bg-success {
  background-color: var(--light-success) !important;
}

.bg-danger {
  background-color: var(--light-danger) !important;
}

.bg-warning {
  background-color: var(--light-warning) !important;
}

.alert {
  padding: 1.875rem;
  border-radius: 2.5rem;
}

.alert-light {
  background-color: var(--background);
}

.alert-dismissible .btn-close {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  margin: 20px 25px;
  background-size: auto;
  opacity: 1;
}

.progress {
  background-color: var(--white);
  position: relative;
  overflow: visible;
}
.progress .progress-bar {
  background-color: var(--primary);
  border-radius: var(--bs-progress-border-radius);
  position: relative;
  overflow: visible;
}
.progress .progress-bar::after {
  content: "";
  width: 16px;
  height: 16px;
  background-color: var(--background);
  border: 2px solid var(--primary);
  position: absolute;
  right: 0;
  border-radius: 50%;
}
.progress .progress-bar::before {
  content: "";
  background-color: var(--background);
  position: absolute;
  right: -4px;
  animation: blurwidth infinite 3s;
}

@keyframes blurwidth {
  0% {
    width: 10px;
    height: 21px;
    filter: blur(8px);
  }
  50% {
    width: 50px;
    height: 31px;
    filter: blur(12px);
  }
  100% {
    width: 10px;
    height: 21px;
    filter: blur(8px);
  }
}
/* svg colors */
.svg-success svg path {
  fill: var(--success);
}

.svg-danger svg path {
  fill: var(--danger);
}

.badge {
  border-radius: 6px;
  display: flex;
  align-items: center;
  width: max-content;
}
.badge.bg-primary {
  margin-top: 0.3rem;
  margin-left: -0.7rem;
}

.popover {
  border-radius: 16px;
  border-color: var(--light);
}
.popover .popover-body {
  padding: 12px 16px;
  font-family: var(--font-family-poppins), sans-serif;
}
.popover .popover-arrow::before {
  border-top-color: var(--light);
}

.grid-social {
  display: flex;
  column-gap: 1.875rem;
}
.grid-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.grid-social a svg {
  width: 24px;
  height: 24px;
}
.grid-social a svg path {
  fill: var(--dark);
}
.grid-social a:hover svg path {
  fill: var(--primary);
}

.hero {
  /*    .badge-hero-aliance {
      font-size: 20px;
      font-weight: 600;
      border-radius: 55px;
      background-color: var(--white);
      box-shadow: 0 0 11px 10px rgba(0, 0, 0, 0.04);
      padding: 20px 60px;
      width: max-content;
  } */
}
.hero .hero-container {
  padding: 110px 30px 30px 30px;
  margin-top: -110px;
  background-image: url(../images/landing/bg-solution.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 40px;
}
.hero .hero-container .text-grid {
  display: flex;
  gap: 65px;
  padding-left: 60px;
  padding-right: 60px;
  margin-top: 120px;
  margin-bottom: 100px;
}
.hero .hero-container .text-grid .text-hero {
  max-width: 580px;
}
.hero .hero-container .text-grid .text-hero-items {
  width: 100%;
}
.hero .pos-hero {
  flex-grow: 1;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: -450px;
}
.hero .pos-hero img {
  width: 100%;
}

.about {
  margin-top: 170px;
}
.about .badge-comerce-type {
  width: 100%;
  padding: 18px;
  text-align: center;
  border-radius: 55px;
  background-color: var(--white);
  box-shadow: 0 0 15px 2px rgba(69, 58, 216, 0.12);
}

.solutions {
  margin-top: 220px;
}
.solutions .solutions-grid {
  margin-top: 70px;
  padding: 60px 45px;
  border-radius: 0 85px 0 85px;
  background-image: url(../images/landing/bg-solution.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.solutions .solutions-grid .item-solution {
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 55px;
  background-color: var(--white);
  margin-bottom: 30px;
}
.solutions .solutions-grid .item-solution h4 {
  font-size: 16px;
  font-weight: 500;
}
.solutions .btn-solution {
  text-align: center;
  margin-top: -28px;
}

.brands {
  margin-top: 150px;
  text-align: center;
}
.brands .brands-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}
.brands .brands-grid .logo-brand {
  width: 90px;
  height: 90px;
}
.brands .brands-grid .logo-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reviews {
  margin-top: 150px;
  margin-bottom: 180px;
}
.reviews .card-review {
  padding: 30px 24px;
  border-radius: 30px;
  background-color: var(--white);
  box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--gray-light);
}
.reviews .card-review .card-review-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: var(--dark);
  border-radius: 100%;
  left: 0;
  right: 0;
  margin: 0;
}
.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  font-size: 15px;
  color: var(--white);
}

.controls-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 767.98px) {
  .hero .hero-container .text-grid {
    margin-bottom: 250px;
  }
  .hero .badge-hero-aliance {
    display: none;
  }
  .sidebar-autogestion {
    padding: 20px !important;
  }
  .commerce-type {
    flex-direction: column;
  }
}
@media (max-width: 991.98px) {
  .hero .hero-container .text-grid {
    flex-direction: column;
    gap: 30px;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 60px;
    margin-bottom: 190px;
  }
  .hero .badge-hero-aliance {
    position: relative;
    z-index: 1;
  }
  .hero .pos-hero {
    max-width: 344px;
  }
  .about {
    margin-top: 270px;
  }
  .solutions {
    margin-top: 170px;
  }
  .grid-autogestion {
    flex-direction: column;
  }
  .sidebar-autogestion {
    max-width: none !important;
    min-height: auto;
  }
  .sidebar-autogestion h2 {
    font-size: 30px;
  }
  .sidebar-autogestion .header-autogestion .logo {
    margin-bottom: 40px;
  }
  .sidebar-autogestion .header-autogestion .progress-status {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
  }
  .sidebar-autogestion .header-autogestion .progress-status .item-progress-status {
    display: flex;
    flex-grow: 1;
  }
  .sidebar-autogestion .header-autogestion .progress-status .item-progress-status .line-status {
    width: 100%;
    height: 2px;
    margin: auto 3px;
  }
  .sidebar-autogestion .header-autogestion .progress-status .item-progress-status:first-child {
    flex-grow: 0;
  }
  .sidebar-autogestion .footer-autogestion {
    display: none;
  }
  .content-autogestion {
    margin-top: 45px;
  }
  .title-status {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .sidebar-autogestion {
    padding: 40px;
    max-width: 360px;
  }
}
@media (min-width: 1399.98px) {
  .container {
    max-width: 1380px;
  }
}/*# sourceMappingURL=styles-landing.css.map */