#ctce-main-form .ctce-contact-field {
    display: flex;
    justify-content: space-between;
}

#ctce-main-form .ctce-contact-field div {
    width: 45%;
}

#ctce-main-form .ctce-contact-field label {
    margin-top: 20px;
}

#ctce-main-form .ctce-contact-field input[type="text"] {
    max-width: 400px;
    background-color: white;
    border-radius: 5px;
    margin-bottom: 0px;
}

#ctce-postcode {
    width: auto !important;
}

#ctce-main-form .ctce-contact-field .error-text {
    color: red;
    font-size: 12px;
    width: 100%;
}

#ctce-main-container {
    width: 70%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0% 15%;
    background-color: #f6f6f6;
    padding: 20px;
    border: 1px solid #ebebeb !important;
    color: #5e5e5e !important;
    border-radius: 10px;
}

#ctce-contacts-container {
    background-color: inherit !important;
    border: 1px solid #ebebeb !important;
    border-radius: 1px;
    border-bottom: unset !important;
} 


#ctce-contacts-listing th {
    border: unset;
    border-bottom: 1px solid #ebebeb !important;
}

#ctce-contacts-listing tr {
    background-color: inherit;
}

#ctce-contacts-listing td {
    color: #5e5e5e !important;
    border: unset;
    border-bottom: 1px solid #ebebeb !important;
}

#ctce-contacts-listing tr.editing {
    background-color: #f8ba43;
}

#ctce-contacts-listing {
    margin-bottom: unset;
}

#ctce-main-container .error {
    border-color: red !important;
}

#ctce-submit-button {
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;
    background-color: #22abc5;
    border: 0px;
}

#ctce-submit-button,
#ctce-contacts-listing .dashicons {
    cursor: pointer;
}

#ctce-contacts-listing .dashicons {
    border: unset;
    background-color: transparent;
    outline: none;
    padding: 0px;
}

#ctce-msg-container {
    color: black;
    padding: 20px;
}

#ctce-msg-wrapper {
    position: absolute;
    z-index: 10000;
    left: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
}

#ctce-contacts-listing #ctce-contact-data-header {
    width: 90%;
}
#ctce-contacts-listing #ctce-contact-edit-header,
#ctce-contacts-listing #ctce-contact-delete-header {
    width: 5%;
}

/* Mobile */

@media only screen and (max-width: 750px) {

    #ctce-main-container {
        width: 100%;
        margin: 0%;
    }

    #ctce-main-form .ctce-contact-field {
        flex-direction: column;
    }

    #ctce-main-form .ctce-contact-field div {
        width: 100%;
    }

}