body {
    background-color: #fff;
    size: 100%;
    width: auto;
    height: auto;
    color: RGBA(0,0,0,0.8);
}

main {
    margin: 0px 0 0px 0;
    background-color: #f6f6f6;
    min-height: 90%;
    padding-bottom: 50px;
}

.hidden {
    display: none
}

.h-40 {
    height: 40px;
}

/* Shopping Cart Section - Start */
.shopping-cart {
    padding-bottom: 10px;
    overflow:hidden;
    transition: max-height 5s ease-in-out;
}

.shopping-cart.hide {
    max-height: 0;
    pointer-events: none;
}

.shopping-cart .content {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
    background-color: white;
}

.shopping-cart .block-heading {
    padding-top: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.shopping-cart .block-heading p {
    text-align: center;
    max-width: 600px;
    margin: auto;
    color: RGBA(0,0,0,0.45);
}

.shopping-cart .block-heading h1,
.shopping-cart .block-heading h2,
.shopping-cart .block-heading h3 {
    margin-bottom: 1.2rem;
    color: #009EE3;
}

.shopping-cart .items {
    margin: auto;
}

.shopping-cart .items .product {
    margin-bottom: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.shopping-cart .items .product .info {
    padding-top: 0px;
    text-align: left;
}

.shopping-cart .items .product .info .product-details .product-detail {
    padding-top: 40px;
    padding-left: 40px;
}

.shopping-cart .items .product .info .product-details h5 {
    color: #009EE3;
    font-size: 19px;
}

.shopping-cart .items .product .info .product-details .product-info {
    font-size: 15px;
    margin-top: 15px;
}

.shopping-cart .items .product .info .product-details label {
    width: 50px;
    color: #009EE3;
    font-size: 19px;
}

.shopping-cart .items .product .info .product-details input {
    width: 80px;
}

.shopping-cart .items .product .info .price {
    margin-top: 15px;
    font-weight: bold;
    font-size: 22px;
}

.shopping-cart .summary {
    border-top: 2px solid #C6E9FA;
    background-color: #f7fbff;
    height: 100%;
    padding: 30px;
}

.shopping-cart .summary h3 {
    text-align: center;
    font-size: 1.3em;
    font-weight: 400;
    padding-top: 20px;
    padding-bottom: 20px;
}

.shopping-cart .summary .summary-item:not(:last-of-type) {
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.shopping-cart .summary .text {
    font-size: 1em;
    font-weight: 400;
}

.shopping-cart .summary .price {
    font-size: 1em;
    float: right;
}

.shopping-cart .summary button {
    margin-top: 20px;
    background-color: #009EE3;
}

@media (min-width: 768px) {

    .shopping-cart .items .product .info .product-details .product-detail {
        padding-top: 40px;
        padding-left: 40px;
    }

    .shopping-cart .items .product .info .price {
        font-weight: 500;
        font-size: 22px;
        top: 17px;
    }

    .shopping-cart .items .product .info .quantity {
        text-align: center;
    }

    .shopping-cart .items .product .info .quantity .quantity-input {
        padding: 4px 10px;
        text-align: center;
    }
}

/* Card Payment Section - Start */
.container__payment {
    display: block;
}

.payment-form {
    padding-bottom: 10px;
    margin-right: 15px;
    margin-left: 15px;
}

.payment-form.dark {
    background-color: #f6f6f6;
}

.payment-form .content {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
    background-color: white;
}

.payment-form .block-heading {
    padding-top: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.payment-form .block-heading p {
    text-align: center;
    max-width: 420px;
    margin: auto;
    color: RGBA(0,0,0,0.45);
}

.payment-form .block-heading h1,
.payment-form .block-heading h2,
.payment-form .block-heading h3 {
    margin-bottom: 1.2rem;
    color: #009EE3;
}

.payment-form .form-payment {
    border-top: 2px solid #C6E9FA;
    box-shadow: 0px 2px 10px rgb(0 0 0 / 37%);
    background-color: #ffffff;
    padding: 0;
    max-width: 1100px;
    margin: auto;
    border-radius: 20px;
}

.payment-form .title {
    font-size: 1em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0.8em;
    font-weight: 400;
    padding-bottom: 8px;
}

.payment-form .products {
    background-color: #cee3f5;
    padding: 25px;
}

.payment-form .products .item {
    margin-bottom: 1em;
}

.payment-form .products .item-name {
    font-weight: 500;
    font-size: 0.9em;
}

.item-name {
    display: flex;
    justify-content: space-between;
}

.payment-form .products .item-description {
    font-size: 0.8em;
    opacity: 0.6;
}

.payment-form .products .item p {
    margin-bottom: 0.2em;
}

.payment-form .products .price {
    float: right;
    font-weight: 500;
    font-size: 0.9em;
}

.payment-form .products .total {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    padding-top: 19px;
    font-weight: 500;
    line-height: 1;
}

.payment-form .payment-details {
    padding: 25px 25px 15px;
    height: 100%;
}

.payment-form .payment-details label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #8C8C8C;
    text-transform: uppercase;
}

.payment-form .payment-details button {
    margin-top: 0.6em;
    padding: 12px 0;
    font-weight: 500;
    background-color: #009EE3;
    margin-bottom: 10px;
}

.payment-form .date-separator {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
}

.payment-form a, .payment-form a:not([href]) {
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: #009ee3;
    cursor:pointer;
}

.payment-form a:not([href]):hover{
    color: #3483FA;
    cursor:pointer;
}

#loading-message {
    display: none;
    text-align: center;
    font-weight: 700;
}

footer {
    padding: 1.5% 10% 1% 10%;
    margin: 0 auto;
    position: relative;
}

#horizontal_logo {
    width: 150px;
    margin: 0;
}

footer p a {
    color: #009ee3;
    text-decoration: none;
}

footer p a:hover {
    color: #3483FA;
    text-decoration: none;
}


.payment-form .title {
    font-size: 1.2em;
}

.payment-form .products {
    padding: 20px;
    border-radius: 20px 0px 0px 20px;
}

.payment-form .products .item-name {
    font-size: 1em;
}

.payment-form .products .price {
    font-size: 1em;
}

.payment-form .payment-details {
    padding: 20px 0px 30px 45px;
}

.payment-form .payment-details button {
    margin-top: 1em;
    margin-bottom: 15px;
}

.footer_logo {
    margin: 0 0 0 0;
    width: 20%;
    text-align: left;
    position: absolute;
}

.footer_text {
    margin: 0 0 0 65%;
    width: 200px;
    text-align: left;
    position: absolute
}

footer p {
    padding: 1px;
    font-size: 13px;
    color: RGBA(0,0,0,0.45);
    margin-bottom: 0;
}



/* Payment Result Section - Start */
.container__result {
    display: none;
}

#fail-response, #success-response {
    display: none;
}

.validation-error {
    border-color: red;
}

#validation-error-messages p {
    color: red;
}

.form-check-input {
    --bs-form-check-bg: transparent;
    flex-shrink: 0;
    width: 2em;
    height: 2em;
    margin-top: .0875em;
    vertical-align: top;
    appearance: none;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 2px solid #a7acb2;
    border-radius: 50%;
    position: relative !important;
    margin-left: 20px !important;
    cursor: pointer;
}

.custom-option label {
    cursor: pointer !important;
    margin-bottom: 0px !important;
}

.form-check-input:checked {
    background-color: #696cff;
    border-color: #696cff;
    box-shadow: 0 .125rem .25rem 0 rgba(105, 108, 255, .4);
}

.custom-option.checked {
    border: 2px solid #696cff !important;
    margin: 0;
}

.custom-option {
    padding-left: 0;
    border: 1px solid #e4e6e8;
    border-radius: .375rem;
    margin: 1px;
    padding: 10px;
    cursor: pointer;
}

.custom-option:hover {
    background-color: #dedef5 !important;
}

.detalles {
    font-weight: bold;
    color: rgb(77, 76, 76);
    font-size: 22px;
}

.imagen_tarjeta_tipo {
    text-align: center;
    position: absolute;
    right: 0px;
    width: 63px;
    height: 35px;
    top: 35px;
    background-color: #ffffff;
    padding: 1px;
    border-radius: 3px;
    display: none;
    border: 3px solid #cbccfa;
    z-index: 20;
}

input[type=text], select {
    font-size: 14px !important;
    height: auto !important;
}

.form-pse {
    margin-bottom: 5px !important;
    font-size: .6rem !important;
    color: rgb(82, 82, 82) !important;
}

.error-mensaje-tarjeta {
    font-size: 14px !important;
}