:root {
	--spacing-desktop: 50px;
	--spacing-mobile: 20px;
	--header-desktop-height: 67px;
	--header-mobile-height: 50px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	background-color: #fff;
	color: #000;
	font-family: "Poppins", sans-serif;
}

body {
	display: flex;
	flex-direction: column;
	height: 100dvh;
	background: linear-gradient(180deg, #EEEEEE 0%, #FFFFFF 100%);
	overflow: hidden;
}

#header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 18px var(--spacing-desktop);
	justify-content: center;
	box-shadow: 0px 2px 2px 0px #0000000F;
	height: var(--header-desktop-height);
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	background: #FFFFFF;
}

#header .logo {
	width: auto;
	height: 100%;
	max-width: 300px;
	max-height: 74px;
}

#header .text {
	font-weight: 400;
	font-size: 30px;
	font-family: inherit;
}

@media(max-width:1023px) {
	#header {
		padding: 10px var(--spacing-mobile);
		height: var(--header-mobile-height);
	}

	#header .logo {
		height: 25px;
	}

	#header .text {
		font-size: 20px;
	}

	#header.divider:after {
		left: var(--spacing-mobile);
		right: var(--spacing-mobile);
	}
}

.main_content {
	padding: 30px var(--spacing-desktop);
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
	overflow-y: auto;
}

@media(max-width:1023px) {
	.main_content {
		padding: 20px var(--spacing-mobile);
	}
}

section#text_section {
	margin-bottom: 24px;
	flex-shrink: 0;
}

#title {
	font-weight: 700;
	font-size: 30px;
	text-align: center;
	margin-bottom: 24px;
	color: #004679;
	font-family: inherit;
}

#description {
	font-weight: 400;
	line-height: 18px;
	font-size: 14px;
	text-align: center;
	color: #5282A1;
	font-family: inherit;
}

@media(max-width:1023px) {
	#title {
		font-size: 24px;
	}
}

#catalogs_tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	border: 3px solid #FFFFFF;
	height: 46px;
	background: #fafafa;
	width: fit-content;
	margin: 0 auto 34px auto;
	flex-shrink: 0;
}

#catalogs_tabs button {
	background: transparent;
	border: none;
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	color: #5283A1;
	padding: 11px 30px;
	width: 319px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	cursor: pointer;
	font-family: inherit;
}

#catalogs_tabs button.active {
	background: #64C1D6;
	color: #fff;
	border-radius: 100px;
	border: 3px solid #64c1d6;
	height: 46px;
}

@media(max-width:1023px) {
	#catalogs_tabs {
		display: none;
	}

	#catalogs_tabs button {
		width: 100%;
		padding: 11px 10px;
		font-size: 13px;
	}
}

#catalog_selector {
	display: none;
	flex-shrink: 0;
	margin-bottom: 20px;
	position: relative;
}

@media(max-width:1023px) {
	#catalog_selector {
		display: block;
	}
}

#catalog_selector .catalog-label {
	width: 100%;
	height: 40px;
	border-radius: 40px;
	border-width: 3px;
	padding: 5px 15px;
	border: 3px solid #fff;
	background: #fafafa;
	font-weight: 600;
	font-size: 14px;
	color: #5282a1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	font-family: inherit;
}

#catalog_selector .catalog-label i {
	font-size: 10px;
	color: #7ECCDB;
	display: flex;
	align-items: center;
	transition: transform 0.25s ease;
}

#catalog_selector .catalog-label i.open {
	transform: rotate(180deg);
}

#catalog_selector .catalog-options {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	width: 100%;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0px 4px 10px 0px #0000001A;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.35s ease, opacity 0.25s ease;
	z-index: 5;
	list-style-type: none;
}

#catalog_selector .catalog-options.open {
	max-height: 700px;
	opacity: 1;
}

#catalog_selector .catalog-options li {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	color: #5282A1;
	transition: .3s ease;
	padding: 10px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 14px;
}

#catalog_selector .catalog-options li:hover {
	background: #c1e7ef;
}

section#brochures_section {
	display: flex;
	justify-content: center;
	/* overflow: hidden; */
	/* max-width: 906px; */
	margin: 0 auto;
	width: 100%;
}

#brochures_list {
	display: flex;
	justify-content: safe center;
	gap: 34px;
	list-style-type: none;
	width: 100%;
	overflow-y: auto;
	padding-bottom: 30px;
	flex-wrap: wrap;
}

.no-catalogs {
	width: 100%;
	text-align: center;
	color: #5282A1;
	font-size: 14px;
	padding: 20px 0;
}

@media(max-width:1023px) {
	#brochures_list {
		flex-direction: column;
		gap: 20px;
		flex-wrap: unset;
		padding-bottom: 0;
	}
}

#brochures_list .brochure-item {
	width: 416px;
	height: 440px;
	border-radius: 30px;
	box-shadow: 0px 4px 4px 0px #0000000D;
	background: #FFFFFF;
	padding: 25px;
	padding-top: 35px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}

@media(max-width:1023px) {
	#brochures_list .brochure-item {
		width: 100%;
		height: auto;
		gap: 20px;
	}
}

#brochures_list .brochure-item .brochure-link {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-grow: 1;
	justify-content: space-between;
	margin-bottom: 18px;
	text-decoration: none;
}

#brochures_list .brochure-item .brochure-info {
	margin-bottom: 18px;
}

#brochures_list .brochure-item .brochure-info h3 {
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: #02385A;
	font-family: inherit;
}

#brochures_list .brochure-item .brochure-info p {
	font-weight: 600;
	font-size: 18px;
	text-align: center;
	color: #2376B6;
	font-family: inherit;
}

#brochures_list .brochure-item .brochure-image {
	width: 216px;
	height: 230px;
	margin: 0 auto;
	overflow: hidden;
}

#brochures_list .brochure-item .brochure-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	box-shadow: none;
}

#brochures_list .brochure-item .brochure-actions {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	width: 100%;
}

@media(max-width:1023px) {
	#brochures_list .brochure-item .brochure-actions {
		flex-direction: column;
		gap: 12px;
	}
}

#brochures_list .brochure-item .brochure-actions .read-btn,
#brochures_list .brochure-item .brochure-actions .share-btn {
	width: 175px;
	height: 40px;
	border-radius: 100px;
	padding: 10px;
	font-weight: 600;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
	font-family: inherit;
	text-decoration: none;
}

@media(max-width:1023px) {

	#brochures_list .brochure-item .brochure-actions .read-btn,
	#brochures_list .brochure-item .brochure-actions .share-btn {
		width: 100%;
	}
}

#brochures_list .brochure-item .brochure-actions .read-btn {
	background: #229BB0;
	color: #fff;
	border: 2px solid #43ABBE;
}

#brochures_list .brochure-item .brochure-actions .share-btn {
	color: #43ABBE;
	border: 2px solid #43ABBE;
	background: transparent;
}

.hide {
	display: none !important;
}

#share_overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

#share_popup {
	max-width: 749px;
	max-height: 486px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	overflow: hidden;
	padding: 0 10px;
}

#share_popup .share-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	height: 58px;
	background: linear-gradient(180deg, #017691 0%, #1E94AA 100%);
}

#share_popup .share-header .share-header-options {
	display: flex;
	align-items: center;
	gap: 11px;
	color: #fff;
}

#share_popup .share-header .share-header-options i {
	font-size: 22px;
	color: #C1E7EF;
}

#share_popup .share-header .share-header-title {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}

#share_popup .share-header .share-close {
	background: transparent;
	border: none;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

#share_popup .share-header .share-close i {
	font-weight: bold;
	font-size: 23px;
	color: #C1E7EF;
}

#share_popup .share-content {
	padding: 30px 80px;
	flex: 1;
	background: linear-gradient(180deg, #EEEEEE 0%, #FFFFFF 100%);
}

#share_popup .share-wrapper {
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 30px;
	height: 100%;
}

#share_popup .share-description {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

#share_popup .share-description-text {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: #5282A1;
	font-family: inherit;
}

#share_popup .share-link {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 22px;
}

#share_popup .share-link-text {
	font-weight: 700;
	font-size: 24px;
	text-align: center;
	color: #02385A;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: inherit;
}

#share_popup .share-type {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

#share_popup .share-link-url {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 13px;
	text-decoration: underline;
	color: #2096AB;
	text-align: center;
	word-break: break-all;
}

#share_popup .share-link-copy-btn {
	border: 2px solid #3FA1B3;
	color: #3FA1B3;
	background: transparent;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 8px 15px;
	width: fit-content;
	font-weight: 600;
	font-size: 12px;
	font-family: inherit;
	cursor: pointer;
	flex-shrink: 0;
}

#share_popup .share-link-copy-btn i {
	font-size: 16px;
}

#share_popup .share-types {
	display: flex;
	justify-content: center;
	gap: 54px;
	flex-wrap: wrap;
}

#share_popup .share-type--action {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	background: transparent;
	border: none;
	cursor: pointer;
}

#share_popup .share-type--icon {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #43ABBE;
	border-radius: 100px;
	width: 50px;
	height: 50px;
}

#share_popup .share-type--icon i {
	color: #fff;
	font-size: 25px;
}

#share_popup .share-type--name {
	font-weight: 600;
	font-size: 12px;
	line-height: 100%;
	text-align: center;
	color: #43ABBE;
	font-family: inherit;
}

#share_popup button.share--action {
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	padding: 10px;
	gap: 10px;
	background: linear-gradient(0deg, #29A7BD 0%, #1F96AB 100%);
	border: transparent;
	border-radius: 100px;
	line-height: 1;
	width: 235px;
	height: 45px;
	cursor: pointer;
	font-family: inherit;
}

@media(max-width:1023px) {
	#share_popup {
		max-width: 95%;
		max-height: 95%;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		height: unset;
		padding: 0;
	}

	#share_popup .share-header .share-header-title {
		font-size: 14px;
		line-height: 21px;
	}

	#share_popup .share-content {
		padding: 25px 20px;
	}

	#share_popup .share-content .share-wrapper {
		width: 100%;
		padding: 20px;
		gap: 20px;
		overflow-y: auto;
	}

	#share_popup .share-content .share-wrapper .share-link-text {
		font-size: 21px;
		line-height: 26px;
	}

	#share_popup .share-content .share-wrapper .share-type {
		flex-direction: column;
	}

}

/* width */
::-webkit-scrollbar {
	width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
	background-color: #DFE1E3;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background-color: #A9BACC;
}