@import url(https://fonts.googleapis.com/css?family=Raleway:200,700,500);

/* set whatever color you want */
$color: #567;

h1.page-title {
  margin: 30px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 200;
  font-size: 36pt;
  letter-spacing: 3px;
}

.page-title span {
  color: $color;
  font-weight: bold;
}

.tabbed {
  /* background: #57F; */
}

.tab-list {
  list-style-type: none;
  text-align: center;
  margin-top: 20px;
  margin-bottom: -2px;
}

.tab-list li {
  display: inline-block;
  padding: 20px 30px;
  cursor: pointer;
  transition: all 0.5s;
  color: #FFF;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: 20px;
  font-family: 'Frank Ruhl Libre', Sans-Serif;
  position: relative;
}
.tabbed .tab {
  display: none;
  color: #fff;
  background: transparent;
  padding: 20px;
  min-height: 300px;
  position: relative;
  transition: all 5s ease;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* box-shadow: 0 2px 5px rgba(0,0,0,.15), 0 5px 10px rgba(0,0,0,.05);*/
  /* border-radius: 5px; */
}
/*
.tab .content {
  max-width: 700px;
  margin: auto;
}*/

.tab-list li.active {
  box-shadow: inset 0 -50px 0 $color;
  color: #ffcd05;
  /* border-top: 2px solid rgba(0,0,0,.2); */
}
.tab-list li.active::before {
  position: absolute;
  content: "";
  height: 3px;
  inset-inline: 0;
  bottom: -2px;
  background: #ffcd05;
}

.tabbed .tab.active {
  display: block;
  -webkit-animation: fade 1s ease;
}

.tabbed .tab.active .content {
  -webkit-animation: enter 0.5s;
}

code {
  background: rgba(0, 0, 0, 0.1);
  padding: 0 3px;
  border-radius: 3px;
  font-size: 1.2em;
}

h2 {
  font-size: 36pt;
  margin-bottom: 10px;
}

.tabbed .tab.active:after {
  box-shadow: 0 0 0 1000px $color;
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  width: 100px;
  height: 100px;
  background: $color;
  -webkit-animation: grow 1s ease;
  z-index: -1;
}

@-webkit-keyframes grow {
  from {
    box-shadow: 0 0 0 $color;
  }
  to {
    box-shadow: 0 0 0 1000px $color;
    -webkit-transform: translateZ(0);
  }
}

@-webkit-keyframes enter {
  from {
    -webkit-transform: translateY(-20px);
  }
  to {
    -webkit-transform: none;
  }
}

@-webkit-keyframes fade {
  from {
    background: transparent;
  }
  to {
    background: $color;
  }
}

@media all and (max-width: 200px) {
  .tab-list li {
    display: block;
  }
}

.product-detail-section h5{
  font-family: 'Arial', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.5;
  color: white;
  margin-bottom: 20px;
}
.review-note{
  font-family: 'Frank Ruhl Libre', Sans-Serif;
  font-weight: normal;
}