/********** iPhone SE portrait ********/
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 1) {
    .btn-secondary {
        max-width: 280px;
    }

    .xs-show {
        display: block;
    }

    .xs-hide {
        display: none;
    }
}

/********** iPhone SE landscape ********/
@media only screen and (min-width: 375px) and (max-width: 667px) and (orientation: landscape) {}


/********** iPhone 6,7,8  portrait********/
@media only screen and (min-width: 375px) and (max-width: 667px) and (orientation: portrait) {}

/********** iPhone 6,7,8 landscape ********/
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {}

/********** Galaxy S9+ portrait ********/
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: portrait) {
    
    .xs-show {
        display: none;
    }

    .xs-hide {
        display: block;
    }
}

/********** Galaxy S9+ landscape ********/
@media screen and (min-width: 360px) and (max-height: 640px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {}

/********** iPhone 6+,7+,8+ portrait ********/
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: portrait) {}

/********** iPhone 6+,7+,8+ landscape ********/
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {}