/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 99999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */  
    align-items: center;
}

/* Modal Content/Box */
.modal-content {
    margin: 0 auto;
    background-color: #fff;
    padding: 20px 20px 30px;
    border-radius: 10px;
    max-width: 737px;
    position: relative;
    width: 100%;
    text-align: left;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 10px;
  top: 10px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-trigger-payment{
    margin: 0 !important;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: underline;
    cursor: pointer;
}

.modal-content-title{
    margin: 0;
    text-decoration: none;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.credit-cards{
    color: #001428;
}

.credit-cards h3{
    font-size: 20px;
    margin: 45px 0 0;
}

.credit-cards p{
    margin: 10px 0 0;
}

.credit-cards span{
    font-size: 14px;
    margin: 10px 0 25px;
    font-weight: 400;
}

.images-cards{
    gap: 20px;
    display: flex;
}

.card-container{
    width: 33%;
}

.card{
    display: flex;
    flex-direction: row;
    padding-left: 10px;
    background: rgb(245, 245, 245);
    gap: 15px;
    border-radius: 10px;
}

.image{
    align-items: center;
    display: flex;
    height: 80px !important;
}

.image img{
    width: 85px;
}

.text{
    align-items: center;
    display: flex;
    height: 80px !important;
    font-weight: 700;
}

.disclaimer{
    font-size: 10px;
}

@media screen and (max-width: 1024px) {
    .modal-content {
        width: 80%;
    }

    .card{
        flex-direction: column;
        gap: 0;
        padding: 8px;
        height: 110px;
        text-align: center;
        align-items: center;
        width: 82px;
        margin-bottom: 20px;    
    }
}
