* {
    font-family: "Twentieth Century";
}

.main-wrapper {
    padding: 30px;
    --bs-gutter-x: 0px !important;
}

.parent-container-for-sidebar {
    border: 1px solid #E7E7E7;
    border-radius: 15px;
    width: 248px;
}

.main-wrapper>.row {
    --bs-gutter-x: 0px !important;
    flex-wrap: nowrap !important;
    gap: 30px;
    height: calc(100vh - 200px);
}

.payment_card_detail_container {
    width: calc(100% - 275px);
    border: 1px solid #E7E7E7;
    padding: 32px 40px;
    border-radius: 15px;
    overflow: auto;
}

.store-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    /* max-width: 420px; */
    width: 100%;
    /* padding-left: 10px;
    padding-right: 10px; */
}

.store-header-title {
    font-weight: 600;
    font-size: 13px;
    color: #000000;
}

.add-store-btn {

    text-decoration: none;
    width: 116px;
    height: 27px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 15px;
    background-color: #000000;
    color: #FFFFFF;
}

.add-store-btn svg {
    width: 17px;
    height: 17px;
}

.add-store-btn span {
    font-size: 13px;
    line-height: 80%;
    font-weight: 600;
}

.store-list-container {
    gap: 10px;
    overflow-y: auto;

}

.store-list-container {
    --bs-gutter-x: 0px !important;
}

.parent-container-for-card-icon-and-card-number {
    display: flex;
    gap: 10px;
    align-items: center;
}

.parent-container-for-card-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
}

.card-number,
.card-holder-name,
.card-expiry-date {
    font-weight: 700;
    font-size: 16px;
    line-height: 80%;
    color: #000000;
}

.store-card {
    /* max-width: 420px; */
    /* width: 100%;  */
    width: calc(100% - 5px);
    height: 100px;
    border-radius: 10px;
    padding: 11px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFAF4;
    cursor: pointer;
    /* transition: border 0.3s ease; */
}

.store-card.selected {
    border: 2px solid #000000;
}

.parent-container-for-store-number-and-address {
    max-width: 249px;

}

.store-number {
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    word-wrap: break-word;
}

.store-number {
    font-weight: 600;
    font-size: 14px;
    color: #000000;
    word-wrap: break-word;
}

.main-address,
.full-address {
    font-weight: 400;
    font-size: 13px;
    color: #676767;
}

.store-actions {
    display: flex;
    justify-content: center;
    gap: 7px;
}

.edit-store-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 2px solid black;
    width: 28px;
    height: 28px;
    background-color: #FFFAF4;
}

.delete-store-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 2px solid #E32001;
    width: 28px;
    height: 28px;
    background-color: #FFFAF4;

}



@media(max-width:768px) {

    .store-card {
        width: 100%;
    }

    .payment_card_detail_container {
        width: 100%;
        padding: 10px 10px !important;
    }

    .parent-container-for-card-detail {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-number,
    .card-holder-name,
    .card-expiry-date {
        font-size: 12px;
        line-height: 100%;
    }

    .parent-container-for-card-icon-and-card-number {
        flex-direction: column;
        align-items: flex-start;
    }

    .parent-container-for-card-icon-and-card-number svg {
        width: 40px;
        height: 40px;
    }


    .main-wrapper>.row {
        flex-wrap: wrap !important;
        height: fit-content;
    }

    .main-wrapper {
        padding: 15px;
    }

    .parent-container-for-sidebar {
        display: none;
    }

    .store-list-container {
        max-height: unset;
    }
}