.header {
  overflow-x: hidden;
}

.header__top-wrapper {
  background-color: #ededed;
  background: -o-linear-gradient(335deg, #ededed 0%, #ededed 75%, #6e7774 75%, #fff 75%, #fff 100%);
  background: linear-gradient(115deg, #ededed 0%, #ededed 75%, #6e7774 75%, #fff 75%, #fff 100%);
  background-size: 85% 100%;
  background-repeat: no-repeat;
}

.header__top {
  min-height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__top-logo {
  height: 36px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.header__top-logo img {
  height: inherit;
  width: 100%;
}

.header__top-logo span {
  font-weight: 300;
  font-size: 12px;
}

.header__top-pay img {
  height: 100%;
}

.header__top-basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 14px;
}

.header__live-chat-btn {
  background-color: #57586e;
  text-transform: uppercase;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 24px;
  transition: opacity 300ms ease-in-out;
}

.header__live-chat-btn:hover {
  opacity: .7;
}

.top-basket__amount {
  position: relative;
  margin-top: 5px;
  margin-right: 24px;
}

.top-basket__amount span {
  content: '';
  position: absolute;
  left: 6px;
  top: -3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: #6e6c83;
  color: #f1f1f1;
  font-size: 10px;
  line-height: 19px;
  text-align: center;
}

.top-basket__text {
  font-size: 18px;
  color: #58595b;
  text-align: right;
}

.top-basket__price {
  color: #fe565d;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  padding-left: 28px;
}

.top-basket__price::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 21px;
  height: 23px;
  background-image: url(../images/header/zloty.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header__content-wrapper {
  /* min-height: 275px; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 -1px 4px #dddddd;
}

.header__content {
  padding-top: 20px;
}

/* .header__content-main {
  margin-right: 50px;
  padding-top: 20px;
} */

.header__content-text {
  margin-bottom: 0;
}

.header__content-text p {
  max-width: 900px;
  text-transform: uppercase;
  font-weight: 900;
  color: #58566f;
  font-size: 28px;
  line-height: 1;
  margin: 0px;
  margin-bottom: 6px;
}

.header__content-text p:last-child {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.header__content-call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 30px;  
}

.header__content-phone {
  margin: auto 10px;
}

.header__content-phone img {
  height: inherit;
  width: 100%;
}

.header__mob-call-container .header__content-phone{
  margin: 10px;
}

.header__content-hours {
  height: 50px;
  margin: 5px 0 5px 20px;
}

.header__content-hours img {
  width: 100%;
  height: inherit;
}

.header__call-container {
  display: flex;
}

.header__bottom-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-top: auto;
}

.header__bottom-post img,
.header__bottom-sequrity img {
  height: 25px;
}

.header__brands-inner {
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__brands-inner img {
  margin: 0 5px;
  height: 100%;
}

.header__brands-inner img:nth-child(5) {
  padding-bottom: 17px;
}

@media (max-width: 880px) {
  .header__content-wrapper {
    min-height: unset;
  }
  .header__call-container {
    display: none;
  }
  .header__brands-inner img {
    width: 100px;
  }
}

.header__menu-wrapper {
  top: 0;
  left: 0;
  background-color: #fe565d;
  z-index: 7;
}

.header__menu-list {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
}

.header__menu-item {
  padding: 0 16px;
  border-left: 1px solid #fff;
  position: relative;
}

.header__menu-item::before,
.header__menu-item::after {
  opacity: 0;
  content: '';
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #eae9ec;
  z-index: 2;
}

.header__menu-item::before {
  left: -1px;
}

.header__menu-item::after {
  right: -1px;
}

.header__menu-item:last-child {
  border-right: 1px solid #fff;
}

.header__menu-item>a {
  position: relative;
  font-size: 19px;
  padding: 12px 0 12px 25px;
  text-align: center;
  text-decoration: none;
}

.header__menu-item>a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
}

.header__menu-item:hover,
.header__menu-item a:hover,
.header__menu-item.active {
  background-color: #eae9ec;
  color: #ee575e;
}

.header__menu-item:hover::after,
.header__menu-item:hover::before,
.header__menu-item:active::after,
.header__menu-item:active::before {
  opacity: 1;
}

.header__menu-home a::before {
  background-image: url(../images/header/menu/home.svg);
  top: 13px;
}

.header__menu-home:hover a::before,
.header__menu-home.active a::before {
  background-image: url(../images/header/menu/home_hover.svg);
}

.header__menu-question a::before {
  background-image: url(../images/header/menu/question.svg);
  top: 17px;
}

.header__menu-question:hover a::before,
.header__menu-question.active a::before {
  background-image: url(../images/header/menu/question_hover.svg);
}

.header__menu-cart a::before {
  background-image: url(../images/header/menu/shopping_cart.svg);
  top: 17px;
}

.header__menu-cart:hover a::before,
.header__menu-cart.active a::before {
  background-image: url(../images/header/menu/shopping_cart_hover.svg);
}

.header__menu-delivery a::before {
  background-image: url(../images/header/menu/car.svg);
}

.header__menu-delivery:hover a::before,
.header__menu-delivery.active a::before {
  background-image: url(../images/header/menu/car_hover.svg);
}

.header__menu-user a::before {
  background-image: url(../images/header/menu/user.svg);
  top: 14px;
}

.header__menu-user:hover a::before,
.header__menu-user.active a::before {
  background-image: url(../images/header/menu/user_hover.svg);
}

.header__menu-pill>a::before {
  background-image: url(../images/header/menu/pill.svg);
}

.header__menu-pill:hover>a::before,
.header__menu-pill.active>a::before {
  background-image: url(../images/header/menu/pill_hover.svg);
}

.header__menu-blog a::before {
  background-image: url(../images/header/menu/edit.svg);
}

.header__menu-blog:hover a::before,
.header__menu-blog.active a::before {
  background-image: url(../images/header/menu/edit_hover.svg);
}

.main {
  padding-top: 40px;
  padding-bottom: 60px;
}

.main .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main__sidebar {
  width: 250px;
}

.main__sidebar-item {
  width: inherit;
  background-color: #f8f8fa;
  border-radius: 5px;
  margin-bottom: 40px;
  padding-bottom: 20px;
}

.footer__content-item.active a {
  color: #ce1f2e;
}

.footer__content-item:hover a {
  color: #ce1f2e;
}

.footer__content-item a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

.sidebar-item__title {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: #58566f;
  padding: 20px 5px 18px;
  text-align: center;
  margin-bottom: 13px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border-top: 3px solid transparent;
  border-bottom: 3px solid #fe565d;
}

.sidebar-item__title:hover,
.sidebar-item__title:active {
  border-top-color: #fe565d;
}

.sidebar-item__subtitle {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #58566f;
  padding: 12px 10px 12px 52px;
  position: relative;
  text-decoration: none !important;
}

.sidebar-item__subtitle::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 10px;
  width: 31px;
  height: 31px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sidebar-item__viagra::before {
  background-image: url(../images/icons_sidebar/viagra.png);
}

.sidebar-item__cialis::before {
  background-image: url(../images/icons_sidebar/cialis_online.png);
}

.sidebar-item__levitra::before {
  background-image: url(../images/icons_sidebar/levitra-generic.png);
}

.sidebar-item__kamagra::before {
  background-image: url(../images/icons_sidebar/kamagra100.png);
}

.sidebar-item__female-viagra::before {
  background-image: url(../images/icons_sidebar/viagra-female.png);
}

.sidebar-item__viagrajelly::before {
  background-image: url(../images/icons_sidebar/viagra-oral-jelly.png);
}

.sidebar-item__viagrapro::before {
  background-image: url(../images/icons_sidebar/viagra-pro.png);
}

.sidebar-item__viagrasoft::before {
  background-image: url(../images/icons_sidebar/viagra-soft-tabs-online.png);
}

.sidebar-item__viagrasuper::before {
  background-image: url(../images/icons_sidebar/viagra-super-active.png);
}

.sidebar-item__kamagra-jelly::before {
  background-image: url(../images/icons_sidebar/kamagra-oral-jelly.png);
}

.sidebar-item__kamagragold::before {
  background-image: url(../images/icons_sidebar/kamagra-gold.png);
}

.sidebar-item__super-kamagra::before {
  background-image: url(../images/icons_sidebar/super-kamagra.png);
}

.sidebar-item__cenforce::before {
  background-image: url(../images/icons_sidebar/cenforce100.png);
}

.sidebar-item__cialis-daily::before {
  background-image: url(../images/icons_sidebar/cialis-daily.png);
}

.sidebar-item__super-p-force::before {
  background-image: url(../images/icons_sidebar/super-p-force.png);
}

.sidebar-item__vidalista::before {
  background-image: url(../images/icons_sidebar/vidalista-.png);
}

.sidebar-item__tadapox::before {
  background-image: url(../images/icons_sidebar/tadapox_.png);
}

.sidebar-item__priligy::before {
  background-image: url(../images/icons_sidebar/priligy-online.png);
}

.sidebar-item__brand-levitra::before {
  background-image: url(../images/icons_sidebar/brand_levitra.png);
}

.sidebar-item__subtitle:hover,
.sidebar-item__subtitle:active {
  background-color: #fff;
  color: #fe565d;
  font-weight: 700;
}

.main__content {
  width: 100%;
  margin-left: 40px;
}

.main__content-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.main__content-item {
  border-radius: 5px;
  width: 31%;
  background-color: #fff;
  text-align: center;
  margin: 0 0 15px 5px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  position: relative;
  border: 1px solid #6e6c83;
  min-height: 426px;
  cursor: pointer;  
}

.main__content-item:hover,
.main__content-item:active {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 2;
  -webkit-box-shadow: 0px 0px 18.8px 1.2px rgba(66, 66, 66, 0.69);
  box-shadow: 0px 0px 18.8px 1.2px rgba(66, 66, 66, 0.69);
  margin-bottom: 0;
  border: 2px solid #fe565d;
}

.main__content-item:hover::before,
.main__content-item:active::before {
  background: #fff;
}

.main__content-item:hover .content-item__name,
.main__content-item:active .content-item__name {
  background-color: #fff;
  color: #fe565d;
  font-size: 22px;
}

.main__content-item:hover .content-item__image img,
.main__content-item:active .content-item__image img {
  border: 1.5px solid #c5c5c5;
  border-radius: 5px;
}

.main__content-item:hover .content-item__price,
.main__content-item:active .content-item__price {
  color: #fe565d;
  font-size: 25px;
}

.main__content-item:hover .content-item__text,
.main__content-item:active .content-item__text {
  font-size: 13px;
}

.content-item__name {
  font-size: 20px;
  font-weight: 700;
  padding: 22px 0 20px;
  background-color: #6e6c83;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  min-height: 66px;
}

.content-item__image {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  min-height: 165px;
}

.content-item__image img {
  margin-top: 27px;
  border-radius: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 160px;
  max-height: 160px;
  width: 160px;
  height: 160px;
  border: 1px solid #58566f;
  object-fit: contain;
}

.discount_product {
  text-transform: none;
  position: absolute;
  font-weight: 400;
  top: 85px;
  right: 0px;
  background-color: #58566f;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  font-size: 14px;
  padding: 10px 12px 9px 15px;
  min-height: 38.6px;
  height: 38.6px;
}

.content-item__price {
  font-size: 24px;
  color: #58595b;
  min-height: 16.8px;
}

.content-item__text {
  font-size: 12px;
  color: #9f9f9f;
  min-height: 16.8px;
}

.content-item__btn {
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  padding: 18px 5px 18px 20px;
  width: 70%;
  border: 2px solid #fff;
  border-radius: 5px;
  background-color: #fe565d;
  margin: 28px 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.content-item__btn::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 21px;
  width: 19px;
  height: 20px;
  background-image: url(../images/cart.png);
  background-repeat: no-repeat;
  z-index: 5;
}

.content-item__btn:hover,
.content-item__btn:active {
  background-color: #ff8127;
}

.content-info__title,
.content-info__category {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 22px;
  padding-left: 68px;
  position: relative;
}

.content-info__title::before {
  position: absolute;
  content: '';
  width: 40px;
  height: 40px;  
  left: 10px;
  background-image: url(../images/pillow.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.content-info__category {
  font-style: italic;
  padding-left: 5px;
  padding-top: 20px;
  font-size: 26px;
}

.main__content-product {
  border-radius: 5px;
  background-color: #f9f9f9;
  border: 0.5px solid #ddd;
}

.main__content-image {
  display: none;
  width: 40%;
  margin-left: 20px;
  float: right;
}

.main__content-image img {
  width: 100%
}

.main__content-image__right {
  margin-left: 0;
  margin-right: 20px;
  float: left;
}

.main__content-image__full {
  width: 100%;
  margin-bottom: 15px;
}

.main__content-image__full img {
  width: inherit;
  border-radius: 5px;
}

.content-info__text {
  display: none;
}

.content-info__text.product__text {
  display: block;
}

.content-info__text p {
  font-size: 19px;
  line-height: 30px;
  text-align: justify;  
}

.content-info__text a {
  text-decoration: underline;
}

.content-info__text ul,
.content-info__text ol{
  font-size: 19px;
  padding-bottom: 8px;
}

.content-info__text .table-lists{
  font-size: 16px;
  padding-top: 8px;
  list-style-type: none;
}

.content-info__text .table-lists li{
  margin-left: 0;
}

.content-info__text .table-lists li::before{
  content: "";
  display: inline-block;  
  width: 30px;
  top: 0;
  height: 30px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fe565d' class='bi bi-dot' viewBox='0 0 16 16'> <path d='M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3'/></svg>");
  background-repeat: no-repeat;
  background-size: 30px;
}

.content-info__text ol li{
  list-style-type: decimal;
  padding-left: 8px;
  margin-left: 20px;
}

.content-info__text ul li {
  list-style: none;
  padding-left: 30px;
  position: relative;
  margin-left: 20px;
  line-height: 30px;
  margin-bottom: 5px;
}

.content-info__text ul li::before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  top: 5px;
  left: 0;
  background-image: url(../images/check.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.content-info__text span {
  font-weight: 700;
  /* font-style: italic; */
}

.content-info__text.content-info__text-full {
  display: block;
}

.content-info__subtitle {
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 700;
  padding: 22px 7px 20px 60px;
  margin-top: 15px;
  margin-bottom: 10px;
  background-color: #eae9ec;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}

.custom-content-info__subtitle-block{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.custom-content-info__subtitle-block.faq{
  margin: 32px 0;
}

.custom-content-info__subtitle-block.faq svg{
  margin-bottom: 0;
}

.custom-content-info__subtitle-block svg{
  min-width: 40px;
  height: 40px;
  margin-bottom: 4px;
}

.custom-content-info__subtitle {
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
  color: #000;
  text-transform: capitalize; 
}

.content-info__subtitle::before {
  position: absolute;
  content: '';
  width: 30px;
  height: 30px;
  top: 25px;
  left: 17px;
  background-image: url(../images/pills.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.content-info__subtitle:hover {
  color: #ee575e;
  text-decoration: underline;
}

.content-info__subtitle:hover::before {
  background-image: url(../images/pills_hover.svg);
}

.content-info__subtitle-ask {
  font-size: 21px;
}

 .custom-content-info__tab{
  position: relative;
  background-color: #f8f8fa;
  border-left: 4px solid #524f69a6;
  border-radius: 8px;
  padding: 32px;
  margin: 40px 0;
  box-shadow: -2.5px -2.5px 5px #FAFBFF, 2.5px 2.5px 5px #524f6924;
  display: flow-root;
}

.content-info__text .map-responsive {
  overflow: hidden;
  padding-bottom: 50%;
  position: relative;
  height: 0;
  border-radius: 16px;
  margin: 16px 0 32px 0;
}

.content-info__text .map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

 .contact-page svg{
  min-width: 30px;
  height: 30px;
  margin-top: 2px;
}

.accordion .card {
  border: 1px solid #58566f;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
 }

.accordion .btn-link {
  color: #524f69;
  font-size: 19px;
  font-weight: 500;
  text-decoration: none;
  background-color: #fff;
  width: 100%;
  border: none;
  outline: none;
  font-weight: 700;
}

.accordion .btn-link p{
  display: flex;
  margin-bottom: 0;
  white-space: break-spaces;
  gap: 6px;
}

.accordion .btn-link p::before{
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='%23fe565d'><path d='M424-320q0-81 14.5-116.5T500-514q41-36 62.5-62.5T584-637q0-41-27.5-68T480-732q-51 0-77.5 31T365-638l-103-44q21-64 77-111t141-47q105 0 161.5 58.5T698-641q0 50-21.5 85.5T609-475q-49 47-59.5 71.5T539-320H424Zm56 240q-33 0-56.5-23.5T400-160q0-33 23.5-56.5T480-240q33 0 56.5 23.5T560-160q0 33-23.5 56.5T480-80Z'/></svg>");
  background-repeat: no-repeat;
  background-size: 24px;
}

.accordion .btn-link:focus,
.accordion .btn-link:hover {
  text-decoration: none;
  background-color: #eae9ec;
  color: #524f69;
}

.accordion-icon {
  transition: transform 0.3s ease;
  font-size: 20px;
  color: #fe565d; 
}

.accordion .card-body {
  padding-left: 32px;
  background-color: #fff;
  border-top: 1px solid #58566f;
  color: #524f69;
  line-height: 1.6;
  font-size: 18px;
  text-align: justify;
}

.phone-number{
  display: flex;
  align-items: center;
}

.phone-number img{
  margin-top: 3px;
}

.accordion-toggle[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.content-info__tab.content-info__tab--active .content-info__text,
.content-info__tab.content-info__tab--active .main__content-image {
  display: block;
}

.content-info__tab.content-info__tab--active .content-info__subtitle {
  background-color: transparent;
}

.content-info__tab.content-info__tab--active .content-info__subtitle::before {
  background-image: url(../images/pills_active.svg);
}

.table.pills {
  width: 95%;
  border: 1px solid #58566f;
}

.sp-table-body tr:nth-child(4),
.sp-table-body tr:nth-child(4) .ph_price.price {
  background: #ebf3fc;
}

.sp-table-body td {
  position: relative;
  z-index: 1;
}

.sp-table-body tr:last-child .ph_price.price::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(88, 86, 111, 1);
  bottom: -1px;
  left: 0;
  z-index: 0;
}

.sp-table-body .ph_product.product::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(88, 86, 111, .1);
  bottom: 0;
  left: 15px;
}

.sp-table-body .ph_price.price::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(88, 86, 111, .1);
  bottom: 0;
  left: 0;
}

.sp-table-body .sp-table-bonus::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(88, 86, 111, .1);
  bottom: 0;
  left: 0px;
}

.table.pills tr,
.table.pills td,
.table.pills th {
  padding: 7px;
}

.ph_price.price.perpill {
  text-align: left;
}

.sp-table-economy.buyб,
.ph_price.price {
  text-align: center;
}

.sp-table-body .ph_price.price {
  white-space: nowrap;
  background: #ebf3fc;
  color: #424242;
  vertical-align: middle;
}

.sp-table-body .ph-perpill {
  text-align: center;
  vertical-align: middle;
}

.sp-table-body tr:hover,
.sp-table-body tr:hover .ph_price.price {
  cursor: pointer;
  background: #ebf3fc;
  transition: all .2s;
}

.ph_price.price .sp-table-save {
  display: block;
  font-size: 13px;
  color: #fe565d;
  text-decoration: line-through;
}

.sp-table-body .sp-table-bonus {
  text-transform: none;
  padding-left: 30px !important;
}

.ph_product.product span {
  color: #fe565d;
}

.ph_product.product .dosage-package {
  display: block;
  color: #424242;
}

.sp-table-economy.buy {
  /* display: flex;
    flex-direction: column;
    align-items: center; */
  white-space: nowrap;
  text-align: center;
}

.sp-table-economy.buy p {
  padding-top: 5px;
}

/* .sp-table-economy.buy span {
  width: 65%;
} */

.ph_product.product .bonus {
  font-size: 14px;
  text-transform: none;
}

.sp-table-perpill {
  font-size: 12px;
  text-transform: none;
  white-space: pre-wrap;
}

@media all and (max-width: 600px) {
  .ph_price.price .sp-table-save {
    font-size: 12px;
  }
}

.pills thead tr td,
.item-list thead tr td {
  background-color: #58566f;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
}

.pills,
.item-list {
  font-size: .86rem;
  font-weight: 600;
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.06);
}

.pills td,
.item-list td {
  vertical-align: middle;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  border-top: 1px solid #d4d4d4;
  color: #424242;
  font-size: 1rem;
  text-align: left;
}

.pills,
.item-list {
  font-size: .86rem;
  font-weight: 600;
}

.pills tr:not(.bonus),
.item-list tbody tr:not(.bonus) {
  text-transform: uppercase;
}

.pills td,
.item-list td {
  vertical-align: middle;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  border-top: 0px;
  color: #424242;
  font-size: 1rem;
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}

.table .sp-table-body tr td p {
  margin-bottom: 0px;
}

.btn-primary:hover {
  color: #fff;
  background: #58566f;
  border: none;
}


.footer-container{
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 18%;
  grid-template-areas:
          "brands links"
          "copyright links";
  column-gap: 4%;
}
.footer {
  min-height: 300px;
  background-color: #30384d;
  font-size: 16px;
  color: #fff;
  padding-bottom: 30px;
}

.footer__pharms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-evenly;
  grid-area: brands;
  padding-top: 35px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 2%;
}

.footer__pharms-item {
  display: inline-block;
  width: 120px;
  height: 70px;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
}

.footer__pharms-item_1 {
  background-image: url(../images/footer/pharm-1.jpg);
}

.footer__pharms-item_1:hover,
.footer__pharms-item_1:active {
  background-image: url(../images/footer/pharm-1_hover.jpg);
}

.footer__pharms-item_2 {
  background-image: url(../images/footer/pharm-2.jpg);
}

.footer__pharms-item_2:hover,
.footer__pharms-item_2:active {
  background-image: url(../images/footer/pharm-2_hover.jpg);
}

.footer__pharms-item_3 {
  background-image: url(../images/footer/pharm-3.jpg);
}

.footer__pharms-item_3:hover,
.footer__pharms-item_3:active {
  background-image: url(../images/footer/pharm-3_hover.jpg);
}

.footer__pharms-item_4 {
  background-image: url(../images/footer/pharm-4.jpg);
}

.footer__pharms-item_4:hover,
.footer__pharms-item_4:active {
  background-image: url(../images/footer/pharm-4_hover.jpg);
}

.footer__pharms-item_5 {
  background-image: url(../images/footer/pharm-5.jpg);
}

.footer__pharms-item_5:hover,
.footer__pharms-item_5:active {
  background-image: url(../images/footer/pharm-5_hover.jpg);
}

.footer__pharms-item_6 {
  background-image: url(../images/footer/pharm-6.jpg);
}

.footer__pharms-item_6:hover,
.footer__pharms-item_6:active {
  background-image: url(../images/footer/pharm-6_hover.jpg);
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;  
  grid-area: links;
  flex-direction: column;  
  margin-top: 30px;
}

.footer__content-about { 
  padding-right: 30px; 
}

.footer__content-politic { 
  padding-right: 30px; 
}

.footer__content-item {
  display: block;  
  margin: 10px 0;
}

.footer__bottom {
  line-height: 1.7;
  grid-area: copyright;
}

.footer__bottom p { 
 margin: 10px 0;
 text-align: center;
 color: #f8f8fa78;
 font-size: 14px;
}

.main__content-product {
  padding-bottom: 10px;
}

.content-product__title {
  font-size: 24px;
  font-weight: 900;
  color: #fe565d;
  text-transform: uppercase;
  padding: 28px 0 20px;
  margin: 0 10px;
}

.content-product__info {
  padding: 15px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product__info-image>img {
  margin-left: 18px;
}

.product__info-wrapper {
  width: 100%;
}

.product__info-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 10px;
}

.product__info-inner:first-child {
  margin-top: 20px;
}

.product__info-bottom {
  max-width: 100%;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 5px;
}

.product__info-bottom .product__info-title {
  width: 25%;
}

.product__info-title .product__info-text {
  width: 75%;
}

.product__info-title {
  font-size: 16px;
  font-weight: 900;
  color: #58566f;
  text-transform: uppercase;
  width: 40%;
  text-align: right;
  margin-top: 2px;
}

.product__info-text {
  font-size: 16px;
  padding-left: 10px;
}

.product__info-text img {
  height: 26px;
}

.product__info-text p {
  display: inline-block;
  vertical-align: top;
}

.product__info-pill {
  height: 200px;
  width: max-content;
  border: 1px solid #58566f;
  border-radius: 5px;
  margin-bottom: 20px;
  margin-right: 7px;
}

.product__info-pill img {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
}

.content-info__text.product__text {
  font-size: 18px;
  /* padding: 35px 0; */
}
.content-info__text.product__text p{
  font-size: 21px;
  line-height: 32px;
}

.content-info__text.product__text-notice {
  font-size: 14px;
  font-style: italic;
  margin: 10px 0;
}

.contacts__form {
  min-height: 250px;
  font-size: 16px;
  width: 100%;
  color: inherit;
  margin-top: 20px;
}

.contacts__form input,
.contacts__form button,
.contacts__form textarea {
  color: inherit;
  font-size: inherit;
  width: inherit;
  display: block;
  margin-bottom: 20px;
  border: 2px solid #fe565d;
  border-radius: 5px;
  padding: 15px;
  background-color: transparent;
}

.contacts__form button {
  width: 250px;
  color: #fff;
  text-transform: uppercase;
  background-color: #fe565d;
  text-align: center;
}

.contacts__form textarea {
  min-height: 160px;
}

.contacts__form button:hover {
  color: #fe565d;
  font-weight: 700;
  background-color: #eae9ec;
}

.cc-banner .cc-message {
  font-size: 16px;
}

.cc-banner .cc-message a {
  text-decoration: underline;
}

.cc-revoke,
.cc-window {
  font-family: inherit;
}

.cc-btn {
  padding: .4em 2em;
  background-color: #eae9ec !important;
  color: #000 !important;
  border-radius: 5px;
}

.cc-btn:hover {
  background-color: #fe565d !important;
}

.menu__burger {
  display: none;
  width: 30px;
  height: 65px;
  position: relative;
  top: 0;
  margin: 0px;
}

.menu__burger::before,
.menu__burger::after,
.menu__burger span {
  position: absolute;
  right: 0;
  background-color: #ededed;
  width: 70%;
  height: 4px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  margin: 0px 15%;
}

.sp-table-body .ph_product.product,
.ph_products_header .ph_product.product {
  padding-left: 15px;
}

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

.menu__burger::before {
  top: 17px;
  content: ''
}

.menu__burger::after {
  bottom: 18px;
  content: ''
}

.menu__burger span {
  top: 30px;
}

.menu__burger.active::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 30px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.menu__burger.active::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: 31px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.menu__burger.active span {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.fra-rat {
  margin-left: auto;
  margin-right: auto;
  width: 160px;
}

.fra-rat ul {
  margin-bottom: 0;
  display: inline;
}

.fra-rat li.ra-full {
  background-position: 0 0;
}

.fra-rat li {
  width: 18px;
  height: 17px;
  background: url(/images/star.svg) no-repeat;
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
  background-size: cover;
  display: inline-block;
  padding: 0;
}

.fra-rat span {
  font-size: 21px;
  font-weight: 600;
  padding-left: 15px;
}

.table__title {
  font-size: 21px;
  font-weight: 600;
  padding: 0;
}

.table__box {
  display: flex;
  justify-content: space-around;
  padding-top: 8px;
}

.table__box ul li {
  display: inline-block;
}

.table__box-link {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  color: #fe565d;
  background-color: #ebf3fc;
  border: 1.5px solid #ebf3fc;
  border-bottom: none;
  padding: 5px;
  margin: 5px 5px 0;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.table__box-link.active,
.table__box-link:hover {
  text-decoration: none;
  color: #fff;
  background-color: #fe565d;
  border: 1.5px solid #fe565d;
  transition: all 0.3s;
}

.tab-content {
  margin-bottom: 30px;
}

.tab-content .tab-pane {
  display: none;
}

.tab-content .active {
  display: block;
}

.callout.callout-warning {
  margin-bottom: 20px;
  border: 2px solid #ce1f2e;
  min-height: 100px;
  width: inherit;
  border-radius: 15px;
  padding: 15px;
  background-color: transparent;
  position: relative;
}

.callout-warning::before {
  position: absolute;
  content: '';
  left: 0;
  top: 10px;
  height: 73px;
  width: 5px;
  background-color: #ce1f2e;
}

.contact-us__map {
  margin-top: 10px;
  margin-bottom: 30px;
}

.contact-us__map iframe {
  max-width: 1090px;
  height: 415px;
  width: 100%;
}

/*add*/

.autor-block {
  border-top: 1px solid #f8cdcf;
  border-bottom: 1px solid #f8cdcf;
  padding: 20px 0;
  margin: 20px 0;
}

.autor-image {
  width: 150px;
  padding-left: 10px;
  margin-top: 10px;
  float: right;

}

.hr-autor {
  margin: 20px 0;
  padding: 0;
  height: 0;
  border-top: 2px dashed #ddd;
}

/* New table and checkout */

.sp-table-qty,
.ph_qty {
  display: none;
}
.ph_product.product span.bonus {
  color: #1ddf3b;
}
.checkout-table .bonus {
  color: #1ddf3b;
  font-weight: 600;
}
.discount-price {
  color: #574dca;
  background: #e0ddff;
  border-radius: 4px;
  padding: 2px 4px;
  width: fit-content;
  font-size: 12px;
  margin-bottom: .1rem;
}
.discount-shipping {
  color: #0053a1;
  background: #d5ddf8;
  border-radius: 4px;
  padding: 2px 4px;
  width: fit-content;
  font-size: 12px;
}

@media (min-width: 767.98px) {
  .sp-table-qty,
  .ph_qty {
    display: table-cell;
  }

  .qty-container {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
  }

  .qty-reduce,
  .qty-increase {
    all: unset;
    width: 30px;
    height: 38px;
  }

  .qty-reduce {
    background-color: #dee2e6;
    color: #58566f;
  }

  .qty-increase {
    background-color: #dee2e6;
    color: #58566f;
  }

  .qty-count {
    padding: 6px 0;
    width: 40px;
    height: 38px;
    color: #58566f;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    background-color: #ffffff;
  }

  .sp-table-qty,
  .sp-table-economy {
    vertical-align: middle !important;
  }

  .ph_price.price.perpill,
  .ph_qty,
  .ph_buy {
    text-align: center !important;
  }
}

/* Cookies msg and cart position */
.cart-position {
  bottom: 100px !important;
}

.cd-cart--empty .cd-cart__trigger,
.cd-cart--empty .cd-cart__content {
  -webkit-transform: translateY(250px);
  -ms-transform: translateY(250px);
  transform: translateY(250px);
}

@media (max-width: 768px) {
  .cart-position {
    bottom: 120px !important;
  }

  span.cc-message {
    margin-right: 0;
    font-size: 13px !important;
    line-height: 1.3;
    margin-bottom: 3px !important;
  }
}

@media (max-width: 574px) {
  .cart-position {
    bottom: 140px !important;
  }
}

@media screen and (max-width: 880px) {
  .header__content-call {
    flex-direction: column;
    margin-bottom: 16px;
    justify-content: center;
    align-items: center;
  }
}

.header__mob-call-container,
.header__menu-call {
  display: none;
}

@media (max-width: 768px) {
  .header__mob-call-container {
    display: flex;
    background-color: #fff;
    border-radius: 7px;
  }
  .header__menu-call {
    display: block;
  }
}

/* New pillinfo block */
.pl-pillinfo__product-title {
  font-size: 24px;
  font-weight: 900;
  color: #fe565d;
  text-transform: uppercase;
  padding-bottom: 18px;
  margin: 0 10px;
}
.pl-pillinfo__container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.pl-pillinfo__img-container {
  max-width: 200px;
}

.pl-pillinfo__image {
  width: 100%;
  height: auto;
}

.pl-pillinfo__content-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pl-pillinfo__info-block {
  display: flex;
  gap: 6px;
}

.pl-pillinfo__title {
  font-size: 16px;
  font-weight: 900;
  color: #58566f;
  text-transform: uppercase;
}

.pl-pillinfo__descr {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 16px;
}

.pl-pillinfo__descr_delivery {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.pl-pillinfo__descr_delivery .pl-pillinfo__descr-text {
  margin-bottom: 0;
}

.pl-pillinfo__descr-flag-img {
  width: 26px;
}

@media (max-width: 560px) {
  .pl-pillinfo__container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
  }
}