html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

video::-webkit-media-controls {
    display: none !important;
}

video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

@font-face {
    font-family: 'Bariol';
    src: url('fonts/bariol_regular-webfont.eot');
    src: url('fonts/bariol_regular-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/bariol_regular-webfont.woff') format('woff'), url('fonts/bariol_regular-webfont.ttf') format('truetype'), url('fonts/bariol_regular-webfont.svg#bariol_regularregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

.gpxUI-main-container {
    font-family: 'Bariol', 'Arial';
    font-weight: 300;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: #fff;
    background-color: transparent;
    z-index: 20;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow:column nowrap;
}

#modal-root.gpxUI-main-container {
    background-color: rgba(119, 186, 255, 0.72);
}


/*
 * CSS sprites
 */
.gpxUI-sprite {
    display: inline-block;
    overflow: hidden;
    background-repeat: no-repeat;
    background-image: url(img/css_sprites.png);
}
#ui-root.dark .gpxUI-caption-img {
    color: black !important;
}
#ui-root.dark .gpxUI-sprite {
    background-image: url(img/css_sprites_dark.png) !important;
}
.gpxUI-blue-button .gpxUI-button-left {
    width: 25px; height: 60px;
    background-position: -338px -222px;
}
.gpxUI-blue-button .gpxUI-button-right {
    width: 25px; height: 60px;
    background-position: -367px -222px;
}
.gpxUI-button-drag-menu {
    width: 64px; height: 64px;
    background-position: -270px -222px;
}
.gpxUI-close-icon {
    width: 40px; height: 40px;
    background-position: -187px -155px;
}
.gpxUI-cyan-icon-next {
    width: 36px; height: 36px;
    background-position: -231px -155px;
}
.gpxUI-cyan-icon-thumbdown {
    width: 36px; height: 36px;
    background-position: -271px -155px;
}
.gpxUI-game-error-img {
    width: 200px; height: 149px;
    background-position: -2px -2px;
}
.gpxUI-game-title-box-left {
    width: 130px; height: 66px;
    background-position: -2px -222px;
}
.gpxUI-game-title-box-right {
    width: 130px; height: 66px;
    background-position: -136px -222px;
}
.gpxUI-icon-facebook {
    width: 36px; height: 36px;
    background-position: -311px -155px;
}
.gpxUI-loading-bar-head {
    width: 31px; height: 16px;
    background-position: -187px -199px;
}
.gpxUI-orange-button .gpxUI-button-left {
    width: 25px; height: 60px;
    background-position: -2px -292px;
}
.gpxUI-logo {
    width: 181px; height: 63px;
    background-position: -2px -155px;
}
.gpxUI-orange-button .gpxUI-button-right {
    width: 25px; height: 60px;
    background-position: -31px -292px;
}
.gpxUI-orange-icon-next {
    width: 36px; height: 36px;
    background-position: -351px -155px;
}
.gpxUI-orange-icon-thumbup {
    width: 36px; height: 36px;
    background-position: -118px -292px;
}
.gpxUI-rotate-screen-img {
    width: 200px; height: 149px;
    background-position: -206px -2px;
}
.gpxUI-star-grey {
    width: 16px; height: 16px;
    background-position: -222px -199px;
}
.gpxUI-star-yellow {
    width: 16px; height: 16px;
    background-position: -242px -199px;
}
.gpxUI-white-button .gpxUI-button-left {
    width: 25px; height: 60px;
    background-position: -60px -292px;
}
.gpxUI-white-button .gpxUI-button-right {
    width: 25px; height: 60px;
    background-position: -89px -292px;
}

/* end CSS sprites */

.gpxUI-loader {
    background-image: url('img/loading.gif');
    background-size: 100px 50px;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Buttons */


.playButtonStyled {

    color: white;
    height: 60px;
    min-width:220px;
    text-align: center;
    border: 3px solid white;
    border-radius: 1em;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
}

.playButtonStyled::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, white, transparent);
    left: -100%;
    transition: 0.5s;
}

.playButtonStyled:hover::before {
    left: 100%;
}
.playButtonStyled .gpxUI-button-label{
    font-size: 20px;
    line-height: 60px;
}
.gpxUI-button {
    position: relative;
    margin: 0 auto;
    cursor: pointer;
    display: table;
    height: 60px;
    min-width: 190px;
    z-index: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gpxUI-button-left,
.gpxUI-button-right,
.gpxUI-button-center,
.gpxUI-button-label {
    position: absolute;
    top: 0;
    height: 60px;
}

.gpxUI-button-left {
    left: -24px;
}

.gpxUI-button-right {
    right: -24px;
}

.gpxUI-button-center {
    background-position: 0 0;
    width: 100%;
    z-index: -1;
}

.gpxUI-orange-button .gpxUI-button-center {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAA8CAYAAACn8dD6AAAAU0lEQVQYlaWQMQqAQAwEh0V8tk+z8x+CpVaClXe3FkrwGlFsBia7BBJsWwA3pHGApeMMcI+FQDhQHvVF5ZP+WZBqzaEx2wtoLdf5bNNs0bRQP+cA73dCpk7H9NYAAAAASUVORK5CYII=');
}

.gpxUI-white-button .gpxUI-button-center {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAB4CAIAAAC8Wg/XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjI2OTQzNDNBRTgzOTExRTU5ODQwRDRFQUUwODAyQkY0IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjI2OTQzNDNCRTgzOTExRTU5ODQwRDRFQUUwODAyQkY0Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MjYxRTQ5RUJFODM4MTFFNTk4NDBENEVBRTA4MDJCRjQiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MjYxRTQ5RUNFODM4MTFFNTk4NDBENEVBRTA4MDJCRjQiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5rGkYaAAAAKklEQVR42mL4//8/EwMDAwo22vsCRDNgkxsKmFT3qz78OaT9i8f9AAEGAHR6F4SLw8WGAAAAAElFTkSuQmCC');
}

.gpxUI-button-label {
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    text-transform: uppercase;
    line-height: 60px;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-left: -20px;
    padding: 0 20%;
    width: 80%;
}

.gpxUI-orange-button .gpxUI-button-label {
    text-shadow: -1px -1px 0 #fc8918, 1px -1px 0 #fc8918, -1px 1px 0 #fc8918, 1px 1px 0 #fc8918, 2px 2px 3px #fc8918;
}

.gpxUI-white-button .gpxUI-button-label {
    color: #43bde3;
}

.gpxUI-button-icon {
    position: absolute;
    top: 12px;
    right: -10px;
    z-index: 1;
}

.gpxUI-buttons-container {
    display: flex;
}

.gpxUI-buttons-container .gpxUI-button {
    min-width: 50px;
    width: calc(50% - 55px);
}

.gpxUI-three-buttons .gpxUI-button {
    width: calc(33% - 55px);
}

.gpxUI-buttons-container .gpxUI-button {
    min-width: 50px;
    width: calc(50% - 55px);
}

.gpxUI-buttons-container .gpxUI-button.gpxUI-big-button {
    width: 50%;
}


/* UI - Intro / Play Game */
#blur-image {
    width: 100%;
    height: 100%;
    -webkit-filter: blur(px);
    filter: blur(20px);
    -webkit-backdrop-filter: blur(18px);
    background-position: center!important;
    background-repeat: no-repeat!important;
    background-size: cover !important;
    position:absolute;
    top:0px;
    left:0px;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    z-index:-1;
}

.gpxUI-game-info {
    z-index:1;
}
.gpxUI-game-icon {
    display: block;
    margin: 0 auto;
    width: 135px;
    height: 135px;
    border-radius: 30px;
    border: 6px solid #0d7fc0;
}

.gpxUI-publisher-logo {
    display: block;
    margin: 0 auto 30px;
    max-height: 60px;
}

.gpxUI-game-title {
    padding-bottom: 0;
    position: relative;
    margin: 30px auto 0;
    display: table;
    text-align: center;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    z-index:1;
}

.gpxUI-game-title, .gpxUI-popup-title{
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABCCAYAAACW2bxLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjVGMDY4ODMwOEJCNTExRTU5REJCRDZENkQxNUQyM0Y4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjVGMDY4ODMxOEJCNTExRTU5REJCRDZENkQxNUQyM0Y4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDY4RTUxRkY4QkI1MTFFNTlEQkJENkQ2RDE1RDIzRjgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDY4RTUyMDA4QkI1MTFFNTlEQkJENkQ2RDE1RDIzRjgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5TNHe9AAAAaklEQVR42mJgWHHjPxPDOwYGJoZfIIIBF/H/P5D4+xfGYvgPYyEIiBgDXiUMWHT8w6cE3SgGEiz/9hXuBUYgwQj3DCMjFgk46y/IQY+eAQkmIGJgZgYRMBafABcDExsr8ymgPf+RQgggwACoc0dymHzqnAAAAABJRU5ErkJggg==');
}

.gpxUI-game-title-box-left,
.gpxUI-game-title-box-right {
    position: absolute;
    top: 0;
    z-index: -1;
}

.gpxUI-game-title-box-left {
    left: -129px;
}

.gpxUI-game-title-box-right {
    right: -129px;
}

.gpxUI-game-title-box-center {
    display: block;
    margin: 0 -110px;
    text-transform: uppercase;
    text-align: center;
    line-height: 66px;
    text-shadow: -1px -1px 0 #076baa, 1px -1px 0 #076baa, -1px 1px 0 #076baa, 1px 1px 0 #076baa, 2px 2px 3px #076baa;
    white-space: nowrap;
    background-repeat: repeat-x;
}

.gpxUI-game-info .gpxUI-button {
    margin-top: 30px;
}

/* Box notice */
.gpxUI-box-notice {
    position: absolute;
    left: 0;
    width: 100%;
    color: #0072e8;
    background-color: #fff;
    bottom: 0;
    font-size: 13px;
    padding: 4px 10px;
    line-height: 12px;
    text-align: justify;
    pointer-events: none;
    box-sizing: border-box;
    font-weight: normal;
    z-index:1;
}

.gpxUI-box-notice a {
    color: #0072e8;
    cursor: pointer;
    pointer-events: auto;
    text-decoration: underline
}

.gpxUI-box-notice.hide {
    position: relative;
    opacity: 0;
}

.gpxUI-box-notice.hide a {
    pointer-events: none;
}

/* Loading Bar */
.gpxUI-loading-bar-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
}

.gpxUI-loading-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 3%;
    background: #ffc000;
    background: -moz-linear-gradient(top, #ffc000 0, #fa8511 100%);
    background: -webkit-linear-gradient(top, #ffc000 0, #fa8511 100%);
    background: linear-gradient(to bottom, #ffc000 0, #fa8511 100%);
    margin: 0;
}

.gpxUI-loading-bar-head {
    position: absolute;
    right: -10px;
    top: -2px;
}

.gpxUI-loading-bar-container .gpxUi-box-loader {
    position: relative;
    margin: 0 auto;
    top: -40px;
}

/* Box loader */
.gpxUi-box-loader {
    width: 100px;
    height: 50px;
}

@media only screen and (max-height: 480px) {
    .gpxUI-publisher-logo {
        margin-bottom: 15px;
    }

    .gpxUI-game-info .gpxUI-game-title,
    .gpxUI-game-info .gpxUI-orange-button {
        margin-top: 15px;
    }

    .gpxUI-game-info {
        zoom: 0.65;
    }

    .gpxUI-box-notice {
        transform: none;
    }
}

@media only screen and (max-height: 300px) {
    .gpxUI-game-info {
        zoom: 0.5;
    }

    .gpxUI-box-notice {
        font-size: 12px;
        padding: 2px 10px;
        line-height: 11px;
    }
}

.gpxUI-rotate-screen-img, .gpxUI-game-error-img {
    width: 200px;
    height: 149px;
}

.gpxUI-caption-img {
    text-align: center;
    margin-top: 10px;
    width: 200px;
}

/* Popup */
.gpxUI-popup {
    background-color: #f0f0ef;
    border-radius: 25px;
    box-shadow: 2px 2px 2px 2px grey;
    width: 95%;
    max-width: 360px;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    top: 15px;
}

.gpxUI-scrolled-content {
    max-height: 200px;
    overflow-y: scroll;
    margin-bottom: 15px;
}

.gpxUI-scrolled-content > *:last-child {
    margin-bottom: 5px;
}

.gpxUI-popup-no-title {
    top: 0;
}

.gpxUI-close-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
    z-index: 1;
}

.gpxUI-popup-title {
    display: table;
    margin: -55px auto 20px;
    position: relative;
    line-height: 66px;
    font-size: 18px;
    text-transform: uppercase;
    z-index: 0;
}

.gpxUI-popup-title-left,
.gpxUI-popup-title-right {
    width: 130px;
    height: 66px;
    position: absolute;
    top: 0;
    z-index: -1;
}

.gpxUI-popup-title-left {
    left: -129px;
}

.gpxUI-popup-title-right {
    right: -129px;
}

.gpxUI-popup-title-center {
    display: block;
    margin: 0 -110px;
    text-align: center;
    text-shadow: -1px -1px 0 #076baa, 1px -1px 0 #076baa, -1px 1px 0 #076baa, 1px 1px 0 #076baa, 2px 2px 3px #076baa;
}

.gpxUI-text-container-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 3px 3px 2px #e6e6e6;
    padding: 10px 5px 10px 15px;
    margin-bottom: 20px;
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 160px;
}
.gpxUI-text-container-box p{
    color: #547894;
    padding-right: 10px;
}

/* Cross Promotion */
.gpxUI-games-container-box{
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 360px;
    padding-right: 10px;
    min-height: 250px;
}
.gpxUI-list-game-row{
    background: #fff;
    height: 88px;
    width: 100%;
    border-radius: 20px;
    border: solid 2px #e6e6e6;
    position: relative;
    margin-bottom: 6px;
    cursor: pointer;
    overflow: hidden;
}
.gpxUI-list-game-row .gpxUI-list-game-icon{
    width: 78px;
    height: 78px;
    margin: 5px 6px;
    border-radius: 10px;
}
.gpxUI-list-game-row .gpxUI-list-game-info {
    position: absolute;
    top: 16px;
    left: 100px;
    margin: 0;
}
.gpxUI-list-game-row .gpxUI-list-game-name {
    display: block;
    color: #547894;
    text-transform: uppercase;
    font-size: 15px;
    padding-right: 40px;
}
.gpxUI-stars-container span {
    float: left;
    margin: 8px 2px 3px;
}
.gpxUI-list-game-row .gpxUI-cyan-icon-next{
    position: absolute;
    right: 10px;
    top: 27px;
}
.gpxUI-button-drag-menu{
    cursor: pointer;
    position: fixed;
    top: 200px;
    left: -3px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0 21px 21px 0;
    zoom: 0.8;
    visibility:hidden;
}
.gpxUI-button-drag-menu.visible {
    visibility: visible;
}


/* How to play */
.gpxUI-htp{
    max-height: calc(100% - 45px);
    max-width: 95%;
}
.gpxUI-htp .gpxUI-popup-title{
    margin-bottom: 15px;
}
.gpxUI-htp-landscape{
    max-width: 80%;
}
.gpxUI-htp-box{
    background: #fff;
    border-radius: 15px;
    box-shadow: 3px 3px 2px #e6e6e6;
    padding: 5px;
    margin: 0 0 10px;
    color: #547894;
    font-size: 14px;
}
.gpxUI-img-htp-container{
    position: relative;
}
.gpxUI-cyan-icon-prev,
.gpxUI-cyan-icon-next{
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    cursor: pointer;
}
.gpxUI-cyan-icon-prev{
    left: 0;
}
.gpxUI-cyan-icon-next.gpxUI-cyan-icon-prev{
    transform: rotateY(180deg) translate(0, -50%);
    -ms-transform: rotateY(180deg) translate(0, -50%);
    -webkit-transform: rotateY(180deg) translate(0, -50%);
    transform: rotateY(180deg) translate(0, -50%);
}
.gpxUI-htp-box img {
    position: relative;
    margin: 5px auto;
    display: block;
    border-radius: 5px;
    max-width: calc(100% - 80px);
    display:none;
}
.gpxUI-htp-box img.active {
    display:block;
}
.gpxUI-htp-portrait img{
    max-height: 30vh;
    width: auto;
}
.gpxUI-circle-list {
    margin: 0 auto 5px;
    display: table;
}
.gpxUI-circle-list .gpxUI-circle {
    border-radius: 10px;
    height: 8px;
    width: 8px;
    border: 1px solid #a2b4c1;
    display: inline-block;
    margin: 0 2px;
}
.gpxUI-circle-list .gpxUI-circle.active {
    background-color: #a2b4c1;
}
.gpxUI-img-htp-description{
    padding: 0 5px 5px;
}
.gpxUI-htp-landscape{

}

@media only screen and (max-height: 480px) {
    .gpxUI-games-container-box {
        max-height: 250px;
    }
    .gpxUI-htp{
        zoom: 0.8;
        padding: 10px;
    }
}

@media only screen and (orientation: portrait) and (max-width: 360px) {
    .gpxUI-popup {
        top: 18px;
    }

    .gpxUI-popup-title {
        zoom: 0.7;
        margin-bottom: 15px;
    }

    .gpxUI-buttons-container {
        display: block;
    }

    .gpxUI-buttons-container .gpxUI-button {
        margin-bottom: 15px;
        width: 50%;
    }

    .gpxUI-buttons-container .gpxUI-button:last-child {
        margin-bottom: 0;
    }
}

@media only screen and (orientation: landscape) and (max-height: 360px), screen and (max-width: 280px) {
    .gpxUI-popup {
        zoom: 0.75;
    }
}
@media only screen and (orientation: landscape) and (max-height: 360px) {
    .gpxUI-htp{
        zoom: 0.7;
    }
}
@media only screen and (orientation: landscape) and (max-height: 280px) {
    .gpxUI-popup, .gpxUI-htp {
        zoom: 0.6;
    }
}

@media only screen and (min-width: 600px) {
    .gpxUI-htp{
        max-width: 600px;
    }
}