/*
Project Name: Coverly
Description: This project is to create ?
Author: Lawrence Perry
Version: 1.0
License: 

Tags: (optional)

General comments (optional)

Table of Contents in CSS
01. Global
02. Links
03. Navigation
04. Breadcrumbs
05. Index
06. Detail
07. Tabbed Navigation
08. Collection
09. Account
10. Cart
11. Order
12. Checkbox
13. Footer
14. Colors
15. Media Queries
*/

/* 01. Global */
html,body  { 
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    line-height: 18px;
    color: #fff;
}
/*
#content_grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-areas:
        "nav nav nav nav nav nav nav nav nav nav nav nav nav"
        "content"
        "product product"
        "product product"
        "footer"
}
*/
nav {
    grid-area: nav;
}
.container {
    width: 95%;
    max-width: 1800px;
    margin: 0 auto;
}
* {
    box-sizing: border-box;
}
.row {
    display: flex;
}
.row:after {
    content: "";
    display: table;
    clear: both;
}
.column {
    flex: 50%;
    float: left;
}
.col-5 {
    flex: 5%;
    float: left;
}
.col-10 {
    flex: 10%;
    float: left;
}
.col-25 {
    flex: 25%;
    float: left;
}
.col-33 {
    flex: 33%;
    float: left;
}
.col-75 {
    flex: 75%;
    float: left;
}
.col-50 {
    flex: 100%;
    float: left;
}
.lefty {
    float: left;
}
.righty {
    float: right;
}
section {
    
}
.center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.centerclose {
    display: flex;
}
.nospace {
    white-space: pre;
}
.lighttext {
    font-weight:300
}
/* 02. LINKS */
.inverse:hover {
    background-color: #fff;
    color: #000;
}
.reverse {
    background-color: #fff;
    color: #000;
}
.close {
    width: 22px;
    height: 22px;
    opacity: 0.9;
}
.close:hover {
    opacity: 0.1;
}
.close:before, .close:after {
    position: absolute;
  
    content: ' ';
    height: 22px;
    width: 2px;
    background-color: #fff;
}
.close:before {
    transform: rotate(45deg);
}
.close:after {
    transform: rotate(-45deg);
}
.justend {
    display: flex;
    justify-content: flex-end;
}
/* 03. NAVIGATION */
.header {
    position: fixed;
    width: 100%;
    z-index: 3;
}
.navlogo {
    float: left;
    display: block;
    width: 12%;
    padding: 1%;
}
.shopping {
    width: 10%;
    padding: 0;
    margin: 0;
}
.shopping_icons {
    width: 100%;
}
.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: transparent;
}
.header li a {
    width: 100%;
    color: #fff;
    display: block;
    padding: 2%;
    text-decoration: none;
}
.header li a:hover,
.header .menu-btn:hover {
    color: #f4f4f4;
}
.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}
.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}

.header .menu-icon .navicon {
    background: #fff;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after, .shopping:before, .shopping:after {
  background: #fff;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .menu-icon .navicon:before {
    top: 5px;
}

.header .menu-icon .navicon:after {
    top: -5px;
}
.header .menu-btn {
    display: none;
}

.header .menu-btn:checked ~ .menu {
    max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}
/* 04. BREADCRUMBS */
ul.breadcrumb {
    list-style: none;
    background-color: transparent;
    position: absolute;
    top: 15%;
}
ul.breadcrumb li {
    display: inline;
    font-size: 0.9em;
}
ul.breadcrumb li+li:before {
    padding: ;
    color: #fff;
    content: "/\00a0";
}
ul.breadcrumb li a {
    color: #fff;
    text-decoration: none;
}
ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
}
/* 05. INDEX */
.hero {
    background-color: cornflowerblue;
}
.product_display {
    width: 100%;
}
.product_display img {
    margin-left: 25%;
}
.hero_content_text {
    
}
.hero h2 {
    font-weight: 700; 
    font-size: 4em;
    line-height: 1em;
}
.hero h3, .hero h4 {
    font-weight: 300;
    font-size: 1.2em;
    line-height: 1em;
}
.boldtext {
    font-weight: 700;
}
.hero p {
    width: 50%;
}
.hero a {
    text-align: center;
    text-decoration: none;
    color: #fff;
    display: block;
    border: 2px solid #fff;
    width: 30%;
    padding: 2%;
    margin-bottom: 1%;
    border-radius: 50px;
    font-size: 1.05em;
}
.product_more_content {
    
}
.product_more_box {
    width: 50%;
}
.product_more_display {
    width: 100%;
}
.product_more_display img {
    width: 120%;
}
.product_content_text {
    
}
.product_more_content h2 {
    font-weight: 700; 
    font-size: 3em;
    line-height: 1em;
}
.product_more_content h3, .product_more_content h4 {
    font-weight: 300;
    font-size: 1em;
    line-height: 1em;
}
.product_more_content p {
    width: 70%;
}
.product_more_content a {
    text-align: center;
    text-decoration: none;
    color: #fff;
    display: block;
    border: 1px solid #fff;
    width: 50%;
    padding: 2%;
    margin-bottom: 2%;
    border-radius: 50px;
    font-size: 1.05em;
} 
/* 06. DETAILS */
.detail {
    
}

.featurelist {
    padding-left: 0;
    width: 40%;
}
.purchase_options {
    list-style-type: none;
    padding-left: 0;
}
.purchase_options li {
    display: inline;
    padding-right: 10%;
}
.purchase_options li a {
    display: inline;
    padding: 1% 6%;
}
.detail a {
    text-align: center;
    text-decoration: none;
    color: #fff;
    display: block;
    border: 2px solid #fff;
    width: 30%;
    padding: 2%;
    margin-bottom: 1%;
    border-radius: 50px;
    font-size: 1.05em;
}
.detail_display {
    width: 100%;
}
.detail_display img {
    margin-left: 25%;
}
.detail_content_text {
    margin-top: 18%;
}
.detail h2 {
    font-weight: 700; 
    font-size: 4em;
    line-height: 1em;
}
.detail h3, .detail h4 {
    font-weight: 300;
    font-size: 1.2em;
    line-height: 1em;
}
.model_title {
    font-weight: 300;
    font-size: 1.5em;
    line-height: 1em;
}
.detail p {
    
}
.detail_product_desc p {
    width: 50%;
}
.detail_desc_feat {
    padding-bottom: 3%;
}
.detail_more_content {
    
}
.detail_more_box {
    width: 50%;
}
.detail_more_display {
    width: 100%;
}
.detail_more_display img {
    width: 120%;
}
.detail_content_text {
    margin-top: 15%;
}
.detail_more_content h2 {
    font-weight: 700; 
    font-size: 3em;
    line-height: 1em;
}
.detail_more_content h3, .detail_more_content h4 {
    font-weight: 300;
    font-size: 1em;
    line-height: 1em;
}
.detail_more_content p {
    width: 70%;
}
.detail_more_content a {
    text-align: center;
    text-decoration: none;
    color: #fff;
    display: block;
    border: 1px solid #fff;
    width: 50%;
    padding: 2%;
    margin-bottom: 2%;
    border-radius: 50px;
    font-size: 1.05em;
}
.additional_detail_list {
    padding-left: 0
}
.decorative_border {
    border-top: 1px solid #fff;
    margin: 3%;
}
.detail_guarantee {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 3%;
}
.detail_guarantee p {
    width: 60%;
}
.hiddenbtn {
    width: 1%;
    display: none;
}
iframe {
    width: 90%;
    height: 90%;
}
.detail_cert_text p {
    width: 60%;
}
.detail_warranty_info  {
    width: 100%;
}
.detail_product_warranty p {
    width: 80%;
}
.details_info_text {
    padding-bottom: 3%;
}
.detail_specs_items, .detail_specs_list {
    list-style-type: none;
    padding-left: 0;
}
.detail_specs_items ul {
    width: 50%;
}
.detail_warranty_text {
    border-bottom: 1px solid #fff;
}
/* 07. TABBED NAVIGATION */
.tab {
    overflow: hidden;
}
.tab button {
    color: #fff;
    background-color: inherit;
    width: 7%;
    margin: 0 auto;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 1%;
    transition: 0.3s;
    font-size: 1em;
    font-weight: 700;
}
.tab button:hover {
    background-color: #ddd;
}
.tab button.active {
    border-bottom: 5px solid #fff;
}
.tabcontent {
    display: none;
    padding: 3% 0;
}
/* 08. COLLECTION */
.collection_display {
    padding: 0;
    margin: 0;
}
.collection_product_display {
    width: 100%;
    padding: 0;
    
}
.collection_product_display img {
    width: 100%;
}

.collection_product_display a:hover {
    opacity: 0.3;
    filter: alpha(opacity=30);
}
/* 09. ACCOUNT */
.account_welcome {
    width: 30%;
    margin: 0 auto;
    padding-top: 10%;
    padding-bottom: 10%;
}
.account_welcome h2 {
    font-size: 5em;
    line-height: 1em;
    
}
.account_welcome h3 {
    font-weight: 300;
    font-size: 2em;
    line-height: 1em;
}
.account_welcome h4 {
    
    font-weight: 300;
}
.account_welcome_text {
    float: right;
}
.account_product {
    width: 50%;
    float: left;
}
.account_order_desc {
    margin: auto 0;
}
.account_order_desc h3 {
    font-weight: 300;
    font-size: 1.5em;
}
.account_order_desc h2 {
    font-size: 2.2em;
    line-height: 1em;
}
/* 10. CART */
.cart_subtotal {
    padding: 3% 0;
}
.order_subtotal_border {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: space-between;
}
.order_subtotal_border h3 {
   
}
input[type=text], select, textarea {
  width: 60%;
  padding: 2%;
  border: none;
  resize: vertical;
}
input.cart_btn[type=button] {
    text-align: center;
    text-decoration: none;
    color: #fff;
    width: 30%;
    padding: 2%;
    margin-bottom: 1%;
    border-radius: 50px;
    font-size: 1.05em;
    cursor: pointer;
    outline: none;
}
.cart_btn {
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
    text-decoration: none;
    color: #fff;
    width: 30%;
    padding: 2%;
    margin-bottom: 1%;
    border-radius: 50px;
    font-size: 1.05em;
    cursor: pointer;
    outline: none;
    transition-duration: 0.4s;
}
.order_options {
    padding-top: 1%;
    display: flex;
    justify-content: space-between;
}
.order_options input[type=button]{
    
}
/* 11. ORDER */
.order {
    padding-top: 7%;
}
.order_process {
    border-bottom: 1px solid #fff;
    padding: 1% 0;
}
.order_btn {
    text-align: center;
    text-decoration: none;
    color: #fff;
    width: 20%;
    padding: 1%;
    margin-bottom: 1%;
    border-radius: 50px;
    font-size: 1.05em;
    cursor: pointer;
    outline: none;
    transition-duration: 0.4s;
}
.space {
    display: flex;
    justify-content: space-between;
}
.order_form {
    width:
}
.contact_info_form {
    border-bottom: 1px solid #fff;
}
.contact_info_payment {
    padding-bottom: 3%;
}
.contact_info input[type=text] {
    width: 50%;
    padding: 1.25%;
    margin: 8px 0;
    box-sizing: border-box;
    border: none;
    background-color: #f74e6b;
    color: white;
}
.order_total {
    display: flex;
    justify-content: space-between;
}
.submit {
    padding-top: 1%;
    display: flex;
    justify-content: flex-end;
}
/* 12. CHECKBOX */
.checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}
.checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}
.checkbox input:checked ~ .checkmark {
  background-color: #2196F3;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox input:checked ~ .checkmark:after {
  display: block;
}
.checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* 13. FOOTER */
footer {
    grid-area: footer;
    background-color: #000;
}
.footer_content {
    width: 100%;
    padding: 5% 1% 5%;
}
.footer_text {
    width: 25%;
}
.footerlogo {
    width: 50%;
}
.footer_link {
    padding: 1%;
    width: 75%;
}
.footer_link h3 {
    text-align: center;
}
.social_links a {

}
.footer_social_links {
    padding: 1%;
}
.footer_social_links h3 {
    width: 30%;
}
.footer_social_links a {
    text-decoration: none;
    display: block;
    float: left;
    color: #fff;
}
.footer_link_sites {
    width: 20%;
    float: left;
}
.footer_link_sites h3 {
    text-transform: uppercase;
    text-align: left;
}
.footer_link_sites ul {
    list-style-type: none;
    padding-left: 0;
}
.additional_footer_sites li a {
    text-align: left;
    text-decoration: none;
}
/* 14. COLORS */
.clear {
    background-color: transparent;
}
.border_two {
    border: 2px solid #fff;
}
.highlight {
    color: #e0f500;
}
.navblue {
    background-color: #11068a;
}
.teal {
    background-color: #40e0d0;
}
.yellow {
    background-color: #ebd234;
}
.skyblue {
    background-color: #bce7f5;
}
.red {
    background-color: #fb4949;
}
.hotpink {
    background-color: #f74e6b;
}
.seagreen {
    background-color: #0cdfa4;
}
.pink {
    background-color: #ff9ab7;
}
.cornflower {
    background-color: #6495ed;
}
.darkred {
    background-color: #cf2d2d;
}
.darkteal {
    background-color: #39c9bb;
}
.darknavblue {
    background-color: #0d046e;
}
.darkhotpink {
    background-color: #de4660;
}
.darkyellow {
    background-color: #d3bd2e;
}
.darkseagreen {
    background-color: #0ac893;
}
.darkcornflower {
    background-color: #5a86d5;
}
.darkskyblue {
    background-color: #a9cfdc;
}
/* 15. MEDIA QUERIES */
@media (min-width: 1068px) {
    .header li {
        float: left;
  }
    .header li a {
        padding: 20px 30px;
  }
    .header .menu {
        clear: none;
        float: right;
        max-height: none;
  }
    .header .menu-icon {
        display: none;
  }
}
@media screen and (max-width: 1024px) {
    body {
        font-size: calc(1em * 1vw)
    }
    .navlogo {
        width: 25%;
        padding: 2%;
    }
    
    ul.breadcrumb {
        list-style: none;
        background-color: transparent;
        position: absolute;
        top: 8%;
    }
    .product_display img {
        margin-left: -4%;
    }
    .hero a {
        width: 50%;
    }
    .product_display {
        width: 120%;
    }
    .product_more_box {
        width: 100%;
    }
    .featurelist {
        padding-left: 0;
        width: 100%;
    }
    .detail {
    
    }
    .featurelist {
        padding-left: 0;
        width: 90%;
    }
    .purchase_options {
        list-style-type: none;
        padding-left: 0;
    }
    .purchase_options li {
        display: inline;
        padding-right: 10%;
    }
    .purchase_options li a {
        display: inline;
        padding: 1% 6%;
    }
    .detail a {
        text-align: center;
        text-decoration: none;
        color: #fff;
        display: block;
        border: 2px solid #fff;
        width: 30%;
        padding: 2%;
        margin-bottom: 1%;
        border-radius: 50px;
        font-size: 1.05em;
    }
    .detail_display {
        width: 150%;
    }
    .detail_display img {
        margin-left: -20%;
    }
    .detail_content_text {
        margin-top: 20%;
    }
    .detail h2 {
        font-weight: 700; 
        font-size: 4em;
        line-height: 1em;
    }
    .detail h3, .detail h4 {
        font-weight: 300;
        font-size: 1.2em;
        line-height: 1em;
    }
    .model_title {
        font-weight: 300;
        font-size: 1.5em;
        line-height: 1em;
    }

    .detail p {

    }
    .detail_product_desc p {
        width: 90%;
    }
    .detail_desc_feat {
        padding-bottom: 3%;
    }
    .detail_more_content {

    }
    .detail_more_box {
        width: 50%;
    }
    .detail_more_display {
        width: 100%;
    }
    .detail_more_display img {
        width: 10%;
    }
    .detail_content_text {
        margin-top: 15%;
    }
    .detail_more_content h2 {
        font-weight: 700; 
        font-size: 3em;
        line-height: 1em;
    }
    .detail_more_content h3, .detail_more_content h4 {
        font-weight: 300;
        font-size: 1em;
        line-height: 1em;
    }
    .detail_more_content p {
        width: 70%;
    }
    .detail_more_content a {
        text-align: center;
        text-decoration: none;
        color: #fff;
        display: block;
        border: 1px solid #fff;
        width: 50%;
        padding: 2%;
        margin-bottom: 2%;
        border-radius: 50px;
        font-size: 1.05em;
    }
    .additional_detail_list {
        padding-left: 0
    }
    .decorative_border {
        border-top: 1px solid #fff;
        margin: 3%;
    }
    .detail_guarantee {
        width: 70%;
        margin: 0 auto;
        padding-bottom: 3%;
    }
    .detail_guarantee p {
        width: 80%;
    }
    .casevideo_desc {
         margin-bottom: 10%;   
        }
    iframe {
        width: 90%;
        height: 60%;
    }
    .detail_cert_text p {
        width: 90%;
    }
    .detail_warranty_info  {
        width: 100%;
    }
    .detail_product_warranty p {
        width: 80%;
    }
    .details_info_text {
        padding-bottom: 3%;
    }
    .detail_specs_items, .detail_specs_list {
        list-style-type: none;
        padding-left: 0;
    }
    .detail_specs_items ul {
        width: 50%;
    }
    .detail_warranty_text {
        border-bottom: 1px solid #fff;
    }
    /* 07. TABBED NAVIGATION */
    .tab {
        overflow: hidden;
    }
    .tab button {
        color: #fff;
        background-color: inherit;
        width: 7%;
        margin: 0 auto;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 1%;
        transition: 0.3s;
        font-size: 1em;
        font-weight: 700;
    }
    .tab button:hover {
        background-color: #ddd;
    }
    .tab button.active {
        border-bottom: 5px solid #fff;
    }
    .tabcontent {
        display: none;
        padding: 3% 0;
    }
    /* 00. CART */
    .cart_subtotal {
        padding: 3% 0;
    }
    .order_subtotal_border {
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        display: flex;
        justify-content: space-between;
    }
    .order_subtotal_border h3 {

    }
    input[type=text], select, textarea {
        width: 90%;
        padding: 2%;
        margin-bottom: 3%;
        border: none;
        resize: vertical;
    }
    input.cart_btn[type=button] {
        text-align: center;
        text-decoration: none;
        color: #fff;
        width: 30%;
        padding: 2%;
        margin-bottom: 1%;
        border-radius: 50px;
        font-size: 1.05em;
         cursor: pointer;
        outline: none;
    }
    .cart_btn {
        text-align: center;
        text-decoration: none;
        color: #fff;
        width: 50%;
        padding: 2%;
        margin-bottom: 1%;
        border-radius: 50px;
        font-size: 1.05em;
        cursor: pointer;
        outline: none;
        transition-duration: 0.4s;
    }
    .order_options {
        padding-top: 1%;
        display: flex;
        justify-content: space-between;
    }
    .order_options input[type=button]{

    }
    .cart_total a {
        width: 50%;
    }
    /* 00. ORDER */
    .order {
        padding-top: 7%;
    }
    .order_process {
        border-bottom: 1px solid #fff;
        padding-top: 10%;
    }
    .order_btn {
        text-align: center;
        text-decoration: none;
        color: #fff;
        width: 20%;
        padding: 1%;
        margin-bottom: 1%;
        border-radius: 50px;
        font-size: 1.05em;
        cursor: pointer;
        outline: none;
        transition-duration: 0.4s;
    }
    .space {
        display: flex;
        justify-content: space-between;
    }
    .order_form {
        width:
    }
    .contact_info_form {
        border-bottom: 1px solid #fff;
    }
    .contact_info_payment {
        padding-bottom: 3%;
    }
    .contact_info input[type=text] {
        width: 50%;
        padding: 1.25%;
        margin: 8px 0;
        box-sizing: border-box;
        border: none;
        background-color: #f74e6b;
        color: white;
    }
    .order_total {
        display: flex;
        justify-content: space-between;
    }
    .submit {
        padding-top: 1%;
        display: flex;
        justify-content: flex-end;
    }
    /* 00. CHECKBOX */
    .checkbox {
      display: block;
      position: relative;
      padding-left: 35px;
      margin-bottom: 12px;
      cursor: pointer;
      font-size: 1em;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }
    .checkbox input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;
    }
    .checkmark {
      position: absolute;
      top: 0;
      left: 0;
      height: 20px;
      width: 20px;
      background-color: #eee;
    }
    .checkbox:hover input ~ .checkmark {
      background-color: #ccc;
    }
    .checkbox input:checked ~ .checkmark {
      background-color: #2196F3;
    }
    .checkmark:after {
      content: "";
      position: absolute;
      display: none;
    }
    .checkbox input:checked ~ .checkmark:after {
      display: block;
    }
    .checkbox .checkmark:after {
      left: 6px;
      top: 2px;
      width: 5px;
      height: 10px;
      border: solid white;
      border-width: 0 3px 3px 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
    }
}
@media screen and (max-width: 768px) {
    body {
        font-size: calc(1em * 1vw)
    }
    .navlogo {
        width: 25%;
        padding: 2%;
    }
    
    ul.breadcrumb {
        list-style: none;
        background-color: transparent;
        position: absolute;
        top: 8%;
    }
    .product_display img {
        margin-left: -4%;
    }
    .hero a {
        width: 50%;
    }
    .product_display {
        width: 130%;
    }
    .product_more_box {
        width: 100%;
    }
    .featurelist {
        padding-left: 0;
        width: 100%;
    }
    .detail {
    
    }
    .featurelist {
        padding-left: 0;
        width: 90%;
    }
    .purchase_options {
        list-style-type: none;
        padding-left: 0;
    }
    .purchase_options li {
        display: inline;
        padding-right: 10%;
    }
    .purchase_options li a {
        display: inline;
        padding: 1% 6%;
    }
    .detail a {
        text-align: center;
        text-decoration: none;
        color: #fff;
        display: block;
        border: 2px solid #fff;
        width: 30%;
        padding: 2%;
        margin-bottom: 1%;
        border-radius: 50px;
        font-size: 1.05em;
    }
    .detail_display {
        width: 150%;
    }
    .detail_display img {
        margin-left: -20%;
    }
    .detail_content_text {
        margin-top: 20%;
    }
    .detail h2 {
        font-weight: 700; 
        font-size: 4em;
        line-height: 1em;
    }
    .detail h3, .detail h4 {
        font-weight: 300;
        font-size: 1.2em;
        line-height: 1em;
    }
    .model_title {
        font-weight: 300;
        font-size: 1.5em;
        line-height: 1em;
    }

    .detail p {

    }
    .detail_product_desc p {
        width: 90%;
    }
    .detail_desc_feat {
        padding-bottom: 3%;
    }
    .detail_more_content {

    }
    .detail_more_box {
        width: 50%;
    }
    .detail_more_display {
        width: 100%;
    }
    .detail_more_display img {
        width: 10%;
    }
    .detail_content_text {
        margin-top: 15%;
    }
    .detail_more_content h2 {
        font-weight: 700; 
        font-size: 3em;
        line-height: 1em;
    }
    .detail_more_content h3, .detail_more_content h4 {
        font-weight: 300;
        font-size: 1em;
        line-height: 1em;
    }
    .detail_more_content p {
        width: 70%;
    }
    .detail_more_content a {
        text-align: center;
        text-decoration: none;
        color: #fff;
        display: block;
        border: 1px solid #fff;
        width: 50%;
        padding: 2%;
        margin-bottom: 2%;
        border-radius: 50px;
        font-size: 1.05em;
    }
    .additional_detail_list {
        padding-left: 0
    }
    .decorative_border {
        border-top: 1px solid #fff;
        margin: 3%;
    }
    .detail_guarantee {
        width: 80%;
        margin: 0 auto;
        padding-bottom: 3%;
    }
    .detail_guarantee p {
        width: 80%;
    }
    .casevideo_desc {
         margin-bottom: 10%;   
        }
    iframe {
        width: 90%;
        height: 60%;
    }
   
    .detail_cert_text p {
        width: 90%;
    }
    .detail_warranty_info  {
        width: 100%;
    }
    .detail_product_warranty p {
        width: 70%;
    }
    .details_info_text {
        padding-bottom: 3%;
    }
    .detail_specs_items, .detail_specs_list {
        list-style-type: none;
        padding-left: 0;
    }
    .detail_specs_items ul {
        width: 50%;
    }
    .detail_specs_list li {
        padding: 0 0 0 10%;
        width: 90%;
    }
    .detail_warranty_text {
        border-bottom: 1px solid #fff;
    }
    /* 09. ACCOUNT */
    .account_welcome {
        width: 60%;
        margin: 0 auto;
        padding-top: 10%;
        padding-bottom: 10%;
    }
    .account_welcome h2 {
        font-size: 5em;
        line-height: 1em;

    }
    .account_welcome h3 {
        font-weight: 300;
        font-size: 2em;
        line-height: 1.15em;
    }
    .account_welcome h4 {

        font-weight: 300;
    }
    .account_welcome_text {
        float: right;
    }
    .account_product {
        width: 100%;
        float: left;
    }
    .account_order_desc {
        margin: auto 0;
    }
    .account_order_desc h3 {
        font-weight: 300;
        font-size: 1.5em;
    }
    .account_order_desc h2 {
        font-size: 2.2em;
        line-height: 1em;
    }
    .purchase_options li {
        padding: 5% 2%;
    }
    .hidehide {
        width: 100%;
    }
    .mobilehide a {
        display: none;
    }
    .row:after {
      content: "";
      display: table;
      clear: both;
    }
    .col-50 {
        width: 100%;
        float: left;
    }
    /* 07. TABBED NAVIGATION */
    .tab {
        overflow: hidden;
    }
    .tab button {
        color: #fff;
        background-color: inherit;
        width: 7%;
        margin: 0 auto;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 1%;
        transition: 0.3s;
        font-size: 1em;
        font-weight: 700;
    }
    .tab button:hover {
        background-color: #ddd;
    }
    .tab button.active {
        border-bottom: 5px solid #fff;
    }
    .tabcontent {
        display: none;
        padding: 3% 0;
    }
    /* 00. CART */
    .cart_subtotal {
        padding: 3% 0;
        display: flex;
        flex-direction: column;
    }
    .cart_disco {
        
    }
    .order_subtotal_border {
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        display: flex;
        justify-content: space-between;
        margin: 3% 0;
    }
    .order_subtotal_border h3 {

    }
    .cart_tota {
        width: 50%;
    }
    input[type=text], select, textarea {
        width: 90%;
        padding: 2%;
        margin-bottom: 3%;
        border: none;
        resize: vertical;
    }
    input.cart_btn[type=button] {
        text-align: center;
        text-decoration: none;
        color: #fff;
        width: 30%;
        padding: 2%;
        margin-bottom: 1%;
        border-radius: 50px;
        font-size: 1.05em;
         cursor: pointer;
        outline: none;
    }
    .cart_btn {
        text-align: center;
        text-decoration: none;
        color: #fff;
        width: 100%;
        padding: 2%;
        margin-bottom: 1%;
        border-radius: 50px;
        font-size: 1.05em;
        cursor: pointer;
        outline: none;
        transition-duration: 0.4s;
    }
    .order_options {
        padding-top: 1%;
        display: flex;
        flex-direction: column;
    }
    .order_options input[type=button]{

    }
    .cart_total a {
        width: 50%;
    }
    .cart_order_subtotal a {
        width: 100%;
    }
    /* 00. ORDER */
    .order {
        padding-top: 7%;
    }
    .order_process {
        border-bottom: 1px solid #fff;
        padding-top: 10%;
    }
   
    .order_btn {
        text-align: center;
        text-decoration: none;
        color: #fff;
        width: 24%;
        padding: 1%;
        margin-bottom: 1%;
        border-radius: 50px;
        font-size: 1.05em;
        cursor: pointer;
        outline: none;
        transition-duration: 0.4s;
    }
    .space {
        display: flex;
        justify-content: space-between;
    }
    .order_form {
        width:
    }
    .contact_info_form {
        border-bottom: 1px solid #fff;
    }
    .contact_info_payment {
        padding-bottom: 3%;
    }
    .contact_info input[type=text] {
        width: 50%;
        padding: 1.25%;
        margin: 8px 0;
        box-sizing: border-box;
        border: none;
        background-color: #f74e6b;
        color: white;
    }
    .order_total {
        display: flex;
        justify-content: space-between;
    }
    .submit {
        padding-top: 1%;
        display: flex;
        justify-content: flex-end;
    }
    /* 00. CHECKBOX */
    .checkbox {
      display: block;
      position: relative;
      padding-left: 35px;
      margin-bottom: 12px;
      cursor: pointer;
      font-size: 1em;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }
    .checkbox input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;
    }
    .checkmark {
      position: absolute;
      top: 0;
      left: 0;
      height: 20px;
      width: 20px;
      background-color: #eee;
    }
    .checkbox:hover input ~ .checkmark {
      background-color: #ccc;
    }
    .checkbox input:checked ~ .checkmark {
      background-color: #2196F3;
    }
    .checkmark:after {
      content: "";
      position: absolute;
      display: none;
    }
    .checkbox input:checked ~ .checkmark:after {
      display: block;
    }
    .checkbox .checkmark:after {
      left: 6px;
      top: 2px;
      width: 5px;
      height: 10px;
      border: solid white;
      border-width: 0 3px 3px 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
    }
}
@media screen and (max-width: 414px) {
/*
    body {
        font-size: calc(1em * 1vw)
    }
*/
    footer {
        display: none;
    }
    .navlogo {
        width: 32%;
        padding-top: 3%;
    }
    .hero h2 {
        font-weight: 700; 
        font-size: 3em;
        line-height: 1em;
    }
    .hero h3, .hero h4 {
        font-weight: 300;
        font-size: 1.1em;
        line-height: 1em;
    }
    .hero p {
        font-size: 0.95em;
        width: 80%;
    }
    .hero_content {
        padding-top: 10%; 
    }
    .product_content_text {

    }
    .product_more_content h2 {
        font-weight: 700; 
        font-size: 1.75em;
        line-height: 1em;
    }
    .product_more_content h3, .product_more_content h4 {
        font-weight: 300;
        font-size: 1em;
        line-height: 1em;
    }
    .product_more_content p {
        font-size: 0.95em;
        width: 70%;
    }
    .product_more_content a {
        text-align: center;
        text-decoration: none;
        color: #fff;
        display: block;
        border: 1px solid #fff;
        width: 90%;
        padding: 2%;
        margin-bottom: 2%;
        border-radius: 50px;
        font-size: 1.05em;
    } 
    ul.breadcrumb {
        list-style: none;
        background-color: transparent;
        position: absolute;
        top: 10%;
        margin-right: 5%;
    }
    .product_display img {
        margin-left: -19%;
    }
    .hero a {
        width: 90%;
    }
    .product_display {
        width: 150%;
    }
    .product_more_box {
        width: 100%;
    }
    .featurelist {
        padding-left: 0;
        width: 100%;
    }
    .collection_display {
        display: flex;
        flex-direction: column;
    }
    .detail_content {
        display: flex;
        flex-direction: column;
    }
    .featurelist {
        padding-left: 0;
        width: 90%;
    }
    .purchase_options {
        list-style-type: none;
        padding: 6% 0;
    }
    .purchase_options li {
        display: inline;
        padding-right: 10%;
    }
    .purchase_options li a {
        display: inline;
        padding: 1% 10%;
    }
    .detail a {
        text-align: center;
        text-decoration: none;
        color: #fff;
        display: block;
        border: 2px solid #fff;
        width: 30%;
        padding: 2%;
        margin-bottom: 1%;
        border-radius: 50px;
        font-size: 1.05em;
    }
    .detail_display {
        width: 100%;
    }
    .detail_display img {
        margin-left: 0%;
    }
    .detail_content_text {
        display: flex;
        flex-direction: column;
        margin-top: 0%;
    }
    .detail h2 {
        font-weight: 700; 
        font-size: 3em;
        line-height: 1em;
    }
    .detail h3, .detail h4 {
        font-weight: 300;
        font-size: 1.1em;
        line-height: 1em;
    }
    .model_title {
        font-weight: 300;
        font-size: 1.5em;
        line-height: 1.2em;
    }

    .detail p {

    }
    .detail_product_desc p {
        width: 90%;
    }
    .detail_desc_feat {
        padding-bottom: 3%;
    }
    .detail_more_content {

    }
    .detail_more_box {
        width: 50%;
    }
    .detail_more_display {
        width: 100%;
    }
    .detail_more_display img {
        width: 10%;
    }
    .detail_content_text {
        margin-top: 15%;
    }
    .detail_more_content h2 {
        font-weight: 700; 
        font-size: 3em;
        line-height: 1em;
    }
    .detail_more_content h3, .detail_more_content h4 {
        font-weight: 300;
        font-size: 1em;
        line-height: 1em;
    }
    .detail_more_content p {
        width: 70%;
    }
    .detail_more_content a {
        text-align: center;
        text-decoration: none;
        color: #fff;
        display: block;
        border: 1px solid #fff;
        width: 50%;
        padding: 2%;
        margin-bottom: 2%;
        border-radius: 50px;
        font-size: 1.05em;
    }
    .additional_detail_list {
        padding-left: 0;
        width: 95%;
        margin: 0 auto;
    }
    .additional_detail_list {
        list-style-type: none;
    }
    .decorative_border {
        border-top: 1px solid #fff;
        margin: 3%;
    }
    .detail_guarantee {
        width: 90%;
        display: flex;
        flex-direction: column;
    }
    .detail_guarantee p {
        width: 80%;
    }
    .casevideo_desc {
         margin-bottom: 10%;   
    }
    .case_media {
        display: flex;
        flex-direction: column;
    }
    iframe {
        width: 100%;
        height: 300px;
    }
    .detail_cert {
        display: flex;
        flex-direction: column;
    }
    .detail_cert_text p {
        width: 90%;
    }
    .detail_warranty_info  {
        width: 100%;
    }
    .detail_product_warranty p {
        width: 70%;
    }
    .details_info_text {
        display: flex;
        flex-direction: column;
        padding-bottom: 3%;
    }
    .detail_specs_items, .detail_specs_list {
        list-style-type: none;
        padding-left: 0;
    }
    .detail_specs_items ul {
        width: 50%;
    }
    .detail_specs_list li {
        padding: 0 0 0 10%;
        width: 90%;
    }
    .detail_warranty_text {
        border-bottom: 1px solid #fff;
    }
    /* 09. ACCOUNT */
    .account_welcome {
        width: 80%;
        margin: 0 auto;
        padding-top: 35%;
        padding-bottom: 10%;
    }
    .account_welcome h2 {
        font-size: 3em;
        line-height: 1em;

    }
    .account_welcome h3 {
        font-weight: 300;
        font-size: 1.5em;
        line-height: 1.15em;
    }
    .account_welcome h4 {

        font-weight: 300;
    }
    .account_welcome_text {
        float: right;
    }
    .account_product {
        width: 140%;
        float: left;
        margin-left: 70%;
    }
    .account_product img {
        margin-left: 10%;
    }
    .account_header_title h3 {
        font-size: 1em;
    }
    .account_order_desc {
        margin: auto 0;
    }
    .account_order_desc h3 {
        font-weight: 300;
        font-size: 1em;
    }
    .account_order_desc h2 {
        font-size: 2em;
        line-height: 1em;
    }
    .purchase_options li {
        padding: 5% 2%;
    }
    .hidehide {
        width: 100%;
    }
    .mobilehide {
        display: none;
    }
    .row:after {
      content: "";
      display: table;
      clear: both;
    }
    .col-50 {
        width: 100%;
        float: left;
    }
    /* 07. TABBED NAVIGATION */
    .tab {
        overflow: hidden;
    }
    .tab button {
        color: #fff;
        background-color: inherit;
        width: 7%;
        margin: 0 auto;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 1%;
        transition: 0.3s;
        font-size: 1em;
        font-weight: 700;
    }
    .tabcontent {
        display: none;
        padding: 3% 0;
    }
    /* 00. CART */
    .cart_subtotal {
        padding: 3% 0;
        display: flex;
        flex-direction: column;
    }
    .cart_disco {
        
    }
    .mobilefix {
        margin-right: 25%;
    }
    .order_subtotal_border {
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        display: flex;
        justify-content: space-between;
        margin: 3% 0;
    }
    .order_subtotal_border h3 {

    }
    .cart_tota {
        width: 50%;
    }
    input[type=text], select, textarea {
        width: 100%;
        padding: 4%;
        margin-bottom: 3%;
        border: none;
        resize: vertical;
    }
    input.cart_btn[type=button] {
        text-align: center;
        text-decoration: none;
        color: #fff;
        width: 30%;
        padding: 2%;
        margin-bottom: 1%;
        border-radius: 50px;
        font-size: 1.05em;
         cursor: pointer;
        outline: none;
    }
    .cart_btn {
        text-align: center;
        text-decoration: none;
        color: #fff;
        width: 100%;
        padding: 3%;
        margin-bottom: 2%;
        border-radius: 50px;
        font-size: 1.05em;
        cursor: pointer;
        outline: none;
        transition-duration: 0.4s;
    }
    .order_options {
        padding-top: 1%;
        display: flex;
        flex-direction: column;
    }
    .order_options input[type=button]{

    }
    .cart_total a {
        width: 50%;
    }
    .cart_order_subtotal a {
        width: 100%;
        padding: 3.5%;
    }
    /* 00. ORDER */
    .order {
        padding-top: 7%;
    }
    .order_process {
        border-bottom: 1px solid #fff;
        padding-top: 15%;
        display: flex;
        flex-wrap: wrap;
    }
    .order_process a {
        padding: 3%;
        width: 100%;
    }
    .order_btn {
        text-align: center;
        text-decoration: none;
        color: #fff;
        width: 24%;
        padding: 1%;
        margin-bottom: 1%;
        border-radius: 50px;
        font-size: 1.05em;
        cursor: pointer;
        outline: none;
        transition-duration: 0.4s;
    }
    .space {
        display: flex;
        justify-content: space-between;
    }
    .order_form {
        width:
    }
    .contact_info_form {
        border-bottom: 1px solid #fff;
    }
    .contact_info_payment {
        padding-bottom: 3%;
    }
    .contact_info input[type=text] {
        width: 50%;
        padding: 1.25%;
        margin: 8px 0;
        box-sizing: border-box;
        border: none;
        background-color: #f74e6b;
        color: white;
    }
    .order_total {
        display: flex;
        justify-content: space-between;
    }
    .submit {
        padding-top: 1%;
        display: flex;
        justify-content: flex-end;
    }
    /* 00. CHECKBOX */
    .checkbox {
      display: block;
      position: relative;
      padding-left: 35px;
      margin-bottom: 12px;
      cursor: pointer;
      font-size: 1em;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }
    .checkbox input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;
    }
    .checkmark {
      position: absolute;
      top: 0;
      left: 0;
      height: 20px;
      width: 20px;
      background-color: #eee;
    }
    .checkbox:hover input ~ .checkmark {
      background-color: #ccc;
    }
    .checkbox input:checked ~ .checkmark {
      background-color: #2196F3;
    }
    .checkmark:after {
      content: "";
      position: absolute;
      display: none;
    }
    .checkbox input:checked ~ .checkmark:after {
      display: block;
    }
    .checkbox .checkmark:after {
      left: 6px;
      top: 2px;
      width: 5px;
      height: 10px;
      border: solid white;
      border-width: 0 3px 3px 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
    }
}
@media screen and (max-width: 375px) {
/*
    body {
        font-size: calc(1em * 1vw)
    }
*/
    footer {
        display: none;
    }
    .navlogo {
        width: 32%;
        padding-top: 3%;
    }
    .hero h2 {
        font-weight: 700; 
        font-size: 3em;
        line-height: 1em;
    }
    .hero h3, .hero h4 {
        font-weight: 300;
        font-size: 1em;
        line-height: 1.1em;
    }
    .hero p {
        font-size: 0.85em;
        width: 90%;
    }
    .hero_content {
        padding: 10% 0;
        display: flex;
        flex-direction: column;
    }
    .product_content_text {

    }
    .product_more_content h2 {
        font-weight: 700; 
        font-size: 1.75em;
        line-height: 1em;
    }
    .product_more_content h3, .product_more_content h4 {
        font-weight: 300;
        font-size: 1em;
        line-height: 1em;
    }
    .product_more_content p {
        font-size: 0.95em;
        width: 70%;
    }
    .product_more_content a {
        text-align: center;
        text-decoration: none;
        color: #fff;
        display: block;
        border: 1px solid #fff;
        width: 90%;
        padding: 2%;
        margin-bottom: 2%;
        border-radius: 50px;
        font-size: 1.05em;
    } 
    ul.breadcrumb {
        list-style: none;
        background-color: transparent;
        position: absolute;
        top: 10%;
        margin-right: 5%;
    }
    .product_display img {
        margin-left: -1%;
    }
    .hero a {
        width: 100%;
    }
    .product_more_box {
        display: flex;
        flex-direction: column;
    }
    .product_more a {
        width: 100%;
    }
    .product_content_text {
        width: 95%;
    }
    .product_more_display img {
        width: 100%;
    }
    .product_display {
        width: 100%;
    }
    .product_more_box {
        width: 100%;
    }
    .featurelist {
        padding-left: 0;
        width: 100%;
    }
    .collection_display {
        display: flex;
        flex-direction: column;
    }
    .detail_content {
        padding-top: 20%;
        display: flex;
        flex-direction: column;
    }
    .featurelist {
        padding-left: 0;
        width: 90%;
    }
    .purchase_options {
        list-style-type: none;
        padding: 6% 0;
        display: flex;
        flex-direction: column;
    }
    .purchase_options li {
        display: inline;
        padding-right: 10%;
    }
    .purchase_options li a {
        width: 100%;
        padding: 2% 17%;
    }
    .detail a {
        text-align: center;
        text-decoration: none;
        color: #fff;
        display: block;
        border: 2px solid #fff;
        width: 30%;
        padding: 2%;
        margin-bottom: 1%;
        border-radius: 50px;
        font-size: 1.05em;
    }
    .detail_display {
        width: 100%;
    }
    .detail_display img {
        margin-left: 0%;
    }
    .detail_content_text {
        display: flex;
        flex-direction: column;
        margin-top: 0%;
    }
    .detail h2 {
        font-weight: 700; 
        font-size: 3em;
        line-height: 1em;
    }
    .detail h3, .detail h4 {
        font-weight: 300;
        font-size: 1.1em;
        line-height: 1em;
    }
    .model_title {
        font-weight: 300;
        font-size: 1.5em;
        line-height: 1.2em;
    }

    .detail p {

    }
    .detail_product_desc p {
        width: 90%;
    }
    .detail_desc_feat {
        padding-bottom: 3%;
    }
    .detail_more_content {

    }
    .detail_more_box {
        width: 50%;
    }
    .detail_more_display {
        width: 100%;
    }
    .detail_more_display img {
        width: 10%;
    }
    .detail_content_text {
        margin-top: 15%;
    }
    .detail_more_content h2 {
        font-weight: 700; 
        font-size: 3em;
        line-height: 1em;
    }
    .detail_more_content h3, .detail_more_content h4 {
        font-weight: 300;
        font-size: 1em;
        line-height: 1em;
    }
    .detail_more_content p {
        width: 70%;
    }
    .detail_more_content a {
        text-align: center;
        text-decoration: none;
        color: #fff;
        display: block;
        border: 1px solid #fff;
        width: 50%;
        padding: 2%;
        margin-bottom: 2%;
        border-radius: 50px;
        font-size: 1.05em;
    }
    .additional_detail_list {
        padding-left: 0
    }
    .decorative_border {
        border-top: 1px solid #fff;
        margin: 3%;
    }
    .detail_guarantee {
        width: 90%;
        display: flex;
        flex-direction: column;
    }
    .detail_guarantee p {
        width: 80%;
    }
    .casevideo_desc {
         margin-bottom: 10%;   
    }
    .case_media {
        display: flex;
        flex-direction: column;
    }
    iframe {
        width: 100%;
        height: 300px;
    }
    .detail_cert {
        display: flex;
        flex-direction: column;
    }
    .detail_cert_text p {
        width: 90%;
    }
    .detail_warranty_info  {
        width: 100%;
    }
    .detail_product_warranty p {
        width: 70%;
    }
    .details_info_text {
        display: flex;
        flex-direction: column;
        padding-bottom: 3%;
    }
    .detail_specs_items, .detail_specs_list {
        list-style-type: none;
        padding-left: 0;
    }
    .detail_specs_items ul {
        width: 50%;
    }
    .detail_specs_list li {
        padding: 0 0 0 10%;
        width: 90%;
    }
    .detail_warranty_text {
        border-bottom: 1px solid #fff;
    }
    /* 09. ACCOUNT */
    .account_welcome {
        width: 80%;
        margin: 0 auto;
        padding-top: 35%;
        padding-bottom: 10%;
    }
    .account_welcome h2 {
        font-size: 3em;
        line-height: 1em;

    }
    .account_welcome h3 {
        font-weight: 300;
        font-size: 1.5em;
        line-height: 1.15em;
    }
    .account_welcome h4 {

        font-weight: 300;
    }
    .account_welcome_text {
        float: right;
    }
    .account_product {
        width: 140%;
        float: left;
        margin-left: 70%;
    }
    .account_product img {
        margin-left: 10%;
    }
    .account_header_title h3 {
        font-size: 1em;
    }
    .account_order_desc {
        margin: auto 0;
    }
    .account_order_desc h3 {
        font-weight: 300;
        font-size: 1em;
    }
    .account_order_desc h2 {
        font-size: 2em;
        line-height: 1em;
    }
    .purchase_options li {
        padding: 5% 2%;
    }
    .hidehide {
        width: 100%;
    }
    .mobilehide {
        display: none;
    }
    .row:after {
      content: "";
      display: table;
      clear: both;
    }
    .col-50 {
        width: 100%;
        float: left;
    }
    /* 07. TABBED NAVIGATION */
    .tab {
        overflow: hidden;
    }
    .tab button {
        color: #fff;
        background-color: inherit;
        width: 7%;
        margin: 0 auto;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 1%;
        transition: 0.3s;
        font-size: 1em;
        font-weight: 700;
    }
    .tabcontent {
        display: none;
        padding: 3% 0;
    }
    /* 00. CART */
    .cart_subtotal {
        padding: 3% 0;
        display: flex;
        flex-direction: column;
    }
    .cart_disco {
        
    }
    .mobilefix {
        margin-right: 25%;
    }
    .order_subtotal_border {
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        display: flex;
        justify-content: space-between;
        margin: 3% 0;
    }
    .order_subtotal_border h3 {

    }
    .cart_tota {
        width: 50%;
    }
    input[type=text], select, textarea {
        width: 100%;
        padding: 4%;
        margin-bottom: 3%;
        border: none;
        resize: vertical;
    }
    input.cart_btn[type=button] {
        text-align: center;
        text-decoration: none;
        color: #fff;
        width: 30%;
        padding: 2%;
        margin-bottom: 1%;
        border-radius: 50px;
        font-size: 1.05em;
         cursor: pointer;
        outline: none;
    }
    .cart_btn {
        text-align: center;
        text-decoration: none;
        color: #fff;
        width: 100%;
        padding: 3%;
        margin-bottom: 2%;
        border-radius: 50px;
        font-size: 1.05em;
        cursor: pointer;
        outline: none;
        transition-duration: 0.4s;
    }
    .order_options {
        padding-top: 1%;
        display: flex;
        flex-direction: column;
    }
    .order_options input[type=button]{

    }
    .cart_total a {
        width: 50%;
    }
    .cart_order_subtotal a {
        width: 100%;
        padding: 3.5%;
    }
    /* 00. ORDER */
    .order {
        padding-top: 7%;
    }
    .order_process {
        border-bottom: 1px solid #fff;
        padding-top: 15%;
        display: flex;
        flex-wrap: wrap;
    }
    .order_process a {
        padding: 3%;
        width: 100%;
    }
    .order_btn {
        text-align: center;
        text-decoration: none;
        color: #fff;
        width: 24%;
        padding: 1%;
        margin-bottom: 1%;
        border-radius: 50px;
        font-size: 1.05em;
        cursor: pointer;
        outline: none;
        transition-duration: 0.4s;
    }
    .space {
        display: flex;
        justify-content: space-between;
    }
    .order_form {
        width:
    }
    .contact_info_form {
        border-bottom: 1px solid #fff;
    }
    .contact_info_payment {
        padding-bottom: 3%;
    }
    .contact_info input[type=text] {
        width: 50%;
        padding: 1.25%;
        margin: 8px 0;
        box-sizing: border-box;
        border: none;
        background-color: #f74e6b;
        color: white;
    }
    .order_total {
        display: flex;
        justify-content: space-between;
    }
    .submit {
        padding-top: 1%;
        display: flex;
        justify-content: flex-end;
    }
    /* 00. CHECKBOX */
    .checkbox {
      display: block;
      position: relative;
      padding-left: 35px;
      margin-bottom: 12px;
      cursor: pointer;
      font-size: 1em;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }
    .checkbox input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;
    }
    .checkmark {
      position: absolute;
      top: 0;
      left: 0;
      height: 20px;
      width: 20px;
      background-color: #eee;
    }
    .checkbox:hover input ~ .checkmark {
      background-color: #ccc;
    }
    .checkbox input:checked ~ .checkmark {
      background-color: #2196F3;
    }
    .checkmark:after {
      content: "";
      position: absolute;
      display: none;
    }
    .checkbox input:checked ~ .checkmark:after {
      display: block;
    }
    .checkbox .checkmark:after {
      left: 6px;
      top: 2px;
      width: 5px;
      height: 10px;
      border: solid white;
      border-width: 0 3px 3px 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
    }
}
@media screen and (max-width: 320px) {
/*
    body {
        font-size: calc(1em * 1vw)
    }
*/
    footer {
        display: none;
    }
    .navlogo {
        width: 32%;
        padding-top: 3%;
    }
    .hero h2 {
        font-weight: 700; 
        font-size: 3em;
        line-height: 1em;
    }
    .hero h3, .hero h4 {
        font-weight: 300;
        font-size: 1em;
        line-height: 1.1em;
    }
    .hero p {
        font-size: 0.85em;
        width: 90%;
    }
    .hero_content {
        padding: 10% 0;
        display: flex;
        flex-direction: column;
    }
    .product_content_text {

    }
    .product_more_content h2 {
        font-weight: 700; 
        font-size: 1.75em;
        line-height: 1em;
    }
    .product_more_content h3, .product_more_content h4 {
        font-weight: 300;
        font-size: 1em;
        line-height: 1em;
    }
    .product_more_content p {
        font-size: 0.95em;
        width: 70%;
    }
    .product_more_content a {
        text-align: center;
        text-decoration: none;
        color: #fff;
        display: block;
        border: 1px solid #fff;
        width: 90%;
        padding: 2%;
        margin-bottom: 2%;
        border-radius: 50px;
        font-size: 1.05em;
    } 
    ul.breadcrumb {
        list-style: none;
        background-color: transparent;
        position: absolute;
        top: 10%;
        margin-right: 5%;
    }
    .product_display img {
        margin-left: -1%;
    }
    .hero a {
        width: 100%;
    }
    .product_more_box {
        display: flex;
        flex-direction: column;
    }
    .product_more a {
        width: 100%;
    }
    .product_content_text {
        width: 95%;
    }
    .product_more_display img {
        width: 100%;
    }
    .product_display {
        width: 100%;
    }
    .product_more_box {
        width: 100%;
    }
    .featurelist {
        padding-left: 0;
        width: 100%;
    }
    .collection_display {
        display: flex;
        flex-direction: column;
    }
    .detail_content {
        padding-top: 20%;
        display: flex;
        flex-direction: column;
    }
    .featurelist {
        padding-left: 0;
        width: 90%;
    }
    .purchase_options {
        list-style-type: none;
        padding: 6% 0;
        display: flex;
        flex-direction: column;
    }
    .purchase_options li {
        display: inline;
        padding-right: 10%;
    }
    .purchase_options li a {
        width: 100%;
        padding: 2% 17%;
    }
    .detail a {
        text-align: center;
        text-decoration: none;
        color: #fff;
        display: block;
        border: 2px solid #fff;
        width: 30%;
        padding: 2%;
        margin-bottom: 1%;
        border-radius: 50px;
        font-size: 1.05em;
    }
    .detail_display {
        width: 100%;
    }
    .detail_display img {
        margin-left: 0%;
    }
    .detail_content_text {
        display: flex;
        flex-direction: column;
        margin-top: 0%;
    }
    .detail h2 {
        font-weight: 700; 
        font-size: 3em;
        line-height: 1em;
    }
    .detail h3, .detail h4 {
        font-weight: 300;
        font-size: 1.1em;
        line-height: 1em;
    }
    .model_title {
        font-weight: 300;
        font-size: 1.5em;
        line-height: 1.2em;
    }

    .detail p {

    }
    .detail_product_desc p {
        width: 90%;
    }
    .detail_desc_feat {
        padding-bottom: 3%;
    }
    .detail_more_content {

    }
    .detail_more_box {
        width: 50%;
    }
    .detail_more_display {
        width: 100%;
    }
    .detail_more_display img {
        width: 10%;
    }
    .detail_content_text {
        margin-top: 15%;
    }
    .detail_more_content h2 {
        font-weight: 700; 
        font-size: 3em;
        line-height: 1em;
    }
    .detail_more_content h3, .detail_more_content h4 {
        font-weight: 300;
        font-size: 1em;
        line-height: 1em;
    }
    .detail_more_content p {
        width: 70%;
    }
    .detail_more_content a {
        text-align: center;
        text-decoration: none;
        color: #fff;
        display: block;
        border: 1px solid #fff;
        width: 50%;
        padding: 2%;
        margin-bottom: 2%;
        border-radius: 50px;
        font-size: 1.05em;
    }
    .additional_detail_list {
        padding-left: 0
    }
    .decorative_border {
        border-top: 1px solid #fff;
        margin: 3%;
    }
    .detail_guarantee {
        width: 90%;
        display: flex;
        flex-direction: column;
    }
    .detail_guarantee p {
        width: 80%;
    }
    .casevideo_desc {
         margin-bottom: 10%;   
    }
    .case_media {
        display: flex;
        flex-direction: column;
    }
    iframe {
        width: 100%;
        height: 300px;
    }
    .detail_cert {
        display: flex;
        flex-direction: column;
    }
    .detail_cert_text p {
        width: 90%;
    }
    .detail_warranty_info  {
        width: 100%;
    }
    .detail_product_warranty p {
        width: 70%;
    }
    .details_info_text {
        display: flex;
        flex-direction: column;
        padding-bottom: 3%;
    }
    .detail_specs_items, .detail_specs_list {
        list-style-type: none;
        padding-left: 0;
    }
    .detail_specs_items ul {
        width: 50%;
    }
    .detail_specs_list li {
        padding: 0 0 0 10%;
        width: 90%;
    }
    .detail_warranty_text {
        border-bottom: 1px solid #fff;
    }
    /* 09. ACCOUNT */
    .account_welcome {
        width: 80%;
        margin: 0 auto;
        padding-top: 35%;
        padding-bottom: 10%;
    }
    .account_welcome h2 {
        font-size: 3em;
        line-height: 1em;

    }
    .account_welcome h3 {
        font-weight: 300;
        font-size: 1.5em;
        line-height: 1.15em;
    }
    .account_welcome h4 {

        font-weight: 300;
    }
    .account_welcome_text {
        float: right;
    }
    .account_product {
        width: 140%;
        float: left;
        margin-left: 70%;
    }
    .account_product img {
        margin-left: 10%;
    }
    .account_header_title h3 {
        font-size: 1em;
    }
    .account_order_desc {
        margin: auto 0;
    }
    .account_order_desc h3 {
        font-weight: 300;
        font-size: 1em;
    }
    .account_order_desc h2 {
        font-size: 2em;
        line-height: 1em;
    }
    .purchase_options li {
        padding: 5% 2%;
    }
    .hidehide {
        width: 100%;
    }
    .mobilehide {
        display: none;
    }
    .row:after {
      content: "";
      display: table;
      clear: both;
    }
    .col-50 {
        width: 100%;
        float: left;
    }
    /* 07. TABBED NAVIGATION */
    .tab {
        overflow: hidden;
    }
    .tab button {
        color: #fff;
        background-color: inherit;
        width: 7%;
        margin: 0 auto;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 1%;
        transition: 0.3s;
        font-size: 1em;
        font-weight: 700;
    }
    .tabcontent {
        display: none;
        padding: 3% 0;
    }
    /* 00. CART */
    .cart_subtotal {
        padding: 3% 0;
        display: flex;
        flex-direction: column;
    }
    .cart_disco {
        
    }
    .mobilefix {
        margin-right: 25%;
    }
    .order_subtotal_border {
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        display: flex;
        justify-content: space-between;
        margin: 3% 0;
    }
    .order_subtotal_border h3 {

    }
    .cart_tota {
        width: 50%;
    }
    input[type=text], select, textarea {
        width: 100%;
        padding: 4%;
        margin-bottom: 3%;
        border: none;
        resize: vertical;
    }
    input.cart_btn[type=button] {
        text-align: center;
        text-decoration: none;
        color: #fff;
        width: 30%;
        padding: 2%;
        margin-bottom: 1%;
        border-radius: 50px;
        font-size: 1.05em;
         cursor: pointer;
        outline: none;
    }
    .cart_btn {
        text-align: center;
        text-decoration: none;
        color: #fff;
        width: 100%;
        padding: 3%;
        margin-bottom: 2%;
        border-radius: 50px;
        font-size: 1.05em;
        cursor: pointer;
        outline: none;
        transition-duration: 0.4s;
    }
    .order_options {
        padding-top: 1%;
        display: flex;
        flex-direction: column;
    }
    .order_options input[type=button]{

    }
    .cart_total a {
        width: 50%;
    }
    .cart_order_subtotal a {
        width: 100%;
        padding: 3.5%;
    }
    /* 00. ORDER */
    .order {
        padding-top: 7%;
    }
    .order_process {
        border-bottom: 1px solid #fff;
        padding-top: 15%;
        display: flex;
        flex-wrap: wrap;
    }
    .order_process a {
        padding: 3%;
        width: 100%;
    }
    .order_btn {
        text-align: center;
        text-decoration: none;
        color: #fff;
        width: 24%;
        padding: 1%;
        margin-bottom: 1%;
        border-radius: 50px;
        font-size: 1.05em;
        cursor: pointer;
        outline: none;
        transition-duration: 0.4s;
    }
    .space {
        display: flex;
        justify-content: space-between;
    }
    .order_form {
        width:
    }
    .contact_info_form {
        border-bottom: 1px solid #fff;
    }
    .contact_info_payment {
        padding-bottom: 3%;
    }
    .contact_info input[type=text] {
        width: 50%;
        padding: 1.25%;
        margin: 8px 0;
        box-sizing: border-box;
        border: none;
        background-color: #f74e6b;
        color: white;
    }
    .order_total {
        display: flex;
        justify-content: space-between;
    }
    .submit {
        padding-top: 1%;
        display: flex;
        justify-content: flex-end;
    }
    /* 00. CHECKBOX */
    .checkbox {
      display: block;
      position: relative;
      padding-left: 35px;
      margin-bottom: 12px;
      cursor: pointer;
      font-size: 1em;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }
    .checkbox input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;
    }
    .checkmark {
      position: absolute;
      top: 0;
      left: 0;
      height: 20px;
      width: 20px;
      background-color: #eee;
    }
    .checkbox:hover input ~ .checkmark {
      background-color: #ccc;
    }
    .checkbox input:checked ~ .checkmark {
      background-color: #2196F3;
    }
    .checkmark:after {
      content: "";
      position: absolute;
      display: none;
    }
    .checkbox input:checked ~ .checkmark:after {
      display: block;
    }
    .checkbox .checkmark:after {
      left: 6px;
      top: 2px;
      width: 5px;
      height: 10px;
      border: solid white;
      border-width: 0 3px 3px 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
    }
}