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

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

html {
    min-height:100%;
    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
/* ============================================= */

/* Error Messages */
#errorMsg,
#successMsg {
    width: 90%;
    margin: 10px auto;
}

/* 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 */
#growl-message {
    position: fixed;
    top: 50px;
    right: 0;
    z-index: 99999;
}
#growl-message .growl {
    display: block;
    width: 400px;
    max-width: 100%;
    padding: 15px;
    color: #fff;
    margin-bottom: 10px;
}
#growl-message .growl.growl-fa-exclamation-triangle {
    background: #E74C3C;
}
#growl-message .growl.growl-success {
    background: #27ae60;
}
#growl-message .growl.growl-error   {
    background: #c0392b;
}
#growl-message .growl.growl-warning {
    background: #f39c12;
}

/* 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 {
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    font-size: 15px;
    color:#fff;
    background: #52BDEC;
    -webkit-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.39);
    -moz-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.39);
    box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.39);
    position: fixed;
    bottom: 40px;
    right: 40px;
    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 i {
    -webkit-animation: bouncyBouncyArrow 1.25s infinite;
    animation: bouncyBouncyArrow 1.25s infinite;
}

@keyframes bouncyBouncyArrow {
    0%   { transform: translateY(5px); }
    50%   { transform: translateY(-5px); }
    100% { transform: translateY(5px); }
}

#backTop:hover, #quickCart:hover {
    background: #111;
}

#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
/* ============================================= */

.social-links {
    margin: 0px auto;
}
.social-links li {
    margin: 0;
}
.social-links li a {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: white;
    text-align: center;
}
.social-links li a i {
    position: relative;
    z-index: 50;
}
.social-links li a:hover {
    color: #fff;
}
.social-links li a {
    position: relative;
    border-radius: 50%;
}
.social-links li a::before,
.social-links li a::after {
  content: "";
  display: block;
  position: absolute;
  background: transparent;
  top: 0; bottom: 0; left: 0; right: 0;
  border-radius: 50%;
  transition: .3s all;
  border: 2px solid;
}
.social-links li a.em {
    background: #3086C7;
}
.social-links li a.fb {
    background: #3A5795;
}
.social-links li a.gp {
    background: #D44032;
}
.social-links li a.li {
    background: #006599;
}
.social-links li a.tw {
    background: #19BFE5;
}
.social-links li a.em::before,
.social-links li a.em::after {
  border-color: #3086C7;
}
.social-links li a.fb::before,
.social-links li a.fb::after {
  border-color: #3A5795;
}
.social-links li a.gp::before,
.social-links li a.gp::after {
  border-color: #D44032;
}
.social-links li a.li::before,
.social-links li a.li::after {
  border-color: #006599;
}
.social-links li a.tw::before,
.social-links li a.tw::after {
  border-color: #19BFE5;
}
.social-links li a:hover::after{
   -webkit-transform: scale(1.3);
}
.social-links li a:hover::before{
    -webkit-transform: scale(1.6);
    transition: .3s all;
    opacity: 0;
}

/* ============================================= */
/* 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;
     }
}
