/*==================== GLOBAL CORE ELEMENTS ==============================*/

@font-face {
    font-family: century-gothic;
    src: url(../fonts/911Fonts.com_CenturyGothicRegular__-_911fonts.com-fonts-mhpY.ttf);
}

.century-gothic {
    font-family: century-gothic;
}

.uppercase {
    text-transform: uppercase;
}

@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700);
html,
body {
    /*  font-family: 'Source Sans Pro', sans-serif;  */
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #004727;
    font-size: 12px;
    overflow-x: hidden;
}

body {
    background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
}

h1 span {
    font-weight: 700;
}

hr {
    border-top: 2px solid #ebebeb;
    margin: 15px 0;
}

ul,
ol {
    padding-left: 18px;
}

ol li {
    padding-left: 5px;
}

a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

a:hover {
    color: #23527c;
}

a:focus {
    text-decoration: none;
    outline: none;
}

.color {
    background-color: #004727;
}

@font-face {
    font-family: 'avenir';
    src: url('../fonts/avenir.otf') format('truetype');
}

@font-face {
    font-family: 'didot';
    src: url('../fonts/didot.ttf') format('truetype');
}


/*==================== TEMPLATE CORE ELEMENTS ============================*/

.avenir {
    font-family: avenir;
}

.didot {
    font-family: didot;
}

#home {
    border-top: 8px solid #004727;
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

.title h2 {
    margin-bottom: 24px;
    border-bottom: 4px double #aaa;
    padding-bottom: 16px;
    font-size: 24px;
    font-weight: 700;
    color: #210d0e;
}


/**
 *
 * Forms
 *
 */

.myform {
    padding-top: 5px;
    padding-bottom: 15px;
}

.myform form p {
    margin-top: 16px;
}

.myform h2 {
    margin-bottom: 20px;
    border-bottom: 2px solid #ebebeb;
    padding-bottom: 15px;
    font-weight: 400;
}

.myform h3 {
    font-size: 16px;
    border-bottom: 2px solid #ddd;
    font-weight: 700;
    padding: 8px;
    margin: 0 0 15px 0;
}

.myform .btn {
    margin: 0;
    height: 44px;
}

.myform .form-group label {
    display: none;
}

.myform .form-control {
    display: inline;
    background: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    height: 44px;
    font-size: 14px;
    font-weight: 400;
    vertical-align: top;
    border: 2px solid #ebebeb;
    box-shadow: none;
    color: #000000;
    /*  ios gradiet fix */
    -webkit-appearance: none;
}

.myform .form-control::-webkit-input-placeholder {
    color: #bbbbbb;
}

.myform .form-control:-moz-placeholder {
    color: #bbbbbb;
}

.myform .form-control::-moz-placeholder {
    color: #bbbbbb;
}

.myform .form-control:focus {
    outline: none;
    border: 2px solid #000;
}

.myform textarea.form-control {
    height: auto;
    max-width: 100%;
    min-width: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    padding-top: 8px;
    vertical-align: top;
}

.myform .no-placeholder .form-group label {
    display: block;
}

.myform.no-placeholder .controls {
    margin-top: 0;
}

.special {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.controls {
    position: relative;
}

.checkbox,
.radio {
    margin: 24px 0px;
    position: relative;
    font-size: 14px;
    line-height: inherit;
    -webkit-transition: color 0.3s linear;
    -moz-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear;
}

.checkbox label,
.radio label {
    padding-left: 0;
    font-size: 14px;
    vertical-align: -webkit-baseline-middle;
}

.checkbox label span,
.radio label span {
    vertical-align: top;
    line-height: 23px;
    color: #000;
}

label.show {
    display: block;
    text-decoration: none;
}

input[type=radio],
input[type=checkbox] {
    margin: 4px 7px 0 0;
    line-height: normal;
    font-size: 21px;
    text-align: center;
}

#total {
    font-weight: 600;
    font-size: 21px;
}

.form-control-inline {
    min-width: 0;
    width: auto!important;
    display: inline!important;
}

.table tbody>tr>td.vert-align {
    vertical-align: middle;
}

address {
    font-size: 14px;
}


/* ------------------------------ skin checkbox -------------------------- */

input[type="radio"],
input[type="checkbox"] {
    /*
  display: none;*/
}

input[type="radio"]+span:before,
input[type="checkbox"]+span:before {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'icomoon';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-right: 10px;
    font-size: 21px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input[type="radio"]+span:before {
    content: "\e631";
}

input[type="radio"]:checked+span:before {
    content: "\e630";
}

input[type="checkbox"]+span:before {
    content: "\e62e";
}

input[type="checkbox"]:checked+span:before {
    content: "\e62d";
}


/**
 *
 * Accordion
 *
 */

.panel-group {
    margin-bottom: 0;
}

.panel-group .panel {
    border-radius: 0;
    margin-top: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
}

.panel-group .panel+.panel {
    margin-top: 15px;
}

.panel-group .panel-body {
    padding: 15px 0;
}

.panel-group .panel-heading {
    border-radius: 0;
    background-color: #ebebeb;
}

.panel-group .panel-heading+.panel-collapse>.panel-body {
    border: 0;
}

.panel-group .panel-title a {
    font-weight: 700;
    font-size: 16px;
    color: #004727;
}

.panel-group .panel-title a.collapsed {
    color: #000000;
}

.panel-group .panel-title a:hover {
    text-decoration: none;
    color: #004727;
}

.panel-group .panel-collapse {
    padding: 0 15px;
}


/**
 *
 * Menu
 *
 */

.menu-wrapper {
    position: relative;
    font-weight: 300;
}

.menu-wrapper h3 {
    color: #ffffff;
    margin-left: 20px;
    margin-top: 18px;
    text-transform: uppercase;
    font-size: 22px;
}

.menu-wrapper .mt-info {
    padding-left: 20px;
}

.menu-wrapper .mt-info h3 {
    color: #ffffff;
    margin-left: 0;
}

.menu-wrapper .mt-info .btn {
    margin-left: 2px;
    margin-bottom: 30px;
}

.menu-wrapper .mt-info ul {
    list-style-type: none;
    margin: 20px 0 35px 0;
    padding-left: 0;
}

.menu-wrapper .mt-info ul li {
    font-size: 16px;
    margin-bottom: 15px;
}

.menu-wrapper .mt-info ul li a {
    font-weight: 300;
}

@media (max-width: 767px) {}

.effect li a {
    position: relative;
    color: #fff;
    font-weight: 400;
    line-height: 20px;
    display: inline-block;
    padding: 0;
    background: transparent;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    text-transform: uppercase;
}

.effect li a:hover,
.effect li a:focus {
    /*
background-color: #000000;
color: #ffffff;
*/
    color: #004727;
    text-decoration: none;
}

.effect li.active a {
    /*
background-color: #000000;
color: #ffffff;
*/
    text-decoration: none;
}

.banner-slider .banner-carousel .slider-item {
    position: relative;
    /* min-height: 100vh; */
    height: 410px;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.product-view-carousel .slider-item {
    position: relative;
    height: 360px;
    padding-top: 200px;
    padding-bottom: 200px;
    text-align: center;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.header {
    background: rgba(27, 117, 186, 0.8);
    /*
    position: absolute;	*/
    z-index: 2;
    width: 100%;
    height: 90px;
    max-width: 100%;
}

@media (max-width: 767px) {}

.form-group.form-group-sm .form-control {
    height: 30px;
    padding: 10px;
    font-size: 13px;
    border-radius: 0;
}

.header .form-group.form-group-sm .input-icon {
    top: 0;
    left: initial;
    right: 15px;
}

.header .form-control {
    background: rgba(0, 0, 0, .4);
    border: 1px solid #fff;
    color: #fff;
}

.form-group.form-group-sm .input-icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
}

.form-group .input-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    font-size: small;
    line-height: 32px;
    display: block;
    top: 29px;
    left: 1px;
    text-align: center;
    color: #fff;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
    transition: .3s;
    z-index: 2;
}

.form-group-md .input-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    font-size: medium;
    line-height: 32px;
    display: block;
    top: 29px;
    left: 1px;
    text-align: center;
    color: #fff;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
    transition: .3s;
    z-index: 2;
}

.pay-points h4 {
    color: #fff;
    font-weight: bold;
    letter-spacing: 4px;
    line-height: 16px;
}

.pay-points p {
    color: #fff;
    line-height: 12px;
}

.mt15 {
    margin-top: 15px;
}

.mt25 {
    margin-top: 25px;
}

.productlist-name-container {
    /*
	position:absolute;	*/
    left: 20px;
    bottom: 20px;
    top: 15px;
    text-shadow: 0 3px 4px black;
    text-align: center;
}

.productlist-name-container h2 {
    color: white;
    font-size: 19px;
    text-transform: uppercase;
    text-align: center;
    left: 20px;
    bottom: 20px;
    text-shadow: 2px 2px 0px black;
    text-align: center;
}

.productlist-name-container p {
    color: #fff;
    font-size: 20px;
}

.productlist-price-container {
    background: rgba(255, 255, 255, 0.8);
}

.productlist-price-container .discount {
    padding: 19px 15px;
}

.productlist-price-container .discount h4 {
    color: #0fc473;
    font-size: 50px;
    font-weight: bold;
    margin: 0;
}

.productlist-price-container .discount h3 {
    color: #0fc473;
    font-size: 50px;
    font-weight: bold;
    margin: 0;
    line-height: 55px;
}

.productlist-price-container .discount sub,
.productlist-price-container .discount sup {
    font-size: 22px;
}

.productlist-price-container .discount p {
    color: #010000;
    text-decoration: line-through;
    font-size: 16px;
    margin: 0;
}

.productlist-price-container .timer {
    padding: 15px;
}

.productlist-price-container .timer h4 {
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    margin: 0;
    border-radius: 5px;
    background-color: #004727;
}

.productlist-price-container .timer h5 {
    color: #0fc473;
    font-size: 22px;
    margin: 0;
}

.secondary-productlist-name-container {
    position: absolute;
    left: 15px;
    bottom: 15px;
}

.secondary-productlist-name-container h2 {
    color: #fff;
    font-size: 25px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
}

.secondary-productlist-name-container p {
    color: #fff;
    font-size: 16px;
}

.item1-height {
    height: 576px;
}

.item2-height {
    height: 350px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    outline: none;
    image-rendering: -webkit-optimize-contrast;
}

.item3-height {
    height: 350px;
}

.item4-height {
    height: 350px;
}

.item5-height {
    height: 350px;
}

.desktop-logo {
    position: absolute;
    left: 0;
}


/* ------------------------------ nav menu -------------------------- */

.main-nav a {
    color: #000000;
}

.nav-list {
    list-style-type: none;
    display: block;
    margin: 20px auto;
    padding: 0 2em;
    font-weight: 300;
    color: #ffffff;
}

.nav-list .menu-list {
    text-align: center;
    display: inline-block;
    margin: 0 0 0 16px;
    height: auto;
}

.nav-list .menu-list a {}

.nav-list .active a span {
    background-color: #000000;
    color: #ffffff;
}

.nav-brand {
    border: 2px solid #000000;
    width: auto;
    font-size: 38px;
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 260px;
    font-weight: 300;
    line-height: 46px;
    cursor: pointer;
    color: #000000;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.nav-brand:hover {
    /* background-color: #000000; */
    color: #ffffff;
    text-decoration: none;
    padding: 0px 10px;
}

.nav-brand span {
    font-weight: 700;
}

@media (max-width: 767px) {
    .nav-brand {
        float: left;
        width: auto;
        font-size: 28px;
        letter-spacing: -1px;
        border: 0;
    }
}

.nav-header {
    margin: 15px 0;
    position: relative;
    height: 48px;
}

.nav-header h1 {
    margin: 5px 0 0 0;
}

.nav-header .cart {
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 767px) {
    .nav-header .cart {
        position: relative;
    }
}

.nav-header .badge {
    position: absolute;
    font-size: 12px;
    font-weight: 400;
    background-color: #004727;
}

@media (max-width: 767px) {
    .nav-header {
        margin: 15px 0;
    }
}

.nav-icon,
.nav-icon-outline {
    background-color: #000000;
    display: block;
    color: #ffffff;
    font-size: 16px;
    display: block;
    width: 100%;
    line-height: 48px;
    text-align: center;
    margin-left: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    border-radius: 4px;
}

.nav-icon-outline span {
    display: inline-block;
    position: relative;
    top: -2px;
    margin-left: 12px;
    font-weight: bold;
    line-height: 32px;
    font-family: 'Lato', sans-serif;
}

.nav-icon:hover,
.nav-icon-outline:hover,
.nav-icon:focus,
.nav-icon-outline:focus {
    color: #ffffff;
    background: #0fc473;
    text-decoration: none;
    border-color: #0fc473;
}

a.nav-icon-outline {
    background-color: transparent;
    border-color: transparent;
    color: #000000;
}

a.nav-icon-outline:hover,
a.nav-icon-outline:focus {
    color: #ffffff;
    background-color: #210d0e !important;
    text-decoration: none;
    border-color: transparent;
}


/* mobile */

#wrap {
    position: relative;
    backface-visibility: hidden;
    min-height: 100%;
    min-width: 100%;
    z-index: 1;
    background: #fbfbfb url('../img/fabric.png');
    top: 0;
    bottom: 100%;
    left: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#wrap::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    content: '';
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
    z-index: -1;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.menu-open#wrap::before {
    opacity: 1;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    z-index: 100;
}

.menu-open {
    -webkit-transform: translate3d(-240px, 0, 0);
    -moz-transform: translate3d(-240px, 0, 0);
    -o-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0);
    overflow: hidden;
}

.close-menu:hover {
    color: #004727;
    text-decoration: none;
}

@media (max-width: 767px) {}


/**
 *
 * Buttons
 *
 */

.btn {
    cursor: pointer;
    padding: 0 35px;
    line-height: 38px;
    border-radius: 3px;
    font-weight: 700;
    background: #004727;
    color: #ffffff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    /*	height: 48px;	border-radius: 5px;	*/
}

.btn:hover,
.btn:active,
.btn:focus {
    color: #ffffff;
    background-color: #004727;
}


/*
.btn {
  font-size: 12px;
  cursor: pointer;
  padding: 0 35px;
  line-height: 43px;
  display: inline-block;
  height: 48px;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 700;
  outline: none;
  position: relative;
  background: #0fc473;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:hover,
.btn:active,
.btn:focus {
  color: #ffffff;
  top: 0;
  text-decoration: none;
  background-color: #0fc473;
  box-shadow: none;
  border: 2px solid #0fc473;
}
*/

.btn.pull-right,
.btn.pull-left {
    margin: 0;
}

.btn-outline,
.btn-outline-w {
    background: transparent;
    border: 2px solid #000000;
    box-shadow: none;
    color: #000000;
    text-decoration: none;
}

.btn-outline:hover,
.btn-outline-w:hover,
.btn-outline:focus,
.btn-outline-w:focus {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
    top: 0;
    text-decoration: none;
}

.btn-outline-w {
    border-color: #FFF;
    color: #FFF;
}

.btn-outline-w:hover,
.btn-outline-w:focus {
    color: #ffffff;
    top: 0;
    text-decoration: none;
    background-color: #004727;
    box-shadow: none;
    border: 2px solid #004727;
}

.btn-disable,
.btn-disable:hover,
.btn-disable:focus {
    background: #ddd;
    border-color: #ddd;
}

.btn-right {
    margin-right: 0;
    float: right;
}

@media (max-width: 767px) {
    .btn-right {
        text-align: center;
        float: none;
        margin: 0 auto;
        display: block;
    }
}

.btn i {
    font-style: normal;
    font-size: 16px;
    vertical-align: sub;
}

.btn i:before {
    line-height: 39px;
}

.btn i.left {
    padding-right: 10px;
}

.btn i.right {
    padding-left: 10px;
}


/**
 *
 * Breadcrumb
 *
 */

.breadcrumb {
    background-color: transparent;
    border-bottom: 4px double #aaa;
    padding: 0 15px 8px 15px;
    margin: 0 0 15px 0;
    border-radius: 0;
}

.breadcrumb a {
    color: #004727;
}

.breadcrumb>.active {
    color: #ccc;
}

.breadcrumb>li {
    padding: 0;
}


/**
 *
 * Product list
 *
 */

.productlist a .product-price {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: #000000;
}

.productlist a:hover .product-price {
    background-color: #000;
    color: #FFF;
}

.productlist .product {
    padding-top: 0;
    padding-bottom: 50px;
}

.productlist .row {
    margin-right: 0;
    margin-left: 0;
}

@media (max-width: 767px) {
    .productlist .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}

.productlist .col-sm-12,
.productlist .col-sm-8,
.productlist .col-sm-6,
.productlist .col-sm-4 {
    position: relative;
    min-height: 1px;
    padding: 0px;
}

@media (max-width: 767px) {
    .productlist .col-sm-12,
    .productlist .col-sm-8,
    .productlist .col-sm-6,
    .productlist .col-sm-4 {
        min-height: 1px;
        /* padding: 0 15px 15px 15px; */
    }
}

.productlist .col-sm-4.special {
    padding: 0;
}

.productlist .productlist-price-container {
    position: absolute;
    bottom: 3%;
    right: 12%;
    text-align: right;
    z-index: 89;
    width: 459px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .productlist .productlist-price-container {
        margin: 30px;
    }
}

.productlist .productlist-love-container {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 50%;
    text-align: left;
    z-index: 89;
    margin: 22px;
    font-size: 20px;
    line-height: 20px;
}

.productlist .product-price {
    background-color: #fff;
    display: inline-block;
    padding: .7em 1.1em;
    font-size: 11px;
    text-transform: none;
    letter-spacing: 1px;
    font-weight: bold;
    font-style: normal;
    line-height: 1.3em;
}

.productlist .product-price .original-price {
    text-decoration: line-through;
    margin-left: .5em;
}

.price:before {
    content: '$';
}

.productlist-label {
    position: absolute;
    top: 26px;
    right: 22px;
}

@media (max-width: 767px) {
    .productlist-label {
        top: 18px;
        right: 30px;
    }
}

.sold-out-label,
.sale-label {
    color: #004727;
    font-weight: 400;
    text-transform: uppercase;
    padding: 3px 9px;
    border: 2px solid #004727;
}

.sale-label {
    color: #000;
    border-color: #000;
}

.show-more {
    margin-top: 30px;
}


/**
 *
 * Product colors
 *
 */

.product-colors {
    padding: 0;
    margin-bottom: 30px;
    padding-top: 15px;
}

.product-colors li {
    border: 2px solid #fff;
    display: inline-block;
    margin: 2px 1px;
    vertical-align: top;
    list-style: none;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.product-colors li a {
    background-position: center center;
    background-repeat: no-repeat;
    border: 4px solid #fff;
    display: block;
    height: 38px;
    text-align: center;
    width: 38px;
    border-radius: 50%;
}

.product-colors li a.white {
    border: 4px solid #eee;
}

.product-colors li:hover {
    border: 2px solid #000;
}

.product-colors li.selected {
    border: 2px solid #000;
}


/**
 *
 * Product detail
 *
 */

.product .product-price {
    font-weight: 300;
    font-size: 32px;
    padding: 0;
}

.product .product-price .original-price {
    color: #ebebeb;
    margin-left: 5px;
}

.product .product-detail {
    margin: 30px 0;
}

.product .product-detail ul {
    padding-left: 20px;
}

.product .product-img {
    margin-bottom: 15px;
}

.product .product-mark {
    padding-top: 30px;
}

.product-mobile {
    padding-bottom: 10px;
}


/**
 *
 * Social links
 *
 */

.social-links {
    list-style: none;
    margin: 25px 0 0 0;
    padding: 0;
}

.social-links li {
    display: inline-block;
    margin: 0 5px 0 5px;
    border-radius: 3px;
    box-shadow: 0 4px 0 transparent;
}

.social-links li a {
    background: transparent;
    border: 2px solid #000000;
    display: block;
    color: #000000;
    font-size: 16px;
    width: 41px;
    height: 41px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.social-links li a:hover {
    color: #FFF;
    background: #000000;
    text-decoration: none;
    border-color: #000000;
}


/**
 *
 * Cart
 *
 */

.cart-list {
    min-height: 480px;
    padding-bottom: 40px;
    margin-bottom: 0;
}

.cart-list a.remove-item {
    color: #000000;
}

.cart-list a.remove-item i {
    line-height: 34px;
}

.cart-list a.remove-item:hover {
    color: #004727;
    text-decoration: none;
}

.cart-list a.remove-item th {
    font-size: 16px;
}


/**
 *
 * Blog
 *
 */

.blog-sidebar h3 {
    margin-top: 28px;
}

.blog-sidebar ul {
    padding-left: 18px;
}

.blog-sidebar .post-date {
    margin-bottom: 10px;
    text-transform: uppercase;
}

.blog-sidebar .post-date span {
    float: right;
}

article {
    margin-bottom: 60px;
}

article h1 {
    font-size: 32px;
}

article h1 a {
    color: #000;
}

article h1 a:hover {
    text-decoration: none;
}

article .social-links {
    margin: 30px 0;
}

blockquote footer,
blockquote small,
blockquote .small {
    background-color: transparent;
    padding: 10px 0;
}

.paging {
    margin: 30px 0;
}

.paging .btn {
    padding: 0 20px;
}

.content .productlist {
    padding: 0 0 20px 0;
}

#comments_pagination {
    margin: 16px 0;
    text-align: center;
}

#comments_pagination a,
#comments_pagination span {
    cursor: pointer;
    font-size: 12px;
    padding: 0 16px;
    line-height: 38px;
    display: inline-block;
    margin: 0 8px 4px 0;
    height: 40px;
    text-decoration: none;
    font-weight: 700;
    outline: none;
    position: relative;
    background: #FFF;
    color: #000000;
    border: 2px solid #ebebeb;
    border-radius: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#comments_pagination a:hover,
#comments_pagination span:hover,
#comments_pagination a:active,
#comments_pagination span:active,
#comments_pagination a:focus,
#comments_pagination span:focus {
    color: #fff;
    top: 0;
    text-decoration: none;
    background-color: #000000;
    box-shadow: none;
    border: 2px solid #000000;
}

#comments_pagination span {
    border: 2px solid #000000;
    background: #000000;
    color: #FFF;
}

.media {
    font-weight: 400;
}

.media hr {
    margin-top: 0;
}

.media h4 {
    margin: 0;
}

.media h4 span {
    float: right;
    font-size: 14px;
    color: #9f9f9f;
    font-weight: 400;
}

.media p {
    font-size: 13px;
    font-weight: 400;
}

.avatar,
.avatar:hover,
.avatar:active {
    border: 0;
}

#more-items {
    display: none;
}

.post-date {
    margin-bottom: 10px;
    text-transform: uppercase;
}

.post-date span {
    float: right;
}


/**
 *
 * Footer
 *
 */

.footer {
    background-color: #ebebeb;
    padding: 40px 0;
}

.footer .copyright ul.nav-list {
    margin: 0;
    padding: 0;
}

.footer .copyright ul.nav-list .menu-list {
    margin-left: 0;
}

@media (max-width: 767px) {
    .footer {
        text-align: center;
    }
    .footer .social-links {
        margin-right: 0;
    }
    .footer .pull-left,
    .footer .pull-right {
        float: none!important;
    }
}


/* COUNTDOWN-ALT-3 - Inspiration http://goo.gl/hRfsc */


/* ----------------------------------------------------------------------------------------- */

.alt-3 {
    text-align: center;
}

.countdown-alt-3 {
    display: inline;
    font-weight: normal;
}

.countdown-alt-3 .item {
    display: inline-block;
    vertical-align: bottom;
    position: relative;
    font-family: 'Open Sans', cursive;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #B7B7B7;
    margin: 0 2px 0;
    padding: 0 5px;
    border-radius: 5px;
    background: #2A2A2A;
    background: -webkit-linear-gradient(#2A2A2A, #000);
    background: linear-gradient(#2A2A2A, #000);
    overflow: hidden;
}

.countdown-alt-3 .separator {
    font-size: 20px;
    font-weight: bold;
}

.countdown-alt-3 .item-ss {
    font-size: 20px;
    line-height: 30px;
}

.countdown-alt-3 .item:after {
    display: block;
    height: 1px;
    border-top: 3px solid #111;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
}

.countdown-alt-3 .label {
    text-transform: uppercase;
    display: block;
    position: relative;
    font-family: 'Open Sans', cursive;
    font-weight: 700;
    line-height: normal;
    font-size: 14px;
    color: #B9B9B9;
}

.countdown-alt-3 .label.label-dd,
.countdown-alt-3 .label.label-mm,
.countdown-alt-3 .label.label-hh,
.countdown-alt-3 .label.label-ss {
    font-size: 10px;
    font-weight: normal;
    text-transform: lowercase;
}

.form-group {
    position: relative;
}

.form-group.form-group-ghost ::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group.form-group-ghost :-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    -ms-filter: none;
    filter: none;
}

.form-group.form-group-ghost ::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    -ms-filter: none;
    filter: none;
}

.form-group.form-group-ghost :-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group.form-group-ghost label {
    color: #fff;
}

.form-group.form-group-ghost .input-icon {
    color: #fff;
}

.form-group.form-group-ghost.form-group-focus .input-icon-hightlight {
    color: #f19c4f !important;
}

.form-group.form-group-ghost .form-control {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.form-group.form-group-ghost .form-control:hover {
    cursor: pointer;
}

.form-group.form-group-ghost .form-control:active,
.form-group.form-group-ghost .form-control:focus {
    border-color: #f19c4f;
}

.form-group.form-group-lg {
    margin-bottom: 25px;
}

.form-group.form-group-lg .input-icon {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 22px;
}

.form-group.form-group-lg.form-group-icon-left .form-control {
    padding-left: 45px;
}

.form-group.form-group-lg.form-group-icon-right .form-control {
    padding-right: 45px;
}

.form-group.form-group-lg label {
    font-size: 16px;
    margin-bottom: 7px;
}

.form-group.form-group-lg .form-control {
    height: 45px;
    padding: 10px 18px;
    font-size: 13px;
}

.form-group.form-group-sm {
    margin-bottom: 10px;
}

.form-group.form-group-sm label {
    margin-bottom: 3px;
    font-size: 13px;
}

.form-group.form-group-sm .form-control {
    height: 25px;
    padding: 3px 7px;
    font-size: 12px;
    line-height: 1.4em;
}

.form-group.form-group-icon-left .form-control {
    padding-left: 32px;
}

.form-group.form-group-icon-right .form-control {
    padding-right: 32px;
}

.form-group .input-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    line-height: 32px;
    display: block;
    top: 0;
    left: 1px;
    text-align: center;
    color: #fff;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    z-index: 2;
}

.form-group .input-icon.input-icon-show {
    -webkit-transform: translate3d(0, -10px, 0);
    -moz-transform: translate3d(0, -10px, 0);
    -o-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

.form-group .input-icon.input-icon-show+label+.form-control {
    padding: 6px 12px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}

.form-group.form-group-icon-right .input-icon {
    right: 1px;
    left: auto;
}

.form-group.form-group-focus .input-icon {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}

.form-group.form-group-focus .input-icon.input-icon-hightlight {
    color: #ed8323;
}

.form-group.form-group-focus .input-icon.input-icon-show {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    -ms-filter: none;
    filter: none;
}

.form-group.form-group-focus .input-icon.input-icon-show+label+.form-control {
    padding-left: 32px;
}

.form-group.form-group-focus .input-icon.input-icon-bounce {
    -webkit-animation: 1s bounce;
    -moz-animation: 1s bounce;
    -o-animation: 1s bounce;
    -ms-animation: 1s bounce;
    animation: 1s bounce;
}

.form-group.form-group-focus .input-icon.input-icon-swing {
    -webkit-animation: 1s swing;
    -moz-animation: 1s swing;
    -o-animation: 1s swing;
    -ms-animation: 1s swing;
    animation: 1s swing;
}

.form-group.form-group-focus .input-icon.input-icon-tada {
    -webkit-animation: 1s tada;
    -moz-animation: 1s tada;
    -o-animation: 1s tada;
    -ms-animation: 1s tada;
    animation: 1s tada;
}

.form-group.form-group-focus .input-icon.input-icon-shake {
    -webkit-animation: 1s shake;
    -moz-animation: 1s shake;
    -o-animation: 1s shake;
    -ms-animation: 1s shake;
    animation: 1s shake;
}

.form-group.form-group-filled .input-icon-show {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    -ms-filter: none;
    filter: none;
}

.form-group.form-group-filled .input-icon-show+label+.form-control {
    padding-left: 32px;
}

.form-group.form-group-filled label {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}

.form-group.form-group-filled label.label-anim {
    color: #ed8323;
    -webkit-animation: label-anim 0.5s;
    -moz-animation: label-anim 0.5s;
    -o-animation: label-anim 0.5s;
    -ms-animation: label-anim 0.5s;
    animation: label-anim 0.5s;
}

.form-group.form-group-filled label.label-highlight {
    color: #ed8323;
}

.form-control {
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    line-height: 1.6em;
}

.form-control:active,
.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #ed8323;
}

.form-control.error {
    border: 1px solid #ee1822;
}

.navbar-nav>li>.dropdown-menu {
    padding: 0;
}

.nav>li>a:focus,
.nav>li>a:hover {
    background-color: rgba(0,0,0,.4);
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
    background-color: #004727;
}

.dropdown-menu>li>a:hover {
    background-color: #004727;
}

.cart-count {
    /*
    background: #fff;
    border: 2px solid #fff;
    display: block;
    color: #000000;
    font-size: 16px;
    width: 25px;
    height: 25px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;	*/
}

.show-discount-timer-container {
    margin: 0 auto;
}

.productlist-name-container a {
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    text-decoration: underline;
}

.display-none {
    display: none;
}

.colordba442 {
    color: #004727;
}

.color000000 {
    color: #000000 !important;
}

.dropdown-submenu .dropdown-menu {
    margin-top: 0;
    padding: 0;
}

.product-price-detail table>tbody>tr>td {
    padding: 0px;
}

#redemption_date {
    background-color: #fff;
    cursor: pointer;
}

#product_selection_form .form-group {
    width: 50%;
}

.modal-header {
    /* background: url(../img/floral-vector-bg.jpg) repeat center center; */
    background: #004727;
    color: #fff;
}

.item2-height {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.item2-height:before {
    content: "";
    display: none;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
}

.product-hover-img {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.product-hover-img:hover .item2-height,
.product-hover-img:focus .item2-height {
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.product-hover-img:hover .item2-height:before,
.product-hover-img:focus .item2-height:before {
    display: block;
}

.product-hover-img:hover a,
.product-hover-img:focus a {
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 50px;
    cursor: pointer;
    text-align: center;
    text-decoration: none !important;
    padding: 0 40px;
}

.product-hover-img:hover a>.secondary-productlist-name-container {
    position: initial;
    left: 15px;
    bottom: 15px;
    text-decoration: none !important;
}

.secondary-productlist-name-container h2:hover {
    text-decoration: none !important;
}


/********************FOR HOVER SHOWING OF SUB MENU********************/

.navbar-nav>li>.dropdown-menu {
    margin-top: 0;
}

.dropdown-menu>li>a {
    padding: 10px;
}

@media (min-width: 768px) {
    ul.nav li:hover>ul.dropdown-menu {
        display: block;
    }
    #navbar {
        text-align: center;
    }
    .dropdown-submenu>a:after {
        margin-right: 0;
    }
}


/********************FOR HOVER SHOWING OF SUB MENU********************/

#toTop {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    text-align: center;
    border-radius: 3px;
    padding: 10px;
    line-height: 20px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    display: none;
    color: #fff;
    font-size: 20px;
}

#toBottom {
    width: auto;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    text-align: center;
    padding: 10px;
    line-height: 20px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    border-radius: 5px;
    z-index: 2;
}

label.error {
    color: #ee1822;
}

.info-preloader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 999999999999;
    background: rgba(255, 255, 255, 1);
    display: none;
}

.process-logo {
    width: 100%;
    margin: 0 auto;
    height: 100%;
}

#pre_loader_block .progress {
    position: relative;
    height: 15px;
    display: block;
    width: 100% !important;
    border-radius: 2px;
    margin: 0;
    overflow: hidden;
}

.progress {
    background-color: #004727;
}

.progress .determinate {
    position: absolute;
    background-color: inherit;
    top: 0;
    bottom: 0;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    /* Standard syntax (must be last) */
    -webkit-transition: width .3s linear;
    -moz-transition: width .3s linear;
    -o-transition: width .3s linear;
    -ms-transition: width .3s linear;
    transition: width .3s linear;
}

.progress .indeterminate {
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    /* Standard syntax (must be last) */
}

.progress .indeterminate:before {
    content: '';
    position: absolute;
    background-color: inherit;
    background: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    will-change: left, right;
    -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
    -moz-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
    -ms-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
    -o-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
    animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.progress .indeterminate:after {
    content: '';
    position: absolute;
    background-color: inherit;
    background: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    will-change: left, right;
    -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    -moz-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    -ms-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    -o-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    -webkit-animation-delay: 1.15s;
    -moz-animation-delay: 1.15s;
    -ms-animation-delay: 1.15s;
    -o-animation-delay: 1.15s;
    animation-delay: 1.15s;
}

@-webkit-keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%;
    }
    60% {
        left: 100%;
        right: -90%;
    }
    100% {
        left: 100%;
        right: -90%;
    }
}

@-moz-keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%;
    }
    60% {
        left: 100%;
        right: -90%;
    }
    100% {
        left: 100%;
        right: -90%;
    }
}

@keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%;
    }
    60% {
        left: 100%;
        right: -90%;
    }
    100% {
        left: 100%;
        right: -90%;
    }
}

@-webkit-keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%;
    }
    60% {
        left: 107%;
        right: -8%;
    }
    100% {
        left: 107%;
        right: -8%;
    }
}

@-moz-keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%;
    }
    60% {
        left: 107%;
        right: -8%;
    }
    100% {
        left: 107%;
        right: -8%;
    }
}

@keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%;
    }
    60% {
        left: 107%;
        right: -8%;
    }
    100% {
        left: 107%;
        right: -8%;
    }
}

.desktop-cart-icon {
    line-height: 32px;
}

.desktop-nav-header-badge {
    position: absolute;
    font-size: 12px;
    font-weight: 400;
    background-color: #98720f;
}

#footer {
    background-color: #232323;
    color: #000000;
}

#footer .social .social-content a {
    font-size: 14px;
    display: inline-block;
    color: #fff;
    border: 2px solid #fff;
    line-height: 32px;
    width: 32px;
    height: 32px;
    margin-top: 5px;
    text-align: center;
    margin-right: 5px;
    font-size: 16px;
    .border-radius(50%);
    .transition(all 0.3s ease);
}

#footer .footer_center {
    padding: 40px 0;
    color: #000;
    background: #f5efc2;
}

#footer .footer_center .widget ul>li a {
    color: #000;
    padding: 5px 0;
    display: inline-block;
}

#footer .footer_center .widget ul>li a :hover {
    color: rgba(255, 255, 255, .7);
}

#footer .footer_center .widget-logo .img {
    max-width: 145px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 40px;
}

.footer_border {
    /*border-top: 1px solid #000;*/
}

.share-social-list li {
    list-style-type: none;
    display: inline-block;
    vertical-align: top;
    margin: 0 2px;
}

.custom_btn {
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
    /* padding-top: 2px; */
    line-height: 0;
    height: 0px;
    font-weight: 700;
    /*background: #004727;*/
    background: #aaa;
    border: 1px solid #aaa;
    color: #ffffff;
    border-radius: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 5px;
}

.custom_background {
    height: 450px;
}

.oswald {
    font-family: 'Oswald', sans-serif;
}

.montserrat {
    font-family: century-gothic;
}

.box-icon,
[class^="box-icon-"],
[class*=" box-icon-"] {
    z-index: 2;
    position: relative;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #ed8323;
    color: #fff;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}

.round {
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.box-icon-large {
    width: 90px;
    height: 90px;
    line-height: 90px;
    font-size: 42px;
}

.box-icon-success {
    background: #51a351;
}

.progress-stage-container {
    position: relative;
}

.progress-stage-container:before {
    content: '';
    position: absolute;
    border-style: solid;
    display: block;
    width: 50%;
    bottom: 10px;
    z-index: 0;
    left: 0;
    background: #a57b29;
    border-color: #a57b29;
    height: 50px;
}

.progress-stage-container:after {
    content: '';
    position: absolute;
    border-style: solid;
    display: block;
    width: 50%;
    bottom: 10px;
    z-index: -1;
    right: 0;
    background: #004727;
    border-color: #004727;
    height: 50px;
}

.progress {
    height: 50px;
    border-radius: 0;
    margin: 10px 0;
}

.progress-bar {
    position: relative;
    padding: 8px 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    /* transition: width .6s ease; */
}

.progress-bar:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 26px 0px 25px 20px;
    border-color: transparent #e34f4f;
    display: block;
    width: 0;
    bottom: 0;
    z-index: 9;
    right: -20px;
}


/**/

.progress-bar-prev-page {
    background: #a57b29;
}

.progress-bar-prev-page:after {
    border-color: transparent #a57b29;
}

.progress-bar-prev-page span.additional-arrow.additional-arrow:after {
    border-color: transparent #fff;
}


/**/


/**/

.progress-bar-current-page {
    background: #a57b29;
}

.progress-bar-current-page:after {
    border-color: transparent #a57b29;
}

.progress-bar-current-page span:after {
    border-color: transparent #fff;
}


/**/


/**/

.progress-bar-next-page {
    background: #004727;
}

.progress-bar-next-page:after {
    border-color: transparent #004727;
}

.progress-bar-next-page span.additional-arrow:after {
    border-color: transparent #fff;
}


/**/

.progress-bar.bg-darkred:after {
    border-color: transparent #c0392b;
}

.progress-bar span.additional-arrow:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 25px 0px 25px 20px;
    border-color: transparent #fff;
    display: block;
    width: 0;
    bottom: 0;
    z-index: 8;
    right: -21px;
}


/* Sold out banner  */

.sold-out-banner {
    width: 130px;
    height: 130px;
    position: absolute;
    top: 0px;
}

.col-item {
    /*  border: 2px solid #2323A1;  */
    border-radius: 5px;
    background: #FFF;
    margin-bottom: 20px;
}

.col-item .photo img {
    margin: 0 auto;
    width: 100%;
}

.col-item .info {
    padding: 24px;
    border-top: 4px solid #eee;
    /*  
  border-radius: 0 0 5px 5px;    
  background: #ddd3c0;  
  */
    margin-top: 1px;
    width: 100%;
    height: 160px;
    box-shadow: 0 5px 5px -5px rgba(0, 0, 0, .2);
    display: table-cell;
    vertical-align: middle;
}

.col-item:hover .info {
    background-color: #f8f8f8;
}

.col-item .price {
    /*width: 50%;*/
    float: left;
    margin-top: 5px;
}

.col-item .price h5 {
    line-height: 20px;
    margin: 0;
}

.col-item .photo {
    position: relative;
}

.price-highlight {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #23527c;
    padding: 4px 12px;
    border-radius: 3px;
}

.price-highlight h5 span {
    font-size: 10px;
    line-height: 18px;
}

.price-text-color {
    color: #ffffff;
    margin: 0;
}

.hp-inventory-box {
    background: #004727;
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    padding: 6px;
    border-radius: 10px;
    box-shadow: 0px 7px 20px #000;
}

.sign-in {
    background: rgba(255, 255, 255, .1);
    border: 1px solid #fff;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
}

.col-item .info .rating {
    color: #003399;
}

.col-item .rating {
    /*width: 50%;*/
    float: left;
    font-size: 17px;
    text-align: right;
    line-height: 52px;
    margin-bottom: 10px;
    height: 52px;
}

.col-item .separator {
    /* border-top: 1px solid #FFCCCC; */
}

.clear-left {
    clear: left;
}

.col-item .separator p {
    line-height: 20px;
    margin-bottom: 0;
    /* margin-top: 10px; */
    text-align: center;
}

.col-item .separator p i {
    margin-right: 5px;
}

.col-item .btn-add {
    width: 50%;
    float: left;
}

.col-item .btn-add {
    border-right: 1px solid #CC9999;
}

.col-item .btn-details {
    width: 50%;
    float: left;
    padding-left: 10px;
}

.controls {
    margin-top: 20px;
}

[data-slide="prev"] {
    margin-right: 10px;
}

.nav-tabs>li>a {
    /*  border: 1px solid #ddd;  background-color:#ddd;  */
    padding: 10px 16px;
}

.cart-img-box {
    min-height: 64px;
    min-width: 64px;
}

.floating-header {
    padding: 8px 0;
    margin-top: 0;
    background-color: #004727;
    border-radius: 0;
}

.best-seller-item-name {
    line-height: 22px;
    color: #004727;
    font-size: 15px;
    /* font-family:century-gothic; */
}

.slider-item {}

.owl-theme .owl-dots .owl-dot span {
    margin: 0px 5px;
}

#checkout_form .form-control {
    font-size: inherit;
}

#signin_form .form-control {
    font-size: inherit;
}

#signup_form .form-control {
    font-size: inherit;
}

.floating-header .btn-outline:hover {
    background-color: #fff;
}

.btn-number {
    padding: 6px 12px;
    line-height: 1.42857143;
}

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439;
}

.page-title {
    /*  margin-top: 84px;*/
}

.page-title h4 {
    font-size: 24px;
    color: #000;
}

.btn-signin:hover {
    text-decoration: none;
}

.icon-mycart {
    border-right: 1px dashed rgba(255, 255, 255, .3);
}

.info h4 {
    margin: 0 !important;
}

.info h5 {
    margin: 12px 0 0 0;
    padding: 12px 0 0 0;
    border-top: 1px dashed #ddd;
    color: #004727;
}

#footer .footer_center .widget ul>li a:hover {
    text-decoration: none;
}

#footer .footer_center .widget ul>li a {
    margin-right: 15px;
}

#footer .footer_bottom {
    padding: 24px 0;
    background-color: #004727; 
    border-top: 1px solid #135765;
}

.col-item .photo {
    overflow: hidden;
}

.col-item .photo img {
    transform: scale(1);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.col-item:hover .photo img {
    transform: rotate(5deg) scale(1.2);
}

.prod-price {
    margin-top: 16px;
}

.prod-price small span {
    text-decoration: line-through;
}

.sharethis {
    padding: 12px;
    background-color: #fff;
    border-radius: 3px;
    text-align: center;
    box-shadow: 0 5px 5px -5px rgba(0, 0, 0, .1);
}

.sharethis>a {
    display: block;
    width: 100%;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #ddd;
    color: #555;
}

.sharethis>a i {
    color: #bbb;
    margin-right: 8px;
}

.share-social-list {
    margin: 0;
    padding: 0;
}

.tab-content {
    padding: 24px;
    background-color: #fff;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 3px 3px;
}

.signup-bar {
    padding: 24px 0;
    text-align: center;
}

.signup-bar a {
    color: #004727;
}

.modal-header {
    border-bottom: 4px solid #eee;
}

.modal-body {
    padding: 24px;
    background-color: #f5f5f5;
}

.modal-body label {
    color: #555;
}

#signin_form {
    width: 60%;
    margin: 0 auto;
}

#signin_form input[type="text"],
#signin_form input[type="password"],
#signup_modal input[type="text"],
#signup_modal input[type="password"],
#signup_modal input[type="email"],
#signup_modal select,
.info-block input[type="text"],
.info-block input[type="email"],
.info-block select,
.account-block input[type="text"],
.account-block input[type="email"],
.account-block input[type="password"],
.account-block select {
    width: 100%;
    padding: 8px 16px;
    height: 37px;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #888;
}

#signin_form input[type="text"]:focus,
#signin_form input[type="password"]:focus,
#signup_modal input[type="text"]:focus,
#signup_modal input[type="password"]:focus,
#signup_modal input[type="email"]:focus,
#signup_modal select:focus,
.info-block input[type="text"]:focus,
.info-block input[type="email"]:focus,
.info-block select:focus,
.account-block input[type="text"]:focus,
.account-block input[type="email"]:focus,
.account-block input[type="password"]:focus,
.account-block select:focus {
    border: 1px solid #aaa;
    color: #333;
}

#signin_form .btn-login,
#signup_modal .btn-register,
.account-block .btn-submit {
    margin: 0 auto;
    padding: 12px 32px;
    border: none;
    background-color: #004727;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 3px;
}

#signin_form .btn-login:hover,
#signup_modal .btn-register:hover,
.account-block .btn-submit:hover {
    background-color: #004727;
}

#signup_recaptcha {
    margin: 16px 0 16px calc(50% - 152px);
}

.modal-footer {
    text-align: center !important;
}

.bg-darkasphalt {
    background-color: #e0dacd;
    color: #004727;
}

.tbl-main tbody tr:nth-child(odd) {
    background: #f8f8f8;
}

.tbl-main tbody tr:nth-child(even) {
    background: #fff;
}

.tbl-main {
    border: 1px solid #ddd;
}

.tbl-main input[type="number"] {
    border-radius: 3px;
}

.tbl-subtotal td {
    padding: 4px;
}

.tbl-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #ccc;
}

.info-block h3 {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #ccc;
    font-size: 18px;
    font-weight: 700;
}

.max-qty-left {
    margin-top: 8px;
}

@media (max-width: 480px) {
    .nav-icon,
    .nav-icon-outline {
        width: 48px;
        height: 48px;
        margin-left: 8px;
        border: 2px solid #210d0e !important;
        border-radius: 24px;
    }
    .nav-icon:hover,
    .nav-icon-outline:hover {
        background-color: #004727 !important;
        border: 2px solid #004727 !important;
    }
    .nav-icon-outline span {
        width: 24px;
        height: 24px;
        line-height: 18px;
        border-radius: 12px;
        margin-left: 0;
    }
}

.dropdown-menu {
    padding: 0;
    /* box-shadow: 0 5px 5px -5px rgba(0, 0, 0, .3); */
    border: none;
}

.dropdown-menu>li>a {
    font-size: 12px;
}

.dropdown-menu>li>a i {
    color: #bbb;
    margin-right: 8px;
}

.account-block {
    padding: 80px 0 40px 0;
}

.banner-slider {
    margin-top: 72px;
}

.banner-slider .owl-theme .owl-dots {
    position: absolute;
    width: 100%;
    bottom: 24px;
}

.banner-slider .owl-theme .owl-dots .owl-dot span {
    background: #fff;
}

.banner-slider .owl-theme .owl-dots .owl-dot.active span,
.banner-slider .owl-theme .owl-dots .owl-dot:hover span {
    background: #004727;
}

/* New +++++++ */
.promos-discounts {
    padding: 15px;
    width: 100%;
    margin: 20px 0;
    background-color: #f9f9f9;
    box-shadow: 1px 1px 3px rgb(165, 165, 165);
    font-family: 'Muli', sans-serif;
}

.promos-discounts h4 {
    font-size: 18px;
    margin-bottom: 20px;
    padding: 5px;
    border-bottom: 1px solid #8d704a;
}

.promos-discounts__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.promos-discounts__item:last-child {
    border-bottom: none;
}

.promos-discounts__select-button, 
.promos-discounts__toggle-button, 
.promos-discounts__register-button {
    border: none;
    color: #333333;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid;
    border-radius: 5px;
}

.promos-discounts__toggle-button {
    font-size: 18px;
}

.promos-discounts__register-button {
    padding: 10px;
    border-radius: 25px;
    margin-top: 10px;
}

.promos-discounts__hidden {
    display: none;
}

.discount-container > div{
    display: flex;
    align-items: center;
    justify-content: center;
}
.discount-container > div >button{
    margin-left: 10px;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #8d704a;
    font-family: sans-serif;
    color:  white;
    border: none;
}

#pwd-senior-form {
    padding: 10px 0;
}

/* for pwd and senior */
.cardUploadContainer{
    /* border: 1px solid red; */
}


.cardUploadContainer > div:nth-child(1) > div{
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 10px;
    margin: 10px;
}

/* card name and number css */
.cardUploadContainer > div:nth-child(2){
    display: flex;
    align-items: center;
    justify-content: center;
}
.cardUploadContainer > div:nth-child(2) > div{
    padding: 10px;
    width: 100%;
}
.cardUploadContainer > div:nth-child(2) > div input{
    border-radius: 5px;
}

/* file upload */
.cardUploadContainer > div:nth-child(3){
    /* border: 1px solid red; */
    position: relative;
}

.cardUploadContainer > div:nth-child(3) img{
    /* border: 1px solid green; */
    width: 100%;
}

.cardUploadContainer > div:nth-child(3) input{
    /* border: 1px solid green; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);;
    height: 80%;
    width: 100%;
    opacity: 0;
}
.cardUploadContainer > div:nth-child(3) p{
    /* border: 1px solid blue; */
    position: absolute;
    left: 50%;           
    transform: translateX(-50%);
    bottom: 10%;         
    text-align: center;  
    width: 100%;         
}

.social-icons {
    padding-left: 18px;
}

.social-icons li {
	margin: 5px;
}

.social-btn {
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50%;
	text-align: center;
	color: #fff;
	font-size: 13px;
	transition: all 0.3s ease;
}

.social-btn:hover {
	text-decoration: none;
	opacity: 0.8;
}

/* Brand Colors */
.facebook {
	background: #3b5998;
}

.twitter {
	background: #1da1f2;
}

.instagram {
	background: #e1306c;
}