.addresses-page h1 {
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    margin-bottom: 48px;
    line-height: 1;
}
.addresses-page h1 .user-email {
    font-size: 12px;
    font-weight: 400;
}
.addresses-page h2 {
    font-size: 24px;
    margin-bottom: 48px;
}
.addresses-page .nav.flex-column li a {
    font-size: 16px;
    color: #636363;
    font-weight: 400;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 16px;
}
.addresses-page .nav.flex-column li a.active {
    color: #000000;
    font-weight: 700;
}
.addresses-page .logout-container {
    margin-top: 48px;
}
.addresses-page .logout-link {
    font-size: 14px;
    font-weight: 700;
}
.addresses-page .logout-link:hover {
    opacity: 0.75;
}
.addresses-page .addresses-container {
    max-width: 744px;
}
.addresses-page .address-card {
    border-radius: 4px;
    border: 1px solid #e6e6e6;
    padding: 8px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.addresses-page .add-address-link {
    display: flex;
    font-weight: 500;
    font-size: 12px;
}
.addresses-page .add-address-link div {
    margin-right: 4px;
}
.addresses-page .address-title,
.addresses-page .address-street,
.addresses-page .extra {
    font-size: 14px;
}
.addresses-page .address-street,
.addresses-page .extra {
    font-weight: 300;
}
.addresses-page .address-title {
    margin-bottom: 4px;
    display: inline-block;
}
.addresses-page .address-card .btn-container a {
    font-weight: 500;
    font-size: 12px;
    border: 1px solid #e6e6e6;
    padding: 4px 16px;
    border-radius: 16px;
}
.addresses-page .form-container {
    max-width: 744px;
}
.addresses-page .form-container .form-floating {
    margin-bottom: 24px;
}
.addresses-page .form-container input.form-control,
.addresses-page .form-container .form-select {
    border: 1px solid #b4b4b4;
    border-radius: 4px;
    color: #000000;
    font-size: 12px;
    padding: 8px 16px;
}
.addresses-page .form-container .form-floating>label {
    color: #b4b4b4;
    font-size: 10px; 
}
.addresses-page .form-container button.btn.submit-btn {
    color: #FFFFFF;
    background-color: #000000;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    min-height: 48px;
}
.addresses-page .form-container button.btn.submit-btn:hover {
    opacity: 0.75;
}
.addresses-page .go-back-link {
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.addresses-page .go-back-link svg {
    margin-right: 24px;
}
.addresses-page .mobile.addresses-heading {
    border-bottom: 1px solid #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 24px;
    height: 56px;
}
.addresses-page .info-text {
    font-size: 14px;
}
@media only screen and (max-width: 575px) {
    .addresses-page .col-md-9 {    
        position: fixed;
        background-color: #FFFFFF;
        z-index: 99;
        top: 0;        
        height: 100%;
        width: 100%;
        transition: right 0.5s ease;
        padding-top: 16px;
        padding-bottom: 16px;
        overflow-y: auto;
        right: -500vw;
    }
    .addresses-page .col-md-9.open {
        right: 0;
    }
}
@media only screen and (min-width: 576px) {
    .col-md-9 .back.mobile.fa-solid.fa-chevron-left {
        display: none !important;
    }
}
@media only screen and (max-width: 991px) {
    .addresses-page #addresses i.back {
        margin-bottom: 16px;
    }
    .addresses-page .new-address .go-back-link {
        position: absolute;
        left: 16px;
        margin: 0;
    }
    .addresses-page .new-address h2 {
        font-size: 14px;
        margin: 0;
    }
    .addresses-page .form-container button.btn.submit-btn {
        width: 100%;
    }
    .addresses-page h1 {
        font-weight: 400;
        font-size: 24px;
        margin-top: 24px;
    }
    .addresses-page .nav.flex-column li.nav-item {
        display: flex;
        align-items: center;
        margin-bottom: 16px;
    }
    .addresses-page .svg-item.mobile {
        width: 32px;
        border-radius: 50%;
        background-color: #f5f5f5;
        padding: 6px;
        margin-right: 8px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .addresses-page .nav.flex-column li a {
        padding: 0;
    }
}