@import "https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap";
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --radio-border-color: #666;
  --radio-checked-color: #001F9C;
  --radio-disabled-bg-color: #d9d9d9;
  --checkbox-border-color: #666;
  --checkbox-checked-color: #001F9C;
  --checkbox-disabled-bg-color: #d9d9d9;
}
body {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  color: #1d1d1d;
  font-size: 16px;
  line-height: 20px;
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #001F9C;
}
.fa {
  font-size: 16px;
}
h1 {
  font-size: 40px;
  margin: 0 0 20px;
}
h2 {
  font-size: 32px;
  margin: 20px 0;
}
h3 {
  font-size: 26px;
  margin: 20px 0;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 14px;
}
p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 15px;
}
ul li {
  line-height: 1.8;
}
a {
  color: #001F9C;
}
a:focus,
a:hover {
  color: #000;
  text-decoration: none;
}
a,
button {
  transition: all ease-in 0.2s;
}
img {
  border-radius: 10px;
}
.table {
  font-size: 16px;
}
.table thead tr td {
  width: 1%;
}
.table thead tr td:nth-child(2) {
  width: auto;
}
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 20px;
  white-space: nowrap;
}
.table > thead > tr > td,
.table > thead:first-child > tr > td,
.table > thead:first-child > tr:first-child > td {
  border-top: solid 1px #ddd;
  border-bottom: none;
  border-right: none;
}
.table > thead > tr > td:last-child,
.table > thead:first-child > tr > td:last-child,
.table > thead:first-child > tr:first-child > td:last-child,
.table > tbody > tr > td:last-child {
  border-right: solid 1px #ddd;
}
.table > thead > tr > td:first-child,
.table > thead > tr:first-child > td:first-child {
  border-top-left-radius: 10px;
}
.table > thead > tr > td:last-child,
.table > thead > tr:first-child > td:last-child {
  border-top-right-radius: 10px;
}
.table > thead > tr > td {
  background-color: #f5f5f5;
}
.table > tbody > tr > td {
  border-bottom: none;
  border-right: none;
}
.table > tbody > tr:last-child > td {
  border-bottom: solid 1px #ddd;
}
.table > tbody > tr:last-child > td:first-child {
  border-bottom-left-radius: 10px;
}
.table > tbody > tr:last-child > td:last-child {
  border-bottom-right-radius: 10px;
}
.table > tbody > tr > td:first-child a {
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}
.table > tbody > tr > td:first-child a img {
  transform: scale(1);
  transition: transform 0.3s ease-in-out, opacity 0.3s linear;
  border: none;
}
.table > tbody > tr > td:first-child a img:hover {
  transform: scale(1.1);
}
.table tfoot tr td {
  border-top: none;
  border-right: none;
  vertical-align: middle;
}
.table tfoot tr td:last-child {
  border-right: 1px solid #ddd;
}
.table tfoot tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.table tfoot tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
legend {
  font-size: 18px;
  padding: 7px 0;
}
label {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}
.checkbox-inline,
.radio-inline {
  padding-left: 30px;
}
select.form-control,
textarea.form-control,
input[type="text"].form-control,
input[type="password"].form-control,
input[type="datetime"].form-control,
input[type="datetime-local"].form-control,
input[type="date"].form-control,
input[type="month"].form-control,
input[type="time"].form-control,
input[type="week"].form-control,
input[type="number"].form-control,
input[type="email"].form-control,
input[type="url"].form-control,
input[type="search"].form-control,
input[type="tel"].form-control,
input[type="color"].form-control,
.input-group-sm > .form-control {
  font-size: 16px;
  border-radius: 5px !important;
  padding: 12px 18px;
  height: 50px;
  border-color: #ddd;
  box-shadow: none;
  transition: all ease-in 0.2s;
}
select.form-control:hover,
textarea.form-control:hover,
input[type="text"].form-control:hover,
input[type="password"].form-control:hover,
input[type="datetime"].form-control:hover,
input[type="datetime-local"].form-control:hover,
input[type="date"].form-control:hover,
input[type="month"].form-control:hover,
input[type="time"].form-control:hover,
input[type="week"].form-control:hover,
input[type="number"].form-control:hover,
input[type="email"].form-control:hover,
input[type="url"].form-control:hover,
input[type="search"].form-control:hover,
input[type="tel"].form-control:hover,
input[type="color"].form-control:hover,
.input-group-sm > .form-control:hover,
select.form-control:focus,
textarea.form-control:focus,
input[type="text"].form-control:focus,
input[type="password"].form-control:focus,
input[type="datetime"].form-control:focus,
input[type="datetime-local"].form-control:focus,
input[type="date"].form-control:focus,
input[type="month"].form-control:focus,
input[type="time"].form-control:focus,
input[type="week"].form-control:focus,
input[type="number"].form-control:focus,
input[type="email"].form-control:focus,
input[type="url"].form-control:focus,
input[type="search"].form-control:focus,
input[type="tel"].form-control:focus,
input[type="color"].form-control:focus,
.input-group-sm > .form-control:focus {
  border-color: #000;
  box-shadow: none;
}
textarea.form-control {
  min-height: 150px;
}
select.form-control {
  appearance: none;
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-image: var(--bs-form-select-bg-img),
    var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 20px 14px;
  padding-right: 45px;
}
.input-group input,
.input-group select,
.input-group .dropdown-menu,
.input-group .popover {
  font-size: 12px;
}
.input-group .input-group-addon {
  background: none;
  border: none;
  height: 30px;
  font-size: 16px;
  color: #001F9C;
}
span.hidden-xs,
span.hidden-sm,
span.hidden-md,
span.hidden-lg {
  display: inline;
}
.nav-tabs {
  margin-bottom: 15px;
}
div.required .control-label:before {
  content: "* ";
  color: #f5145f;
  font-weight: 700;
}
.has-error .checkbox,
.has-error .checkbox-inline,
.has-error .control-label,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline,
.has-error.checkbox label,
.has-error.checkbox-inline label,
.has-error.radio label,
.has-error.radio-inline label {
  color: #f5145f;
}
.checkbox label,
.radio label {
  padding-left: 28px;
}
.radio label,
.checkbox label {
  position: relative;
}
input[type="radio"] {
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin: 6px;
  padding: 0;
  border: 2px solid var(--radio-border-color);
  border-radius: 50%;
  appearance: none;
  background-color: transparent;
  outline: none;
  transition: outline 0.1s;
  top: -6px;
  left: 20px;
}
input[type="radio"]:not(:disabled):checked {
  border-color: var(--radio-checked-color);
  background-color: var(--radio-checked-color);
  background-clip: content-box;
  padding: 2px;
  background-image: radial-gradient(
    circle,
    var(--radio-checked-color) 0%,
    var(--radio-checked-color) 50%,
    transparent 60%,
    transparent 100%
  );
}
input[type="radio"]:disabled {
  background-color: var(--radio-disabled-bg-color);
}
input[type="radio"]:focus-visible {
  background-color: var(--radio-hover-color);
  outline: 6px solid var(--radio-hover-color);
  transform: scale(1.05);
}
input[type="radio"]:disabled:checked {
  background-image: radial-gradient(
    circle,
    var(--radio-border-color) 0%,
    var(--radio-border-color) 50%,
    transparent 50%,
    transparent 100%
  );
}
input[type="checkbox"] {
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin: 6px;
  padding: 0;
  border: 2px solid var(--checkbox-border-color);
  border-radius: 30%;
  appearance: none;
  background-color: transparent;
  outline: none;
  transition: outline 0.1s;
  top: -6px;
  left: 20px;
}
input[type="checkbox"]:checked {
  background-size: cover;
  padding: 2px;
}
input[type="checkbox"]:not(:disabled):checked {
  border-color: var(--checkbox-checked-color);
  background-color: #001F9C;
  background-image: url('data:image/svg+xml;utf8,<svg width="70" height="53" viewBox="0 0 70 53" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24.5813 52.5904C22.5193 52.5904 20.5518 51.7684 19.0963 50.3129L2.26407 33.4942C-0.741207 30.4485 -0.714254 25.543 2.33145 22.5377C5.3502 19.5594 10.2018 19.5594 13.2205 22.5377L24.5678 33.885L55.766 2.68673C58.7713 -0.358969 63.6768 -0.385921 66.7225 2.61935C69.7682 5.62463 69.7951 10.5301 66.7898 13.5758C66.7629 13.6028 66.7494 13.6162 66.7225 13.6432L30.0527 50.3129C28.5973 51.7684 26.6297 52.5904 24.5813 52.5904Z" fill="white"/></svg>');
  background-size: 13px 9px;
  background-repeat: no-repeat;
  background-position: 2px 4px;
}
input[type="checkbox"]:disabled {
  background-color: var(--checkbox-disabled-bg-color);
}
input[type="checkbox"]:disabled:checked {
  background-image: url('data:image/svg+xml;utf8,<svg width="70" height="53" viewBox="0 0 70 53" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24.5813 52.5904C22.5193 52.5904 20.5518 51.7684 19.0963 50.3129L2.26407 33.4942C-0.741207 30.4485 -0.714254 25.543 2.33145 22.5377C5.3502 19.5594 10.2018 19.5594 13.2205 22.5377L24.5678 33.885L55.766 2.68673C58.7713 -0.358969 63.6768 -0.385921 66.7225 2.61935C69.7682 5.62463 69.7951 10.5301 66.7898 13.5758C66.7629 13.6028 66.7494 13.6162 66.7225 13.6432L30.0527 50.3129C28.5973 51.7684 26.6297 52.5904 24.5813 52.5904Z" fill="white"/></svg>');
}
input[type="checkbox"]:focus-visible {
  outline: 6px solid var(--checkbox-hover-color);
  transform: scale(1.05);
}
.form-horizontal .checkbox,
.form-horizontal .checkbox-inline,
.form-horizontal .radio,
.form-horizontal .radio-inline {
  margin-bottom: 12px;
}
.form-horizontal .radio-inline {
  padding-top: 7px;
  padding-left: 27px;
}
.form-horizontal .radio-inline input[type="radio"] {
  top: 0;
}
.buttons {
  margin: 10px 0;
}
.btn {
  padding: 11px 20px;
  font-size: 18px;
  border-radius: 30px;
  transition: all ease-in 0.2s;
}
.btn.active,
.btn:active {
  box-shadow: none;
}
.btn-xs {
  font-size: 12px;
}
.btn-sm {
  font-size: 16px;
}
.btn-lg {
  padding: 14px 16px;
  font-size: 21px;
}
.btn-group > .btn,
.btn-group > .dropdown-menu,
.btn-group > .popover {
  font-size: 12px;
}
.btn-group > .btn-xs {
  font-size: 9px;
}
.btn-group > .btn-sm {
  font-size: 10.2px;
}
.btn-group > .btn-lg {
  font-size: 15px;
}
.btn-default {
  color: #fff;
  background-color: #001F9C;
  border: solid 1px #001F9C;
  border-radius: 5px;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.btn-primary {
  color: #fff;
  background-color: #001F9C;
  border-color: #001F9C;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  background-color: #000;
  border-color: #000;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #001F9C;
  border-color: #001F9C;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #000;
  border-color: #001F9C;
}
.btn-warning {
  color: #fff;
  text-shadow: 0 -1px 0 #00000040;
  background-color: #faa732;
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  background-repeat: repeat-x;
  border-color: #f89406 #f89406 #ad6704;
}
.btn-warning:hover,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
  box-shadow: inset 0 1000px 0 #0000001a;
}
.btn-danger {
  color: #fff;
  background-color: #f5145f;
  border-color: #b80440;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger:active:hover,
.btn-danger:active:focus,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
  background-color: #db1255;
}
.btn-success {
  color: #fff;
  text-shadow: 0 -1px 0 #00000040;
  background-color: #5bb75b;
  background-image: linear-gradient(to bottom, #62c462, #51a351);
  background-repeat: repeat-x;
  border-color: #51a351 #51a351 #387038;
}
.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  box-shadow: inset 0 1000px 0 #0000001a;
}
.btn-info {
  color: #fff;
  background-color: #444;
  border-color: #001F9C;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info:active:focus,
.btn-info:active:hover,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  background-color: #001F9C;
  border-color: #000;
  color: #fff;
}
.btn-link {
  border-color: #0000;
  cursor: pointer;
  color: #001F9C;
  border-radius: 0;
  font-size: 16px;
}
.btn-link:hover,
.btn-link:focus {
  color: #298556;
}
.btn-link,
.btn-link:active,
.btn-link[disabled] {
  background-color: #0000;
  background-image: none;
  box-shadow: none;
}
.btn-inverse {
  color: #fff;
  background-color: #001F9C;
  border-color: transparent;
}
.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  background-color: #000;
}
#button-upload222 {
  font-size: 21px;
  border-radius: 30px;
  color: #001F9C;
  background-color: #fff;
  border-color: #001F9C;
}
#button-upload222:hover,
#button-upload222:focus {
  color: #fff;
  background-color: #001F9C;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  margin-left: 10px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
#list-view,
#grid-view {
  background: none;
  color: #999;
  border-color: #ddd;
  padding: 17px 17px 14px;
  height: 50px;
  border-radius: 5px;
}
#grid-view {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
#list-view {
  margin-right: 10px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
#list-view.active,
#grid-view.active {
  border-color: #001F9C;
  color: #001F9C;
}
#compare-total {
  padding: 14px 0 0;
}
.text-danger {
  color: #f5145f;
}
.well {
  border-radius: 10px;
  padding: 30px;
  border: none;
  box-shadow: none;
}
.well h2 {
  margin-top: 10px;
}
.well p strong {
  font-weight: 400;
  font-size: 20px;
}
.well .form-group a {
  margin: 10px 0 5px;
  display: inline-block;
}
#top {
  background-color: #001F9C;
  padding: 4px 0 3px;
  min-height: 40px;
}
#top .pull-left,
#top .pull-right {
  width: 50%;
}
#top-links .list-inline {
  text-align: right;
  margin-bottom: 12px;
}
#top .container {
  padding: 0 20px;
  width: 100%;
}
#top #form-currency .currency-select,
#top #form-language .language-select {
  text-align: left;
  transition: all ease-in 0.2s;
}
#top #form-currency .currency-select:hover,
#top #form-language .language-select:hover {
  color: #001F9C;
  background-color: #efefef;
}
#form-currency {
  padding: 13px 0 0;
}
#form-currency button .fa-caret-down {
  font-size: 12px;
}
#form-currency button {
  padding: 0 10px;
}
#top .btn-link,
#top-links li,
#top-links a {
  color: #001F9C;
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all ease-in 0.2s;
  line-height: 2;
}
#top-links li {
  color: #fff;
  padding: 0 10px;
}
#top-links li a,
#top .btn-link.dropdown-toggle {
  color: #fff;
}
.dropdown-menu {
  padding: 0;
  border: none;
  border-radius: 10px;
}
.dropdown-menu li:first-child a,
.dropdown-menu li:first-child button.btn-link {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.dropdown-menu li:last-child a,
.dropdown-menu li:last-child button.btn-link {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#top-links .dropdown-menu > li {
  padding: 0;
}
#top-links .dropdown-menu > li > a,
#top-links .dropdown-menu > button.btn-link,
#form-currency .dropdown-menu > li > button.btn-link {
  color: #001F9C;
  padding: 12px 20px;
  transition: all ease-in 0.2s;
}
#top .btn-link:hover,
#top-links a:hover {
  color: #cbcbcb;
}
#top-links .dropdown-menu a {
  text-shadow: none;
}
#top-links .dropdown-menu a:hover {
  color: #001F9C;
  background-color: #efefef;
}
#top .btn-link strong {
  font-size: 17.3px;
  line-height: 14px;
}
#top-links {
  padding-top: 11px;
}
#top-links a + a {
  margin-left: 15px;
}
.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
  background-color: transparent;
  border: none;
}
header {
  padding: 20px 0;
}
header .row {
  display: flex;
  align-items: center;
}
header .row .col-sm-4 {
  width: 17%;
}
header .row .col-sm-5 {
  width: 58%;
}
header .row .col-sm-3 {
  width: 25%;
}
header .row .col-sm-3,
header .row .col-sm-4,
header .row .col-sm-5 {
  display: flex;
  align-items: center;
  min-height: 50px;
}
#search {
  width: 100%;
}
#search button {
  position: absolute;
  right: 10px;
  top: -2px;
  z-index: 3;
  background: none;
  border: none;
  height: 50px;
  width: 50px;
  padding: 0;
  color: #001F9C;
}
#search button .fa {
  font-size: 18px;
}
.form-control::placeholder {
  color: #001F9C;
  opacity: 0.4;
}
#search .form-control {
  height: 50px;
  line-height: 20px;
  padding: 0 20px;
  border: #001F9C1a solid 1px;
  border-radius: 30px !important;
  box-shadow: none;
  font-size: 16px;
  transition: all ease-in 0.2s;
}
#search .input-lg:hover,
#search .input-lg:focus {
  border-color: #001F9C;
}
#cart > .btn {
  font-size: 15px;
  font-weight: 300;
  line-height: 18px;
  color: #fff;
  border-radius: 30px;
  height: 50px;
}
#cart.open > .btn {
  color: #9b9b9b;
}
#cart .dropdown-menu {
  background: #fff;
  z-index: 1001;
  border-radius: 10px;
  border: none;
  box-shadow: 0 6px 40px #00000026;
  min-width: 600px;
  overflow-y: auto;
  max-height: 900px;
  scrollbar-width: thin;
  overflow-x: hidden;
  margin: 0;
}
#cart .dropdown-menu .table > tbody > tr > td {
  border: none;
  padding: 10px;
}
.img-thumbnail {
  border-radius: 10px;
}
#cart .table .img-thumbnail {
  width: 80px;
  height: auto;
}
#cart .dropdown-menu .table td {
  font-size: 16px;
  vertical-align: middle;
}
#cart .dropdown-menu .table td a {
  color: #001F9C;
  position: relative;
}
#cart .dropdown-menu .table td:first-child a {
  overflow: hidden;
  display: block;
  border: 1px solid #ddd;
  width: 80px;
  margin: 0 auto;
  border-radius: 10px;
}
#cart .dropdown-menu .table td:first-child a .img-thumbnail {
  border: none;
  transition: transform 0.3s ease-in-out, opacity 0.3s linear;
}
#cart .dropdown-menu .table td:first-child a:hover .img-thumbnail,
#cart .dropdown-menu .table td:first-child a:focus .img-thumbnail,
#cart .dropdown-menu .table td:first-child a:active .img-thumbnail {
  transform: scale(1.1);
}
#cart .dropdown-menu .table td:nth-child(2) a:before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #000;
  left: 0;
  bottom: 0;
  position: absolute;
  transition: all ease-in 0.2s;
}
#cart .dropdown-menu .table td:nth-child(2) a:hover:before {
  width: 100%;
}
#cart .dropdown-menu .table td .btn {
  background: none;
  border: #001F9C solid 1px;
  width: 30px;
  height: 30px;
  padding: 2px 0 0;
}
#cart .dropdown-menu .table td .btn:hover,
#cart .dropdown-menu .table td .btn:focus,
#cart .dropdown-menu .table td .btn:active {
  background-color: #001F9C;
  color: #fff;
}
#cart .dropdown-menu .table td .btn .fa {
  color: #001F9C;
  font-size: 15px;
  text-shadow: none;
}
#cart .dropdown-menu .table td .btn:hover .fa,
#cart .dropdown-menu .table td .btn:focus .fa,
#cart .dropdown-menu .table td .btn:active .fa {
  color: #fff;
}
#cart .dropdown-menu .table td .btn .fa:before {
  content: "\f1f8";
}
#cart .dropdown-menu .table tr td:nth-child(3) {
  text-align: center;
}
#cart .dropdown-menu .table-striped tr td:first-child {
  padding-left: 20px;
}
#cart .dropdown-menu .table-striped tr td:last-child {
  padding-right: 25px;
}
#cart .dropdown-menu .table-bordered {
  margin-bottom: 0;
}
#cart .dropdown-menu .table-bordered td {
  vertical-align: baseline;
}
#cart .dropdown-menu .table-bordered td strong {
  font-weight: 500;
}
#cart .dropdown-menu .table-bordered tr td:last-child {
  font-size: 20px;
  width: 25%;
}
#cart .dropdown-menu .table-bordered tr:last-child td:last-child {
  font-weight: 600;
  font-size: 22px;
}
#cart .dropdown-menu .table-bordered + p a {
  padding: 11px 20px;
  font-size: 18px;
  border-radius: 30px;
  border: #001F9C solid 1px;
  display: inline-block;
}
#cart .dropdown-menu .table-bordered + p a:hover,
#cart .dropdown-menu .table-bordered + p a:focus,
#cart .dropdown-menu .table-bordered + p a:active {
  background-color: #000 !important;
  border-color: #000;
  color: #fff;
}
#cart .dropdown-menu .table-bordered + p a:last-child {
  background-color: #001F9C;
  color: #fff;
}
#cart .dropdown-menu .table-bordered + p a strong {
  font-weight: 400;
}
#cart .dropdown-menu .table-bordered + p a strong i {
  display: none;
}
#cart .dropdown-menu li p {
  margin: 5px 0 25px;
  font-size: 16px;
}
#cart .dropdown-menu li:first-child p {
  margin: 30px 0;
}
#cart .dropdown-menu table {
  margin-bottom: 10px;
}
#cart .dropdown-menu li > div {
  min-width: 427px;
  padding: 0 25px;
}
header + .container,
header > .container {
  width: 100%;
}
#menu {
  min-height: 40px;
  border-top: #efefef solid 1px;
  border-bottom: #efefef solid 1px;
  margin: 0 0 15px;
  padding: 10px 0;
  width: auto;
}
#menu .nav > li > a {
  color: #001F9C;
  font-size: 16px;
  padding: 14px 0 10px;
  margin: 0 10px;
  min-height: 15px;
  background-color: transparent;
  position: relative;
}
#menu .nav > li > a:before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #000;
  left: 0;
  bottom: 7px;
  position: absolute;
  transition: all ease-in 0.2s;
}
#menu .nav > li > a:hover:before {
  width: 100%;
}
#menu .nav > li > a:hover,
#menu .nav > li.open > a {
  color: #000;
}
#menu .dropdown-menu {
  padding: 10px;
  box-shadow: 0 6px 20px #00000026;
  border: none;
  border-radius: 10px;
  min-width: 260px;
}
#menu .dropdown-inner {
  display: table;
}
#menu .dropdown-inner ul {
  display: table-cell;
}
#menu .dropdown-inner li {
  padding: 5px 20px;
  min-width: 200px;
}
#menu .dropdown-inner a {
  line-height: 20px;
  color: #001F9C;
  font-size: 14px;
  position: relative;
}
#menu .dropdown-inner a:before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #000;
  left: 0;
  bottom: -2px;
  position: absolute;
  transition: all ease-in 0.2s;
}
#menu .dropdown-inner li a:hover {
  color: #000;
}
#menu .dropdown-inner li a:hover:before {
  width: 100%;
}
#menu .see-all {
  display: block;
  margin-top: 0.5em;
  padding: 3px 20px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 3px 3px;
  font-size: 14px;
  color: #001F9C;
}
#menu .see-all:hover,
#menu .see-all:focus {
  text-decoration: none;
  color: #298556;
}
#menu #category {
  float: left;
  padding-left: 15px;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  color: #001F9C;
}
#menu .btn-navbar {
  font-size: 15px;
  font-stretch: expanded;
  color: #001F9C;
  padding: 2px 18px;
  float: right;
  border: none;
  margin-top: 4px;
  margin-right: 0;
}
#menu .btn-navbar .fa.fa-bars {
  font-size: 26px;
}
.navbar-nav .dropdown-toggle:after {
  content: "\f107";
  font-family: FontAwesome;
  font-size: 18px;
  display: block;
  float: right;
  margin-left: 7px;
}
.swiper-slide img {
  display: inline-block;
  border-radius: 0;
}
.swiper-pager .swiper-button-next::before,
.swiper-pager .swiper-button-prev::before {
  font-size: 26px;
}
.slideshow.swiper-viewport {
  border: none;
}
.alert {
  border-radius: 20px;
  padding: 30px;
  position: fixed;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: 9;
  width: 400px !important;
  line-height: 1.5;
  top: calc(50% - 110px);
  box-shadow: #00000026 0 0 30px;
  -moz-animation: hideAlert 0s ease-out 3s forwards;
  -webkit-animation: hideAlert 0s ease-out 3s forwards;
  -o-animation: hideAlert 0s ease-out 3s forwards;
  animation: hideAlert 0s ease-out 3s forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.alert-dismissible .close {
  position: absolute;
  top: 5px;
  right: 12px;
  float: none;
}
.alert-danger {
  color: #f5145f;
  background-color: #f2d2dd;
  border-color: #f5145f;
}
@keyframes hideAlert {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes hideAlert {
  to {
    width: 0;
    height: 0;
    visibility: hidden;
  }
}
.close {
  text-shadow: none;
  opacity: 0.5;
  font-size: 32px;
  font-weight: 400;
}
.close:focus,
.close:hover {
  color: inherit;
  opacity: 1;
}
@media (min-width: 768px) {
  #menu .dropdown:hover .dropdown-menu {
    display: block;
  }
  .navbar-nav {
    display: inline-block;
    float: none;
  }
  .navbar-collapse.collapse {
    text-align: center;
  }
}
#common-home {
  padding: 0;
  margin-top: -20px;
}
#common-home .row {
  width: 100%;
  margin: 0;
}
#common-home #content h3 + .row {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
}
#common-home #content {
  overflow: hidden;
  padding: 0;
}
#content {
  min-height: 600px;
}
#product-category #content,
#product-product #tab-description,
#information-information #content {
  font-size: 16px;
}
.slideshow .swiper-slide img {
  width: 100%;
}
#common-home #content > h3 {
  margin-left: 15px;
  margin-right: 15px;
}
@media (min-width: 576px) {
  #common-home #content > h3 {
    width: 100%;
  }
}
@media (min-width: 768px) {
  #common-home {
    width: 100%;
  }
  #common-home #content > .row {
    width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  #common-home #content > h3 {
    width: 690px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  #common-home #content > .row {
    width: 960px;
  }
  #common-home #content > h3 {
    width: 930px;
  }
}
@media (min-width: 1200px) {
  #common-home {
    width: 100%;
  }
  #common-home #content > .row {
    width: 1120px;
  }
  #common-home #content > h3 {
    width: 1090px;
  }
}
@media (min-width: 1600px) {
  #common-home > *,
  header .container,
  footer .container,
  body > .container + .container {
    width: 1400px;
    margin: 0 auto;
  }
  #common-home #content > .row {
    width: 1400px;
  }
  #common-home #content > h3 {
    width: 1370px;
  }
}
footer {
  margin-top: 30px;
  padding-top: 30px;
  background-color: #fff;
  border-top: 1px solid #ddd;
  color: #e2e2e2;
}
footer .row {
  margin-bottom: 10px;
}
footer hr {
  border-top: none;
  border-bottom: 1px solid #ddd;
  width: 100%;
  left: 0;
  right: 0;
  position: absolute;
}
footer li {
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
}
footer a {
  color: #001F9C;
  transition: all ease-in 0.2s;
}
footer a:hover {
  color: #298556;
}
footer h5 {
  font-size: 20px;
  font-weight: 400;
  color: #001F9C;
}
footer p {
  font-size: 14px;
  color: #444;
  margin: 50px auto 20px !important;
}
.breadcrumb {
  margin: 0 0 20px;
  padding: 8px 0;
  background: none;
}
.breadcrumb i {
  font-family: DM Sans;
  font-size: 15px;
  font-weight: 500;
}
.breadcrumb i.fa-home:before {
  content: "Home";
}
.breadcrumb > li {
  padding: 0 18px;
  position: relative;
  white-space: nowrap;
  font-size: 15px;
}
.breadcrumb > li:first-child {
  padding-left: 0;
}
.breadcrumb > li + li:before {
  content: "";
  padding: 0;
}
.breadcrumb > li:after {
  content: "/";
  display: block;
  position: absolute;
  top: 0;
  right: -4px;
}
.breadcrumb > li:last-child:after {
  content: "";
}
.breadcrumb > li a {
  color: #001F9C;
}
html[dir="rtl"] .breadcrumb > li::after {
  top: -3px;
  left: -5px;
  width: 26px;
  height: 26px;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  right: unset;
  border-right: unset;
  border-bottom: unset;
}
#product-category #content > h2 {
  margin-top: 0;
}
#product-category #content > h3 + .row .col-sm-3 ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
#product-category #content > h3 + .row .col-sm-3 ul li a {
  display: block;
  padding: 10px 20px;
  margin-bottom: 10px;
  border-radius: 30px;
  color: #001F9C;
  border: solid 1px #001F9C;
  transition: all ease-in 0.2s;
}
#product-category #content > h3 + .row .col-sm-3 ul li a:hover,
#product-category #content > h3 + .row .col-sm-3 ul li a:focus {
  color: #fff;
  background-color: #001F9C;
}
#product-category #content > .row > .col-sm-2 > img {
  width: 100%;
  margin-bottom: 20px;
}
#product-category #content > .row > .col-sm-10 > p {
  font-size: 16px;
  line-height: 1.6;
}
#product-category #column-left .swiper-viewport {
  box-shadow: none;
  border: solid 1px #ddd;
  border-radius: 5px;
}
#product-category #column-left .swiper-viewport img {
  border-radius: 5px;
}
#product-category #content .row .text-right {
  font-size: 16px;
  font-weight: 300;
  padding: 16px 15px 0;
}
.pagination {
  margin: 5px 0;
  border-radius: 0;
  font-size: 17px;
}
.pagination > li > a,
.pagination > li > span {
  border: solid 1px #fff;
  color: #001F9C;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  transition: all ease-in 0.2s;
  text-align: center;
  margin-right: 5px;
  padding: 7px 12px;
}
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  background-color: #001F9C;
  border-color: #001F9C;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-radius: 40px;
}
.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  background: none;
  border-color: #001F9C;
  color: #001F9C;
}
.display-control {
  margin-bottom: 30px;
}
a.list-group-item {
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: #ddd solid 1px;
  color: #444;
  margin: 0;
  padding: 15px;
  font-size: 16px;
  transition: all ease-in 0.2s;
}
a.list-group-item:first-child,
a.list-group-item:last-child {
  border-radius: 0;
}
a.list-group-item.active {
  border-radius: 0;
  background: none;
  font-weight: 700;
  color: #001F9C;
  border-color: #ddd;
  border-bottom-color: #001F9C;
}
a.list-group-item.active:hover,
a.list-group-item.active:focus {
  background-color: #f5f5f5;
  color: #001F9C;
  border-color: #ddd;
  border-bottom-color: #001F9C;
}
a.list-group-item:hover {
  color: #001F9C;
}
.carousel-caption {
  color: #fff;
  text-shadow: 0 1px 0 #001F9C;
}
.carousel-control .icon-prev:before {
  content: "\f053";
  font-family: FontAwesome;
}
.carousel-control .icon-next:before {
  content: "\f054";
  font-family: FontAwesome;
}
.product-thumb {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow-y: hidden;
  overflow-x: auto;
}
.product-thumb .image a {
  display: block;
}
.product-thumb .image img {
  margin-left: auto;
  margin-right: auto;
  transform: scale(1);
  transition: transform 0.45s ease-in-out, opacity 0.3s linear;
}
.product-thumb .image img:hover {
  transform: scale(1.1);
  transition: transform 0.6s ease-out, opacity 0.3s !important;
}
.product-grid .product-thumb .image {
  float: none;
}
@media (min-width: 767px) {
  .product-list .product-thumb .image {
    float: left;
    padding: 0 15px;
  }
}
.product-thumb h4 a {
  color: #001F9C;
  position: relative;
  display: inline-block;
  word-wrap: break-word;
}

.product-list .product-thumb h4 a {
  display: block;
}
.product-thumb h4 a:before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #000;
  left: 0;
  bottom: -1px;
  position: absolute;
  transition: all ease-in 0.2s;
}
.product-thumb h4 a:hover:before {
  width: 100%;
}
.product-thumb p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: #444;
}
.product-thumb .caption {
  padding: 0 20px;
}
.product-list .product-thumb .caption {
  margin-left: 230px;
}
.rating a {
  font-size: 16px;
  color: #001F9C;
  transition: all ease-in 0.2s;
  margin: 0 10px;
}
.rating a:hover,
.rating a:focus {
  color: #298556;
}
.product-thumb .rating {
  padding-bottom: 10px;
}
.rating .fa-stack {
  font-size: 8px;
  width: 2.5em;
  margin: -5px 0 0;
}
.rating .fa-star-o {
  color: #001F9C;
  font-size: 18px;
}
.rating .fa-star {
  color: #001F9C;
  font-size: 18px;
}
.rating .fa-star + .fa-star-o {
  color: #001F9C;
}
h2.price {
  margin: 0;
}
.product-thumb .price {
  color: #001F9C;
  font-size: 19px;
  font-weight: 400;
}
.product-thumb .price-new {
  font-weight: 400;
}
.product-thumb .price-old {
  color: #6a6a6a;
  text-decoration: line-through;
  margin-left: 10px;
}
.product-thumb .price-tax {
  color: #6a6a6a;
  font-size: 14px;
  display: block;
}
.product-thumb .button-group {
  border-top: 1px solid #ddd;
  overflow: auto;
}
.product-list .product-thumb .button-group {
  border-left: 1px solid #ddd;
}
.product-thumb .button-group button {
  width: 60%;
  border: none;
  float: left;
  background-color: #fff;
  color: #001F9C;
  line-height: 38px;
  font-weight: 700;
  text-align: center;
  transition: all ease-in 0.2s;
  font-weight: 600;
}
.product-thumb .button-group button + button {
  width: 20%;
  border-left: 1px solid #ddd;
}
.product-thumb .button-group button:hover {
  text-decoration: none;
  cursor: pointer;
}
.product-thumb .button-group button:nth-child(1):hover {
  color: #298556;
}
.product-thumb .fa-heart:before {
  color: #f5145f;
}
.fa-exchange:before {
  color: #298556;
}
#content .swiper-viewport {
  box-shadow: none;
  margin-top: 0;
}
#product label {
  font-size: 16px;
}
#product .radio,
#product .checkbox {
  margin-bottom: 15px;
}
#input-quantity:hover,
#input-quantity:focus {
  border-color: #001F9C;
}
#button-cart {
  margin-bottom: 20px;
}
a.thumbnail.active,
a.thumbnail:focus,
a.thumbnail:hover {
  border-color: #001F9C;
}
.thumbnail {
  border-radius: 10px;
}
.thumbnails {
  overflow: auto;
  clear: both;
  list-style: none;
  padding: 0;
  margin: 0;
}
.thumbnails > li {
  margin-left: 20px;
}
.thumbnails {
  margin-left: -20px;
}
.thumbnails > img {
  width: 100%;
}
.image-additional a {
  margin-bottom: 20px;
  padding: 5px;
  display: block;
  border: 1px solid #ddd;
}
.image-additional {
  max-width: 78px;
}
.thumbnails .image-additional {
  float: left;
  margin-left: 20px;
}
.nav-tabs {
  border: none;
  margin: 20px 0 30px;
}
.nav-tabs > li {
  font-size: 17px;
  margin-bottom: 0;
}
.nav-tabs li,
.nav-tabs li a {
  color: #001F9C;
  border-radius: 10px;
  background: none;
}
.nav-tabs li a {
  border-color: #fff;
  padding: 10px 25px;
}
.nav-tabs li a:hover,
.nav-tabs li a:focus {
  color: #298556;
  background: none;
  border-color: #fff;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  color: #001F9C;
  background-color: #001F9C0a;
  border-bottom-color: #ddd;
}
.tab-content {
  padding: 30px;
  border-radius: 10px;
  border: solid 1px #ddd;
  margin-bottom: 30px;
}
.tab-pane p,
#tab-description ul li,
#tab-description div {
  font-size: 16px;
  line-height: 1.8;
}
#tab-description p > font,
#tab-description p > font > font {
  font-size: 16px;
}
#form-review label {
  margin-bottom: 10px;
}
#form-review label:before {
  left: -10px;
}
#form-review div:nth-of-type(2n + 1) {
  font-size: 16px;
}
#review .fa.fa-stack {
  width: 1.2em;
}
#review .fa.fa-stack > .fa {
  font-size: 18px;
}
#form-review input[type="radio"] {
  margin: 0 0 -4px;
}
.product-price-old {
  font-size: 30px;
  color: #6a6a6a;
}
#product-product #content > .row > .col-sm-8 {
  width: 60%;
}
#product-product #content > .row > .col-sm-4 {
  width: 40%;
}
#product-product #content > .row > .col-sm-4 .btn-group {
  margin-bottom: 20px;
}
#product-product #content > .row > .col-sm-4 .btn-group button {
  background: none;
  border-color: #ddd;
  margin-right: 10px;
  padding: 14px 18px 12px;
  border-radius: 5px !important;
}
#product-product #content > .row > .col-sm-4 .btn-group button:hover,
#product-product #content > .row > .col-sm-4 .btn-group button:focus {
  border-color: #001F9C;
}
#product-product #content > .row > .col-sm-4 .btn-group button:first-child {
  color: #f5145f;
}
#product-product #content > .row > .col-sm-4 h1 {
  font-size: 48px;
}
#product-product #content > .row > .col-sm-4 ul li a {
  color: #298556;
}
#product-product #content > .row > .col-sm-4 ul + ul li:first-child {
  font-size: 30px;
  color: #6a6a6a;
}
#product-product #content > .row > .col-sm-4 ul li h2 {
  font-size: 48px;
}
.bootstrap-datetimepicker-widget td.active,
.bootstrap-datetimepicker-widget td.active:hover {
  background-color: #001F9C !important;
}
.bootstrap-datetimepicker-widget td span {
  transition: all ease-in 0.2s;
}
#tab-specification .table thead + tbody tr td:first-child {
  border-bottom-left-radius: 0;
  border-bottom: none;
}
#tab-specification .table thead + tbody tr td:last-child {
  border-bottom-right-radius: 0;
  border-bottom: none;
}
#tab-specification .table thead + tbody + thead tr td:first-child {
  border-top-left-radius: 0;
}
#tab-specification .table thead + tbody + thead tr td:last-child {
  border-top-right-radius: 0;
}
#tab-specification .table tbody:last-child tr:last-child td {
  border-bottom: #ddd solid 1px;
}
#tab-specification .table tbody:last-child tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
#tab-specification .table tbody:last-child tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
#tab-review .table tbody tr:first-child td:first-child {
  border-top-left-radius: 10px;
}
#tab-review .table tbody tr:first-child td:last-child {
  border-top-right-radius: 10px;
}
#checkout-cart table.table > thead > tr > td {
  background-color: #f5f5f5;
}
#checkout-cart table.table img {
  height: 100px;
}
.table-bordered {
  border-collapse: inherit;
  border: none;
}
#checkout-cart table.table > tbody > tr > td:last-child {
  font-weight: 500;
}
#checkout-cart table.table > tbody > tr > td:first-child > a {
  display: block;
}
#checkout-cart table.table > tbody > tr > td:nth-child(2) > a,
#product-compare .table thead + tbody > tr > td a {
  font-size: 17px;
  font-weight: 500;
  position: relative;
}
#checkout-cart table.table > tbody > tr > td:nth-child(2) > a:before,
#product-compare .table thead + tbody > tr > td a:before,
#information-sitemap #content ul li a:before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #000;
  left: 0;
  bottom: 0;
  position: absolute;
  transition: all ease-in 0.2s;
}
#checkout-cart table.table > tbody > tr > td:nth-child(2) > a:hover:before,
#product-compare .table thead + tbody > tr > td a:hover:before,
#information-sitemap #content ul li a:hover:before {
  width: 100%;
}
#checkout-cart table.table > tbody > tr > td:nth-child(2) > small {
  color: #444;
}
#checkout-cart table.table > tbody > tr > td:nth-child(4) {
  width: 16%;
}
#checkout-cart table.table > tbody > tr > td:nth-child(5),
#checkout-cart table.table > tbody > tr > td:last-child {
  width: 10%;
}
#checkout-cart table.table > tbody > tr > td:nth-child(4) .btn.btn-danger {
  padding: 11px 18px;
}
#checkout-cart table.table > tbody > tr > td:nth-child(4) .btn,
#checkout-cart table.table > tbody > tr > td:nth-child(4) .btn.btn-danger:hover,
#checkout-cart
  table.table
  > tbody
  > tr
  > td:nth-child(4)
  .btn.btn-danger:focus {
  background: none;
  border: none;
  color: #001F9C;
  box-shadow: none;
  text-shadow: none;
}
#checkout-cart table.table > tbody > tr > td:nth-child(4) .btn .fa {
  font-size: 20px;
}
#checkout-cart table.table > tbody > tr > td:nth-child(4) .btn-danger .fa {
  color: #f5145f;
}
#checkout-cart table.table > thead > tr > td:nth-child(5),
#checkout-cart table.table > thead > tr > td:nth-child(6),
#checkout-cart table.table > tbody > tr > td:nth-child(5),
#checkout-cart table.table > tbody > tr > td:nth-child(6) {
  text-align: center !important;
}
#checkout-cart
  table.table
  > tbody
  > tr
  > td
  .input-group
  .form-control[name^="quantity"] {
  width: 55px;
  text-align: center;
  padding: 10px;
}
#checkout-cart #accordion {
  margin-top: 20px;
}
.panel-group .panel,
.panel-heading {
  border-radius: 10px;
  box-shadow: none;
}
.panel {
  background-color: #f5f5f5;
}
.panel-heading {
  padding: 15px;
}
.panel-heading > h4 > a {
  display: inline-block;
  width: 100%;
}
.panel-group .panel + .panel {
  margin-top: 10px;
}
.panel-collapse {
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#collapse-coupon label {
  padding-top: 15px;
}
#checkout-cart .panel .btn,
#checkout-cart > .row > #content > .buttons > .pull-left > a.btn {
  font-size: 18px;
  color: #001F9C;
  background: none;
  border-radius: 30px;
}
#button-quote {
  float: right;
}
#checkout-cart .panel .btn:hover,
#checkout-cart .panel .btn:focus,
#checkout-cart > .row > #content > .buttons > .pull-left > a.btn:hover,
#checkout-cart > .row > #content > .buttons > .pull-left > a.btn:focus {
  background-color: #001F9C;
  color: #fff;
}
#collapse-voucher label {
  padding-top: 5px;
}
#checkout-cart #accordion + br + .row table.table > tbody > tr > td {
  white-space: normal;
}
#checkout-cart
  #accordion
  + br
  + .row
  table.table
  > tbody
  > tr:last-child
  > td:last-child {
  font-size: 48px;
}
#checkout-cart
  #accordion
  + br
  + .row
  table.table
  > tbody
  > tr:first-child
  > td:first-child {
  border-top-left-radius: 10px;
}
#checkout-cart
  #accordion
  + br
  + .row
  table.table
  > tbody
  > tr:first-child
  > td:last-child {
  border-top-right-radius: 10px;
}
#checkout-cart #accordion + br + .row table.table > tbody > tr > td:last-child {
  font-weight: 500;
  font-size: 24px;
}
#checkout-cart #accordion + br + .row table.table > tbody > tr > td > strong {
  font-weight: 500 !important;
}
#checkout-cart .buttons {
  margin-top: 20px;
}
.panel-body {
  padding: 30px;
}
#collapse-checkout-option .radio {
  margin: 15px 0;
}
#collapse-checkout-option .col-sm-6 > h2 + p {
  font-size: 20px;
}
#collapse-checkout-option .col-sm-6 .form-group > a {
  margin: 10px 0 0;
  display: inline-block;
}
#checkout-checkout .panel-body .checkbox {
  float: left;
  margin-top: 10px;
  width: 100%;
}
#checkout-checkout .panel-body .buttons input[type="checkbox"] {
  float: left;
  margin-top: 0;
  margin-left: 0;
  margin-right: 8px;
}
#checkout-checkout .panel-body .buttons input[type="checkbox"]:before {
  content: "";
}
#checkout-checkout .panel-body .buttons {
  float: left;
  width: 100%;
  margin: 10px 0 0;
}
#checkout-checkout .panel-body .buttons .pull-right {
  width: 100%;
}
#checkout-checkout .panel-body .buttons .pull-right #button-register {
  float: right;
  margin: -16px 0 0;
}
#checkout-checkout .table tbody tr:last-child td:first-child,
#checkout-checkout .table tbody tr:last-child td:last-child {
  border-radius: 0;
}
#checkout-checkout .table tbody tr td a {
  border: none;
}
#collapse-checkout-option .panel-body h2 {
  margin: 10px 0;
}
#collapse-payment-address
  > .panel-body
  > .row
  > .col-sm-6:first-child
  > fieldset#account
  + fieldset {
  margin: 35px 0 0;
}
#payment-existing,
#shipping-existing {
  margin-bottom: 10px;
}
#collapse-payment-address .form-horizontal br,
#collapse-shipping-address .form-horizontal br {
  display: none;
}
input#button-payment-address,
input#button-payment-method,
input#button-guest,
input#button-shipping-address,
input#button-shipping-method,
input#button-confirm {
  float: right;
}
#collapse-payment-method strong {
  font-weight: 500;
}
#collapse-checkout-confirm table thead tr td:nth-child(3) {
  width: 10%;
  text-align: center;
}
#collapse-checkout-confirm table thead tr td:first-child {
  width: 38%;
}
#collapse-checkout-confirm table tbody tr td:nth-child(3) {
  text-align: center;
}
#collapse-checkout-confirm table tfoot tr:last-child td:last-child {
  font-size: 24px;
}
#collapse-checkout-confirm table tfoot tr td:last-child {
  font-size: 24px;
  font-weight: 500;
}
#collapse-checkout-confirm table tfoot tr:last-child td:last-child {
  font-size: 48px;
}
#account-login .well {
  min-height: 438px;
}
#account-login .well p + p {
  margin-bottom: 20px;
}
#account-register .form-horizontal .buttons {
  margin: 0;
}
#account-register .form-horizontal .buttons .pull-right {
  width: 100%;
}
#account-register .form-horizontal .buttons .pull-right input[type="checkbox"] {
  float: left;
  margin: 0 10px 0 0;
}
#account-register .form-horizontal .buttons .pull-right input.btn {
  float: right;
  margin: -15px 0 0;
}
.form-horizontal .control-label {
  text-align: left;
  position: relative;
}
.form-horizontal .control-label:before {
  position: absolute;
  left: 5px;
}
#account-register label.col-sm-2 {
  width: 12%;
}
#account-register label.col-sm-2 + div.col-sm-10 {
  width: 88%;
}
body > .container + .container > .row > #content > h2 {
  margin-top: 0;
}
#account-address h2,
#account-wishlist h2,
#account-download h2 {
  font-size: 40px;
}
#account-account #content .list-unstyled {
  line-height: 2;
  margin-bottom: 20px;
}
#account-account #content .list-unstyled li:before {
  content: "\f105";
  font-family: FontAwesome;
  margin-right: 10px;
  color: #444;
}
#account-account #content .list-unstyled li a {
  position: relative;
}
#account-account #content .list-unstyled li a:before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #000;
  left: 0;
  bottom: -2px;
  position: absolute;
  transition: all ease-in 0.2s;
}
#account-account #content .list-unstyled li a:hover:before {
  width: 100%;
}
#account-account #content h2:first-child {
  margin-top: 0;
}
#account-forgotten .btn.btn-default,
#account-edit .btn.btn-default,
#account-password .btn.btn-default,
#account-address .btn.btn-default,
#account-return .buttons .btn.btn-default,
#account-newsletter .buttons .btn-default {
  background: none;
  border-radius: 30px;
  border: #001F9C solid 1px;
  color: #001F9C;
}
#account-forgotten .btn.btn-default:hover,
#account-forgotten .btn.btn-default:focus,
#account-edit .btn.btn-default:hover,
#account-edit .btn.btn-default:focus,
#account-password .btn.btn-default:hover,
#account-password .btn.btn-default:focus,
#account-password .btn.btn-default:hover,
#account-address .btn.btn-default:focus,
#account-return .buttons .btn.btn-default:hover,
#account-return .buttons .btn.btn-default:focus,
#account-newsletter .buttons .btn-default:hover,
#account-newsletter .buttons .btn-default:focus {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
#account-address table.table tbody tr:first-child td:first-child {
  border-top-left-radius: 10px;
}
#account-address table.table tbody tr:first-child td:last-child {
  border-top-right-radius: 10px;
}
#account-address table.table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
#account-address table.table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
#account-wishlist .table .btn,
#account-order .table .btn-info,
#account-order div.table-responsive .table .btn,
#account-return .table .btn,
#account-download .table .btn {
  background: none;
  border: none;
  color: #001F9C;
}
#account-order .table .btn-info,
#account-return .table .btn {
  padding: 0 10px;
  display: block;
  margin: 0 auto;
}
#account-wishlist .table .btn-danger,
#account-order div.table-responsive .table .btn-danger {
  color: #f5145f;
}
#account-wishlist .table .btn .fa,
#account-order .table .btn-info .fa,
#account-order div.table-responsive .table .btn .fa,
#account-download .table .btn .fa {
  font-size: 20px;
}
#account-wishlist .table .btn .fa.fa-times:before {
  content: "\f057";
}
#account-wishlist .table > thead > tr > td:first-child,
#account-wishlist .table > thead > tr > td:nth-child(4),
#checkout-cart table.table > thead > tr > td:first-child {
  width: 10%;
}
#account-wishlist .table > thead > tr > td:nth-child(5) {
  width: 15%;
}
#account-wishlist .table > thead > tr > td:last-child {
  width: 16%;
}
#account-order h1 + div.table-responsive .table thead tr td:first-child,
#account-order h1 + div.table-responsive .table tbody tr td:first-child,
#account-order h1 + div.table-responsive .table tbody tr td:nth-child(3),
#account-order .table + div.table-responsive .table thead tr td,
#account-order .table + div.table-responsive .table tbody tr td,
#account-order .table + div.table-responsive .table tfoot tr td:nth-child(3),
#account-return h1 + div.table-responsive .table thead tr td,
#account-return h1 + div.table-responsive .table tbody tr td,
#account-reward .table thead tr td:last-child,
#account-reward .table tbody tr td:last-child,
#account-download .table thead tr td:first-child,
#account-download .table tbody tr td:first-child,
#account-download .table thead tr td:nth-child(3),
#account-download .table tbody tr td:nth-child(3),
#account-download .table thead tr td:nth-child(4),
#account-download .table tbody tr td:nth-child(4) {
  text-align: center;
}
#account-order .table + div.table-responsive .table tbody tr td:first-child,
#account-order .table + div.table-responsive .table tbody tr td:nth-child(2),
#account-order .table + div.table-responsive .table thead tr td:first-child,
#account-order .table + div.table-responsive .table thead tr td:nth-child(2),
#account-return h1 + div.table-responsive .table thead tr td:nth-child(2),
#account-return h1 + div.table-responsive .table tbody tr td:nth-child(2) {
  text-align: left;
}
#account-order .table + div.table-responsive .table thead tr td:first-child {
  width: auto;
}
#account-order .table + div.table-responsive .table thead tr td:nth-child(2),
#account-order div.table-responsive + h3 + .table thead tr td:nth-child(2) {
  width: 1%;
}
#account-order div.table-responsive + h3 + .table thead tr td:last-child {
  width: auto;
}
#account-order .buttons,
#account-reward .buttons,
#account-transaction .buttons,
#account-return .buttons,
#account-download .buttons {
  margin-top: 20px;
}
#account-order
  .table
  + div.table-responsive
  .table
  tbody
  tr:last-child
  td:first-child {
  border-radius: 0;
}
#account-order
  .table
  + div.table-responsive
  .table
  tbody
  tr:last-child
  td:last-child {
  border-radius: 0;
}
#account-order div.table-responsive .table tfoot tr td:nth-child(3) {
  font-size: 20px;
  text-align: left;
}
#account-order div.table-responsive .table tfoot tr:last-child td:nth-child(3) {
  font-size: 24px;
  font-weight: 600;
}
#account-newsletter .form-group {
  margin-bottom: 0;
}
#account-newsletter label.col-sm-2 {
  width: 10%;
  text-align: left;
}
#account-voucher .buttons .pull-right,
#account-affiliate .buttons .pull-right {
  width: 100%;
  padding: 20px 0 0;
}
#account-voucher .buttons .pull-right input[type="checkbox"],
#account-affiliate .buttons .pull-right input[type="checkbox"] {
  float: left;
  margin-top: 0;
  margin-left: 0;
}
#account-voucher .buttons .pull-right .btn,
#account-affiliate .buttons .pull-right .btn {
  float: right;
  margin-top: -14px;
}
#product-compare .table thead tr td,
#product-compare .table tbody tr td {
  white-space: unset;
}
#product-compare .table tbody tr td:first-child {
  width: 10%;
}
#product-compare .table > tbody > tr > td a strong {
  font-weight: 500;
}
#product-compare .table > tbody > tr > td.rating .fa-stack {
  margin: -15px 0 0;
}
#product-compare .table tbody + thead tr td:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
#product-compare .table thead + tbody tr td {
  border-bottom: none;
}
#product-compare .table thead + tbody tr td:first-child {
  border-bottom-left-radius: 0;
}
#product-compare .table thead + tbody tr td:last-child {
  border-bottom-right-radius: 0;
}
#product-compare .table > tbody > tr > td > .btn-danger {
  margin-top: 10px;
}
.modal-dialog {
  margin: 25% auto 0;
}
.modal-content {
  border: none;
  box-shadow: 0 0 50px #0000004d;
  border-radius: 10px;
  padding: 30px;
}
.modal-header,
.modal-footer {
  border: none;
}
.modal-body {
  border-radius: 10px;
  background-color: #f5f5f5;
}
.modal-footer {
  padding: 15px 0;
}
.modal-footer .btn-default {
  background: none;
  border: #001F9C solid 1px;
  border-radius: 30px;
  color: #001F9C;
}
.modal-footer .btn-default:hover,
.modal-footer .btn-default:focus {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
#information-information img {
  width: 100% !important;
}
#product-manufacturer #content h1 + p > a {
  font-size: 24px;
  position: relative;
}
#product-manufacturer #content h1 + p > a:before,
#product-manufacturer #content .row a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  background-color: #001F9C;
  width: 0;
  transition: all ease-in 0.2s;
}
#product-manufacturer #content h1 + p > a:before {
  height: 2px;
}
#product-manufacturer #content .row > .col-sm-3 > a:before {
  height: 1px;
}
#product-manufacturer #content h1 + p > a:hover:before,
#product-manufacturer #content .row > .col-sm-3 > a:hover:before {
  width: 100%;
}
#product-manufacturer #content .row {
  margin-bottom: 20px;
}
#product-manufacturer #content .row > .col-sm-3 > a {
  position: relative;
}
#information-sitemap #content > .row .col-sm-6 > ul {
  padding-left: 0;
  list-style-position: inside;
}
#information-sitemap #content > .row .col-sm-6 > ul > li {
  font-weight: 600;
  background: #f5f5f5;
  margin-bottom: 15px;
  border-radius: 10px;
  padding: 10px 20px;
  list-style: none;
}
#information-sitemap #content > .row .col-sm-6 > ul > li > ul > li {
  font-weight: 400;
}
#information-sitemap #content ul li {
  font-size: 18px;
  line-height: 1.8;
}
#information-sitemap #content ul li a {
  position: relative;
}
#information-contact .panel-default {
  border: none;
  border-radius: 10px;
}
#information-contact .panel-default strong {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 10px;
  display: inline-block;
}
#information-contact .panel-default address {
  line-height: 1.8;
  margin-bottom: 10px;
}
#product-search #content > .row > .col-sm-3 + .col-sm-3 {
  padding-top: 14px;
}
#product-search #content > .row > .col-sm-3 + .col-sm-3 .checkbox-inline,
#product-search #content > .row > .col-sm-4 > #input-search {
  margin-bottom: 10px;
}
#product-search #content > p > label > input {
  margin-top: 8px;
}
#product-search #button-search {
  margin-bottom: 30px;
}
#product-search h2 + .row,
#product-category h3 + .row + .row {
  margin-bottom: 20px;
}

/* Keep product thumbs at the same height */

#common-home #content h3 + .row,
#product-category h3 + .row + .row + .row,
#product-category h2 + .row + hr + .row + .row,
#product-search h2 + .row + .row,
#product-product #content .row + h3 + .row {
  display: flex;
  flex-wrap: wrap;
}

#product-product #content .row + h3 + .row .col-sm-3 {
   display: flex;
}

#common-home #content h3 + .row .product-layout,
.product-grid {
  display: flex;
}

#common-home #content h3 + .row .product-layout .product-thumb,
.product-grid .product-thumb,
#product-product #content .row + h3 + .row .product-thumb {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-list .product-thumb {
  display: flex;
  flex-direction: row;
}

.product-grid .product-thumb .image + div,
.product-list .product-thumb .image + div {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

#common-home #content h3 + .row .product-layout .product-thumb .caption,
.product-grid .product-thumb .caption,
#product-product #content .row + h3 + .row .product-thumb .caption {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.product-list .product-thumb .caption {
  margin: 0;
}

.product-list .product-thumb .image {
  flex: 0 0 25%;
}

#common-home #content h3 + .row .product-layout .product-thumb .price,
.product-grid .product-thumb .price,
.product-list .product-thumb .button-group,
#product-product #content .row + h3 + .row .product-thumb .price {
   margin-top: auto;
}


/* Responsive styles */

@media (min-width: 1200px) {
  #content .col-lg-2:nth-child(6n + 1),
  #content .col-lg-3:nth-child(4n + 1),
  #content .col-lg-4:nth-child(3n + 1),
  #content .col-lg-6:nth-child(2n + 1) {
    clear: left;
  }
  #top .pull-left,
  #top .pull-right {
    width: auto;
  }
}
@media (max-width: 1600px) {
  #collapse-coupon label,
  #collapse-voucher label {
    padding-top: 5px;
  }
  #account-register label.col-sm-2 {
    width: 14%;
  }
  #account-register label.col-sm-2 + div.col-sm-10 {
    width: 86%;
  }
  #account-wishlist .table > thead > tr > td:last-child {
    width: 20%;
  }
  #account-wishlist .table > thead > tr > td:nth-child(4) {
    width: 12%;
  }
}
@media (max-width: 1200px) {
  #list-view,
  #grid-view {
    padding: 17px 11px 14px;
  }
  #collapse-voucher label {
    padding-top: 0;
  }
  #account-register label.col-sm-2 {
    width: 18%;
  }
  #account-register label.col-sm-2 + div.col-sm-10 {
    width: 82%;
  }
  #account-wishlist .table > thead > tr > td:last-child {
    width: 24%;
  }
  #account-wishlist .table > thead > tr > td:nth-child(4) {
    width: 15%;
  }
  #account-newsletter label.col-sm-2 {
    width: 14%;
  }
  #account-login .well {
    min-height: 473px;
  }
  .product-thumb .button-group button,
  .product-thumb .button-group button + button {
    width: 33.33%;
  }
  .product-grid .product-thumb .caption {
    min-height: 210px;
    padding: 0 10px;
  }
}
@media (max-width: 992px) {
  header .row .col-sm-4 {
    width: 20%;
  }
  header .row .col-sm-5 {
    width: 50%;
  }
  header .row .col-sm-3 {
    width: 30%;
  }
  #list-view,
  #grid-view {
    padding: 17px 17px 14px;
  }
  #product-category .text-left,
  #product-category .text-right {
    width: 100%;
    text-align: center;
  }
  .nav-tabs li a {
    padding: 10px 20px;
  }
  #checkout-cart table.table img {
    height: auto;
  }
  #checkout-cart table.table > tbody > tr > td:first-child > a {
    width: auto;
  }
  #collapse-coupon label {
    padding-top: 0;
  }
  #checkout-cart #content .col-sm-offset-8 {
    margin-left: 0;
    width: 100%;
  }
  #account-register label.col-sm-2 {
    width: 22%;
  }
  #account-register label.col-sm-2 + div.col-sm-10 {
    width: 78%;
  }
  #account-newsletter label.col-sm-2 {
    width: 16%;
  }
  #product-compare #content .table {
    overflow-x: auto;
    display: inline-block;
  }
  #account-voucher .buttons .pull-right .btn,
  #account-affiliate .buttons .pull-right .btn {
    float: left;
    clear: both;
    margin-top: 20px;
  }
  #account-login .well {
    min-height: 505px;
  }
  #product-search h2 + .row .col-md-2,
  #product-search h2 + .row .col-md-2 + .col-md-3,
  #product-manufacturer h2 + .row .col-md-2,
  #product-manufacturer h2 + .row .col-md-2 + .col-md-3,
  #product-category h3 + .row + .row .col-md-2,
  #product-category h3 + .row + .row .col-md-2 + .col-md-3 {
    margin-bottom: 10px;
  }
  #product-search h2 + .row .col-md-2 + .col-md-3,
  #product-category h3 + .row + .row .col-md-2 + .col-md-3,
  #product-manufacturer h2 + .row .col-md-2 + .col-md-3 {
    text-align: right;
  }
}
@media (max-width: 768px) {
  header .row .col-sm-4,
  header .row .col-sm-5,
  header .row .col-sm-3 {
    width: 100%;
  }
  header .row {
    display: block;
  }
  #search {
    margin-bottom: 15px;
  }
  #menu {
    border-radius: 4px;
  }
  #menu div.dropdown-inner > ul.list-unstyled {
    display: block;
  }
  #menu div.dropdown-menu {
    margin-left: 0 !important;
    padding-bottom: 10px;
    background-color: #fff;
    box-shadow: none;
  }
  #menu .dropdown-inner {
    display: block;
  }
  #menu .dropdown-inner a {
    width: 100%;
    color: #001F9C;
  }
  #menu .see-all {
    margin-top: 0;
    border: none;
    border-radius: 0;
    color: #001F9C;
  }
  #logo {
    width: 100%;
    margin: 0;
    text-align: center;
  }
  #logo img {
    display: inline-block;
    max-width: 150px;
    margin-bottom: 20px;
  }
  .nav-tabs li a {
    padding: 10px 15px;
  }
  #collapse-coupon label,
  #collapse-voucher label {
    padding-left: 0;
    margin-bottom: 10px;
  }
  .panel-body {
    padding: 20px;
  }
  #collapse-checkout-option > .panel-body > .row > .col-sm-6:first-child {
    margin-bottom: 30px;
  }
  #collapse-payment-address
    > .panel-body
    > .row
    > .col-sm-6:first-child
    > fieldset#account
    + fieldset {
    margin: 0;
  }
  .alert {
    width: 100%;
  }
  .pull-right,
  .pull-left,
  .btn.btn-primary,
  .btn.btn-default {
    width: 100%;
  }
  #collapse-payment-method .buttons .pull-right input.btn,
  #account-register .form-horizontal .buttons .pull-right input.btn {
    float: none;
    margin: 20px 0 0;
  }
  #button-coupon,
  #button-quote,
  #button-voucher,
  #checkout-cart > .row > #content > .buttons > .pull-left > a.btn {
    margin-bottom: 20px;
  }
  #account-register .form-horizontal fieldset:nth-child(3) .form-group {
    margin-bottom: 5px;
  }
  #account-register label.col-sm-2,
  #account-register label.col-sm-2 + div.col-sm-10 {
    width: 100%;
  }
  #account-forgotten .btn.btn-default,
  #account-edit .btn.btn-default,
  #account-password .btn.btn-default,
  #account-address .btn.btn-default,
  #account-return .btn.btn-default,
  #account-newsletter .buttons .btn-default {
    margin-bottom: 10px;
  }
  #cart .dropdown-menu {
    min-width: 100%;
  }
  #cart .dropdown-menu .table td:first-child a {
    width: auto;
    background-color: #fff;
  }
  .table .btn {
    width: auto;
  }
  #account-order #content > .row > .text-left,
  #account-order #content > .row > .text-right,
  #account-reward #content > .row > .text-left,
  #account-reward #content > .row > .text-right,
  #account-return #content > .row > .text-left,
  #account-return #content > .row > .text-right,
  #account-transaction #content > .row > .text-left,
  #account-transaction #content > .row > .text-right,
  #account-download #content > .row > .text-right {
    text-align: center;
  }
  #account-newsletter label.col-sm-2,
  .modal-footer .btn-default {
    width: 100%;
    margin-bottom: 10px;
  }
  .table-responsive {
    border: none;
  }
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > thead > tr > th:first-child {
    border-left: #ddd solid 1px;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: #ddd solid 1px;
  }
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > thead > tr > th:last-child {
    border-right: #ddd solid 1px;
  }
  .table {
    overflow-x: auto;
    display: inline-block;
  }
  .display-control-compare {
    text-align: left !important;
  }
  #account-login .well {
    min-height: auto;
  }
  #checkout-checkout .panel-body .buttons .pull-right #button-register {
    margin: 10px 0 0;
  }
  .product-list .product-thumb .caption {
    min-height: 0;
    margin-left: 0;
    padding: 0 10px;
  }
  .product-grid .product-thumb .caption {
    min-height: 0;
  }
  .product-thumb .button-group button,
  .product-thumb .button-group button + button {
    width: 33.33%;
  }
  .product-list .product-thumb .button-group {
    border-left: none;
  }
  #product-product #content > .row > .col-sm-8,
  #product-product #content > .row > .col-sm-4 {
    width: 100%;
  }
  #product-search h2 + .row .col-md-2 + .col-md-3,
  #product-category h3 + .row + .row .col-md-2 + .col-md-3,
  #product-manufacturer h2 + .row .col-md-2 + .col-md-3 {
    text-align: left;
  }
  #product-product #content > .row > .col-sm-4 .btn-group button {
    width: auto;
  }
  #cart .dropdown-menu .table > tbody > tr > td {
    width: 1% !important;
  }
}
@media (max-width: 576px) {
  #top .pull-left {
    width: 30%;
  }
  #top .pull-right {
    width: 70%;
  }
  #cart .dropdown-menu .table td:nth-child(3) {
    width: 12%;
  }
}
@media (max-width: 478px) {
  #cart .dropdown-menu {
    width: 100%;
  }
  #logo a {
    width: 100%;
    text-align: center;
    display: inline-block;
  }
  #cart .dropdown-menu li > div {
    min-width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #content .col-md-2:nth-child(6n + 1),
  #content .col-md-3:nth-child(4n + 1),
  #content .col-md-4:nth-child(3n + 1),
  #content .col-md-6:nth-child(2n + 1) {
    clear: left;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #content .col-sm-2:nth-child(6n + 1),
  #content .col-sm-3:nth-child(4n + 1),
  #content .col-sm-4:nth-child(3n + 1),
  #content .col-sm-6:nth-child(2n + 1) {
    clear: left;
  }
}
@media (min-width: 768px) {
  #column-left .product-layout .col-md-3 {
    width: 100%;
  }
  #column-left + #content .product-layout .col-md-3 {
    width: 50%;
  }
  #column-left + #content + #column-right .product-layout .col-md-3 {
    width: 100%;
  }
  #content + #column-right .product-layout .col-md-3 {
    width: 100%;
  }
}
#column-left .product-layout,
#column-right .product-layout {
  width: 100%;
}
.input-group .form-control[name^="quantity"] {
  min-width: 50px;
}
html[dir="rtl"] .checkbox input[type="checkbox"],
html[dir="rtl"] .checkbox-inline input[type="checkbox"],
html[dir="rtl"] .radio input[type="radio"],
html[dir="rtl"] .radio-inline input[type="radio"] {
  position: absolute;
  margin-top: 4px\9;
  margin-right: -20px;
  margin-left: unset;
}
html[dir="rtl"] .input-group-btn:last-child > .btn {
  border-radius: 5px 0 0 5px;
}
html[dir="rtl"] .input-group .form-control:first-child {
  border-radius: unset 5px 5px unset;
}
html[dir="rtl"] .container .row:first-child .col-sm-4,
html[dir="rtl"] .container .row:first-child .col-sm-5 {
  float: right;
}
html[dir="rtl"] #cart .dropdown-menu {
  left: 0;
  right: auto;
}
@media (min-width: 768px) {
  html[dir="rtl"] .navbar-nav {
    float: right;
    margin: 0;
  }
  html[dir="rtl"] .navbar-nav > li {
    float: right;
  }
}

#tagline {
    margin-top: auto;
    margin-bottom: auto;
    display: block;
    white-space: nowrap;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #001f9c;
    line-height: 36px;
    padding: 0 6px;
}

@media (min-width: 1140px) {
    #free_deliv{
        height: 40px;
    }
}
@media (max-width: 992px) and (min-width: 760px) {
  #free_deliv{
    line-height: 26px;
    margin-bottom: 10px;
  }
}

.stock-display-green {
  color: #24c200;
}

.stock-display-red {
  color: #da0000;
}

.stock-display-grey {
  color: #8c8c8c;
}

.stock-display-orange {
  color: #FF4301;
}

.product-thumb .image a[data-stock]::before {
    content: attr(data-stock);
    position: absolute;
    top: 71px;
    left: 1px;
    width: 120px;
    height: 20px;
    background-color: #24c200;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    transform-origin: top left;
    font-size: 14px;
    text-align: center;
    pointer-events: none;
    z-index: 99999;
    clip-path: polygon(16.5% 0, 83.5% 0, 100% 100%, 0% 100%);
}

.product-thumb .image a[data-stock].stock-red::before {
  background-color: #da0000;
}

.product-thumb .image a[data-stock].stock-grey::before {
  background-color: #8c8c8c;
}

.product-thumb .image a[data-stock].stock-orange::before {
  background-color: #FF4301;
}

.tab-content ul {
  margin-left: 15px;
}