/* The device with borders */
body.cappintroslider .smartphone {
  position: relative;
  width: 360px;
  height: 640px;
  margin: auto;
  border: 16px black solid;
  border-top-width: 60px;
  border-bottom-width: 60px;
  border-radius: 36px;
}

/* The horizontal line on the top of the device */
body.cappintroslider .smartphone:before {
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #333;
  border-radius: 10px;
}

/* The circle on the bottom of the device */
body.cappintroslider .smartphone:after {
  content: '';
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  left: 50%;
  bottom: -65px;
  transform: translate(-50%, -50%);
  background: #333;
  border-radius: 50%;
}

/* The screen (or content) of the device */
body.cappintroslider .smartphone .content {
  width: 360px;
  height: 640px;
  
  text-align: center;
}

body.cappintroslider .smartphone .helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

body.cappintroslider .smartphone img {
    vertical-align: middle;
    width: 100%;
}

body.cappintroslider .toolbar {
    text-align: center;
	margin-top: 5px;
	margin-bottom: 30px;
}