#appsContent {
  max-width: 1400px;
  width: calc(100% - 200px);
  margin: 20px 100px;
  margin-left: auto;
  margin-right: auto;
}
#appsContent .leftPanel {
  float: left;
  width: 200px;
}
#appsContent .leftPanel .title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0080DD;
}
#appsContent .leftPanel .menuItem {
  padding: 5px;
  cursor: pointer;
}
#appsContent .rightPanel {
  float: left;
  width: calc(100% - 200px);
  height: 100%;
}
#appsContent .rightPanel .searchbar {
  width: calc(100% - 2px);
  max-width: 300px;
  height: 30px;
  border-radius: 5px;
  border: 1px solid #ddd;
  float: right;
  margin-bottom: 5px;
  background-color: white;
  overflow: hidden;
}
#appsContent .rightPanel .searchbar .icon {
  width: 30px;
  height: 30px;
  color: #0080dd;
  line-height: 30px;
  text-align: center;
  float: left;
}
#appsContent .rightPanel .searchbar input {
  width: calc(100% - 35px);
  height: 30px;
  line-height: 30px;
  float: left;
  border: none;
  margin: 0;
}
#appsContent .appsContainer {
  overflow-y: scroll;
}
#appsContent .appsContainer .appContainer {
  width: 100%;
  padding: 10px;
  cursor: pointer;
}
#appsContent .appsContainer .appContainer .appStoreImage {
  width: 280px;
  height: 200px;
  border-radius: 10px;
}
#appsContent .appsContainer .appContainer .appStoreTitle {
  width: 100%;
  height: 35px;
  padding-left: 10px;
  padding-top: 10px;
  font-size: 18px;
  color: #0080DD;
  border-radius: 5px;
}
#appsContent .appsContainer .appContainer .serviceText {
  float: left;
  width: 40%;
  height: 35px;
  padding-left: 10px;
  padding-top: 10px;
  font-size: 18px;
  color: #0080DD;
}
#appsContent .appsContainer .appContainer .appStoreSubTitle {
  width: 280px;
  padding-left: 10px;
  height: 75px;
}
#appContent {
  max-width: 1400px;
  width: calc(100% - 200px);
  height: calc(100% - 40px);
  margin: 20px 100px;
  margin-left: auto;
  margin-right: auto;
}
#appContent .leftPanel {
  float: left;
  width: calc(100% - 200px);
}
#appContent .leftPanel .appTitle {
  width: 100%;
  padding: 10px;
  margin-left: 10px;
  height: 50px;
}
#appContent .leftPanel .appTitle .appTitleTitle {
  font-size: 30px;
  color: #0080DD;
  height: 50px;
  text-align: center;
}
#appContent .leftPanel .description {
  float: left;
  width: 100%;
  padding: 10px;
  margin-left: 10px;
  margin-right: 10px;
  height: 150px;
  overflow: scroll;
}
#appContent .leftPanel .appStoreImageContainer {
  height: 230px;
  width: 100%;
  vertical-align: middle;
  position: relative;
}
#appContent .appStoreImageContainer .appStoreImage {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  bottom: 0;
  top: 0;
}
#appContent .rightPanel {
  float: left;
  width: 200px;
  height: 100%;
}
#appContent .rightPanel .actionButton {
  vertical-align: middle;
  padding: 5px 10px 5px 10px;
  background-color: #0080DD;
  color: white;
  -ms-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
}
/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
/* Hide the images by default */
.mySlides {
  display: none;
}
/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active,
.dot:hover {
  background-color: #717171;
}
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
