/* ============================================= */
/* Reset / Default Styles
/* ============================================= */

* {margin:0;padding:0;outline:none;}

html {
    position:relative;
    font-size: 62.5%;
}
body {
    background:#fff;
    font-size:1.6em;
    -webkit-font-smoothing: antialiased;
    outline:none;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

/* ============================================= */
/* Set page Width up for site
/* ============================================= */
.container-fluid {
    max-width:1400px;
}

/* ============================================= */
/* CSS Object Styles
/* ============================================= */

.resp-text-left { text-align:left; }
.resp-text-right { text-align:right; }
.justify  { text-align:justify; }
.pad_left { padding-left: 8px;}
.pad_right { padding-right: 8px;}
.padit {padding-left: 8px; padding-right: 8px;}
.clear { clear:both; display:block; overflow:hidden; visibility:hidden; height:0px;}
.clear-left, .clear_left { clear:left; }
.clear-right, .clear_right { clear:right; }
.hide  { display:none;  }
.block {display:block !important;}
.inline {display:inline !important;}
.bold {font-weight:600;}
.italic {font-style:italic;}
.white { color:#fff;}
.nopadding { padding:0px;}
.nomargin { margin:0px;}
.transition {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

/* ============================================= */
/* Default CSS
/* ============================================= */

a { color:#000;text-decoration:none;outline:none;   }
a:hover, a:focus { color:#444;text-decoration:none;outline:none;}
a:active, a:visited { outline:none; }

/* ** ** Header Styles ** ** */
h1, h2, h3, h4, h5 {margin:0 0 0.5em; line-height:1.1em;font-weight: normal;}
h1 { font-size:1.8em; }
h2 { font-size:1.2em; }
h5 { font-size:1.0em; }
h4 { font-size:1.1em; }
h3 { font-size:1.1em; }
h6 { font-size:1.0em; }

strong          { font-weight:600; }
em, dfn         { font-style:italic; }
dfn             { font-weight:600; }
sup, sub        { line-height:0; }
abbr, acronym   { border-bottom:1px dashed #ccc; }
address         { margin:0 0 1.5em;font-style:normal; }
del             { color:#666; }
pre, code, tt   { font:1em 'andale mono', 'lucida console', monospace;line-height:1.5; display:block; }
code            { background-color:#eee; display:inline; padding:0px 2px 1px 2px; line-height:1.1em; }
pre             { margin:1.5em 0;white-space:pre; }

img { width: auto; max-width: 100%; }
ul,li { list-style: none; margin:0px; padding:0px;}

/* ============================================= */
/* Standard Blocks to include
/* ============================================= */

/* System Error Message */
#systemError {
    position:fixed;
    top:30px;
    left:50%;
    margin-left:-300px;
    width: 600px;
    border:4px solid red;
    padding:10px;
    border-radius:10px;
    background:#fff;
    z-index:99999999;
}

/* ajax submit/loading page message */
#infoHold {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background: rgba(0,0,0,0.5);
    display: none;
}
#infoMessage {
    max-width: 400px;
    height: auto;
    position: relative;
    z-index:1000;
    top: 50%;
    transform: translateY(-50%);
    padding:20px 35px;
    font-size:20px;
    color:#fff;
    background:rgba(0,0,0,0.8);
    margin:0px auto;
    border:3px solid rgba(255,255,255,1);
    border-radius:4px;
    text-align: center;
}

/* Growl Message */
#growlMsgHolder {
    position:fixed;
    top:50px;
    right:10px;
    z-index:999999999;
}
.growlMsg {
    right:0px;
    background:#000;
    border-radius:4px;
    border:2px solid white;
    padding:10px;
    width:480px;
    color:#fff;
    z-index:9999999999999;
    margin:2px 0px;
}
.growlIcon {
  font-size:3em;
}
.growl-error {
    background:#C9302C;
    color:#fff;
}
.growl-warning {
    background:#EC971F;
    color:#fff;
}
.growl-success {
    background:#449D44;
    color:#fff;
}
.growl-info {
    background:#31B0D5;
    color:#fff;
}
/* Pasword form feedback icon neutral color */
#passfeedback,#passCheckfeedback {
    color:#000;
}
/* stripy tables */
.table-striped > tbody > tr:nth-of-type(2n+1) {
    background-color: rgba(0,0,0,0.3);
}

/* Back To Top Link */
#backTop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    line-height: 45px;
    font-size: 34px;
    color:#fff;
    background: #FF8E1E;
    text-align: center;
    z-index: 999;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
#backTop:hover
#backTop:hover, #quickCart:hover {
    background: #508628;
}

#quickCart {
    right: 20px;
    bottom: 110px;
    color: #000;
}
#quickCart .badge {
    position: absolute;
    top: 5px;
    right: 1px;
    font-size: 10px;
    background: #fff;
    z-index: 99;
}
#quickCart i {
    position: relative;
    z-index: 999;
    bottom: -2px;
    font-size: 18px;
    z-index: 9;
}
#quickCart a {
    color: #000;
}
/* ============================================= */
/* Social Buttons
/* ============================================= */

.share-buttons li {
    display: inline-block;
}
.share-buttons a.social {
    position: relative;
    display: inline-block;
    margin: 0 8px;
    width: 46px;
    height: 46px;
    text-align: center;
    line-height: 43px;
    color: #fff;
    font-size: .9em;
    overflow: hidden;
    border: 2px solid transparent;
}
.share-buttons a.social:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    width: 1px;
    height: 1px;
    transform: translate(-50%, -50%);

    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition:    all 0.35s ease-in-out;
    -o-transition:      all 0.35s ease-in-out;
    -ms-transition:     all 0.35s ease-in-out;
    transition:         all 0.35s ease-in-out;
}
.share-buttons a.social i {
    position: relative;
    z-index: 20;
}
.share-buttons a.social-em:after {
  background: #3086C7;
}
.share-buttons a.social-em {
  border-color: #3086C7;
}
.share-buttons a.social-fb:after {
  background: #3A5795;
}
.share-buttons a.social-fb {
  border-color: #3A5795;
}
.share-buttons a.social-gp:after {
  background: #D44032;
}
.share-buttons a.social-gp {
  border-color: #D44032;
}
.share-buttons a.social-li:after {
  background: #006599;
}
.share-buttons a.social-li {
  border-color: #006599;
}
.share-buttons a.social-tw:after {
  background: #19BFE5;
}
.share-buttons a.social-tw {
  border-color: #19BFE5;
}
.share-buttons a.social-yt:after {
  background: #dc2925;
}
.share-buttons a.social-yt {
  border-color: #dc2925;
}
.share-buttons a.social-tr:after {
  background: #36465d;
}
.share-buttons a.social-tr {
  border-color: #36465d;
}
.share-buttons a.social-pi:after {
  background: #bb1416;
}
.share-buttons a.social-pi {
  border-color: #bb1416;
}
.share-buttons a.social-fr:after {
  background: #e4e4e4;
}
.share-buttons a.social-fr {
  border-color: #e4e4e4;
}
.share-buttons a.social-dr:after {
  background: #f26798;
}
.share-buttons a.social-dr {
  border-color: #f26798;
}
.share-buttons a.social-bh:after {
  background: #005cff;
}
.share-buttons a.social-bh {
  border-color: #005cff;
}
.share-buttons a.social-dg:after {
  background: #143f69;
}
.share-buttons a.social-dg {
  border-color: #143f69;
}
.share-buttons a.social-in:after {
  background: #138EAF;
}
.share-buttons a.social-in {
  border-color: #138EAF;
}
.share-buttons a:hover:after {
    transform: translate(-50%, -50%) scale(46) rotate(180deg);
    box-shadow: inset 0 0 5px 2px rgba(15,15,15,.35);
}
.share-buttons a:hover {
    color: #fff;
}

.content ol, .page-content ol {
    list-style: none;
    counter-reset: li;
}

.content ol, .content ul, .page-content ol, .page-content ul {
    margin-top: 10px;
} 

.content ol li, .page-content ol li {
    counter-increment: li;
    position: relative;
    margin-bottom: 15px;
    padding-left: 20px;
    font-size: 15px;
}

.content ol li::before, .page-content ol li::before {
    content: counter(li);
    position: absolute;
    color: #FF8E1E;
    display: inline-block;
    left: -10px;
    line-height: 20px;
    border: 1px solid var(--orange);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    text-align: center;
    top: 0;
}

.content ul li, .page-content ul li {
    position: relative;
    font-weight: normal;
    font-size: 15px;
    line-height: 22px;
    color: #000;
    padding-left: 20px;
}

.content ul li::before, .page-content ul li::before {
    position: absolute;
    display: inline-block;
    content: '';
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 8px;
    width: 8px;
    top: 7px;
    left: 0;
    background-color: #FF8E1E;
}

/* ============================================= */
/* Pagination Layout
/* ============================================= */
.pagination {
    border-radius:0 !important;
}
.pagination > li.active {
    background:#000 !important;
    color:#fff !important;
}

/* ============================================= */
/* Default Responsive Stuff
/* ============================================= */
@media only screen and (max-width : 870px) {
     .resp-text-right,.resp-text-left {
        text-align:center;
     }
     .mainFooter {
         position:relative;
         text-align:center;
     }
}
