.carrito-panel {
    width: calc(100% - 10px);
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin: 20px 5px;
}

/* TABLA */

.carrito-tabla {
    width: 100%;
    max-width: 592px;
    height: fit-content;
    margin-left: auto;
    padding: 20px 16px 100px 16px;
    text-align: left;
    border-radius: var(--BRadius_Tabla);
    border: var(--Border__Tabla);
}

.carrito-tabla--desglose {
    max-width: 384px;
    padding: 20px 11px;
    margin-right: auto;
    margin-left: 0;
}

.carrito-tabla .carrito-tabla__titulo {
    font-size: 25px;
    font-weight: 700;
    color: var(--Element_Text__Dark);
    margin: 0;
    margin-bottom: 25px;
}

.carrito-tabla--desglose .carrito-tabla__titulo {
    color: var(--Element_Text);
}

.carrito-tabla__columna {
    margin: auto 5px;
    flex-basis: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
}

.carrito-tabla__columna--precio {
    color: var(--Primary_Color_Oscured);
    font-size: 22px;
    font-weight: 500;
}

.carrito-tabla__borrar {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: white;
    border-radius: 35px;
    font-size: 18px;
    color: var(--Primary_Color);
    transition: 0.3s all ease;
    padding: 2px 7px;
    cursor: pointer;
}

.carrito-tabla__borrar:hover {
    color: white;
    background-color: var(--Primary_Color);
}

.producto-card--carrito {
    border-left: none;
    border-right: none;
    border-bottom: none;
    box-shadow: none;
    border-radius: 0;
    max-width: 90%;
    height: fit-content;
    margin: auto;
    background: transparent;
}

.carrito-tabla__carrito-li {
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    transition: 0.3s;
}

.carrito-li--titulo {
    font-size: 25px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.03em;
    width: 100%;
    padding: 25px 30px;
    color: #414042;
}

.carrito-li--fila {
    width: 100%;
    border-bottom: 1px solid #c4c4c4;
    position: relative;
}

.carrito-li--fila-unica {
    width: 100%;
    text-align: center;
}

.carrito-li--fila-unica-h3 {
    width: 100%;
    color: #c4c4c4;
    text-align: center;
}

.carrito-producto {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.carrito-producto__foto {
    width: 65px;
    height: 65px;
    border-radius: var(--BRadius_Card);
}

.carrito-producto__nombre {
    font-size: 14px;
    font-weight: 500;
}

.carrito-producto__marca {
    font-size: 10px;
    color: #777777;
}

.carrito-producto:hover {
    color: var(--Primary_Color_Dark);
}

.carrito-cantidad {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #8d8d8d;
    padding: 3px;
    gap: 5px;
    border-radius: 5px;
}

.carrito-cantidad {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #8d8d8d;
    padding: 3px;
    gap: 5px;
    border-radius: 5px;
}

.carrito-cantidad__button {
    width: 20px;
    height: 20px;
    font-size: 10px;
    color: white;
    border-radius: 5px;
    background-color: var(--Primary_Color_Dark);
}

.carrito-cantidad__input {
    height: 20px;
    width: 50px;
    padding: 0;
    text-align: center;
    color: white !important;
    border-radius: 5px;
    font-size: 14px;
    background-color: transparent;
}


/* DESGLOSE */

.carrito-separador {
    width: 100%;
    border-top: 1px solid var(--Primary_Color);
    margin: 15px auto;
}

.carrito-desglose {
    width: 100%;
    max-width: 400px;
    /* margin-left: auto; */
    margin: auto;
    padding: 10px;
    border-radius: 20px;
    border: 2px solid var(--Primary_Color);
}

.carrito-desglos__span-titulo {
    font-size: 20px;
    color: #3d3d3d;
    font-weight: 500;
    line-height: 3;
}

.carrito-desglose__detalle {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.carrito-desglose__titulo {
    font-size: 19px;
    color: #3d3d3d;
    font-weight: 400;
    line-height: 1.5;
}

.carrito-desglose__texto {
    font-size: 17px;
    color: #3f3f3f;
    font-weight: 400;
}

.carrito-desglose__accion {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.carrito-desglose__button--inactivo {
    width: fit-content;
    padding: 5px 10px;
    text-transform: capitalize;
    background-color: #47525d;
    color: #2C2B2D;
    font-size: 16px;
    border-radius: 20px;
    margin: auto;
    pointer-events: none;
}

.carrito-desglose__button {
    width: fit-content;
    padding: 5px 10px;
    text-transform: capitalize;
    background-color: var(--Primary_Color);
    color: #2C2B2D;
    font-size: 16px;
    border-radius: 20px;
    margin: auto;
}

.carrito-desglose__button--sin-sombra {
    box-shadow: none;
}


/* OPCIONES CHECK */

.carrito-check {
    display: grid;
    grid-template-columns: 1fr max-content;
    gap: 10px;
    padding: 10px;
    max-width: 1300px;
    margin: auto;
    min-height: 85vh;
}

.carrito-check__detalles {
    width: 300px;
    height: 100%;
    margin: auto;
    border-radius: var(--BRadius_Card);
    background-color: white;
    box-shadow: var(--Sombra_Cards_Small);
}

.carrito-check__desglose {
    width: 100%;
    top: 85px;
    padding: 15px;
    position: sticky;
}

.carrito-check__opciones {
    width: 100%;
}

.carrito-check__envio {
    width: 100%;
}

.carrito-check__Titulo {
    width: 100%;
    line-height: 2.5;
    font-size: 22px;
    color: #303030;
    font-weight: 400;
}

.cotizacion-carrito__cotizacion {
    width: 100%;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cotizacion-carrito__info {
    flex-basis: 100%;
}

.cotizacion-carrito__nombre {
    font-weight: 400;
    color: #303030;
    font-size: 20px;
    line-height: 1.5;
}

.cotizacion-carrito__detalle {
    font-weight: 400;
    color: #7c7c7c;
    font-size: 15px;
}

.domicilio-opcion-carrito {
    width: 100%;
    padding: 15px 25px;
    border-radius: var(--BRadius_Card);
    background-color: white;
    box-shadow: var(--Sombra_Cards_Small);
    display: flex;
    align-items: center;
    gap: 15px;
}

.domicilio-opcion-carrito__icon {
    color: var(--Primary_Color_Dark);
    border-radius: 50%;
    background-color: #e9e9e9;
    display: flex;
    text-align: center;
    width: 45px;
    height: 45px;
}

.domicilio-opcion-carrito__info {
    flex-basis: 75%;
}

.domicilio-opcion-carrito__nombre {
    font-weight: 400;
    color: #303030;
    font-size: 20px;
    line-height: 1.5;
}

.domicilio-opcion-carrito__direccion {
    font-weight: 400;
    color: #7c7c7c;
    font-size: 15px;
}

.domicilio-opcion-carrito__cambiar {
    width: max-content;
    font-weight: 400;
    font-size: 15px;
    color: var(--Primary_Color_Dark);
    white-space: nowrap;
}

.domicilio-opcion-carrito__cambiar:hover {
    color: var(--Primary_Color);
}

.cotizacion-carrito {
    width: 100%;
    border-radius: var(--BRadius_Card);
    background-color: white;
    box-shadow: var(--Sombra_Cards_Small);
}

.cotizacion-carrito__cabecera {
    width: 100%;
    min-height: 80px;
    padding: 15px 25px;
    border-bottom: 1px solid #c2c2c2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cotizacion-carrito__titulo {
    font-weight: 400;
    color: #303030;
    font-size: 20px;
    line-height: 1.5;
}

.carrito-productos {
    width: 100%;
    padding: 15px 25px;
    border-radius: var(--BRadius_Card);
    background-color: white;
    box-shadow: var(--Sombra_Cards_Small);
}

.carrito-productos__producto {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px auto;
}

.carrito-productos__info {
    flex-basis: 100%;
}

.carrito-productos__nombre {
    font-weight: 400;
    color: #303030;
    font-size: 21px;
    line-height: 1.5;
    display: block;
}

.carrito-productos__texto {
    font-weight: 400;
    color: #7c7c7c;
    font-size: 14px;
    display: block;
}

.domicilio-lista {
    width: 100%;
    text-align: left;
    padding: 5px;
}

.domicilio-lista__fila {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: left;
    padding: 10px 15px;
    border-radius: var(--BRadius_Card);
    cursor: pointer;
}

.domicilio-lista__fila:hover {
    background-color: #f7f7f7;
}

.domicilio-lista__icon {
    color: var(--Primary_Color_Dark);
    border-radius: 50%;
    background-color: #e9e9e9;
    display: flex;
    text-align: center;
    width: 45px;
    height: 45px;
}

.domicilio-lista__info {
    flex-basis: 80%;
}

.domicilio-lista__nombre {
    font-weight: 400;
    color: #303030;
    font-size: 20px;
    line-height: 1;
}

.domicilio-lista__direccion {
    font-weight: 400;
    color: #7c7c7c;
    font-size: 15px;
}

.domicilio-lista__editar {
    width: max-content;
    font-weight: 400;
    font-size: 15px;
    color: var(--Primary_Color_Dark);
    white-space: nowrap;
    text-align: left;
    margin: 0;
    padding: 5px;
}

.domicilio-lista__editar:hover {
    color: var(--Primary_Color);
}

.carrito-metodo {
    width: 100%;
    padding: 15px 25px;
    border-radius: var(--BRadius_Card);
    background-color: white;
    box-shadow: var(--Sombra_Cards_Small);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.carrito-metodo--unshadow {
    box-shadow: unset;
}

.carrito-metodo__icon {
    color: var(--Primary_Color_Dark);
    border-radius: 50%;
    display: flex;
    text-align: center;
    background-color: #e9e9e9;
    width: 45px;
    height: 45px;
}

.carrito-metodo__tarjeta {
    font-weight: 400;
    color: #303030;
    flex-basis: 90%;
    font-size: 18px;
}

.carrito-metodo__tarjeta-info {
    font-size: 15px;
    color: #a1a0a0;
    display: block;
    font-weight: 400;
}

.carrito-metodo__check {
    padding-bottom: 15px;
}

.carrito-metodo__agregar {
    color: var(--Primary_Color_Dark);
    font-size: 16px;
    line-height: 2;
    display: block;
}

.carrito-metodo__agregar:hover {
    color: var(--Primary_Color);
}


/* RADIOBUTTON */

.RadioButon {
    font-family: arial;
    display: block;
    position: relative;
    padding-left: 30px;
    /* margin-bottom: 3px; */
    /* padding-top: 5px; */
    cursor: pointer;
    font-size: 16px;
    align-items: center;
    display: flex;
}

.RadioButon input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.RadioButon_indicator {
    position: absolute;
    top: 0px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #707070;
    border: 0px outset #000000;
    border-radius: undefinedpx;
}

.RadioButon:hover input~.RadioButon_indicator,
.RadioButon input:focus~.RadioButon_indicator {
    background: var(--Secondary_Color_Dark);
}

.RadioButon input:checked~.RadioButon_indicator {
    background: var(--Secondary_Color_Dark);
    border: 1px solid var(--Secondary_Color_Dark);
}

.RadioButon:hover input:not([disabled]):checked~.RadioButon_indicator,
.RadioButon input:checked:focus~.RadioButon_indicator {
    background: var(--Secondary_Color_Dark);
    border: 1px solid var(--Secondary_Color_Dark);
}

.RadioButon input:disabled~.RadioButon_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.RadioButon_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}

.RadioButon input:checked~.RadioButon_indicator:after {
    display: block;
}


/* .RadioButon-radio {
    display: flex;
    align-items: center;
    align-self: center;
} */

.RadioButon-radio .RadioButon_indicator {
    border-radius: 11%;
}

.RadioButon-radio .RadioButon_indicator:after {
    left: 2px;
    top: 2px;
    height: 14px;
    width: 14px;
    border-radius: 3px;
    background: var(--Primary_Background);
    transition: background 250ms;
}

.RadioButon-radio input:disabled~.RadioButon_indicator:after {
    background: #7b7b7b;
}


/* CC */

.form-container .field-container:first-of-type {
    grid-area: name;
}

.form-container .field-container:nth-of-type(2) {
    grid-area: number;
}

.form-container .field-container:nth-of-type(3) {
    grid-area: expiration;
}

.form-container .field-container:nth-of-type(4) {
    grid-area: security;
}

.field-container input {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.field-container {
    position: relative;
}

.form-container {
    display: grid;
    grid-column-gap: 10px;
    grid-template-columns: auto auto;
    grid-template-rows: 90px 90px 90px;
    grid-template-areas: "name name""number number""expiration security";
    padding: 20px;
    color: #707070;
}

.form-container .inputmessage {
    bottom: 40px;
    font-size: 12px;
    left: -5px;
}

input {
    margin-top: 3px;
    padding: 15px;
    font-size: 16px;
    width: 100%;
}

.ccicon {
    height: 38px;
    position: absolute;
    right: 6px;
    top: calc(50% - 37px);
    width: 60px;
}


/* CREDIT CARD IMAGE STYLING */

.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

.container {
    width: 100%;
    max-width: 400px;
    max-height: 251px;
    height: 54vw;
    padding: 20px;
}

#ccsingle {
    position: absolute;
    right: 15px;
    top: 20px;
}

#ccsingle svg {
    width: 100px;
    max-height: 60px;
}

.creditcard svg#cardfront,
.creditcard svg#cardback {
    width: 100%;
    -webkit-box-shadow: 1px 5px 6px 0px black;
    box-shadow: 1px 5px 6px 0px black;
    border-radius: 22px;
}

#generatecard {
    cursor: pointer;
    float: right;
    font-size: 12px;
    color: #fff;
    padding: 2px 4px;
    background-color: #909090;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}


/* CHANGEABLE CARD ELEMENTS */

.creditcard .lightcolor,
.creditcard .darkcolor {
    -webkit-transition: fill .5s;
    transition: fill .5s;
}

.creditcard .lightblue {
    fill: #03A9F4;
}

.creditcard .lightbluedark {
    fill: #0288D1;
}

.creditcard .red {
    fill: #ef5350;
}

.creditcard .reddark {
    fill: #d32f2f;
}

.creditcard .purple {
    fill: #ab47bc;
}

.creditcard .purpledark {
    fill: #7b1fa2;
}

.creditcard .cyan {
    fill: #26c6da;
}

.creditcard .cyandark {
    fill: #0097a7;
}

.creditcard .green {
    fill: #66bb6a;
}

.creditcard .greendark {
    fill: #388e3c;
}

.creditcard .lime {
    fill: #d4e157;
}

.creditcard .limedark {
    fill: #afb42b;
}

.creditcard .yellow {
    fill: #ffeb3b;
}

.creditcard .yellowdark {
    fill: #f9a825;
}

.creditcard .orange {
    fill: #ff9800;
}

.creditcard .orangedark {
    fill: #ef6c00;
}

.creditcard .grey {
    fill: #bdbdbd;
}

.creditcard .greydark {
    fill: #616161;
}


/* FRONT OF CARD */

#svgname {
    text-transform: uppercase;
}

#cardfront .st2 {
    fill: #FFFFFF;
}

#cardfront .st3 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 600;
}

#cardfront .st4 {
    font-size: 54.7817px;
}

#cardfront .st5 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 400;
}

#cardfront .st6 {
    font-size: 33.1112px;
}

#cardfront .st7 {
    opacity: 0.6;
    fill: #FFFFFF;
}

#cardfront .st8 {
    font-size: 24px;
}

#cardfront .st9 {
    font-size: 36.5498px;
}

#cardfront .st10 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 300;
}

#cardfront .st11 {
    font-size: 16.1716px;
}

#cardfront .st12 {
    fill: #4C4C4C;
}


/* BACK OF CARD */

#cardback .st0 {
    fill: none;
    stroke: #0F0F0F;
    stroke-miterlimit: 10;
}

#cardback .st2 {
    fill: #111111;
}

#cardback .st3 {
    fill: #F2F2F2;
}

#cardback .st4 {
    fill: #D8D2DB;
}

#cardback .st5 {
    fill: #C4C4C4;
}

#cardback .st6 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 400;
}

#cardback .st7 {
    font-size: 27px;
}

#cardback .st8 {
    opacity: 0.6;
}

#cardback .st9 {
    fill: #FFFFFF;
}

#cardback .st10 {
    font-size: 24px;
}

#cardback .st11 {
    fill: #EAEAEA;
}

#cardback .st12 {
    font-family: 'Rock Salt', cursive;
}

#cardback .st13 {
    font-size: 37.769px;
}


/* FLIP ANIMATION */

.container {
    perspective: 1000px;
}

.creditcard {
    width: 100%;
    max-width: 400px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: -webkit-transform 0.6s;
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
    cursor: pointer;
}

.creditcard .front,
.creditcard .back {
    position: absolute;
    width: 100%;
    max-width: 400px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    color: #47525d;
}

.creditcard .back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.creditcard.flipped {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}


@media screen and (max-width: 850px) {
    .carrito-panel {
        flex-direction: column;
    }

    .carrito-tabla {
        margin: auto;
    }
}

@media screen and (max-width: 500px) {
    .carrito-panel {
        width: 100%;
        margin: 0;
        justify-content: center;
        margin: 10px 0;
    }

    .carrito-tabla {
        padding: 10px 5px;
        border-radius: 10px;
        overflow-y: scroll;
    }

    .producto-card--carrito {
        max-width: 100%;
    }

    .carrito-tabla .carrito-tabla__titulo {
        font-size: 16px;
    }

    input {
        font-size: 12px;
    }

    .carrito-check {
        display: flex;
        flex-direction: column;
        width: 100vw;
    }

    .carrito-check__Titulo {
        font-size: 16px;
    }

    .cotizacion-carrito__nombre {
        font-size: 14px;
    }

    .domicilio-opcion-carrito {
        flex-direction: column;
    }

    .carrito-productos__producto {
        flex-direction: column;
    }

    .carrito-productos__nombre {
        font-size: 12px;
    }

    .carrito-check__detalles {
        width: 100%;
    }

    .carrito-productos__info {
        width: 100%;
    }


    .carrito-metodo__tarjeta {
        font-size: 14px;
    }
}


.texto-politicas {
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 11px;
}

.texto-politicas a {
    color: inherit;
    text-decoration: underline;
    font-weight: bold;
}
