* {
    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);
}

.shipping-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;
    --bs-gutter-x: 0px !important;
    max-height: 436px;
   
}



.store-card {
    /* max-width: 420px; */
    /* width: 100%;  */
    width: calc(50% - 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:786px) {

     .store-card {
        width: 100%;
    }

    .shipping-detail-container {
        width: 100%;
    }

    .shipping-detail-container {
        padding: 15px 10px;
        overflow: unset;
    }

    .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;
    }
 }



