@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

.cart-parties {
    margin: 20px 0px 30px 15px;
    display: flex;
    flex-direction: row;
}

.cart-parties .my-cart table td {
    padding: 0px 20px;
    position: relative;
}

.cart-parties table td:not(:first-child):not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    right: 0;
    width: 1px;
    background-color: #f8f4f4;
}

.cart-parties table tr .image {
    padding-left: 10px;
    min-width: 115px;
}

.cart-parties table tr .image .img-thumbnail {
    margin: 10px 0px;
    border: none;
    height: 75px;
}

.cart-parties table tr .product-name {
    width: 34%;
    padding-left: 0;
}

.cart-parties table tr .product-name a {
    color: #000000;
}

.cart-parties table tr .remove {
    font-weight: 400;
    padding: 5px;
    cursor: pointer;
    font-family: "Quicksand", sans-serif;
    font-size: 12px;
}

.cart-parties table tr:not(:last-child) {
    border-bottom: 2px solid #f8f4f4;
}

.cart-parties .my-cart {
    background-color: #ffffff;
    padding: 15px 10px;
    box-shadow: 0px 0px 6px 0px #c4c4c4;
    font-size: 12px;
    color: #000000;
    text-transform: uppercase;
}

.cart-parties .my-cart .quantity {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.cart-parties .my-cart .quantity button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #000000;
    height: 33px;
    width: 32px;
    font-size: 21px;
    font-family: "Quicksand", sans-serif;
    font-weight: 100;
    border: 2px solid #f8f4f4;
}

.cart-parties .my-cart .decrease-quantity {
    border-radius: 50% 0 0 50%;
}

.cart-parties .my-cart .increase-quantity {
    border-radius: 0 50% 50% 0;
}

.cart-parties .my-cart .quantity span {
    margin-bottom: 2px;
}

.cart-parties .my-cart .quantity input {
    border-top: 2px solid #f8f4f4;
    border-bottom: 2px solid #f8f4f4;
    border-left: none;
    border-right: none;
    height: 33px;
    width: 37px;
    text-align: center;
    font-weight: lighter;
}

.cart-parties .my-cart .quantity input[type=number]::-webkit-inner-spin-button,
.cart-parties .my-cart .quantity input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-parties .my-cart h1 {
    font-size: 15px;
    font-weight: bold;
    margin: 0px 0px 15px 5px;
}

.cart-parties .part-cart {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    padding: 15px;
    box-shadow: 0px 0px 6px 0px #c4c4c4;
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cart-parties .part-cart:last-child {
    margin-bottom: 0;
}

.cart-parties .part-cart h1 {
    font-size: 15px;
    font-weight: bold;
    margin: 0px 0px 15px 0px;
}

.cart-parties .purchase-summary table tr {
    height: 30px;
}

.cart-parties .purchase-summary .button-finalize-order {
    margin: 10px 0px 8px 0px;
    height: 40px;
}

.cart-parties .purchase-summary .button-finalize-order a {
    background-color: #0CAB6B;
    color: #ffffff;
    border-radius: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 100%;
    box-shadow: 0px 4px 15px -11px rgb(0 0 0);
    cursor: pointer;
}

.cart-parties .simulate-shipping .input-simulate-shipping {
    display: flex;
    flex-direction: row;
    height: 40px;
    position: relative;
}

.cart-parties .part-cart .input input {
    border-radius: 18px;
    height: 40px;
    padding: 0px 20px;
    border: 2px solid #f8f4f4;
    font-weight: lighter;
    width: 100%;
}

.cart-parties .part-cart .input button {
    background-color: #000000;
    color: #ffffff;
    border-radius: 22px;
    height: 40px;
    box-shadow: 0px 4px 15px -11px rgb(0 0 0);
    width: 110px;
    border: none;
    position: absolute;
    right: 30px;
}

.cart-parties .simulate-shipping #quotation .details {
    border: 2px solid #f8f4f4;
    padding: 10px;
    border-radius: 15px;
    margin-top: 15px;
}

.cart-parties .simulate-shipping #quotation .button-quotation {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.cart-parties .simulate-shipping #quotation .button-quotation #button-shipping {
    background-color: #000000;
    color: #ffffff;
    border-radius: 22px;
    height: 40px;
    box-shadow: 0px 4px 15px -11px rgb(0 0 0);
    padding: 0px 15px;
    border: none;
}

.cart-parties .simulate-shipping #quotation .details .close {
    font-weight: 400;
    cursor: pointer;
    font-family: "Quicksand", sans-serif;
    font-size: 18px;
    background-color: #ffffff;
}

.cart-parties .simulate-shipping #quotation .error-quotation,
.cart-parties .discount-coupon #result .error {
    color: red;
    margin: 5px 0px 0px 0px;
    font-weight: lighter;
    font-size: 10px;
}

.cart-parties .my-cart .table-responsive {
    margin-bottom: 20px;
}

.clear-cart {
    position: absolute;
    bottom: 12px;
    text-transform: none;
    width: 100%;
    text-align: center;
}

.clear-cart a {
    color: #000000;
}

.clear-cart a:hover {
    border-bottom: 1px solid #000000;
}

.buttons-parts {
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.buttons-parts button {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    background-color: #F2F2F2;
    border: 2px solid #d8d8d8;
    padding: 0;
    justify-content: center;
}

.buttons-parts button span {
    height: 27px;
    width: 27px;
    border-radius: 50%;
    border: 2px solid #F2F2F2;
    background-color: #000000;
    display: none;
}

.buttons-parts .line {
    height: 2px;
    width: 35px;
    background-color: #000000;
}

.menu-checkout {
    display: flex;
    flex-direction: column;
    width: 292px;
}

.menu-checkout .names-parts {
    display: flex;
    justify-content: space-around;
    height: 14px;
}

.menu-checkout .names-parts p {
    font-size: 8px;
    font-weight: bold;
    color: #d8d8d8;
    width: 63px;
    text-align: center;
}

.black {
    color: #000000 !important;
}

.bg-black {
    display: block !important;
}

.border-black {
    border: 2px solid #000000 !important;
}

.identification-parties {
    padding: 15px;
    background-color: #ffffff;
    box-shadow: 0px 0px 6px 0px #c4c4c4;
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    margin: 20px 15px 30px 15px;
}

.payment-parties,
.shipping-parties {
    display: flex;
    margin: 20px 0px 30px 0px;
}

.shipping-parties h1,
.payment-parties h1 {
    font-size: 15px;
    font-weight: bold;
    margin: 0px 0px 15px 0px;
}

.identification-parties h1 {
    font-size: 15px;
    font-weight: bold;
    margin: 0px;
}

.payment-parties .payment-new,
.shipping-parties .shipping-new {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.shipping-parties #button-shipping-address {
    margin-top: 15px;
}

.shipping-parties #button-shipping-method {
    margin-top: 9px;
}

.shipping-parties .form-group,
.payment-parties .form-group {
    margin: 0px;
}

.shipping-parties .form-group {
    padding-right: 15px;
}

.payment-parties .form-group {
    padding-right: 15px;
}

.payment-parties .payment-address-1,
.shipping-parties .shipping-address-1 {
    padding-right: 0px;
}

.shipping-parties .form-group:last-of-type,
.payment-parties .form-group:last-of-type {
    padding-right: 0;
}

.identification-parties h2 {
    font-size: 15px;
    margin: 10px 0px 10px 0px;
    text-transform: uppercase;
}

.identification-parties .identification-register {
    margin: 15px;
}

.identification-parties .identification-register #account .date input {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.checkout input[type=button] {
    background-color: #000000;
    color: #ffffff;
    border-radius: 18px;
    height: 37px;
    box-shadow: 0px 4px 15px -11px rgb(0 0 0);
    padding: 0px 18px;
    border: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.checkout input[type=button]:active:hover {
    color: #ffffff;
    background-color: #000000;
    border-color: #000000;
}

.identification-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 25px 0;
}

.identification-login input[type=button] {
    margin: 15px 0px 35px 0px;
    width: 100%;
}

.identification-login p {
    text-align: center;
}

.identification-login a {
    color: #000000;
}

.identification-register .buttons div,
.payment-parties .buttons-continue div {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.identification-register .buttons a,
.payment-parties .buttons-continue a {
    margin-right: 15px;
}

.identification-login .forgotten {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.identification-login .forgotten a {
    font-weight: lighter;
    text-decoration: underline;
    color: #000000;
}

.identification-register .form-group {
    padding: 0px 7.5px;
}

.identification-register .form-data {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.identification-register .form-data .person {
    display: flex;
    flex-direction: row;
}

.identification-register .form-data .person .radio {
    margin: 0px 15px 0px 0px;
}

.identification-register .form-identification {
    display: flex;
    flex-direction: row;
    margin: 0px -7.5px;
}

.width-10 {
    width: 10%;
}

.width-15 {
    width: 15%;
}

.width-20 {
    width: 20%;
}

.width-25 {
    width: 25%;
}

.width-30 {
    width: 30%;
}

.width-35 {
    width: 35%;
}

.width-100 {
    width: 100%;
}

@media (max-width: 1200px) {
    .identification-register .form-identification {
        flex-wrap: wrap;
    }

    .payment-parties .payment-new,
    .shipping-parties .shipping-new {
        justify-content: space-between;
    }

    .identification-register .form-group,
    .shipping-parties .form-group,
    .payment-parties .form-group {
        width: 49%;
    }
    
    .identification-register .width-100 {
        width: 100%;
    }

    .shipping-parties .form-group,
    .payment-parties .form-group {
        padding-right: 0px;
    }
}

@media (max-width: 992px) {
    .cart-parties {
        display: flex;
        flex-direction: column;
        margin: 20px 0px 30px 0px;
        padding: 0 15px;
    }

    .cart-parties .my-cart {
        width: 100%;
    }

    .cart-parties .my-cart .table-responsive {
        border: none;
    }

    .cart-parties .parts-cart {
        width: 100%;
        padding: 0;
        margin-top: 12px;
    }

    .cart-parties .part-cart .input button {
        right: 15px;
    }

    .payment-parties,
    .shipping-parties {
        flex-direction: column !important;
        margin: 20px 15px 30px 15px;
    }

    .payment-parties .payment,
    .payment-parties .summary,
    .shipping-parties .address,
    .shipping-parties .method {
        width: 100%;
    }

    .payment-parties .summary,
    .shipping-parties .method {
        margin-top: 12px;
    }
}

@media (max-width: 991px) {
    .identification-register .form-group {
        width: 100%;
    }
}

@media (max-width: 768px) {
    #payment_card {
        flex-direction: column;
    }

    #payment_card .form-group,
    #payment-new .form-group {
        margin-bottom: 5px;
    }

    #payment_card .form-group label,
    #payment-new .form-group label {
        margin-bottom: 0px;
    }
}

@media (max-width: 597px) {
    .identification-register .buttons div,
    .payment-parties .buttons-continue div {
        align-items: flex-end;
        flex-direction: column;
    }

    .identification-register .buttons input[type=button],
    .payment-parties .buttons-continue input[type=button] {
        margin-top: 15px;
    }

    .shipping-parties .form-group {
        width: 100%;
    }
}

.identification-parties input[type=text],
.identification-parties input[type=password],
.identification-parties select,
.shipping-parties input[type=text],
.shipping-parties select,
.payment-parties input[type=text],
.payment-parties select {
    border-radius: 18px !important;
    height: 40px;
    padding: 0px 10px;
    border: 2px solid #f8f4f4;
    font-weight: lighter;
    width: 100%;
    box-shadow: none;
    background-color: #ffffff !important;
}

.shipping-parties textarea {
    border-radius: 18px;
    padding: 5px 15px;
    border: 2px solid #f8f4f4;
    font-weight: lighter;
    width: 100%;
    box-shadow: none;
    background-color: #ffffff !important;
}

.identification-parties .btn-default {
    height: 40px;
    border-radius: 0px 18px 18px 0px;
}

.payment-parties .panel-body {
    display: flex;
    flex-direction: row;
}

.payment-parties .payment,
.payment-parties .summary,
.shipping-parties .address,
.shipping-parties .method {
    padding: 15px;
    background-color: #ffffff;
    box-shadow: 0px 0px 6px 0px #c4c4c4;
    font-size: 12px;
    color: #000000;
}

.payment-parties .summary {    
    text-transform: uppercase;
    position: relative;
}

.payment-parties .payment,
.shipping-parties .address {
    margin-right: 15px;
}

.payment-parties .summary table td {
    padding: 0px 20px;
    position: relative;
}

.payment-parties table td:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    right: 0;
    width: 1px;
    background-color: #f8f4f4;
}

.payment-parties table tr .product-name {
    width: 50%;
    padding-left: 0;
    font-size: 11px;
}

.payment-parties table tr .product-name a {
    color: #000000;
}

.payment-parties table tr:not(:last-child) {
    border-bottom: 2px solid #f8f4f4;
}

.payment-parties .summary .table-totals {    
    margin: 15px 0px 105px;
}

.payment-parties .summary .table-totals table {    
    width: 100%;
}

.payment-parties .summary .table-totals table td {    
    padding: 5px 0px;
}

.payment-parties table tr .product-total {
    padding-right: 0;
}

.method-buttons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-top: 15px;
}

button.btn-methods svg {
    color: var(--bg-primary);
    fill: currentColor;
    width: 64px;
    height: 64px;
    display: inline-block;
    font-size: 1.5rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    flex-shrink: 0;
    user-select: none;
}

.btn-methods .fa.fa-barcode {
    font-size: 60px;
    color: var(--bg-primary);
    text-align: center;
    height: 59px;
}

button.btn-methods svg {
    color: var(--bg-primary);
    fill: currentColor;
    width: 64px;
    height: 64px;
    display: inline-block;
    font-size: 1.5rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    flex-shrink: 0;
    user-select: none;
}

button.btn-methods svg path {
    width: 64px;
    height: 64px;
}

button.btn-methods {
    background-color: #ffff;
    border: none;
    border-radius: 15%;
    box-shadow: 0px 0px 6px 0px #c4c4c4;
    display: flex;
    align-items: center;
    width: 100px;
    height: 78px;
    justify-content: center;
}

button.btn-methods:hover,
.button-active {
    background-color: var(--bg-primary) !important;
    color: #ffffff !important;
}

button.btn-methods:hover svg,
.button-active svg {
    fill: #ffffff !important;
    color: #ffffff !important;
}

.btn-methods:hover .fa.fa-barcode,
.button-active .fa.fa-barcode {
    color: #ffffff;
}

.content-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px 10px 10px 10px;
}

.content-buttons span {
    margin-top: 5px;
}

.payment-parties h2 {
    font-size: 15px;
    margin-top: 0px;
}

.button-login a {
    background-color: #000000;
    color: #ffffff;
    border-radius: 18px;
    height: 37px;
    box-shadow: 0px 4px 15px -11px rgb(0 0 0);
    padding: 0px 18px;
    border: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 0px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 176px;
}

.payment-parties .summary .order-confirm {    
    margin-top: 20px;
}

.payment-parties .summary .order-confirm input,
.payment-parties .summary .order-confirm input:active:hover,
.payment-parties .order-confirm-card input {    
    background-color: #0CAB6B;
    color: #ffffff;
    border-radius: 18px;
    border: none;
    font-weight: bold;
    height: 40px;
    width: 100%;
    box-shadow: 0px 4px 15px -11px rgb(0 0 0);
    text-transform: uppercase;
    font-size: 12px;
}

.payment-parties .message-agree {    
    text-transform: none;
    color: #000000;
}

.payment-parties .message-agree a {
    color: #000000;
}

.payment-parties .message-agree a:hover {    
    color: #000000;
    text-decoration: underline;
}

@media (min-width: 992px) {
    .payment-parties .summary .order-confirm { 
        position: absolute;
        bottom: 15px;
        width: calc(100% - 30px);
    }
}

.order-confirm-card {
    margin-top: 20px;
    padding: 0px;
}

#payment_card {
    margin: 15px 0px 25px 0px;
    justify-content: center;
}

#payment_card .form-group {
    width: 100%;
    padding: 0;
}

#check .checkbox {
    padding-left: 20px;
    zoom: 1.2;
}

#check .checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 5px;
    line-height: 18px;
}

#check .checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border .15s ease-in-out, color .15s ease-in-out;
    -o-transition: border .15s ease-in-out, color .15s ease-in-out;
    transition: border .15s ease-in-out, color .15s ease-in-out;
}

#check .checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 1px;
    font-size: 11px;
    color: #555;
}

#check .checkbox input[type="checkbox"] {
    opacity: 0;
}

#check .checkbox input[type="checkbox"]:focus+label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

#check .checkbox input[type="checkbox"]:checked+label::after {
    font-family: 'FontAwesome';
    content: "\f00c";
}

#check .checkbox input[type="checkbox"]:disabled+label {
    opacity: .65;
}

#check .checkbox input[type="checkbox"]:disabled+label::before {
    background-color: #eee;
    cursor: not-allowed;
}

#check .checkbox#check .checkbox-circle label::before {
    border-radius: 50%;
}

#check .checkbox#check .checkbox-inline {
    margin-top: 0;
}

#check .checkbox-primary input[type="checkbox"]:checked+label::before {
    background-color: #428bca;
    border-color: #428bca;
}

#check .checkbox-primary input[type="checkbox"]:checked+label::after {
    color: #fff;
}

#check .checkbox-danger input[type="checkbox"]:checked+label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}

#check .checkbox-danger input[type="checkbox"]:checked+label::after {
    color: #fff;
}

#check .checkbox-info input[type="checkbox"]:checked+label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

#check .checkbox-info input[type="checkbox"]:checked+label::after {
    color: #fff;
}

#check .checkbox-warning input[type="checkbox"]:checked+label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

#check .checkbox-warning input[type="checkbox"]:checked+label::after {
    color: #fff;
}

#check .checkbox-success input[type="checkbox"]:checked+label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

#check .checkbox-success input[type="checkbox"]:checked+label::after {
    color: #fff;
}

.message-confirm {
    margin: 7px 0 15px;
    text-align: center;
}

.ticket-button {
    margin: 15px 0px;
    width: 210px;
}

.ticket-button a {
    background-color: #0CAB6B;
    color: #ffffff;
    border-radius: 20px;
    border: none;
    box-shadow: 0px 4px 15px -11px rgb(0 0 0);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    font-weight: bold;
    font-size: 12px;
}

.ticket-button a:hover {
    color: #ffffff;
}

.digitable-line {
    margin: 0px;
}

.digitable-line .bar-code {
    max-width: calc(100vw - 30px);
    word-wrap: break-word;
    overflow-wrap: break-word;
    color: #000000;
    font-weight: bold;
    margin: 12px 0px 15px 0px;
}

.digitable-line .pix-code {
    max-width: calc(100vw - 60px);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.digitable-line .success-copied {
    color: #06cf06;
    margin: 5px 5px 5px 5px;
}

.digitable-line .error-copied {
    color: #d9534f;
    margin: 5px 5px 5px 5px;
}

.digitable-line button {
    margin: 0px 0px 15px 0px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 20px;
    border: none;
    box-shadow: 0px 4px 15px -11px rgb(0 0 0);
    width: 210px;
    height: 40px;
    font-weight: bold;
    font-size: 12px;
}

.img-pix {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border: 2px solid #f8f4f4;
    border-radius: 20px;
    padding: 15px 15px 0px 15px;
    margin: 0 auto;
}

.img-pix .digitable-line {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.img-qrcode {
    width: 300px;
    height: 300px;
    border: none;
}

.flip-container {
    perspective: 1000px;
    transform-style: preserve-3d;
    height: 180px;
    padding-top: 11px;
    margin-bottom: 25px;
}

.flip-container-hover .back {
    transform: rotateY(0deg)
}

.flip-container-hover .front {
    transform: rotateY(180deg)
}

.flip-container,
.front,
.back {
    height: 180px
}

.flipper {
    transition: .6s;
    transform-style: preserve-3d;
    position: relative
}

.front,
.back {
    backface-visibility: hidden;
    transition: .6s;
    transform-style: preserve-3d;
    position: absolute;
    top: 0;
    left: 0;
}

.front {
    z-index: 2;
    transform: rotateY(0deg)
}

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

@media (max-width: 767px) {
    .flip-container {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .front {
        position: relative;
    }
}

#common-success .pull-right a {
    background-color: #000000;
    color: #ffffff;
    border-radius: 18px;
    height: 37px;
    box-shadow: 0px 4px 15px -11px rgb(0 0 0);
    padding: 0px 18px;
    border: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

#error-payment {
    display: none;
    text-transform: none;
}

.field-mp {
    display: none;
}

.voucher .title-voucher {
   cursor: pointer;
   margin-bottom: 11px;
}

.voucher .title-voucher:hover {
    text-decoration: underline;
}

.voucher .input-group {
    width: 100%;
    display: none;
}

.voucher #input-voucher {
    margin-bottom: 15px;
}

.voucher #button-voucher {
    background-color: #000000;
    color: #ffffff;
    border-radius: 22px;
    font-weight: bold;
    height: 40px;
    text-transform: uppercase;
    font-size: 12px;
    box-shadow: 0px 4px 15px -11px rgb(0 0 0);
    min-width: 100px;
    border: none;
    position: absolute;
    right: 0px;
    z-index: 2;
}

.saved-card-container {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    margin-top: 10px;
    border: 2px solid #f8f4f4;
    overflow: hidden;
}

.radio.card-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 6px;
    border-bottom: 2px solid #f8f4f4;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    justify-content: space-between;
}

.radio.card-option label {
    display: flex;
    align-items: flex-end;
}

.radio.card-option:last-child {
    border-bottom: none;
}

.radio.card-option.selected,
.radio.card-option:hover {
    background-color: var(--bg-primary);
    color: #ffffff;
    font-weight: bold;
}

.radio.card-option input[type="radio"] {
    appearance: none;
    width: 19px;
    height: 18px;
    border: 2px solid var(--bg-primary);
    border-radius: 50%;
    background-color: #ffffff;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    outline: none;
    margin-bottom: 0.5px;
}

.radio.card-option input[type="radio"]:checked {
    background-color: var(--bg-primary);
    border-color: #ffffff;
}

.radio.card-option input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9.5px;
    height: 9px;
    background-color: #ffffff;
    border-radius: 50%;
}

.radio.card-option input[type="radio"]:focus {
    outline: none;
}

.radio.card-option .card-info {
    color: inherit;
    margin-left: 5px;
}

.radio.card-option .remove-card {
    height: 16px;
    width: 16px;
    text-align: center;
    line-height: 11px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-top: 2px;
}

.remove-card .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin-top: 0;
}
  
.remove-card .modal-content {
    width: 350px;
    border-radius: 8px;
}

.remove-card .modal-header {
    display: flex;
    justify-content: space-between;
}

.remove-card .modal-header .close:hover {
    background-color: #ffffff;
}
  
.remove-card .modal-title {
    font-weight: bold;
    color: #000000;
}

.remove-card #confirm-remove-card {
    background-color: #000000;
    color: #ffffff;
    border-radius: 19px;
    height: 37px;
    box-shadow: 0px 4px 15px -11px rgb(0 0 0);
    padding: 0px 18px;
    border: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}
  
@media (max-width: 420px) {
    button.btn-methods {
        width: 80px;
        height: 70px;
    }

    .form-horizontal {
        padding: 0;
    }

    #payment_card .form-group {
        margin-bottom: 10px;
    }

    .flip-container {
        padding: 11px 0 0 0;
    }

    .ticket-button,
    .digitable-line button {
        width: 100%;
    }
}

@media (min-width: 992px) {
    #error-payment {
        margin-bottom: 100px;
    }
}
