.page--content {
    flex: 1 1 auto;
}

.page--table table {
    border: unset;
}

.page--table table tr {
    border: unset;
    border-bottom: 1px solid var(--color-black);
}

.title--left h1 {
    font-size: 22px;
    font-weight: 700;

    color: var(--color-font);
    margin-bottom: 7px;
}

.page--table th {
    font-size: 14px;
    font-weight: 700;

    border: unset;
    padding: 0 20px;
}

.page--table td {
    font-size: 14px;
    font-weight: 400;

    border: unset;
    text-align: center;
    border-bottom: 1px solid var(--color-black);
}

#page--title {
    border-bottom: 1px solid var(--color-black);
}

.page--title .title--left {
    padding-bottom: 15px;
}

.button--address {
    height: 56px;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--color-font);
}

/* form */

.address-form .fieldset {
    margin: 8px 0;
    position: relative;
}

.address-form .fieldset input {
    width: 100%;
    height: 60px;
    max-width: 512px;
}

#new-adresse-form,
#adresse-form {
    padding-top: 40px;
}

.group-button {
    padding-top: 40px;
}

.address-form .fieldset select {
    width: 100%;
    max-width: 512px !important;
}

.address-form .fieldset input:focus {
    border-color: blue
}



.address-viilage {
    max-width: 290px;
}

.button--group {
    max-width: 600px;
}

.address-form .fieldset .form-label {
    position: absolute;
    cursor: text;
    z-index: 1;
    top: -5px;
    left: 10px;
    font-size: 14px;
    background: #fff;
    padding: 0 10px;
    color: #999;
    transition: all .3s ease;
    text-wrap: nowrap;
}

.address-form .fieldset input:focus+label,
.address-form .fieldset input:valid+label {
    font-size: 11px;
    top: -5px
}

.address-form .fieldset input:focus+label {
    color: blue
}

/*address content*/
.address__line {
    border-bottom: 1px solid var(--color-black);
    padding: 10px 0 3px 0;
}

.address__line .address__line-actions {
    display: flex;
}

.address__line .address__line-details {
    padding: 2px 0 14px;
    display: none;
}

.address__line .address__line-details label,
.address__line-actions .address__line-action-left label {
    font-size: 14px;
}

.address__line .address__line-details label {
    display: block;
}

.address__line-actions .address__line-action-left {
    flex: 1;
}

.address__line-actions .address__line-action-right {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.address__line-actions .address__line-action-right span {
    display: inline-block;
    cursor: pointer;
}



/* @media screen and (max-width: 900px) {

    .address-form .fieldset select {

        max-width: 555px;
    }

} */

@media screen and (max-width: 600px) {
    .button--address {
        padding: 20px 150px !important;
    }

    #createButtonContainer {
        margin-bottom: 28px;
        justify-content: center;
    }
}