/*  ------  local   ------  */
body, html {
    overflow-x: clip !important;
}
body, html {
    overflow: unset;
}
.dsl__mobile{
    display: none;
}
.ds__only-mobile{
    display: none;
}

/* --- ------------------------------------------------------ --- */
/* Mobile */
@media (max-width: 480px) {
    .dsl__mobile{
        display: block;
    }
    .ds__only-mobile{
        display: block;
    }
    .dsl__page .dsl__compare-item-title {
        font-size: 22px;
        line-height: 1em;
        padding-bottom: 15px;

    }
}

/* Tablet Portrait */
@media only screen
and (min-device-width : 834px)
and (max-device-width : 1112px)
and (orientation : portrait)
and (-webkit-min-device-pixel-ratio: 2) {
    .dsl__mobile{
        display: none;
    }
    .dsl__page .dsl__header-title {
        /*font-size: 36px;*/
        font-size: 35px;
      }
      .ds__only-mobile{
        display: none;
    }
    .dsl__page .dsl__compare-item-content {
        width: 216px !important;
    }
}

/* Tablet Landscape */
@media only screen
and (min-device-width : 834px)
and (max-device-width : 1112px)
and (orientation : landscape)
and (-webkit-min-device-pixel-ratio: 2) {
    .dsl__mobile{
        display: none;
    }
    .dsl__page .dsl__header-title {
        font-size: 42px;
    }
    .ds__only-mobile{
        display: none;
    }
}

