@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.cdnfonts.com/css/bd-cartoon-shout');
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: #333333;
  font-size: 15px;
  line-height: 125%;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

.no-scroll {
  overflow: hidden;
}

.site-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1024px) {
  .site-container {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 1366px) {
  .site-container {
    max-width: 1300px;
  }
}

.header {
  background: #1C1C1C;
  width: 100%;
  margin: 0;
  padding: 0;
}
.header_topbar {
  background: #2D2D2D;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 10;
  transition: all 0.25s ease;
  display: none;
}
@media (min-width: 1024px) {
  .header_topbar {
    display: block;
  }
}
.header_topbar.hide-topbar {
  height: 0;
  overflow: hidden;
}
.header_topbar .site-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header_topbar p {
  margin-right: 10px;
  margin: 10px 0;
  color: #cacaca;
}

.header_topbar p {
    flex-basis: 100%;
    text-align: center;
}
.header_topbar p:nth-child(1) {
    text-align: left;
}
.header_topbar p:nth-child(3) {
    text-align: right;
}

.header_topbar p:last-child {
  margin-right: 0;
}
.header_left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  order: 2;
  position: relative;
}
@media (min-width: 768px) {
  .header_left {
    width: auto;
    order: 1;
  }
}
@media (min-width: 1024px) {
  .header_left {
    padding-left: 25px;
    width: 30%;
    flex-direction: row;
  }
}
@media (min-width: 0px) and (max-width:767px) {
    .header_left form {
        width: 90%;
        max-width: 315px;
    }
}
.header_right {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  order: 3;
}
@media (min-width: 768px) {
  .header_right {
    justify-content: flex-end;
    margin-top: 0;
    flex-direction: column;
    width: auto;
  }
}
@media (min-width: 1024px) {
  .header_right {
    padding-right: 25px;
    width: 30%;
    flex-direction: row;
  }
}
.header_main {
  background: #1C1C1C;
  min-height: 46px;
  margin: 0;
  padding: 12px 0 12px;
  position: relative;
  z-index: 5;
}
@media (min-width: 1024px) {
  .header_main {
    padding: 16px 0 16px 0;
  }
}
.header_main::before {
  background: url("../images/triangle.png") 0% 0% repeat-x;
  background-size: contain;
  width: 100%;
  height: 14px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(180deg);
  display: none;
}
.header_main::after {
  /*background: url("../images/triangle.png") 0% 0% repeat-x;
  background-size: contain;*/
  background: #910003;
  width: 100%;
  height: 3px; /*20px*/
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}
.header_main .site-container {
  height: 100%;
  padding: 0 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .header_main .site-container {
    flex-wrap: nowrap;
    flex-direction: row;
  }
}
@media (min-width: 1366px) {
  .header_main .site-container {
    padding: 0;
  }
}
.header_main-search {
  background: #2D2D2D url("../images/search-icon.svg") 12px 50% no-repeat;
  width: 100%;
  max-width: 100%;
  height: 35px;
  margin: 0;
  padding: 0 10px 0 38px;
  color: white;
  font-size: 16px;
  color: #fefefe;
  font-weight: 500;
  font-family: "Roboto", sans-serif !important;
  border: 1px #ffffff3b solid;
  border-radius: 8px;
  outline: none;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.header_main-search:focus {
    background: #2D2D2D url("../images/search-icon.svg") 8px 50% no-repeat;
    padding: 0 14px 0 34px;
    border: 1px #ffffff9b solid;
}
.header_main-search-submit {
  opacity: 0;
  background: none;
  border: 0;
  outline: none;
  display: inline-block;
  top: 0;
  position: absolute;
  left: -30px;
}
.header_main-search::-moz-placeholder {
  color: white;
  font-size: 14px;
}
.header_main-search::placeholder {
  color: white;
  font-size: 14px;
}
.header_main-search::placeholder {
    color: #6a6a6a;
}
.header_main-search.searching {
  background: url('../images/loading.gif') 7px 50% no-repeat;
  background-size: auto 58%;
  color: #888;
  border: 1px solid #333;
}
@media (min-width: 768px) {
  .header_main-search {
    margin: 0 30px 0 0;
    max-width: 150px;
  }
}
@media (min-width: 1024px) {
  .header_main-search {
    margin: 0 0px 0 0;
    max-width: 260px;
    height: 44px;
  }
  .header_main-search::placeholder {
      font-size: 16px;
      color: #6a6a6a;
    }
}

.header_main-logo {
  width: 100%;
  margin: 0 0;
  order: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .header_main-logo {
    width: 30%;
    order: 2;
  }
}
@media (min-width: 0) and (max-width: 767px) {
  .header_main-logo {
    margin: 0 0 6px 0;
  }
}
.header_main-logo img {
  width: 100%;
  max-width: 142px;
}
.header_main-cart {
  background: url("../images/cart-icon.svg") 0% 0% no-repeat;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: 32px;
  margin: 0 40px 0 0;
  padding: 0 0 0 40px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  color: #c3c3c3;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
}
.header_main-cart span {
    padding: 0 5px 0 0;
}
@media (min-width: 768px) {
  .header_main-cart {
    margin: 0 30px 10px 0;
  }
}
@media (min-width: 1024px) {
  .header_main-cart {
    margin-left: auto;
    margin-right: 30px;
    margin-bottom: 0;
  }
}
.header_main-cart:hover {
  text-decoration: underline;
}
.header_main-login {
    background: #2D2D2D;
  width: 100%;
  max-width: 172px; /*140px*/
  display: flex;
  flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  overflow: hidden;
}
.header_main-login p {
  width: 100%;
  margin: 0 !important;
  padding: 5px 0 !important;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  cursor: default;
  font-weight: 400;
}
.header_main-login a.login {
  background: #fff;
  width: 50%;
  padding: 5px 0;
  color: #8B0000;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.header_main-login a.signup {
  background: #8B0000;
  color: #fff;
  width: 50%;
  padding: 5px 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.header nav {
  background: #2D2D2D;
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px 0;
}
@media (min-width: 1024px) {
  .header nav {
    padding: 0;
  }
}
.header nav .site-container {
  height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) {
  .header nav .site-container {
    flex-direction: row;
  }
}
.header nav .section-button {
  background: none;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 5px 20px 3px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  text-transform: normal;
  border: 0;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .header nav .section-button {
    display: none;
  }
}
.header nav .section-button::before, .header nav .section-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.header nav .section-button::before {
  box-shadow: 0 -8px 0 0 #ffffff;
}
.header nav .section-button::after {
  box-shadow: 0 8px 0 0 #ffffff;
}
.header nav .section-button.active::before {
  transform: translateY(-50%) rotate(45deg);
  box-shadow: none;
}
.header nav .section-button.active::after {
  transform: translateY(-50%) rotate(-45deg);
  box-shadow: none;
}
.header nav .section-menu {
  width: 100%;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .header nav .section-menu {
    max-height: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: visible;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .header nav .section-menu {
    flex-direction: row;
  }
}
.header nav .section-menu.active {
  max-height: 2000px;
  padding: 10px 25px 0;
}
@media (min-width: 1024px) {
  .header nav .section-menu.active {
    padding: 0 25px 0;
  }
}
.header nav .nav_item {
  width: 100%;
}
@media (min-width: 1024px) {
  .header nav .nav_item {
    width: auto;
  }
}
.header nav .nav_item a {
  width: 100%;
  display: block;
  margin: 0;
  padding: 15px 0;
  color: white;
  font-family: 'BD Cartoon Shout', sans-serif;
  font-weight: 100;
  font-size: 14px;
  margin-right: 0;
  line-height: 18px;
  text-decoration: none;
  transition: all 0.5s ease;
}
@media (min-width: 1024px) {
  .header nav .nav_item a {
    width: auto;
    margin-right: 20px;
  }
  .header nav .nav_item a:last-child {
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .header nav .nav_item a {
    display: block !important;
  }
}
.header nav .nav_item:last-child {
    display: none;
}
.header nav .nav_item .nav_item-dropdown {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: all 0.2s ease;
  z-index: 50;
  max-height: 0;
  overflow: hidden;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}
.header nav .nav_item .nav_item-dropdown.active {
  max-height: 2000px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .header nav .nav_item .nav_item-dropdown {
    background: #2D2D2D;
    width: calc(100% - 10px);
    max-height: 2000px;
    padding: 10px 30px 20px 30px;
    position: absolute;
    top: 100%;
    left: 5px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
  }
}
.header nav .nav_item .nav_item-dropdown a {
  width: 100%;
  margin: 0;
  padding: 12px 0 12px 26px;
  display: block;
  color: #ffffff !important;
  font-weight: 100;
  font-size: 14px;
  font-weight: normal;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: all 0.5s ease;
  position: relative;
}
@media (min-width: 1024px) {
  .header nav .nav_item .nav_item-dropdown a {
    width: 30%;
    color: #fff !important;
  }
}
.header nav .nav_item .nav_item-dropdown a:last-child {
  /*border-bottom: 0;*/
}
.header nav .nav_item .nav_item-dropdown a:hover {
  color: #C92524 !important;
}
.header nav .nav_item .nav_item-dropdown a::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 13px;
  left: 0;
  border-left: 16px solid #8B0000;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.header nav .nav_item .nav_item-dropdown p {
  width: 100%;
  margin-top: 20px;
  display: none;
}
@media (min-width: 1024px) {
  .header nav .nav_item .nav_item-dropdown p {
    display: block;
  }
}
.header nav .nav_item .nav_item-dropdown p img {
  width: 100%;
}
.header nav .nav_item:hover a {
  color: #C92524;
}
@media (min-width: 1024px) {
  .header nav .nav_item:hover .nav_item-dropdown {
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}

.banner {
  width: 100%;
}
.banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main {
  background: #ffffff;
  min-height: 200px;
  margin: 0;
}
.main .site-container {
  padding: 30px 20px 50px 20px;
}
@media (min-width: 1024px) {
  .main .site-container {
    padding: 30px 40px 50px 40px;
  }
}
.main .site-container.grey-bg {
  background: #E9EBE8;
  min-height: 400px;
}
.main .breadcrumb {
    cursor: default;
    user-select: none;
    font-size: 14px;
    color: #555;
}
.main .breadcrumb a {
  margin: 0 4px;
  color: #555;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.5s ease;
  font-size: 14px;
  font-weight: 300;
}
.main .breadcrumb a:first-child {
  margin-left: 0;
}
.main .breadcrumb a.active {
  color: #8B0000;
  font-weight: 500;
}
.main .breadcrumb a:hover {
  color: #8B0000;
}
.main h1 {
  margin: 0 0 20px 0;
  font-size: 38px;
  line-height: 42px;
  text-align: center;
  padding: 6px 0 0 0;
  font-family: 'BD Cartoon Shout', sans-serif;
  color: #8B0000;
  text-shadow: 0 1px 0px rgba(0,0,0,0.2);
}
.bdcartoon {
    font-family: 'BD Cartoon Shout', sans-serif;
}
@media (min-width: 0px) and (max-width: 768px) {
    .main h1 {
        font-size: 32px;
        line-height: 34px;
    }
}
.main h2, .main h3 {
  margin: 0 0 2px 0;
  padding: 0;
  color: #333333;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
}
.main p {
  max-width: 100%;
  margin: 0 auto 30px;
  color: #333333;
  text-align: center;
  font-weight: 400;
}
.main div.pagetext, .main span.pagetext {
    max-width: 100%;
    margin: 0 auto 30px;
    color: #333333;
    text-align: center;
    font-weight: 400;
    display: block;
    clear: both;
}
.ptlisting {
    margin: 0 auto 26px !important;
}
.left-align {
    text-align: left !important;
}
.left-align h1, .left-align h2, .left-align h3, .left-align h4, .left-align p, .left-align p {
    text-align: left !important;
}
.left-align p {
    margin: 0 0 15px 0;
}
@media (min-width: 768px) {
  .main p {
    max-width: 90%;
  }
}
@media (min-width: 1024px) {
  .main p {
    max-width: 90%;
  }
}
.main .categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .main .categories {
    gap: 20px;
  }
}
.main .categories a {
  background-size: 100% auto;
  background-position: 50% 50%;
  background-color: #333;
  width: calc(100% - 4px);
  text-align: center;
  height: 400px;
  border: 1px solid rgba(0,0,0,0.1);
  vertical-align: bottom;
  position: relative;
  transition: all 1s;
  border-radius: 6px;
  border-bottom: 2px solid rgba(0,0,0,1);
  box-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.main .categories a:hover {
  background-size: 120% auto;
}
.main .categories a span, .main .categories a h2 {
    position: absolute;
    bottom: 10%;
    text-align: center;
    border: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-shadow: 0 2px 2px rgba(0,0,0,1);
    font-size: 42px;
    font-weight: 700;
    transition: all 0.6s;
    line-height: 42px;
    font-family: 'BD Cartoon Shout', sans-serif;
    text-wrap: nowrap;
}
.main .categories a:hover span, .main .categories a:hover h2 {
    bottom: 12%;
}
@media (min-width: 0px) and (max-width: 1024px) {
    .main .categories a span, .main .categories a h2 {
        font-size: 30px;
        text-wrap: wrap;
    }
}
@media (min-width: 768px) {
  .main .categories a {
    width: calc(50% - 10px);
  }
}
.main .categories a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main .categories a:first-child {
  width: 100%;
}
.main .sub-categories {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.main .sortBox {
    width: auto;
    float: right;
    padding: 0 0 0 22px;
    background: url('../images/sort.svg') 0 30% no-repeat;
    background-size: auto;
    box-sizing: border-box;
    background-size: auto 16px;
}
.main #sortSelect {
  background-color: #fff;
  width: auto;
  height: 34px;
  border: 1px solid rgba(0,0,0,0.4);
  line-height: 32px;
  padding: 8px 6px;
  margin: 0 4px 15px 0;
  float: right;
  color: #333;
  border-radius: 3px;
  box-sizing: border-box;
  font-size: 14px;
}
@media (min-width: 500px) {
  .main .sub-categories {
    gap: 20px;
  }
}
.main .sub-categories_item {
  background: #ffffff;
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px #b0b0b0 solid;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,0.2);
}
.main .sub-categories_item a {
    text-decoration:  none;
}
@media (min-width: 500px) {
  .main .sub-categories_item {
    width: calc(50% - 10px);
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .main .sub-categories_item {
    width: calc(33.333% - 14px);
  }
}
@media (min-width: 1024px) {
  .main .sub-categories_item {
    width: calc(20% - 16px);
    display: flex;
    flex-direction: column;
  }
}
.main .sub-categories_item.new::before {
  background: #FEFF07;
  margin: 0;
  padding: 3px 10px;
  color: #000000;
  font-weight: bold;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border: 1px #000000 solid;
  border-left: 0;
  content: "NEW";
  position: absolute;
  top: 20px;
  left: 0;
}
.main .sub-categories_item img {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  object-fit: contain;
}
.main .sub-categories_item-title {
  max-width: 100%;
  min-height: 56px;
  margin: 0 auto 20px;
    margin-top: 0px;
  color: #333333;
  margin-top: auto;
  text-decoration: none;
}
.main .sub-categories_item-price {
  max-width: 100%;
  margin: 0 auto 20px;
  color: #333333;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}
.sub-categories_item-buttons {
    display: flex;
    flex-direction: row;
    gap: 5px;
}
.main .sub-categories_item-more {
  width: 100%;
  background: #8B0000;
  margin: 0 auto;
  padding: 8px 2px 8px 2px;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid rgba(0,0,0,0.7);
  border-radius: 10px;
  transition: all 0.3s ease;
  border-bottom: 2px solid rgba(0,0,0,0.2);
}
.main .sub-categories_item-more:hover {
  background: #fff;
  color: #8B0000;
  border: 1px solid rgba(0,0,0,0.3);
  border-bottom: 2px solid rgba(0,0,0,0.3);
}
.main .sub-categories_item-addcart {
    width: 50px;
  background: #333 url("../images/add-cart.svg") 50% 50% no-repeat;
  background-size: auto 50%;
  margin: 0 auto;
  padding: 8px 2px 8px 32px;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px #333 solid;
  border-radius: 10px;
  transition: all 0.2s ease;
  border-bottom: 2px solid rgba(0,0,0,1);
}
.main .sub-categories_item-addcart:hover {
  background: #8B0000 url("../images/add-cart.svg") 50% 50% no-repeat;
  background-size: auto 50%;
  color: #fff;
  border: 1px solid rgba(0,0,0,0.3);
  border-bottom: 2px solid rgba(0,0,0,0.3);
}
.main .sub-categories_item-addcart.loading {
    background: url("../images/loading-spin.gif") 50% 50% no-repeat;
    background-color: #000;
    background-size: auto 58%;
}

.main .product-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
@media (min-width: 500px) {
  .main .product-list {
    gap: 20px;
  }
}
.main .product-list_item {
  background: #ffffff;
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px #b0b0b0 solid;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,0.2);
}
.main .product-list_item a {
    text-decoration:  none;
}
@media (min-width: 500px) {
  .main .product-list_item {
    width: calc(50% - 10px);
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .main .product-list_item {
    width: calc(33.333% - 14px);
  }
}
@media (min-width: 1024px) {
  .main .product-list_item {
    width: calc(20% - 16px);
    display: flex;
    flex-direction: column;
  }
}

.product-list_row {
  width: 100%;
  display: flex;
  gap: 10px;
  flex-direction: row;
}
@media (min-width:0px) and (max-width:1024px) {
    .product-list_row {
      width: auto;
      display: block;
      overflow-x:scroll;
        white-space: nowrap;
    }
    .main .product-list_item {
        width: 80vw;
        display: inline-block;
        margin: 2px 10px 10px 0;
    }
}

.main .product-list_item.new::before {
  background: #FEFF07;
  margin: 0;
  padding: 3px 10px;
  color: #000000;
  font-weight: bold;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border: 1px #000000 solid;
  border-left: 0;
  content: "NEW";
  position: absolute;
  top: 20px;
  left: 0;
}
.main .product-list_item img {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  object-fit: contain;
}
.main .product-list_item-title {
  max-width: 100%;
  min-height: 56px;
  margin: 0 auto 20px;
    margin-top: 0px;
  color: #333333;
  margin-top: auto;
  text-wrap: wrap;
}
.main .product-list_item-price {
  max-width: 100%;
  margin: 0 auto 20px;
  color: #333333;
  font-size: 20px;
  font-weight: bold;
}

.main .product-list_item-buttons {
    display: flex;
    flex-direction: row;
    gap: 5px;
}
.main .product-list_item-more {
    width: 100%;
  background: #8B0000;
  margin: 0 auto;
  padding: 8px 2px 8px 2px;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid rgba(0,0,0,0.7);
  border-radius: 10px;
  transition: all 0.3s ease;
  border-bottom: 2px solid rgba(0,0,0,0.2);
}
.main .product-list_item-more:hover {
  background: #fff;
  color: #8B0000;
  border: 1px solid rgba(0,0,0,0.3);
  border-bottom: 2px solid rgba(0,0,0,0.3);
}
.main .product-list_item-addcart {
    width: 50px;
  background: #333 url("../images/add-cart.svg") 50% 50% no-repeat;
  background-size: auto 50%;
  margin: 0 auto;
  padding: 8px 2px 8px 32px;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px #333 solid;
  border-radius: 10px;
  transition: all 0.2s ease;
  border-bottom: 2px solid rgba(0,0,0,1);
}
.main .product-list_item-addcart:hover {
  background: #820003 url("../images/add-cart.svg") 50% 50% no-repeat;
  background-size: auto 50%;
  color: #fff;
  border: 1px solid rgba(0,0,0,0.3);
  border-bottom: 2px solid rgba(0,0,0,0.3);
}
.main .product-list_item-addcart.loading {
    background: url("../images/loading-spin.gif") 50% 50% no-repeat;
    background-color: #000;
    background-size: auto 58%;
}

.main .product-list_title {
  width: 100%;
  margin-top: 6px;
  padding: 0 0 0 26px;
  text-align: left;
  font-weight: 500;
  position: relative;
  font-family: 'BD Cartoon Shout', sans-serif;
  font-weight: 100;
}
.main .product-list_title i {
    opacity: 0.65;
}
@media (min-width: 0px) and (max-width:768px) {
    .main .product-list_title {
        font-size: 24px;
    }
    .main .product-list_title i {
        display: block;
        clear: both;
        font-size: 20px;
    }
}
.main .product-list_title::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 10px;
  left: 0;
  border-left: 16px solid #8B0000;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.main .product-list_title span {
  display: block;
  font-weight: 300;
  font-style: italic;
  font-family: 'Roboto', sans-serif;
}
.main .product-list_title i {
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}
@media (min-width: 768px) {
  .main .product-list_title span {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.main .product-list_description {
  width: 100%;
  max-width: 100%;
  padding: 0 10%;
}
.main .product-list_view {
  width: 100%;
  color: #8B0000;
  font-size: 24px;
  line-height: 1.2;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 30px;
}
.main .product-list_view:hover {
  text-decoration: underline;
}
@media (min-width: 0px) and (max-width:768px) {
    .main .product-list_view {
        font-size: 18px;
        line-height: 1.0;
    }
}
.main .product-detail {
  margin: 0;
  padding: 20px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main .product-detail_images {
  width: 100%;
}
@media (min-width: 768px) {
  .main .product-detail_images {
    width: 50%;
  }
}
.main .product-detail_images .firstImg img {
  width: 100%;
  height: 254px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .main .product-detail_images .firstImg img {
      height: 400px;
    }
}
.main .product-detail_images .firstImg {
    background: #fff;
    width: 100%;
    padding: 16px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.1);
    box-sizing: border-box;
}

.main .product-detail_images-thumbnails {
  margin-top: 8px;
  display: flex;
  background: #fff;
  width: 100%;
  padding: 16px 6px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.1);
  box-sizing: border-box;
}
.main .product-detail_images-thumbnails a {
  width: calc(20% - 10px);
  margin: 0 10px;
  text-align: center;

}
.main .product-detail_images-thumbnails a img {
  max-height: 72px;
  object-fit: contain;
}
.main .product-detail_info {
  width: 100%;
  padding: 12px 0 0 0;
}
@media (min-width: 768px) {
  .main .product-detail_info {
    width: 50%;
    padding: 0 0 0 30px;
  }
}
.main .product-detail_info-title {
  width: 100%;
  margin: 0 0 6px 0;
  padding: 0;
  display: block;
  line-height: 1.4;
  color: #8B0000;
  font-size: 26px;
  text-align: left;
}
.main .product-detail_info-sku {
  width: 100%;
  max-width: 100%;
  margin: 0 0 20px 0;
  padding: 0;
  display: block;
  text-align: left;
  border-top: 0;
  border-bottom: 0;
  color: #555;
  font-size: 12px;
}
.main .product-detail_info-pricing {
  width: 100%;
  margin: 0 0 10px 0;
  padding: 0;
  display: block;
  line-height: 1.2;
  font-weight: 700;
  color: #8B0000;
  font-size: 28px;
}
.main .product-detail_info-description {
  width: 100%;
  max-width: 100%;
  text-align: left;
  padding: 0 0 8px 0;
  box-sizing: border-box;
  border-radius: 2px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  font-weight: 400;
  font-size: inherit;
  color: #222;
}
.main .product-detail_info-description p {
    text-align: left;
    margin: 0 0 10px 0;
}
.main .product-detail_info-options {
  max-width: 75%;
  margin: 0 0 20px 0;
  padding: 0 0 0 40px;
  position: relative;
}
.main .product-detail_info-options::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 7px;
  left: 0;
  border-left: 16px solid #8B0000;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.main .product-detail_info-options select {
  width: 100%;
  height: 30px;
}
.main .product-detail_info-options select option {
  position: relative;
}
.main .product-detail_info-options select option span {
  position: absolute;
  right: 0;
}

.main .product-detail_info-form {
  background: #dfdfdf;
  padding: 12px;
  border-radius: 8px;
  box-sizing: border-box;
}

.main .product-detail_info-quantity {
  margin: 0 0 10px 0;
  padding: 0 0 0 0;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
}
.main .product-detail_info-quantity::before {
    display: none;
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 7px;
  left: 0;
  border-left: 16px solid #8B0000;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.main .product-detail_info-quantity form {
  display: inline-block;
}
.main .product-detail_info-quantity input {
  width: 80px;
  height: 48px;
  margin: 0 0 0 0;
  padding: 0 10px;
  color: #222;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #bebebe;
  border-radius: 8px;
  box-sizing: border-box;
}
.main .product-detail_info-quantity input::-moz-placeholder {
  color: #000000;
}
.main .product-detail_info-quantity input::placeholder {
  color: #000000;
}
.accessoriesPrompt {
    display: none !important;
}
.main .product-detail_accessoriesLink {
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    color: #8B0000;
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    display: block;
    clear: both;
    padding: 12px 0 12px 0;
    margin: 10px 0 10px 0;
    text-decoration: none;
    text-align: left;
}
.main .product-detail_accessoriesLink:hover {
    text-decoration: underline;
}
.main .product-detail_info-addsec {
    display: flex;
    flex-direction: row;
    gap: 5px;
}
.main .product-detail_info-addhold {
    width: 100%;
}
.main .product-detail_info-add {
  background: #8B0000;
  width: 100%;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  text-transform: normal;
  border: 0;
  border-radius: 10px;
  transition: all 0.5s ease;
  cursor: pointer;
  border-bottom: 3px solid rgba(0,0,0,0.4);
  box-sizing: border-box;
}
.main .product-detail_info-add:hover {
  background: #fff;
  color: #8B0000;
  border: 0;
  border-bottom: 3px solid rgba(0,0,0,0.6);
}
@media (min-width:0) and (max-width:768px) {
    .main .product-detail_info-add {
        width: 100%;
        max-width: 100%;
    }
}
.main .product-detail_info-add::after {
  background: url("../images/cart-icon.svg") 50% 50% no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin: 0 0 0 10px;
  padding: 0;
  content: "";
}
.main .product-detail_info-add:hover::after {
  background: url("../images/cart-icon-red.svg") 50% 50% no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin: 0 0 0 10px;
  padding: 0;
  content: "";
}
.main .product-detail_info-add.loading {
    background: #003301;
    color: #214622;
}
.main .product-detail_info-add.loading::after {
    background: url("../images/loading-spin.gif") 50% 50% no-repeat;
    background-size: contain;
}


.main .product-detail hr, .main hr {
  width: 100%;
  height: 1px;
  margin: 20px auto;
  display: block;
  border: 0;
  border-top: 1px solid rgba(0,0,0,0.03);
  outline: none;
}
.main .product-detail_extra-info {
    background: #fff;
    padding: 16px 12px;
    box-sizing: border-box;
    border-radius: 4px;
  text-align: left;
  font-weight: 400;
  width: 100%;
}
.main .product-detail_extra-info h2 {
  margin: 0 0 10px 0;
  font-size: 20px;
  line-height: 1.2;
  text-align: left;
  color: #444;
}
.main .product-detail_extra-info p {
  max-width: 100%;
  text-align: left;
  font-weight: 400;
}
.main .product-detail_extra-info fieldset {
   max-width: 100%;
  text-align: left;
  font-weight: 400;
  border: 1px solid #efefef;
  border-radius: 4px;
}
.main .product-detail_extra-info fieldset legend {
    font-weight: 370;
    color: #333;
    font-size: 13px;
}
.main .product-detail_extra-info .spacer {
    display: block;
    clear: both;
    height: 15px;
}

.footer {
  background: #1C1C1C;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  border-top: 3px solid #910003;
}
@media (min-width: 768px) {
  .footer {
    flex-direction: row;
  }
}
.footer .site-container {
  height: 100%;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
}
.footer p {
  margin: 0;
  padding-bottom: 20px;
  color: white;
  font-size: 16px;
  font-family: "Roboto", serif;
  text-align: center;
}
.footer_email {
  width: 100%;
  height: 100%;
  padding: 30px 20px 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer_email .footerlinkspace {
    height: 20px;
}
@media (min-width: 768px) {
  .footer_email {
    width: 35%;
  }
}
.footer_email a {
  margin: 5px 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
  display: block;
  text-decoration: none;
}
.footer_email a:hover {
  text-decoration: underline;
}

.footer_email a.tight, .footer_email a.tight:hover {
    line-height: 0.7;
    font-size: 15px;
    font-weight: 370;
}
.footer_logo {
  padding: 20px;
}
.footer_signup {
  width: 100%;
  padding: 20px;
}
@media (min-width: 768px) {
  .footer_signup {
    width: 35%;
    padding-left: 10%;
  }
}
.footer_signup .footerPayments {
    padding: 0 0 15px 0;
    text-align: center;
}
.footer_signup .footerPayments p {
    padding-bottom: 6px !important;
}
.footer_signup .footerPayments img {
    width: 100%;
    max-width: 300px;
}
.footer_signup p {
  font-size: 16px;
  margin: 0;
  padding-bottom: 12px !important;
}
.footer_signup input[type=text], .footer_signup input[type=email] {
  background: transparent;
  width: 100%;
  max-width: 100%;
  height: 40px;
  margin: 0;
  padding: 0 15px;
  color: white;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  font-family: "Roboto", sans-serif !important;
  border: 2px #ffffff solid;
  border-radius: 8px;
  outline: none;
  margin-right: auto;
}
.footer_signup input[type=text]::-moz-placeholder, .footer_signup input[type=email]::-moz-placeholder {
  color: #ffffff;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
}
.footer_signup input[type=text]::placeholder, .footer_signup input[type=email]::placeholder {
  color: #ffffff;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
}
.footer_signup input[type=submit] {
  background: #C92524;
  margin: 0;
  padding: 0 20px;
  width: 100%;
  height: 38px;
  margin: 14px 0 0;
  border: 0;
  outline: none;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  line-height: 21px;
  font-family: "Roboto", serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s;
}
.footer_signup input[type=submit]:hover {
  background: transparent;
  border-color: #1C1C1C;
  color: #ffffff;
  border: 1px #ffffff solid;
}
.footer-signup .newsletter-success {
  color: #1fb700;
  font-size: 18px;
  text-align: center;
  line-height: 1.2;
}
.newsletter-success {
  color: #1fb700;
  font-size: 18px;
  text-align: center;
  line-height: 1.2;
}
.footer_disclaimer {
  width: 100%;
  padding: 30px 20px 20px !important;
  font-weight: 300;
  font-size: 14px !important;
}
.footer_copyright {
  background: #2D2D2D;
  width: 100%;
  margin: 0 !important;
  padding: 10px 0 !important;
  display: block;
  position: relative;
  font-weight: 400;
  font-size: 14px !important;
}
.footer_copyright::after {
  background: url("../images/triangle.png") 0% 0% repeat-x;
  background-size: contain;
  width: 100%;
  height: 20px;
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  display: none;
}

.cart table {
  width: 100%;
}
.cart tr th {
  background: #333;
  color: #fff;
  padding: 12px 0px;
  text-align: left;
}
.cart tr th:nth-child(1) {
  padding: 12px 8px;
}
.cart th:first-child {
    border-top-left-radius: 6px;
}
.cart th:last-child {
    border-top-right-radius: 6px;
}
.cart tbody tr {
  background: #fff;
}
.cart tbody tr td {
  border-top: 1px solid #eee;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #000;
  padding: 12px 0px;
}
.cart tr th:nth-child(1) {
  padding: 12px 8px;
}
.cart tbody tr td a, .cart tbody tr td a:hover {
  font-size: 14px;
  color: #000;
  text-decoration: none;
}
.cart tbody tr td input {
  width: 100%;
  max-width: 70px;
  padding: 8px;
  text-align: left;
}
a.removeCartLink, a.removeCartLink:hover {
  color: #cc0000 !important;
  font-size: 26px !important;
  margin: 0 0 0 8px;
  display: inline-block;
  box-sizing: border-box;
  height: 36px;
  position: relative;
  top: 4px;
}
a.updateButtonLink, a.updateButtonLink:hover, button.updateButtonLink {
  color: #444 !important;
  font-size: 12px !important;
  line-height: 36px !important;
  margin-left: 4px !important;
  border: 0;
  background: none;
  outline: none;
  background: #f4f4f4;
  border-radius: 4px;
  cursor: pointer;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

a.productNameLink {
  font-size: 17px !important;
  font-weight: 600 !important;
  display: block;
  clear:both;
  padding: 0;
  margin: 0 0 14px 0;
}
#promocodes {
  display: block;
  clear: both;
  padding: 12px 0;
  margin: 0 0 0 0;
  box-sizing: border-box;
}
#promocodes input[type="text"] {
  width: 100%;
  max-width: 180px;
  padding: 8px;
  text-align: left;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
}
#promocodes input[type="submit"] {
  background: #192335;
  margin: 0;
  padding: 0 14px;
  width: auto;
  height: 29px;
  margin: 0;
  border: 0;
  outline: none;
  border: 0;
  border-radius: 4px;
  color: #ffffff;
  font-size: 16px;
  line-height: 18px;
  font-family: "Roboto", serif;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.35s;
}
a.checkoutBtn {
  background: #C92524;
  margin: 0;
  padding: 10px 20px;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 14px 0 0;
  border: 0;
  outline: none;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  font-size: 26px;
  line-height: 26px;
  font-family: "Roboto", serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s;
  display: block;
  text-align: center;
  text-decoration: none;
  border: 1px #C92524 solid;
  box-sizing: border-box;
}
a.checkoutBtn:hover {
  background: #222;
  color: #ffffff;
  border: 1px #C92524 solid;
}

div.payment_cards_basket {
    float: right;
    width: 100%;
    max-width: 400px;
    padding: 20px 0 0 0;
    margin: 0;
    display:block;
    clear;both;
    text-align:center;
}
div.payment_cards_basket img {
    width: 100%;
    max-width: 240px;
}
.payment_cards_checkout {
    float: right;
    width: 100%;
    max-width: 240px;
    padding: 0 0 0 0;
    margin: 0;
    display:block;
    clear;both;
    text-align:right;
}
.payment_cards_checkout img {
    width: 100%;
    max-width: 240px;
}
div.checkoutForm {
    width: 70%;
    padding: 0 10% 0 0;
    display: block;
    float: left;
    box-sizing: border-box;
}
.checkoutForm input:required:focus {
  border: 1px solid red;
}
.checkoutForm select:required:focus {
  border: 1px solid red;
}

div.checkoutSummary {
    width: 30%;
    display: block;
    float: left;
    font-size: 14px;
    background: #f9f9f9;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #cdcdcd;
    box-sizing: border-box;
    position: sticky;
    position:-webkit-sticky;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    top: 0;
}
div.checkoutSummary .cs-title {
    font-size:16px;
    color:#3e3e3e;
    font-weight: 300;
    padding: 0 0 6px 0;
    margin: 0 0 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
@media (min-width:0px) and (max-width:1024px) {
    .cart th:first-child {
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }
}
@media (min-width: 0px) and (max-width:756px) {
    div.checkoutSummary {
        width: 100%;
        display: block;
        clear: both;
        float: none;
        position: relative;
        margin: 30px 0 0 0;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    div.checkoutForm {
        width: 100%;
        padding: 0;
        display: block;
        clear: both;
        float: none;
        margin: 0;
    }
    .payment_cards_checkout {
        float: none;
        text-align: left;
    }
    .cart tbody tr {
        display: block;
        margin: 0 0 2px 0;
        padding: 10px;
        box-sizing: border-box;
    }
    .cart thead th:nth-child(2), .cart thead th:nth-child(3), .cart thead th:nth-child(4) {
        display: none;
    }
    .cartItem td:nth-child(1) {
        display: none;
    }
    .cartItem td:nth-child(2) {
        width: 100%;
        display: block;
        clear: both;
        text-align: center;
        padding: 10px 12px;
        border: 0;
    }
    .cartItem td:nth-child(3) {
        height: 52px;
        width: 50%;
        display: inline-block;
        text-align: center;
        line-height: 28px;
        box-sizing: border-box;
    }
    .cartItem td:nth-child(4) {
        display: none;
        clear: both;
    }
    .cartItem td:nth-child(5) {
        height: 52px;
        width: 50%;
        display: inline-block;
        text-align: center;
        line-height: 28px;
        box-sizing: border-box;
    }
}
div.checkoutSummary a, div.checkoutSummary a:hover {
    display: block;
    clear: both;
    text-align:left;
    padding: 2px 0 2px 0;
    margin: 0px 0 2px 0;
    text-decoration: none;
    color: inherit;
    font-size: 14px !important;
}
div.checkoutSummary .cs-totalstbl {
    margin-top:10px;
    background:#f9f6df;
    border-radius:4px;
    padding:10px 10px 5px 10px;
    margin-bottom:0;
}
.checkoutForm input[type=text], .checkoutForm input[type=email], .checkoutForm input[type=tel], .checkoutForm input[type=number] {
    background: #fff;
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
    padding: 10px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    font-family: "Roboto", sans-serif !important;
    border: 1px solid #999;
    border-radius: 0px;
    outline: none;
    display: block;
    clear: both;
}
.checkoutForm select {
    background: #fff;
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
    padding: 12px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    font-family: "Roboto", sans-serif !important;
    border: 1px solid #999;
    border-radius: 0px;
    outline: none;
    display: block;
    clear: both;
}
.formSpacer, .genericSpacer {
    display: block;
    clear: both;
    height: 20px;
}
.genericSpacer50 {
    display: block;
    clear: both;
    height: 50px;
}
.checkoutForm .formHeading {
    display: block;
    clear: both;
    padding: 0 0 10px 0;
    font-size: 16px;
    font-weight: 300;
}
.checkoutForm div.inputHalf {
    flex-direction: row;
    display: flex;
    gap: 20px;
}
.checkoutForm div.inputHalf input {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.checkoutForm input.submit {
    background: #00AA03;
    margin: 0;
    padding: 10px 20px;
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0;
    border: 0;
    outline: none;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    font-size: 26px;
    line-height: 26px;
    font-family: "Roboto", serif;
    font-weight: 400;
    cursor: pointer;
    transition: all 1s;
    display: block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    border-bottom: 3px solid rgba(0,0,0,0.4);
    float: right;
}
.checkoutForm input.submit:hover {
    border-bottom: 3px solid rgba(0, 0, 0, 1);
}
.clearfix {
    display: block;
    clear: both;
    height: 2px;
}

.checkmark__circle{stroke-dasharray: 166;stroke-dashoffset: 166;stroke-width: 2;stroke-miterlimit: 10;stroke: #7ac142;fill: none;animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards}
.checkmark{width: 56px;height: 56px;border-radius: 50%;display: block;stroke-width: 2;stroke: #fff;stroke-miterlimit: 10;margin: 0 auto;box-shadow: inset 0px 0px 0px #7ac142;animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both}
.checkmark__check{transform-origin: 50% 50%;stroke-dasharray: 48;stroke-dashoffset: 48;animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards}
@keyframes stroke{
    100%{stroke-dashoffset: 0}
}
@keyframes scale{
    0%, 100%{transform: none}
    50%{transform: scale3d(1.1, 1.1, 1)}
}
@keyframes fill{
    100%{box-shadow: inset 0px 0px 0px 30px #7ac142}
}
#addedCartBg {
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.79);
    position: fixed;
    z-index: 899;
    top: 0;
    left: 0;
}
#addedCart {
    display: none;
    position: fixed;
    width: 90%;
    height: auto;
    max-width: 500px;
    background: #fff;
    border-radius: 20px;
    padding: 24px 20px;
    z-index: 900;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0,0,0,0.08);
    text-align: center;
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
}
#addedCart .ac-title {
    font-size: 32px;
    color: #333;
    text-align: center;
    font-weight: 600;
    padding: 28px 0 30px 0;
    box-sizing: border-box;
}
#addedCart .ac-desc {
    font-size: 16px;
    color: #222;
    text-align: center;
    font-weight: 300;
    padding: 0 0 35px 0;
    box-sizing: border-box;
}
#addedCart .ac-desc span {
    font-weight: 500;
}
#addedCart .ac-accessories {
    font-size: 15px;
    color: #000;
    text-align: center;
    font-weight: 400;
    padding: 0 0 20px 0;
    box-sizing: border-box;
    font-style: italic;
    display: none;
}
#addedCart .ac-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
#addedCart a {
    background: #e5e5e5;
    padding: 16px 20px;
    width: auto;
    font-size: 18px;
    color: #111;
    border-radius: 18px;
    box-sizing: border-box;
    font-weight: 400;
    text-decoration:  none;
    font-weight: 300;
    border: 1px #e1e1e1 solid;
}
#addedCart a:hover {
    color: #000;
    border: 1px #c8c8c8 solid;
}
#addedCart a.gocart {
    background: #3a3a3a;
    color: #fff;
    border: 1px #3a3a3a solid;
}
#addedCart a.accessories {
    background: #8B0000;
    color: #fff;
    border: 1px #710000 solid;
    display: block;
    clear: both;
    width: 90%;
    max-width: 400px;
    margin: 10px auto;
    padding: 12px 12px;
    font-style: normal;
}

@media (min-width:0px) and (max-width: 600px) {
    #addedCart a {
        font-size: 16px;
    }
}
@-webkit-keyframes rotate {
  from {-webkit-transform:rotate(0deg);}
  to {  -webkit-transform:rotate(360deg);}
}
@-moz-keyframes rotate {
  from {-moz-transform:rotate(0deg);}
  to {  -moz-transform:rotate(360deg);}
}

ul {
    list-style-position: inside;
}