.integrator-status .heading-section {
    position: relative;
    background-color: #f2f2f2;
}

.integrator-status section .section-padding {
    padding: 100px 0;
}

.integrator-status section .section-padding.header-content {
    padding-top: 87px;
}

.integrator-status .heading-section .section-header {
    margin-bottom: 96px;
}

.integrator-status .heading-section .certifications {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.integrator-status .heading-section .certifications .certification {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    min-width: 15%;
}

.integrator-status .heading-section .certifications .certification img {
    width: 142px;
    height: 142px;
    margin-bottom: 23px;
}

.integrator-status .heading-section .certifications .certification.inactive img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray; /* IE 6-9 */
    opacity: 0.33;
}

.integrator-status .heading-section .certifications .certification .cert-label {
    color: #4E4E4E;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
}

.integrator-status .heading-section .certifications .certification.inactive .cert-label {
    display: none;
}

.integrator-status .heading-section .certifications .certification .cert-detail {
    display: none;
}

.integrator-status .heading-section .certifications .certification.inactive .cert-detail {
    display: block;
    text-align: center;
    margin-top: -4px;
}

.integrator-status .heading-section .certifications .certification .cert-detail .requirements {
    display: block;
    padding: 7px 20px;
    border-radius: 3px;
    background-color: #003E69;
    color: #fff;
    margin-bottom: 12px;
}

.integrator-status .heading-section .certifications .certification .cert-detail .requirements:focus,
.integrator-status .heading-section .certifications .certification .cert-detail .requirements:hover {
    text-decoration: none;
}

.integrator-status .heading-section .certifications .certification .cert-detail .apply {
    display: block;
    color: #4A90AD;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
}

.integrator-status .location-status-section .section-header {
    margin-bottom: 56px;
}

.integrator-status .location-status-section .section-header .certifications-legend .level {
    margin: 0 0.5em;
}


/**************/
/* team table */
/**************/
.integrator-status .location-bar {
    width: calc(100% + 64px);
    margin-left: -32px;
    border-radius: 3px;
    background-color: #F2F2F2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 24px 32px;
    margin-bottom: 16px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.integrator-status .location-bar img {
    height: 64px;
    width: 64px;
    margin-right: 21px;
}

.integrator-status .location-bar h4 {
    color: #4E4E4E !important;
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
}

.integrator-status .location-bar .location-bar-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}

.integrator-status .location-bar .expander {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.integrator-status .location-bar .expander span {
    margin-right: 9px;
}

.integrator-status .location-bar .expander::after {
    content:"‹";
    display: block;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    font-size: 50px;
    font-weight: 100;
    color: #4E4E4E;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: margin 200ms ease, -webkit-transform 200ms ease;
    transition: margin 200ms ease, -webkit-transform 200ms ease;
    -o-transition: transform 200ms ease, margin 200ms ease;
    transition: transform 200ms ease, margin 200ms ease;
    transition: transform 200ms ease, margin 200ms ease, -webkit-transform 200ms ease;
}

.integrator-status .expanded .location-bar .expander::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    margin-right: -6px;
    margin-left: 6px;
}

.integrator-status .team-table {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-bottom: 56px;
    display: none;
}

.integrator-status .team-table .table-headers {
    padding: 10px 15px;
    background-color: #F2F2F2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    border-radius: 3px;
}

.integrator-status .team-table .table-headers span {
    display: inline-block;
    color: #445C6D;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    text-align: left;
    flex: 1 1 0;
}

.integrator-status .team-table .table-headers span:last-of-type {
    flex: 0 0 108px;
}

.integrator-status .team-table .table-record {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0 15px;
    height: 72px;
    border-bottom: 1px solid #CFCFCF;
}

.integrator-status .team-table .table-record:last-of-type {
    border-bottom: none;
}

.integrator-status .team-table .table-record span {
    text-align: left;
}

.integrator-status .team-table .table-record .table-cell {
    flex: 1 1 0;
}

.integrator-status .team-table .table-record .table-cell:last-of-type {
    flex: 0 0 108px;
}

.integrator-status .team-table .table-record .table-cell .field {
    display: none;
}

.integrator-status .team-table .table-record .table-cell .value {
    font-size: 14px;
    line-height: 17px;
    font-weight: 300;
}

.integrator-status .team-table .table-record .table-cell .summary {
    display: none;
}

.integrator-status .incomplete {
    color: #9B9B9B;
}

.integrator-status .in-progress {
    color: #E8AF22;
}


.integrator-status .complete {
    color: #8DC63E;
}

.integrator-status .credential {
    color: #445C6D;
}

.integrator-status .core {
    color: #003E69;
}

.integrator-status .gold {
    color: #E8AF22;
}

.integrator-status .team-table .contact-text {
    display: block;
    text-align: center;
    color: #4E4E4E;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    margin-top: 12px;
}



/**********************/
/* tablet only styles */
/**********************/
@media (min-width: 40.063em) and (max-width: 63.9375em) {
}


/**********************/
/* tablet-down styles */
/**********************/
@media (max-width: 63.9375em) {
}


/**********************/
/* mobile only styles */
/**********************/
@media (max-width: 40em) {
    .integrator-status .heading-section .section-header {
        margin-bottom: 40px;
    }

    .integrator-status section .section-padding {
        padding: 50px 0 56px;
    }

    .integrator-status .heading-section .certifications {
        display: block;
        width: 50%;
        margin: auto;
        overflow: visible;
    }

    .integrator-status .heading-section .certifications .slick-list {
        overflow: visible;
    }

    .integrator-status .heading-section .certifications .certification {
        min-width: 0;
        min-width: unset;
        margin-bottom: 30px;
        padding: 0 5px;
        transform: scale(.9);
        transition: transform 200ms ease;
    }

    .integrator-status .heading-section .certifications .certification.slick-current {
        transform: scale(1);
    }


    /**************/
    /* team table */
    /**************/

    .integrator-status .location-bar {
        width: calc(100% + 32px);
        margin-left: -16px;
        position: relative;
    }

    .integrator-status .location-bar .location-bar-text {
        flex-wrap: wrap;
    }

    .integrator-status .location-bar .location-bar-text > * {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .integrator-status .location-bar .expander span {
        margin-right: 0;
    }

    .integrator-status .location-bar .expander::after {
        position: absolute;
        top: 40%;
        right: 23px;
    }

    .integrator-status .team-table .table-headers {
        display: none;
    }

    .integrator-status .team-table .table-record {
        flex-direction: column;
        margin: 0 30px;
        height: auto;
        border-bottom: none;
    }

    .integrator-status .team-table .table-record .table-cell {
        width: 100%;
        margin-bottom: 16px;
        flex: 0;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        display: none
    }

    .integrator-status .team-table .table-record.expanded {
        margin-bottom: 16px;
    }

    .integrator-status .team-table .table-record.expanded .table-cell {
        display: flex;
    }

    .integrator-status .team-table .table-record .table-cell:last-of-type {
        flex: none;
    }

    .integrator-status .team-table .table-record .table-cell span {
        width: 50%;
    }

    .integrator-status .team-table .table-record .table-cell .summary,
    .integrator-status .team-table .table-record .table-cell .value {
        padding-left: 16px;
    }

    .integrator-status .team-table .table-record .table-cell.name {
        background-color: #f2f2f2;
        padding: 7px 13px;
        width: calc(100% + 26px);
        display: flex;
    }

    .integrator-status .team-table .table-record .table-cell.name::after {
        content:"‹";
        display: block;
        -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        transform: rotate(270deg);
        font-size: 30px;
        font-weight: 100;
        color: #B3B4BD;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        /*-webkit-transition: margin 200ms ease, -webkit-transform 200ms ease;*/
        /*transition: margin 200ms ease, -webkit-transform 200ms ease;*/
        /*-o-transition: transform 200ms ease, margin 200ms ease;*/
        /*transition: transform 200ms ease, margin 200ms ease;*/
        /*transition: transform 200ms ease, margin 200ms ease, -webkit-transform 200ms ease;*/
    }

    .integrator-status .team-table .table-record.expanded .table-cell.name::after {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        margin-right: -3px;
        margin-left: 3px;
    }

    .integrator-status .team-table .table-record .table-cell.name .value {
        font-weight: 500;
        font-size: 13px;
        line-height: 16px;
        padding-left: 0;
    }

    .integrator-status .team-table .table-record .table-cell .field {
        display: inline-block;
        color: #445C6D;
        font-size: 14px;
        font-weight: 500;
        line-height: 17px;
    }

    .integrator-status .team-table .table-record .table-cell.name .field {
        display: none;
    }

    .integrator-status .team-table .table-record .table-cell .summary {
        display: inline-block;
        font-size: 13px;
        line-height: 16px;
        font-weight: 500;
    }

    .integrator-status .team-table .table-record .table-cell .summary.incomplete {
        font-weight: 300;
    }
}
