/* Medium Layout: 1280px. */
@media only screen and (min-width: 992px) and (max-width: 1280px) { 
   #testing {
  background: rgba(0, 0, 0, 0) url("../css/cross-icons.png") no-repeat scroll 0 0 / cover ;
  color: red;
  content: "";
  cursor: zoom-out;
  height: 28px;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 90px;
  right: 0;
  text-align: center;
  width: 28px;
  z-index: 999999999;
} 
}
/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) { 
#testing {
  background: rgba(0, 0, 0, 0) url("../css/cross-icons.png") no-repeat scroll 0 0 / cover ;
  color: red;
  content: "";
  cursor: zoom-out;
  height: 28px;
  margin-left: 55% !important;
  margin-right: auto;
  margin-top: 90px;
  right: 0;
  text-align: center;
  width: 28px;
  z-index: 999999999;
}
}
/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) { 

.kento-splash-screen {
  background-color: #f00;
  height: 300px;
  left: 0 !important;
  position: fixed;
  top: 20%;
  width: 100% !important;
  z-index: 2147483647;
}

}
/* Wide Mobile Layout: 480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) { 
.kento-splash-screen {
  background-color: #f00;
  height: 300px;
  left: 12% !important;
  margin: 0 auto !important;
  position: fixed;
  top: 20%;
  width: 400px !important;
  z-index: 2147483647;
}

}