﻿html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
* {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
body {
    font-family: futura-pt,sans-serif;
    webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
    background-color: #CBCBCB;
}
button {
    background: none;
    border: none;
}
section.navigation {
	padding: 10px 0;
    display: flex;
    background-color: #24a8e2;
    color: #fff;
}
ul.nav-text {
    padding-left: 0;
    list-style-type: none;
    margin: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
ul.nav-text > li {
       display: block;
    position: relative;
    padding-top: 8px;
    /* padding-bottom: 20px; */
    padding-left: 15px;
    padding-right: 15px;
    font-size:12px;
}
ul.nav-text > li a {
    color: #fff;
    font-family: futura-pt,sans-serif;
    font-size: 14px;
}
.order-options{
    margin-top: 5px;
}
.about-box, .options-box, .badges-box {
    padding: 5px;
}
.white-box {
    background-color: #fff;
    padding: 20px;
    font-size: 14px;
    height: 100%;
}
.purple-box {
    width: 100%;
    background-color: #24a8e2;
    padding: 10px;
    font-size: 13px;
}
.abt-list {
    list-style: none;
}
.abt-list li {
    position: relative;
    font-size: 14px;
    font-weight: 300;
    color: #000;
    padding-left: 10px;
    margin: 6px 0;
}
.abt-list li span{
    position: absolute;
    top: 9px;
    left: 0;
    display: inline-block;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    border-radius: 999px;
    background-color: #06967d;
    height: 4px;
    width: 4px;
}
.cbx {
  margin: auto;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}
.cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}
.cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #9098A9;
  transition: all 0.2s ease;
}
.cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #06967d;
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
}
.cbx span:last-child {
  padding-left: 8px;
    font-size: 12px;
}
.cbx:hover span:first-child {
  border-color: #06967d;
}

.inp-cbx:checked + .cbx span:first-child {
  background: #06967d;
  border-color: #06967d;
  animation: wave 0.4s ease;
}
.inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}

@keyframes wave {
  50% {
    transform: scale(0.9);
  }
}
.breakdown {
    margin-bottom: 10px;
    font-size: calc(0.55em + 1vmin);
}
.add-cart-btn{
    white-space: nowrap;
    padding: 15px 30px;
    font-size: 15px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    background: #ff9502;
    background: -moz-linear-gradient(-45deg,#ff9502 0,#f9792d 100%);
    background: -webkit-gradient(left top,right bottom,color-stop(0,#ff9502),color-stop(100%,#f9792d));
    background: -webkit-linear-gradient(-45deg,#ff9502 0,#f9792d 100%);
    background: -o-linear-gradient(-45deg,#ff9502 0,#f9792d 100%);
    background: -ms-linear-gradient(-45deg,#ff9502 0,#f9792d 100%);
    background: linear-gradient(135deg,#ff9502 0,#f9792d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9502', endColorstr='#f9792d', GradientType=1);
}
.badge{
    background-color: #06967d;
    border-radius: 0;
    padding: 0 10px;
}
.badges-box div {
    background-color: #06967d;
}
.footer {
    background-color: #1F5F7A;
    padding: 20px;
    color: #fff;
}
ul.footer-links {
    text-align: center;
    padding-left: 0;
}
ul.footer-links li {
    list-style: none;
    display: inline;
    font-size: 14px;
    padding: 10px;
}
.overlay-1 {
  position: fixed;
  background: #000000;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
}
.overlay-1.open {
  opacity: 0.97;
  visibility: visible;
  height: 100%;
  z-index: 10;
}
.overlay-1.open li {
  -webkit-animation: fadeInRight 0.5s ease forwards;
          animation: fadeInRight 0.5s ease forwards;
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
.overlay-1.open li:nth-of-type(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.overlay-1.open li:nth-of-type(3) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.overlay-1.open li:nth-of-type(4) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.overlay-1 nav {
  position: relative;
  height: 70%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 25px;
  font-weight: 400;
  text-align: center;
}
.overlay-1 ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}
.overlay-1 ul li {
  display: block;
  /*height: 25%;
  height: calc(100% / 4);*/
  min-height: 50px;
  position: relative;
  opacity: 0;
}
.overlay-1 ul li a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
.overlay-1 ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  width: 100%;
}
.overlay-1 ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 3px;
  background: #fff;
  transition: 0.35s;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.button-container {
    position: absolute;
    height: 15px;
    width: 20px;
    cursor: pointer;
    top: 6px;
    right: 10px;
    z-index: 100;
    transition: opacity 0.25s ease;
}

.button-container:hover {
  opacity: 0.7;
}
.button-container.active {
    position: fixed;
    top: 30px;
    right: 15px;
}
.button-container.active .top {
  -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
          transform: translateY(11px) translateX(0) rotate(45deg);
  background: #fff;
}
.button-container.active .middle {
  opacity: 0;
  background: #fff;
}
.button-container.active .bottom {
  -webkit-transform: translateY(-5px) translateX(0) rotate(-45deg);
          transform: translateY(-5px) translateX(0) rotate(-45deg);
  background: #fff;
}
.button-container span {
  background: #e0dcdc;
  border: none;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}
.button-container span:nth-of-type(2) {
  top: 8px;
}
.button-container span:nth-of-type(3) {
  top: 16px;
}


@media screen and (min-device-width: 1200px){ 
    .white-box{
        min-height: 300px;
    }
    .purple-box {
        /*width: 265px;*/
        height: 105px;
    }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
    .img-mobile {
        
    }
    .breakdown {
        font-size: calc(0.2em + 1vmin);
    }
    .cbx span:last-child {
        padding-left: 12px;
    }

}

@media screen and (min-width: 1024px) and (max-width: 1024px) {
    .avai {
        padding: 0 0 0 20px;
    }
    .purple-box {
        font-size: 23px;
    }
    .h06 {
        font-size: 25px;
    }
    
}

.foot-links p{
        font-size: 15px;
        margin: 0 !important;
    }
@media screen and (max-device-width: 768px) {
    .foot-links p{
        font-size: 12px !important;
        margin: 0 !important;
    }

    .foot-links h3 {
    font-size: 15px;
}

    .get p {
        font-size: 12px !important;
    }

    .get h3 {
        font-size: 15px;
    }

    .about h6 {
        margin: 0 !important;
    }

    .about {
        padding: 10px 0 0 0;
        
    }

    .description p, h6 {
        font-size: 14px !important;
    }

    .cbx span:last-child {
        position: relative;
        top: -19px;
        padding-left: 23px;
        font-size: 10px;
    }
    .add-cart-btn, .added-to-cart{
        width: 100%;
        font-size: calc(1.40em + 1vmin)!important;
    }
    .prod-img {
        width: 60%;
    }
    ul.footer-links li {
        display: block;
    }
    .copyright {
        font-size: calc(0.44em + 1vmin)
    }

}

@media screen and (max-width: 320px) {
    .col-05 {
        max-width: 45% !important;
    }

    .cbx span:last-child {
        position: relative;
        top: -19px;
        padding-left: 23px;
        font-size: 7px;
    }
    .title-1{
        font-size: 11px;
    }
    .title-2 {
        font-size: 11px;
    }
    .bold {
        font-weight: 700;
    }
}
/*MISC*/
.bold {
    font-weight: 700;
}
.blue {
    color: #24a8e2;
}
.gray {
    color: #828282;
}
.white {
    color: #fff;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.8);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.85);
    }
    50% {
        -webkit-transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.85);
    }
}

.pulse {
    animation-name: pulse;
    -webkit-animation-name: pulse;
    animation-duration: 1.5s;
    -webkit-animation-duration: 2.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}



.copyrights{
    background-color:#022838;
    color:#fff;
    text-align:center;
    padding:10px;
}

footer p {
    text-align:justify;
    font-size:14px;
}

footer{
    background-color:#01415d;
	padding:10px;
	line-height: 20px;
    color:#fff;
}
.foot-links li {
    list-style: none;
}
footer a{
	color:#0096f3;
}

footer .light{
	font-weight: 300;
	font-size: 14px;
}

footer ul{
	text-transform: uppercase;
	font-size: 15px;
    padding:0;
}

.foot-links a {
    color: #fff;
}

footer ul li{
    text-align:left;
    text-decoration:none;

}

footer input[type=text]{
	position: relative;
	background:#00b8fd;
	color:#fff;
	border-radius: 0;
}

footer .subscribe{
	width: 100px;
	position: absolute;
	top:0;
	right: 0;
	font-size: 13px;
	background:#222627;
	color:#fff;
	border-radius: 0;
	border: 1px solid #00b8fd;
}

footer .secure{
	margin-top:20px;
	float:right;

}

footer .copyright{
	margin-top:30px;
}

  .collapse{
        display:block;
    }


  .watdaf {
      font-size: 18px;
      line-height: 17px;
  }

  .watdah {
      font-size: 22px;
  }

  .madepic img {
      width: 85px!important;
      margin: auto;
      display: block; 
  }