

@font-face {
    font-family: 'cq_monoregular';
    src: url('cqmono-webfont.woff2') format('woff2'),
         url('cqmono-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

html, body {
    height: 100%;
    width:100%;
    margin: 0;
}

html, body, input, textarea, select {
      background-color: #222222;
      color: #dddddd;
      font-family: cq_monoregular;
      font-size: 20px;
    }
    
input, textarea, select, .greydiv {
    background-color: #555555;
    border-style: none;
    padding: 10px;
    width: 100%;
}

 input:focus, textarea:focus, select:focus {
     outline: none;
 }
 
 input:active {
     background-color: #888888;
 }
 
 textarea {
     resize: vertical;
     /*height: 200px;*/
 }
      
table {
    border: none;
    width: 100%;
}
    
.titletext {
    font-size: 50px;
}

.subtext {
    font-size: 15px;
    color: #aaaaaa;
}

.yellowtext {
    color: rgb(212, 146, 17);
}

.orangetext {
    color: rgb(255, 77,  6);
}

.cyantext {
    color: rgb(0,   156, 137);
}

.content {
    padding:50px;
}

.smallcontent {
    max-width:500px;
}

a {
    color: rgb(0,   146, 62);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a:active {
    color: rgb(104, 141, 20);
}

a.yellowtext:active {
    color: rgb(255, 77,  6);
}

.noselect {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.noselect:focus {
    outline: none !important;
}

img::-moz-selection {
    background-color: transparent;
    color: #000;
}

img::selection {
    background-color: transparent;
    color: #000;
}

.gplay {
    background: url("gplay.svg") no-repeat;
}

.chevron_p {
    height: 25px;
    padding: 5px;
}

.chevron_l {
    width: 25px;
    padding: 5px;
}

.boxshadow {
    -webkit-box-shadow: 0px 0px 10px -1px rgba(60,60,60,1);
    -moz-box-shadow: 0px 0px 10px -1px rgba(60,60,60,1);
    box-shadow: 0px 0px 10px -1px rgba(60,60,60,1);
}

@media (max-width:799px) , (orientation: portrait) {
    
    .screenshotcontainer {
        width: 80%;
    }
    
    .landscape {
        display: none !important;
    }
    
}

@media (orientation: landscape) and (min-width:800px) {
    
    .screenshotcontainer {
        width: 60%;
    }
    
    .portrait {
        display: none !important;
    }
    
}


