.wizard .content {
    min-height: auto;
    overflow: hidden;
}

#AlgoCloudWizard-p-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 1.6rem;
}

textarea.form-control {
    height: 4.2rem !important;
}

.help-info {
    margin-top: 0.6rem;
}

.wizard ul {
    display: flex;
    gap: 0.8rem;
}

.wizard > .steps > ul > li {
    border-radius: 0.6rem;
}

.wizard .steps a {
    margin: 0;
    height: 100%;
    font-size: 1.4rem;
    line-height: 1.6rem;
    padding: 1.4rem 1.4rem 1.4rem 0;
    border-radius: 0.6rem;
}

.wizard .steps a:focus {
    border-radius: 0.6rem;
}

.wizard > .steps a:hover, .wizard > .steps a:active {
    padding: 1.4rem 1.4rem 1.4rem 0;
    margin: 0;
    border-radius: 0.6rem;
}

.wizard > .actions a:hover, .wizard > .actions a:active {
    border-radius: 0.6rem;
}

.wizard > .actions {
    margin-top: 1.2rem;
}

.wizard > .actions a {
    border-radius: 0.6rem;
}

.section > *:first-child {
    margin: 0;
}

.card {
    margin-bottom: 0;
}

.card .card-body {
    padding-bottom: 1.2rem;
}

html {
    font-size: 62.5%;
}

/* body */
body {
    position: relative;
}

#app {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100dvh;
}

/* main */
.main {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.main > section {
    flex-basis: 75%;
}

.main > aside {
    flex-basis: 25%;
}

/* wrapper */
.wrapper {
    width: 100%;
    margin-inline: auto;
    padding: 1.2rem 4.8rem;
    position: relative;
}

/* header */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;

    background: white;
    padding: 2.4rem;
    border-radius: 0.8rem;
    border-top: 0.6rem solid #6777ef;
    box-shadow: 0 0.4rem 1.6rem 0 rgba(0, 0, 0, 0.1);
}

.header__title,
.header__caption {
    text-align: center;
    margin: 0;
}

.header__title {
    font-size: 2rem;
}

.header__caption {
    font-size: 1.4rem;
    font-weight: 500;
    max-width: 90rem;
}

/* receipt */
.receipt {
    position: relative;
    height: 100%;
    margin-bottom: 3rem;
    border-radius: 1.2rem;
    padding: 1.6rem;
    box-shadow: 0 0.46875rem 2.1875rem rgba(90, 97, 105, 0.1), 0 0.9375rem 1.40625rem rgba(90, 97, 105, 0.1), 0 0.25rem 0.53125rem rgba(90, 97, 105, 0.12), 0 0.125rem 0.1875rem rgba(90, 97, 105, 0.1);
}

.receipt__header {
    display: flex;
    gap: 0.8rem;
    justify-content: center;

    margin: -1.6rem -1.6rem 1.6rem -1.6rem;
    padding-block: 1.2rem;
    background-color: #6777ef;

    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
}

.receipt__header h2 {
    font-size: 2.2rem;
    margin-bottom: 0;
}

.receipt__data {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.8rem;
}

.receipt__product,
.receipt__package,
.receipt__software-name {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 1.6rem;
}

.receipt__product p,
.receipt__package p,
.receipt__software-name p {
    color: var(--gray-dark);
    font-size: 1.3rem;
    margin-bottom: 0;
    line-height: 1.4rem;
}

.receipt__product p:first-child,
.receipt__package p:first-child,
.receipt__software-name p:first-child {
    display: flex;
    align-items: center;
    gap: 0.8rem;

    font-weight: 600;
}

.receipt__price {
    display: flex;
    gap: 0.4rem;
    justify-content: space-between;
    align-items: center;

    padding: 1.2rem;
    border-radius: 0.6rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    margin-top: 2.4rem;
    margin-bottom: 1.2rem;
}

.receipt__price p {
    line-height: 1.4rem;
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0;
    color: var(--gray-dark);
}

.receipt__price p:first-child {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}

/* footer */
.footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;

    background-color: white;
    box-shadow: 0 -0.2rem 1.2rem 0 rgba(0, 0, 0, 0.1);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0.8rem;
    padding: 1.8rem 4.8rem;
    margin-inline: auto;
}

.footer__social {
    display: flex;
    gap: 0.8rem;
    margin: 0 auto 0 0;
}

.footer__copyright {
    display: flex;
    align-items: center;
}

.footer__social,
.footer__copyright {
    margin: 0 auto 0 0;
}

.footer__address,
.footer__call {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin: 0;
    color: var(--gray-dark);
}

.footer__call a {
    color: var(--gray-dark);
}

.footer__icon {
    transition: all 0.2s;
    fill: var(--gray-dark);
}

.footer__icon--instagram:hover {
    cursor: pointer;
    fill: #f43f5e;
}

.footer__icon--whatsapp:hover {
    cursor: pointer;
    fill: #22c55e;
}

.footer__icon--telegram:hover {
    cursor: pointer;
    fill: #06b6d4;
}


/* breakpoints */

@media only screen and (max-width: 998px) {
    .main > section {
        flex-basis: 65%;
    }

    .main > aside {
        flex-basis: 35%;
    }

    .footer__copyright,
    .footer__address,
    .footer__call {
        font-size: 1.3rem;
    }
}

@media only screen and (max-width: 767px) {
    #AlgoCloudWizard-p-1 {
        grid-template-columns: 1fr;
    }

    textarea.form-control {
        height: auto;
    }

    .wrapper {
        padding-inline: 1.6rem;
    }

    .wizard .steps a {
        font-size: 1.2rem;
    }

    body {
        height: auto;
        overflow: auto;
    }

    #app {
        margin-bottom: 0;
    }

    .main {
        align-items: stretch;
        flex-direction: column;
    }

    .main > section,
    .main > aside {
        flex-basis: auto;
    }

    .header {
        margin-top: 2.4rem;
    }

    .header__title {
        font-size: 1.8rem;
    }

    .header__caption {
        font-size: 1.4rem;
    }

    .receipt {
        margin-bottom: 4rem;
    }

    .card {
        margin-inline: -1.5rem;
        margin-top: 0;
    }

    .footer {
        position: relative;
        box-shadow: none;
        display: block;
    }

    .footer__content {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1.2rem;
        text-align: center;
    }

    .footer__address {
        grid-row: 1 / 2;
    }

    .footer__call {
        grid-row: 2 / 3;
    }

    .footer__social {
        grid-row: 3 / 4;
    }

    .footer__copyright {
        grid-row: 4 / 5;
    }


    .footer__social,
    .footer__copyright {
        margin: 0 auto;
        flex-direction: row;
    }
}

@media only screen and (min-width: 1440px) {
    .wrapper {
        max-width: 140rem;
    }

    #app {
        margin-block: 0;
    }
}

@media only screen and (min-width: 1800px) {
    .wrapper {
        margin-bottom: 9.1rem;
    }

    .footer {
        display: block;
    }
}

/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3VzdG9tLmNzcyIsInNvdXJjZXMiOlsiY3VzdG9tLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9 */

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