.code-section {
    display: flex;
    width: 100%;
    margin-top: .7em;
    justify-content: center;
    margin-bottom: 5em;
}

.code-background {
    background-color: #fff;
    width: 93%;
    height: auto;
    border-radius: 12px;
    padding: 0 5px 30px 5px;
}

.final-background {
    background-color: #4B4B4B;
    width: 93%;
    height: auto;
    border-radius: 12px;
    padding: 0 5px 30px 5px;
}

.image-logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 30px;
}

.info-container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 15px;
    color: #69727d;
    font-weight: 600;
    font-family: "Roboto", Sans-serif;
    font-size: 26px;
    line-height: 1em;
}

.codigo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.image-logo {
    width: 50%;
}

.input-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.confirm-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.codigo-label {
    font-size: 26px;
    color: #000;
    font-weight: 600;
    font-family: "Roboto", Sans-serif;
    border: none;
    background: #fff;
    text-align: center;
}

.codigo-input {
    border: 1px solid #69727d;
    border-radius: 9px;
    font-size: 15px;
    padding: .5rem 1rem;
    min-height: 26px;
    color: #7a7a7a;
}

.confirm-button {
    background-color: #258532;
    color: #fff;
    border-radius: 10px;
    min-height: 26px;
    font-size: 15px;
    padding: 12px 24px;
    box-shadow: none;
    border: none;
}

.info-message {
    width: 95%;
    margin: 1rem auto 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: "Red Hat Display", Sans-serif;
    line-height: 1;
}

.info-message .title {
    font-size: 1.75em;
    font-weight: bolder;
}

.info-message .subtitle {
    font-size: 1.25em;
}

.warning-message {
    width: 95%;
    margin: 0.55rem auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #787878;
    color: #fff;
    font-family: "Red Hat Display", Sans-serif;
    font-weight: 600;
    padding: 0.75rem 0;
    border-radius: 17px;
    font-size: 20px;
}

.warning-message p {
    margin-bottom: 0;
}

#container-cidade {
    width: 75%;
    margin: 0 auto;
    padding-bottom: 1rem;
    color: #a1a0a1;
    display: inline-table;
    font-size: 15px;
    height: 13px;
    position: inherit;
    font-family: "Montserrat", Sans-serif;
    text-align: center;
    font-weight: 300;
    line-height: 1.3;
}

.message-box {
    margin-top: 0.5rem;
    display: flex;
    width: 90%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    background-color: #4B4B4B;
    text-align: center;
    border-radius: 19px;
    color: white;
    font-family: "Red Hat Display", Sans-serif;
    padding: 0.75rem 0.5rem;
}

.action-button {
    display: block;
    text-align: center;
    width: 90%;
    margin: 1rem auto 0 auto;
    font-family: "Red Hat Display", Sans-serif;
    font-weight: 700;
    background-color: #00D71A;
    color: white;
    text-decoration: none;
    border-radius: 1.5rem;
    border: none;
    outline: none;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    animation: pulse 1.5s infinite
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.075, 1.075, 1.075);
        transform: scale3d(1.075, 1.075, 1.075);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.cut-price {
    text-decoration: line-through;
    color: #E85C52;
    font-weight: bolder;
}

.current-price {
    color: #03E93F;
    font-weight: bolder;
}