:root {
    --gray: #828db1;
}

.gradient__decoration-top,
.gradient__decoration-bottom {
    position: absolute;
    left: 10vh;
    right: 10vh;
    z-index: -1;
}

.gradient__decoration-top {
    top: 0;
    height: 50vh;
    border-radius: 0 0 40px 40px;
}
body .gradient__decoration-bottom {
    bottom: 0;
    height: 40vh;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #333333 0%, #000000 100%);
    z-index: 0;
}
.header {
    align-items: center;
    width: 100%;
}
.maincontent {
    z-index: 1;
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0px 3px 6px #0000000d;
    overflow-y: auto;
    max-height: 80vh;
    min-height: 422px;
    & .selectedMethod {
        position: absolute;
        right: 38px;
        top: 0;
        bottom: 0;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        width: fit-content;
        & .selectedMethod__content {
            animation: opacityMethodIn 0.2s ease-in;
            padding: 30px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            min-width: 330px;
            max-width: 400px;
            width: 100%;
            border-radius: 22px;
            box-shadow: 0px 3px 6px #00000029;
            color: #333;
            font-size: 14px;
            gap: 12px;
            & .selectedMethod__left {
                line-height: 16px;
                & .selectedMethod__title {
                    font-weight: bold;
                }
            }
        }
    }
}

.header__infoMerchant {
    display: flex;
    column-gap: 12px;
    color: #fff;
    align-items: center;
    & .header__nameMerchant {
        padding: 8px 28px;
        border-radius: 40px;
        font-weight: bold;
        min-height: 40px;
        min-width: 80px;
    }
}
.header__contryContainer {
    color: #707070;
    background: white;
    padding: 4px 12px;
    border-radius: 40px;
    font-weight: bold;
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.footer__image {
    height: 34px;
}

.footer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    & .footer__information {
        display: flex;
        justify-content: space-between;
        align-items: center;
        column-gap: 12px;

        & .footer__copy,
        & .footer__images {
            padding: 8px 60px;
        }

        & .footer__copy {
            font-size: 14px;
            & .link-footer {
                color: #fff;
                font-weight: bold;
            }
        }
        & .footer__images {
            display: flex;
            gap: 32px;
            border-left: 1px solid #707070;
        }
    }
}

.information__value {
    font-size: 22px;
    & .information__amountText {
        font-weight: bold;
    }
}
.information__descriptionContainer {
    max-width: 50%;
    align-items: center;
    column-gap: 12px;
    &.information__description {
        font-size: 13px;
    }
}
.information {
    position: relative;
}
.information__pw {
    display: none;
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0px;
    right: 40px;
    & img {
        height: 100%;
    }
}

.titleStep__text {
    font-size: 14px;
    font-weight: bold;
    color: var(--gray);
    text-align: center;
}

body main .custom-select {
    color: #fff !important;
    border: none !important;
    border-radius: 100px !important;
    background: #828db1;
    text-align: center;
}

.custom-select {
    padding: 0.375rem 0 !important;
}

select option {
    background: white;
    color: #828db1;
}

.secure__container {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    bottom: -40px;
    & .secure__text {
        z-index: 2;
        font-size: 14px;
        color: #fff;
        & span {
            font-weight: bold;
        }
    }
}

.min-height {
    min-height: 245px !important;
}
.min-height-370 {
    min-height: 370px !important;
}

.referencia {
    display: flex !important;
    color: #fff;
}

.inputReDesign input::placeholder,
.inputReDesign input {
    font-weight: 400 !important;
}

@keyframes opacityMethodIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes opacityMethodOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@media (max-width: 1440px) {
    main {
        padding: 0 2vh;
    }
}
@media (max-width: 1220px) {
    main {
        padding: 0 4vh;
    }
    .gradient__decoration-top {
        left: 8vh;
        right: 8vh;
    }
}

@media (max-width: 1024px) {
    .gradient__decoration-top {
        left: 6vh;
        right: 6vh;
    }
    body .header {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        & .header__logo {
            display: flex;
            justify-content: center;
        }
        .header__infoMerchant {
            flex-wrap: wrap;
            justify-content: center;
        }
        .header__infoMerchant & .header__contryContainer {
            flex-grow: 1;
        }
        .header__contryContainer {
            margin: 0% auto;
        }
    }
    .maincontent {
        & .selectedMethod {
            & .selectedMethod__content {
                display: none;
            }
        }
    }
}

@media (max-width: 768px) {
    .gradient__decoration-top {
        left: 4vh;
        right: 4vh;
    }
}

@media (max-height: 740px) {
    body .gradient__decoration-bottom {
        bottom: -108px;
        height: 60vh;
    }
}
@media (max-height: 590px) {
    body .gradient__decoration-bottom {
        bottom: calc(-25vh + -20px);
    }
}

@media (max-height: 490px) {
    .containerMain {
        padding: 48px 0;
    }
    body .gradient__decoration-bottom {
        bottom: -300px;
    }
    .gradient__decoration-top {
        min-height: 200px;
    }
}
@media (max-height: 300px) {
    body .gradient__decoration-bottom {
        bottom: -400px;
    }
}
@media (min-height: 700px) and (max-height: 1060px) {
    body .gradient__decoration-bottom {
        bottom: 0px;
    }
}

@media (min-height: 1060px) {
    body .gradient__decoration-bottom {
        bottom: 0px;
    }
}
