/* Default DevCorner Style Setting */

:root{
  --dc-: #28a745; /* #28a745 */
  --gr-: #515151;
  --wh-: #fefefe;
  --sg-: #f7f7f7;
  --lg-: #edede8;
  --shadow1-: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
  --shadow2-: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.08) inset;
  --text-sh-: 2px 5px 2px rgba(33,33,33,0.25);
  --card-: perspective(1000px) rotateY(-20deg) translateX(-20px);
}

.fa-code{
  color: var(--dc-);
}

button::-webkit-focus-inner{
  border: 0;
}
button::-moz-focus-inner{
  border: 0;
}
button::-o-focus-inner{
  border: 0;
}
button::-ms-focus-inner{
  border: 0;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  font-family: Roboto !important;
  color: var(--wh-);
}

.container {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.left, .right {
  position: absolute;
  height: 100%;
  width: 50%;
}

.left {
  background: url(../img/img_05.jpeg) no-repeat 50% 50%;
  background-size: cover;
  background-attachment: fixed;
  animation: startup 500ms ease-in;
}

@keyframes startup {
  from{
	  opacity: 0;
	}
	to{
		opacity: 1;
  }
}

.right {
  left: 50%;
  background: var(--dc-);
}

.nav {
  position: fixed;
  width: 100%;
  height: 100px;
}

.logo, .next {
  line-height: 80px;
  position: absolute;
  padding: 10px;
}

.logo .fa-code{
  color: var(--wh-);
  font-size: 1.2em
}

.logo span{
  cursor: pointer;
}

.watch, .cart {
  line-height: 80px;
  position: absolute;
  padding: 10px;
  right: 0;
}

.logo {
  padding: 10px 80px 10px 60px;
  background: var(--dc-);
  border-bottom-right-radius: 5px;
}

.next {
  left: 280px;
}

.watch {
  right: 220px;
  color: var(--wh-);
  font-weight: lighter;
  text-transform: uppercase;
}

.video{
  padding: 15px 20px;
  margin: 0 auto;
  border: 1px solid var(--wh-);
  border-radius: 5px;
  display: inline;
  cursor: pointer;
}

.video:hover,
.basket:hover{
  background: var(--wh-);
  color: var(--dc-);
}

.video span{
  margin: 0 10px;
}

.cart {
  right: 70px;
}

.basket{
  padding: 15px 20px;
  margin: 0 auto;
  border: 1px solid var(--wh-);
  border-radius: 5px;
  display: inline;
  cursor: pointer;
}

.right-sidebar {
  right: 80px;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  text-align: right;
}

.right-sidebar ul {
  list-style: none;
}

.title {
  font-size: 36px;
  padding-bottom: 40px;
}

.right-sidebar li:not(:first-child) {
  padding: 5px 10px;
  border: 1px solid var(--dc-);
  margin-left: 85px;
  width: 150px;
}

.right-sidebar li:not(:first-child):hover{
  background: var(--wh-);
  color: var(--dc-);
  border: 1px solid var(--wh-);
  cursor: pointer;
}

.right-sidebar li:nth-child(2):hover{
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.right-sidebar li:last-child:hover{
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.product {
  position: absolute;;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fly 4s ease-in-out infinite;
}

.product img{
  width: 100%;
  height: 330px;
  border-radius: 5px;
  box-shadow: var(--shadow2-);
  transform: perspective(1000px) rotateY(-20deg) translateX(-20px);
}

@keyframes fly {
  0% {
    transform: translate(-50%, -46%);
  }

  50% {
    transform: translate(-50%, -54%);
  }

  100% {
    transform: translate(-50%, -46%);
  }
}

.left-bottom {
  position: absolute;
  left: 60px;
  bottom: 40px;
  letter-spacing: 3px;
  color: grey;
  text-transform: uppercase;
  font-size: 12px;
}

.left-bottom p{
  cursor: pointer;
}

.left-sidebar {
  left: 60px;
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  text-align: left;
  width: 26%;
}

.left-sidebar h1{
  color: var(--gr-);
}

.left-sidebar button {
  padding: 24px 48px;
  background: var(--dc-);
  color: #fff;
  outline: none;
  border: none;
  margin: 1em 0;
  font-weight: bolder;
  letter-spacing: 4px;
  border-radius: 5px;
  border: 1px solid var(--dc-);
}

.left-sidebar button:hover{
  background: rgba(255,255,255,0.5);
  color: var(--dc-);
  border: 1px solid var(--dc-);
  cursor: pointer;
}

.left-sidebar p {
  font-weight: lighter;
  line-height: 24px;
  color: grey;
}

#price {
  color: #000;
}

.media {
  position: absolute;
  bottom: 20px;
  right: 80px;
}

.media ul {
  list-style: none;
  margin-right:20px;
}

.media ul li {
  display: inline-block;
  cursor: pointer;
}


.media ul li:not(:last-child) {
  padding-right: 40px;
}





















/* End */
