html {
  width: 100%;
  height: 100%;
}

body {
  background-image: url('../../Images/ITDesktop/bg.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#closeDesktop {
    position: absolute;
    right: 3%;
    top: 2%;
    font-size: 30px;
    cursor: pointer;
    color: black;
    z-index: 1;
}


#closeDesktop .fa {

}

#closeDesktop:hover {
    color: #666666;
}

#desktopGrid {
  width: 100%;
  height: 100%;
  padding-left: 4%;
  padding-right: 4%;
}

.tile  {
  position: relative;
  display: inline-block;
  width:20%;
  height: 25%;
  margin-bottom: 10px;
  z-index: 1;
  margin-left: 1%;
}

.tile a {
  display: inline-block;
  width:100%;
  height: 100%;
  -webkit-box-reflect: below 2px
  -webkit-gradient(linear, left top, left bottom, from(transparent),
        color-stop(0.7, transparent), to(rgba(255,255,255,.5))); /* reflection is supported by webkit only */
  -webkit-transition: all 0.3s;
  -webkit-transform-origin: 50% 100%;
  background-size: contain;
}

.tile:hover a {
  -webkit-transform: scale(1.5);
  margin: 0 4em;
}

.tile:hover {
  z-index: 500;
}

.tile:hover + .tile a, .tile.prevTile a {
  -webkit-transform: scale(1.25);
  margin: 0 3em;
}

.tile:hover + .tile, .tile.prevTile {
  z-index: 250;
}

#grid {
  width:100%;
  position: absolute;
  top: 35%;
  height: 100%;
}

.partTile {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  text-align: center;

}

.partTile.selected {
  width: 90%;
}

#dock {
  position: relative;
  display: inline-block;
  height: 100%;
  width: 100%
}

#leftContainer, #rightContainer {
  z-index: 1;
  position: absolute;
  top: 50%;
}

#rightContainer:hover, #leftContainer:hover{
  cursor: pointer;
}

#rightContainer {
  right: 0px;
}

#leftContainer {
  left: 0px;
}

.fade {
  opacity:1;
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1s;
  animation-name: fade;
  animation-duration: 1s;
}

#titleCat {
  position:absolute;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  bottom: 25%;
  width:100%;
}

#titleCat span {
  background-color: rgba(255,255,255,0.6);
  border-radius: 4px;
  padding: 1%;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}