.addAddressQuickView {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    background: transparent;
    z-index: 999999;
}
.addAddressQuickView input, .addAddressQuickView textarea, .addAddressQuickView select {
    border: none;
    outline: none;
    box-shadow: none;
    font-size: inherit;
    font-weight: inherit;
}
.addAddressQuickView .address-overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1
}
.addAddressQuickView .content {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 480px;
    background: rgba(255,255,255,1);
    z-index: 2;
    padding: 40px;
    overflow-y: auto
}
.addAddressQuickView .address-overlay.new,
.addAddressQuickView .address-overlay.delete {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 3
}
.addAddressQuickView .content.new {
    z-index: 3;
}
.addAddressQuickView .address-overlay.delete {
    z-index: 4;
}
.addAddressQuickView .content.delete {
    z-index: 5;
}

.addAddressQuickView .transition {
    transition: all 0.25s ease-in-out;
}
.addAddressQuickView .content .close {
    margin-bottom: 20px
}
.addAddressQuickView .content .close span {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e9e9e9;
    color: #000;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
}
.addAddressQuickView .content .close span:hover {
    background: #d6d6d6
}

.addAddressQuickView .head,
.address-account .head {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center
}
.address-account .head {
    align-items: start
}
.addAddressQuickView .head h3,
.address-account .head h3 {
    font-size: 21px;
    font-weight: 500;
    line-height: 40px;
    text-align: left;
    margin-bottom: 0;
}
/* .addAddressQuickView .head button,
.address-account .head button {
    padding: 8px 12px;
    border: 2px solid #d9b873;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #d9b873;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.025em;
}
.address-account .head button {
    border: 2px solid #c29b40;
    color: #c29b40;
} */

.addAddressQuickView .address_list .items,
.address-account .address_list .items {
    position: relative;
    padding: 0 0 0 20px;
}

.addAddressQuickView .address_list .items:before,
.address-account .address_list .items:before {
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    position: absolute;
    width: 1px;
    background: #e5e5e5;
}

.addAddressQuickView .address_list .items h3,
.address-account .address_list .items h3 {
    font-size: 15px;
    margin-bottom: 0;
    padding: 20px 40px 20px 0;
    border-top: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    position: relative;
}
.addAddressQuickView .address_list .items h3.bb,
.address-account .address_list .items h3.bb {
    border-bottom: 1px solid #e5e5e5;
}
.addAddressQuickView .address_list .items h3.bb:after,
.address-account .address_list .items h3.bb:after {
    content: '';
    left: -20px;
    bottom: -1px;
    height: 1px;
    position: absolute;
    width: 20px;
    background: #e5e5e5;
}
.addAddressQuickView .address_list .items h3 span,
.address-account .address_list .items h3 span {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 15px;
    color: #000;
    z-index: 1
}
.addAddressQuickView .address_list .items h3:before,
.address-account .address_list .items h3:before {
    content: '';
    left: -20px;
    top: -1px;
    height: 1px;
    position: absolute;
    width: 20px;
    background: #e5e5e5;
}
.addAddressQuickView .address_list .item,
.address-account .address_list .item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid #e5e5e5;
    border-top-left-radius: 0;
    padding: 20px 0;
    position: relative
}
.address-account .address_list .item {
    border-top: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}
.address-account .address_list .item:last-child {
    border-bottom: 1px solid #e5e5e5;
}

.addAddressQuickView .address_list .item .edit-wrapper,
.address-account .address_list .item .edit-wrapper {
    position: absolute;
    z-index: 1;
    border-top: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    background-color: #f5f5f5;
    left: -20px;
    bottom: 0;
    right: 0;
    padding: 10px 20px 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px
}
.addAddressQuickView .address_list .item .edit-wrapper button,
.address-account .address_list .item .edit-wrapper button {
    font-size: 15px;
    line-height: 20px;
    color: #000;
}
.addAddressQuickView .address_list .item .edit-wrapper button:hover {
    color: #d9b873
}
.address-account .address_list .item .edit-wrapper button:hover {
    color: #c29b40;
}

.addAddressQuickView .address_list .item:before,
.address-account .address_list .item:before {
    content: '';
    left: -20px;
    top: -1px;
    height: 1px;
    position: absolute;
    width: 20px;
    background: #e5e5e5;
}
.address-account .address_list .item:after {
    content: '';
    left: -20px;
    bottom: -1px;
    height: 1px;
    position: absolute;
    width: 20px;
    background: #e5e5e5;
}

.addAddressQuickView .address_list .item .default,
.addAddressQuickView .address_list .item .actions,
.address-account .address_list .item .default,
.address-account .address_list .item .actions {
    width: 39px
}
.address-account .address_list .item .actions {
    width: 90px
}

.addAddressQuickView .address_list .item .actions,
.address-account .address_list .item .actions {
    text-align: right;
}
.addAddressQuickView .address_list .item .actions button,
.address-account .address_list .item .actions button {
    width: 29px;
    height: 29px;
    text-align: center;
    font-size: 14px;
    line-height: 29px;
    color: #d0d0d0;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: inherit;
    font-weight: inherit;
    margin-bottom: 4px;
    border-radius: 4px;
    cursor: pointer;
}
.addAddressQuickView .address_list .item .actions button:hover {
    color: #d9b873
}
.address-account .address_list .item .actions button:hover {
    color: #c29b40
}
.addAddressQuickView .address_list .item .actions button:nth-child(1),
.address-account .address_list .item .actions button:nth-child(1) {
    margin-top: -10px
}
.addAddressQuickView .address_list .item .address-detail,
.address-account .address_list .item .address-detail {
    width: calc(100% - 78px);
}
.addAddressQuickView .address_list .item .address-detail {
    cursor: pointer
}

.addAddressQuickView .address_list .item .default .default-check,
.address-account .address_list .item .default .default-check {
    position: relative;
    display: inline-block;
    width: 24px;
    min-width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    cursor: pointer;
}
.address-account .address_list .item .default .default-check.active {
    background: #c29b40;
    border: 2px solid #c29b40;
}

.addAddressQuickView .address_list .item .default .default-check.progress::before,
.address-account .address_list .item .default .default-check.progress::before {
    content: "";
    height: 14px;
    width: 14px;
    border-radius: 7px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top: 1px solid #d9b873;
    border-right: 1px solid #d9b873;
    -webkit-animation:spin 1s linear infinite;
    -moz-animation:spin 1s linear infinite;
    animation:spin 1s linear infinite;
}
.address-account .address_list .item .default .default-check.progress::before {
    border-top: 1px solid #c29b40;
    border-right: 1px solid #c29b40;
}
@-moz-keyframes spin {
    100% { -moz-transform: translate(-50%, -50%) rotate(360deg); }
}
@-webkit-keyframes spin {
    100% { -webkit-transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes spin {
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.addAddressQuickView .address_list .item .default .default-check.active {
    background: #d9b873;
    border: 2px solid #d9b873;
}
.address-account .address_list .item .default .default-check.active {
    background: #c29b40;
    border: 2px solid #c29b40;
}
.addAddressQuickView .address_list .item .default .default-check.active::before,
.address-account .address_list .item .default .default-check.active::before {
    content: "";
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: #d9b873;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid #fff;
}
.address-account .address_list .item .default .default-check.active::before {
    background: #c29b40;
}

.addAddressQuickView .address_list .item .address-detail h4,
.address-account .address_list .item .address-detail h4 {
    font-size: 13.5px;
    margin-bottom: 4px;
    font-weight: 600;
    color: #212121;
    line-height: 24px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.addAddressQuickView .address_list .item .address-detail h4 span,
.address-account .address_list .item .address-detail h4 span {
    font-size: 12px;
    font-weight: 400;
}
.addAddressQuickView .address_list .item .address-detail p,
.address-account .address_list .item .address-detail p {
    color: #666;
    font-size: 13px;
    font-weight: 300;
    line-height: 19px;
    text-align: left;
    margin-bottom: 0
}

.addAddressQuickView .input {
    position: relative;
    border: 1px solid #e5e5e5;
    border-radius: 7px;
    padding: 10px 15px;
}
.addAddressQuickView .input label {
    color: #5A7FEA;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}
.addAddressQuickView .input input[type="text"],
.addAddressQuickView .input select {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
}
.addAddressQuickView .input .address-loading {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1
}

.addAddressQuickView .input-groupped {
    display: flex;
}
.addAddressQuickView .input-groupped .input {
    width: 100%;
}
.addAddressQuickView .input-groupped .input:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
}
.addAddressQuickView .input-groupped .input:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.addAddressQuickView .input-checkbox,
.addAddressQuickView .input-radio {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.addAddressQuickView .input-checkbox span,
.addAddressQuickView .input-radio span {
    position: relative;
    display: inline-block;
    width: 16px;
    min-width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    cursor: pointer;
    margin-right: 14px
}
.addAddressQuickView .input-checkbox span {
    border-radius: 4px;
}
.addAddressQuickView .input-checkbox label,
.addAddressQuickView .input-radio label {
    width: calc(100% - 30px);
    font-size: 14px;
}
.addAddressQuickView .input-checkbox span.active,
.addAddressQuickView .input-radio span.active {
    background: #5A7FEA;
    border: 1px solid #5A7FEA;
}
.addAddressQuickView .input-checkbox span.active::before,
.addAddressQuickView .input-radio span.active::before {
    content: "";
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: #5A7FEA;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #fff;
}
.addAddressQuickView .input-checkbox span.active::before {
    border-radius: 4px;
}
.addAddressQuickView .footer {
    margin-top: 20px;
    padding: 30px;
    display: flex;
    justify-content: center;
    position: relative;
}
.addAddressQuickView .footer::before {
    content: '';
    position: absolute;
    left: -40px;
    right: -40px;
    top: 0;
    height: 1px;
    background: #e5e5e5
}
.addAddressQuickView .footer button,
.addAddressQuickView button.save-btn,
.address-account button.save-btn {
    padding: 8px 22px;
    border: 2px solid #5A7FEA;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #5A7FEA;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.025em;
    margin: 0 5px
}
.addAddressQuickView button.save-btn.backward,
.address-account button.save-btn.backward {
    border: 2px solid #c6c6c6;
    color: #c6c6c6;
}
.addAddressQuickView .footer button[disabled],
.addAddressQuickView button.save-btn[disabled],
.address-account button.save-btn[disabled] {
    border: 2px solid #ddd;
    background: #ccc;
    color: #fff;
    cursor: not-allowed;
}
.addAddressQuickView .footer button:hover,
.addAddressQuickView button.save-btn:hover,
.address-account button.save-btn:hover {
    background: #5A7FEA;
    color: #fff;
}
.addAddressQuickView button.save-btn.backward:hover,
.address-account button.save-btn.backward:hover {
    background: #c6c6c6;
    color: #fff;
}

/* HTML: <div class="loader"></div> */
.addAddressQuickView .loader {
    width: 14px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px solid #0000;
    border-right-color: #ffa50097;
    position: relative;
    animation: l24 1s infinite linear;
}
.addAddressQuickView .loader:before,
.addAddressQuickView .loader:after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: inherit;
    animation: inherit;
    animation-duration: 2s;
}
.addAddressQuickView .loader:after {
    animation-duration: 4s;
}
@keyframes l24 {
    100% {transform: rotate(1turn)}
}

.addAddressQuickView .addressForm,
.address-account .addressForm {
    display: flex;
    width: 100%;
    height: calc(100% - 50px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.addAddressQuickView .deleteWrapper {
    display: flex;
    width: 100%;
    height: calc(100% - 50px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.addAddressQuickView .deleteWrapper .icon {
    font-size: 55px;
    color: #d9b873;
    margin-bottom: 25px;
}
.address-account .deleteWrapper .icon {
    color: #c29b40;
}

.addAddressQuickView .addressForm .icon,
.address-account .addressForm .icon{
    font-size: 55px;
    color: #d9b873;
    margin-bottom: 25px;
}
.address-account .addressForm .icon{
    color: #c29b40;
}

.addAddressQuickView .deleteWrapper h4 {
    font-size: 18px;
    font-weight: 400;
    color: #d9b873;
    text-align: center;
    display: block;
    margin-bottom: 10px;
}
.address-account .deleteWrapper h4 {
    color: #c29b40;
}

.addAddressQuickView .deleteWrapper p {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    display: block;
    margin-bottom: 15px;
}
.addAddressQuickView .deleteWrapper p.address_title {
    font-size: 16px;
    margin-bottom: 0;
}
.addAddressQuickView .deleteWrapper p.address_text {
    color: #666
}
.addAddressQuickView .deleteWrapper .delete_actions {
    width: 100%;
}
.addAddressQuickView .deleteWrapper .delete_actions .deletebtn {
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    line-height: 20px;
    background: #c0c0c0;
    color: #fff;
    border-radius: 4px;
    width: 100%;
    border: none;
    outline: none;
    box-shadow: none;
}
.addAddressQuickView .deleteWrapper .delete_actions .deletebtn:not([disabled]):hover {
    background: #d9b873
}
.address-account .deleteWrapper .delete_actions .deletebtn:not([disabled]):hover {
    background: #c29b40;
}

.addAddressQuickView .deleteWrapper .delete_actions .deletebtn[disabled] {
    background: #c0c0c0;
    cursor: not-allowed;
}
.addAddressQuickView .deleteWrapper .delete_actions .cancelbtn {
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    line-height: 20px;
    background: transparent;
    color: #000;
    width: 100%;
    border: none;
    outline: none;
    box-shadow: none;
}
.addAddressQuickView .deleteWrapper .delete_actions .cancelbtn:hover {
    color: #d9b873
}
.address-account .deleteWrapper .delete_actions .cancelbtn:hover {
    color: #c29b40;
}