/* ===========================
   ADDRESS CARD
=========================== */

.Address_card {
    background: #f8f8f8;
    border: 1px solid #dddddd;
    border-radius: 2px;
    padding: 12px 14px;
    height: 100%;
}

.Address_card .Manage_address_card_title {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 0px;
    text-decoration: underline;
}

.Address_card .Manage_address_card_text {
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
    color: #3d3d3d;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: break-word;
    word-break: normal;
}

.Address_card .form-check-input {
    border-radius: 50px !important;
}

.Address_card .heading_holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.Address_card .heading_holder .edit_btn {
    font-size: 12px;
}

.Address_card .heading_holder .right-icons-wrapper {
    display: flex;
    align-items: center;
}


/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 767px) {
    .Address_card .Manage_address_header {
        margin-bottom: 20px;
    }

    .Address_card .Manage_address_card_text {
        font-size: 14px;
        line-height: 24px;
        line-height: 1.3;
    }

    .Address_card {
        padding: 9px 10px;
        margin-bottom: 20px !important;
    }

    .Address_card .Manage_address_card_title {
        font-size: 15px;
    }
}