/* Reset
================================================== */
/* prettier-ignore */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}
/* prettier-ignore */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
body {
  line-height: 1;
}
.clear {
  clear: both;
}

/* Basics
================================================== */
body {
  font: 13px 'Open Sans', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
html {
  overflow: -moz-scrollbars-vertical;
  overflow-y: scroll;
}
.left {
  float: left;
}

.right {
  float: right;
}

.center {
  text-align: center;
  margin: auto;
}

.hidden {
  display: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.gui .gui-page-title,
.price-wrap .price {
  line-height: 1.2125em;
  margin-top: -0.2em;
  font-weight: 300;
}
h1,
.gui .gui-page-title,
.price-wrap .price {
  font-size: 30px;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 20px;
}
h4,
h5,
h6 {
  font-size: 20px;
}
@media (max-width: 767px) {
  h1,
  .gui-page-title,
  .price-wrap .price {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  h4,
  h5,
  h6 {
    font-size: 20px;
  }
}
.gui-blog-article h1,
article > header {
  background-color: white;
}

p {
  margin: 10px 0 0 0;
  line-height: 170%;
}
p img {
  margin: 0;
}

em {
  font-style: italic;
}
strong {
  font-weight: 600;
}
small {
  font-size: 90%;
}

hr {
  border: solid #f0f0f0;
  border-width: 2px 0 0;
  clear: both;
  height: 0;
  width: 50%;
  margin: 0px auto 20px auto;
}
.no-underline a,
a.no-underline {
  text-decoration: none;
}
.line-through {
  text-decoration: line-through;
}

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}

/* Links */
a,
a:visited {
  color: #444;
  text-decoration: underline;
  outline: 0;
}
a:hover,
a:focus {
  color: #000;
}
p a,
p a:visited {
  line-height: inherit;
}

/* List */
ul,
ol {
  list-style-position: inside;
}
.no-list-style ul,
ul.no-list-style {
  list-style: none outside;
}
ol {
  list-style: decimal;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 0.1em 0 0.1em 1em;
  font-size: 90%;
}
ul li {
  padding: 3px 0px;
}

/* Input */
input,
textarea,
select {
  border: 1px solid #e5e5e5;
  padding: 10px 15px;
  outline: none;
  margin: 0;
  display: inline-block;
  line-height: 18px;
  max-width: 160px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  height: 38px;
  margin: 0px 15px 15px 0px;
  background-color: white;
}
input[placeholder] {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
select {
  padding: 9px 30px 9px 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(triangle.png);
  background-repeat: no-repeat;
  background-position: 90% 15px;
  width: 100%;
}
.gui select {
  background-position: 90% 13px;
}
.ie select {
  background-image: none;
  padding-right: 15px;
}
select::-ms-expand {
  display: none;
}
@-moz-document url-prefix() {
  select {
    background-image: none;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min--moz-device-pixel-ratio: 2),
  only screen and (-o-min-device-pixel-ratio: 2/1),
  only screen and (min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi),
  only screen and (min-resolution: 2dppx) {
  select {
    background-image: url(triangle-2x.png);
  }
}
@media (max-width: 767px) {
  input[type='text'],
  input[type='password'],
  input[type='email'] {
    padding: 10px;
    max-width: 100%;
  }
}
input:hover,
textarea:hover {
  border-color: #ccc;
}
input:focus,
textarea:focus {
  border-color: #ccc;
}
textarea {
  min-height: 60px;
}
label {
  margin-right: 10px;
  display: inline-block;
  padding: 10px 0px;
}
input[type='checkbox'] {
  display: inline;
}
a:focus {
  outline: none;
}
a::-moz-focus-inner {
  border: 0;
}

/* Buttons */
a.btn,
button,
input[type='submit'],
input[type='reset'],
input[type='button'] {
  background: #f7f7f7;
  color: #444;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  line-height: 18px;
  padding: 10px 15px;
  outline: 0;
  text-transform: uppercase;
  font-weight: 600;
}
a.btn:hover,
button:hover,
input[type='submit']:hover,
input[type='reset']:hover,
input[type='button']:hover {
  text-decoration: none;
}
a.btn.full-width,
button.full-width,
input[type='submit'].full-width,
input[type='reset'].full-width,
input[type='button'].full-width {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
a.btn.large {
  padding: 16px;
  min-width: 180px;
  text-align: center;
}

/* Align vertical */
.align {
  display: table;
  width: 100%;
}
.align .vertical {
  display: table-cell;
  vertical-align: middle;
}

/* Bootstrap
================================================== */
.container {
  padding-left: 45px;
  padding-right: 45px;
  position: relative;
}
.row,
.margin {
  margin-bottom: 30px;
}
.page-title {
  margin-bottom: 15px;
}
.no-margin {
  margin: 0px;
}

header,
footer.row,
.copyright,
.breadcrumbs,
.headline {
  margin: 0px -45px;
}
footer.row {
  padding: 30px;
}
.copyright,
.breadcrumbs {
  padding: 15px 45px;
}
@media (max-width: 480px) {
  header {
    margin: 0px -15px;
    padding: 10px 0px;
  }
  .headline {
    margin: 0px -15px;
  }
  .copyright,
  .breadcrumbs {
    margin: 0px -15px;
    padding: 15px;
  }
  footer.row {
    margin: 0px -15px;
    padding: 30px 0px;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .categories {
    width: 100%;
  }
}

/* nav
================================================== */
nav {
  position: fixed;
  top: 0px;
  left: -360px;
  height: 100%;
  width: 360px;
  z-index: 9999;
  padding: 0px;
  overflow-x: hidden;
  overflow-y: auto;
  border-right: 1px solid;
}
nav.open {
  left: 0px;
}
@media (min-width: 768px) {
  nav.slide-open {
    left: 0px;
  }
}
@media (min-width: 1200px) {
  .items.vertical.text-right {
    width: 267px;
  }
}

@media (max-width: 480px) {
  nav {
    width: 80%;
    left: -80%;
  }
}
nav li {
  padding: 0px;
  display: block;
  border-bottom: 1px solid;
}
nav li .itemLink {
  display: block;
  padding: 30px;
  cursor: pointer;
}
nav li .itemLink.active {
  border-left: 8px solid;
  padding-left: 22px;
}
nav li .itemLink .glyphicon {
  top: 2px;
}
/* sub nav */
nav li .subnav,
nav li .subsubnav {
  position: absolute;
  top: 0px;
  left: 360px;
  height: 100%;
  margin: 0px;
  width: 100%;
  font-size: 100%;
  z-index: 1;
}
nav li .subnav.open,
nav li .subsubnav.open {
  left: 0px;
}
nav li .subnav.open .subsubnav {
  left: 360;
}
nav li .subnav .itemLink.head {
  font-weight: 600;
}
/* .back */
nav .back {
  cursor: pointer;
  padding: 15px 30px;
}
nav .back span {
  margin-right: 5px;
}
/* .search-input */
.search-input {
  padding: 15px;
}
@media (max-width: 768px) {
  .topnav .search .search-input {
    width: 200px;
  }
}
.search-input form {
  position: relative;
}
.search-input form input[type='text'] {
  border: 0px;
  height: 40px;
  width: 100%;
  max-width: 100%;
}
.search-input form .btn {
  padding: 5px 10px;
  position: absolute;
  right: 6px;
  top: 6px;
}

/*desktopnav */
/* nav */
.navbar ul,
.navbar ul li {
  margin: 0px;
  line-height: 18px;
}
.navbar .item {
  float: left;
  margin-right: 5px;
}
.navbar .item .itemLink {
  display: block;
  padding: 5px;
  border: 1px solid transparent;
  position: relative;
  z-index: 2;
  line-height: 20px;
  font-weight: 600;
  font-size: 14px;
}
.navbar .item.active .itemLink {
  font-weight: 600;
}
.navbar .item.hover .itemLink {
  border-color: #e5e5e5;
}
.navbar .item.sub.hover .itemLink {
  border-bottom-color: white;
}
.navbar .submenu,
.navbar .subsubmenu {
  display: none;
  margin-top: -1px;
  border: 1px solid;
  position: absolute;
  min-width: 180px;
  z-index: 10;
}
.navbar .submenu .subitem {
  border-bottom: 1px solid;
  list-style-type: none;
  position: relative;
}
.navbar .submenu .subitem:last-child {
  border-bottom: transparent;
}
.navbar .submenu .subitemLink {
  display: block;
  padding: 10px;
  white-space: nowrap;
  -moz-transition: background-color 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}

.navbar .submenu .subsubmenu {
  top: 0;
  left: 80%;
  z-index: 980;
}
.navbar .submenu .subsubmenu.subitemLink {
  padding: 8px;
}

.navbar li:hover .submenu {
  display: block;
}

.submenu .subitem .subsubmenu {
  display: none;
}
.submenu .subitem li:hover .subsubmenu {
  display: none;
}

.subitem li:hover .submenu {
  display: block;
}
.subitem .submenu {
  display: none;
}
li.search-input form .btn {
  padding: 5px 10px !important;
  position: absolute;
  right: 6px;
  top: 6px;
  margin: inherit !important;
}
li.search-input form input[type='text'] {
  border: 0px;
  height: 40px;
  width: 100%;
  max-width: 100%;
  margin: inherit !important;
  color: #999;
}
.searchbar {
  padding: 15px;
  font-weight: 600;
}
.searchbar ul .search-input {
  padding: inherit !important;
  margin-top: 15px;
}
.submenu .subitem:hover .subsubmenu {
  display: block;
}

/* .topnav
================================================== */
header.transparent {
  position: absolute;
  z-index: 1;
  width: 100%;
  background-color: transparent;
}
header.transparent.black {
  background-color: rgba(29, 29, 29, 0.2);
}
.topnav {
  padding: 20px 25px 20px 45px;
}
.topnav.opacity {
  background-color: rgba(0, 0, 0, 0.03);
}
.topnav .item .attribute {
  font-size: 24px;
}
.topnav .item.open .burger,
.topnav .item.open .attribute {
  opacity: 0.8;
}
.topnav .burger {
  margin-top: 4px;
  display: inline-block;
}
.topnav .burger,
.topnav .item .attribute {
  cursor: pointer;
}
.topnav .burger li {
  height: 3px;
  margin-bottom: 5px;
  width: 24px;
  display: block;
  padding: 0px;
}
.topnav .burger li.last {
  margin-bottom: 0px;
}
.topnav .item {
  padding: 0px 20px;
  display: inline-block;
  position: relative;
}
@media (max-width: 480px) {
  .topnav {
    padding: 0px 15px;
  }
  .topnav .logo img {
    height: auto;
    max-width: 150px;
  }
  .topnav .items {
    width: 140px;
  }
  .topnav .item {
    padding: 10px 0px 10px 20px;
    position: inherit;
  }
  .topnav .item:first-child {
    padding: 10px 0px;
  }
}

/* .details */
.topnav .details {
  position: absolute;
  right: -3px;
  text-align: left;
  width: 350px;
  margin-top: 20px;
  display: none;
  z-index: 9998;
  border: 1px solid;
}
.topnav .details .title {
  text-transform: uppercase;
}
.topnav .details:before {
  content: ' ';
  border-top: 12px solid transparent;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 12px solid;
  border-style: solid;
  position: absolute;
  top: -25px;
  right: 22px;
}
.topnav .details:after {
  content: ' ';
  border-top: 12px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid;
  border-left: 10px solid transparent;
  border-style: solid;
  position: absolute;
  top: -24px;
  right: 23px;
}
@media (max-width: 768px) {
  .topnav .details {
    width: 300px;
  }
}
@media (max-width: 480px) {
  .topnav .details {
    width: 100%;
    right: 0px;
  }
  .topnav .cart .details:before {
    right: 63px;
  }
  .topnav .cart .details:after {
    right: 64px;
  }
  .topnav .language .details:before {
    right: 109px;
  }
  .topnav .language .details:after {
    right: 110px;
  }
}
/* .language-currency */
.topnav .details .language-currency:last-child {
  border-bottom: 0px;
}
.topnav .details .language-currency .title {
  font-weight: 600;
  display: block;
}
.topnav .details .language-currency a.active {
  border-bottom: 4px solid;
}
.topnav .details .language-currency a {
  display: inline-block;
  margin: 0px 10px 5px 0px;
  padding: 10px 0px 5px;
}

/* .cart */
.cart .quantity-items {
  display: block;
  position: absolute;
  border-radius: 100%;
  height: 15px;
  width: 15px;
  text-align: center;
  line-height: 15px;
  font-size: 10px;
  z-index: 1;
  top: -4px;
  left: 13px;
}
@media (max-width: 480px) {
  .cart .quantity-items {
    left: auto;
    right: 78px;
    top: 15px;
  }
}
.topnav .details .product-details,
.topnav .details .language-currency {
  padding: 15px;
  border-bottom: 1px solid;
  position: relative;
}
.topnav .details .product-details .remove {
  position: absolute;
  right: 15px;
  top: 50%;
  font-size: 12px;
  line-height: 1;
  padding: 3px 3px 2px 3px;
  margin-top: -9px;
}
.topnav .details .product-details .remove .glyphicon {
  top: 0px;
}
.topnav .details .product-details .subtitle {
  display: block;
}
.topnav .details .product-details .subtitle {
  font-size: 90%;
}
.topnav .details .btn {
  margin: 15px;
  display: block;
  text-align: center;
  padding: 15px;
}

/* Pages
================================================== */
/* index */
.headline {
  margin-top: -30px;
  margin-bottom: 45px;
}
.headline .slider {
  max-height: 600px;
  overflow: hidden;
}
.headline .col-md-12 {
  padding: 0px;
  position: relative;
}

/* .Breadcrumbs */
.breadcrumbs a {
  margin-right: 15px;
}

/* .filters */
.price-filter input {
  margin-left: 5px;
  width: 72px;
}
.grid-list .list {
  margin-left: 5px;
}
.grid-list .glyphicon {
  line-height: 36px;
  font-size: 18px;
  opacity: 0.5;
  cursor: pointer;
}
@media (max-width: 480px) {
  .filters select.left,
  .filters .price-filter.left {
    float: none;
    display: block;
    clear: both;
  }
  .filters .grid-list.right {
    display: none;
  }
  .filters .price-filter .left {
    float: none;
  }
  .filters .price-filter .left:last-child input {
    margin-bottom: 0px;
  }
}
/* .checkbox */
#filter-checkbox {
  margin-bottom: 10px;
}
.checkbox {
  padding-top: 15px;
  padding-bottom: 30px;
}
.checkbox label {
  display: block;
  padding: 5px 0px;
}
.checkbox strong {
  margin-right: 10px;
  display: block;
  margin-bottom: 5px;
}
.checkbox input {
  height: auto;
  margin: 0px 5px 0px 0px;
}

/* Productpage
================================================== */
.product-titlefull {
  margin-top: 30px !important;
}
.price-wrap {
  margin-top: -5px;
}
.product-image {
  position: relative;
}

@media (max-width: 1200px) {
  .product-image {
    margin: 0px;
  }
}
/* Headline */
.slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.slider ul {
  width: 20000em;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.slider li {
  float: left;
  padding: 0px;
}
.slider img {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  height: auto !important;
  margin: auto;
}
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  margin-top: -33px;
  text-align: center;
  line-height: 16px;
  padding: 10px;
}
.slider-prev {
  left: 0px;
}
.slider-next {
  right: 0px;
}
.slider-pagination {
  width: 100%;
  text-align: center;
  line-height: 0px;
  position: absolute;
  bottom: 30px;
}
.slider-pagination.text {
  bottom: 60px;
}
.slider-pagination a {
  display: inline-block;
  height: 12px;
  width: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  text-indent: -9999px;
  margin: 0px 6px;
  padding: 0px;
  border: 1px solid #e5e5e5;
}
.product-image .slider-pagination a {
  height: 10px;
  width: 10px;
}
.slider-pagination a.active {
  background: #eee;
}
@media (max-width: 768px) {
  .product-image {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .product-image {
    margin-top: -15px;
  }
}

/* .Product-info */
.product-info {
  margin-top: -10px;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .product-info {
    margin-top: 0px;
  }
}
.product-info .stars .glyphicon.active {
  color: #fdad5f;
}
.product-info .stars,
.product-info .stock {
  margin-right: 30px;
}
.product-info .stock .dot {
  display: inline-block;
  position: relative;
  border-radius: 100%;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  top: -2px;
}
.product-info .stock .dot.green {
  background-color: #23e460;
}
.product-info .stock .dot.red {
  background-color: #f88879;
}
.product-info .brand .glyphicon {
  margin-right: 5px;
}
.product-info .glyphicon {
  color: #c5c5c5;
}
@media (max-width: 480px) {
  .slider-pagination,
  .slider-pagination.text {
    bottom: 20px;
  }
  .product-info .stars,
  .product-info .stock,
  .product-info .brand {
    margin-right: 0px;
    float: none;
  }
  .product-info .stock {
    margin: 15px 0px;
  }
}
/* .product-configure*/
.product-configure {
  margin-top: 30px;
}
.product-configure label {
  min-width: 100px;
}
.sharethis-inline-share-buttons {
  padding-top: 10px;
}
/* Quantity */
.quantity {
  margin-top: 30px;
}
.quantity input {
  width: 50px;
  text-align: center;
  height: 50px;
  display: block;
  float: left;
  line-height: 50px;
  margin-right: 0px;
  padding: 0px;
  border-radius: 3px 0px 0px 3px;
}
.quantity .change {
  float: left;
  width: 19px;
  height: 50px;
  background-color: #f7f7f7;
  margin-right: 15px;
  border: 1px solid;
  border-left: 0px;
  border-radius: 0px 3px 3px 0px;
}
.quantity .change a {
  display: block;
  text-align: center;
  text-decoration: none;
  height: 24px;
  position: relative;
}
.quantity .change a.down {
  border-top: 1px solid;
}
.quantity .change a span.arrow-up {
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 4px solid #b5b5b5;
  position: absolute;
  top: 10px;
  right: 6px;
}
.quantity .change a span.arrow-down {
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #b5b5b5;
  position: absolute;
  bottom: 10px;
  right: 6px;
}
.add-to-cart .btn {
  margin-bottom: 30px;
}

/* Tabs */
.tabs-wrap {
  margin-top: 30px;
}
.tabs-wrap p {
  margin-top: 0px;
}
.tabs {
  padding: 20px 30px 0px 30px;
}
.tabs ul li {
  display: block;
  float: left;
  margin: 0px 30px 20px 0px;
  text-transform: uppercase;
  font-weight: 600;
}
.tabsPages {
  line-height: 170%;
  width: 100%;
}
.tabsPages .page {
  display: none;
  max-height: 300px;
  overflow: auto;
  padding: 0px 30px 30px 30px;
}
.tabsPages .page.active {
  display: block;
}
.tabsPages .page hr {
  width: 100%;
  margin: 30px auto 30px auto;
}
@media (max-width: 480px) {
  .price-wrap {
    float: none;
    clear: both;
  }
  .price-wrap .price {
    font-size: 22px;
    padding: 8px 0px 8px 0px;
    display: inline-block;
  }
  .add-to-cart .btn {
    width: 100%;
  }
  .quantity .change {
    width: 25px;
  }
  .quantity .change a span.arrow-up,
  .quantity .change a span.arrow-down {
    right: 9px;
  }
  .tabs {
    padding: 15px 15px 0px 15px;
  }
  .tabsPages .page {
    padding: 0px 15px 30px 15px;
  }
  .tabs ul li {
    margin: 0px 15px 15px 0px;
  }
}

/* Home
================================================== */
/* text */
.home.text {
  margin-top: -45px;
  position: relative;
  top: -30px;
  margin-bottom: 25px;
}
.home.text .text-center {
  padding: 60px 60px 0px 60px;
}
@media (max-width: 480px) {
  .filters {
    margin-bottom: 30px;
  }
  .home.text {
    margin-top: -15px;
    top: 0px;
  }
  .home.text .text-center {
    padding: 30px;
  }
}
/* Unique Sellingpoints
================================================== */
.pros {
  margin-bottom: 60px;
}
.pros h2 {
  margin-bottom: 15px;
}
.pros .pro .glyphicon {
  margin: 30px 0px 15px 0px;
}

/* Products / Categories
================================================== */
.categories h2,
.products h2 {
  margin-bottom: 60px;
  margin-top: 30px;
  text-align: center;
}
.category,
.product {
  border: 1px solid;
  margin-bottom: 30px;
}
.category .info,
.product .info {
  padding: 15px;
  position: relative;
}
.category .info h3,
.product .info h3 {
  font-size: inherit;
  font-weight: 600;
  margin: 0px;
  text-transform: uppercase;
  display: inline-block;
}
.category .info .arrow-down {
  width: 0px;
  height: 0px;
  border-top: 12px solid #fff;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  position: absolute;
  bottom: -12px;
  right: 20px;
}
.category img,
.product img {
  width: 100%;
  height: auto;
  background-color: #fafafa;
}

/* list */
.product.list img {
  width: auto;
}
.product.list .info {
  padding: 30px;
  display: table-cell;
}
.product.list .description {
  margin-top: 15px;
}
.product.list .info .btn {
  margin: 15px 0px;
}
@media (max-width: 768px) {
  .product.list .info {
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .product.list img {
    width: 100%;
    height: auto;
  }
  .product.list .description,
  .product.list .info .btn,
  .product.list .info .actions {
    display: none;
  }
  .product .info {
    text-align: left;
  }
}

/* pager */
.pager ul.right li.number {
  margin-right: 5px;
}
.pager ul.right li.prev {
  margin-right: 10px;
}
.pager ul.right li.next {
  margin-left: 5px;
}
.pager ul.right li.prev,
.pager ul.right li.next {
  line-height: 25px;
}
.pager ul.right li.prev,
.pager ul.right li.next,
.pager ul.right li.active {
  font-weight: 600;
  text-transform: uppercase;
}
.pager ul.right li a.btn {
  padding: 4px 10px;
}

/* Tags
================================================== */
.tags {
  margin-bottom: 50px;
}
.tags h2 {
  margin-bottom: 30px;
  margin-top: 30px;
}
.tag {
  display: inline-block;
}
.tag {
  display: inline-block;
  text-transform: uppercase;
  background-color: #fdad5f;
  margin: 0px 10px 10px 0px;
  padding: 5px 20px 5px 10px;
}
.tag:last-child {
  margin-right: 0px;
}
.tag h4,
.tag-2 h4 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0px;
  display: inline;
}
.tag h4 {
  font-weight: 600;
}
.tag .circle {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: white;
  margin-right: 10px;
  vertical-align: 2px;
}

/* Footer
================================================== */
footer h5 {
  margin-bottom: 5px;
}
footer .info {
  margin: 0px 0px 10px 0px;
}
footer form#formNewsletter {
  padding-top: 10px;
}
footer input#formNewsletterEmail {
  margin: 0px;
  border: 0px;
  padding: 10px 15px;
  border-radius: 3px 0px 0px 3px;
  float: left;
  min-width: 185px;
}
footer .btn.input {
  text-transform: uppercase;
  border-radius: 0px 3px 3px 0px;
}
@media (min-width: 768px) and (max-width: 992px) {
  footer input#formNewsletterEmail,
  footer .btn.input {
    border-radius: 3px;
  }
  footer .btn.input {
    margin: 15px 0px 0px 0px;
  }
  footer input#formNewsletterEmail {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  footer .social h5 {
    margin-top: 30px;
  }
}

/* hallmarks */
footer .hallmarks {
  margin-top: 15px;
}
footer .hallmarks img {
  display: inline-block;
  max-width: 100%;
  margin: 5px 5px 0px 0px;
}

/* .payment-methods */
.payment-methods img {
  margin: 2px 5px 0px 0px;
  height: 19px;
  position: relative;
  top: -1px;
}

/* .social-icons */
.social-media {
  margin-top: 30px;
}
.social-media .social-icon {
  display: inline-block;
  background-image: url(social-icons.png);
  background-repeat: no-repeat;
  overflow: hidden;
  width: 32px;
  height: 32px;
  opacity: 0.8;
  margin-right: 2px;
}
.social-media .social-icon:hover {
  opacity: 1;
}
.social-media .social-icon.facebook {
  background-position: 0px 0px;
}
.social-media .social-icon.twitter {
  background-position: -32px 0px;
}
.social-media .social-icon.google {
  background-position: -64px 0px;
}
.social-media .social-icon.pinterest {
  background-position: -96px 0px;
}
.social-media .social-icon.youtube {
  background-position: -128px 0px;
}
.social-media .social-icon.tumblr {
  background-position: -160px 0px;
}
.social-media .social-icon.instagram {
  background-position: -192px 0px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min--moz-device-pixel-ratio: 2),
  only screen and (-o-min-device-pixel-ratio: 2/1),
  only screen and (min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi),
  only screen and (min-resolution: 2dppx) {
  .social-media .social-icon {
    background-image: url(social-icons-2x.png);
    background-size: cover;
  }
}

/* .copyright */
.copyright {
  border-top: 1px solid;
}

/* GUI */
.messages {
  margin-bottom: 0px !important;
}
.gui-form .gui-checkbox input,
.gui-form .gui-radio input {
  height: auto;
}
.gui a.gui-button-large,
.gui a.gui-button-small {
  text-transform: uppercase;
  font-weight: 600;
}
#gui-wrapper {
  margin-bottom: 30px;
}
.messages.product-page ul {
  position: absolute;
  margin-top: 15px;
  z-index: 9998;
  margin-left: -30px;
}
.messages.index ul {
  position: fixed;
  top: 30px;
  z-index: 9998;
}
/* BUNDLES
================================================== */

.bundleproductinfo h3 {
  font-size: 14px;
}
.bundle h3 {
  margin-bottom: 25px;
}
.glyph-bundle {
  position: absolute;
  top: 60px;
  margin-left: -21px;
}
.bundlecart {
  width: 16.666667%;
}
@media (max-width: 992px) {
  .bundleproductinfo {
    display: none;
  }
}

@media (max-width: 992px) {
  .glyph-bundle {
    top: 30px;
  }
}
.bundleproductinfo {
  height: 60px;
  overflow: hidden;
}

.bundleproductinfo p {
  margin-top: -6px;
  font-size: 12px;
}

.line-through {
  text-decoration: line-through;
}
.bundle-actions > div > div:nth-child(5) > .product > .glyph-bundle {
  display: none;
}
.price.total {
  margin-bottom: 25px;
}

@media (max-width: 992px) {
  .bundle {
    /* display:none; */
  }
}
@media (max-width: 992px) {
  .product:nth-child(5) > .glyph-bundle {
    display: none;
  }
}

.gui-invisible {
  visibility: visible !important;
}
