.cart_main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px;
}

.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 1.2rem;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    font-family: 'Cormorant Infant';
}

.styled-table thead tr {
    background-color: #B69B56;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 5px 7px;
}

.styled-table td img {
    width: 100px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: rgba(182, 155, 86, 0.2);
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #B69B56;
}

.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #B69B56;
}

.remove_cart {
    font-weight: 700;
    text-decoration: underline;
    font-size: 1rem;
    font-family: 'Cormorant Infant';
}
.td-right {
    text-align: right;
}
.justify-content-center {
    justify-content: center;
}

.form-card {
    border: 1px solid #B69B56;
    padding: 20px;
    margin: 20px;
    max-width: 100%;
}
.form-row, .form-row-helper {
    margin-bottom: 10px;
    display: flex;
}
.form-row-helper label {
    margin-bottom: 10px;
    display: flex;
}
.form-row label, .form-row-helper label {
    margin-right: 10px;
    flex: 1;
}
.form-row input, .form-row-helper div {
    flex: 2;
}
.form-row-helper div {
    font-size: 0.9rem;
}
.form-row input {
    height: 30px;
    width: 400px;
    font-family: "Cormorant Infant", Serif;
    font-size: 17px;
}
.form-row select {
    font-family: "Cormorant Infant", Serif;
    font-size: 17px;
}
.form-card-title {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}
.form-card-action {
    display: flex;
    justify-content: center;
}
.form-card-action button, .form-card-action a {
    margin: 0 10px;
    padding: 10px 20px;
    border: 1px solid #B69B56;
    background-color: #B69B56;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    font-family: "Cormorant Infant", Serif;
}
.form-card-action a.disabled {
    cursor: not-allowed;
}
.form-card-subtitle {
    margin-bottom: 10px;
}
.fullCheckout {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}
.fullCheckout div {
    flex: 1;
}
.collection{
    font-weight: 500;
    text-transform: uppercase;
}
.alert-danger {
    background-color: #f8d7da;
    color: #58151c;
    border-left: 5px solid #f1aeb5;
    padding: 10px;
    width: max-content;
    margin: 20px auto 0px;
    max-width: 100%;
}
.alert-success {
    background-color: #d1e7dd;
    color: #0a3622;
    border-left: 5px solid #a3cfbb;
    padding: 10px;
    width: max-content;
    margin: 20px auto 0px;
    max-width: 100%;
}
.uppercase {
    text-transform: uppercase;
}
.lowercase {
    text-transform: lowercase;
}
.forgot {
    text-align: center;
    font-size: 1rem;
    margin-top: 10px;
    color: #B69B56;
    cursor: pointer;
}

.modal-connect {
    position: fixed;
    width: 500px;
    background-color: white;
    top: 25%;
    left: 50%;
    transform: translate(-50%);
    padding: 20px;
    /*border-radius: 5px;*/
    /*border: 1px solid #cccccc;*/
    box-shadow: 5px 5px 5px #33333314;
    z-index: 1000;
}
.close {
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
}
.stripe-btn {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%);
}
.sm-table {
    display: none;
}
.leftAccount {
    flex: 1;
    padding-left: 10px;
    margin-bottom: 30px;
}
.rightAccount {
    flex: 2;
    padding-left: 40px;
    margin-bottom: 30px;
}

.firstletter {
    display: block;
}
.firstletter::first-letter {
    font-size: 110%;
}


@media screen and (max-width: 767px) {
    .flex-2-col {
        flex-direction: column;
    }
    .styled-table {
        display: none;
    }
    .stripe-btn {
        margin-top: 20px;
        position: relative;
    }
    .sm-table {
        display: block;
    }
    .sm-table-row {
        border-bottom: 1px solid #B69B56;
        padding: 10px 0;
        margin: 0 10px;
    }
    .rightAccount, .leftAccount {
        padding-left: 10px;
        padding-right: 10px;
    }
}
