/* ====================================================
 * Company: Unity Technologies
 * Contributors:
   - Rickard Andersson, rickard@unity3d.com
======================================================= */

/****************************************
  ==== HERO GRADIENT
****************************************/

div.gradient {
  width: 100%; height: 100%; position: absolute; bottom: 0; left: 0; z-index: 2; opacity: 0.7;
}
div.hero div.gradient {
  width: auto; height: auto; position: absolute; left: 0; right: 0; bottom: 0; height: 75%; z-index: -1;
}

/****************************************
  ==== TABS
****************************************/

ul.tabs li {
  font-size: 1.0625em;
}
ul.tabs li a {
  padding: 0 60px;
}
ul.tabs.center li {
  display: inline-block; float: none; margin: 0; vertical-align: top;
}
div.tab-content {
  background: #fff;
}

/****************************************
  ==== LOADING (inline)
****************************************/

div.loading-inline {
  width: 0; height: 3px; position: absolute; top: 0; left: 0; z-index: 10; background: rgb(205,220,57); background: -moz-linear-gradient(left,  rgba(205,220,57,1) 0%, rgba(0,188,212,1) 100%); background: -webkit-linear-gradient(left,  rgba(205,220,57,1) 0%,rgba(0,188,212,1) 100%); background: linear-gradient(to right,  rgba(205,220,57,1) 0%,rgba(0,188,212,1) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cddc39', endColorstr='#00bcd4',GradientType=1 );
  -webkit-animation: pong cubic-bezier(0.77, 0, 0.175, 1) 3s infinite; -moz-animation: pong cubic-bezier(0.77, 0, 0.175, 1) 3s infinite; animation: pong cubic-bezier(0.77, 0, 0.175, 1) 3s infinite;
}
@-webkit-keyframes pong {
  25% { width: 100%; }
  50% { width: 0; left: auto; right: 0; }
  75% { width: 100%; }
  100% { width: 0; right: auto; left: 0; }
}
@-moz-keyframes pong {
  25% { width: 100%; }
  50% { width: 0; left: auto; right: 0; }
  75% { width: 100%; }
  100% { width: 0; right: auto; left: 0; }
}
@keyframes pong {
  25% { width: 100%; }
  50% { width: 0; left: auto; right: 0; }
  75% { width: 100%; }
  100% { width: 0; right: auto; left: 0; }
}

/****************************************
  ==== PLAY BUTTON
****************************************/

div.play {
  display: block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 15; text-align: center; background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(17,22,28,0.5) 50%, rgba(34,44,55,0.5) 100%); background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(17,22,28,0.5) 50%,rgba(34,44,55,0.5) 100%); background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(17,22,28,0.5) 50%,rgba(34,44,55,0.5) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#b3002835',GradientType=0 );
}
div.play:before {
  width: 58px; height: 62px; line-height: 62px; position: absolute; top: 50%; left: 50%; z-index: 20; border: #fff 2px solid; cursor: pointer; font-family: "entypo-plus"; content: '\e936'; color: #fff; font-size: 200%; padding: 0 0 0 4px; -webkit-transform: translate(-50%,-50%); -moz-transform: translate(-50%,-50%); transform: translate(-50%,-50%); -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;
}
div.play.small:before {
  width: 42px; height: 46px; font-size: 175%; line-height: 46px; padding: 0 0 0 4px;
}

/****************************************
  ==== PLUS BUTTON
****************************************/

div.plus {
  display: block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 15;  text-align: center; background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(17,22,28,0.5) 50%, rgba(34,44,55,0.5) 100%); background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(17,22,28,0.5) 50%,rgba(34,44,55,0.5) 100%); background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(17,22,28,0.5) 50%,rgba(34,44,55,0.5) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#b3002835',GradientType=0 );
}
div.plus:before {
  width: 62px; height: 62px; line-height: 62px; position: absolute; top: 50%; left: 50%; z-index: 20; border: #fff 2px solid; cursor: pointer; font-family: "entypo-plus"; content: '\e9f7'; color: #fff; font-size: 200%; -webkit-transform: translate(-50%,-50%); -moz-transform: translate(-50%,-50%); transform: translate(-50%,-50%); -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;
}
div.plus.small:before {
  width: 46px; height: 46px; font-size: 175%; line-height: 46px;
}

/****************************************
  ==== CLOSE ICON
****************************************/

.close-icon {
  width: 24px; height: 24px; display: block; position: absolute; top: 20px; right: 20px; margin: 0; z-index: 13; cursor: pointer;
}
.close-icon::before, .close-icon::after {
  content: ''; display: block; width: 30px; height: 2px; top: 50%; left: 50%; margin: -1px 0 0 -15px; position: absolute; background: #fff; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); transform: rotate(45deg);
}
.close-icon::after {
  -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); transform: rotate(-45deg);
}
.close-icon.big {
  width: 38px; height: 38px;
}
.close-icon.big::before, .close-icon.big::after {
  width: 50px; height: 2px; margin: -1px 0 0 -25px;
}

/****************************************
  ==== EXPAND/EXPANDED
****************************************/

.expand, .expand:hover, .expand:active, .expand:focus {
  display: block; float: left; color: #5a5a5b; font-size: 1.125em; text-decoration: none; padding: 0 0 0 40px; position: relative;
}
.expanded {
  font-weight: 700;
}
.expand:before, .expanded:before {
  content: '\e926'; display: block; width: 23px; height: 23px; line-height: 24px; padding: 1px 0 0 1px; position: absolute; top: 2px; left: 0; background: #ececec; font-size: 115%; text-align: center; font-family: 'entypo-plus'; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;
}
.expanded:before {
  content: '\e924'; width: 24px; padding: 1px 0 0 0; font-weight: 300; color: #fff; background: #009688;
}

/****************************************
  ==== FAQ
****************************************/

div.faq a.expand {
  margin: 0 0 15px 0;
}
div.faq a.expand:before {

}
div.faq div.info {
  padding: 0 0 15px 40px;
}
div.faq div.info p {
  font-size: 1.0625em;
}
div.faq div.info ul li {
  font-size: 1.0625em;
}

/****************************************
  ==== HEADER DIAMOND
****************************************/

div.gradient-diamond {
  position: absolute; bottom: -50px; left: 50%; margin: 0 0 0 -50px; border: transparent 50px solid; border-right-color: #f5f8f9; border-left-color: #f5f8f9; border-bottom-color: #f5f8f9;
}
div.gradient-diamond:before {
  content: ''; width: 2000px; height: 100px; background: #f5f8f9; position: absolute; bottom: -50px; left: 50px;
}
div.gradient-diamond:after {
  content: ''; width: 2000px; height: 100px; background: #f5f8f9; position: absolute; bottom: -50px; right: 50px;
}
div.gradient-diamond.white {
  border-right-color: #fff; border-left-color: #fff; border-bottom-color: #fff;
}
div.gradient-diamond.white:before, div.gradient-diamond.white:after {
  background: #fff;
}

/****************************************
  ==== INLINE DIAMOND
****************************************/

div.diamond-regular {
  width: 44px; height: 44px; border: #002835 1px solid; margin: 0 auto 30px auto; overflow: hidden; position: relative; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); transform: rotate(45deg);
}
div.diamond-regular div.content {
  width: 60px; height: 60px; line-height: 60px; display: block; position: absolute; top: 50%; left: 50%; margin: -30px 0 0 -30px; text-align: center; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); transform: rotate(-45deg);
}
div.diamond-regular div.content div.icon:before {
  line-height: 64px; font-size: 1em;
}
div.diamond-regular div.content div.text {
  font-size: 1.5em; color: #002835;
}
div.diamond-regular div.content div.text:before {
  line-height: 64px;
}

div.diamond-large {
  width: 64px; height: 64px; border: #002835 1px solid; margin: 0 auto 30px auto; overflow: hidden; position: relative; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); transform: rotate(45deg);
}
div.diamond-large div.content {
  width: 100px; height: 100px; line-height: 100px; display: block; position: absolute; top: 50%; left: 50%; margin: -50px 0 0 -50px; text-align: center; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); transform: rotate(-45deg);
}
div.diamond-large div.content div.icon:before {
  line-height: 100px; font-size: 200%;
}
div.diamond-large div.content div.text {
  font-size: 1.5em; color: #002835;
}
div.diamond-large div.content div.text:before {
  line-height: 100px;
}

/****************************************
  ==== PLATFORM ICONS
****************************************/

div.platform-icon {
  width: 60px; height: 60px; margin: 5px; float: left; display: inline; padding: 5px; background: #fff;
}
div.g-center div.platform-icon {
  float: none; display: inline-block;
}
div.platform-icon a, div.platform-icon div.logo {
  width: 50px; height: 50px; display: block; background-image: url(../../images/ui/sprites/platform-logos.png); background-color: #fff;
}
div.platform-icon .win {              background-position: 0 0; }
div.platform-icon .pc {               background-position: 0 0; }
div.platform-icon .winphone8 {        background-position: 0 -50px; }
div.platform-icon .windowsphone8 {    background-position: 0 -50px; }
div.platform-icon .winstore {         background-position: 0 -100px; }
div.platform-icon .windowsstore {     background-position: 0 -100px; }
div.platform-icon .windowsstoreapps { background-position: 0 -100px; }
div.platform-icon .mac {              background-position: 0 -150px; }
div.platform-icon .linux {            background-position: 0 -200px; }
div.platform-icon .web {              background-position: 0 -250px; }
div.platform-icon .unitywebplayer {   background-position: 0 -250px; }
div.platform-icon .ios {              background-position: 0 -300px; }
div.platform-icon .android {          background-position: 0 -350px; }
div.platform-icon .blackberry {       background-position: 0 -400px; }
div.platform-icon .wiiu {             background-position: 0 -450px; }
div.platform-icon .ps3 {              background-position: 0 -500px; }
div.platform-icon .playstation3 {     background-position: 0 -500px; }
div.platform-icon .ps4 {              background-position: 0 -550px; }
div.platform-icon .playstation4 {     background-position: 0 -550px; }
div.platform-icon .xbox {             background-position: 0 -600px; }
div.platform-icon .facebook {         background-position: 0 -650px; }
div.platform-icon .playstationvita {  background-position: 0 -700px; }
div.platform-icon .unity {            background-position: 0 -750px; }
div.platform-icon .xboxone {          background-position: 0 -800px; }
div.platform-icon .xbox360 {          background-position: 0 -850px; }
div.platform-icon .tizen {            background-position: 0 -900px; }
div.platform-icon .psmobile {         background-position: 0 -950px; }
div.platform-icon .teamlicense {      background-position: 0 -1000px; }
div.platform-icon .oculus {           background-position: 0 -1050px; }
div.platform-icon .oculusright {      background-position: 0 -1050px; }
div.platform-icon .oculusrift {       background-position: 0 -1050px; }
div.platform-icon .webgl {            background-position: 0 -1100px; }
div.platform-icon .samsungtv {        background-position: 0 -1150px; }
div.platform-icon .gearvr {           background-position: 0 -1200px; }
div.platform-icon .androidtv {        background-position: 0 -1250px; }
div.platform-icon .hololens  {        background-position: 0 -1300px; }
div.platform-icon .universal-windows{ background-position: 0 -1350px; }
div.platform-icon .playstationvr {    background-position: 0 -1400px; }
div.platform-icon .tvos          {    background-position: 0 -1450px; }
div.platform-icon .nintendo3ds   {    background-position: 0 -1500px; }
div.platform-icon .vive          {    background-position: 0 -1550px; }
div.platform-icon .cardboard     {    background-position: 0 -1600px; }
div.platform-icon .daydream      {    background-position: 0 -1650px; }
div.platform-icon .nintendo-switch {  background-position: 0 -1700px; }
div.platform-icon .fireos {           background-position: 0 -1750px; }
div.platform-icon .fb-gameroom {      background-position: 0 -1800px; }

/****************************************
  ==== TESTIMONIALS SLIDER
****************************************/

div.testimonials-slider {
  position: relative; padding: 0 0 40px 0 !important; margin: 0 0 20px 0;
}
div.testimonials-slider .slick-list {
  padding: 0 !important;
}
div.testimonials-slider div.testimonial {
  width: 100%; padding: 100px 0; position: relative;
}
div.testimonials-slider div.testimonial div.background {
  bottom: 0; z-index: 1;
}
div.testimonials-slider div.testimonial div.gradient {
  width: 100%; height: 100%; position: absolute; bottom: 0; left: 0; z-index: 2;
}
div.testimonials-slider div.testimonial div.top-gradient {
  width: 100%; position: absolute; top: 0px; bottom: 0; left: 0; z-index: 2; background: -moz-linear-gradient(top,  rgba(34,44,55,1) 0%, rgba(34,44,55,0.7) 33%, rgba(34,44,55,0) 100%); background: -webkit-linear-gradient(top,  rgba(34,44,55,1) 0%,rgba(34,44,55,0.7) 33%,rgba(34,44,55,0) 100%); background: linear-gradient(to bottom,  rgba(34,44,55,1) 0%,rgba(34,44,55,0.7) 33%,rgba(34,44,55,0) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002835', endColorstr='#80002835',GradientType=0 );
}
div.testimonials-slider div.testimonial div.content {
  position: relative; z-index: 3;
}
div.testimonials-slider div.testimonial div.quote {
  max-width: 1024px; width: 100%; margin: 0 auto 60px auto; padding: 0 60px;
}
div.testimonials-slider div.testimonial div.quote h4 {
  padding: 0 44px; margin: 70px 0; position: relative; font-size: 1.75em; line-height: 1.3em; text-align: center; color: #fff;
}
div.testimonials-slider div.testimonial div.quote h4:after, div.testimonials-slider div.testimonial div.quote h4:before {
  content: ""; width: 44px; height: 35px !important; display: block; position: absolute; bottom: -35px; right: -30px; z-index: 1; height: auto; background: url(../../images/ui/ui/quotemarks.png) -44px 0 no-repeat;
}
div.testimonials-slider div.testimonial div.quote h4:before {
  top: -35px; bottom: auto; right: auto; left: -30px; background-position: 0 0;
}
div.testimonials-slider div.testimonial img {
  margin: 0 auto 30px auto;
}
div.testimonials-slider div.testimonial p {
  color: #fff;
}
div.testimonials-slider .slick-dots {
  width: 100%; height: 80px; position: absolute; left: 0; bottom: -0px; z-index: 4; text-align: center;
}
div.testimonials-slider .slick-dots li {
  width: 60px; height: 60px; margin: 10px 25px; overflow: hidden; -webkit-transition: all .2s; -moz-transition: all .2s; transition: all .2s; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); transform: rotate(45deg);
}
div.testimonials-slider .slick-dots li a {
  width: 114px; height: 114px; display: block; position: absolute; top: 50%; left: 50%; margin: -57px 0 0 -57px; background-position: 50% 50%; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); transform: rotate(-45deg); filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale"); filter: gray; -webkit-filter: grayscale(100%);
}
div.testimonials-slider .slick-dots li.slick-active {
  width: 80px; height: 80px; margin: 0 15px;
}
div.testimonials-slider .slick-dots li:hover a, div.testimonials-slider .slick-dots li.slick-active a {
  filter: none; -webkit-filter: grayscale(0%);
}

/****************************************
  ==== BREAKPOINT < 768px
****************************************/

@media only screen and (min-width: 150px) and (max-width: 767px){

div.testimonials-slider div.testimonial {
  padding: 0 0 75px 0;
}
div.testimonials-slider div.testimonial div.quote {
  padding: 0 60px;
}
div.testimonials-slider div.testimonial div.quote h4 {
  padding: 0 24px; margin: 70px 0; font-size: 1.5em;
}
div.testimonials-slider div.testimonial div.quote h4:after, div.testimonials-slider div.testimonial div.quote h4:before {
  -webkit-transform: scale(0.5); -moz-transform: scale(0.5); transform: scale(0.5);
}
div.testimonials-slider .slick-dots {
  width: 100%; height: 60px; bottom: 5px;
}
div.testimonials-slider .slick-dots li {
  width: 40px; height: 40px; margin: 5px 15px;
}
div.testimonials-slider .slick-dots li a {
  width: 114px; height: 114px; margin: -57px 0 0 -57px;
}
div.testimonials-slider .slick-dots li.slick-active {
  width: 50px; height: 50px; margin: 0 10px;
}
div.gradient-diamond {
  bottom: -30px; left: 50%; margin: 0 0 0 -30px; border-width: 30px;
}
div.gradient-diamond:before {
  height: 60px; bottom: -30px; left: 30px;
}
div.gradient-diamond:after {
  height: 60px; bottom: -30px; right: 30px;
}

}

/****************************************
  ==== BREAKPOINT < 480px
****************************************/

@media only screen and (min-width: 150px) and (max-width: 479px){

div.testimonials-slider div.testimonial div.quote {
  padding: 0 30px;
}
div.testimonials-slider div.testimonial div.quote h4 {
  padding: 0; margin: 70px 0; font-size: 1.25em;
}

}

/****************************************
  ==== RETINA IMAGES
****************************************/

@media only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio:2){

div.platform-icon a, div.platform-icon div.logo {
  background-image: url(../../images/ui/sprites/platform-logos@2x.png); -webkit-background-size: 50px 2000px; -moz-background-size: 50px 2000px; -o-background-size: 50px 2000px; background-size: 50px 2000px;
}
div.testimonials-slider div.testimonial div.quote h4:after, div.testimonials-slider div.testimonial div.quote h4:before {
  background-image: url(../../images/ui/ui/quotemarks@2x.png); -webkit-background-size: 88px 35px; -moz-background-size: 88px 35px; -o-background-size: 88px 35px; background-size: 88px 35px;
}

}
