:root {
	--left_right: -150px;
}
#product {
	margin-top: 150px;
	height: fit-content;
}

.carousel-cell {
	width: 100%; /* full width */
	margin-right: 10px;
}
.flickity-page-dots .dot {
	width: 14px;
	height: 14px;
	border: 2px solid #343434;
	box-sizing: border-box;
	cursor: pointer;
	background-color: transparent;
	opacity: 1;
}
.flickity-page-dots .dot.is-selected {
	background-color: #343434;
}
.carousel.is-fullscreen .carousel-cell {
	height: 100%;
}
.product-slide .product-slide__img {
	width: 100%;
	height: fit-content;
	object-fit: contain;
}

.product-slide h4 {
	text-align: center;
	margin-top: 67px;
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
	color: #25252a;
}

.product-head {
	border-bottom: 1px solid #ccc;
	display: -ms-flexbox;
	display: flex;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.product-head .product-head__icon {
	margin: 4px 10px 0 0;
}
.product-head .product-head__icon img {
	width: 24px;
	height: 24px;
	display: block;
}
.product-head h2 {
	flex: 1;
	font-weight: 500;
	font-size: 24px;
	line-height: 32px;
	margin: 0;
	color: #25252a;
}

.product-head__sub {
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	color: #a7a7a7;
}

.dosage-tabs__item {
	background: #f8f8f8;
	border-radius: 10px;
	padding: 9px 6px 15px 6px;
	box-sizing: border-box;
	text-align: center;
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
	cursor: pointer;
	border: 1px solid transparent;
}

.dosage-tabs__item:hover {
	border: 1px solid #025cb9;
}

.dosage-tabs__item h6 {
	font-weight: 700;
	font-size: 14px;
	line-height: 17px;
	margin: 0;
	margin-top: 3px;
	color: #25252a;
}

.dosage-tabs__item p {
	font-weight: 400;
	font-size: 14px;
	line-height: 14px;
	margin-top: 5px;
	overflow-wrap: break-word;
	word-wrap: break-word;
	-ms-hyphens: auto;
	hyphens: auto;
	margin: 0;
	margin-top: 3px;
	color: #25252a;
}
.modal-slide-prev[disabled],
.modal-slide-next[disabled] {
	display: none;
}
.product-card-dosage-item__img img {
	width: 70%;
	display: block;
	margin: 0 auto;
	aspect-ratio: 3/2;
	object-fit: contain;
}
.product-tabs {
	gap: 20px;
}
.product-tabs > .tabs-item {
	width: 100%;
	max-width: calc(100% / 3);
}
.product-card-dosage__title {
	display: block;
	font-weight: 600;
	font-size: 16px;
	line-height: 26px;
	margin: 10px 0 4px 0;
	color: #25252a;
	margin-top: 30px;
}
.dosage-tabs__item.active {
	border: 1px solid #025cb9;
}
/* ===================
	About start
==================== */
#about {
	margin-top: 100px;
}
.about-head {
	width: 100%;
}
.about-head .about-head__blog,
.about-head__title {
	width: fit-content;
	background: #f7f7f7;
	padding: 27px 54px;
	text-align: center;
	font-weight: 500;
	font-size: 18px;
	line-height: 26px;
}
.about-head .about-head__blog h5,
.about-head__title h5 {
	color: #343434;
}
.about-head__title {
	text-align: start;
	width: 100%;
}
.btn-link {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 28px 40px 25px 0;
	cursor: pointer;
}
.btn-link:hover {
	text-decoration: none;
}
.btn-link h5 {
	margin: 0;
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: #25252a;
	text-decoration: none;
	text-transform: uppercase;
	text-align: start;
}

.accordion {
	border-bottom: 1px solid #909090;
	margin-bottom: 8px;
}

.btn-link:focus,
.btn-link:hover {
	text-decoration: none;
}

.card-body {
	padding-bottom: 20px;
}
.card-body > * {
	font-size: 18px;
	line-height: 26px;
	color: #343434;
	font-weight: 400;
	color: #343434;
}
.card-body > b {
	font-weight: 700;
}
.product-modal .modal-content {
	border: none;
}
.btn-link .accordion-arrow-btn {
	width: 30px;
	height: 30px;
	transition: 0.3s;
	display: block;
	transform: rotate(180deg);
}
.btn-link .accordion-arrow-btn.active {
	transform: rotate(0);
}
.btn-link .accordion-arrow-btn:hover {
	transform: rotate(0);
}
.table-container {
	width: 100%;
	height: fit-content;
	overflow-x: auto;
}
.table-window {
	width: 100%;
	height: fit-content;
	border-collapse: collapse;
}
.btn-link.active .accordion-arrow-btn {
	transform: rotate(0);
}
.btn-link.active .accordion-arrow-btn:hover {
	transform: rotate(180deg);
}

.dl-item {
	display: flex;
	margin-bottom: 15px;
	color: #25252a;
}
.dl-item .dt {
	width: 50%;
	padding-right: 40px;
	font-weight: 700;
}

.dl-item .dd {
	width: 50%;
	font-weight: 500;
}
.tab-content {
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}
.tab-content.active {
	visibility: visible;
	opacity: 1;
	height: 100%;
	animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.product-modal .modal-header {
	border: none;
}

.modal.product-modal.show .modal-dialog {
	max-width: 1024px;
	top: 50%;
	transform: translateY(-50%);
	margin: 0 auto;
}
.product-modal .modal-body img {
	width: 100%;
	height: 100%;
	aspect-ratio: 3/1.5;
	object-fit: contain;
	margin: 0 auto;
}
/* .product-modal .modal-body .modal-big-img img {
	width: 75%;
} */
.product-modal .modal-body h5 {
	text-align: center;
	padding: 20px 0 20px 0;
	font-size: 18px;
	color: #25252a;
}
.modal-backdrop {
	background: rgba(2, 92, 185, 0.8);
}

.modal-backdrop.show {
	opacity: 1;
}

.modal-close::after,
.modal-close::before {
	background: #7c858c;
	width: 30px;
	height: 1px;
	display: block;
	content: "";
	transition: 0.3s;
	margin: 0 auto;
}
.owl-theme .owl-dots .owl-dot span {
	width: 14px;
	height: 14px;
	background-color: transparent;
	border: 2px solid #343434;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background-color: #25252a;
}
.modal-close::before {
	transform: rotate(45deg);
}
.modal-close::after {
	transform: rotate(-45deg);
}
.modal-close {
	border: none;
	width: 40px;
	height: 40px;
	display: block;
	z-index: 2;
	cursor: pointer;
}

.modal-slide-prev,
.modal-slide-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	width: 80px;
	height: 80px;
}
#alertModal .modal-content {
	border: none;
}
#alertModal .modal-dialog {
	max-width: 780px;
}
.alertModal-btns {
	display: flex;
	column-gap: 10px;
	width: 100%;
}
.alertModal-btns a,
.alertModal-btns button {
	color: #fff;
	display: block;
	background-color: #1b1b23;
	border: none;
	font-weight: 400;
	text-align: center;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	white-space: nowrap;
	user-select: none;
	padding: 10px 20px;
	font-size: 20px;
	width: 25%;
}
.alertModal-btns a:hover,
.alertModal-btns button:hover {
	background-color: #025cb9;
}
#alertModal .modal-body h1 {
	font-size: 200%;
	color: #004948;
	font-weight: 700;
	line-height: 130%;
}
.modal-slide-prev svg,
.modal-slide-next svg {
	width: 50px;
	height: 50px;
}
.modal-slide-prev svg path,
.modal-slide-next svg path {
	stroke: #fff;
}
.modal-slide-next {
	left: var(--left_right);
}
.modal-slide-prev {
	right: var(--left_right);
}

ul.card-body__items,
ol.card-body__items {
	padding-left: 30px;
	color: #25252a;
	font-size: 18px;
}
ul.card-body__items {
	list-style: disc;
}

.footer-txt {
	margin-top: 100px;
	background-color: #dcd8d7;
	padding-top: 40px;
	padding-bottom: 40px;
}
.footer-txt h1 {
	color: #25252a;
	font-size: 25px;
	font-weight: 700;
}

.main-title {
	padding: 60px 0;
	text-align: center;
	background-color: #f7f7f7;
}
#catalog {
	padding-bottom: 100px;
}
.catalog-card {
	height: 100%;
	border: 1px solid #f7f7f7;
	padding: 20px;
	display: flex;
	align-items: center;
	flex-direction: column;
	position: relative;
	transition: ease-out 0.3s;
}
.catalog-card:hover {
	z-index: 2;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.catalog-card img {
	width: 100%;
	aspect-ratio: 3/2;
	object-fit: contain;
}
.catalog-card h5 {
	text-align: center;
	margin: 0;
	font-size: 18px;
	color: #25252a;
}
.main-title h1 {
	font-size: 30px;
}
.mt-135 {
	margin-top: 135px;
}
@media (max-width: 1450px) {
	:root {
		--left_right: -100px;
	}
}
@media (max-width: 1280px) {
	:root {
		--left_right: -50px;
	}
	.modal-slide-next,
	.modal-slide-prev {
		background-color: #a4aaaf;
	}
}

@media (max-width: 1170px) {
	:root {
		--left_right: 0;
	}
	.modal .product-slide {
		padding: 0 100px;
	}
	.modal .owl-carousel .owl-item img {
		object-fit: contain;
	}
	.product-slide h4 {
		margin-top: 20px;
	}
}

@media (max-width: 1095px) {
	.modal-dialog {
		max-width: 95%;
	}
	.modal .product-slide {
		padding: 0 50px;
	}
}
@media (max-width: 768px) {
	.modal .product-slide {
		padding: 0;
	}
	.modal-slide-next,
	.modal-slide-prev {
		width: 50px;
		height: 50px;
	}
	.btn-link {
		padding-right: 20px;
	}
	.btn-link .accordion-arrow-btn {
		width: 20px;
		height: 20px;
	}
	.about-head__title {
		padding: 27px 0;
	}
}
@media (max-width: 670px) {
	.dl-item {
		flex-direction: column;
	}
	.dl-item .dt,
	.dl-item .dd {
		width: 100%;
		padding: 0;
	}
	.dl-item:not(:last-child) {
		border-bottom: 1px solid;
	}
}
@media (max-width: 500px) {
	.product-tabs {
		flex-wrap: wrap;
	}
	.product-tabs > .tabs-item {
		max-width: calc(100% / 2 - 10px);
	}
}
/* @media (max-width: 1170px)  */
