/* Single peptide layout */
.content-single-peptide .peptide-banner {
	display: flex;
	gap: 20px;
	height: 750px;
	padding-bottom: 40px;
}

.peptide-patients-stories .container {
	padding: 0;
}

.content-single-peptide .peptide-banner__content {
	width: 65%;
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid #d6daf1;
	border-radius: 38px;
	background: #fff;
}

.content-single-peptide .peptide-banner__scroll {
	flex: 1;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 20px;
	margin: 25px;
}

.content-single-peptide .peptide-banner__scroll::-webkit-scrollbar {
	width: 8px;
}

.content-single-peptide .peptide-banner__scroll::-webkit-scrollbar-track {
	background: #FFFFFF;
}

.content-single-peptide .peptide-banner__scroll::-webkit-scrollbar-thumb,
.content-single-peptide .peptide-banner__scroll::-webkit-scrollbar-thumb:hover,
.content-single-peptide .peptide-banner__scroll::-webkit-scrollbar-thumb:active {
	background: #F2F4FF !important;
	border: 1px solid #D6DAF1 !important;
	border-radius: 20px;
}


.content-single-peptide .peptide-banner__title h1 {
	margin: 30px 0;
	font-weight: 500;
	font-size: 60px;
	line-height: 54px;
	color: #171a31;
}

.content-single-peptide .peptide-banner__description {
	font-size: 18px;
	/* line-height: 22px; */
	color: #1c1c20;
}

.content-single-peptide .peptide-banner__description p:first-child {
	margin-top: 0;
}

.content-single-peptide .peptide-banner__description p:last-child {
	margin-bottom: 0;
}

.content-single-peptide .peptide-banner__divider {
	border-top: 1px solid #d6daf1;
	margin: 25px 0;
}

.content-single-peptide .peptide-specs {
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	margin: 20px 0;
}

.content-single-peptide .peptide-specs__item {
	display: flex;
	flex: 1 1 33.333%;
	min-width: 180px;
	padding: 16px 18px 16px 0;
	gap: 5px;
}

.content-single-peptide .peptide-specs__item--second {
	padding: 16px 18px;
	border-right: 1px solid #d6daf1;
	border-left: 1px solid #d6daf1;
	flex-direction: column;
	text-align: center;
}

.content-single-peptide .peptide-specs__item:last-child {
	border-right: 0;
	padding: 16px 18px ;
}

.content-single-peptide .peptide-specs__label {
	margin-bottom: 6px;
	font-size: 20px;
	font-weight: 700;
	color: #0a2b84;
}

.content-single-peptide .peptide-specs__value {
	font-size: 20px;
	color: #0a2b84;
	word-break: break-word;
}

.content-single-peptide .peptide-facts {
	margin: 20px 0;
	/* padding: 0; */
}

.content-single-peptide .peptide-facts__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 5px;
}

.content-single-peptide .peptide-facts__item {
	display: flex;
	align-items: center;
	/* gap: 5px; */
	border: 1px solid #d6daf1;
	border-radius: 12px;
	box-shadow: 0 2px 8px 0 rgb(0 0 0 / 5%);
}

.content-single-peptide .peptide-facts__icon {
	width: 76px;
	height: 76px;
	flex: 0 0 76px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.content-single-peptide .peptide-facts__icon-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.content-single-peptide .peptide-facts__title {
	margin-bottom: 4px;
	/* font-family: 'Outfit', system-ui, sans-serif; */
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	color: #032279;
}

.content-single-peptide .peptide-facts__value {
	font-size: 16px;
	line-height: 1.4;
	color: #032279;
	font-weight: 700;
}

.content-single-peptide .peptide-list-card {
	margin: 30px 0;
	padding: 20px;
	border: 1px solid #e7e3e363;
	border-radius: 30px;
	box-shadow: 1px 2px 15px 0 #0000000f;
	border-left: 6px solid transparent;
}

.content-single-peptide .peptide-list-card--indications {
	border-left-color: #006D4B;
}

.content-single-peptide .peptide-list-card--contraindications {
	border-left-color: #EC0909;
}

.content-single-peptide .peptide-list-card__title {
	margin: 0;
	font-family: 'Outfit', system-ui, sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.content-single-peptide .peptide-list-card--indications .peptide-list-card__title {
	color: #006D4B;
	background: linear-gradient(to bottom, #006D4B, #039769);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.content-single-peptide .peptide-list-card--contraindications .peptide-list-card__title {
	color: #EC0909;
	background: linear-gradient(to bottom, #EC0909, #A80000);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


.content-single-peptide .peptide-list-card__list li {
	font-size: 15px;
	line-height: 1.5;
	color: #5a5c70;
	gap: 10px;
}

.content-single-peptide .peptide-list-card__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	text-align: left;
}

.content-single-peptide .peptide-list-card__arrow-wrap {
	width: 34px;
	height: 34px;
	/* border: 1px solid #d6daf1; */
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	background: #fff;
	transform: rotate(
180deg);
}

.content-single-peptide .peptide-list-card__arrow {
	width: 22px;
	height: 26px;
	display: block;
	transition: transform 0.2s ease;
}

.content-single-peptide .peptide-list-card.is-open .peptide-list-card__arrow {
	transform: rotate(180deg);
}

.content-single-peptide .peptide-banner__media {
	width: 35%;
}

.content-single-peptide .peptide-banner__bg {
	height: 100%;
	border-radius: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.content-single-peptide .peptide-banner__stamp {
	position: absolute;
	top: 16px;
	left: 16px;
	width: 110px;
	height: auto;
	z-index: 2;
	pointer-events: none;
}

.content-single-peptide .peptide-banner__bg.red {
	background: linear-gradient(to bottom, #ffb9c0, #fff);
}

.content-single-peptide .peptide-banner__bg.orange,
.content-single-peptide .peptide-banner__bg.yellow {
	background: linear-gradient(to bottom, #ffefcb, #fff);
}

.content-single-peptide .peptide-banner__bg.green {
	background: linear-gradient(to bottom, #caffd1, #fff);
}

.content-single-peptide .peptide-banner__bg.purple {
	background: linear-gradient(to bottom, #ffd4f1, #fff);
}

.content-single-peptide .peptide-banner__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1;
}

.content-single-peptide .peptide-banner__placeholder {
	width: 65%;
	height: 60%;
	border-radius: 18px;
	background: rgb(255 255 255 / 18%);
}

.content-single-peptide .peptide-banner__badge {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 8px 14px;
	border: 1px solid #d6daf1;
	border-radius: 999px;
	background: rgb(255 255 255 / 90%);
	font-size: 16px;
	line-height: 1;
	font-weight: 400;
	color: #032279;
	white-space: nowrap;
	z-index: 3;
}

.banner-services-block2__content{
	display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.banner-services__ic {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.peptide-list-card__list{
	display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5px;
    line-height: 22px;
    font-size: 16px;
	margin-top: 14px;
}

.banner-services__icon {
    display: block !important;
    width: 16px !important;
    height: 16px !important;
    object-fit: contain;
    margin: 0 !important;
    max-width: none !important;
    max-height: none !important;
}

.content-single-peptide .banner-services-price {
	position: relative;
	background-image: url(/wp-content/uploads/media/glass.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 200px;
	border-radius: 38px;
	display: flex;
	align-items: center;
	padding: 30px 40px;
	overflow: hidden;
}

.content-single-peptide .banner-services-price::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 38px;
	background: rgb(255 255 255 / 85%);
	pointer-events: none;
	z-index: 1;
}

.content-single-peptide .banner-services-price__content {
	color: var(--theme-base-color);
	position: relative;
	z-index: 2;
	font-size: 30px;
	font-weight: 600;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
}

.content-single-peptide .weight-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.content-single-peptide .weight-btn {
	border: 1px solid #d6daf1;
	background: #fff;
	color: #032279;
	border-radius: 999px;
	padding: 8px 18px;
	font-size: 16px;
	line-height: 1.2;
	cursor: pointer;
	transition: 0.2s ease;
	font-weight: 700;
}

.weight-btn.active {
	background-color: #032279;
	color: white;
}


.content-single-peptide .banner-horizontal-line {
	width: 100%;
	height: 1px;
	background: rgb(3 34 121 / 15%);
	margin: 15px 0;
}

.content-single-peptide .banner-services-price__text {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: space-between;
}

.content-single-peptide .banner-old-price {
	color: #7a7a7a;
	text-decoration: line-through;
	font-size: 24px;
	font-weight: 400;
	min-height: 1em;
}

.content-single-peptide .banner-new-price {
	font-size: 30px;
	font-weight: 600;
	color: #032279;
}

.content-single-peptide .btn3 {
	width: fit-content;
}

.content-single-peptide .peptide-breadcrumb-mobile {
	display: none;
}

.peptide-other-formats.adns_block_services,
.description-peptides-wrap,
.other-peptides-wrap {
	padding-top: 40px;
	padding-bottom: 40px;
}

.peptide-other-formats.adns_block_services .navigation-buttons {
	margin-bottom: 5px;
}
.peptide-other-formats.adns_block_services .title_block{
	color: white;
}
.adns_block_section.peptide-other-formats {
	background-color: #032279;
	color: white;
	border-bottom-right-radius: 16px;
	border-bottom-left-radius: 16px;
	margin-top: 40px;
	margin-bottom: 40px;
}


.peptide-other-formats .grid-list-services {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 20px) / 2);
    gap: 20px;
    overflow: visible;
    padding-bottom: 0;
    width: 100%;
}
.peptide-other-formats .adns2_services_card {
    overflow: hidden;
    position: relative;
    height: 580px;
    border-radius: 16px;
    width: 580px;
}
 .adns2_services_card a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 580px;
}

 .adns2_services_img {
    height: 370px;
    border-radius: 16px;
}
 .adns2_services_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-top: 0;
    margin-left: 0;
    transition: 0.4s;
}
 .adns2_services_card_content {
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px;
    height: 244px;
}
 .adns2_services_title {
	font-weight: 700;
	font-size: 24px;
	line-height: 28px;
	letter-spacing: 0%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
 .adns2_services_price {
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	letter-spacing: 0%;
	min-height: 24px;
}
 .adns2_services_description {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
	min-height: 44px;
}
.adns2_services_card .service-price__btn{
	font-weight: 400;
	width: 244px;
	color: #032279;
	background: white;
	font-size: 18px;
	padding: 10px 24px;
	border-radius: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	border: none;
	margin-top: auto;
	margin-bottom: 15px;
}

 .adns2_services_link_service-main {
	position: absolute;
	bottom: 50px;
	right: 20px;
}

.content-single-peptide .description-peptides {
	padding: 24px;
	border: 1px solid #d6daf1;
	border-radius: 24px;
	background: #fff;
	color: black;
}

.content-single-peptide .descr-services-short,
.content-single-peptide .descr-services-full {
	font-size: 16px;
	line-height: 1.6;
	color: #171a31;
}

.content-single-peptide .descr-services-short {
	white-space: pre-wrap;
}

.content-single-peptide .descr-services-full h2,
.content-single-peptide .descr-services-full h3 {
	margin-top: 0;
}

.content-single-peptide .descr-services-btn {
	margin-top: 15px;
	padding: 14px 52px;
	border: 1px solid #032279;
	color: #032279;
	background: white;
	border-radius: 40px;
	width: fit-content;
	font-size: 18px;
}

.content-single-peptide .descr-services-btn:hover {
	opacity: 0.9;
}
.peptide-other-formats.adns_block_services .scroll-btn{
	border-color: white;
}
.peptide-other-formats.adns_block_services .scroll-btn{
	transform: rotate(45deg);
	padding: 16px;
}
.peptide-other-formats.adns_block_services .scroll-btn.left{
	transform: rotate(
225deg);
}
@media (max-width: 991px) {
	.content-single-peptide .peptide-banner {
		flex-direction: column-reverse;
		height: auto;
		padding: 0;
	}

	.content-single-peptide .peptide-banner__title h1 {
		font-weight: 500;
		font-size: 36px;
		margin: 0 0 10px;
	}

	.content-single-peptide .peptide-banner__content,
	.content-single-peptide .peptide-banner__media {
		width: 100%;
	}

	.content-single-peptide .peptide-banner__content {
		border: none;
	}

	.catalog-breadcrumb,
	.content-single-peptide .peptide-specs__item,
	.content-single-peptide .banner-services-price{
		display: none;
	}

	.content-single-peptide .peptide-breadcrumb-mobile {
		display: block;
	}

	.content-single-peptide .peptide-banner__scroll {
		padding: 0;
		margin: 0;
	}

	.content-single-peptide .peptide-banner__scroll-inner {
		height: auto;
		overflow: visible;
		padding-right: 0;
	}

	.content-single-peptide .peptide-banner__bg {
		height: 320px;
	}

	.content-single-peptide .peptide-facts__grid {
		/* grid-template-columns: repeat(auto-fit, minmax(220px, 2fr)); */
		display: flex;
		flex-wrap: wrap;
	}

	.description-peptides-wrap{
		padding: 0;
	}
	.peptide-list-card__list {
		grid-template-columns: 1fr;
	}

	.content-single-peptide .peptide-list-card {
		border-left: 0;
		border-top: 6px solid transparent;
	}

	.content-single-peptide .peptide-list-card--indications {
		border-top-color: #006D4B;
		margin: 0 5px;
	}

	.content-single-peptide .peptide-list-card--contraindications {
		border-top-color: #EC0909;
		margin: 30px 5px 5px 0;
	}

	.content-single-peptide .banner-services-price__text {
		flex-wrap: wrap;
	}
	.peptide-banner__heading{
		text-align: center;
	    border: 1px solid #d6daf1;
	    padding: 15px;
	    border-radius: 24px;	
	}
	.peptide-facts__content{
		padding: 0 10px 0;
	}
	.content-single-peptide .peptide-facts__icon {
	    width: 60px;
	    height: 60px;
	    flex: 0 0 60px;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	}
	.content-single-peptide .peptide-facts__item{
		gap: 5px;	
	}
	.content-single-peptide .peptide-banner__stamp {
	    width: 80px;
	}
	.content-single-peptide .peptide-banner__badge {
	    font-size: 14px;
	}
	.peptide-other-formats .adns2_services_card {
		flex: 0 0 256px;
		width: 256px;
		height: 602px;
	}

	.peptide-other-formats .title_block {
	    font-weight: 500;
	    font-size: 36px;
	    margin: 0;
	}
	.adns2_services_card .service-price__btn {
		width: 100%;
	}
	.content-single-peptide .description-peptides {
		padding: 16px;
		/* margin-top: 20px; */
	}
	.content-single-peptide .descr-services-btn {
        width: 100%;
    }
	.content-single-peptide .peptide-specs{
		display: none;
	}
	.content-single-peptide .peptide-banner__divider{
		margin: 15px 0;
	}
	.peptide-other-formats.adns_block_services .adns2_container{
		margin: 0 -16px;
	}
	.peptide-other-formats.adns_block_services,
	.other-peptides-wrap{
		padding: 20px 0;
	}
}

/* Общий контейнер */

.peptides_mini .scroll-btn{
   padding: 16px;
}

.peptides_mini .news-grid_content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.peptides_mini .news-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 615px;
    position: relative;
    width: 280px;
    transition: transform 0.3s ease;
}

.peptides_mini .news-card a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.peptides_mini .title_block,
.peptide-other-formats.adns_block_services .title_block{
    font-weight: 500;
    font-size: 60px;
    line-height: 68px;
}

.link_service img.news-card-img {
    width: 100%;
    object-fit: cover;
    height: 500px;
    border-radius: 20px;
    transition: height 0.3s ease;
}

.peptides_mini .service-price {
    font-weight: 700;
    color: #032279;
    font-size: 20px;
}
.peptides_mini .service-title,
.peptides_mini .service-title-hover{
    font-weight: 700;
    color: #032279;
    font-size: 24px;
}
.peptides_mini .service-title {
    min-height: 76px;
    padding: 16px 12px 10px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
}


.peptides_mini .service-content {
    padding: 16px 12px 12px;
    color: #032279;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 371px;
    left: 0;
    right: 0;
    height: 244px;
    overflow: hidden;
    background: #fff;
    transition: opacity 0.3s, visibility 0.3s;
}

.peptides_mini .news-card:hover .service-title {
    opacity: 0;
    visibility: hidden;
}
.peptides_mini .news-card:hover .service-content {
    opacity: 1;
    visibility: visible;
}

.peptides_mini .news-card:hover img.news-card-img {
    height: 371px;
}

.service-desc {
    margin: 5px 0;
	font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 44px;
}



.peptides_mini .scroll-btn.left {
    transform: rotate(180deg);
}

.peptides_mini .scroll-btn {
    transform: rotate(360deg);
    border: solid #032279 1px;
}

.scroll-btn:hover {
    background: #d6daff;
}

.news-card .service-price__btn {
    font-weight: 400;
    width: 100%;
    color: white;
    background: #032279;
    font-size: 18px;
    padding: 10px 24px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border: none;
    margin-top: 15px;
    margin-bottom: 15px;
}
.other-peptides-wrap .adns2_container{
	overflow: visible;
}
@media (max-width: 991px) {
    .peptides_mini .navigation-buttons {
        display: none;
    }

    .peptides_mini .grid_container_scroll.adns2_slider_container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .peptides_mini .grid_container_scroll.adns2_slider_container::-webkit-scrollbar {
        display: none;
    }

    .peptides_mini .grid_container_width.adns2_slider_content {
        width: max-content;
        transform: none !important;
        transition: none;
    }

    .peptides_mini .news-card {
        flex: 0 0 280px;
    }

    .peptides_mini .service-content {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex;
        flex-direction: column;
        padding: 10px;
        height: 220px;
		justify-content: space-between;
    }

    .peptides_mini .service-title {
        display: none !important;
    }

    .link_service:hover img.news-card-img {
        height: 330px;
    }

    .link_service img.news-card-img,
	.peptides_mini .news-card:hover img.news-card-img{
        height: 330px;
    }

    .peptides_mini .news-card {
        height: auto;
        min-height: 440px;
    }
	.adns2_services_image{
	    width: 100%;
	    height: 100%;
	    object-fit: cover;
	    object-position: center;
	    margin-top: 0;
	    margin-left: 0;
	    transition: 0.4s;
	}
	.adns2_services_card a {
	    width: 256px;
	}

	.peptides_mini .title_block,
	.peptide-other-formats.adns_block_services .title_block{
	    padding:0 16px;
	    font-size: 36px;
	}

}
