body,
main {
    background-color: #f2f2f2
}

.containerMovil>div,
.containerMovil>div>iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px
}

:root {
    --color1: rgb(185, 232, 255);
    --color2: rgb(17, 142, 209);
    --color3: rgb(0, 85, 165);
    --color4: rgb(26, 121, 185);
    --color5: rgb(0, 86, 149);
    --color6: rgb(05, 103, 158);
    --color7: rgb(20, 117, 181);
    --color8: rgb(07, 98, 172);
    --color9: rgb(0, 142, 219);
    --color10: rgb(0, 72, 157);
    --color11: #e0ded1;
    --color12: #dad2bb
}

main {
    padding-top: 2%;
    padding-bottom: 2%;
    display: flex;
    overflow: hidden
}

.secctionMovil {
    width: 100%
}

.containerMovil {
    width: 400px;
    height: 667px;
    padding: 1%;
    margin: 0 5px;
    background: #000;
    border-radius: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .4)
}

.containerMovil>div {
    background-color: #fff
}

.bannerView {
    font-family: Roboto, sans-serif;
    text-align: center;
    color: var(--color5);
    padding-left: 20%
}

.btnReloadCart {
    margin: auto
}

.btnReloadCart>button {
    background-color: var(--color2);
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .5);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease-in-out
}

.btnReloadCart>button:hover {
    background-color: var(--color5);
    transition: .2s ease-in-out;
    transform: scale(1.2)
}

.separatorHr {
    border: 2px solid var(--color2);
    margin: .5em 10% 3%;
    border-radius: 2px
}

.rotacion {
    animation: .5s linear rotate
}

@keyframes rotate {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.containerMoviles {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap
}

@media (max-width:425px) {
    .containerMovil {
        width: 90%;
        height: 600px;
        margin: 1% 0
    }

    .containerMovil>div {
        border-radius: 20px
    }

    .containerMovil>div>iframe {
        border-radius: 14px
    }

    .bannerView {
        margin-block-start: 0.5em;
        margin-block-end: 0.5em
    }
}

.dNone {
    display: none !important
}