/*colors provided in apps style*/
:root {
  --link-color: #149e94;
  --link-color-hover: #06decf;
  --color-black: #000;

  --color-gray: #999;
  --color-dark-gray: #666;
  --color-black: #000;

  --main-color: #2fd4ce;
  --main-color-second: #29bdb8;

  --main-color-active: #599caa;

  --color-white: #fff;

  --hr-line: #838d99;

  --body-background: #d8d8d8;
  --body-color-text: #333;
  --main-block-background: var(--color-white);

  --footer-background: #0d1011;

  --header-background: #191d1f;
  --search-simple-button: var(--color-dark-gray);
  --menu-background: #121617;

  --search-background: #323233;

  --search-color-text: var(--color-gray);
  --search-placeholder-color-text: #ccc;

  --auth-wrapper-background: #273033;
  --auth-gradient-firts: #373739;
  --auth-gradient-second: #121213;

  --border-color: #ddd;

  --table-head-background: #303047;
}


a:visited,
a:link,
a{
  color: var(--link-color);
}

a:hover, a:active, a.on {
  color: var(--link-color-hover);
}

* {
  outline: none !important;
}

a.btn-danger{
  color: var(--color-white);
}
input[type="radio"],
input[type="checkbox"] {
  margin: 6px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

.form-control,
.btn {
  border-radius: 2px !important;
}

.btn-cta, .btn-cta2, a.btn-cta, a.btn-cta2 {
  background: var(--main-color);
  background: -webkit-linear-gradient(var(--main-color) 0%, var(--main-color-second) 100%);
  background: -o-linear-gradient(var(--main-color) 0%, var(--main-color-second) 100%);
  background: linear-gradient(var(--main-color) 0%, var(--main-color-second) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=var(--main-color), endColorstr=var(--main-color-second) ,GradientType=0 );
  color: var(--color-white);
  border: none;
  font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
  font-weight: normal;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  padding: 7px 12px;
}
.btn-cta:active {
  background: var(--main-color-active);
  background: -moz-linear-gradient(top, var(--main-color-active) 0%, var(--main-color-second) 100%);
  background: -webkit-linear-gradient(top, var(--main-color-active) 0%, var(--main-color-second) 100%);
  background: linear-gradient(to bottom, var(--main-color-active) 0%, var(--main-color-second) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=var(--main-color-active), endColorstr=var(--main-color-second), GradientType=0);
  color: var(--color-white);
}

.itsrequired {
  position: relative;
}
.itsrequired:before {
  content: '*';
  position: absolute;
  left: 12px;
  top: -11px;
  font-size: 22px;
  color: var(--link-color);
  font-weight: bold;
}

.pointer{
  cursor: pointer;
}

hr {
  border-top: 1px solid var(--hr-line);
}

@media (min-width: 992px) {
  .pull-right-md {
    float: right;
  }
}

@media (min-width: 1220px) {
  .text-right-lg {
    text-align: right;
  }
}

.xnosmall {
  display: none;
}
@media (min-width: 768px) {
  .xnosmall {
    display: block;
  }
}

@media (min-width: 992px) {
  .text-right-md {
    text-align: right;
  }
}

.tdhide-sm {
  display: none;
}
@media (min-width: 992px) {
  .tdhide-sm {
    display: table-cell;
  }
}

table.va-middle > tbody > tr > td,
tr.va-middle > td,
td.va-middle {
  vertical-align: middle;
}

.mediahelp:after {
  content: "xs < 768px";
}
@media (min-width: 768px) {
  .mediahelp:after {
    content: "sm 768px";
  }
}
@media (min-width: 992px) {
  .mediahelp:after {
    content: "md 992px";
  }
}
@media (min-width: 1220px) {
  .mediahelp:after {
    content: "lg 1220px";
  }
}

html {
  overflow: auto;
  height: 100%;
}

body {
  height: 100%;
  font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
  color: var(--body-color-text);
  background: var(--body-background);
  font-size: 100%;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}

body {
  padding: 0 !important;
}

.textured {
  background-color: var(--color-white);
  background-image: url(../images/bg_page_1.png);
  background-repeat: repeat-x;
  background-size: 450px;
  background-position: bottom;
}

.page_order {
  background-color: var(--color-white);
}

.page_wrapper {
  position: relative;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin-bottom: -200px !important;
}

.page_buffer {
  position: relative;
  height: 200px;
}

.page_footer {
  position: relative;
  min-height: 200px;
  color: var(--body-color-text);
  background: var(--footer-background);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
}

.footer-content > div:first-child {
  grid-column: 1 / 2;
}

.footer-content > div:last-child {
  grid-column: 3 / -1;
}

@media (max-width: 767px) {
  .footer-content > div:first-child {
    grid-column: 1 / 3;
  }

  .footer-content > div:nth-child(2) {
    grid-column: 3 / -1;
  }

  .footer-content > div:last-child {
    grid-column: 1 / -1;
    margin-top: 30px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--main-color-second);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
}

h1.alt,
h2.alt,
h3.alt,
h4.alt,
h5.alt,
h6.alt {
  color: var(--color-white);
}

h1 {
  font-size: 2.4rem;
}
@media (min-width: 500px) {
  h1 {
    font-size: 3.0rem;
  }
}
@media (min-width: 768px) {
  h1 {
    font-size: 3.6rem;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 4.2rem;
  }
}
@media (min-width: 1220px) {
  h1 {
    font-size: 4.8rem;
  }
}

h2 {
  font-size: 2.1rem;
}
@media (min-width: 500px) {
  h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  h2 {
    font-size: 3.0rem;
  }
}
@media (min-width: 992px) {
  h2 {
    font-size: 3.4rem;
  }
}
@media (min-width: 1220px) {
  h2 {
    font-size: 4.0rem;
  }
}

h3 {
  font-size: 3rem;
}

h4 {
  font-size: 2.5rem;
  font-weight: 400;
}

h5 {
  font-size: 2rem;
  font-weight: 400;
}

h6 {
  font-size: 1.6rem;
  font-weight: 400;
}

.shopping-cart-wrapper a
{
  text-decoration: none;
}



a.alt {
  color: var(--color-white);
  text-decoration: underline;
}
a.alt:hover {
  color: var(--color-white);
  text-decoration: none;
}

.layout {
  position: relative;
  width: 93vw;
  min-width: 300px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .layout {
    width: 728px;
  }
  #main {
      min-height: calc(100% - 438px);
  }
  #main .layout{
      width: 758px;
  }
}
@media (min-width: 992px) {
  .layout {
    width: 962px;
  }
  #main {
      min-height: calc(100% - 360px);
  }
  #main .layout{
      width: 992px;
  }
}
@media (min-width: 1220px) {
  .layout {
    width: 1180px;
  }
  #main {
      min-height: calc(100% - 336px);
  }
  #main .layout{
      width: 1210px;
  }
}

#main .layout{
    background: var(--main-block-background);
    padding: 3rem 15px 0px 15px;
}

.mainCenter {
    margin-bottom: 15px;
}

/* HEADER */

#top {
  position: relative;
  z-index: 2;
  background: var(--header-background) left top repeat-x;
}

.logo-site {
  position: relative;
  display: inline-block;
  margin: 28px 0;
  width: 100%;
  height: 33px;
  vertical-align: top;
  background-size: contain;
}

.logo-site img {
  width: 100%;
}

.search_block_wrapper{
  margin: 25px 0 5px;
  align-items:flex-start;
  }

#searchBlock {
  position: relative;
  line-height: 30px;
  padding: 0;
  margin: 0;
  width: 100%;
}

#searchSimple {
  position: relative;
  margin-right: 0;
  height: 3rem;
  background: var(--search-background);
  border-radius: 3px;
  padding-right: 0;
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.4);
}

#searchSimple input[type=text] {
  width: 100%;
  background: transparent;
  border: none;
  height: 30px;
  line-height: 30px;
  color: var(--search-color-text);
  outline: none;
  padding: 0 0 0 10px;
}

#searchSimple input[type=text]::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--search-placeholder-color-text);
    opacity: 1; /* Firefox */
}

#searchSimple input[type=text]:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--search-placeholder-color-text);
}

#searchSimple input[type=text]::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--search-placeholder-color-text);
}


#searchSimple button {
  position: absolute;
  right: 0;
  top: 2px;
  background: transparent;
  border: none;
  color: var(--search-simple-button);
  outline: none;
}
#searchSimple ::-webkit-input-placeholder {
  color: var(--color-dark-gray);
}
#searchSimple ::-moz-placeholder {
  color: var(--color-dark-gray);
}
#searchSimple :-ms-input-placeholder {
  color: var(--color-dark-gray);
}
#searchSimple :-moz-placeholder {
  color: var(--color-dark-gray);
}

#searchAdvanced {
  position: relative;
  text-align: right;
}

#searchAdvanced a {
  text-decoration: none;
  border-bottom: 1px dotted var(--link-color);
}

.search-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 8;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.cart_auth_wrapper{
    align-items: center;
    justify-content: flex-end!important;
    padding-right: 0;
}

.auth_wrapper{
    background: var(--auth-wrapper-background);
    background: -moz-linear-gradient(top, var(--auth-gradient-firts) 0%, var(--auth-gradient-second) 100%);
    background: -webkit-linear-gradient(top, var(--auth-gradient-firts) 0%, var(--auth-gradient-second) 100%);
    background: linear-gradient(to bottom, var(--auth-gradient-firts) 0%, var(--auth-gradient-second) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=var(--auth-gradient-firts), endColorstr=var(--auth-gradient-second),GradientType=0 );
    align-items:center;
}

@media (max-width: 991px) {
  .auth_wrapper{
    background: none;
  }
}

.elements-centered {
  display:flex;
  align-items: center; /* Vertical center alignment */
  justify-content: center; /* Horizontal center alignment */
}

#auth {
  height: 90px;
  line-height: 26px;
  padding: 20px 10px;
  color: var(--color-dark-gray);
}

#auth ul {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
#auth ul li {
  float: left;
  padding-right: 10px;
}
#auth ul li.signup {
  padding-left: 10px;
}
#auth ul li.login {
  border-right: var(--color-dark-gray) 1px solid;
  background: url(../images/ico_userlock.png) left center no-repeat;
  padding-left: 25px;
}
#auth ul li a {
  color: var(--color-white);
}

.user-icon {
  width: 33px;
  color: var(--main-color);
}

#auth > .logged {
  width: 140px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  text-align: right;
  border-right: var(--color-dark-gray) 1px solid;
}

#auth > .logged > li:first-child {
  grid-column: 1 / -1;
}
#auth > .logged > li:last-child {
  grid-column: 2 / -1;
}

#lang {
  line-height: 11px;
  height: 31px;
  padding: 10px;
  position: relative;
  margin-left: 10px;
}
#lang:hover, #lang:active  {
  border-radius: 2px;
  background: var(--body-color-text);
  box-shadow: 2px 0px 2px rgba(0, 0, 0, 0.3);
}
#lang:hover ul {
  display: block;
}
#lang ul {
  list-style: none;
  position: absolute;
  display: none;
  z-index: 2;
  right: 0;
  top: 100%;
  padding: 10px 0;
  margin: 0;
  background: var(--body-color-text);
  border-radius: 2px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}
#lang ul li {
  padding: 0;
  margin: 0;
  white-space: nowrap;
}
#lang ul li a {
  display: block;
  text-align: right;
  color: var(--color-white);
  padding: 5px 10px;
  font-size: 12px;
}
#lang ul li a:hover {
  text-decoration: none;
  color: var(--color-dark-gray);
  background: var(--color-white);
}

.flag {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 11px;
  line-height: 11px;
  background-position: left top;
  background-repeat: no-repeat;
}

.en {
  background-image: url(../images/flag_uk.png);
}

.de {
  background-image: url(../images/countries/flag_de.png);
}

.fr {
  background-image: url(../images/countries/flag_fr.png);
}

.it {
  background-image: url(../images/countries/flag_it.png);
}

.es {
  background-image: url(../images/countries/flag_es.png);
}

.pt {
  background-image: url(../images/countries/flag_pt.png);
}

.ru {
  background-image: url(../images/countries/flag_ru.png);
}

#divSAwrapper {
  display: none;
  position: fixed;
  background: var(--color-white);
  right: 5px;
  top: 5px;
  left: 5px;
  bottom: 5px;
  text-align: left;
  border-radius: 4px;
  border-top: 1px solid var(--color-white);
  border-left: 1px solid var(--color-white);
  border-right: 1px solid var(--search-placeholder-color-text);
  border-bottom: 1px solid var(--search-placeholder-color-text);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  padding: 20px;
  z-index: 9;
}

.lnkAdvancedSearchBefore:before {
  position: absolute;
  width: 0;
  height: 0;
  content: '';
  border-bottom: 20px solid var(--color-white);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  right: 30px;
  top: 100%;
}

.lnkAdvancedSearch {
  font-size:18px;
  color: var(--color-white) !important;
}

.color-white {
  color: var(--color-white) !important;
}

@media (min-width: 992px) {
  #divSAwrapper {
    position: absolute;
    width: 962px;
    left: auto;
    bottom: auto;
  }
}
@media (min-width: 1220px) {
  #divSAwrapper {
    width: 1180px;
  }
}
@media (min-width: 992px) and (min-height: 400px) {
  #divSAwrapper {
    height: 350px;
  }
}
@media (min-width: 992px) and (min-height: 500px) {
  #divSAwrapper {
    height: 450px;
  }
}
@media (min-width: 992px) and (min-height: 700px) {
  #divSAwrapper {
    height: 650px;
  }
}
@media (min-width: 992px) and (min-height: 850px) {
  #divSAwrapper {
    height: 800px;
  }
}
@media (min-width: 992px) and (min-height: 1000px) {
  #divSAwrapper {
    height: 950px;
  }
}
#divSAwrapper a {
  border-bottom: none;
}
#divSAwrapper .btn-group a.btn-default {
  border-bottom: 1px solid var(--search-placeholder-color-text) !important;
}
#divSAwrapper .pagination > li > a, #orderHistory .pagination > li > a {
  border-bottom: 1px solid var(--border-color) !important;
  color: var(--link-color);
}
#divSAwrapper .pagination > .active > span, #orderHistory .pagination > .active > span {
  background-color: var(--link-color);
  border-color: var(--link-color);
  color: var(--color-white)fff;
}
#divSAwrapper a#divSAclose {
  display: block;
  position: absolute;
  top: 3px;
  right: 3px;
  text-decoration: none;
  border-bottom: none;
  font-size: 20px;
  line-height: 1;
  padding: 1px 4px;
  border-radius: 3px;
  color: var(--body-color-text);
  z-index: 11;
}
#divSAwrapper a#divSAclose:hover {
  text-decoration: none;
  color: var(--color-white);
  background: var(--link-color);
}
#divSAwrapper #divSAcontent {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
#divSAwrapper #divSAcontent #loading {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8) url(../images/loader.gif) center center no-repeat;
  z-index: 10;
}
#divSAwrapper #divSAcontent #divSAleft {
  position: relative;
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 20px;
}
@media (min-width: 1220px) {
  #divSAwrapper #divSAcontent #divSAleft {
    float: left;
    width: 230px;
    border-bottom: none;
    border-right: 1px solid var(--color-gray);
    height: 100%;
    padding-right: 20px;
  }
}
#divSAwrapper #divSAcontent #divSAright {
  position: relative;
  padding-top: 20px;
}
@media (min-width: 1220px) {
  #divSAwrapper #divSAcontent #divSAright {
    margin-left: 230px;
    padding-top: 0;
    padding-left: 20px;
  }
}
#divSAwrapper #divSAcontent .divFilter {
  margin-bottom: 15px;
}
@media (min-width: 1220px) {
  #divSAwrapper #divSAcontent .divFilter {
    margin-right: 200px;
  }
}

.ico_home {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 15px;
  vertical-align: middle;
  background: url(../images/ico_home.png) left top no-repeat;
}

#menu {
  position: relative;
  min-height: 4rem;
  background: var(--menu-background);
}
#menu ul {
  padding: 0;
  margin: 0;
  text-align: center;
  list-style: none;
}
#menu ul li {
  display: inline-block;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 4rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  #menu ul li {
    font-size: 1.6rem;
  }
}
#menu ul li a {
  color: var(--color-white);
  text-decoration: none;
  padding: 0 0.5rem;
}
@media (min-width: 768px) {
  #menu ul li a {
    padding: 0 1.5rem;
  }
}
#menu ul li a:hover, #menu ul li a.on {
  text-decoration: none;
  color: var(--link-color-hover);
}
#menu ul li a:hover span.ico_home, #menu ul li a.on span.ico_home {
  background: url(../images/ico_home.png) left bottom no-repeat;
}
ul li.active a {
  text-decoration: none !important;
  color: var(--link-color-hover) !important;
}
#menu ul li.active a span.ico_home {
  background: url(../images/ico_home.png) left bottom no-repeat;
}

@media (max-width: 767px) {
  #logo_mss{
    margin: 10px 0;
    width: 40%;
  }
  #auth {
    height: auto;
    padding: 10px 5px;
  }
  #top{
      background-size: cover;
      min-height: 80px;
  }
  .search_block_wrapper{
    margin-top: 10px;
  }

  .table-responsive {
    font-size: 13px;
    border: none;
  }
}

/* END HEADER */

table.tbl {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.2;
}
table.tbl thead th {
  vertical-align: bottom;
  padding: 5px 5px 5px 5px;
}
table.tbl thead th:first-child {
  padding-left: 9px;
}
table.tbl tbody td {
  vertical-align: middle;
  padding: 5px 5px 5px 5px;
}
table.tbl tbody td:first-child {
  padding-left: 9px;
}
table.tbl tbody tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.05);
}
table.tbl tbody tr.tdTotal {
  background: transparent !important;
  border-top: 1px solid var(--link-color);
}

.color-bca {
  text-align: center;
  color: #39f;
}
.color-bcb {
  text-align: center;
  color: #3c6;
}
.color-bcc {
  text-align: center;
  color: #c63;
}
.color-bcd {
  text-align: center;
  color: #c63;
}


table.tbl td.bca {
  text-align: center;
  color: #39f;
}
table.tbl td.bcb {
  text-align: center;
  color: #3c6;
}
table.tbl td.bcc {
  text-align: center;
  color: #c63;
}
table.tbl td.bcd {
  text-align: center;
  color: #c63;
}
table.tbl td.bc {
  text-align: center;
  color: #000;
}
table.tbl td.tdImg img {
  max-width: 70px;
  max-height: 150px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
table.tbl td.tdImg2 img {
  max-width: 70px;
  max-height: 150px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.tdPrice {
  color: var(--main-color-second);
  font-weight: bold;
  text-align: right;
}

.item, .item2 {
  position: relative;
  min-height: 420px;
  background: var(--color-white);
  border: 1px solid;
  margin-bottom: 30px;
  padding: 9px 9px 50px 9px;
  border-color: var(--color-white) var(--border-color) var(--border-color) var(--color-white);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  line-height: 1;
}
.item:hover, .item2:hover {
  border-color: var(--main-color-second);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}
.item:hover .desc, .item2:hover .desc {
  color: var(--main-color-second);
}
.item .bc, .item2 .bc, .item .bca, .item2 .bca, .item .bcb, .item2 .bcb, .item .bcc, .item2 .bcc, .item .bcd, .item2 .bcd, .card-info {
  position: absolute;
  width: 40px;
  left: 0;
  top: 0;
  line-height: 1;
  z-index: 1;
  margin-left: 5px;
  margin-top: 4px;
}
.item .bc:before, .item2 .bc:before, .item .bca:before, .item2 .bca:before, .item .bcb:before, .item2 .bcb:before, .item .bcc:before, .item2 .bcc:before, .item .bcd:before, .item2 .bcd:before, .card-info:before {
  border-right: 40px solid transparent;
  content: '';
  position: absolute;
  top: -5px;
  left: -6px;
}
.item .bc span, .item2 .bc span, .item .bca span, .item2 .bca span, .item .bcb span, .item2 .bcb span, .item .bcc span, .item2 .bcc span, .item .bcd span, .item2 .bcd span, .card-info span {
  position: relative;
  z-index: 4;
  color: var(--color-white);
  font-weight: bold;
}
.item .info.bca:before, .item2 .info.bca:before {
  border-top: 30px solid #39f;
  border-left: 30px solid #39f;
}
.item .info.bcb:before, .item2 .info.bcb:before {
  border-top: 30px solid #3c6;
  border-left: 30px solid #3c6;
}
.item .info.bcc:before, .item2 .info.bcc:before {
  border-top: 30px solid #c63;
  border-left: 30px solid #c63;
}
.item .info.bcd:before, .item2 .info.bcd:before {
  border-top: 30px solid #c63;
  border-left: 30px solid #c63;
}

.item .bca:before, .item2 bca:before {
  border-top: 32px solid #39f;
}
.item .bcb:before, .item2 .bcb:before {
  border-top: 32px solid #3c6;
}
.item .bcc:before, .item2 .bcc:before {
  border-top: 32px solid #c63;
}
.item .bcd:before, .item2 .bcd:before {
  border-top: 32px solid #c63;
}

.card-info:before {
  border-top: 38px solid var(--main-color);
}

.box-cond-info {
  color: var(--color-white);
  font-size: 12px;
  margin-top: 3px;
}

.item .divPrice, .item2 .divPrice {
  position: absolute;
  right: 10px;
  top: -5px;
  padding: 3px 5px;
  line-height: 1;
  font-size: 20px;
  color: var(--color-white);
  background: var(--main-color-second);
  border-radius: 3px;
  box-shadow: 1px 1px 10px var(--main-color-second);
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
}
.item .divImg, .item2 .divImg {
  border: 1px solid var(--border-color);
  margin-bottom: 10px;
  height: 130px;
}
.item .divImg img, .item2 .divImg img {
  display: block;
  width: 100%;
  height: 100%;
}
.item .block, .item2 .block {
  border-bottom: 1px dotted #bbb;
  padding-bottom: 9px;
  height: 3em;
  line-height: 1em;
}
.meta {
  color: var(--main-color-second);
  font-weight: bold;
}
.item .action, .item2 .action {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 10px;
  text-align: center;
}

.item2 {
  padding-top: 40px;
  min-height: 100px;
}

.page_footer {
  padding-top: 20px;
  color: #eee;
}
.page_footer a {
  color: #eee;
}
.page_footer a:hover {
  color: var(--link-color);
}
.page_footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page_footer ul li {
  position: relative;
}

.centerIndex {
  margin: 20px 0 20px 0;
}

@media (min-width: 500px) {
  .dummy {
    height: 590px;
  }

  .centerTitle {
    height: 590px;
    width: 98%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media (min-width: 768px) {
  .centerTitle {
    height: 440px;
  }
}
@media (min-width: 992px) {
  .centerTitle {
    height: 370px;
  }
}
@media (min-width: 1220px) {
  .centerTitle {
    height: 340px;
  }
}

.autocompleter {
  display: block;
  position: absolute;
  max-height: 400px;
  margin-top: 5px;
  overflow-y: auto;
  background: var(--color-white);
  line-height: 1.2;
  width: 100%;
  font-size: 1.2rem;
  max-width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 4px 4px 4px 4px;
  border-top: 0px;
  padding: 9px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.autocompleter-alert{
  font-size: 15px;
  font-weight: 600;
  color: #a94442;
}

@media (min-width: 992px) {
  .autocompleter {
    width: 500px;
  }
}
@media (min-width: 1220px) {
  .autocompleter {
    width: 800px;
  }
}

#main {
  position: relative;
  min-height: calc(100% - 331px);
  display: flex;
}

.img-item_view  {
  display: block;
  max-width: 285px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  max-height: 300px
}

.img-lp {
  display: block;
  width: 100%;
  max-height: 300px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.descWrapper {
  position: relative;
  background: var(--color-white);
  padding: 20px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
}

.address-container {
  position: relative;
  background: var(--color-white);
  padding: 20px 0;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
}

.itemDescription {
  position: relative;
}
.itemDescription dt {
  display: inline;
  float: left;
  width: 20rem;
}
.itemDescription dd {
  display: block;
  float: left;
  width: 20rem;
  margin-top: 2rem;
  margin-left: -20rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--main-color-second);
}


/* Custom Change */

.flex-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
}

.flex-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-justify-between {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.mar-t-15 {
    margin-top: 15px
}

.mar-b-30 {
    margin-bottom: 30px;
}

.hoverable {
    -webkit-transition: -webkit-box-shadow .15s;
    -moz-transition: box-shadow .15s;
    -o-transition: box-shadow .15s;
    transition: -webkit-box-shadow .15s;
    transition: box-shadow .15s;
    transition: box-shadow .15s, -webkit-box-shadow .15s;
}

.valign-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 768px) {
  .hidden-desktop {
    display: none;
  }
}

@media (max-width: 767px) {
  .text-xs-left{
    text-align: left;
  }

  .hidden-mobile {
    display: none;
  }
}

/* Start Toast*/

#alert_block{
    min-width: 250px;
    max-width: 450px;
    position: fixed;
    z-index: 1060;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 30px;
}



.snackbar, .snackbar-info{
    visibility: hidden;
    background-color: var(--body-color-text);
    color: var(--color-white);
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    font-size: 17px;
}

.snackbar-danger{
  color: #a94442;
  background-color: #f2dede;
}
.snackbar-warning{
  color: #8a6d3b;
  background-color: #fcf8e3;
}
.snackbar-success{
  color: #3c763d;
  background-color: #dff0d8;
}

.snackbar+.snackbar{
  margin-top: 10px;
}

.snackbar.show {
    visibility: visible;

}

/* End Toast */

/* Header Cart */
.shopping-cart-wrapper{
    position: relative;
    text-align: center;
}

.shopping-cart-wrapper .shopping-cart-link {
    line-height: 40px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 20px;
}

.shopping-cart-wrapper .shopping-cart {
    margin: 20px 0;
    top: 100%;
    right: 0;
    background: var(--color-white);
    width: 320px;
    position: absolute;
    border-radius: 3px;
    padding: 20px;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: none;
    max-height: 450px;
    overflow: auto;
}

.shopping-cart-wrapper .shopping-cart:after {
    bottom: 100%;
    left: 89%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: var(--color-white);
    border-width: 8px;
    margin-left: -8px;
}


.shopping-cart-wrapper .shopping-cart .shopping-no-result {
    width: 100%;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
}

.shopping-cart-wrapper .shopping-cart .shopping-cart-header {
    border-bottom: 1px solid #E8E8E8;
    padding-bottom: 15px;
}

.shopping-cart-wrapper .shopping-cart .shopping-cart-header .cart-icon {
    align-items: center;
    color: #515783;
    font-size: 24px;
    margin-right: 7px;
    float: left;
}

.shopping-cart-wrapper .shopping-cart .shopping-cart-header .cart-icon i {
    color: var(--main-color-active);
}

.shopping-cart-wrapper .shopping-cart .shopping-cart-header .cart-icon .badge {
    margin-left: 3px;
    margin-top: 3px;
    background-color: var(--main-color-active);
}

.shopping-cart-wrapper .shopping-cart .shopping-cart-items {
    display: flex;
    flex-direction: column;
    padding-top: 15px;
    padding-left: 0px;
    padding-right: 0px;
}

.shopping-cart-wrapper .shopping-cart .shopping-cart-items li {
    align-items: center;
    display: inherit !important;
    margin-bottom: 18px;
}

.shopping-cart-wrapper .shopping-cart .shopping-cart-items span {
    line-height: 1.7;
}

.shopping-cart-wrapper .shopping-cart .shopping-cart-items .price_block {
    line-height: 1.2;
}

.shopping-cart-wrapper .shopping-cart .shopping-cart-items img {
    max-width: 70px;
    margin-right: 15px;
    max-height: 70px;
}

.shopping-cart-wrapper .shopping-cart .shopping-cart-items .item-name {
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
    color: inherit;
    line-height: 1.2;
    font-weight: 300;
    text-align: left;
}

.shopping-cart-wrapper .shopping-cart .shopping-cart-items .item-name:hover {
    color: #39f;
}

.shopping-cart-wrapper .shopping-cart .shopping-cart-items .item-price {
    color: #39f;
    margin-right: 8px;
    font-weight: 300;
}

.shopping-cart-wrapper .shopping-cart .shopping-cart-items .item-quantity {
    color: var(--main-color-active);
    font-weight: 300;
}

@media (max-width: 767px) {
  .shopping-cart-wrapper .shopping-cart{
    left: 0;
    right: auto;
    transform: translate3d(-88%,0,0);
  }

  .header-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
  }
}

/* End Header Cart */

.link-new-address {
    margin-bottom: 15px;
}

.link-new-address:hover {
    text-decoration: none;
}


/* Item Address Block*/

.item-address-block {
    padding: 20px 25px;
    min-height: 250px;
    justify-content: space-between;
}

.item-address-block .card-info {
    display: none;
}

.item-address-block.active .card-info {
    display: block;
}

.item-address-block:hover {}

.item-address-block label {
    cursor: pointer;
}

.item-address-block p {
    font-weight: 300;
}

.item-address-block .item-btn-block {
    padding-top: 15px;
    border-top: 1px dashed #bbb;
}

.item-address-block .item-btn-block a {
    margin-right: 15px;
}

.item-address-block .item-btn-block a:hover {
    text-decoration: none;
    opacity: 0.65;
}

.item-address-block .item-btn-block a:last-child {
    margin-right: 0;
}

.item-address-block .item-btn-block a {
    outline: none;
}

.item-address-block .item-btn-block .item-edit {
    color: var(--link-color);
}


.item-address-block .item-btn-block .item-delete {
    color: #e50d0e
}


/* End Item Address Block*/


/* Carousel Item Address*/

.slick-list {
    outline: none !important;
}

.slick-slide:focus {
    outline: none;
}


.slick-prev, .slick-next {
    background-color: transparent;
    border: none;
    font-size: 25px;
    height: 33px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    background: var(--color-white);
    color: #515151;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12), 0 2px 4px -1px rgba(0, 0, 0, .3);
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12), 0 2px 4px -1px rgba(0, 0, 0, .3);
    outline: none;
    transform: translate3d(0%, -50%, 0);
}

.slick-track,#item-carousel .slick-track{
    margin-left: 0;
}

.slick-prev,#item-carousel .slick-prev{
    left: 0;
}

.slick-next,#item-carousel .slick-next{
    right: 0;
}

.slick-next.slick-disabled,
.slick-prev.slick-disabled

{
    display: none !important;
}

#item-carousel{
    margin-bottom: 40px;
}

.item-carousel-wrapper:hover{
    text-decoration: none;
}

.item-carousel-wrapper:hover .item2{
    box-shadow: 0 8px 17px 2px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
}

.item-carousel-wrapper .item2{
    padding: 0;
    transition:all .2s ease;
    background-color: var(--color-white);
     box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.3);
    overflow: hidden;
    border:none;
    margin-bottom: 20px;
    min-height: 190px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.1;
}

.item-carousel-wrapper .img-container{
  overflow: hidden;
  height: 80px;
}

.item-carousel-wrapper:hover img{
    opacity: 0.9;
    transform: scale3d(1.1, 1.1, 1.1);
    transition: all .2s ease;
}

.item-carousel-wrapper img{
  margin: 0 auto 10px;
  max-width: 75px;
  max-height: 75px;
}

.slick-no-slide .slick-track {
    width: 100% !important;
    text-align: center;
    transform: inherit !important;
}

.slick-no-slide .slick-slide {
    float: none;
    display: inline-block;
}


/* End Carousel Item Address*/

/* New address block */

.new_address_form{
    display: none;
}

.new_address_form label{
    font-weight: 400;
}

.click_tr{
  cursor: pointer;
}

/* End new address block */

.modal-open {
  overflow: initial !important;
}

#burgerMenuToggle
{
  display: inline-block;
  position: fixed;
  top: 13px;
  left: 13px;

  z-index: 1;

  -webkit-user-select: none;
  user-select: none;
}

#burgerMenuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;

  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */

  -webkit-touch-callout: none;
}

#burgerMenuToggle > span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #989898;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0;

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
  background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
  opacity 0.55s ease;
}

#burgerMenuToggle span:first-child
{
  transform-origin: 0 0;
}

#burgerMenuToggle span:nth-last-child(2)
{
  transform-origin: 0 100%;
}

#burgerMenuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #eee;
}

#burgerMenuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#burgerMenuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

#burgerMenuToggle > ul
{
  position: fixed;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;

  background: var(--header-background);
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(-100%, 0);

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#burgerMenuToggle > ul li
{
  padding: 5px 0;
  font-size: 22px;
}

#burgerMenuToggle a {
  color: #eee;
  text-decoration: none;
  padding: 0 0.5rem;
}

#burgerMenuToggle input:checked ~ ul
{
  transform: none;
}

@keyframes ripple {
        0% {
            box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
        }
        50% {
            box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1);
        }
        100% {
            box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0);
        }
    }

    .md-radio {
        margin: 16px 0;
    }

    .md-radio-line-align {
      line-height: 22px;
    }

    .md-radio.md-radio-inline {
        display: inline-block;
    }

    .md-radio input[type="radio"] {
        display: none;
    }

    .md-radio input[type="radio"]:checked+label:before {
        border-color: #303047;
        animation: ripple 0.2s linear forwards;
    }

    .md-radio input[type="radio"]:checked+label:after {
        transform: scale(1);
    }

    .md-radio label {
        display: inline-block;
        position: relative;
        padding: 0 30px;
        margin-bottom: 0;
        cursor: pointer;
        vertical-align: bottom;
        font-weight: 400;
        line-height: 20px;
    }

    .md-radio label h5{
        margin-bottom: 0px !important;
    }

    .md-radio label:before,
    .md-radio label:after {
        position: absolute;
        content: '';
        border-radius: 50%;
        transition: all .3s ease;
        transition-property: transform, border-color;
    }

    .md-radio label:before {
        left: 0;
        top: 0;
        width: 20px;
        height: 20px;
        border: 2px solid #303047;
    }

    .md-radio label:after {
        top: 5px;
        left: 5px;
        width: 10px;
        height: 10px;
        transform: scale(0);
        background: #303047;
    }

    /* END Checkbox material */

    .table_dark thead tr{
        background: var(--table-head-background);
        color: var(--color-white);
    }
    .table_dark thead tr th{
        vertical-align: middle;
    }

    .block_wrapper {
        box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
        background-color: var(--color-white);
        margin-bottom: 50px;
        position: relative;
    }

    .block_header {
        text-transform: uppercase;
        font-weight: 600;
        line-height: 1;
        padding: 15px 25px;
        background: var(--main-color-second);
        color: var(--color-white);
    }

    .block_body {
        padding: 15px;
    }

    .block_body .form-group label{
        font-weight: 400;
        margin-bottom: 1px;
    }


    .numered_block{
        position: relative;
        margin-top: 95px;
    }

    .numered_block:before{
        position: absolute;
        z-index: 1;
        left: 50%;
        top: -70px;
        display: block;
        width: 50px;
        height: 50px;
        padding: 11px;
        content: '1';
        -webkit-transform: translate3d(0,-50%,0);
        -moz-transform: translate3d(0,-50%,0);
        transform: translate3d(-50%,0,0);
        text-align: center;
        font-size: 18px;
        font-weight: 500;
        color: black;
        border: 1px solid #303047;
        background-color: var(--color-white);
        -webkit-box-shadow: 0 1px 5px 0 rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.12);
        box-shadow: 0 1px 5px 0 rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.12);
    }

    .numered_block:after{
        position: absolute;
        top: -45px;
        right: 0;
        left: 0;
        content: '';
        border-top: 1px solid #303047;
    }

    .payment_method.numered_block:before{
        content: '2'
    }
    .payment_form.numered_block:before{
        content: '3'
    }


    .paypal_info_wrapper{
        display: none;
    }

    .payment_block_wrapper{
        margin-top: 50px;
        margin-bottom: 50px;
    }



    .checkout_order_error_wrapper{
        display: inline-block;
        background-color: #4cae4c;
        color: var(--color-white);
        padding: 15px 25px;
        text-transform: uppercase;
        font-weight: 600;
    }

    .block_address_wrapper{
        display: none;
    }

    .block_address_toggle i{
        color: var(--color-white);
        font-size: 13px;
    }

    .cvc_block{
        position: relative;
    }

    .cvc_block label:hover .number_example{
        display: block;		
    }

    .number_example{
        box-shadow: 0 8px 17px 2px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
        padding: 15px;
        position: absolute;
        z-index: 3;
        background-color: var(--color-white);
        display: none;
        bottom: 100%;
		color: var(--body-color-text);
    }

    .number_example img{
        max-width: 200px;
        margin: 15px 0;
    }

    @media(max-width: 991px){
        .number_example{
            text-align: center;
        }
    }

    .brand_wrapper{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-left: -4px;
        margin-right: -4px;
    }

    .brand_wrapper span{
        margin: 4px 15px 4px 0;
        display: inline-block;
        line-height: 1.4;
        padding: 0px 5px;
        transition: all .2s ease;
    }

    .brand_wrapper span:hover{
        color:#eee;
        cursor: default;
        background-color: var(--body-color-text);
        transform: scale3d(1.3,1.3,1.3);
    }

    .brand_wrapper span:hover a{
        color:#eee;
    }

    .shipping_info_wrapper .panel-custom{
        border-color: var(--main-color-second);
        margin-bottom: 10px;
    }
    .shipping_info_wrapper .panel-custom .panel-heading{
        background-color: var(--main-color-second);
        text-transform: uppercase;
        border-color: var(--main-color-second);
    }

    .shipping_info_wrapper .panel-custom .panel-heading a{
        color: white
    }

    .shipping_info_wrapper .panel-custom > .panel-heading + .panel-collapse > .panel-body{
        border-top-color: var(--main-color-second);
    }

    .panel-custom-themed {
      background-color: var(--main-color-second);
      text-transform: uppercase;
      border-color: var(--main-color-second);
    }

    #discount-error {
        line-height: 25px;
        color:red;
        padding-right:10px;
    }

    /* @group Blink */
    .blink {
        -webkit-animation: blink .50s linear infinite;
        -moz-animation: blink .50s linear infinite;
        -ms-animation: blink .50s linear infinite;
        -o-animation: blink .50s linear infinite;
        animation: blink .50s linear infinite;
    }
    @-webkit-keyframes blink {
        0% { opacity: 1; }
        50% { opacity: 1; }
        50.01% { opacity: 0; }
        100% { opacity: 0; }
    }
    @-moz-keyframes blink {
        0% { opacity: 1; }
        50% { opacity: 1; }
        50.01% { opacity: 0; }
        100% { opacity: 0; }
    }
    @-ms-keyframes blink {
        0% { opacity: 1; }
        50% { opacity: 1; }
        50.01% { opacity: 0; }
        100% { opacity: 0; }
    }
    @-o-keyframes blink {
        0% { opacity: 1; }
        50% { opacity: 1; }
        50.01% { opacity: 0; }
        100% { opacity: 0; }
    }
    @keyframes blink {
        0% { opacity: 1; }
        50% { opacity: 1; }
        50.01% { opacity: 0; }
        100% { opacity: 0; }
    }
    /* @end */

    .cart-blink {
        background-color: var(--main-color-second);
    }

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

    @-webkit-keyframes pulse {
      0% {
        -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
      }
      70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
      }
      100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
      }
    }
    @keyframes pulse {
      0% {
        -moz-box-shadow: 0 0 0 0 rgba(242,120,116, 0.8);
        box-shadow: 0 0 0 0 rgba(242, 120, 116, 0.8);
      }
      70% {
        -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
        box-shadow: 0 0 0 10px rgba(204,169,44, 0);
      }
      100% {
        -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
        box-shadow: 0 0 0 0 rgba(204,169,44, 0);
      }
    }

    .anim-pulse {
      -webkit-animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
      -moz-animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
      -ms-animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
      animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
    }

    .error-text {
      color: #a94442;
    }

    .pagination .first.disabled, .pagination .last.disabled {
        display: none;
    }

    .advanced-search-pagination {
        float:left;
        width:100%;
    }

    .row, .form-group {
      margin: 0 !important;
    }

    .item-meta {
      display: grid;
      grid-gap: 20px;
      margin-bottom: 10px;
    }

    .order-details {
      padding: 10px 10px 0 10px;
      display: grid;
      grid-gap: 15px;
      grid-template-columns: 1fr;
    }

    .order-details > div > div {
      padding-bottom: 10px;
    }

    .order-details > div:nth-child(odd) {
      text-align: left;
    }

    .order-details > div:nth-child(even) {
      text-align: right;
    }

    .view-row .eye-row {
      display: none;
    }

    .view-row:hover .eye-row {
      display: inline-block;
    }

    /* flex align*/
    /*
    ==========================================================================
    Flex variation
    ==========================================================================
    */

    /*Custom styles for additional flex alignment options.*/

    .flex-row            { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; -ms-flex-direction: row !important; flex-direction: row !important; }
    .flex-column         { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; -ms-flex-direction: column !important; flex-direction: column !important; }
    .flex-row-reverse    { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; -ms-flex-direction: row-reverse !important; flex-direction: row-reverse !important; }
    .flex-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; -ms-flex-direction: column-reverse !important; flex-direction: column-reverse !important; }

    .flex-wrap         { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important; }
    .flex-nowrap       { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important; }
    .flex-wrap-reverse { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important; }
    .justify-content-start   { -webkit-box-pack: start !important; -ms-flex-pack: start !important; justify-content: flex-start !important; }
    .justify-content-end     { -webkit-box-pack: end !important; -ms-flex-pack: end !important; justify-content: flex-end !important; }
    .justify-content-center  { -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important; }
    .justify-content-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important; }
    .justify-content-around  { -ms-flex-pack: distribute !important; justify-content: space-around !important; }

    .align-items-start    { -webkit-box-align: start !important; -ms-flex-align: start !important; align-items: flex-start !important; }
    .align-items-end      { -webkit-box-align: end !important; -ms-flex-align: end !important; align-items: flex-end !important; }
    .align-items-center   { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; }
    .align-items-baseline { -webkit-box-align: baseline !important; -ms-flex-align: baseline !important; align-items: baseline !important; }
    .align-items-stretch  { -webkit-box-align: stretch !important; -ms-flex-align: stretch !important; align-items: stretch !important; }

    .align-content-start   { -ms-flex-line-pack: start !important; align-content: flex-start !important; }
    .align-content-end     { -ms-flex-line-pack: end !important; align-content: flex-end !important; }
    .align-content-center  { -ms-flex-line-pack: center !important; align-content: center !important; }
    .align-content-between { -ms-flex-line-pack: justify !important; align-content: space-between !important; }
    .align-content-around  { -ms-flex-line-pack: distribute !important; align-content: space-around !important; }
    .align-content-stretch { -ms-flex-line-pack: stretch !important; align-content: stretch !important; }

    .align-self-auto     { -ms-flex-item-align: auto !important; -ms-grid-row-align: auto !important; align-self: auto !important; }
    .align-self-start    { -ms-flex-item-align: start !important; align-self: flex-start !important; }
    .align-self-end      { -ms-flex-item-align: end !important; align-self: flex-end !important; }
    .align-self-center   { -ms-flex-item-align: center !important; -ms-grid-row-align: center !important; align-self: center !important; }
    .align-self-baseline { -ms-flex-item-align: baseline !important; align-self: baseline !important; }
    .align-self-stretch  { -ms-flex-item-align: stretch !important; -ms-grid-row-align: stretch !important; align-self: stretch !important; }


    @media(min-width:768px){
      .flex-sm-row            {-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}
      .flex-sm-column         {-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
      .flex-sm-row-reverse    {-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}
      .flex-sm-column-reverse {-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}

      .flex-sm-wrap         {-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
      .flex-sm-nowrap       {-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}
      .flex-sm-wrap-reverse {-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}

      .justify-content-sm-start   {-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
      .justify-content-sm-end     {-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
      .justify-content-sm-center  {-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
      .justify-content-sm-between {-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
      .justify-content-sm-around  {-ms-flex-pack:distribute!important;justify-content:space-around!important}

      .align-items-sm-start       {-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
      .align-items-sm-end         {-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
      .align-items-sm-center      {-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
      .align-items-sm-baseline    {-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
      .align-items-sm-stretch     {-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}

      .align-content-sm-start     {-ms-flex-line-pack:start!important;align-content:flex-start!important}
      .align-content-sm-end       {-ms-flex-line-pack:end!important;align-content:flex-end!important}
      .align-content-sm-center    {-ms-flex-line-pack:center!important;align-content:center!important}
      .align-content-sm-between   {-ms-flex-line-pack:justify!important;align-content:space-between!important}
      .align-content-sm-around    {-ms-flex-line-pack:distribute!important;align-content:space-around!important}
      .align-content-sm-stretch   {-ms-flex-line-pack:stretch!important;align-content:stretch!important}

      .align-self-sm-auto     {-ms-flex-item-align:auto!important;-ms-grid-row-align:auto!important;align-self:auto!important}
      .align-self-sm-start    {-ms-flex-item-align:start!important;align-self:flex-start!important}
      .align-self-sm-end      {-ms-flex-item-align:end!important;align-self:flex-end!important}
      .align-self-sm-center   {-ms-flex-item-align:center!important;-ms-grid-row-align:center!important;align-self:center!important}
      .align-self-sm-baseline {-ms-flex-item-align:baseline!important;align-self:baseline!important}
      .align-self-sm-stretch  {-ms-flex-item-align:stretch!important;-ms-grid-row-align:stretch!important;align-self:stretch!important}
    }

    @media(min-width:992px){
      .flex-md-row            {-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}
      .flex-md-column         {-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
      .flex-md-row-reverse    {-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}
      .flex-md-column-reverse {-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}

      .flex-md-wrap           {-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
      .flex-md-nowrap         {-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}
      .flex-md-wrap-reverse   {-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}

      .justify-content-md-start   {-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
      .justify-content-md-end     {-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
      .justify-content-md-center  {-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
      .justify-content-md-between {-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
      .justify-content-md-around  {-ms-flex-pack:distribute!important;justify-content:space-around!important}

      .align-items-md-start       {-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
      .align-items-md-end         {-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
      .align-items-md-center      {-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
      .align-items-md-baseline    {-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
      .align-items-md-stretch     {-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}

      .align-content-md-start     {-ms-flex-line-pack:start!important;align-content:flex-start!important}
      .align-content-md-end       {-ms-flex-line-pack:end!important;align-content:flex-end!important}
      .align-content-md-center    {-ms-flex-line-pack:center!important;align-content:center!important}
      .align-content-md-between   {-ms-flex-line-pack:justify!important;align-content:space-between!important}
      .align-content-md-around    {-ms-flex-line-pack:distribute!important;align-content:space-around!important}
      .align-content-md-stretch   {-ms-flex-line-pack:stretch!important;align-content:stretch!important}

      .align-self-md-auto     {-ms-flex-item-align:auto!important;-ms-grid-row-align:auto!important;align-self:auto!important}
      .align-self-md-start    {-ms-flex-item-align:start!important;align-self:flex-start!important}
      .align-self-md-end      {-ms-flex-item-align:end!important;align-self:flex-end!important}
      .align-self-md-center   {-ms-flex-item-align:center!important;-ms-grid-row-align:center!important;align-self:center!important}
      .align-self-md-baseline {-ms-flex-item-align:baseline!important;align-self:baseline!important}
      .align-self-md-stretch  {-ms-flex-item-align:stretch!important;-ms-grid-row-align:stretch!important;align-self:stretch!important}
    }

    @media(min-width:1220px){
      .flex-lg-row            {-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}
      .flex-lg-column         {-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
      .flex-lg-row-reverse    {-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}
      .flex-lg-column-reverse {-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}

      .flex-lg-wrap           {-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
      .flex-lg-nowrap         {-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}
      .flex-lg-wrap-reverse   {-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}

      .justify-content-lg-start   {-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
      .justify-content-lg-end     {-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
      .justify-content-lg-center  {-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
      .justify-content-lg-between {-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
      .justify-content-lg-around  {-ms-flex-pack:distribute!important;justify-content:space-around!important}

      .align-items-lg-start       {-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
      .align-items-lg-end         {-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
      .align-items-lg-center      {-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
      .align-items-lg-baseline    {-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
      .align-items-lg-stretch     {-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}

      .align-content-lg-start     {-ms-flex-line-pack:start!important;align-content:flex-start!important}
      .align-content-lg-end       {-ms-flex-line-pack:end!important;align-content:flex-end!important}
      .align-content-lg-center    {-ms-flex-line-pack:center!important;align-content:center!important}
      .align-content-lg-between   {-ms-flex-line-pack:justify!important;align-content:space-between!important}
      .align-content-lg-around    {-ms-flex-line-pack:distribute!important;align-content:space-around!important}
      .align-content-lg-stretch   {-ms-flex-line-pack:stretch!important;align-content:stretch!important}

      .align-self-lg-auto     {-ms-flex-item-align:auto!important;-ms-grid-row-align:auto!important;align-self:auto!important}
      .align-self-lg-start    {-ms-flex-item-align:start!important;align-self:flex-start!important}
      .align-self-lg-end      {-ms-flex-item-align:end!important;align-self:flex-end!important}
      .align-self-lg-center   {-ms-flex-item-align:center!important;-ms-grid-row-align:center!important;align-self:center!important}
      .align-self-lg-baseline {-ms-flex-item-align:baseline!important;align-self:baseline!important}
      .align-self-lg-stretch  {-ms-flex-item-align:stretch!important;-ms-grid-row-align:stretch!important;align-self:stretch!important}
    }


    /*
    ==========================================================================
    Utilities for common `display` values
    ==========================================================================
    */

    .d-none         { display: none !important; }
    .d-inline       { display: inline !important; }
    .d-inline-block { display: inline-block !important; }
    .d-block        { display: block !important; }
    .d-table        { display: table !important; }
    .d-table-row    { display: table-row !important; }
    .d-table-cell   { display: table-cell !important; }
    .d-flex         { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; }
    .d-inline-flex  { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; }

    @media(min-width:768px){
      .d-sm-none         { display: none !important; }
      .d-sm-inline       { display: inline !important; }
      .d-sm-inline-block { display: inline-block !important; }
      .d-sm-block        { display: block !important; }
      .d-sm-table        { display: table !important; }
      .d-sm-table-row    { display: table-row !important; }
      .d-sm-table-cell   { display: table-cell !important; }
      .d-sm-flex         { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; }
      .d-sm-inline-flex  { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; }
    }
    @media(min-width:992px){
      .d-md-none         { display: none !important; }
      .d-md-inline       { display: inline !important; }
      .d-md-inline-block { display: inline-block !important; }
      .d-md-block        { display: block !important; }
      .d-md-table        { display: table !important; }
      .d-md-table-row    { display: table-row !important; }
      .d-md-table-cell   { display: table-cell !important; }
      .d-md-flex         { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; }
      .d-md-inline-flex  { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; }
    }
    @media(min-width:1220px){
      .d-lg-none         { display: none !important; }
      .d-lg-inline       { display: inline !important; }
      .d-lg-inline-block { display: inline-block !important; }
      .d-lg-block        { display: block !important; }
      .d-lg-table        { display: table !important; }
      .d-lg-table-row    { display: table-row !important; }
      .d-lg-table-cell   { display: table-cell !important; }
      .d-lg-flex         { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; }
      .d-lg-inline-flex  { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; }
    }

    /*
    ==========================================================================
    Text
    ==========================================================================
    */

    /*Alignment*/

    .layout-fill { margin: 0; width: 100%; min-height: 100%; height: 100%; }

    .text-justify  { text-align: justify !important; }
    .text-nowrap   { white-space: nowrap !important; }
    .text-truncate { overflow: hidden; -o-text-overflow: ellipsis; text-overflow: ellipsis; white-space: nowrap; }

    .text-left   { text-align: left !important; }
    .text-right  { text-align: right !important; }
    .text-center { text-align: center !important; }

    /*Transformation*/

    .text-lowercase  { text-transform: lowercase !important; }
    .text-uppercase  { text-transform: uppercase !important; }
    .text-capitalize { text-transform: capitalize !important; }

    /*Weight and italics*/

    .font-weight-light  { font-weight: 300 !important; }
    .font-weight-normal { font-weight: 400 !important; }
    .font-weight-bold   { font-weight: 700 !important; }
    .font-italic        { font-style: italic !important; }
    /**/

    .themed .panel-heading{
      background-color: var(--main-color-second);
      text-transform: uppercase;
      border-color: var(--main-color-second);
    }

    .themed.panel-primary{
      border-color: var(--main-color-second);
    }

    .order-detailed{

      grid-template-columns: 1.5fr 1fr;
    }

    .hr-themed {
      border-color: var(--main-color-second);
      margin:0px;
    }

    .panel-row{
      padding-left: 10px;
      padding-right: 10px;
    }

    /*new*/
    .order-details-info{
      padding-top: 10px;
    }

    .table-header-big tr th{
      padding-top: 5px;
      padding-bottom: 5px;
    }

    .order-detail-items{
      padding-left: 10px;
      padding-right: 10px;
    }

    .order-details-toggle{
      background-color: #f2f2f2;
      color: var(--main-color-second);
      font-weight: bold;
      font-size:22px;
      transition: all 0.3s ease-out;
    }

    .order-details-toggle:hover {
      background-color: #eaeaea;
      transition: all 0.3s ease-out;
    }

    .btn-action  {
      background: #FFAC0A;
      color:var(--color-white) !important;
    }

    .btn-action:hover {
      background: #DA9000;
    }

    .modal-body{
      color: var(--body-color-text);
      text-transform: initial;
    }

    .word-break-all {
      word-break: break-all;
    }

    /*scroll style*/
    .scroll-style::-webkit-scrollbar-track
    {
      -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
      background-color: #F5F5F5;
    }

    .scroll-style::-webkit-scrollbar
    {
      width: 6px;
      background-color: #F5F5F5;
    }

    .scroll-style::-webkit-scrollbar-thumb
    {
      background-color: #000000;
    }
    /*scroll style*/

    .rotation {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.8) url(../images/loader.gif) center center no-repeat;
      z-index: 10;
    }

    .rotation-div {
      min-height: 300px;
      background: rgba(255, 255, 255, 0.8) url(../images/loader.gif) center center no-repeat;
      z-index: 10;
    }

    .shipping-info-content {
      margin-top:30px;
    }

    .flex-fill{
        flex: 1 1 100%;
    }

    .label-form label {
      margin-right: 15px;
    }

    .settings-page.field-profile-type > div {
      float:left;
      padding:0 15px;
    }

    .color-warning {
      color: #e50d0e;
    }

    .color-success {
      color: var(--main-color-active);
    }

    .rotation {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.8) url(../images/loader.gif) center center no-repeat;
      z-index: 10;
    }

    .flex-grow-1 {
      flex-grow: 1!important;
    }

    .cart-total {
      width: 150px;
    }

    .color-red {
      color:red;
    }

    .text-price {
      color: var(--main-color-second);
      font-weight: bold;
      text-align: right;
    }

    .row-total {
      border-top: 1px solid var(--link-color);
      padding: 5px 5px 5px 5px;
    }

    .flex-vertical-align {
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }

    .cart_quantity {
      width:60px;
    }

    .inventory-qty {
      min-width: 33px;
    }

    .input-group .form-control{
      z-index: 1;
    }

    .stock-detail {
      padding-top: 5px;
      padding-bottom: 5px;
    }

    .wish-item-img {
      max-width: 200px;
    }

    .no-stock {
      color: #c63;
    }

    .in-stock {
      color: #FFAC0A;
    }

    .stock-header{
      background: var(--table-head-background);
      color: var(--color-white);
      padding: 5px 0;
    }

    .address-card p {
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
    }

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  padding-left: 5px;
}

a.asc:after {
  content: /*"\e113"*/ "\e151";
}

a.desc:after {
  content: /*"\e114"*/ "\e152";
}

.sort-numerical a.asc:after {
  content: "\e153";
}

.sort-numerical a.desc:after {
  content: "\e154";
}

.sort-ordinal a.asc:after {
  content: "\e155";
}

.sort-ordinal a.desc:after {
  content: "\e156";
}

.select2-search__field::-ms-clear {
  display: none;
}

.item-stock div.items-rows .stock-detail {
  border-bottom: 1px solid var(--hr-line);
}

.item-stock div.items-rows .stock-detail:last-child {
  border-bottom: none;
}

.item-stock div.items-rows .stock-detail:nth-child(even) {
  background: rgba(0, 0, 0, 0.05);
}

.table-image {
  max-width: 70px;
  height: auto;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.old-price {
  color:red;
  text-decoration: line-through;
  padding: 0 5px;
}

.current-price {
  padding: 0 5px;
}

.project-name{
  text-transform: capitalize;
}

@media (max-width: 1919px) {
  .textured {
    background-image: none;
  }
}

.item-detail-info h1 {
  font-size: 2.5rem;
  font-weight: 400;
}

.item-detail-info h4, .item-detail-info h6 {
  color: var(--color-black);
  font-size: 16px;
}

.item-detail-info .item-info-title {
  color: var(--main-color-second);
  font-size: 16px;
}

/*media*/

/* Custom small */
@media (max-width: 499px) {
  .item-meta {
    grid-template-columns: repeat(2,1fr);
  }

  .cc-window {
    max-width: none;
    height: 200px;
    top:30%;
    right: 0 !important;
    left: 0 !important;
    margin:0 auto;
  }
}

/* Extra Small Devices, Phones */
@media (min-width: 500px) {
  .item-meta {
    grid-template-columns: repeat(4,1fr);
  }

  .cc-window {
    max-width: none;
    height: 200px;
    top:30%;
    right: 0 !important;
    left: 0 !important;
    margin:0 auto;
  }
}

/* Small Devices, Tablets */
@media (min-width: 768px) {
  .cc-window {
    max-width: none !important;
    height: 200px;
    top:30%;
    right: 0 !important;
    left: 0 !important;
    margin:0 auto;
  }
}

/* Medium Devices, Desktops */
@media (min-width: 992px) {
  .item-meta {
    grid-template-columns: repeat(8,1fr);
  }
}

/* Large Devices, Wide Screens */
@media (min-width: 1220px) {
  .item-meta {
    grid-template-columns: minmax(150px, max-content) max-content;
  }

  .cc-window {
    width:700px !important;
    height: 200px;
    top:25%;
    right: 0 !important;
    left: 0 !important;
    margin:0 auto;
    box-shadow: 0 0 30px rgb(0 0 0 / 20%);
  }
}

.order-section {
  position: relative;
}

.flexible-item-attributes {
  line-height: 22px;
}


/* SO page stars */
.feedback-group,
.collaboration-group,
.products-group,
.company-group,
.quality-group
{
  display: inline-flex;
}

/* make hover effect work properly in IE */
.feedback__icon,
.collaboration__icon,
.products__icon,
.company__icon,
.quality__icon
{
  pointer-events: none;
}

/* hide radio inputs */
.feedback__input,
.collaboration__input,
.products__input,
.company__input,
.quality__input

{
  position: absolute !important;
  left: -9999px !important;
}

/* hide 'none' input from screenreaders */
.feedback__input--none,
.collaboration__input--none,
.products__input--none,
.company__input--none,
.quality__input--none
{
  display: none
}

/* set icon padding and size */
.feedback__label,
.collaboration__label,
.products__label,
.company__label,
.quality__label
{
  cursor: pointer;
  padding: 0 0.1em;
  font-size: 2rem;
}

.feedback__icon--star,
.collaboration__icon--star,
.products__icon--star,
.company__icon--star,
.quality__icon--star
{
  color: #149e94;
}

/* if any input is checked, make its following siblings grey */
.feedback__input:checked ~ .feedback__label .feedback__icon--star,
.collaboration__input:checked ~ .collaboration__label .collaboration__icon--star,
.products__input:checked ~ .products__label .products__icon--star,
.company__input:checked ~ .company__label .company__icon--star,
.quality__input:checked ~ .quality__label .quality__icon--star
{
  color: #ddd;
}

/* make all stars orange on rating group hover */
.feedback-group:hover .feedback__label .feedback__icon--star,
.collaboration-group:hover .collaboration__label .collaboration__icon--star,
.products-group:hover .products__label .products__icon--star,
.company-group:hover .company__label .company__icon--star,
.quality-group:hover .quality__label .quality__icon--star
{
  color: #149e94;
}

/* make hovered input's following siblings grey on hover */
.feedback__input:hover ~ .feedback__label .feedback__icon--star,
.collaboration__input:hover ~ .collaboration__label .collaboration__icon--star,
.products__input:hover ~ .products__label .products__icon--star,
.company__input:hover ~ .company__label .company__icon--star,
.quality__input:hover ~ .quality__label .quality__icon--star
{
  color: #ddd;
}
/*end SO page stars*/
.survey__p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  vertical-align: middle;
  padding-bottom: 10px;
}

.quick-search-see-all {
  text-decoration: underline;
  font-size:16px;
}

.to-sales-inquiry-list {
  cursor: pointer;
  color: var(--main-color-second);
  font-size: 26px;
}

.vertical_menu_dropdown_section {

}

.vertical_menu_dropdown_title {
  cursor: pointer;
  font-size: 20px;
}

.vertical_tab_arrow {
  font-size: 16px;
  -webkit-transition: 0.25s ease-in-out, color 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out, color 0.25s ease-in-out;
  transition: 0.25s ease-in-out, color 0.25s ease-in-out;
}

.vertical_tab_arrow_active {
  transform: rotate(90deg);
}

.vertical_menu_dropdown_content {
  padding-left: 3px;
}

.block_body {
  position: relative;
}

.disable-filters-cape {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 2;
  opacity: 0.7;
}

.to-wish-list {
  cursor: pointer;
  color: var(--main-color-second);
  font-size: 26px;
}

.overflow-hidden {
  overflow: hidden;
}