/* The device with borders */
.smartphone {
  position: relative;
  width: 360px;
  height: 640px;
  margin: auto;
  border: 16px black solid;
  border-top-width: 60px;
  border-bottom-width: 60px;
  border-radius: 36px;
  box-sizing: content-box;
}

/* The horizontal line on the top of the device */
.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 */
.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 */
.smartphone .content {
  width: 360px;
  height: 640px;
  background: white;
}


.btn-ecomm {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    z-index: 6;
}



/* Buttons */


.purchase-btn-wrapper {
	z-index:15
}

.btn-gumroad:focus,
.btn-gumroad:hover,
.btn-gumroad {
	background-color: #ff90e8 !important;
	box-shadow: 0 2px 0 #e66bcc;
}

.btn-themeforest:focus,
.btn-themeforest:hover,
.btn-themeforest {
	color:#fff;
	background-color: #82b440;
	box-shadow: 0 2px 0 #6f9a37;
}


.btn-portfolio:focus,
.btn-portfolio:hover,
.btn-portfolio {
	color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
	box-shadow: 0 2px 0 #0758d0;
}
