.device-row {
    width: 100%;
    display: flex;
}
.device-row:nth-of-type(odd) {
    background-color: #F1F3F5;
}
.device-row > div {
    padding: 13px 15px;
}
.device-row > div:first-of-type {
    min-width: 804px;
    border-right: 6px solid white;
}
@media (max-width: 1350px) {
    .device-row > div:first-of-type {
        min-width: 600px;
    }
}
@media (max-width: 880px) {
    .device-row > div:first-of-type {
        min-width: 400px;
    }
}
@media (max-width: 750px) {
    .device-row {
        flex-direction: column;
    }
    .device-row > div:first-of-type {
        min-width: 100%;
        border-right: unset;
        padding-bottom: 0 !important        
    }
}
.device-row a {
    color: #10218B;
    text-decoration: none;
}
.xgn-accordion__body > div {
    padding: 30px 0;
    border-top: 1px solid #BBB7B0;
}
.xgn-accordion__body {
    transition: unset;
    max-height: 0;
}
.open .xgn-accordion__body {
    max-height: 100%;
}
