.woocommerce-Addresses .woocommerce-Address {
    width: 100% !important;
    margin-right: 0 !important;
}



.wma-address-list {
    list-style: none;
    padding: 0;
    padding-bottom: 20px;
}
.wma-address-item {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid var(--wma-item-border-color); 
    border-radius: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
form#wma-billing-form,
form#wma-shipping-form {
    padding-right: 0px;
    display: grid;
    gap: 20px;
	margin: 0;
}

.wma-modal-inner {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: calc(100vh - 218px);
    padding: 0 0px;
    padding-left: 0px;
    padding-right: 15px;
}
.wma-modal-inner::-webkit-scrollbar,
.wma-modal-inner::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    width: 5px;
    background-color: #9F9F9F33;
    border-radius: 100px;
}

.wma-modal-inner::-webkit-scrollbar-thumb {
    background-color: var(--wma-item-border-color);;
    border-radius: 100px;
}
.first-class,
.second-class {
    display: flex;
    gap: 20px;
}
.first-class div,
.second-class div {
    flex: 1;
}
#wma-billing-form label,
#wma-shipping-form label {
    margin-bottom: 10px;
    color: var(--wma-label-color);
    font-weight: 500;
}
.wma-add-new {
    background-color: var(--wma-button-color);
    color: #fff;
    padding: 10px 15px;
    border-radius: 0px;
    text-decoration: none;
	border: 1px solid var(--wma-button-color);
    border-color: var(--wma-button-color);
}
.wma-add-new:focus {
	background-color: var(--wma-button-color);
	outline: none;
}
.wma-add-new:hover {
    background: transparent; 
    color: var(--wma-button-color);
	border-color: var(--wma-button-color);
}
.wma-address-item.wma-default {
    border: 2px solid #0073aa;
    background-color: #e8f4fc;
}

.wma-actions {
    font-size: 14px;
    color: var(--wma-text-color);
    display: flex;
    align-items: center;
}
.wma-actions.wma-actions-top {
    align-items: flex-start;
}
.wma-actions.wma-actions-center {
    align-items: center;
}
.wma-actions.wma-actions-bottom {
    align-items: flex-end;
}
.wma-actions img {
    width: 100%;
    max-width: 16px;
	filter: var(--wma-button-filter);
}
.wma-actions a {
    color: #0073aa;
    text-decoration: none;
}

.wma-actions a:hover {
    text-decoration: underline;
}

.wma-address-item p {
    margin: 0;
    margin-bottom: 0px;
    color: var(--wma-text-color); 
}

.wma-address-item p.name {
    margin-bottom: 10px; 
	color: var(--wma-text-color);
}

.wma-actions span {
    cursor: pointer;
    font-weight: 600;
    color: var(--wma-text-color);
    padding: 0 3px;
}
.wma-actions input {
	display: none;
}

div#wma-billing-modal,
div#wma-shipping-modal,
div#wma-delete-modal {
	display: none;
    top: 0px;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    height: 100vh;
    left: 0;
    right: 0;
    width: 100%;
    transition: all 0.5s linear;
	z-index: 999;
}
.wma-modal-new-popup-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000000;
    opacity: 70%;
}
.wma-modal-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.wma-modal-header h3 {
    margin: 0;
    font-weight: 600;
    text-transform: capitalize;
	color: var(--wma-heading-color);
}
#wma-billing-cancel img,
#wma-shipping-cancel img {
    width: 30px;
    height: 30px;
}
#wma-billing-modal input,
#wma-billing-modal select,
#wma-shipping-modal input,
#wma-shipping-modal select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--wma-input-border-color);
    border-radius: 0px;
    font-size: 14px;
    min-height: unset;
    height: 40px;
    color: var(--wma-text-color);
    box-shadow: none;
    outline: none;
    background: transparent;
}
.wma-actions span.default {
    position: relative;
    padding-left: 22px;
}
.wma-actions span.default:before {
	content: "";
    width: 16px;
    height: 16px;
    border: 1px solid var(--wma-input-border-color);
    display: block;
    position: absolute;
    left: 1px;
    top: 3px;
    border-radius: 100px;
}
.wma-actions input[type="radio"]:checked+span.default:before {
    border: 1px solid var(--wma-input-border-color);
    background: transparent;
}
.wma-actions input[type="radio"]:checked+span.default:after {
    content: "";
    position: absolute;
    display: block;
    left: 4px;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--wma-input-border-color);
    border-radius: 20px;
	background-color: var(--wma-input-border-color);
}
button#wma-billing-save,
button#wma-shipping-save {
    background-color: var(--wma-button-color);
    color: #fff;
    padding: 8px 45px;
    border-radius: 0px;
    text-decoration: none;
    border-color: var(--wma-input-border-color);
    font-size: 16px;
	border: 1px solid var(--wma-button-color);
}
button#wma-billing-save:hover,
button#wma-shipping-save:hover {
	background: transparent;
	color: var(--wma-button-color);
    border-color: var(--wma-button-color);
}	
button#wma-billing-cancel,
button#wma-shipping-cancel {
    padding: 0;
    background: transparent;
	outline: none;
}

.wma-address input {
    display: none;
}
.wma-address label {
    position: relative;
    padding-left: 40px;
    margin: 0 !important;
    display: inline-block;
}
.wma-address label:before {
    content: "";
    width: 16px;
    height: 16px;
    border: 1px solid var(--wma-input-border-color);
    display: block;
    position: absolute;
    left: 0;
    top: 4px;
    border-radius: 100px;
}
.wma-address input[type="radio"]:checked+label:before {
    border: 1px solid var(--wma-input-border-color);
    background: transparent;
}
.wma-address input[type="radio"]:checked+label:after {
    content: "";
    position: absolute;
    display: block;
    left: 4px;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--wma-input-border-color);
    border-radius: 20px;
}