
.play-container {
	display:grid;
	position:relative;
	align-items: center;
	justify-items: center;
	margin: 0 0;
}

.play-content {
	max-width: 1200px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
    align-items: center;
  justify-items: center;
	margin: 80px 30px;
}


.detail-copy-cell {
  padding: 0 10px 0 0;
}

.img-slider-cell {
  display: grid;
}

.slider-pic {
  width:100%;
}

.slider-pic img{
  width:100%;
}


/* SLIDER */

/*TEST*/
.play-content-test {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 30px;
  margin: 80px 0;
}

.liteBox-container-test {
  position: relative;
  display:grid;
  width: 100%;
  background-color: #ccc;
}
/*TEST END*/

.liteBox-container {
  position: relative;
  display:grid;
  width: 94%;
  height: 361px;
  z-index: 200;
/*  background-color: #e9e9e9;*/
  padding: 10px;
  transition: .4s;
  justify-content: center;
}

.loading-text {
  color: #fff;
  font-size: 1rem;
}

.liteBox-pic-div {
  position: relative;
  display: grid;
  align-items: center;
  transition: .3s;
  overflow: hidden;
  width:100%;
  max-width: 590px;
}

.slider-strip-grid {
  position: absolute;
	display: grid;
  top:0;
  left:0;
	grid-template-columns: auto auto auto auto;
	grid-column-gap: 0px;
  transition: .3s ease-out;
}

.right-arrow {
    position: absolute;
    display: grid;
    top: 50%;
    width: 38px;
    height: 42px;
    right: 8px;
    background-color: #fff;
    clip-path: polygon(0 0, 0 100%, 74% 50%);
    z-index: 200;
    transform: scale(1) translate(0, -50%);
    transition: .3s;
    cursor: pointer;
   	transform-origin: top;
  }

  .right-arrow:hover {
    transform: scale(1.3) translate(0, -50%);
  }

.left-arrow {
    position: absolute;
    display: grid;
    left: 8px;
    top: 50%;
    width: 38px;
    height: 42px;
    background-color: #fff;
    clip-path: polygon(100% 0, 100% 100%, 24% 50%);
    z-index: 200;
    transform: scale(1) translate(0, -50%);
    transition: .3s;
    cursor: pointer;
    transform-origin: top;
  }

  .left-arrow:hover {
    transform: scale(1.3) translate(0, -50%);
  }

.details-panel-grid {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
}


.panel-title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.222rem;
}

.details-plus {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.222rem;
  color: red;
}

.details-copy-cell {

}

.closedPanel{
  display:none;
}

.openPanel{
  display:block;
}

.updates{
  cursor: pointer;
}

.features{
  cursor: pointer;
}

.coming{
  cursor: pointer;
}

#updates-detail {
   display:none;
}

#features-detail {
  display:none;
}

#coming-detail {
  display:none;
}

/*SLIDER END*/

@media only screen and (max-width: 836px) {}

@media only screen and (max-width: 640px) {

.play-content {
	width: 85%;
	display: grid;
	grid-template-columns: 1fr;
	margin: 30px auto;
	padding: 0 0;
	grid-gap: 0px;
}

  .footer-address-menu-cell:nth-of-type(3) {
    display: grid;
    grid-template-columns: auto auto;
    grid-row: 2;
    justify-content: start;
  }

.img-slider-cell:nth-of-type(2){
   display: grid;
    grid-template-columns: auto;
    grid-row: 1;
    justify-content: start;
}

}