/* Mixins.less
 * Snippets of reusable CSS to develop faster and keep code readable
 * ----------------------------------------------------------------- */
html,
body {
  height: 100%;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  background: #f8f8f8;
  color: #555;
}
* {
  transition: 0.2s linear color, 0.2s linear background-color, 0.2s linear background-image, 0.2s linear border-color;
  -moz-transition: 0.2s linear color, 0.2s linear background-color, 0.2s linear background-image, 0.2s linear border-color;
  -webkit-transition: 0.2s linear color, 0.2s linear background-color, 0.2s linear background-image, 0.2s linear border-color;
}
h1 {
  font-size: 48px;
  margin: 10px 0;
}
h2 {
  font-size: 26px;
  margin: 10px 0;
}
h3 {
  font-size: 20px;
  margin: 10px 0;
}
h4 {
  font-family: "PT Sans";
  font-size: 20px;
  margin: 10px 0;
}
h1,
h2,
h3 {
  color: #444;
  font-family: Roboto, sans-serif;
  font-weight: 100;
}
.center {
  display: block;
  text-align: center;
}
td.center {
  display: table-cell;
}
a {
  color: #567;
}
a:hover {
  color: #89a;
}
ul.nobullet {
  list-style: none;
}
ul.nobullet li i {
  width: 16px;
  text-align: center;
}
.top-area {
  background: -webkit-radial-gradient(circle, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.75)), url('../../home/img/bgs/gplaypattern.png');
  background: -moz-radial-gradient(circle, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.75)), url('../../home/img/bgs/gplaypattern.png');
  background: -o-radial-gradient(circle, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.75)), url('../../home/img/bgs/gplaypattern.png');
  background: radial-gradient(circle, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.75)), url('../../home/img/bgs/gplaypattern.png');
}
.navbar {
  background: transparent;
  border: none;
  z-index: 1;
}
.navbar .navbar-brand {
  font-family: 'PT Sans', sans-serif;
  font-size: 27px;
  font-weight: bold;
  padding: 12px 20px 0 15px;
  color: #ed930d;
  opacity: .5;
}
.navbar .navbar-brand .add {
  color: #c30;
  display: inline-block;
}
.navbar .navbar-nav {
  float: right;
}
.navbar .navbar-nav a {
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  opacity: .75;
}
.navbar .navbar-nav a:hover {
  background: inherit;
  opacity: 1;
}
#section-promo {
  text-align: center;
  position: relative;
}
#section-promo.homepage-promo {
  height: 380px;
}
#section-promo a.btn {
  border: 1px solid white;
  opacity: .75;
  color: white;
}
#section-promo a.btn:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}
#section-promo h1 {
  font-size: 60px;
  color: #eee;
  padding: 75px 0 50px;
  text-align: center;
  display: block;
  font-family: Roboto;
  font-weight: 100;
}
#section-promo img.central {
  margin: 70px 0 30px;
  border-radius: 15px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.75), 0 0 15px black;
  width: 256px;
  height: 256px;
}
#section-promo .copy {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px;
  font-size: 10px;
  color: #888;
}
#section-promo .productbar {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
#section-promo .productbar li {
  width: 285px;
  display: block;
  float: left;
  background-size: cover;
}
#section-promo .productbar li img {
  margin: 0 10px 0 0;
}
#section-promo .productbar li a {
  padding: 10px 20px;
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: left;
  color: #eee;
  height: 84px;
  cursor: pointer;
  position: relative;
  font-family: Roboto;
  background: rgba(0, 0, 0, 0.5);
}
#section-promo .productbar li a img {
  float: left;
}
#section-promo .productbar li a .title {
  font-size: 20px;
  margin: 5px 0 0;
}
#section-promo .productbar li a .desc {
  font-size: 15px;
  font-weight: 100;
}
#section-promo .productbar li a .corner {
  display: none;
}
#section-promo .productbar li.active a,
#section-promo .productbar li a:hover {
  color: #fff;
  background: rgba(255, 128, 0, 0.5);
  border-bottom: 5px solid orange;
}
#section-promo .productbar li.active a .corner {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  height: 20px;
  z-index: 2;
  border-top: 10px solid #333;
  border-left: 125px solid transparent;
  border-right: 125px solid transparent;
}
/*
.display {
    margin: auto;
    width: 500px;
    height: 282px;
    margin: 25px;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0,0,0,.25);

    .wrap {
        height: 282px;
        background-color: #eee;
        overflow-y: hidden;
        position: relative;

        img {
            max-width: 100%;
            height: auto;
        }

        .caption {
            position: absolute;
            top: -40px;
            padding: 10px;
            color: white;
            font-weight: bold;
            text-shadow: 0 0 1px black;
            background-color: rgba(0,0,0,.25);
            text-align: center;
            width: 100%;
            .transition(0.5s all);
        }

        &:hover .caption {
            top: 0;
        }

        .carousel-indicators {
            background: rgba(0, 0, 0, 0.2);
            padding: 5px;
            border-radius: 5px;
            bottom: 0;
            opacity: .25;
        }
    }
}
*/
.screenshot {
  width: 260px;
  margin: 10px 20px;
  display: inline-block;
}
.screenshot img {
  width: 240px;
  height: 160px;
  display: block;
  margin: auto;
  border-radius: 2px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}
.screenshot span {
  display: block;
  text-align: center;
  padding: 5px;
}
.install-links a {
  text-decoration: none;
  opacity: .5;
  margin: 5px 2px;
  display: inline-block;
  -webkit-transition: 0.25s all;
  -moz-transition: 0.25s all;
  -ms-transition: 0.25s all;
  -o-transition: 0.25s all;
  transition: 0.25s all;
}
.install-links a:hover {
  opacity: 1;
}
.section {
  padding: 20px 0;
  overflow: hidden;
  font-size: 14px;
}
.section p {
  padding: 0 0 10px;
}
.section.bordertop {
  border-top: 1px solid #ccc;
}
.section.border {
  border-bottom: 1px solid #ccc;
}
.section.white {
  background: white;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.container.narrow {
  width: 600px;
}
.clearfix {
  clear: both;
}
.left {
  margin-right: 30px;
  float: left;
}
.right {
  margin-left: 30px;
  float: right;
}
.signature {
  font-style: italic;
  text-align: right;
}
.platform-icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  margin: 10px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 10px;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.platform-icon.ubuntu:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5) inset, 0 0 20px #ffa115;
}
.platform-icon.debian:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5) inset, 0 0 20px #d70751;
}
.platform-icon.centos:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5) inset, 0 0 20px #932279;
}
.platform-icon.rhel:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5) inset, 0 0 20px #ff0000;
}
.platform-icon.freebsd:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5) inset, 0 0 20px #ff0000;
}
.platform-icon.ubuntu {
  background-color: #b06800;
  background-image: -webkit-gradient(radial, center center, 0, center center, 460, from(#ff9900), to(#b06800));
  background-image: -webkit-radial-gradient(circle, #ff9900, #b06800);
  background-image: -moz-radial-gradient(circle, #ff9900, #b06800);
  background-image: -o-radial-gradient(circle, #ff9900, #b06800);
  background-repeat: no-repeat;
}
.platform-icon.ubuntu > .image.ubuntu {
  display: block;
}
.platform-icon.debian {
  background-color: #6d0329;
  background-image: -webkit-gradient(radial, center center, 0, center center, 460, from(#f94b89), to(#6d0329));
  background-image: -webkit-radial-gradient(circle, #f94b89, #6d0329);
  background-image: -moz-radial-gradient(circle, #f94b89, #6d0329);
  background-image: -o-radial-gradient(circle, #f94b89, #6d0329);
  background-repeat: no-repeat;
}
.platform-icon.debian > .image.debian {
  display: block;
}
.platform-icon.centos {
  background-color: #601950;
  background-image: -webkit-gradient(radial, center center, 0, center center, 460, from(#d447b4), to(#601950));
  background-image: -webkit-radial-gradient(circle, #d447b4, #601950);
  background-image: -moz-radial-gradient(circle, #d447b4, #601950);
  background-image: -o-radial-gradient(circle, #d447b4, #601950);
  background-repeat: no-repeat;
}
.platform-icon.centos > .image.centos {
  display: block;
}
.platform-icon.rhel {
  background-color: #8a2222;
  background-image: -webkit-gradient(radial, center center, 0, center center, 460, from(#ff6666), to(#8a2222));
  background-image: -webkit-radial-gradient(circle, #ff6666, #8a2222);
  background-image: -moz-radial-gradient(circle, #ff6666, #8a2222);
  background-image: -o-radial-gradient(circle, #ff6666, #8a2222);
  background-repeat: no-repeat;
}
.platform-icon.rhel > .image.rhel {
  display: block;
}
.platform-icon.freebsd {
  background-color: #6a0606;
  background-image: -webkit-gradient(radial, center center, 0, center center, 460, from(#ff6666), to(#6a0606));
  background-image: -webkit-radial-gradient(circle, #ff6666, #6a0606);
  background-image: -moz-radial-gradient(circle, #ff6666, #6a0606);
  background-image: -o-radial-gradient(circle, #ff6666, #6a0606);
  background-repeat: no-repeat;
}
.platform-icon.freebsd > .image.freebsd {
  display: block;
}
.language-icons {
  margin: 40px 0;
}
.language-icons img {
  margin: 0 15px;
}
.stack {
  overflow: hidden;
  width: 935px;
  margin: auto;
}
.stack .block {
  float: left;
}
.stack h3 {
  margin: 20px 0;
}
.stack img {
  opacity: .75;
}
.stack .plus {
  font-size: 64px;
  vertical-align: top;
  color: #888;
  margin: 65px 30px 0;
}
#section-downloads {
  background-image: url('../../home/img/bgs/gplaypatternbw.png');
  box-shadow: 0 0 5px black inset;
  padding: 25px;
  text-align: center;
}
#section-downloads h1 {
  margin: 0 0 20px;
  color: #eee;
}
#section-used-by {
  text-align: center;
}
#section-used-by a {
  display: inline-block;
  vertical-align: middle;
  padding: 0 20px;
  opacity: 0.5;
  -webkit-transition: 0.25s all;
  -moz-transition: 0.25s all;
  -ms-transition: 0.25s all;
  -o-transition: 0.25s all;
  transition: 0.25s all;
}
#section-used-by a:hover {
  opacity: .75;
}
#section-used-by a img {
  height: 40px;
}
.footer {
  border-top: 1px solid #666;
  padding: 20px 0;
  background: -webkit-radial-gradient(circle, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.75)), url('../../home/img/bgs/gplaypattern.png');
  background: -moz-radial-gradient(circle, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.75)), url('../../home/img/bgs/gplaypattern.png');
  background: -o-radial-gradient(circle, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.75)), url('../../home/img/bgs/gplaypattern.png');
  background: radial-gradient(circle, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.75)), url('../../home/img/bgs/gplaypattern.png');
}
.footer .link {
  font-size: 14px;
  color: #ccc;
  display: inline-block;
  padding: 0 20px 0 0;
}
.footer .link a {
  color: #eee;
  text-decoration: none;
}
.footer .link a:hover {
  color: white;
}
.footer img[alt] {
  opacity: .5;
  zoom: .5;
}
.slick-prev {
  left: -100px;
}
.slick-next {
  right: -100px;
}
.slick-prev:before,
.slick-next:before {
  color: #888;
  font-size: 60px;
  opacity: .35;
}
th {
  text-align: center;
  vertical-align: middle !important;
}
.nav.big li {
  width: 49%;
}
.nav.big li a {
  font-size: 38px;
}
.nav.medium li {
  width: 49%;
}
.nav.medium li a {
  font-size: 16px;
}
.navbar {
  z-index: 5 !important;
}
#usage-counter {
  font-size: 40px;
}
.features {
  text-align: center;
}
.features .icon {
  font-size: 48px;
  line-height: 110px;
  color: white;
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50px;
  text-align: center;
}
.features .icon.red {
  background: #FF7474;
}
.features .icon.orange {
  background: #FF7400;
}
.features .icon.green {
  background: #87D347;
}
.twitter-tweet {
  width: 300px;
}
.style-core #section-about-1 {
  padding-bottom: 0;
  font-size: 18px;
}
.style-core #section-about-2 {
  background: #333;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  font-size: 18px;
  color: #ddd;
  padding-bottom: 0;
}
.style-core #section-about-2 h1 {
  color: #ccc;
}
.style-core img.figure {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.style-core #section-about-3 {
  font-size: 18px;
}
.style-core #section-specs {
  background: #333;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  font-size: 18px;
  color: #ddd;
  padding-bottom: 0;
}
.style-core #section-specs h1,
.style-core #section-specs h2 {
  color: #ccc;
}
.style-core #section-specs table td {
  text-align: left;
  padding: 5px 10px 5px 0;
  vertical-align: top;
}
.style-core #section-licensing {
  font-size: 18px;
}
