/* Base styles */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  color: #2e2e2e;
  line-height: 1.4;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}

.l-radio {
    padding: 3px;
    border-radius: 50px;
    display: inline-flex;
    cursor: pointer;
    transition: background 0.2s ease;
    margin: 3px 0;
    -webkit-tap-highlight-color: transparent;
    color: #fff;
  }

  .l-radio:hover, .l-radio:focus-within {
    background: rgba(159, 159, 159, 0.1);
  }
  .l-radio input {
    vertical-align: middle;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: none;
    border: 0;
    box-shadow: inset 0 0 0 1px #9F9F9F;
    box-shadow: inset 0 0 0 1.5px #9F9F9F;
    appearance: none;
    padding: 0;
    margin: 0;
    transition: box-shadow 150ms cubic-bezier(0.95, 0.15, 0.5, 1.25);
    pointer-events: none;
  }
  .l-radio input:focus {
    outline: none;
  }
  .l-radio input:checked {
    box-shadow: inset 0 0 0 6px #6743ee;
    background: green
  }
  .l-radio span {
    vertical-align: middle;
    display: inline-block;
    line-height: 20px;
    padding: 0 8px;
  }

body,
html {
  height: 100%;
}

mark {
  background-color: transparent !important;
}
/* selection color */
::selection {
  background: #b3d4fc;
  text-shadow: none;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

/* placeholder color */
::-webkit-input-placeholder {
  color: #909090;
}

::-moz-placeholder {
  color: #909090;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #909090;
}

/* hide clear button of a text / password input control (IE10+) */
::-ms-clear,
::-ms-reveal {
  display: none;
}

/* style Chrome autocomplete */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #dadad9 inset;
  -webkit-text-fill-color: #000;
}

/* turn off number input spinners */
/*
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
*/

/* format input fields */
/*
input[type=number] {
  -moz-appearance: textfield;
}
*/
a.disabled {
    pointer-events: none;
    cursor: default;
}

input::-webkit-datetime-edit {
  color: transparent;
}

input:focus::-webkit-datetime-edit {
  color: #ccc;
}

input::-webkit-calendar-picker-indicator {
  display: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

hr.divider {
  border-top: 1px solid #737373;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

details,
summary {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  list-style-type: none;
}

summary::-webkit-details-marker {
  display: none;
}

iframe[name=google_conversion_frame] {
  display: none !important;
}

/* Typography */
body {
  text-rendering: optimizeSpeed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-rendering: optimizeLegibility;
}

p {
  margin: 0;
  word-wrap: break-word;
}

p + p {
  margin-top: 1em;
}

a {
  text-decoration: none;
  color: #07c;
}

a[disabled] {
  pointer-events: none;
}

blockquote {
  font-style: italic;
}

blockquote:before {
  content: "\201C";
  display: inline-block;
  padding-right: .4em;
}

abbr[title]:hover {
  cursor: help;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

strong {
  font-weight: 700;
}

/* Helper classes */
.pl-10 {
  padding-left: 10px;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

.text-justify {
  text-align: justify;
  text-align-last: center;
  -moz-text-align-last: center;
}

.font-weight-bold {
  font-weight: 700;
}

.text-uppercase {
  text-transform: uppercase;
}

.no-focus:focus {
  outline-width: 0;
}

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  -webkit-clip-path: none;
  clip-path: none;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.ios-btn-fix {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

.noshadow {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

.noselect {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.word-wrap {
  overflow-wrap: break-word;
  /* an alternate name for the overflow-wrap property */
  word-wrap: break-word;
  word-break: break-all;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.page-break {
  display: block;
  page-break-before: always;
}

/* MS Edge status is under consideration. */
.reset-all-styles {
  all: initial;
}

.system-font-stack {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.truncate-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 200px;
}

/* Flexbox helpers  */
.evenly-distributed-children {
  display: flex;
  justify-content: space-between;
}

.flexbox-centering {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive helpers  */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/*
YouTube videos embed responsively
use:
<div class="embed-container"><iframe src="http://www.youtube.com/embed/<code>" frameborder="0" allowfullscreen></iframe></div>
*/
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Print styles */
@media print {
  *,
  *:before,
  *:after,
  *:first-letter,
  *:first-line {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .no-print, .no-print * {
    display: none !important;
  }
}

/* General */

.btn-primary {
  display: inline-block;
  background-color: #000;
  /* background: linear-gradient(0deg, rgb(67, 117, 25) 0%, rgb(119, 177, 54) 100%); */
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  /* border-radius: 5px; */
  border: 0;
  cursor: pointer;
}

.btn-primary:hover {
  background: linear-gradient(0deg, rgba(112,215,29,1) 0%, rgba(150,226,61,1) 100%);
}

.btn-shadow {
  box-shadow: 3px 7px 14px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  display: inline-block;
  background: #000 /* linear-gradient(0deg, rgba(120,190,32,1) 0%, rgba(120,280,36,1) 100%) */;
  text-transform: uppercase;
 /*  text-shadow: 1px 0px 4px rgba(150, 150, 150, 1); */
  /* border-radius: 5px; */
  color: #fff;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: #65b32e;
}

.ais-ClearRefinements-button {
  display: inline-block;
  background-color: #000 !important;
  /* background: linear-gradient(0deg, rgba(120,190,32,1) 0%, rgba(120,280,36,1) 100%) !important; */
  text-transform: uppercase;
  /* text-shadow: 1px 0px 4px rgba(150, 150, 150, 1); */
  /* border-radius: 5px; */
  color: #fff !important;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  padding: 10px 20px 10px 20px !important;
}

.rsecondary:disabled {
    cursor:not-allowed;
    background: linear-gradient(0deg, rgb(150, 150, 150) 0%, rgb(85, 85, 85) 100%);
}

.btn-light {
  display: inline-block;
  background: #e6e6e6;
  font-weight: 700;
  color: #737373;
  text-transform: uppercase;
  /* border-radius: 5px; */
  border: 0;
  cursor: pointer;
}

.btn-string {
    background: none!important;
  border: none;
  padding: 0!important;
  /*optional*/
  font-family: arial, sans-serif;
  /*input has OS specific font-family*/
  text-decoration: underline;
  cursor: pointer;
  margin-top: 3px;
}

.maxwidth {
 width: 1200px;
 margin: 0 auto;
}

.w-75 {
    max-width: 85%;
    width: 82%;
    margin: 0 auto;
}

.w-25 {
    width: 17%;
    margin: 0 10px 0 0;

}

.filters {
    width: 17%;
    margin: 0 10px 0 0;
}

.slick-slide, .slick-slide * {
  outline: none !important;
}

.subpage {
    background-color: #fff;
  /* background-color: #dadad9; */
  /* margin-top: 5%; */
  padding: 20px 0;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.content-block .form-group {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    position: relative;
    width: 45%;
}

.content-block .form-group input {
    width: 100%;
}

.form-group-last {
  margin-bottom: 0;
}

.form-group input[type=checkbox] {
  display: block;
  position: absolute;
  z-index: -1;
  top: 5px;
  left: 6px;
}

.form-group input[type=checkbox] + label {
  cursor: pointer;
  line-height: 1;
  display: block;
  padding-left: 35px;
  text-indent: -17px;
}

.form-group input[type=checkbox] + label:before {
  font-family: "Font Awesome 5 Pro";
  display: inline-block;
  vertical-align: middle;
  font-size: 28px;
  position: relative;
  top: -1px;
}

.form-group input[type=checkbox] + label:before {
  content: "\f0c8";
  color: #dadad9;
  font-weight: 700;
}
.form-group input[type=checkbox] + label:before {
  letter-spacing: 10px;
}

.form-group input[type=checkbox]:checked + label:before {
  content: "\f14a";
  color: #62c314;
  font-weight: 900;
}

.filter-card-container .form-group {
    margin-left: 10px;
}

.filter-card-container .form-group:nth-child(1) {
    margin-top: 10px;
}

.filter-card-container .form-group input[type=checkbox] + label:before {
    content: "\f0c8";
    color: #ecebeb;
    font-weight: 700;
}

.filter-card-container .form-group input[type=checkbox]:checked + label:before {
    content: "\f14a";
    color: #62c314;
    font-weight: 900;
  }

.ais-RefinementList {
    padding-left: 20px;
}

.ais-RefinementList .ais-RefinementList-item {
    font-weight: 500;
    font-size: 0.9em;
    letter-spacing: 0.1em;
}




.checkboxes label {
  position: relative;
}

input[type=radio] {
  /*display: none;*/
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

input[type=radio] + label {
  cursor: pointer;
}

input[type=radio] + label:before {
  font-family: "Font Awesome 5 Pro";
  display: inline-block;
  vertical-align: middle;
  font-size: 28px;
  position: relative;
  top: -1px;
}

input[type=radio] + label:before {
  content: "\f111";
  color: #dadad9;
  font-weight: 700;
}
input[type=radio] + label:before {
  letter-spacing: 10px;
}

input[type=radio]:checked + label:before {
  content: "\f192";
  color: #62c314;
  font-weight: 900;
}

.select {
  position: relative;
  display: inline-block;
}

.content-block .select {
    position: relative;
  display: inline-block;
}

.content-block .select select {
    cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
  border: 0 !important;
  background: #ecedef;
  background-image: none;
  padding: 10px 40px 10px 10px;
  border-radius: 5px;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  width: 100%;
  color: #515151;
}



.content-block .select select::-ms-expand {
    display: none;
  }

.content-block .select::after {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: '\f107';
    right: 12px;
    top: 30px;
    pointer-events: none;
    color: #62c314;
    font-size: 24px;
    font-weight: 700;
    -webkit-transition: .25s all ease;
    -o-transition: .25s all ease;
    transition: .25s all ease;
  }

  .content-block .select:hover::after {
    color: #ee7632;
  }

  /* Size Chart Select */

.typeof {
    font-size: 1.1em;
    font-weight: bold;
    color: #515151;
}

.typeof a {
    color: #515151 !important;
    margin-left: 5px;
    margin-right: 5px;
}

.typeof a:hover {
    color: #65b32e !important;
}

/* Breadcrumb */

.breadcrumb {
  font-size: 14px;
  float: left;
  padding: 5px 13px;
  background-color: #e6e6e6;
 /*  border-radius: 5px;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2); */
}

.breadcrumb a {
  color: #2e2e2e;
}

.breadcrumb i {
  margin: 0 10px;
}

.breadcrumb .here {
  font-weight: 500;
}

.breadcrumb a:last-child {
  color: #62c314;
  font-weight: 700;
}

/* Sort */

.sort {
  font-size: 14px;
  float: left;
  padding: 5px 13px;
  background-color: #e6e6e6;
  border-radius: 5px;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
}

.sort .type {
  display: inline-block;
  font-weight: 700;
  margin-left: 20px;
}

.sort .current {
  color: #62c314;
}

.sort i {
  margin-left: 5px;
}

.sort a {
  color: inherit;
}

/* Header */

.shrink {
    height: 60px;
    line-height: 60px;
}


header {
	height: 90px;
	padding: 0 20px;
	line-height: 90px;
  /* background-color: rgb(34, 32, 34); */
  background-color:#000 !important;

}

header img {
	vertical-align: middle;
}

.logo {
	text-decoration: none;
}

.logo-img {
    width: 200px;
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}

.logo-img-shrink {
    width: 150px;
}

.logo-text {
  /*display: none;*/
  margin-left: 10px;
}

.mobile-menu {
	/* border: 2px solid #737373;
	border-radius: 25px; */
	width: 50px;
	height: 50px;
	display: inline-block;
	text-align: center;
	color: #fff;
	font-size: 24px;
	line-height: 50px;
	vertical-align: middle;
	margin-right: 10px;
  display: none;
  background-color: transparent;
}

@media (max-width: 350px) {
  .mobile-menu {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }
}

.brand {
  float: left;
}

/* SEARCH */

.search {
    padding: 10px 20px 10px 0;
    text-align: right;
    display: none;
    background-color: #4b4b4b;
  }

.search form {
  float: right;
}

.search .open-size-search {
  float: right;
  margin-left: 3px;
  width: 159px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.search input[type="text"] {
  width: 200px;
  background-color: rgb(34, 34, 34);
  color: #fff;
  border-radius: 5px;
  height: 40px;
  border: 0;
  padding: 0 10px;
}

.search input[type="text"]:focus {
    outline: none !important;
    border:1px solid #65b32e;
    box-shadow: 0 0 10px #719ECE;
}

.search input[type="submit"] {
  width: 147px;
  height: 40px;
  line-height: 40px;
}

.header-line {
  border-bottom: 1px solid #dadad9;
}

/* Menu */

.menu {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  height: 90px;
}

.menu-shrink {
    height: 60px !important;
    margin-top: -14px !important;
    text-align: center;
}

.menu > ul {
	margin: 0;
	padding: 0;
  font-size: 0;
}

.menu > ul > li {
	list-style: none;
	display: inline-block;
  position: relative;
  font-size: 16px;
  padding: 0 20px;
}

.menu > ul > li > a {
	display: inline-block;
	line-height: 90px;
  height: 90px;
	text-decoration: none;
	font-weight: 700;
	color: rgb(226, 226, 226);
	text-transform: uppercase;
}

.menu i {
  display: inline-block;
  margin-left: 3px;
}

/* Submenu */

.menu li > ul {
  position: absolute;
  top: 90px;
  visibility: hidden;
  z-index: 100;
  margin: 0;
  padding: 20px 20px 10px 20px;
  background: #fff;
  width: 240px;
}

.menu li > ul.submenu-product {
  width: 620px;
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
  -webkit-column-width: 100px;
  -moz-column-width: 100px;
  column-width: 100px;
}

.submenu li {
  line-height: normal;
  list-style: none;
  text-align: left;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #d5d3d3;
  column-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  break-inside: avoid-column;
}

.submenu a {
  color: #2e2e2e;
}

.submenu a:hover {
  color: #62c314;
}

/* Menu hover */

.menu li:hover ul {
  visibility: visible;
}

.menu > ul > li:hover > a {
	color: #fff;
	border-bottom: 2px solid #fff;
}

/* Mobile menu popup */

.mobile-menu-popup {
  display: none;
  position: absolute;
  z-index: 120;
  top: 20px;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 95%;
  padding: 20px;
  background-color: #fff;
  box-shadow:  0px 0px 0px 9999px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

.mobile-menu-popup h2 {
  color: #62c314;
  text-transform: uppercase;
  border-bottom: 2px solid #dadad9;
  margin: 5px 0 10px 0;
}

.mobile-menu-popup p {
  margin-top: 5px;
  font-weight: 700;
  margin-bottom: 10px;
}

.menu-popup-close {
  text-transform: uppercase;
  color: #2e2e2e;
  float: right;
  font-weight: 700;
  display: inline-block;
  margin-top: 10px;
}

.mobile-menu-popup a {
  color: #2e2e2e;
}

.mobile-menu-popup ol {
  margin: 0;
  padding: 0 0 0 40px;
  list-style: none;
  counter-reset: my-awesome-counter;
}

.mobile-menu-popup ol > li {
  counter-increment: my-awesome-counter;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}

.mobile-menu-popup ol > li ul {
  display: none;
}

.mobile-menu-popup li.submenu > a {
  display: inline-block;
  border-bottom: 2px solid #dadad9;
}

.mobile-menu-popup li.submenu i {
  margin-left: 20px;
  color: #62c314;
}

/*
.mobile-menu-popup ol > li::before {
  content: "0" counter(my-awesome-counter);
  margin-right: 20px;
  font-size: 24px;
  color: #717171;
}
*/

.mobile-menu-popup ul {
  margin: 0 0 0 75px;
  padding: 0;
  list-style-type: none;
}

.mobile-menu-popup ul > li {
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}

.mobile-menu-popup ul > li a {
  color: #717171;

}

.mobile-menu-popup h3 {
  font-size: 24px;
  text-transform: uppercase;
  border-left: 5px solid #62c314;
  margin-left: -20px;
  padding-left: 55px;
  color: #62c314;
}

/* Side nav */
.side-nav-shrink {
    height: 60px !important;
    line-height: 60px !important;
}

.side-nav {
	float: right;
  height: 90px;
  line-height: 90px;
  -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}

.side-nav > a {
  margin-left: 10px;
}

.side-nav .link-tel {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
}

.btn-circle {
  vertical-align: middle;
	display: inline-block;
	width: 50px;
	height: 50px;
  line-height: 50px;
  text-align: center;
	/* border-radius: 25px;
	border: 2px solid #737373; */
  color: #fff;
  font-size: 22px;
  transition: color 0.5s ease;
  background-color: #000;
}

@media (max-width: 350px) {
  .btn-circle {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }
}

.btn-circle:hover {
  color: #65b32e;
}

.btn-show-cart {
  position: relative;
  color: #737373;
}

.btn-show-cart:after {
  content: attr(data-product);
  position: absolute;
  top: -8px;
  right: -7px;
  line-height: 12px;
  font-size: 14px;
  font-weight: bold;
  display: block;
  padding: 5px;
  border-radius: 8px;
  background: #737373;
  color: #fff;
}

/* Cart-info */

.cart-info {
  position: absolute;
  top: 11%;
  right: 14px;
  width: 300px;
  height: 60px;
  background: #e6e6e6;
  border: 1px solid #737373;
  border-radius: 8px;
  -webkit-box-shadow: -1px 0px 3px 0px rgba(0,0,0,0.4);
-moz-box-shadow: -1px 0px 3px 0px rgba(0,0,0,0.4);
box-shadow: -1px 0px 3px 0px rgba(0,0,0,0.4);
  z-index: 9;
}

.cart-info .cart-info-close {
    position: relative;
    float: right;
    top: 2px;
    right: 2px;
    font-size: 16px;
    cursor: pointer;
}

.cart-info .cart-info-content {
    padding-left: 10px;
}

.cart-info .cart-info-text {
    padding-top: 2px;
    padding-left: 10px;
    font-weight: bold;
    font-size: 14px;
}

/* Cart-info check animation */
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  }

  .checkmark {
    width: 30px;
    height: 30px;
    display: relative;
    border-radius: 50%;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 14px auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
  }

  .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  }

  @keyframes stroke {
    100% {
      stroke-dashoffset: 0;
    }
  }
  @keyframes scale {
    0%, 100% {
      transform: none;
    }
    50% {
      transform: scale3d(1.1, 1.1, 1);
    }
  }
  @keyframes fill {
    100% {
      box-shadow: inset 0px 0px 0px 30px #7ac142;
    }
  }

/* Slider */

#slider {
    /* margin-top: 6.4em; */
    /* height: 37.5rem; */
}

#slider .slick-dots {
  width: 1200px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  bottom: 30px;
}

#slider .slick-active .slider-button {
  border: 2px solid #62c314;
}

#slider .slick-dots li {
  width: auto;
  height: auto;
  margin-left: 0;
  margin-right: 20px;
}

#slider .slider-button {
  background-color: #e4e4e4;
  opacity: 0.8;
  display: inline-block;
  padding: 7px 18px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  border: 2px solid transparent;
}

#slider .slider-button:hover {
  border: 2px solid #62c314;
}

#slider .slide {
  position: relative;
  z-index: 100;
}

.slide-link {
  z-index: 106;
  display: block;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.slide img {
  max-width: 100%;
  max-height: 100%;
}

.slide-content {
  position: absolute;
  width: 1200px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  color: #fff;
  cursor: pointer;
}

#slider .slick-dots:before {
  content: 'Következnek:';
  position: absolute;
  top: -30px;
  font-weight: 700;
  text-transform: uppercase;
}

#slider .slide-text {
  border-left: 8px solid #62c314;
  padding-left: 20px;
  margin-top: 90px;
}

#slider .slide-text h2 {
  margin-top: 0;
  font-weight: 900;
  font-size: 60px;
  margin-bottom: 0;
  color: #000;
}

#slider .slide-text h3 {
  font-size: 24px;
  margin-top: 0;
  color: #62c314;
}

#slider .slide-content .btn-primary {
  margin-top: 30px;
  margin-left: 28px;
  padding: 10px 50px;
}

#slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}

/* Advantages */

.followus {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
}

.followus-item {
    max-width: 200px;
    max-height: 200px;
    margin: 30px;
}

.followus-item img {
    width: 180px;
}

.advantages {
  background-color: #f4f4f4;
  text-align: center;
  padding: 35px 0;
}

.advantages .item {
  display: inline-block;
  width: 295px;
  /*width: 295px !important;*/
  height: 175px;
  border: 3px solid #62c314;
  margin: 0 30px;
  font-size: 18px;
  position: relative;
}

.advantages .item .corner {
  position: absolute;
  right: -19px;
  /*top: -23px;*/
  top: -16px;
  background: #f4f4f4;
  font-size: 24px;
  color: #62c314;
  padding: 10px;
}

.advantages .item img {
  margin: 40px auto 10px auto;
}

.advantages .item span {
  display: block;
}

.advantages .item span > i {
  color: #ee7932;
}

.advantages .item a {
  color: #2e2e2e;
}

/*
.advantages .slick-track {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
*/

/* Pager */

.pager-wrapper {
  width: 100%;
  margin-bottom: 10px;
  justify-content:flex-end;
}

.pager {
  width: 127px;
    margin-right: 4.5em;
    margin-top: 0.6em;
  font-size: 24px;
  background-color: #e6e6e6;
  border-radius: 5px;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
}

.pager .counter {
  width: 55px;
  padding: 11px 5px 11px 10px;
  float: left;
}

.pager .current {
  font-weight: 900;
  color: #62c314;
  font-size: 23px;
}

.pager .prev {
  float: left;
  width: 35px;
  padding: 11px 10px;
  color: #62c314;
}

.pager .next {
  color: #62c314;
  float: left;
  width: 37px;
  padding: 11px 10px;
  display: inline-block;
  border-left: 2px solid #e3e3e3;

}

/* Featured */

.featured-bg-light {
  background-color: #fcfafa;
}

.featured {
  padding: 20px 0;
}

.featured .pager {
  margin-top: 30px;
}

.featured h2 {
  border-left: 8px solid #62c314;
  padding-left: 20px;
  font-weight: 400;
  font-size: 25px;
  margin: 0 0 20px 0;
}

/* Products */

.products {
  text-align: justify;
  font-size: 0;
}
/*
.products:after {
  content: '';
  display: inline-block;
  width: 100%;
}
*/
.container-filters-footer {
    display: none;
}

aside {
    display: none;
}
#searchbox .ais-SearchBox {
    width: 230px;
}

.ais-SearchBox-form input[type=search] {
    /* border-color: rgb(85, 85, 85); */
    border-color:transparent;
    border-width: 2px;
    background-color: #e6e6e6 !important;
}

.ais-SearchBox-form input[type=search]::placeholder {
    /* color:rgb(85, 85, 85); */
    color: #000;
    font-size: 1.1em;
}

.ais-SearchBox-form input[type=search]:focus {
    border-color: #65b32e;
    -webkit-box-shadow: 3px 4px 9px 1px rgba(0,0,0,0.3);
    box-shadow: 3px 4px 9px 1px rgba(0,0,0,0.3);
}

  /* RangeInput */

  .ais-RangeInput-input {
    background: none;
    border: none;
    border-bottom: 1px solid #ebecf3;
    color: #21243d;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    min-width: none;
    padding: 0;
    padding-bottom: 3px;
  }

  .ais-RangeInput-label:first-of-type {
    margin-right: 6px;
  }

  .ais-RangeInput-label:last-of-type {
    margin-left: 6px;
  }

  /* Menus */

.ais-RefinementList-item,
.ais-Menu-item,
.ais-HierarchicalMenu-item,
.ais-RatingMenu-item {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ais-RefinementList-item,
/*
 The refinement list item in InstantSearch.js contains a wrapping `div` because of
 the template behavior. We therefore need to apply the styles to all the elements
 in a refinement list.
*/
.ais-RefinementList-item *,
.ais-RatingMenu-item {
  cursor: pointer;
}

.ais-HierarchicalMenu-link,
.ais-RatingMenu-item,
.ais-RefinementList-item {
  padding-bottom: 1rem;
}

.ais-Breadcrumb-item--selected,
.ais-HierarchicalMenu-item--selected,
.ais-Menu-item--selected {
  font-weight: bold;
}


.ais-RatingMenu-starIcon--full {
  fill: #e2a400;
}

.ais-RatingMenu-starIcon--empty {
  fill: rgba(0, 0, 0, 0.08);
}

/* Panel */

.ais-Panel--collapsible {
  position: relative;
}

.ais-Panel--collapsed .ais-Panel-body,
.ais-Panel--collapsed .ais-Panel-footer {
  display: none;
}

.ais-Panel-collapseButton {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  right: 0;
}

.ais-Panel-header {
  border: none;
  color: #21243d;
  font-size: 0.678rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  line-height: 1.6;
  padding-bottom: 1rem;
  text-transform: uppercase;
}

/* Search box */

.ais-SearchBox-form {
  position: relative;
}

.ais-SearchBox-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgba(65, 66, 71, 0.06);
  border: 1px solid #65b32e;
  border-radius: 3px;
  color: rgba(33, 36, 61, 0.8);
  font-family: inherit;
  min-height: 54px;
  outline: none;
  padding-left: 56px;
  width: 100%;
}

.ais-SearchBox-input::placeholder {
  color: rgba(33, 36, 61, 0.5);
  opacity: 1; /* Firefox */
}

.ais-SearchBox-input:-ms-input-placeholder {
  color: rgba(33, 36, 61, 0.5);
}

.ais-SearchBox-input::-ms-input-placeholder {
  color: rgba(33, 36, 61, 0.5);
}

.ais-SearchBox-reset,
.ais-SearchBox-loadingIndicator,
.ais-SearchBox-submit {
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  height: 100%;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
}

.ais-SearchBox-reset[hidden],
.ais-SearchBox-loadingIndicator[hidden] {
  display: none;
}

.ais-SearchBox-submit {
  left: 0;
}

.ais-SearchBox-reset,
.ais-SearchBox-loadingIndicator {
  right: 0;
}

.ais-SearchBox-resetIcon {
  width: 10px;
  height: 10px;
}

/* SFFV search box */

.ais-RefinementList .ais-SearchBox-input {
  border-radius: 3px;
  color: #000;
  font-size: 0.8rem;
  min-height: 40px;
  padding: 0 44px;
}

.ais-RefinementList .ais-SearchBox-form {
  margin-bottom: 1rem;
}

/* Menus */

.ais-HierarchicalMenu-link,
.ais-RatingMenu-link,
.ais-RefinementList-label {
  align-items: center;
  display: flex;
}

.ais-RefinementList-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgba(65, 66, 71, 0.08);
  border: 1px solid rgb(116, 116, 116);
  border-radius: 2px;
  height: 1rem;
  margin: 0;
  margin-right: 1rem;
  position: relative;
  width: 1rem;
}

.ais-RefinementList-item--selected {
  font-weight: bold;
}

.ais-RefinementList-item--selected .ais-RefinementList-checkbox {
  background-color: #65b32e;
}

.ais-RefinementList-item--selected .ais-RefinementList-checkbox::after {
  background-color: #fff;
  border-radius: 4px;
  content: '';
  height: 4px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-2px) translateY(-2px);
  width: 4px;
}

.ais-HierarchicalMenu-count,
.ais-Menu-count,
.ais-RefinementList-count,
.ais-ToggleRefinement-count,
.ais-RatingMenu-count {
  align-items: center;
  background-color: rgba(65, 66, 71, 0.08);
  border-radius: 4px;
  color: rgba(33, 36, 61, 0.8);
  display: flex;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 1.1px;
  margin-left: 8px;
  padding: 0 4px;
}

.ais-HierarchicalMenu-showMore,
.ais-Menu-showMore,
.ais-RefinementList-showMore {
  margin-top: 1rem;
 /*  border: 1px solid rgb(34, 34, 34) !important;
  border-radius: 5%; */
  background-color: #e6e6e6 ! important;
  padding: 10px !important;
  margin-bottom: 1rem;
}

.ais-HierarchicalMenu-list {
  font-weight: 500;
}

.ais-HierarchicalMenu-link {
    margin-left: 20px;
    color: rgba(33, 36, 61, 0.8);
}

.ais-HierarchicalMenu-item--selected .ais-HierarchicalMenu-label {
  color: #65b32e !important;
}

.ais-HierarchicalMenu-link::before {
  align-items: center;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath fill='%2390919E' fill-rule='nonzero' d='M0 4l4-4 4 4z'/%3E%3C/svg%3E%0A");
  display: flex;
  height: 8px;
  justify-content: center;
  margin-right: 1rem;
  width: 8px;
}

.ais-HierarchicalMenu-item--selected .ais-HierarchicalMenu-link::before {
  transform: rotate(180deg);
}

.ais-HierarchicalMenu-item--selected
  .ais-HierarchicalMenu-item:not(.ais-HierarchicalMenu-item--selected)
  .ais-HierarchicalMenu-link::before {
  transform: rotate(0);
}

/* ClearRefinements */

.ais-ClearRefinements,
.ais-ClearRefinements-button {
  color: rgba(33, 36, 61, 0.7);
}

.ais-ClearRefinements-button--disabled {
  color: rgba(33, 36, 61, 0.5);
}

/* ToggleRefinement */

.ais-ToggleRefinement-label {
  cursor: pointer;
  display: flex;
}

.ais-ToggleRefinement-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgba(65, 66, 71, 0.08);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  height: 16px;
  margin-right: 16px;
  min-width: 30px;
  transition: background 150ms ease-out;
}

.ais-ToggleRefinement-checkbox:checked {
  background: #65b32e;
}

.ais-ToggleRefinement-checkbox::after {
  background-image: linear-gradient(to top, #f5f5fa, #fff);
  border-radius: 100%;
  box-shadow: 0 4px 11px 0 rgba(37, 44, 97, 0.15),
    0 2px 3px 0 rgba(93, 100, 148, 0.2);
  content: '';
  height: 16px;
  position: absolute;
  transition: transform 150ms ease-out;
  width: 16px;
}

.ais-ToggleRefinement-checkbox:checked::after {
  transform: translateX(100%);
}

/* Selectors */

.ais-SortBy,
.ais-HitsPerPage {
  position: relative;
}

.ais-SortBy::after,
.ais-HitsPerPage::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M14-5v16H-2V-5z'/%3E%3Cpath fill='%23000' stroke='%23FFF' stroke-width='.5' d='M2.228 1.332a.664.664 0 0 0-.942.001.665.665 0 0 0-.002.941l4.247 4.247c.259.26.679.26.938 0l4.247-4.247a.664.664 0 0 0-.002-.94.666.666 0 0 0-.942-.002L6 5.105 2.228 1.332z'/%3E%3C/g%3E%3C/svg%3E%0A");
  display: inline-block;
}

.ais-SortBy-select,
.ais-HitsPerPage-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  color: #21243d;
  font-family: inherit;
}

/* Sliders */

.ais-RangeSlider {
    margin-left: 35px;
    margin-right: 35px;
}

.ais-RangeSlider .rheostat-horizontal {
  cursor: pointer;
  width: 90%;
}

.ais-RangeSlider .rheostat-background {
  background-color: #65b32e;
  border: none;
  border-radius: 3px;
  height: 3px;
}

.ais-RangeSlider .rheostat-progress {
  background-color: #65b32e !important;
  border-radius: 3px;
  height: 3px;
  top: 0;
  max-width: 100%;
}

.ais-RangeSlider .rheostat-tooltip {
  font-weight: bold;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ais-RangeSlider .rheostat-handle {
  background-image: linear-gradient(to top, #f5f5fa, #fff);
  border: none;
  box-shadow: 0 4px 11px 0 rgba(37, 44, 97, 0.15),
    0 2px 3px 0 rgba(93, 100, 148, 0.2);
  margin-left: -5px;
  top: -9px;
}

.ais-RangeSlider .rheostat-marker {
  background-color: rgba(65, 66, 71, 0.08);
}

/* RangeInput */

.ais-RangeInput-input {
  background: none;
  border: none;
  border-bottom: 1px solid #ebecf3;
  color: #21243d;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  min-width: none;
  padding: 0;
  padding-bottom: 3px;
}

.ais-RangeInput-label:first-of-type {
  margin-right: 6px;
}

.ais-RangeInput-label:last-of-type {
  margin-left: 6px;
}

/* Pagination */

.ais-Pagination-list {
  justify-content: center !important;
}

.ais-Pagination-item,
.ais-Pagination-link {
  align-items: center !important;
  display: flex !important;
  justify-content: center !important;
}

.ais-Pagination-item {
  background-color: rgba(65, 66, 71, 0.08);
  /* border-radius: 4px; */
  color: #414247;
  height: 38px;
  width: 38px;
}

.ais-Pagination-item--selected {
  background-color: #000;
  font-weight: bold;
}

.ais-Pagination-item--firstPage,
.ais-Pagination-item--previousPage,
.ais-Pagination-item--nextPage,
.ais-Pagination-item--lastPage {
  background: none;
}

.ais-Pagination-item--disabled {
  opacity: 0.33;
}

.ais-Pagination-item--selected a {
  color: #fff !important;
}

.ais-Pagination-item.ais-Pagination-item--page {
  margin-right: 4px;
}

.ais-Pagination-item.ais-Pagination-item--previousPage {
  margin-right: 1rem;
}

.ais-Pagination-item.ais-Pagination-item--nextPage {
  margin-left: calc(1rem - 4px);
}

.ais-Pagination-link {
  height: 100%;
  width: 100%;
  color: #000;
}

.ais-Hits-item {
  width: 290px;
  max-width: 290px;
  flex-grow: 1;
  /*float: left;*/
  display: inline-block;
  margin: 20px 10px 5px 0;
  background-color: #fff !important;
  /* background: #e6e6e6; */
  vertical-align: top;
  /* border-radius: 7px;
  box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2); */

  font-size: 14px;
  text-align: left;
}

.ais-Hits-item .pic {
  background: #e6e6e6 !important;
  text-align: center;
  width: 290px;
  height: 290px;
  overflow: hidden;
  min-height: 270px;
  line-height: 270px;
  /* border-top-left-radius: 7px;
  border-top-right-radius: 7px; */
  position: relative;
}


.ais-Hits-item .badges {
  position: absolute;
  right: 10px;
  top: 10px;
  line-height: normal;
}

.ais-Hits-item .badges > span {
  width: 38px;
  height: 38px;
  text-align: center;
  display: inline-block;
  line-height: 38px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.ais-Hits-item .sale,
.subpage-product .sale {
  position: absolute;
  left: 10px;
  top: 10px;
  width: max-content;
  height: 30px;
  /* border-top-left-radius: 5px; */
  line-height: 20px;
  text-align: left;
  color: #fff;
  background-color: #65b32e;
  font-size: 16px;
  font-weight: 700;
  /* text-shadow: 1px 1px #999; */
  padding: 5px 10px;
}

.ais-Hits-item .badges .cheaper {
  background-image: url(../../img/newui/bg_cheaper.png);
}

.ais-Hits-item .badges .new {
  background-image: url(../../img/newui/bg_new.png);
}

.ais-Hits-item .badges .add-to-whishlist {
  width: 30px;
  height: 30px;
  line-height: 32px;
  text-align: center;
  display: inline-block;
  background-color: #000;
  border-radius: 50%;
  color: #fff;

}

.ais-Hits-item h3 {
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
  font-weight: 500;
  /* min-height: 50px; */
}

.ais-Hits-item h3 > a {
  color: #2e2e2e;
}

.ais-Hits-item .price {
    margin-top: 10px;
  padding-left: 20px;
  /* border-left: 8px solid #62c314; */
}

.ais-Hits-item .btn-cart {
  margin: 10px auto;
  width: 230px;
  display: block;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.ais-Hits-item .price strong {
  display: block;
  font-weight: 900;
  font-size: 22px;
  /* color: #62c314; */
  color: #000;
}

.ais-Hits-item .pic img {
  max-width: 80%;
  display: inline-block;
  transition: all .2s ease-in-out;
}

.ais-Hits-item .pic img:hover  {
    transform: scale(1.1);
}

.ais-Hits-item:nth-child(4n) {
    margin-right: 40px;
}

.ais-Hits-item .variant-list-p {
    font-size: 0.9em;
    margin-top: 0.5em;
    margin-left: 1em;
}

.ais-Hits-item .variant-list {
    margin-top: 0.3em;
    margin-left: 0.8em;
    font-size: 1.2em;
    /* height: 80px; */
    overflow: hidden;
    /* transition: all 1s ease-in;
    -webkit-transition: all 1s ease-in; */
}

.ais-Hits .ais-Hits-list .ais-Hits-item h3 mark {
  background-color: transparent !important;
}


/* .ais-Hits-item .variant-list:hover {
    height: auto;
} */

/* Facebook */

.social {
  width: 100%;
  padding: 30px 0;
  background: #2b2b2b url("https://ik.imagekit.io/ej7poubktm27/assets/img/newui/fb_bg.png") top center no-repeat;
  text-align: center;
}

.social .fa-icon {
  width: 60px;
  height: 60px;
  line-height: 74px;
  /*background-color: #fa7420;*/
  border: 2px solid #fff;
  border-radius: 50%;
  display: inline-block;
  margin: 0 10px;
}

.social .fa-icon a {
  color: #fff;

}

.social .fa-icon i {
  font-size: 36px;
}

.social .icon {
  background: #429ddc;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: inline-block;
  color: #fff;
}

.social .icon i {
  font-size: 33px;
  margin-top: 19px;
}

.social .fb-wrapper {
  width: 1000px;
  margin: 30px auto 0 auto;
}

.social .fb-text {
  text-align: right;
  font-size: 36px;
  color: #62c314;
  /*text-transform: uppercase;*/
  line-height: 45px;
  font-weight: 400;
  float: left;
  margin-top: 100px;
}

.social .fb-embed {
  background-color: #62c314;
  float: left;
  width: 460px;
  height: 140px;
  padding: 10px 0 0 10px;
  margin-left: 10px;
}

.social .group-instagram {
  margin-top: 20px;
}

.social .insta-text {
  text-align: left;
  font-size: 36px;
  color: #62c314;
  /*text-transform: uppercase;*/
  line-height: 45px;
  font-weight: 400;
  float: left;
  margin-top: 190px;
}

.social .insta-text a {
  color: #62c314;
}

.social .insta-embed {
  background-color: #62c314;
  float: left;
  width: 460px;
  height: 233px;
  padding: 10px 0 0 10px;
  margin-right: 10px;
  margin-left: 130px;
}

/* Top categories */

.top-categories {
  padding: 60px 0;
}

.top-categories .cover {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
/* .top-categories .workshop-shirt {
    width: 560px;
    height: 240px;
    margin-bottom: 60px;
    margin-right: 40px;
}

.top-categories .workshop-shoes {
    width: 560px;
    height: 240px;
    margin-bottom: 60px;
    margin-left: 40px;
} */

.top-categories .leftside {
  float: left;
  width: 780px;
}

.top-categories .rightside {
  width: 360px;
  /* height: 490px; */
  float: right;
  margin-left: 60px;
  margin-top: -10px;
}

.top-categories .left-top-left {
  margin-bottom: 60px;
  width: 360px;
  height: 215px;
  margin-right: 60px;
}

.top-categories .left-top-right {
  margin-bottom: 60px;
  width: 360px;
  height: 215px;
}

.top-categories .bottom-left {
  margin-right: 60px;
  width: 360px;
  height: 215px;
}

.top-categories .bottom-right {
  width: 360px;
  height: 215px;
}

.top-categories .rightside .right-top {
    width: 360px;
    height: 215px;
    margin-bottom: 60px;
}

.top-categories .rightside .right-bottom {
    width: 360px;
    height: 215px;
}

.top-categories .left-top-left,
.top-categories .left-top-right,
.top-categories .bottom-left,
.top-categories .bottom-right,
.top-categories .rightside,
.top-categories .rightside .right-top,
.top-categories .rightside .right-bottom,
.top-categories .workshop-shirt,
.top-categories .workshop-shoes {
  /* border-radius: 5px; */
  float: left;
  /* line-height: 40px; */
  padding-top: 10px;
  position: relative;
}

/* .top-categories h4 {
  font-size: 26px;
  font-weight: 900;
  margin-top: 0;
  color: #fff;
  text-transform: uppercase;
  padding-left: 20px;
  border-left: 8px solid #62c314;
  padding-right: 20px;
  text-shadow: 2px 2px 8px #000;
} */

@media screen and (max-width: 420px) {
  .cat-h {
    font-size: 23px !important;
  }
}

/* Footer */

footer {
  background-color: #000;
  /* background-color: #2e2e2e; */
  padding: 60px 0;
  color: #fff;
}

footer h5 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

footer .col-left,
footer .col-middle,
footer .col-right {
  float: left;
  width: 400px;
}

footer .col-left ul {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 40px;
}

footer .col-left a {
  color: #fff;
}

footer .col-middle ul {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}

footer .col-middle .icon {
  background-color: #65b32e;
  /* background-color: #62c314; */
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
 /*  border-radius: 5px; */
  vertical-align: middle;
  margin-right: 10px;
}

footer .address {
  display: table-row;

}

footer .address .tcell {
  display: table-cell;
  vertical-align: middle;
}

footer li.spacer {
  content: '';
  display: block;
  margin-bottom: 10px;
}

footer .col-middle i {
  color: #fff;
  font-size: 24px;
  margin-top: 8px;
}

footer .col-middle a {
  color: #fff;
}

footer .copyright {
  clear: left;
  text-align: center;
}

footer .copyright hr {
  height: 3px;
  background-color: #62c314;
  border: none;
  width: 400px;
  margin: 10px auto;
}

footer .col-right {
  text-align: right;
}

footer .col-right input {
  background-color: #dadad9;
  border-radius: 5px;
  border: 0;
  width: 200px;
  height: 40px;
  padding: 0 10px;
  color: #000;
}

footer .col-right a {
  display: block;
  color: #fff;
  text-decoration: underline;
}

footer .col-right button {
  width: 200px;
  padding: 10px 0;
  margin-top: 30px;
}

footer .col-right p {
  margin-top: 10px;
}

/* Footwear search */

.footwear-search-btn {
  position: fixed;
  right: 20px;
  top: 200px;
  z-index: 110;
  transition: all 0.5s ease 0s;
  display: none;
}

.footwear-search-btn a {
  padding: 15px 25px;
}

.footwear-search {
  display: none;
  width: 315px;
  background-color: #fff;
  box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  position: fixed;
  right: 40px;
  z-index: 111;
  top: 130px;
}

.footwear-search > .close {
  position: absolute;
  right: -22px;
  top: -26px;
  width: 48px;
  height: 48px;
  text-align: center;
  background: #737373;
  border-radius: 50%;
  line-height: 48px;
  vertical-align: middle;
  cursor: pointer;
}

.footwear-search > .close > i {
  color: #fff;
  vertical-align: middle;
  font-size: 32px;
}

.fw-search-header {
  margin: 20px 20px 0 20px;
  border-bottom: 1px solid #dadad9;
}

.fw-search-header a {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
}

.fw-search-header .left {
  float: left;
}

.fw-search-header .right {
  float: right;
}

.footwear-search p {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 0 0 0;
}

.fw-search-header .current {
  color: #62c314;
}

.fw-search-header a {
  color: #737373;
}

.footwear-search .price {
  padding: 20px 20px 0 20px;
  font-size: 16px;
  font-weight: 700;
  color: #717171;
}

.footwear-search .price .inputs {
  float: right;
}

.footwear-search .price input[type="text"] {
  width: 180px;
  margin-bottom: 10px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 2px solid #d0d0d0;
  text-align: right;
}

.footwear-search h5 {
  margin: 0 0 10px 0;
  padding: 0 20px 0 15px;
  border-left: 5px solid #fff;
  font-size: 16px;
  font-weight: 700;
  color: #717171;
  clear: left;
  cursor: pointer;
}

.footwear-search h5 i {
  float: right;
  color: #62c314;
}

.footwear-search h5:hover {
  border-left: 5px solid #62c314;
}

.footwear-search .selector {
  padding: 0 20px;
  display: none;
}

.footwear-search .selector span {
  padding: 0 5px;
  float: left;
}

.footwear-search .selector span:hover {
  border: 3px solid #62c314;
}

.footwear-search .btns {
  margin: 10px 20px;
}

.footwear-search .state-default {
  width: 130px;
  padding: 0 20px;
  height: 39px;
  line-height: 39px;
  float: right;
}

.footwear-search .btn-quick-search {
  width: 130px;
  padding: 0 20px;
  height: 39px;
  float: left;

  /*
  margin: 20px;
  width: 270px;
  padding: 10px 20px;
  */
}

.footwear-search .btn-quick-search i {
  float: right;
  font-size: 16px;
}

.tab-textil {
  display: none;
}

/* Filter */

.filter-card {
    max-width: 98%;
    margin-top: 47px;

}

.filter-card-header {
    padding-top: 10px;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.filter-card-content {
    margin-top: 20px;
}

.filter-card-container {
    height: 400px;
    overflow-y: scroll;
    /* border: 1px solid #000; */
    -webkit-box-shadow: inset 2px 0px 3px 1px rgba(133,133,133,0.64);
-moz-box-shadow: inset 2px 0px 3px 1px rgba(133,133,133,0.64);
box-shadow: inset 2px 0px 3px 1px rgba(133,133,133,0.64);
}


.filter-card-content .card-title {
    border-left: 8px solid #62c314;
  padding-left: 20px;
  font-weight: 400;
  /*text-transform: uppercase;*/
  font-size: 18px;
  margin: 20px 0 10px 0px;
  text-align: left;
  background: #e6e6e6;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Category-preview */

.many-sizes {
    height: 80px !important;
}

/* .many-sizes:hover {
    height: auto !important;
} */

.category-list {
  background-color: #fff;
  /* background-color: #dadad9; */
  padding-bottom: 60px;
  text-align: center;
}

.category-prods {
    justify-content: center;
}

.category-list h2 {
  border-left: 8px solid #62c314;
  padding: 0 20px;
  font-weight: 400;
  /*text-transform: uppercase;*/
  font-size: 25px;
  margin: 0 0 10px 0;
  text-align: left;
}

.category-preview {
  width: 270px;
  height: 215px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 50px;
  float: left;
  margin-right: 50px;
  position: relative;
}
/*
.category-preview:nth-child(4n) {
  margin-right: 0;
}
*/

.category-preview h3 {
  font-size: 23px;
  font-weight: 400;
  margin: 0;
  text-align: left;
  color: #fff;
  top: 20px;
  position: absolute;
}

.category-preview span {
  background-color: #191919;
  box-decoration-break: slice;
  -webkit-box-decoration-break: clone;
  padding: 0 20px;
}

.category-preview span a {
  color: #000;
  text-decoration: none;
}

.category-list .more-categories {
  display: inline-block;
  margin: 40px auto 0 auto;
  padding: 10px 20px;
}

/* Product list */

.subcategory-title {
  border-bottom: 1px solid #737373;
  padding-bottom: 5px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}

.subpage-category h1 {
  border-left: 8px solid #65b32e;
  text-transform: uppercase;
  padding: 5px 0 5px 10px;
  font-size: 25px;
  font-weight: 900;
  margin-top: 20px;
  margin-bottom: 20px;
}

.category {
  width: 270px;
  height: 215px;
  font-size: 24px;
  margin-bottom: 35px;
  background-color: #eee;
  border-radius: 5px;
  display: inline-block;
  text-align: left;
  float: left;
  margin-right: 40px;
}

.category:nth-child(4n) {
  margin-right: 0;
}

.category h2 {
  margin: 8px 0 0 0;
  font-size: 21px;
  font-weight: 400;
  /*border-left: 8px solid #ee7932;*/
  padding-left: 10px;
  padding-right: 10px;
  /*text-shadow: 2px 2px 5px #000;*/
  /*color: #ee7932;*/
  background: rgba(98, 195, 20, 0.7);
  color: #fff;
}

.category figure {
  margin: 0;
  position: relative;
}

.category img {
  border-radius: 5px;
}

.category figcaption {
  position: absolute;
  top: 0;
  margin: 0;
  /*text-transform: uppercase;*/
}

.product-list .product {
  margin-bottom: 40px;
  float: left;
}

.sorter {
  float: left;
  margin-bottom: 20px;
}

/* Steps */

.steps {

}

.stepper {
  width: 33.33%;
  display: table;
  width: 100%;
  margin: 0 auto;
  line-height: 1.25;
}

.stepper .step {
  display: table-cell;
  position: relative;
  padding: 24px;
  line-height: inherit;
}

.stepper .step:first-child .bar-left,
.stepper .step:last-child .bar-right {
  display: none;
}

.stepper .step .circle {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-radius: 50%;
  text-align: center;
  line-height: 4em;
  font-size: 12px;
  color: #000;
}

.stepper .step .circle i {
  font-size: 48px;
}

.stepper .step .circle .current {
  background:linear-gradient(#62c314,#62c314) center /70% 70% no-repeat;
}

.stepper .step .title {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.stepper .step .title,
.stepper .step .optional {
  text-align: center;
}

.stepper .step .optional {
  font-size: 14px;
  color: #737373;
  margin-top: 10px;
  font-weight: 700;
}

.stepper .step .bar-left,
.stepper .step .bar-right {
  position: absolute;
  top: 47px;
  height: 1px;
  border-top: 3px solid #000;
}

.stepper .step .bar-right {
  right: 0;
  left: 50%;
  margin-left: 23px;
}

.stepper .step .bar-left {
  left: 0;
  right: 50%;
  margin-right: 23px;
}

/* Registration */

.registration {
  background-color: #fff;
  padding: 40px;
  width: 890px;
  float: left;
  border-radius: 5px;
  margin-bottom: 40px;
  /* box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2); */
}

.registration .select {
  width: 300px;
}

.registration .select select {
  width: 300px;
}

.subpage-reg h1 {
  margin-bottom: 20px;
  border-left: 8px solid #000;
  text-transform: uppercase;
  padding: 5px 0 5px 10px;
  font-size: 36px;
  font-weight: 900;
  margin-top: 40px;
}

.registration .title {
  padding-bottom: 5px;
  border-bottom: 2px solid #dadad9;
  margin-bottom: 20px;
}

.registration .title h2 {
  display: inline-block;
  margin: 0 15px 0 0;
  text-transform: uppercase;
  font-weight: 900;
  color: #000;
}

.registration .title small {
  font-size: 14px;
  color: #737373;
  font-weight: 700;
}

.registration .label {
  font-weight: 700;
  font-size: 14px;
  display: block;
  padding-bottom: 5px;
}

.registration .text-input {
  width: 300px;
  background-color: #e3e3e3;
  /* border-radius: 5px; */
  height: 40px;
  border: 0;
  padding: 0 10px;
}

.registration a {
  text-decoration: underline;
  font-weight: 700;
  color: #2e2e2e
}

.registration a {
  margin-bottom: 10px;
}

.registration .btn-secondary {
  width: 300px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.alternate-login {
  width: 270px;
  margin-left: 40px;
  background-color: #e6e6e6;
  /* border-radius: 5px; */
  float: left;
  padding: 20px;
  /* box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2); */
}

.alternate-login h3 {
  margin: 0 0 10px 0;
  padding-bottom: 5px;
  text-align: center;
  color: #000;
  font-size: 24px;
  text-transform: uppercase;
  border-bottom: 1px solid #dadad9;
}

.alternate-login p {
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}

.alternate-login a:first-of-type {
  margin-bottom: 20px;
}

.btn-base {
  border-radius: 5px;
  display: block;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.btn-danger {
    display: inline-block;
    background: linear-gradient(0deg, rgb(236, 58, 26) 0%, rgb(255, 38, 0) 100%);
    text-transform: uppercase;
    text-shadow: 1px 0px 4px rgba(150, 150, 150, 1);
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    border: 0;
    cursor: pointer;
}

.btn-fb {
  background-color: #3b5998;
}

/* Product pages  */

.subpage-product {
  padding: 50px 10px;
}

.wrapper-images {
  float: left;
  width: 400px;
}

.lead-image {
  position: relative;
  width: 400px;
  height: 400px;
  /* border-radius: 5px; */
  background-color: #e6e6e6;
  text-align: center;
  line-height: 400px;
  /* box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2); */
}

.lead-image,
.more-image {
  margin-bottom: 20px;
}

.more-image a {
 display: none;
}

.lead-image img {
  /* border-radius: 5px; */
  min-width: 93%;
  max-height: 93%;
  max-width: 93%;
}

.more-image img {
  /* border-radius: 5px;
  box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2); */
}

.more-image a:first-child {
  float: left;
  display: block;
}

.more-image a:nth-child(2) {
  float: right;
  display: block;
}

.wrapper-images .btn-light {
  width: 400px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  /* box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2); */
  margin-bottom: 20px;
}

.wrapper-images .btn-primary {
  width: 400px;
  height: 50px;
  line-height: 50px;
  text-transform: uppercase;
  padding: 0 20px;
  font-size: 18px;
}

.wrapper-images .btn-primary i {
  float: right;
  margin-top: 13px;
  font-size: 24px;
  font-weight: 900;
}

.wrapper-details {
  margin-left: 60px;
  float: left;
  width: 740px;
}

.product-details {
  width: 740px;
  clear: left;
  padding: 30px 30px 40px 30px;
  background-color: #fff;
  /* box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2); */
  /* border-radius: 5px; */
  margin-bottom: 20px;
}

.subpage-product h1 {
  font-weight: 700;
  font-size: 24px;
  color: #000;
  margin: 0;
}

.subpage-product h5 {
  font-size: 14px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 10px;
}

.subpage-product h5 > a {
  float: right;
  font-weight: 700;
  color: #62c314;
  text-decoration: underline;
  margin-left: 10px;
}

.float-r {
  float: right;
}

.size-change {

}

.product-details small {
  font-weight: 400;
  color: #737373;
  font-size: 14px;
}

.product-details .wysiwyg {
  color: #737373;
  line-height: 1.5;
}

.product-details .wysiwyg img {
  display: block !important;
}

.checkboxes span {
  background-color: #e6e6e6;
  height: 35px;
  line-height: 30px;
  font-size: 12px !important;
  /* border-radius: 5px; */
  display: inline-block;
  text-align: center;
  color: #737373;
  font-weight: 700;
  cursor: pointer;
  border: 3px solid transparent;
  margin-bottom: 7px;
  margin-right: 5px;
}

.checkbox-size span {
  /*width: 50px;*/
  padding: 0 10px;
}

.checkbox-color span {
  width: 130px;
}

.checkboxes span:hover,
.checkboxes .selected {
  border: 3px solid #62c314;
}
.checkboxes input[type="radio"]:checked {
    /* visibility: hidden; */
    border: 3px solid #62c314;
  }

.option_selector:checked {
    border: 3px solid #62c314;
}

.wrapper-price {
  /* width: 740px;
  padding: 20px 30px 30px 30px;
  background-color: #fff;
  box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2);
  border-radius: 5px; */
  width: 100%;
}

.wrapper-price .price {
  float: left;
}

.wrapper-price .price .current {
  font-size: 30px;
  color: #000;
  font-weight: 700;
  margin-bottom: 0.3em;
}

.wrapper-price .price .old {
  font-size: 1.4rem;
  color: #b4b4b4;
  font-weight: 700;
  margin-top: -5px;
  display: block;
}

.wrapper-price .buttons {
  float: right;
  margin-top: 7px;
}

.wrapper-details .btn-plain {
  display: inline-block;
  background-color: #ecedef;
  color: #2e2e2e;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  width: 210px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  float: right;
}

.wrapper-details .buttons .btn-primary {
  width: 210px;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  margin-left: 10px;
  text-align: center;
}

.wrapper-price .buttons .btn-secondary {
  width: 210px;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  margin-left: 10px;
  text-align: left;
}

.wrapper-price .buttons .btn-secondary i {
  float: right;
  font-size: 18px;
  margin-top: 14px;
}

.product-breadcrumb {
  float: left;
  padding: 20px 30px;
  background-color: #fff;
  box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  margin-bottom: 20px;
  display: none;
}

.product-breadcrumb .here {
  font-size: 18px;
  font-weight: 700;
  color: #62c314;
}

.product-breadcrumb i {
  display: inline-block;
  margin: 0 5px;
}

.stock-info {
  margin-top: 20px;
  border: 1px solid #dc3545;
  background: #fff;
  padding: 15px 30px;
  /* box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2);
  border-radius: 5px; */
  font-size: 12px;
}

.product-sku {
  margin-top: 10px;
  margin-bottom: 20px;
  color: #8b8989;
}

.wrapper-details input[type="number"] {
  padding: 10px 5px;
  background-color: #e6e6e6;
  text-align: center;
 /*  border-radius: 5px; */
  border: 0;
  font-weight: 700;
}

.link-3d {
  display: none;
}

/* Cart */

.subpage-cart h1 {
  margin-bottom: 20px;
  border-left: 8px solid #62c314;
  text-transform: uppercase;
  padding: 5px 0 5px 10px;
  font-size: 36px;
  font-weight: 900;
  margin-top: 40px;
}

.cart-contents {
  float: left;
  width: 890px;
}

.cart-item {
  background-color: #e6e6e6;
  /* border-radius: 5px; */
  margin-bottom: 20px;
  /* box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2); */
}

.cart-empty {
  padding: 20px;
  margin-bottom: 100px;
}

.cart-image {
  float: left;
  width: 270px;
  line-height: 270px;
  background-color: #e6e6e6;
  vertical-align: middle;
  text-align: center;
  /* border-top-left-radius: 5px;
  border-bottom-left-radius: 5px; */
}

.cart-image img {
  width: 270px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.cart-details {
  float: left;
  width: 620px;
  padding: 30px 40px;
  height: 270px;
  font-size: 18px;
}

.cart-details h2 {
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: 900;
  color: #2e2e2e;
  line-height: 1.2;

}

.cart-product-name {
  width: 290px;
  height: 210px;
  padding-right: 30px;
  float: left;
  position: relative;

}

.cart-product-name a {
  color: #2e2e2e;
}

.cart-product-name .product-datas {
  font-size: 14px;
}

.cart-product-name .product-page-link,
.cart-product-price a {
  position: absolute;
  bottom: 0;
  text-decoration: underline;
  color: #2e2e2e;
}

.cart-product-price {
  float: left;
  position: relative;
  height: 210px;
  width: 250px;
}

.cart-product-price .text-input {
  width: 48px;
  background-color: #e6e6e6;
  /* border-radius: 5px; */
  height: 40px;
  border: 0;
  padding: 0px 5px;
}

.cart-product-price .current-price {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  padding-left: 20px;
  /* border-left: 8px solid #62c314; */
  margin-top: 40px;
}

.cart-coupon input {
    width: 100px;
  background-color: #e6e6e6;
  /* border-radius: 5px; */
  height: 40px;
  border: 0;
  padding: 0px 5px;
}

.cart-summarize {
  margin-left: 40px;
  float: left;
  width: 270px;
  padding: 15px 20px 20px 20px;
  background-color: #e6e6e6;
  text-align: center;
 /*  border-radius: 5px;
  box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2); */
}

.cart-sum-text {
    font-weight: bold;
    font-size: 1.4em;
    text-align: center;
}
.cart-summarize h3 {
  color: #000;
  margin: 0 0 10px 0;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.cart-summarize .sum-price {
  color: #2e2e2e;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cart-summarize .btn-secondary {
  height: 40px;
  line-height: 40px;
  width: 100%;
  margin-bottom: 10px;
}

.cart-summarize .btn-primary {
  height: 40px;
  line-height: 40px;
  width: 100%;
}

.cart-coupon {
    margin-top: 20px;
    margin-left: 40px;
    float: left;
    width: 270px;
    padding: 15px 20px 20px 20px;
    background-color: #e6e6e6;
    text-align: center;
   /*  border-radius: 5px;
    box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2); */
  }

  .cart-coupon h3 {
    color: #000;
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .cart-coupon h5 {
    margin: 20px 0 10px 0;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .cart-coupon .sum-price {
    color: #2e2e2e;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
  }


  .cart-coupon .btn-secondary {
    height: 40px;
    line-height: 40px;
    width: 100%;
    margin-bottom: 10px;
  }

  .cart-coupon .btn-primary {
    height: 40px;
    line-height: 40px;
    width: 100%;
  }

  .cart-coupon .input-coupon {
      width: 80%;
      margin-bottom: 20px;
      text-align: center;
  }

/* Login */

.subpage-login .additional-link {
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 200px;
  float: right;
  margin-left: 10px;
  text-decoration: none;
  color: #fff;
}

.subpage-login h1 {
  margin-bottom: 40px;
  border-left: 8px solid #62c314;
  text-transform: uppercase;
  padding: 5px 0 5px 10px;
  font-size: 36px;
  font-weight: 900;
  margin-top: 40px;
}

/* Content block */

.content-block-wrapper {
  float: left;
  width: 890px;
}

.content-block-wizard-wrapper {
  float: left;
  width: 100%;
}

.content-block-wizard {
  background-color: #fff;
  padding: 40px;
  width: 100%;
  float: left;
  border-radius: 5px;
  margin-bottom: 40px;
  box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2);
}

.content-block {
  background-color: #fff;
  padding: 40px;
  width: 890px;
  float: left;
  /* border-radius: 5px; */
  margin-bottom: 40px;
  /* box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2); */
}

.content-block-summary {
    background-color: #fff;
    padding: 40px;
    width: 100%;
    float: left;
    /* border-radius: 5px; */
    margin-bottom: 40px;
   /*  box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2); */
  }

.order-success {
  background-color: #fff;
  padding: 40px;
  width: 100%;
  /* border-radius: 5px; */
  margin-bottom: 40px;
  /* box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2); */
}


.content-block .title {
  padding-bottom: 5px;
  border-bottom: 2px solid #dadad9;
  margin-bottom: 20px;
}

.content-block .title h2 {
  display: inline-block;
  margin: 0 15px 0 0;
  text-transform: uppercase;
  font-weight: 900;
}

.content-block .title small {
  font-size: 14px;
  color: #737373;
  font-weight: 700;
}

.content-block a {
  color: #62c314;
  text-decoration: underline;
}

.content-block textarea {
  width: 300px;
  background-color: #e3e3e3;
  /* border-radius: 5px; */
  height: 120px;
  border: 0;
  padding: 10px;
}

.content-block .label {
  font-weight: 700;
  font-size: 14px;
  display: block;
  padding-bottom: 5px;
}

.content-block .text-input {
  width: 300px;
  background-color: #e3e3e3;
  /* border-radius: 5px; */
  height: 40px;
  border: 0;
  padding: 0 10px;
}

.tooltip-info {
  font-size: 24px;
  vertical-align: middle;
  display: inline-block;
  margin-left: 10px;
  color: #62c314;
}

.content-block-right {
  width: 270px;
  margin-left: 40px;
  background-color: #fff;
 /*  border-radius: 5px; */
  float: left;
  padding: 20px;
 /*  box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2); */
}

.content-block-right h3 {
  margin: 0 0 10px 0;
  padding-bottom: 5px;
  text-align: center;
  color: #000;
  font-size: 22px;
  text-transform: uppercase;
}

.content-block-right hr {
  margin: 10px 0;
}

.content-block-right .sum {
  margin: 20px 0;
  text-align: center;
  font-size: 24px;
  color: #2e2e2e;
  text-transform: uppercase;
  font-weight: 700;
}

.content-block-right .replacement {
  margin: 20px 0;
  text-align: center;
  color: #2e2e2e;
}

.content-block-right .btn-secondary {
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}

.content-block-right .btn-primary {
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 100%;
}

.cart-preview-item {
  color: #2e2e2e;
  text-align: left;
  margin-bottom: 10px;
}

.cart-preview-item .prop {
  display: block;
  padding-left: 10px;
  margin-top: 5px;
}

.i-box {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.i-box p {
    font-weight: bold;
    /* padding-top: 5px; */
    padding-left: 15px;
}

/* Size Chart */
.size-form {
    display: flex;
    flex-wrap: wrap;
}

.content-size-wrapper {
    float: left;
    width: 100%;
  }

  .content-size {
    background-color: #fff;
    padding: 40px;
    width: 100%;
    /* float: left; */
    border-radius: 5px;
    margin-bottom: 0px;
    /* box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2); */
  }

  .content-size .title {
    padding-bottom: 5px;
    border-bottom: 2px solid #dadad9;
    margin-bottom: 20px;
  }

  .content-size .title h2 {
    display: inline-block;
    margin: 0 15px 0 0;
    text-transform: uppercase;
    font-weight: 900;
  }

  .content-size .title small {
    font-size: 14px;
    color: #737373;
    font-weight: 700;
  }

  .content-size a {
    color: #62c314;
    text-decoration: underline;
  }

  .content-size textarea {
    width: 300px;
    background-color: #e6e6e6;
    /* border-radius: 5px; */
    height: 120px;
    border: 0;
    padding: 10px;
  }

  .content-size .label {
    font-weight: 700;
    font-size: 14px;
    display: block;
    padding-bottom: 5px;
  }

  .content-size .text-input {
    width: 300px;
    background-color: #e3e3e3;
    /* border-radius: 5px; */
    height: 40px;
    border: 0;
    padding: 0 10px;
  }

  .tooltip-info {
    font-size: 24px;
    vertical-align: middle;
    display: inline-block;
    margin-left: 10px;
    color: #62c314;
  }

  .content-size-right {
    width: 270px;
    margin-left: 40px;
    background-color: #fff;
    border-radius: 5px;
    float: left;
    padding: 20px;
    box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2);
  }

  .content-size-right h3 {
    margin: 0 0 10px 0;
    padding-bottom: 5px;
    text-align: center;
    color: #62c314;
    font-size: 22px;
    text-transform: uppercase;
  }

  .content-size-right hr {
    margin: 10px 0;
  }

  .content-size-right .sum {
    margin: 20px 0;
    text-align: center;
    font-size: 24px;
    color: #2e2e2e;
    text-transform: uppercase;
    font-weight: 700;
  }

  .content-size-right .replacement {
    margin: 20px 0;
    text-align: center;
    color: #2e2e2e;
  }

  .content-size-right .btn-secondary {
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .content-size-right .btn-primary {
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 100%;
  }

/* Shipping */

#results {
    display: none;
}

.subpage-shipping .toggle-switch input[type=checkbox]{
	height: 0;
	width: 0;
	visibility: hidden;
}

.subpage-shipping .toggle-switch label {
	cursor: pointer;
	text-indent: -9999px;
	width: 50px;
	height: 25px;
	background: grey;
	display: block;
	border-radius: 100px;
	position: relative;
}

.subpage-shipping .toggle-switch label:after {
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 15px;
	height: 15px;
	background: #fff;
	border-radius: 90px;
	transition: 0.3s;
}

.subpage-shipping .toggle-switch input:checked + label {
	background: #65b32e;
}

.subpage-shipping .toggle-switch input:checked + label:after {
	left: calc(100% - 2px);
	transform: translateX(-100%);
}

.subpage-shipping .toggle-switch label:active:after {
	width: 40px;
}

.subpage-shipping h1 {
  margin-bottom: 20px;
  border-left: 8px solid #62c314;
  text-transform: uppercase;
  padding: 5px 0 5px 10px;
  font-size: 36px;
  font-weight: 900;
  margin-top: 40px;
}

.comment {
    position: relative;
}

#comment_field {
    width: 100%;
}

.grid-wrapper {
	display: grid;
	grid-gap: 20px;
	place-items: center;
	place-content: center;
}

.grid-col-2{
	grid-template-columns: repeat(3, auto);
	grid-template-rows: repeat(1, auto);
    display: flex;
    flex-wrap: wrap;
}

.grid-col-3 {
  grid-template-columns: repeat(4, auto);
	grid-template-rows: repeat(1, auto);
    display: flex;
    flex-wrap: wrap;
}

.selected-content-size{
	text-align: center;
	border-radius: 3px;
  box-shadow: 0 2px 4px 0 rgba(146, 146, 146, 0);
  border: solid 2px #a3a3a3;
	background: #fff;
	width: 150px;
	height: 150px;
	padding: 15px;
	display: grid;
	grid-gap: 5px;
	place-content: center;
	transition: .3s ease-in-out all;
    margin: auto;
}

.selected-content-size:hover {
    border: solid 2px #65b32e;
}

.selected-content-size img {
    width: 100px;
		margin: 0 auto;
}
/* ******************* Selection Radio Item */

.selected-content{
	text-align: center;
	border-radius: 3px;
  box-shadow: 0 2px 4px 0 rgba(146, 146, 146, 0);
  border: solid 2px #686d73;
	background: #fff;
	width: 230px;
	height: 300px;
	padding: 15px;
	display: grid;
	grid-gap: 5px;
	place-content: center;
	transition: .3s ease-in-out all;
}

.selected-content-bl{
	text-align: center;
	border-radius: 3px;
    box-shadow: 0 2px 4px 0 rgba(146, 146, 146, 0);
    border: solid 2px #686d73;
	background: #fff;
	width: 130px;
	height: 200px;
	padding: 15px;
	display: grid;
	grid-gap: 5px;
	place-content: center;
	transition: .3s ease-in-out all;
}

.ais-Hits {
    margin: 10px;
}

.ais-Hits-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

/* .ais-Pagination {
    margin: 20px;
} */

.ais-Hits--empty {
    margin: 20px;
}

.selected-content img {
    width: 150px;
		margin: 0 auto;
}
.selected-content h4 {
	font-size: 16px;
  letter-spacing: -0.24px;
  text-align: center;
  color: #525252;
  margin-top: -10px;
}
.selected-content h5 {
    margin-top: -10px;
	font-size: 14px;
  line-height: 1.4;
  text-align: center;
  color: #686d73;
}

.selected-label{
	position: relative;
}
.selected-label input{
	display: none;
}
.selected-label .icon{
	width: 20px;
  height: 20px;
  border: solid 2px #e3e3e3;
	border-radius: 50%;
	position: absolute;
	top: 15px;
	left: 15px;
	transition: .3s ease-in-out all;
	transform: scale(1);
	z-index: 1;
}
.selected-label .icon:before{
	content: "\2713";
	position: absolute;
	width: 100%;
	height: 100%;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 12px;
	color: #000;
	text-align: center;
	opacity: 0;
	transition: .2s ease-in-out all;
	transform: scale(2);
}
.selected-label input:checked + .icon{
	background: #65b32e;
	border-color: #65b32e;
	transform: scale(1.2);
}
.selected-label input:checked + .icon:before{
	color: #fff;
	opacity: 1;
	transform: scale(.8);
}
.selected-label input:checked ~ .selected-content{
  box-shadow: 0 2px 4px 0 rgba(219, 215, 215, 0.5);
  border: solid 2px #65b32e;
}

/* Delivery */

.subpage-delivery h1 {
  margin-bottom: 20px;
  border-left: 8px solid #62c314;
  text-transform: uppercase;
  padding: 5px 0 5px 10px;
  font-size: 36px;
  font-weight: 900;
  margin-top: 40px;
}

.grp-radio .select {
  margin-left: 38px;
}

.grp-checkbox {
  margin-top: 20px;
}

/* Order */

.content-block table {
  margin-bottom: 20px;
}

.content-block table td:first-child {
  font-weight: 700;
  width: 210px;
}

.content-block-text {
  margin-bottom: 20px;
}

/* Thanks */

.subpage-thanks {
  width: 100%;
  background-color: #fff;
  padding: 40px;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 40px;
  box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2);
}

.subpage-thanks .advantages {
  background-color: #fff;
  padding: 20px 0;
}

.subpage-thanks .advantages .item i {
  background-color: #fff;
}

.subpage-thanks h2 {
  text-align: center;
  font-size: 36px;
  color: #62c314;
  margin: 0;
  text-transform: uppercase;
}

.subpage-thanks h3 {
  color: #2e2e2e;
  margin: 0 0 20px 0;
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
}

.subpage-thanks .thanks-text {
  width: 70%;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1.3em;
  text-align: center;
  border: 3px solid #62c314;
  padding: 20px;
}

.credit-card {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.credit-card .btn-secondary {
    padding: 10px;
    font-size: 20px;
}

.handshake {
  text-align: center;
  color: #62c314;
  font-size: 60px;
}

.registration h2 {
  text-align: center;
  font-size: 36px;
  color: #62c314;
  margin: 0;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.billing-alert {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  width: 100%;
  padding: 20px;
  /* border-radius: 5px; */
  margin-bottom: 20px;
}

.summary-alert {
    color: #0f6848;
    background-color: #d2f4e8;
    border:1px solid #bff0de;
    width: 100%;
    padding: 20px;
    /* border-radius: 5px; */
    margin-bottom: 20px;
  }

.feedback-alert {
    color: #0f6848;
    background-color: #d2f4e8;
    border:1px solid #bff0de;
    width: 290px;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

  .summary-button {
      text-align: center;
  }

  .summary-button a {
      color: #fff;
      font-size: 1.2em;
      text-decoration: none;
      padding: 10px;

  }

/* CMS */

.subpage-cms h1 {
  margin-bottom: 20px;
  border-left: 8px solid #62c314;
  padding: 5px 0 5px 10px;
  font-size: 25px;
  font-weight: 900;
  margin-top: 0px;
  text-transform: uppercase;
}

.cms-content {
  background-color: #fff;
  padding: 40px;
  width: 100%;
  float: left;
  /* border-radius: 5px; */
  margin-bottom: 40px;
 /*  box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2); */
  overflow-x: auto;
}

@media screen and (max-width: 420px) {
    .cms-content {
        padding: 10px;
    }
}

.contact-info {
    background-color: #dadad9;
}

.cms-content img {
  max-width: 100%;
  height: auto;
}

/* Tender form */

.tender-form {
  background-color: #fff;
  padding: 40px;
  width: 100%;
  float: left;
  border-radius: 5px;
  margin-bottom: 40px;
  box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2);
}

.tender-form .col-name,
.tender-form .col-quantity,
.tender-form .col-quantity {
  margin-bottom: 20px;
}

.tender-form h6 {
  font-size: 21px;
  margin: 0 15px 0 0;
  text-transform: uppercase;
  font-weight: 900;
  padding-bottom: 5px;
  border-bottom: 2px solid #dadad9;
  margin-bottom: 20px;
}

.tender-form label {
  font-weight: 700;
  font-size: 14px;
  display: block;
  padding-bottom: 5px;
}

.tender-form input[type="text"],
.tender-form input[type="email"],
.tender-form input[type="number"] {
  width: 300px;
  background-color: #e6e6e6;
  /* border-radius: 5px; */
  height: 40px;
  border: 0;
  padding: 0 10px;
}

.tender-form textarea {
  width: 300px;
  background-color: #dadad9;
  border-radius: 5px;
  height: 120px;
  border: 0;
  padding: 10px;
}

.tender-form .btn-primary {
  width: 300px;
  height: 40px;
  line-height: 40px;
}

.tender-form .btn-secondary {
  width: 300px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 10px;
}

.usermenu {
  height: 40px;
  width: 100%;
  background-color: rgba(0,0,0,1);
  /* background-color: #fff; */
  padding: 10px 10px 10px 0;
  text-align: right;
  border-top: 1px solid #fff;
}

@media (max-width: 480px) {
  .usermenu {
    height: 35px;
  }

}

.usermenu a {
  color: #fff;
 /*  color: #000; */
  display: inline-block;
}

.usermenu a:not(:last-child) {
  border-right: 1px solid #696969;
  padding-right: 10px;
  /* margin-right: 10px; */
}

#slider .slick-next {
  right: 25px;
}

#slider .slick-prev {
  left: 25px;
  z-index: 110;
}

.brands-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.brands-list a {
  color: #000;
  text-decoration: underline;
}

.wysiwyg img {
  max-width: 100%;
  height: auto;
}

#favourite_team_field option[value=""][disabled] {
  display: none;
}

#favourite_team_field option {
  color: #000;
}

.subpage-content {
  position: relative;
}

.tender-req {
  width: 180px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.tender-req-wrapper {
  position: fixed;
  top: 200px;
  left: 20px;
  transition: all 0.5s ease 0s;
  z-index: 110;

}

.ref-category-wrapper {
  text-align: center;
}

.ref-category {
  display: inline-block;
  width: 220px;
  background-color: #dadad9;
  padding: 15px;
  margin: 10px;
  border-radius: 5px;
}

.ref-category .title {
  text-align: left;
  min-height: 50px;
  text-align: center;
}

.ref-category .title a {
  color: #000;
  font-size: 18px;
  font-weight: 700;
}

.weekly-featured {
  margin-top: -28px;
  padding: 0px 0px;
  background-color: #fff;
  /* background-color: #e2e0e0; */
  -webkit-box-shadow: 2px 0px 9px -4px rgba(0,0,0,0.75);
  -moz-box-shadow: 2px 0px 9px -4px rgba(0,0,0,0.75);
  box-shadow: 2px 0px 9px -4px rgba(0,0,0,0.75);
}

.weekly-featured .item {
  text-align: center;
}

.weekly-featured .item img {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
}

.weekly-featured .slick-prev:before {
  color: #000;
}

.weekly-featured .slick-next:before {
  color: #000;
}

.weekly-featured .slick-prev {
  left: 25px;
}

.weekly-featured .slick-next {
  right: 25px;
}

.highlight {
    padding-top: 40px;
    font-size: 2.5em;
    font-weight: bold;
    text-transform: uppercase;

}

.mainpage .category-preview {
  /*background-color: #eee;*/
  width: 350px;
  height: 220px;
  float: none;
  margin-left: 20px;
  margin-right: 20px;
}

.mainpage .maxwidth {
  width: 100%;
  text-align: center;
}

.child-size {
  display: none;
}

.child-size-btn {
  width: 270px;
  margin-bottom: 10px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.adult-size-btn {
  width: 270px;
  margin-bottom: 10px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: none;
}

.warrantee {
  color: #ee7732;
}

.white-popup {
  display: flex;
  align-items: center;
  justify-content: center;
}

.white-popup .inner {
  position: relative;
  background: #FFF;
  padding: 20px;
}

.product-stop .product:nth-child(4n) {
  margin-right: 0;
}

.product-stop .product:nth-child(3n) {
  margin-right: 0;
}

.showed-price {
  margin-top: 14px;
  float: left;
}

.product-stop .product {
  float: left;
}

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

span.feat {
  color: #ee7732;
  font-weight: 700;
}

.fancy-list {
  text-align: center;
}

.fancy-image {
  display: inline-block;
  min-width: 220px;
  min-height: 220px;
  text-align: center;
  background-color: #ecedef;
  vertical-align: top;
  margin: 0 10px 20px 10px;
  padding-top: 10px;
}

.fancy-image .caption {
  margin-top: 10px;
}

.coupon-add .btn-primary {
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 200px;
  margin-left: 5px;
}

.coupon-add .text-input {
  width: 200px;
}

.used_coupon {
  margin-top: 10px;
}

.coupon_info {
  margin-top: 10px;
}

.feedback-coupon {
  margin-left: 40px;
  padding: 15px 20px 20px 20px;
  float: right;
  width: 270px;
  margin-top: 20px;
  box-shadow: 1px 3px 4px -2px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  text-align: center;
  color: #fff;
}

.feedback-coupon .bigger {
  font-weight: 700;
  font-size: 18px;
}

.coupon-fail {
  background-color: #ff0000;
}

.coupon-success {
  background-color: #008000;
}

.grecaptcha-badge {
  visibility: hidden;
}

span.req {
  color: #ff0000;
  font-size: 16px;
}

.tooltip {
  position: relative;
  border-radius: 100%;
  font-size: 20px;
  cursor: help;
}

.tooltip::before, .tooltip::after {
  position: absolute;
  left: 60%;
  opacity: 0;
  transition: all ease 0.3s;
}

.tooltip::before {
  content: "";
  border-width: 10px 8px 0 8px;
  border-style: solid;
  border-color: rgba(0,0,0,0.9) transparent transparent transparent;
  top: -20px;
  margin-left: -8px;
}

.tooltip::after {
  content: attr(data-tooltip);
  background: rgba(0,0,0,0.9);
  top: -20px;
  transform: translateY(-100%);
  font-size: 14px;
  margin-left: -50px;
  width: 100px;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  color: #eee;
}

@media (max-width: 420px) {
  .tooltip::after {
    margin-left: -40px;
  }
}

.tooltip:hover::before, .tooltip:hover::after {
  opacity: 1;
}

.btn-next-ux {
  width: 230px;
  height: 40px;
  line-height: 40px;
  margin-top: 20px;
}

.ref-quick-icons {
  float: right;
}

.ref-quick-icons a {
  font-size: 12px;
  padding: 10px 20px;
}

.mpl-title {
  position: relative;
}

.mpl-title img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.newly {
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  padding: 10px 0px 10px 0px;
  animation: myanimation 10s infinite;
}

@keyframes myanimation {
  0%{background-color: #fff; color: #000;}
  20%{background-color:#727272; color: #f4f4f4;}
  30%{color: #fff;}
  40%{background-color:#515151; color: #fff;}
  60%{background-color:#000; color: #fff;}
  80%{background-color: #515151; color: #fff;}
  85%{color: #000;}
  100%{background-color: #fff; color: #000;}
}

.newly a {
  animation: linkanim 10s infinite;
}
@keyframes linkanim {
  0%{color: #000;}
  20%{color: #f4f4f4;}
  30%{color: #fff;}
  40%{color: #fff;}
  60%{color: #fff;}
  80%{color: #fff;}
  85%{color: #000;}
  100%{color: #000;}
}

.cart-related .product {
  float: left;
}
#countholder{
 font-family: sans-serif;
 color: #fff;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 font-weight: 100;
 text-align: center;
 font-size: 3em;
 padding:5px;
 border-radius: 6px;
 margin-bottom:10px;
 line-height: 1.4;
}


#countholder > div{
 padding: 1px 10px;
 margin-right: 5px;
 margin-bottom: 5px;
 border-radius: 3px;
 background: #65b32e;
 display: inline-block;
 width: 80px;
}

#countholder div > span{
 border-radius: 3px;
 background: #65b32e;
 display: inline-block;
}

#countholder .smalltext{
 padding-top: 3px;
 font-size: 0.3em;
}

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

.badge-glob {
 width: 150px;
 height: 25px;
 font-size: 13px;
 line-height: 18px;
 text-align: center;
 color: #fff;
}
.green-g {
 background-color: #65b32e;
}
.orange-g {
 background-color: #f48a00;
}
.blue-g {
 background-color: #0381b6;
}
