@charset "UTF-8";
/* CSS Document */

.ca-field-list-wrapper {
    background-color: var(--ca-light-gray);
    border-radius: 10px;
    padding: 10px 20px;
}

.ca-field-list-wrapper h2 {
    margin-bottom: 30px !important;
}

.ca-field-list-description {
    margin-bottom: 30px;
}

.ca-field-list-wrapper-row {
    padding: 0;
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted var(--ca-dark-gray);
}

.ca-field-list-wrapper-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.ca-field-list-label {
    gap: 20px;
}

/* for desktop */
@media all and (min-width: 981px) {
    
    .ca-field-list-wrapper-row {
        flex-direction: row;
    }
    
    .ca-field-list-label {
        width: 18%;
        padding: 5px 10px;
        border-radius: 3px;
    }

    .ca-field-list-value {
        width: 82%;
        padding-top: 5px;
    }

}

/* Responsive Styles Tablet */
@media all and (min-width: 481px) and (max-width: 980px) {

    .ca-field-list-wrapper-row {
        flex-direction: row;
    }

    .ca-field-list-label {
        width: 20%;
        min-width: 150px;
        padding: 5px 10px;
        border-radius: 3px;
    }

    .ca-field-list-value {
        width: 80%;
        padding-top: 5px;
    }


}

/* for smartphone portrait */
@media all and (max-width: 480px) {

    .ca-field-list-wrapper-row {
        flex-direction: column;
    }

    .ca-field-list-label {
        width: 100%;
        margin-bottom: 5px;
    }

    /* add extra margin below the label when displaying the social media icons */
    .ca-field-list-label.social {
        margin-bottom: 12px;
    }
    
    .ca-field-list-value {
        width: 100%;
    }


}
