<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

button,
html input[type="button"],
input[type="reset"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}

.bgcolor1{background-color:#2f2f2f;}
.bgcolor2{background-color:#2f2f2f;}
.bgcolor3{background-color:#fff;}
.bgcolor5{background-color:#414346;}
.bgcolor6{background-color:#657288;}
.bgcolor7{background-color:#4c4c4c;}

$screen1260:1260px;
$screen1199:1199px;
$screen1081:1081px;
$screen1080:1080px;
$screen1025:1025px;
$screen1024:1024px;
$screen992:992px;
$screen991:991px;
$screen900:900px;
$screen768:768px;
$screen767:767px;
$screen540:540px;
$screen480:480px;
$screen435:435px;
$screen360:360px;
$screen320:320px;
$container-width:1160px;

@mixin respond-to($class) {
  @if $class == $screen1260 {
    @media only screen and (max-width: $screen1260) {
      @content;
    }
  }
  @if $class == $screen1199 {
    @media only screen and (max-width: $screen1199) {
      @content;
    }
  }
  @if $class == $screen1081 {
    @media only screen and (min-width: $screen1081) {
      @content;
    }
  }
  @if $class == $screen1080 {
    @media only screen and (max-width: $screen1080) {
      @content;
    }
  }
  @if $class == $screen1025 {
    @media only screen and (min-width: $screen1025) {
      @content;
    }
  }
  @if $class == $screen1024{
    @media only screen and (max-width: $screen1024) {
      @content;
    }
  }
  @if $class == $screen992 {
    @media only screen and (min-width: $screen992) {
      @content;
    }
  }
  @if $class == $screen991 {
    @media only screen and (max-width: $screen991) {
      @content;
    }
  }
  @if $class == $screen900{
    @media only screen and (max-width: $screen900) {
      @content;
    }
  }
  @if $class == $screen768{
    @media only screen and (min-width: $screen768) {
      @content;
    }
  }
  @if $class == $screen767{
    @media only screen and (max-width: $screen767) {
      @content;
    }
  }
  @if $class == $screen540 {
    @media only screen and (max-width: $screen540) {
      @content;
    }
  }
  @if $class == $screen480 {
    @media only screen and (max-width: $screen480) {
      @content;
    }
  }
  @if $class == $screen435 {
    @media only screen and (max-width: $screen435) {
      @content;
    }
  }
  @if $class == $screen360{
    @media only screen and (max-width: $screen360) {
      @content;
    }
  }
  @if $class == $screen320{
    @media only screen and (max-width: $screen320) {
      @content;
    }
  }
}

@mixin placeholder {
  ::-webkit-input-placeholder {@content}
  :-moz-placeholder           {@content}
  ::-moz-placeholder          {@content}
  :-ms-input-placeholder      {@content}
}

.newsletter-form{
  @include placeholder {
    color: #657288;
    font-size:12px;
    font-weight: 700;
  }
}
.hidden{display:none !important;}

.order-1{order: 1;}
.order-2{order: 2;}
.order-3{order: 3;}
.order-4{order: 4;}
.order-5{order: 5;}
.order-6{order: 6;}
.order-7{order: 7;}
.order-8{order: 8;}



.text-left {text-align: left;}
.text-center{text-align: center;}
.text-right{text-align: right;}
.text-nowrap {white-space: nowrap;}
.text-lowercase {text-transform: lowercase;}
.text-uppercase {text-transform: uppercase;}
.text-capitalize {text-transform: capitalize;}

.mt-10{margin-top: 10px;}
.mt-15{margin-top: 15px;}
.mt-20{margin-top: 20px;}
.mt-25{margin-top: 25px;}

.mb-10{margin-bottom: 10px;}
.mb-15{margin-bottom: 15px;}
.mb-20{margin-bottom: 20px;}
.mb-25{margin-bottom: 25px;}

input:focus{outline:none;}
.site-container{
  max-width: $container-width;
  padding-left:25px;
  padding-right:25px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background:#fff;
  @include respond-to($screen1260){
  	max-width: calc(100% - 30px);
    padding-left:20px;
  	padding-right:20px;
  }
  @include respond-to($screen767){
  	max-width: calc(100% - 16px);
    padding-left:10px;
  	padding-right:10px;
  }
}

.row{
  display: flex;
  flex-wrap: wrap;
}

.form-wrap{
  input[type="text"],
  input[type="number"],
  input[type="email"],
  input[type="password"],
  input[type="date"],
  input[type="search"],
  input[type="date"],
  input[type="datetime-local"],
  input[type="tel"],
  textarea,
  select {
    background-color: #9DA48B26;
    border: none;
    border-radius: 20px;
    color: var(--black);
    float: left;
    height: 42px;
    padding: 8px 10px;
    transition: all .3s ease-out 0s;
    width: 100%;
    appearance: none;
    margin-bottom: 20px;
    &amp;:focus {
      border: 1px solid var(--black);
      color: var(--black);
    }
  }
  label{
    margin-bottom: 8px;
    display: block;
  }
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  background-color: #f2f2f2 !important;
  background-image: none !important;
  color: #414346 !important;
}

.checkbox{
  position: relative;
  input[type="checkbox"]{
    opacity: 0;
    visibility: hidden;
    width:0;
    height:0;
    margin:0;
    display: none;

    &amp;:checked + label:after {
      content: '';
      display: block;
      position: absolute;
      top: 3px;
      left: 6px;
      width: 4px;
      height: 8px;
      border: solid #2f2f2f;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }
  }
  label{
    position: relative;
    cursor: pointer;
    line-height: 18px;
    &amp;:before {
      content: '';
      -webkit-appearance: none;
      background-color: transparent;
      border: 1px solid #2f2f2f;
      padding: 8px;
      display: inline-block;
      position: relative;
      vertical-align: middle;
      cursor: pointer;
      margin-right: 7px;
    }
  }
}
.col-row{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.col-eight{
  flex: 0 0 75%;
  max-width: 75%;
  padding-left: 15px;
  padding-right: 15px;
}
.col-six{
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
  padding-left: 15px;
  padding-right: 15px;
}
.col-five{
  flex: 0 0 20%;
  max-width: 20%;
  padding-left: 15px;
  padding-right: 15px;
}
.col-four{
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 15px;
  padding-right: 15px;
}
.col-three{
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-left: 15px;
  padding-right: 15px;
}
.col-two{
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.col-full{
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.rte{
  h1{
    font-size:30px;
    line-height:40px;
    margin-bottom: 25px;
    @include respond-to($screen540){
      font-size:28px;
      line-height:38px;
      margin-bottom: 10px;
    }
  }
  h2 {
    font-size:28px;
    line-height:36px;
    margin-bottom: 25px;
    @include respond-to($screen540){
      font-size:26px;
      line-height:34px;
      margin-bottom: 10px;
    }
  }

  h3 {
    font-size:24px;
    line-height:34px;
    margin-bottom: 20px;
    @include respond-to($screen540){
      font-size:22px;
      line-height:32px;
      margin-bottom: 10px;
    }
  }

  h4 {
    font-size:22px;
    line-height:34px;
    margin-bottom: 20px;
    @include respond-to($screen540){
      font-size:20px;
      line-height:30px;
      margin-bottom: 10px;
    }
  }
  h5 {
    font-size:18px;
    line-height:28px;
    margin-bottom: 15px;
    @include respond-to($screen540){
      font-size:16px;
      line-height: 26px;
      margin-bottom: 10px;
    }
  }
  h6 {
    font-size:16px;
    line-height: 26px;
    margin-bottom: 15px;
    @include respond-to($screen540){
      font-size:14px;
      line-height: 28px;
      margin-bottom: 10px;
    }
  }

  p {
    margin-bottom: 15px;
    line-height: 22px;
    &amp;:last-child{
      margin-bottom: 0;
    }
  }

  img, p img {
    margin-bottom: 10px;
    max-width: 100%;
    border: 0 solid #ccc !important;
    &amp;.img-left{
      margin-right:45px;
      margin-bottom: 40px;
    }
    &amp;.img-right{
      margin-left:45px;
      margin-bottom: 40px;
    }
  }
  ul {
    padding-left: 30px;
    list-style: disc;
  }

  ul, ol {
    padding-left: 30px;
    li{
      line-height: 25px;
      &amp;:last-child{
        margin-bottom: 15px;
      }
    }
  }
  blockquote{
    border-left:4px solid #fff;
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    footer{
      font-size: 80%;
      line-height: 1.42857143;
      color: #777;
    }
  }
  .blockquote-reverse{
    border-left:0 solid #fff;
    border-right:4px solid #fff;
    text-align: right;
  }

  address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857143;
  }
  mark {
    background-color: #2f2f2f;
    padding: 0 3px;
  }
  .h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small {
    font-size: 65%;
    color: #2f2f2f;
  }
}


.sec-tagline{
  font-size:14px;
  font-weight:400;
}


.user-section{
  padding: 50px 0;
  .sec-title{
    margin-bottom: 25px;
    @include respond-to($screen480){
        font-size:18px;
        margin-bottom: 10px;
    }
  }
  .user-inner-box{
    max-width: 425px;
    width: 100%;
    padding: 35px 40px;
    margin: 0 auto;
    text-align: center;
    @include respond-to($screen480){
      padding: 18px;
      .sec-title{
        font-size: 18px;
        margin-bottom: 10px;
      }
    }
  }
  .form-wrap{
    margin-bottom: 15px;
    p{
      margin-bottom: 25px;
      @include respond-to($screen480){
        margin-bottom: 14px;
        font-size: 13px;
      }
    }
  }

  .errors{
    ul{
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
      li{
        background-color: rgba(249, 8, 8, 0.5);
        border: 1px solid #e11010;
        border-radius: 3px;
        padding: 5px;
        color: #ffffff;
        font-size: 14px;
      }
    }
  }
}

.account-title{
    padding: 0 0 10px 0;
    margin-bottom: 25px;
    color: var(--yellow);
    border-bottom: 1px solid var(--yellow);
}
.account-navigation{
  border-bottom: 1px solid var(--yellow);
  ul{
    display: flex;
    align-items: center;
    justify-content: center;
    li{
      margin: 0 20px;
      text-align: center;
      border-bottom: 3px solid transparent;
      transition: ease 0.2s;
      @include respond-to($screen540){
        margin: 0 10px;
      }
      @include respond-to($screen360){
        margin: 0 5px;
      }
      a{
        padding: 10px 0;
        display: block;
        @include respond-to($screen360){
          font-size: 11px;
          line-height:15px;
        }
      }
      &amp;.active,
      &amp;:hover{
        border-bottom: 3px solid var(--yellow);
      }
    }
  }
}
.account-section{
  .account-content{
    padding: 40px 0 0;
    .account-wrap{
      margin-bottom:30px;
    }
    @include respond-to($screen767){
      .account-cover{
        .col-two{
          flex: 0 0 100%;
          max-width: 100%;
          padding: 0;
          h2{
            font-size:18px;
          }
        }
        .col-full{
        	padding: 0;
        }
      }
    }
  }
  
  @include respond-to($screen767){
    .order-list{
      thead{
        display: none;
      }
      tbody{
        td{
          border: none;
          text-align: right !important;
          display:block;
          width: 100%;
          padding: 6px 5px;
          padding-left:45%;
          position:relative;
          line-height: 18px;

          &amp;:before{
            position: absolute;
            left: 0;
            top: 3px;
            font-weight:600;
          }
          &amp;.or-id{
            &amp;:before{
              content: 'ID';
            }
          }
          &amp;.or-date{
            &amp;:before{
              content: 'DATE';
            }
          }
          &amp;.orpro-detail{
            &amp;:before{
              content: 'PRODUCT DETAIL';
            }
          }
          &amp;.pay-status{
            &amp;:before{
              content: 'PAYEMNT STATUS';
            }
          }
          &amp;.ff-status{
            &amp;:before{
              content: 'FULFILMENT STATUS';
            }
          }
          &amp;.or-total{
            font-weight:600;
            &amp;:before{
              content: 'TOTAL';
            }
          }

          &amp;.or-sku{
            &amp;:before{
              content: 'SKU';
            }
          }
          &amp;.or-qty{
            &amp;:before{
              content: 'QTY';
            }
          }
          &amp;.or-price{
            &amp;:before{
              content: 'PRICE';
            }
          }
          @include respond-to($screen360){
            font-size: 12px;
          }
        }
      }
    }
  }
  
  
  @include respond-to($screen1024){
    .row{
    	margin:0 !important;
    }
    .col-eight{
      flex: 0 0 100%;
      max-width: 100%;
      padding: 0;
    }
    .col-four{
      flex: 0 0 100%;
      max-width: 100%;
      padding: 15px 0 0;
      margin-bottom:30px;
    }
  }
  .address-cover{
    padding: 20px;
    background: var(--bg-yellow);
    height: 100%;
    @include respond-to($screen767){
    	padding: 15px;
    }
  }
  h2{
    font: var(--h3);
    color: var(--yellow);
    margin: 0 0 20px;
  }
  p{
    font-size: 14px;
    line-height:22px;
    &amp;:not(:last-child){
      margin-bottom: 20px;
    }
  }
  .btn-box{
    display: flex;
    //margin-bottom: 15px;
  }

  .edit-address{
    padding: 0 0 50px;
    @include respond-to($screen540){
      text-align:center;
    }
    
  }
  .row{
    margin-left: -15px;
    margin-right: -15px;
  }
  .edit-address-box{
    padding: 20px 30px 30px;
    display: none;
    @include respond-to($screen767){
      padding: 20px 15px 20px;  
      .button {
        margin-top:30px;
        @include respond-to($screen540){
          .btn{
            margin-bottom:10px;
          }
        }
      }
    }
    
    .sec-title{
      padding: 0 5px;
      margin-bottom: 20px;
    }
  }
  @include respond-to($screen767){
    .edit_add{
      padding: 20px 0!important;
      .button {
        margin-top:30px;
        @include respond-to($screen540){
          .btn{
            margin-bottom:10px;
          }
        }
        
      }
    }
  }
  .order-history{
    padding: 20px;
    background: var(--bg-yellow);
    @include respond-to($screen767){
      padding: 10px;
    }
    .account-title{
      span {
        text-transform: none;
        display: block;
        font-size: 13px;
        margin-top: 3px;
        color: #657288;
        font-weight:400;
      }
    }
  }
  .table{
    width: 100%;
    max-width: 100%;
    margin-bottom: 0px;
    border-collapse: collapse;
    background-color: transparent;
    text-align: left;
    .pay-status,
    .ff-status,
    .or-total{
      text-align: center;
    }

  }
  table{
    th{
      padding: 15px;
      text-transform: uppercase;
      //border-bottom: 2px solid #4c4c4c;
    }
    tbody {
        @include respond-to($screen767){
          tr{
            &amp;:not(:last-child){
              border-bottom: 1px solid var(--yellow);
            }
          }
        }
      td{
          padding: 15px;
          background-color: transparent;
          border: none;
          border-top: 1px solid var(--yellow);
          vertical-align: top;
      }
    }
    .cart-footer{
      font-weight: 700;
      font-size:14px;
    }
    .cart-total{
      font-weight: 700;
      font-size:18px;
    }
  }
  .checkout-cover{
    padding: 20px;
    p{
      margin-bottom: 15px;
    }
    .sec-title{
      border-bottom: 1px solid #2f2f2f;
      padding: 10px 0px;
      margin: 0 0 10px;
      font-size:18px;
      font-weight: 700;
    }
  }
}

/** END COMMON CSS **/

.section-header h1 {
    font: var(--h3);
    text-align: center;
}
.account-section table tbody .orpro-detail a{
    display:block;
    line-height: 1.3;
}
.account-section .btn-box .button:not(:last-of-type) {
    margin: 0 20px 0 0;
}
.edit_add .button button {
    margin: 0 20px 0 0;
}
.account-section table tbody tr:not(:last-child) {
    border-bottom: 1px solid #2f2f2f;
}
.address-form #address_default_address_new {
    -webkit-appearance: auto;
}
.newsletter-subscribe-checkbox input[type="checkbox"] {
    display: block;
    -webkit-appearance: checkbox;
}.newsletter-subscribe-checkbox label {
    display: flex;
    align-items: center;
}

.newsletter-subscribe-checkbox label input {
    width: 15px;
    flex: unset;
    accent-color: grey;
    margin: 0 10px 0 0;
    height: 15px;
}

.newsletter-subscribe-checkbox {
    margin-bottom: 20px;
    padding: 12px 28px;
}

.newsletter-subscribe-checkbox label span {
    display: block;
    color: var(--black);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-family: var(--secondry-font) !important;
}

@media screen and (max-width: 1170px){
    .newsletter-subscribe-checkbox label span{
        font-size: 16px;
    }
}
@media screen and (max-width: 1024px) {
  .account-section .col-four {
      flex: 0 0 100%;
      max-width: 100%;
      padding: 15px 0 0;
      margin-bottom: 30px;
  }
  .account-section .col-eight {
      flex: 0 0 100%;
      max-width: 100%;
      padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .register_form .signup_form_top .benefits_btn_wp{
      text-align: left;
      margin: 0;
  }
  .newsletter-subscribe-checkbox {
      margin-bottom: 13px;
      padding: 14px 20px;
  }
  .newsletter-subscribe-checkbox label span{
      font-size: 13px;
      line-height: 20px;
  }
  .account-section .edit-address-box .button .btn, .account-section .edit_add .button .btn {
      margin-bottom: 10px;
  }
  .account-section .account-content .account-cover .col-full {
      padding: 0;
  }
  .account-section .account-content {
    padding: 20px 0 0;
  }
  .account-title,
  .section-header h1,
  .account-section h2{
      font: var(--h4);
  }
  .account-section .account-content .account-cover .col-two {
      flex: 0 0 100%;
      max-width: 100%;
      padding: 0;
  }
  .account-section .row {
      margin: 0!important;
  }
  .order-list{
    thead{
      display: none;
    }
    tbody{
      td{
        border: none;
        text-align: right !important;
        display:block;
        width: 100%;
        padding: 6px 5px;
        padding-left:45%;
        position:relative;
        line-height: $line-height18;

        &amp;:before{
          position: absolute;
          left: 0;
          top: 3px;
          font-weight:700;
        }
        &amp;.or-id{
          &amp;:before{
            content: 'ID';
          }
        }
        &amp;.or-date{
          &amp;:before{
            content: 'DATE';
          }
        }
        &amp;.orpro-detail{
          &amp;:before{
            content: 'PRODUCT DETAIL';
          }
        }
        &amp;.pay-status{
          &amp;:before{
            content: 'PAYEMNT STATUS';
          }
        }
        &amp;.ff-status{
          &amp;:before{
            content: 'FULFILMENT STATUS';
          }
        }
        &amp;.or-total{
          font-weight:600;
          &amp;:before{
            content: 'TOTAL';
          }
        }

        &amp;.or-sku{
          &amp;:before{
            content: 'SKU';
          }
        }
        &amp;.or-qty{
          &amp;:before{
            content: 'QTY';
          }
        }
        &amp;.or-price{
          &amp;:before{
            content: 'PRICE';
          }
        }
        @include respond-to($screen360){
          font-size: $font12;
        }
      }
    }
  }
  .account-section .order-list tbody td {
      border: none;
      text-align: right!important;
      display: block;
      width: 100%;
      padding: 6px 5px 6px 45%;
      position: relative;
      line-height: 18px;
  }
}
@media only screen and (max-width: 540px){
  .account-navigation ul li {
      margin: 0 10px; 
  }
}
@media only screen and (max-width: 425px){
  .account-section .order-list tbody td {
      font-size: 12px;
  }
  .account-navigation ul li a {
      font-size: 13px;
      line-height: 15px;
  }
  .account-navigation ul li {
      margin: 0 5px;
  }
}
@media screen and (max-width: 389px){
    .newsletter-subscribe-checkbox label span{
        text-overflow: ellipsis;
    }
}
@media only screen and (max-width: 360px){
  .account-navigation ul li a {
      font-size: 11px;
  }
}</pre></body></html>