.container {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.my_profile_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.profile_item {
    background-color: var(--primary-background);
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 30px;
    width: calc((100% - 30px) / 2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 3px 5px #00000014;
}

.profile_item:last-of-type,
.profile_item:nth-of-type(7) {
    margin-bottom: 0;
}

.profile_item h3 {
    margin: 0;
    font-size: 24px;
}

.profile_item p {
    margin: 10px 0 15px;
}

.profile_item .buttons_container {
    justify-content: end;
}

.profile_item .buttons_container .button {
    margin-left: 10px;
    margin-right: 0;
}

.profile_item .buttons_container .button:first-of-type {
    margin-left: 0;
}

.profile_detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.panel_flex {
    display: flex;
    align-items: center;
}

.panel_flex i {
    width: 28px;
}

.panel_flex h5 {
    margin: 0;
    width: 270px;
    font-size: 16px;
    font-weight: 500;
}

.panel_flex p {
    margin: 8px 0 0;
}

.profile_item .attribute {
    font-weight: 500;
    margin-right: 25px;
}

.profile_detail p {
    margin: 0 0 5px 0;
}

.profile_detail:first-of-type {
    margin-top: 20px;
}

.profile_detail:last-of-type {
    margin-bottom: 25px;
}

.default_method {
    display: flex;
    align-items: center;
}

.default_method p {
    margin-right: 40px;
    margin-top: 0;
}

.default_method p:last-of-type {
    margin-right: 0;
}

.profile_item .email_icon {
    margin: 0 0 30px;
}

.red_icon {
    background-color: var(--red);
    border-color: var(--red);
}

.profile_item .square_button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 46px;
    height: 46px;
    padding: 0;
    background-color: var(--primary-color);
    color: var(--button-text);
    border-radius: 5px;
    box-sizing: border-box;
    transition: 0.15s all ease-in-out;
}

.profile_item .square_button_2 {
    background-color: var(--accent-background);
    color: var(--button-text);
}

.profile_item .square_button:hover {
    opacity: 0.9;
    transition: 0.15s all ease-in-out;
}

.profile_item .square_button_2:hover {
    opacity: 0.9;
    transition: 0.15s all ease-in-out;
}

.profile_item .square_button i,
.profile_item .square_button_2 i {
    margin: 0 !important;
}

.new_address_item {
    width: 100%;
}

.card_separator,
.separator {
    width: 100%;
    height: 2px;
    background-color: var(--accent-background);
    opacity: 0.25;
    margin: 20px 0;
}

@media (max-width: 1500px) and (min-width: 1250px) {
    .profile_item .buttons_container {
        align-items: flex-end;
        flex-direction: column;
    }

    .profile_item .buttons_container .button_2 {
        margin-top: 10px;
    }
}

@media (max-width: 1250px) {
    .profile_item {
        width: 100%;
    }

    .profile_item:nth-of-type(7) {
        margin-bottom: 30px;
    }
}

@media (max-width: 1150px) {
    .profile_item,
    .profile_item:nth-of-type(7) {
        margin-bottom: 20px;
    }
}

@media (max-width: 900px) and (min-width: 800px) {
    .profile_item .buttons_container {
        align-items: flex-end;
        flex-direction: column;
    }

    .profile_item .buttons_container .button_2 {
        margin-top: 10px;
    }
}

@media (max-width: 850px) {
    .profile_item,
    .profile_item:nth-of-type(7) {
        margin-bottom: 20px;
    }
}

@media (max-width: 750px) {
    .default_method {
        display: block;
        margin: 25px 0 30px 0;
    }
    
    .default_method p {
        margin: 0 0 10px 0;
    }
}

@media (max-width: 650px) {
    .profile_item .buttons_container {
        flex-direction: column;
    }

    .profile_item .buttons_container .button {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }

    .profile_item .buttons_container .button:first-of-type {
        margin-top: 0;
    }    
}

@media (max-width: 350px) {
    .profile_detail {
        display: block;
    }
}