@font-face {
  font-family: "Trebuchetms", serif;
  src: url(../fonts/trebuchetms.woff2);
  font-weight: 400px;
  font-style: normal;
}

@font-face {
  font-family: "Trebuchetms Bold", serif;
  src: url(../fonts/trebuchetms.woff2);
  font-weight: 700px;
  font-style: normal;
}

html,
body {
  height: 100%;
}

html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

.disabled-select {
  background-color: #e9e9e9;
  cursor: not-allowed;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Trebuchetms", Arial, sans-serif;
  font-weight: 400;
  font-style: 16px;
  text-transform: none;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.8;
  background-color: #fff;
  color: #393328;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2 {
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 2rem;
}

ul {
  list-style: none;
}

button {
  background-color: transparent;
  padding: 0;
  border: none;
}

.container {
  max-width: 1720px;
  padding: 0 10px;
  margin: 0 auto;
}

section {
  margin: 50px 0;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-row-gap20 {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}

/*--------- HEADER --------------------*/

.header__container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  /* justify-self: center; */
}

.header__branding {
  justify-self: start;
}

.header__branding img {
  height: 80px;
  padding: 10px 10px;
}

.header__contact {
  justify-self: center;
}

.header__cart {
  justify-self: end;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}

.header__cart i {
  font-size: 1.6rem;
  color: black;
}

.language__active {
  border: 1px solid #0253a4;
  padding: 5px;
}

#navigation {
  background-color: #0253a4;
}

#navigation button {
  border: none;
  background: transparent;
  padding: 0;
  z-index: 11;
}

.menu__btn {
  display: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 10;
}

.menu__btn span {
  height: 2px;
  width: 100%;
  background-color: #f5f5f5;
  /* position: relative; */
}

.menu__btn::before,
.menu__btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #f5f5f5;
}

.menu__btn::before {
  top: 0;
}

.menu__btn::after {
  bottom: 0;
}

@media (max-width: 740px) {
  .menu__btn {
    display: flex;
  }

  #site-navigation {
    position: absolute;
    inset: 0;
    background-color: #171717;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #site-navigation.active {
    transform: translateY(0);
  }

  #navigation {
    padding: 10px;
  }

  .header__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  .header-phone {
    justify-content: center;
  }
}

/*------------- Header Menu----------------*/

#Header_Navigation {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#Header_Navigation li {
  border-right: 1px solid rgb(2, 66, 131);
  padding: 10px;
}

#Header_Navigation li:first-child {
  border-left: 1px solid rgb(2, 66, 131);
}

#Header_Navigation li:hover {
  background-color: rgb(2, 66, 131);
}

#Header_Navigation .menu-item-has-children a::after {
  content: "";
  font-family: dashicons;
  font-weight: normal;
  display: inline-block;
  margin: 0;
  vertical-align: top;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: rotate(0);
  color: inherit;
  position: relative;
  background: transparent;
  height: auto;
  width: auto;
  right: auto;
  line-height: inherit;
}

.header__navigation a,
.header__navigation a:visited,
.header__navigation a:hover {
  color: #f5f5f5;
}

.header__navigation ul {
  list-style: none;
}

.header__navigation .sub-menu {
  display: none;
  position: absolute;
  background-color: #0463c2;
  margin: 10px 0;
  padding-inline-start: 0;
  /* width: 100%; */
  /* left: 0; */
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
#Header_Navigation .menu-item-has-children .sub-menu a::after {
  content: "";
}

#Header_Navigation .menu-item-has-children:hover .sub-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* #Header_Navigation .sub-menu .menu-item-has-children .sub-menu {
  display: none;
}
#Header_Navigation .sub-menu .menu-item-has-children:hover .sub-menu {
  display: block;
} */

@media (max-width: 740px) {
  #Header_Navigation {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 90%;
    font-size: 1.3rem;
    font-weight: 300;
  }

  #Header_Navigation li:first-child {
    border-left: none;
  }

  #Header_Navigation li {
    border-right: none;
  }

  .header__navigation .sub-menu {
    display: none;
    position: relative;
    background-color: inherit;
    margin: 0;
    /* width: 100%; */
    /* left: 0; */
    box-shadow: inherit;
    z-index: 1;
  }

  #Header_Navigation .menu-item-has-children:hover .sub-menu {
    display: inline;
  }
}

/*-------------- Content Page ---------------*/

/*----------- Archive Auto Model --------------*/

.auto-model-page-header {
  position: relative;
  font-size: 0.9em;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  background: #3eb4f0;
  padding: 10px 15px;
}

.archive-model-top-info {
  justify-content: space-between;
}
.finde {
  width: 20%;
  background: #e3e7ef;
  margin-top: 20px;
}

.top-info {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 500px;
  box-sizing: border-box;
  background: linear-gradient(106.04deg, #ffffff 22.25%, #ecf9ff 82.22%);
  border-bottom: 1px solid #daebf1;
  min-height: 100%;
  overflow: hidden;
  padding: 3rem 1.5rem;
  padding: 3rem;
  border-radius: 0px 0px 50px 0px;
  position: relative;
  justify-content: space-between;
}

.top-info-car {
  background-image: url(../image/1NISSAN-LEAF-II-2.png);
  background-repeat: no-repeat;
  width: 500px;
  height: 300px;
  position: absolute;
  top: 30px;
  right: 20px;
  z-index: 9;
  opacity: 0.3;
}

.top-info-title {
  font-size: 2.1rem;
  font-weight: 400;
}

.archive-auto-model-menu {
  width: 20%;
}

.archive-auto-model-content {
  width: 78%;
}

.archive-auto-model-catalog {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-around;
  margin: 20px 0;
}

.archive-auto-model {
  justify-content: space-around;
}

.slider-static-title-tag1,
.slider-static-title-tag2 {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  padding: 4px 10px;
  background-color: #3eb4f0;
  position: relative;
  /* font-weight: 700;
  font-size: 0.7em; */
}
.slider-static-title-tag1::before,
.slider-static-title-tag2::before {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 0 8px 15px;
  border-color: transparent transparent #3eb4f0 transparent;
  position: absolute;
  right: 0;
  bottom: 100%;
}

.slider-static-title-tag2 {
  background-color: #ff7a1a;
}
.slider-static-title-tag2::before {
  border-color: transparent transparent #ff7a1a transparent;
}

.razbor-parts,
.razbor-car {
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
  align-items: center;
}

.razbor-parts-count {
  font-size: 4.2rem;
  font-weight: 600;
}

.taxonomy-box-img {
  width: 60px;
}

.taxonomy-box {
  text-align: center;
  background: #e5e9f0;
  display: block;
  padding: 15px;
  color: #000;
  text-decoration: none;
  border: 1px solid #dae0e9;
  width: 180px;
  transition-property: box-shadow background border;
  transition-duration: 0.5s;
}

.taxonomy-box:hover {
  background: #d0d1d1;
  border: 1px solid #d0d1d1;
  box-shadow: 0 8px 12px 0 rgba(183, 184, 183, 0.76);
}

.taxonome-box-text {
  font-size: .9rem;
  color: #000;
  font-weight: 500;
}

.taxonomy-box a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.archive-auto-model-taxonomy {
  justify-content: center;
  flex-wrap: wrap;
}

/*------------ Gallery ------------*/

.auto-model-info-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

.auto-model-info-img {
  max-width: 700px;
  min-width: 400px;
}

.mySlides img {
  width: 100%;
  height: 450px;
  min-width: 400px;
  object-fit: cover;
}

.auto-model-info-content {
  width: 45%;
}

.auto-model-info-content table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

.auto-model-info-content td,
.auto-model-info-content th {
  border: 1px solid #b6b6b6;
  text-align: left;
  padding: 8px;
}

.auto-model-info-content tr:nth-child(odd) {
  background-color: #dddddd;
}

.auto-model-info-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.auto-model-last-razbor {
  border: 2px solid #40b4f1;
  border-radius: 5px;
}

.auto-model-last-razbor p {
  margin: 2px 15px;
  text-align: center;
}

.auto-model-color-darkblue {
  background-color: #0253a4;
  color: #fff;
  text-align: center;
  padding: 20px 5px;
}

.auto-model-color-blue {
  background-color: #40b4f1;
  color: #000;
  text-align: center;
  padding: 20px 5px;
}

.auto-model-nomber {
  font-size: 2.5rem;
  font-weight: 400;
}

.auto-model-text {
  font-size: 1.2rem;
  font-weight: 300;
}

.img-thumbnail img {
  width: 130px;
}

@media (max-width: 1000px) {
  .auto-model-info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .auto-model-info-img {
    width: 100%;
    min-width: 400px;
    max-width: none;
  }

  .auto-model-info-content {
    width: 100%;
  }

  .auto-model-info-content .flex-row {
    justify-content: center;
  }

  .taxonomy-box {
    width: 135px;
  }

  .archive-auto-model-taxonomy .taxonomy-box img {
    width: 35px;
  }

  .taxonomy-box {
    font-size: 1rem;
  }

  .auto-model-etc-block {
    justify-content: center;
  }
}

@media (max-width: 740px) {
  .top-info {
    display: none;
  }
  .finde {
    width: 100%;
    padding: 10px;
  }

  .archive-auto-model-menu {
    display: none;
  }

  .archive-auto-model-content {
    width: 100%;
    padding: 10px;
  }
}

/*--------------- Taxonomy block Accordion-------*/

.accordion:after {
  /* content: "\002B"; */
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}
.accordion {
  background-color: #faf9f9;
  border-radius: 5px;
  margin: 3px 0;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active,
.accordion:hover {
  background-color: #ccc;
}

.accordion a,
.panel a,
.accordion span {
  text-decoration: none;
  font-weight: bold;
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

.taxonomy-submenu:hover {
  background-color: #eee;
}

.taxonomy-content {
  width: 70%;
}

.all-product {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-around;
}

/*----------- Search Form --------------*/

.search__form {
  padding: 20px 10px;
}

.search__form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search__form form select {
  width: 100%;
}

/*---------- Block Taxonomy ----------*/

.taxonomy__title {
  margin: 20px 0;
  color: #0253a4;
  padding: 0.5rem 1rem 0.4rem;
  border-radius: 4px;
  background-color: #e4e8ef;
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.taxonomy__title:hover {
  color: #f8f9fa;
  background-color: #0253a4;
  box-shadow: 0 2px 5px rgba(17, 3, 143, 0.918);
}

.taxonomy__title a {
  color: #0253a4;
  display: flex;
  gap: 10px;
  align-items: center;
}

.taxonomy__title a:hover {
  color: #f8f9fa;
}

.taxonomy__title .title-image img {
  height: 25px;
}

.taxonomy__content {
  height: 150px;
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: flex-start;
}

@media (max-width: 1200px) {
  .taxonomy__content {
    height: 300px;
  }
}

/*----- Block ETC auto_make parts -----------*/

.etc-parts {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.block-etc-parts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.box__parts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  width: 350px;
  min-height: 100%;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  transition-property: box-shadow border;
  transition-duration: 0.5s;
}

.box__parts:hover {
  border: 1px solid #d0d1d1;
  box-shadow: 0 8px 12px 0 rgba(183, 184, 183, 0.76);
}

.image__img {
  margin-bottom: 20px;
}

.image__img img {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
	height: 200px;
	object-fit: cover;
}

.parts__info {
  font-size: 14px;
  padding: 0 10px;
}

.parts__image .image__title {
  padding: 0 10px;
}

.buy__cost {
  font-weight: bold;
  font-size: 1.75rem;
  line-height: 1.2;
  padding: 20px 0;
}

.parts__box-buy {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
}

.buy__btn button {
  /* background-color: #0da505; */
  color: #fefefe;
  cursor: pointer;
  width: 100%;
  padding: 20px 0;
  transition-property: box-shadow background-color;
  transition-duration: 0.5s;
}
.buy__btn button:hover {
  background-color: rgba(2, 114, 2, 0.76);
  box-shadow: 0 8px 12px 0 rgba(2, 114, 2, 0.76);
}

.box-article-product {
  padding: 0 0 10px 0;
}

/*------------- Auto Parts -----------------*/

.auto__parts-info-block {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: nowrap;
}

.table-info-row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  line-height: 1.1;
  font-weight: 400;
}

.table-info-row:hover {
  background-color: #f2f2f2;
}

.table-info-row-name {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  border-bottom: 1px dotted #ddd;
  color: #878787;
}

.table-info-row-name::after {
  content: "";
  border-bottom: 1px solid #000;
}

/* ---------- Content Product --------------- */

.table-info-row-name span {
  color: #878787;
  font-weight: 600;
}

.table-info-row-value span {
  color: #0253a4;
  font-weight: 600;
}

.checked {
  color: orange;
}
.unchecked {
  color: #0253a4;
}

.star-green {
  color: green;
}
.star-greenyellow {
  color: rgb(52, 151, 27);
}
.star-yellow {
  color: rgb(132, 201, 29);
}
.star-orange {
  color: orange;
}
.star-red {
  color: red;
}
.star-grey {
  color: rgba(204, 202, 202, 0.658);
}

.background-blue {
  background: #0253a4;
  background-image: -webkit-linear-gradient(left, #0253a4, #05366c);
  background-image: -o-linear-gradient(left, #0253a4, #05366c);
  background-image: linear-gradient(to right, #0253a4, #05366c);
  border: 1px solid #024283;
}

.background-grey,
.btn-grey button {
  background: rgb(177, 176, 176);
  background-image: -webkit-linear-gradient(left, #b1b0b0, #9d9fa0);
  background-image: -o-linear-gradient(left, #b1b0b0, #9d9fa0);
  background-image: linear-gradient(to right, #b1b0b0, #9d9fa0);
  border: 1px solid #b1b0b0;
}

.opacity {
  opacity: 0.5;
}

.background-green,
.btn-green button {
  background-color: #0da505;
}

.background-orange {
  background-color: #c98d52;
}

.red {
  color: red;
  font-weight: 600;
}

.single-buy-left {
  width: 60%;
}

.single-buy {
  display: flex;
  margin-top: 20px;
  padding: 20px 25px;
  border-radius: 5px;
  background: #0253a4;
  background-image: -webkit-linear-gradient(left, #0253a4, #05366c);
  background-image: -o-linear-gradient(left, #0253a4, #05366c);
  background-image: linear-gradient(to right, #0253a4, #05366c);
  border: 1px solid #024283;
  color: #fff;
  justify-content: space-between;
  align-items: flex-start;
  transition-property: box-shadow;
  transition-duration: 0.5s;
}

.single-buy:hover {
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.2);
}

.single-buy-value {
  font-size: 2.2em;
  font-weight: 600;
  color: #ffbf1a;
}

.single-buy-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.single-buy-btn-pay {
  padding: 10px 69px;
  border-radius: 7px;
  transition-property: background-color;
  transition-duration: 0.5s;
}

.single-buy-btn-pay:hover {
  background-color: #0a7c04;
}

.single-buy-btn-pay a,
.single-buy-btn-shortpay a {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
}

.single-buy-btn-shortpay {
  margin-top: 10px;
  /* background-color: #efa860; */
  padding: 10px 30px;
  border-radius: 7px;
  transition-property: background-color;
  transition-duration: 0.5s;
}

.single-buy-btn-shortpay:hover {
  background-color: #c98d52;
}

.single-buy-left-info img {
  background-color: white;
  padding: 10px;
  border-radius: 5px;
}

.single-buy-left-info {
  display: flex;
  align-items: center;
	    gap: 20px;
}

.single-buy-img {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

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

.all-product-etc {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-around;
}

.box-article-product {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  width: 330px;
  background-color: #fafafa;
  transition-property: box-shadow;
  transition-duration: 0.5s;
}

.box-article-product:hover {
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.2);
  /* box-shadow: 3px 5px 40px -6px rgba(128, 128, 128, 0.75);
  -webkit-box-shadow: 3px 5px 40px -6px rgba(128, 128, 128, 0.75);
  -moz-box-shadow: 3px 5px 40px -6px rgba(128, 128, 128, 0.75); */
}

.box-news-img img {
  width: 330px;
  height: 240px;
  border-radius: 10px 10px 0 0;
}

.box-product-title {
  font-size: 0.9rem;
  padding: 10px;
}

.box-product a {
  text-decoration: none;
}
.box-product-title:hover,
.box-product a:hover {
  color: rgb(83, 86, 245);
  text-decoration: none;
}

.box-product-info {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 20px 5px;
  align-items: flex-end;
  justify-content: space-around;
}

.box-product-info-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.box-product-info-price .cost {
  margin-top: 20px;
  font-size: 1.3rem;
  font-weight: 600;
}

.box-product-info-price .articul-info {
  font-size: 0.9rem;
  color: gray;
}

.box-product-info-btn button {
  background-color: #0da505;
  padding: 10px 30px;
  border: none;
  border-radius: 7px;
  transition-property: background-color;
  transition-duration: 0.5s;
}

.box-product-info-btn button:hover {
  background-color: #0a7c04;
  cursor: pointer;
}

.box-product-info-btn button,
.box-product-info-btn button:hover {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  transition-property: color;
  transition-duration: 0.5s;
}

.box-product-info-btn button:hover {
  color: rgb(253, 81, 81);
}

/* Block Info Tab */

.tab-container {
  margin: 40px 0;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  border-radius: 5px 5px 0 0;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 0 0 5px 5px;
  border-top: none;
}

.damage {
  padding: 10px 20px;
  border: solid 1px #ccc;
  border-radius: 10px;
  margin: 20px;
  width: 140px;
}

.product-delivery {
  display: flex;
  flex-direction: column;
  margin: 30px 0;
}

.product-delivery-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 5px;
}

.block-img img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 3px;
}

.block-name,
.block-tarif {
  font-weight: bold;
}

.green {
  color: #0da505;
}

/*--------- Site Footer ---------------*/

.site-footer {
  background-color: #0253a4;
  padding: 20px 0;
  color: #edecee;
}

.footer-logo {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-menu a {
  text-decoration: none;
}

.footer-logo-menu a:hover {
  color: #b0baf3;
}

.footer-logo-menu ul,
.footer-logo-menu ol {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #edecee;
}

@media (max-width: 1000px) {
		.auto__parts-info-block {
    flex-wrap: wrap;
  }
}

@media (max-width: 740px) {
	h1, h2{
		font-size: 1.5rem;
	}
	

  .etc-parts {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
	.single-buy {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 20px;
	}
	
	.single-buy-left {
		width: 100%;
		justify-items: center;
	}
	.single-buy-right{
		display: flex;
		flex-direction: row;
		justify-content: center;
		gap: 20px;
	}
	.single-buy-btn-shortpay{
		margin-top: 0;
	}
	.single-buy-btn-pay a, .single-buy-btn-shortpay a{
		font-size: .9rem;
	}
}
