@font-face {
	font-family: 'Inter'; /* 400 */
	src: url('/static/fonts/Inter/Inter_Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Inter'; /* 500 */
	src: url('/static/fonts/Inter/Inter_Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'Inter'; /* 600 */
	src: url('/static/fonts/Inter/Inter_SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: 'Inter'; /* 600 */
	src: url('/static/fonts/Inter/Inter_Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	max-width: 100%;
}
body {
	font-family: 'Inter', sans-serif;
	background-color: #fff;
	color: #2a2f37;
	max-width: 100%;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Inter', serif }
blockquote {
	border-left: 4px solid #ddd;
	margin-bottom: 5px;
	margin-top: 5px;
	padding-left: 16px;
	font-weight: 400;
}
.ql-align-justify { text-align: justify }
.ql-align-left { text-align: left }
.ql-align-center { text-align: center }
.ql-align-right { text-align: right }
iframe.ql-video {
	width: 100%;
	height: 420px;
}
select,
input[type="text"],
input[type="tel"],
input[type="number"],
input[type="email"],
input[type="password"] {
	border: 1px solid #d3d3d3;
	border-radius: 10px;
	padding: 15px;
	outline: none;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus { border-color: #0f5648 }
select {
	color: #707070;
	border: none;
	box-shadow: 0 0 0 1px #d3d3d3;
	border-right: 10px solid transparent;
}
.checkbox {
	display: block;
	position: relative;
	padding-left: 26px;
	cursor: pointer;
	font-size: 16px;
	user-select: none;
}
.checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 10px;
	width: 10px;
	background-color: #D3D3D3;
	border: 5px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 1px #d3d3d3;
}
.checkbox:hover input~.checkmark { background-color: #ccc }
.checkbox input:checked~.checkmark { background-color: #2a5d4f }

.btn {
	display: flex;
	align-items: center;
	font-size: 16px;
	border: 1px solid #ce9a6f;
	color: #ce9a6f;
	border-radius: 10px;
	padding: 8px 16px;
	cursor: pointer;
	width: max-content;
	transition: .3s;
}
.btn:hover { filter: saturate(150%) }
.btn.current {
	background-color: #ce9a6f;
	color: #fff;
}
.btn_green {
	color: #fff;
	border: 1px solid #0f5648;
	background-color: #0f5648;
}
.btn_green:hover { background-color: rgb(15, 86, 72, .75) }
.btn.donate {
	justify-content: center;
	z-index: 3;
	width: auto;
}
.btn_fill {
	padding: 10px 55px;
	color: #fff;
	background-color: #ce9a6f;
	border: 1px solid #ce9a6f;
	gap: 10px;
	font-weight: 500;
}
.btn_fill:hover { background-color: #f7964f }
a {
	text-decoration: none;
	color: #707070;
	cursor: pointer;
}
.app {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}
.single_page a {
	color: #ce9a6f!important
}
.single_page a:hover {
	color: #f7964f;
	text-decoration: underline;
}
a.more {
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #ce9a6f;
	text-decoration: underline;
	position: relative;
	width: max-content;
	margin-right: 10px;
}
a.more:after {
	content: '\ea84';
	display: block;
	position: absolute;
	height: 14px;
	top: 2px;
	bottom: 0;
	right: -15px;
	margin: auto 0;
	font-family: icomoon;
}
.single_page a:hover,
a.more:hover { color: #f7964f }

#home .header { margin-bottom: 0 }
#home h2 {
	font-size: 45px;
	font-weight: 600;
}

.header {
	display: flex;
	width: 100%;
	flex-direction: column;
	margin-bottom: 55px;
	background-color: #fbfbfb;
}
.header_bar {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: stretch;
	gap: 15px;
	margin: 15px 0;
}
.header_bar .app_logo { max-width: 65px }
.header_bar .app_logo img { max-width: 100% }
.header_bar .app_menu {
	display: grid;
	grid-template-columns: repeat(5, auto);
	justify-content: space-around;
}
.header_bar .app_menu .menu {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.header_bar .app_menu .dropdown { position: relative }
.header_bar .app_menu .dropdown .sub_menu {
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 15px;
	background-color: #fff;
	align-items: flex-start;
	margin-top: 14px;
	padding: 15px 75px 25px 25px;
	width: max-content;
	font-size: 14px;
	border-radius: 15px;
	border-top-left-radius: 0;
	box-shadow: 0px 5px 10px 2px rgb(34, 60, 80, .2);
	pointer-events: none;
	opacity: 0;
	transition: .5s;
}
.header_bar .app_menu .menu:hover .sub_menu {
	pointer-events: auto;
	opacity: 1;
}

.header_bar .app_menu .menu:hover .down_menu { color: #1b1b1b }
.header_bar .app_menu .dropdown:after {
	content: '\ea82';
	font-family: icomoon;
	color: #ababab;
}
.header_bar .app_menu .dropdown:hover:after { color: #1b1b1b }
.header_bar .app_menu a {
	text-align: center;
	color: #ababab;
	font-weight: 400;
}
.header_bar .app_menu a.current,

.header_bar .app_menu a:hover { color: #1b1b1b }
.header_bar .app_tools {
	display: flex;
	align-items: center;
	gap: 25px;
}
.header_bar .app_tools .help_btn a {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 16px;
	font-weight: 600;
	border: 1px solid #285549;
	color: #285549;
	border-radius: 10px;
	padding: 8px 16px;
}
.header_bar .app_tools .help_btn a:hover { background-color: rgb(40, 85, 73, .05) }
.header_bar .app_tools .language {
	display: flex;
	flex-direction: column;
}
.header_bar .app_tools .language a {
	font-size: 14px;
	font-weight: 500;
}
.header_bar .app_tools .language a.current,
.header_bar .app_tools .language a:hover { color: #ce9a6f }
.header_bar .app_tools .language a.current { pointer-events: none }
.header_bar .app_tools .user_btn a {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background-color: #ce9a6f;
	border: 1px solid #ce9a6f;
	border-radius: 10px;
	padding: 8px 16px;
	min-width: 50px;
	justify-content: center;
	cursor: pointer;
}
.header_bar .app_tools .user_btn a:hover { filter: saturate(150%) }
.header_bar .app_tools .user_btn .btn_profile {
	background-image: url('/static/images/icons/ic_profile.svg');
	background-position: left 5px center;
	background-size: 24px;
	background-repeat: no-repeat;
	padding-left: 32px;
}

.content {
	margin: 0 15px;
	position: relative;
	z-index: 1;
}
.content>iframe {
	min-height: 100%;
	height: 100%;
	min-width: 100%;
	width: 1px;
	position: absolute;
	z-index: 1;
	cursor: pointer;
}

.slider_container {
	display: flex;
	align-items: center;
	position: relative;
	margin: 35px 0;
	padding: 20px 0;
}
.slider_container * {
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
}
.slider_arrow {
	position: absolute;
	top: 0;
	left: -28px;
	bottom: 0;
	margin: auto 0;
	display: flex;
	width: 56px;
	height: 56px;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	border: none;
	border-radius: 50%;
	background-color: #fff;
	color: #ce9a6f;
	box-shadow: 0px 4px 4px 0px rgba(206, 154, 111, .2);
	outline: none;
	cursor: pointer;
	z-index: 2;
	transition: .25s;
}
.slider_arrow.next {
	left: auto;
	right: -28px;
}
.slider_arrow:hover {
	background-color: #ce9a6f;
	color: #fff;
}

.slider_wrap {
	display: flex;
	overflow: hidden;
	border-radius: 25px;
}
.slider_boxes {
	display: flex;
	gap: 15px;
}
.slider_box {
	display: grid;
	border-radius: 25px;
	overflow: hidden;
	width: 940px;
	aspect-ratio: 1180/400;
	position: relative;
}
.slider_box.next {
	opacity: .75;
	cursor: pointer;
	transition: .25s;
}
.slider_box:hover { opacity: 1 }
.slider_box .slider_img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	border-radius: 25px;
	aspect-ratio: 1180 / 400;
}

.slider_content {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 15px;

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.slider_top {
	display: grid;
	justify-content: end;
	padding: 25px;
	padding-bottom: 0;
	z-index: 1;
}
.slider_top svg {
	width: 24px;
	height: 24px;
}
.slider_bottom {
	display: grid;
	grid-template-columns: 7fr 3fr;
	gap: 15px;
	align-items: end;
	padding: 25px;
	padding-top: 0;
	position: relative;
}
.slider_bottom:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: linear-gradient(to top, #000, transparent);
	z-index: 1;
}
.slider_left {
	display: grid;
	gap: 5px;
	color: #fff;
	z-index: 2;
	padding-left: 15px;
	font-size: 30px;
}
.slider_left span { font-size: 16px }
.slider_right {
	display: flex;
	justify-content: right;
	z-index: 2;
}
.slider_right a {
	display: flex;
	gap: 5px;
	align-items: flex-end;
	background-color: #fff;
	border-radius: 25px;
	padding: 6px 16px;
	color: #0f5648;
	max-width: max-content;
	transition: .25s;
}
.slider_right a:hover {
	background-color: #ce9a6f;
	color: #fff;
}

.histories_wrap h2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.histories_wrap h2 span {
	color: #707070;
	font-size: 14px;
	font-weight: 400;
}
.item_wrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 35px 15px;
	margin: 15px 0;
}
.item_wrap .item_box {
	display: grid;
	gap: 10px;
	position: relative;
	cursor: pointer;
	overflow: hidden;
}
.item_wrap .item_box:hover {}
.item_wrap .item_box .item_read {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.item_wrap .item_box .item_read:hover { color: #f7964f }
.item_wrap .item_box .item_img { position: relative }
.item_wrap .item_box .item_img img {
	max-width: 100%;
	border-radius: 10px
}
.item_wrap .item_box .item_meta {
	display: grid;
	grid-template-rows: auto auto 1fr;
	gap: 10px;
}
.item_wrap .item_box .item_meta .item_title {
	font-size: 20px;
	font-weight: 500;
}
.item_wrap .item_box .item_meta .item_lead {
	color: #707070;
	font-size: 14px;
}
.item_wrap .item_box .item_meta .item_info {
	display: grid;
	grid-template-columns: auto auto 1fr;
	gap: 5px;
	font-size: 14px;
	color: #707070;
}
.item_wrap .item_box .item_meta .item_info .item_category {
	display: flex;
	align-items: flex-end;
}

.donate_wrap { margin: 35px 0 }
.donate_box {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background-color: #fbfbfb;
	border: 1px solid #d3d3d3;
	border-radius: 25px;
}
.donate_box .donate_method {
	display: flex;
	flex-direction: column;
	padding: 25px;
	background-color: #0f5648;
	border-radius: 25px;
	color: #fff;
}
.donate_box .donate_method p { margin-top: 0 }
.donate_box .donate_method .donate_tab {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 15px;
}
.donate_box .donate_method .donate_tab .btn_tab {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	outline: none;
	border-radius: 10px;
	padding: 6px 16px;
	border: 1px solid #62988d;
	color: #62988d;
	background-color: transparent;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
}
.donate_box .donate_method .donate_tab .btn_tab img.current { display: none }
.donate_box .donate_method .donate_tab .btn_tab:hover { filter: brightness(0) saturate(100%) invert(85%) sepia(30%) saturate(384%) hue-rotate(113deg) brightness(84%) contrast(83%) }
.donate_box .donate_method .donate_tab .btn_tab.current {
	background-color: #fff;
	color: #0f5648;
}
.donate_box .donate_method .donate_tab .btn_tab.current:hover { filter: none }
.donate_box .donate_method .donate_tab .btn_tab.current img.current { display: block }
.donate_box .donate_method .donate_tab .btn_tab.current img.default { filter: brightness(.6) }
.donate_tab_data { padding: 25px 25px 35px }
.donate_help {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.donate_help>.hint_text { display: none }
.donate_data input.help_val {font-size: 18px }
.donate_data input.help_val.lock {
	padding-right: 40px;
	background-image: url(/static/images/icons/ic_lock.svg);
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 18px;
	pointer-events: none;
	opacity: .5;
}
.donate_tab_data .donate_data { display: none }
.donate_tab_data .donate_data.current { display: grid }
.donate_amount {
	display: flex;
	flex-direction: column;
}
.amount_box {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
}
.deadlin_box {
	display: grid;
	grid-template-columns: 4fr 2fr;
	gap: 10px;
}
.deadlin_btn_box {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}
.donate_data .btn {
	justify-content: center;
	font-size: 20px;
	font-weight: 500;
	padding: 16px;
	width: auto;
}
.other_amount {
	display: grid;
	grid-template-columns: .5fr;
	padding-right: 10px;
	margin-top: 10px;
}
.deadlin_box .btn { font-weight: 400 }
.deadlin_hint {
	display: flex;
	align-items: center;
	padding-left: 15px;
	font-size: 14px;
	border-left: 1px solid #707070;
	color: #707070;
}
.deadlin_hint a { padding-left: 10px }
.donate_button {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 20px;
}
.hint_text,
.hint_text a {
	font-size: 14px;
	color: #707070;
	margin: 0;
	line-height: 18px;
}
.hint_text a {
	text-decoration: underline;
	cursor: pointer;
}
.donate_anonym {
	display: flex;
	align-items: center;
}
.donate_bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	border-top: 1px solid #707070;
	padding: 15px 0;
	margin-top: 15px;
}
.donate_bottom_hint {
	display: flex;
	align-items: center;
	color: #707070;
}
.sign_in_link {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.donate_bottom_hint img { margin-right: 10px }
.qr_code_box {
	display: grid;
	grid-template-columns: 2fr 4fr;
	gap: 20px;
}
.qr_code_box img.qr_code_img {
	max-width: 100%;
	padding: 10px;
	border: 1px solid #D3D3D3;
	border-radius: 10px;
}
.qr_code_box .method_val p {
	display: flex;
	gap: 5px;
}
.qr_code_box .method_val p strong { margin-right: 10px }
.qr_code_box .method_val a { color: #ce9a6f }
.qr_code_box .method_val a:hover { text-decoration: underline }
.method_logo {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	align-items: center;
}
.method_logo a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px 5px;
	border-radius: 10px;
	border: 1px solid #D3D3D3;
	background-color: #fff;
}
.method_logo a img {
	max-width: 100%;
	max-height: 40px;
}
.method_logo a:hover { border-color: #ce9a6f }
.transfer_data {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	align-items: start;
}
.transfer_text {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	align-items: start;
	margin-bottom: 20px;
}

.journal_wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
}
.journal_wrap .news_wrap {
	display: grid;
	gap: 15px;
}
.journal_wrap .item_wrap {
	grid-template-columns: none;
	margin: 0;
	height: 100%;
	align-items: start;
}
.journal_wrap .news_wrap .item_wrap .item_box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}
.news_wrap .item_wrap .item_box .item_meta .item_info {
	grid-template-columns: 1fr auto;
	align-items: end;
}
.news_wrap .item_wrap .item_box .item_category {
	color: #0f5648;
	font-size: 14px
}
.news_wrap .item_wrap .item_box .item_category strong { font-size: 20px }
.useful_wrap .item_box {
	grid-template-columns: 1fr auto;
	align-items: end;
	background-color: #fbfbfb;
	border: 1px solid #d3d3d3;
	padding: 15px;
	border-radius: 15px;
}
.useful_wrap .item_box .btn_more {
	margin-left: 15px;
	padding: 10px;
	border-radius: 10px;
	background-color: #0f5648;
	color: #fff;
	font-size: 20px;
}
.journal_page h6 {
	margin: 20px 0 10px;
	font-size: 22px;
	font-weight: 400;
}
.journal_categories {
	display: flex;
	justify-content: flex-start;
	gap: 10px;
	margin: 0 0 25px;
	overflow-x: scroll;
	scrollbar-width: none;
}
.journal_categories::-webkit-scrollbar { display: none }
.journal_categories .btn {
	flex: 1;
	width: auto;
	justify-content: center;
	white-space: nowrap;
	padding: 10px 15px;
}
.journal_search_box {
	display: grid;
	grid-template-columns: 1fr auto;
}
.journal_search_box input {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	padding-left: 40px;
	background-image: url('/static/images/icons/ic_search.svg');
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 24px;
	border-right: transparent;
}
.journal_search_box button {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.journal_page .item_wrap { margin: 35px 0 }
.journal_page .item_box .btn {
	justify-content: center;
	width: auto;
}
.journal_page .item_wrap .item_box .item_meta .item_info {
	gap: 10px;
	grid-template-columns: none;
	grid-template-rows: auto 1fr;
}
.journal_page .item_wrap .item_box .item_meta .item_info .item_date {
	display: flex;
	align-items: end;
}
.journal_page .item_category {
	display: flex;
	align-items: center;
	color: #285549;
}
.journal_page .item_category i { font-size: 32px }
.journal_page .item_box {
	grid-template-rows: auto auto 1fr auto;
	gap: 10px;
}
.single_journal_page {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 35px
}
.single_journal_page .journal_meta {
	display: grid;
	align-content: start;
	gap: 15px
}
.single_journal_page .journal_meta iframe {
	max-width: 100%;
	max-height: 315px;
}
.single_journal_page .journal_meta.mobile_journal_meta { display: none }
.single_journal_page .journal_meta img {
	max-width: 100%;
	border-radius: 10px;
}
.single_journal_page .journal_meta strong { font-size: 20px }
.single_journal_page .journal_meta .category {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #ce9a6f;
}
.single_journal_page .journal_meta .category a { color: #ce9a6f }
.single_journal_page .journal_meta .category a:hover { color: #f7964f }
.single_journal_page .journal_meta .category i { font-size: 24px }
.single_journal_page .journal_meta .btn {
	width: auto;
	justify-content: center;
}

.more_title {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
}
.more_box .more {
	font-weight: bold;
	text-decoration: none;
}
.more_box .item_wrap {
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}
.more_box .item_box {
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}
.journal_image {
	display: grid;
	align-items: center;
	justify-content: center;
	position: relative;
}
.journal_image.video:hover {
	cursor: pointer;
	filter: saturate(150%)
}
.journal_image .video_play {
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.journal_image .video_iframe { display: none }
.video_play {
	width: 56px;
	height: 56px;
	outline: none;
	border: none;
	background-color: transparent;
	background-image: url(/static/images/icons/ic_play.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.modal.video .video_box {
	transform: none;
	top: 55px;
	z-index: 10;
	pointer-events: all;
	opacity: 1;
}
.video_box {
	transform: scale(.75) translateY(-21px);
	position: fixed;
	top: -100%;
	left: 0;
	right: 0;
	width: 900px;
	aspect-ratio: 16 / 9;
	margin: 0 auto;
	overflow: hidden;
	transition: .3s;
	opacity: 0;
	z-index: -1;
	pointer-events: none;
}
.video_box iframe {
	width: 100%;
	height: 100%;
}

.carousel_wrap {
	display: grid;
	overflow: hidden;
	gap: 10px;
}
.carousel_boxes {
	display: flex;
	width: 100%;
	min-height: 400px;
	position: relative;
	overflow: hidden;
}
.carousel_box {
	display: grid;
	align-items: center;
	overflow: hidden;
	background-color: #efefef;
	border-radius: 10px;
	position: absolute;
	opacity: 0;
	transition: .3s;
}
.carousel_box:first-child { opacity: 1 }
.carousel_img {
	position: absolute;
	opacity: 0;
}
.carousel_img:first-child { opacity: 1 }

.carousel_bottom {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 10px;
	color: #707070;
	font-size: 20px;
	border-radius: 10px;
	padding: 15px;
	background-color: #efefef;
}
.carousel_bottom em:first-child { display: inline }
.carousel_bottom em {
	display: none;
	font-weight: 400;
	transition: .3s;
}
.carousel_nav {
	display: flex;
	gap: 5px;
}
.carousel_bottom button {
	display: grid;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	padding: 0;
	font-family: icomoon;
	font-size: 24px;
}
.carousel_bottom button:before { content: '\ea83' }
.carousel_bottom button.btn_next:before { content: '\ea84' }
.carousel_counter { font-weight: bold }

.subscribe_form {
	display: grid;
	gap: 15px;
}
.subscribe_form span { font-size: 22px }
.subscribe_form input { font-size: 18px }
.subscribe_form .subscribe_hint {
	color: #707070;
	font-size: 14px;
}
.footer_subscribe>.subscribe_hint { display: none }
.subscribe_form a { text-decoration: underline }
.content_html img { max-width: 100% }
.back_green {
	margin: 35px 0;
	padding: 25px;
	border-radius: 25px;
	background-color: #0f5648;
	color: #fff;
}
.back_green h3 {
	margin: 0;
	font-size: 1.5em;
}

.about_wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
	background-color: #fbfbfb;
	border: 1px solid #d3d3d3;
	margin: 45px 0;
	padding: 15px;
	border-radius: 15px;
}
.about_wrap .btn {
	padding: 0 35px;
	height: 60px;
}
.about_info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.about_info h3 {
	font-size: 45px;
	margin: 0;
}
.about_info p { font-size: 20px }
.about_rules {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin: 25px 0;
}
.about_rules .rule_box {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.about_rules .rule_img {
	background-color: #186C5C;
	border: 1px solid #62988D;
	border-radius: 20px;
	padding: 25px 0;
	text-align: center;
}
.about_rules .rule_img img { max-width: 150px }
.about_rules h4 {
	margin: 0;
	font-size: 20px;
}
.title {
	font-size: 45px;
	color: #0f5648;
	margin: 0;
}
.about_header {
	display: grid;
	grid-template-columns: 2fr 1fr;
	align-items: end;
	font-weight: 500;
	gap: 15px;
}
.about_description {
	margin: 25px 0;
	column-count: 3;
	column-gap: 25px;
	color: #707070;
}
.about_links {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}
.back_light {
	display: grid;
	gap: 10px;
	margin: 25px 0;
	padding: 15px;
	border-radius: 15px;
	border: 1px solid #d3d3d3;
	background-color: #fbfbfb;
	position: relative;
}
.about_links img {
	margin: 0 auto;
	max-width: 100%;
}
.about_links strong {
	font-size: 20px;
	font-weight: 500;
}
.about_links .btn {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	width: auto;
}

.two_block {
	display: grid;
	gap: 25px;
}
.two_block.top {
	grid-template-columns: 1fr 1fr;
	justify-items: end;
}
.two_block.bottom { grid-template-columns: auto 1fr }

.app_qr_box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}
.app_qr_box .qr_img {
	border: 1px solid #d3d3d3;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 10px;
}
.app_qr_box .qr_img img { max-width: 100% }
.app_qr_box .btn {
	width: auto;
	justify-content: center;
}
.mobile_page_wrap .back_green h3 {
	font-size: 1.5em;
	text-align: center;
	margin: 0;
}
.back_green .app_adv {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	margin: 35px 0;
}
.back_green .app_adv .adv_box {
	display: grid;
	gap: 15px;
	text-align: center;
	justify-items: center;
	align-content: start;
}
.back_green .app_adv .adv_box .adv_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 10px;
	background-color: #186c5c;
	border: 1px solid #62988d;
}
.back_green .app_adv .adv_box strong { font-size: 20px }

.report_map { position: relative }
.report_map .circles circle {
	fill: url(#gr_map_all);
	opacity: .5;
}
.report_map .marker { cursor: pointer }
.report_map .marker:hover { filter: saturate(120%) }
.report_map .marker.current path { fill: #0f5648 }
.report_map .marker text { fill: #fff }
.report_map .marker path {
	fill: url(#gr_map_all);
	stroke: rgb(255, 255, 255, .75);
	stroke-width: 2;
}
.report_map .marker:hover path { stroke: rgb(255, 255, 255, .99); }
.report_map .big_marker { display: none }
.report_map .big_number {
	fill: #fff;
	font-size: 60px;
}
.report_map .big_marker {
	stroke: rgb(255, 255, 255, .75);
	stroke-width: 4;
	width: 100px;
	position: absolute;
	top: 45%;
	left: 45%;
	pointer-events: none;
	opacity: 0;
	transition: .3s;
}
.report_map .big_marker.show { opacity: 1 }
.report_map .big_marker .big_marker_number {
	fill: #fff;
	font-size: 60px;
}
.report_map .curved {
	fill: none;
	stroke: url(#curved);
	stroke-width: 3;
}
.report_map .map_info_box {
	position: absolute;
	margin: 25px auto;
	top: 0;
	left: 0;
	right: 0;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
	width: 400px;
	pointer-events: none;
	opacity: 0;
	transition: .3s;
}
.report_map .map_info_box.show { opacity: 1 }
.report_map .map_info_box strong { color: #0f5648 }
.report_map .map_info_box i { font-style: normal }

.founders_wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin: 45px 0;
}
.founder_box .back_light {
	margin: 0;
	padding: 0;
	height: 100%;
	overflow: hidden;
}
.founder_box img { width: 100% }
.founder_box .founder_meta {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 15px;
	padding: 15px;
}
.founder_box .founder_meta h3 { margin: 0 }

.purpose_header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
}
.purpose_header img { max-width: 100% }
.purpose_items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}
.purpose_items .purpose_box {
	display: grid;
	grid-template-rows: auto 1fr;
	gap: 10px;
	padding: 10px;
	border: 1px solid #d3d3d3;
	color: #707070;
	border-radius: 10px;
}
.purpose_page_wrap h3 { font-size: 25px }
.purpose_items h4 {
	padding: 10px 15px;
	background-color: #efefef;
	border-radius: 10px;
	margin: 0;
}
.document_items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	text-align: center;
	font-size: 24px;
	font-weight: 400;
}
.document_items .back_light { margin: 0 }
.document_items .btn {
	width: auto;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
}
.document_items img {
	max-width: 100%;
	margin: 0 auto;
}
.report_header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}
.report_statistics .back_green {
	display: grid;
	gap: 15px;
}
.report_statistics .stat_header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 10px;
	font-size: 18px;
}
.report_statistics .stat_body {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	font-size: 12px;
}
.report_statistics .stat_box {
	flex: 1;
	display: grid;
	gap: 5px;
}
.report_statistics .year_count {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 5px;
}
.report_statistics .year_val {
	color: #62988d;
	text-align: center;
}
.report_statistics .year_box {
	position: relative; 
	height: 70px;
}
.report_statistics .year_bar {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid #62988d;
	border-radius: 5px;
	background-image: linear-gradient(to top, #0f5648, #24955f);
}
.report_statistics .indicator {
	display: grid;
	grid-template-columns: auto auto auto;
	align-items: center;
	gap: 5px;
}
.report_statistics .indicator img { }
.report_statistics .indicator strong {
	font-size: 45px;
	color: #24955f;
}
.report_statistics .indicator span {
	color: #62988d;
	font-size: 12px;
}
.report_items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	font-size: 24px;
	font-weight: 400;
}
.report_items .back_light {
	margin: 0;
	cursor: pointer;
}
.report_items .back_light:hover svg path { fill: #ce9a6f }
.report_items .back_light:hover svg path:last-child { fill: #a9774f }
.report_items .report_img { text-align: right }
.report_items .report_img svg {
	max-width: 100%;
	aspect-ratio: 1/1;
}
.report_items h4 {
	margin: 0;
	font-weight: 400;
}
.report_items .house_count {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 5px;
	font-size: 14px;
	color: #707070;
}
.report_items .btn {
	width: auto;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
}

.partner_items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	margin: 35px 0;
}
.partner_items .back_light {
	gap: 15px;
	margin: 0;
}
.light_img {
	background-color: #fff;
	padding: 25px 0;
	text-align: center;
	border: 1px solid #d3d3d3;
	border-radius: 15px;
}
.partner_img img { max-height: 100px }
.partner_items a {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.partner_items .back_light:hover { color: #ce9a6f }
.help_page_wrap p {
	display: grid;
	gap: 10px;
	margin: 10px 0;
	max-width: 60%;
	color: #707070;
}
.help_page_wrap strong { color: #000 }
.help_alert {
	display: grid;
	grid-template-columns: 1fr 2fr;
	align-items: center;
	gap: 25px;
	margin: 55px 0;
}
.help_alert .alert_left {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 28px;
	font-weight: 500;
}
.help_block {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin: 15px 0;
}
.help_block .back_light {
	display: grid;
	grid-template-rows: auto auto 1fr;
	gap: 10px;
	margin: 0;
}
.help_block img { max-width: 80px }
.help_block h4 {
	font-weight: 400;
	font-size: 20px;
	margin: 0;
}
.help_block span { color: #707070 }

.contacts_page_wrap {
	display: grid;
	gap: 25px;
	margin: 55px 0;
}
.contact_block {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 25px;
	border-bottom: 1px solid rgb(0, 0, 0, .1);
	padding-bottom: 35px;
}
.contact_block:last-child { border-bottom: 1px solid transparent }
.contact_block .left_box {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.contact_block .left_box .btn {
	padding: 5px 35px;
	gap: 5px;
	font-weight: 500;
}
.socail_block {
	display: flex;
	gap: 10px;
}
.socail_block a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	width: 40px;
	height: 40px;
	border: 1px solid #a8a8a8;
	border-radius: 50%;
	color: #a8a8a8;
}
.socail_block a:hover {
	color: #fff;
	background-color: #ce9a6f;
	border: 1px solid #ce9a6f;
}
.contact_block .data_block {
	display: grid;
	gap: 15px;
}
.contact_block .data_item {
	display: grid;
	grid-template-columns: 1fr 3fr;
}
.contact_block .data_item span { color: #707070 }

.footer {
	margin-top: 35px;
	padding: 25px 35px 55px;
	background-color: #0f5648;
	color: #fff;
}
.app_logo_light { max-width: 80px }
.footer_col .app_phone {
	color: #fff;
	font-size: 20px;
}
.footer_col .mobile_app_url {
	padding: 25px 35px;
	border-radius: 10px;
	border: 1px solid #62988d;
	background-color: #186c5c;
	margin-right: 10px;
}
.footer_col .mobile_app_url:hover { background-color: #62988d }
.footer p { margin: 15px 0 }
.footer h3 {
	font-size: 20px;
	font-weight: 400;
}
.footer_row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin: 25px 0;
}
.footer_row.two_row {
	grid-template-columns: 1fr 2fr;
	gap: 10px;
}
.footer_socials {
	display: flex;
	gap: 10px;
}
.footer_col {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.footer_col a {
	color: #62988d;
	width: max-content;
	transition: .25s;
}
.footer_col a:hover { color: #fff }
.footer_socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #62988d;
	color: #0f5648;
}
.footer_socials a:hover { filter: saturate(120%) }
.footer_subscribe {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}
.footer_subscribe input {
	font-size: 18px;
	background-color: transparent;
	border: 1px solid #62988d;
	color: rgb(255, 255, 255, .75);
}
.footer_subscribe input:focus { border-color: rgb(255, 255, 255, .75) }
.footer_subscribe p {
	font-size: 14px;
	color: #62988d;
}
.footer_subscribe p a { text-decoration: underline }

.footer_subscribe input::placeholder { color: #62988d }
.footer_subscribe button {
	margin: 15px 0;
	width: auto;
	padding: 10px;
	justify-content: center;
	font-weight: 600;
	font-size: 18px;
	color: #0f5648;
	border-color: #fff;
	background-color: #fff;
}

.page_pagination { width: 100% }
.pagination {
	display: flex;
	justify-content: center;
	list-style: none;
}
.page-link:hover,
.page-item.active .page-link { background-color: #f3f5f7 }
.page-link {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #2a2f37;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	width: 32px;
	height: 32px;
	margin: 0 5px;
}

.breadcrumb {
	display: flex;
	align-items: center;
}
.breadcrumb i { }
.breadcrumb a {
	font-weight: 400;
	text-decoration: none;
	color: #0072b8;
	text-wrap: nowrap;
}
.breadcrumb a:hover { color: #4196ff }
.breadcrumb span {
	color: rgb(100, 100, 100);
	text-wrap: nowrap;
}

.tab { margin-bottom: 25px  }
.tab a {
	font-size: 24px;
	font-weight: 500;
	padding: 5px 25px;
	border-radius: 25px;
	margin-right: 10px;
}

.tab a:hover,
.tab a.current {
	background-color: rgb(0, 0, 0, .05);
}

.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
	z-index: 2;
}
.error_shape {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 404px;
    max-width: 100%;
    aspect-ratio: 1/1;
	margin: 35px auto;
	border-radius: 50%;
	background-color: #f3f3f1;
	font-size: 102px;
	color: #555;
}
.error_content {
	font-size: 16px;
	text-align: center
}

.sidebar_menu .mobile_language {
	display: flex;
	justify-content: center;
}
.sidebar_menu .mobile_language a {
	padding: 5px 10px;
	border-radius: 15px;
	margin: 10px;
	font-size: 14px;
	text-transform: none;
}

.flex { display: flex }
.fx_col { flex: 1 }
.fx_35 { flex: 0 0 35% }
.flex.fx_column { flex-direction: column }
.fx_center { justify-content: center }
.plr_25 { padding: 0 25px }
.plr_10 { padding: 0 10px }
.mb_15 { margin-bottom: 15px }
.mt_25 { margin-top: 25px }
.lf { font-size: 45px }

.single_center { text-align: center }

.share_box {
	display: flex;
	justify-content: center;
	margin: 25px 0;
}
.share_box a {
	background-color: #eee;
	color: #333;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 5px;
	width: 24px;
	height: 24px;
	text-decoration: none;
}
.share_box a:hover {
	background-color: #0072b8;
	color: #fff;
}
.modal { overflow: hidden }
.overlay {
	position: fixed;
	z-index: 5;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	transition: 0.5s;
	display: none;
	background-color: rgb(0, 0, 0, .25);
}
.sidebar_menu {
	position: fixed;
	z-index: 10;
	height: 100%;
	width: 0;
	top: 0;
	right: 0;
	background-color: #f8f9fb;
	overflow-x: hidden;
	transition: .2s;
	flex-direction: column;
	display: none;
	padding-top: 25px;
}
.sidebar_menu a {
	white-space: nowrap;
	padding: 10px 20px;
	text-decoration: none;
	color: #333;
	font-weight: 600;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	font-size: .9em;
}
.sidebar_menu a.down_menu:after {
	content: '\ea81';
	font-family: 'icomoon';
	font-size: 18px;
	transition: .3s;
}
.sidebar_menu .dropdown.open a.down_menu:after { transform: rotate(90deg) }
.sidebar_menu .dropdown.open .sub_menu {
	height: auto;
	opacity: 1;
	pointer-events: auto;
}
.sidebar_menu .sub_menu {
	transition: .2s;
	padding-left: 15px;
	height: 0;
	opacity: 0;
	pointer-events: none;
}
.sidebar_menu .sub_menu a {
	color: #707070;
	text-transform: none;
}
.sidebar_menu a.current { background-color: #eee }
.sidebar_menu a i {
	font-size: 1.5em;
	width: 54px;
	text-align: center;
	margin-right: 10px;
}

.modal.menu .sidebar_menu {
	display: flex;
	opacity: 1;
	width: 80%
}
.modal .overlay {
	display: block;
	opacity: 1;
	transition: .5s;
}
.burger_button {
	display: none;
	align-items: center;
	border: none;
	background-color: transparent;
	outline: none;
	font-size: 32px;
	color: #ce9a6f;
	padding: 0;
}
.burger_button:focus { outline: none }
.burger_button.close {
	opacity: 0;
	position: absolute;
	top: 25px;
	right: 15px;
	transition-duration: .1s;
}

.modal .burger_button.close { opacity: 1 }
.modal.sign_in .auth_wrap {
	transform: none;
	top: 55px;
	z-index: 10;
	pointer-events: all;
	opacity: 1;
}
.modal.box .modal_box {
	transform: none;
	top: 55px;
	z-index: 10;
	pointer-events: all;
	opacity: 1;
}
.modal_box {
	transform: scale(.75) translateY(-21px);
	position: fixed;
	top: -100%;
	left: 0;
	right: 0;
	width: 370px;
	margin: 0 auto;
	overflow: hidden;
	transition: .3s;
	opacity: 0;
	z-index: -1;
	pointer-events: none;

	display: grid;
	gap: 25px;
	padding: 25px 15px 35px;
	border-radius: 25px;
	background-color: #fff;
	overflow: hidden;
}
.modal_box .modal_header img { max-width: 65px }
.modal_box .modal_header { text-align: center }
.modal_box .modal_text {
	display: flex;
	gap: 10px;
	align-items: center;
	color: #707070;
}
.modal_box .modal_text img { width: 32px }
.modal_box .ic_warning { display: none }
.modal_box.warning .ic_warning { display: block }
.modal_box.warning .ic_success { display: none }
.modal_box .modal_buttons {
	display: grid;
	gap: 5px;
}
.modal_box .modal_buttons .btn {
	justify-content: center;
	padding: 10px 5px;
	width: auto;
}
.modal_box .modal_buttons .btn_second { background-color: #fff }
.modal_box .btn_second { display: none }
.modal_box.confirm .btn_second { display: flex }
.modal_box.confirm .modal_buttons { grid-template-columns: 1fr 1fr }

.modal.share .ach_modal_box {
	transform: none;
	top: 55px;
	z-index: 10;
	pointer-events: all;
	opacity: 1;
}
.ach_modal_box {
	transform: scale(.75) translateY(-21px);
	position: fixed;
	top: -100%;
	left: 0;
	right: 0;
	width: 370px;
	margin: 0 auto;
	overflow: hidden;
	transition: .3s;
	opacity: 0;
	z-index: -1;
	pointer-events: none;

	display: grid;
	gap: 10px;
	padding: 25px 15px 35px;
	border-radius: 25px;
	background-color: #fff;
	overflow: hidden;
}
.achievement_close {
	display: grid;
	justify-content: right;
}
.achievement_close a {
	display: grid;
	width: 34px;
	height: 34px;
	color: #ce9a6f;
	font-size: 34px;
}
.ach_modal_box .achievement_status {
	font-size: 18px;
	color: #707070;
}
.ach_modal_box .achievement_level {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	font-weight: 500;
	color: #0f5648;
}
.ach_modal_box .achievement_name h3 {
	margin: 0;
	font-size: 30px;
}
.ach_modal_box .achievement_desc {
	font-size: 18px;
	color: #1b1b1b;
}
.ach_modal_box .achievement_share {
	display: grid;
	gap: 5px;
	color: #ce9a6f;
	font-size: 16px;
}
.ach_modal_box .socail_block a {
	color: #ce9a6f;
	border-color: #ce9a6f;
}
.ach_modal_box .socail_block a:hover { color: #fff }

.auth_wrap {
	transform: scale(.75) translateY(-21px);
	position: fixed;
	top: -100%;
	left: 0;
	right: 0;
	width: 370px;
	margin: 0 auto;
	overflow: hidden;
	transition: .3s;
	opacity: 0;
	z-index: -1;
	pointer-events: none;
}
.auth_box {
	position: relative;
	padding: 25px 15px 35px;
	border-radius: 25px;
	background-color: #fff;
	overflow: hidden;
}
.auth_box .ajax {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgb(255, 255, 255, .05);
	z-index: -1;
}
.auth_box .ajax.show { z-index: 9 }
.auth_box .error_msg {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: absolute;
	right: 0;
	bottom: -40px;
	left: 0;
	height: 40px;
	background-color: rgb(228, 106, 118);
	color: #fff;
	font-size: 14px;
	padding: 15px;
	z-index: -1;
	transition: .3s;
}
.auth_box .error_msg.show {
	z-index: 9;
	bottom: 0;
}
.auth_tab {
	position: absolute;
	display: grid;
	gap: 10px;
	transition: .15s;
	pointer-events: none;
	transform: translateX(370px);
	z-index: -1;
	opacity: 0;
}
.auth_tab.to_left { transform: translateX(-370px) }
.auth_tab.show {
	position: relative;
	pointer-events: all;
	transform: none;
	z-index: auto;
	opacity: 1;
}
.auth_box p {
	margin: 0;
	color: #707070;
	text-align: center;
}
.auth_box p a {
	color: #707070;
	text-decoration: underline;
	cursor: pointer;
}
.auth_box .auth_header {
	position: relative;
	display: grid;
	gap: 10px;
	justify-items: center;
}
.auth_box .auth_header .go_back {
	position: absolute;
	cursor: pointer;
	font-size: 32px;
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.auth_box .auth_header h4 {
	font-size: 24px;
	margin: 0;
	color: #1B1B1B;
}
.auth_box .auth_header img { max-width: 65px }

.auth_box .auth_body {
	display: grid;
	gap: 10px;
}
.auth_box .auth_body input,
.auth_box .auth_body button {
	width: auto;
	font-weight: 600;
}
.auth_box .auth_body button { justify-content: center }
.auth_box .auth_body button.btn_white { background-color: #fff }
.auth_box .auth_body input.iti__search-input {
	width: 100%;
	border-radius: 0;
	padding: 10px 20px;
	border: 0;
}
.auth_box .auth_body input.intl_tel { width: 100% }
.auth_box .success_hint {
	display: flex;
	gap: 10px;
	align-items: center;
    color: #707070;
    font-size: 16px;
}
.password_box {
	position: relative;
	display: flex;
	flex-direction: column;
}
.password_box input { padding-right: 48px }
.password_box i {
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto 0;
	height: 32px;
	width: 32px;
	font-size: 24px;
	color: #707070;
	cursor: pointer;
}
.password_box i:hover { color: #ce9a6f }

.strength_box {
	position: relative;
	border-radius: 3px;
	overflow: hidden;
	height: 5px;
	width: 100%;
	transition: .3s;
	background-color: rgb(0, 0, 0, .05);
}
.strength_box .password_power {
	position: absolute;
	top: 0;
	left: 0;
	height: 5px;
	width: 1px;
	background-color: #d73f40;
	transition: .35s;
}
.auth_box .auth_hint em {
	font-weight: 600;
	font-style: normal;
}
.auth_box .re_send_sms {
	text-align: center;
	opacity: 0;
	pointer-events: none;
	transition: .3s;
}
.auth_box .re_send_sms.show {
	opacity: 1;
	pointer-events: all;
}
.auth_box .re_send_sms a {
    color: #ce9a6f;
    text-decoration: none;
    cursor: pointer;
	font-weight: 600;
	color: #ce9a6f;
}
.auth_box .auth_bottom {
	display: grid;
	gap: 10px;
	font-size: 14px;
	text-align: center;
}
.auth_box .auth_bottom .btn_forgot {
	color: #ce9a6f;
	font-weight: 600;
}

.profile_page {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 35px;
	align-items: start;
}
.profile_menu {
	display: grid;
	gap: 15px;
	margin: 0;
}
.profile_menu a {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	align-items: center;
	padding: 10px 15px;
	border-radius: 10px;
	border: 1px solid #62988d;
	color: #62988d;
	font-weight: 500;
}
.profile_menu a img { width: 22px }
.profile_menu a.current:hover,
.profile_menu a.current {
	background-color: #fff;
	border-color: #fff;
	color: #62988d;
	filter: none;
	pointer-events: none;
}
.profile_menu a:hover { filter: brightness(0) saturate(100%) invert(85%) sepia(30%) saturate(384%) hue-rotate(113deg) brightness(84%) contrast(83%) }
.profile_menu a:last-child { margin-top: 50px }

.user_data_box {
	display: grid;
	gap: 15px;
}
.user_img_box {
	display: grid;
	grid-template-columns: 175px auto;
	gap: 15px;
	align-items: center;
}
.user_img_box .user_img {
	background-size: cover;
	background-position: center;
	width: 162px;
	height: 162px;
	border-radius: 50%;
	border: 5px solid #fff;
	box-shadow: 0 0 0 2px #ce9a6f;
}
.user_img_box .btn_user_img {
	position: relative;
	outline: 0;
	height: 36px;
	width: 36px;
	border: 1px solid transparent;
	border-radius: 7px;
	cursor: pointer;
	background-image: url('/static/images/icons/ic_camera.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-color: #ce9a6f;
}
.user_img_box .btn_user_img:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: -5px;
	z-index: -1;
	margin: auto 0;
	transform: rotate(45deg);
	border-radius: 2px;
	height: 10px;
	width: 10px;
	background-color: #ce9a6f;
}
.user_img_box .btn_user_img:hover { filter: saturate(150%) }
.user_img_box input { display: none }
.user_top_box h1 { font-size: 32px }
.profile_area { padding-left: 120px }
.user_contact { border-radius: 10px }
.user_contact span {
	font-size: 22px;
	font-weight: 500;
	opacity: .87;
}
.show_subscribe {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}
.show_subscribe:hover { filter: brightness(120%) }
.show_subscribe:before {
	content: '';
	width: 24px;
	height: 24px;
	background-color: #0f5648;
	background-image: url('/static/images/icons/ic_chevron.svg');
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 5px;
}
.subscribe_box.show {
	height: auto;
	opacity: 1;
	pointer-events: all;
}
.subscribe_box {
	display: grid;
	gap: 10px;
	padding: 15px 0;
	transition: height .25s ease-in;
	height: 0;
	opacity: 0;
	pointer-events: none;
}
.back_green_linear {
	background-image: linear-gradient(135deg, #29584b, #339982);
	padding: 10px;
	border: 1px solid #339982;
	border-radius: 10px;
	color: #fff;
}
.support_sum {
	display: grid;
	gap: 15px;
	padding: 15px;
	font-size: 22px;
}
.support_sum .sum_box {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	align-items: center;
}
.support_sum i { font-size: 32px }
.support_sum strong { font-size: 28px }
.nice-select {
	border-color: #d3d3d3!important;
	border-radius: 10px!important;
}
.nice-select:after {
	border-color: #333!important;
	border-color: #333!important;
}
.nice-select.wide .list {
    max-height: 300px!important;
    overflow-y: scroll!important;
}
.warning_text {
	display: flex;
	gap: 5px;
	align-items: center;
}
.user_form_box {
	display: grid;
	gap: 10px;
	color: #1b1b1b;
}
.user_form_box .btn {
	font-size: 20px;
	padding: 15px 35px;
	width: 100%;
	justify-content: center;
}
.user_form_box .form_val {
	display: grid;
	gap: 5px;
}
.user_form_box .form_val span {
	font-size: 14px;
	color: #707070;
}

.user_achievements {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}
.user_achievements .achievement_box { grid-template-columns: none }
.user_achievements a {
	width: auto;
	justify-content: center;
}
.achievement_status {
	display: flex;
	align-items: center;
	gap: 10px;
}

.achievement_wrap {
	display: grid;
	gap: 15px;
	margin: 35px 0;
}
.profile_area h1,
.achievement_wrap h1 {
	font-size: 45px;
	margin-top: 0;
}
.achievement_wrap h2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0;
	font-size: 30px;
	font-weight: 500;
}
.achievement_wrap h2 i {
	display: block;
	width: 30px;
	height: 30px;
	background-image: url(/static/images/icons/ic_arrows.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.achievement_boxes {
	display: grid;
	grid-template-columns: repeat(5, 580px);
	gap: 10px;
	overflow-x: scroll;
	scrollbar-width: none;
}
.achievement_boxes::-webkit-scrollbar { display: none }
.achievement_box {
	display: grid;
	grid-template-columns: 250fr 285fr;
	gap: 15px;
}
.achievement_img {
    background-repeat: no-repeat;
    background-position: center;
	/* background-size: 200px; */
    padding: 0;
	aspect-ratio: 1/1;
	position: relative;
}
.achievement_img img {
	max-width: 80%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 100px;
}
.achievement_img img.gray,
.achievement_wrap .achievement_box:nth-child(1) .achievement_img img,
.achievement_wrap .achievement_box:nth-child(2) .achievement_img img { filter: grayscale(1) }

.achievement_meta {
	display: grid;
	grid-template-rows: auto 1fr auto;
	font-size: 18px;
}
.achievement_top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #0f5648;
}
.achievement_starts {
	display: flex;
	gap: 5px;
}
.achievement_body {
	display: grid;
	align-content: center;
	gap: 5px;
}
.achievement_body h3 {
	margin: 0;
	font-size: 30px;
	font-weight: 500;
}
.achievement_body p {
	margin: 0;
	color: #707070;
}
.achievement_bottom {
	display: grid;
	gap: 5px;
}
.achievement_range {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #0f5648;
}
.achievement_progress {
	background-color: #fff;
	border: 1px solid #0f5648;
	border-radius: 10px;
	height: 20px;
	position: relative;
	overflow: hidden;
}
.achievement_progress i {
	display: block;
	position: absolute;
	top: -1px;
	bottom: -1px;
	left: -1px;
	width: 0;
	border-radius: 10px;
	background-color: #0f5648;
	transition: .3s;
}

.filter_box {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	border: 1px solid #ce9a6f;
	border-radius: 10px;
}
.filter_box input {
	padding-left: 35px;
	background-size: 18px;
	background-repeat: no-repeat;
	background-position: 10px center;
	background-color: transparent;
}
.filter_box .pay_amount { background-image: url('/static/images/icons/ic_search.svg') }
.filter_box .pay_period {
	background-size: 16px;
	background-image: url('/static/images/icons/ic_calendar.svg');
	cursor: pointer;
}
.filter_box input,
.filter_box button {
	border: none;
	border-radius: 0;
}
.filter_box .btn i { display: none }
.filter_box .btn {
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
} 

.nice_select {
	display: grid;
	border-left: 1px solid #ce9a6f;
	position: relative;
	align-content: center;
}
.nice_select:after {
	content: '\ea82';
	font-family: icomoon !important;
	font-size: 16px;
	width: 18px;
	height: 18px;
	position: absolute;
	right: 5px;
	top: 0;
	bottom: 0;
	margin: auto;
	color: #707070;
	transition: all .15s ease-in-out;
}
.nice_select.open:after { transform: rotate(180deg) }
.nice_select.open {
	
}
.nice_select.open .nice_list {
	opacity: 1;
	pointer-events: auto;
	transform: scale(1) translateY(0);
}
.nice_list {
    position: absolute;
	display: grid;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	pointer-events: none;
	top: 100%;
	left: 0;
	width: 100%;
	background-color: #fff;
	border-radius: 15px;
	border-top-left-radius: 0;
	box-shadow: 0px 5px 10px 2px rgb(34, 60, 80, .2);
	overflow: hidden;
	transform-origin: 50% 0;
	transform: scale(.75) translateY(-21px);
	transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out;
	z-index: 9;
}
.nice_list button {
	display: grid;
	align-content: center;
	background-color: transparent;
	text-align: left;
	padding: 10px 15px;
}
.nice_list button:hover { background-color: rgb(0, 0, 0, .05 ) }
.nice_list button.current { font-weight: 700 }

.histories_wrap {
	display: grid;
	gap: 15px;
	margin: 30px 0;
}
.history_box {
	display: grid;
	grid-template-columns: auto 1fr 1fr 1fr;
	align-items: center;
	gap: 30px;
	padding: 15px 0;
	font-size: 18px;
	color: #7b7b7b;
	border-bottom: 1px solid #7b7b7b;
}
.history_box:last-child { border-color: transparent }
.history_box .ic_file {
	display: grid;
	width: 26px;
	height: 34px;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url('/static/images/icons/ic_file.svg')
}
.history_amount {
	color: #105749;
	font-weight: 700;
}
.history_card em {
	font-style: normal;
	color: red;
}

.subscriptions .back_light { gap: 20px }
.subscriptions h4 {
	display: flex;
	gap: 15px;
	font-size: 24px;
	font-weight: 400;
	margin: 0;
}
.subscription_date {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}
.subscriptions .btn {
    border-color: #f14635;
    background-color: #fff;
    color: #f14635;
}
.subscriptions .btn:hover {
    border-color: #f14635;
    background-color: #f14635;
    color: #fff;
}

.cards .back_light { gap: 20px }
.cards h4 {
	display: flex;
	gap: 15px;
	font-size: 24px;
	font-weight: 400;
	margin: 0;
}
.cards .btn {
    border-color: #f14635;
    background-color: #fff;
    color: #f14635;
}
.cards .btn:hover {
    border-color: #f14635;
    background-color: #f14635;
    color: #fff;
}

@media only screen and (max-width: 768px) {
	.modal.video .overlay,
	.modal.video .video_box { display: none }
	.modal.video { overflow: auto }
	.more_box .item_wrap {
		grid-template-columns: none;
		margin: 0;
	}
	
	.modal.video .journal_image.video .video_iframe {
		display: grid;
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		z-index: 2;
	}
	.single_journal_page .journal_meta iframe {
		max-width: auto;
		max-height: auto;
		width: 100%;
		height: 100%;
	}

	#home h2 {
		font-size: 25px;
		font-weight: 600;
	}
	.sidebar_menu,
	.burger_button { display: flex }
	.container { padding: 0 }
	.header { margin-bottom: 35px }
	.header_bar {
		align-items: center;
		grid-template-columns: auto 1fr;
		gap: 15px;
		margin: 15px;
	}
	.header_bar .app_tools { justify-content: flex-end }
	.header_bar .app_tools .language { display: none }
	.header_bar .app_tools .help_btn a { padding: 8px }
	.header_bar .app_tools .help_btn a,
	.header_bar .app_tools .user_btn { font-size: 14px }
	.header_bar .app_tools .user_btn .btn_profile {
		min-height: 32px;
		min-width: 32px;
		height: 100%;
		aspect-ratio: 1/1;
		padding: 0;
	}
	.header_bar .app_tools .user_btn .btn_profile span { display: none }
	.header_bar .app_logo { padding: 0 }
	
	.header_bar .app_menu { display: none }
	.header_bar .app_language { display: none }

	.donate_wrap,
	.about_wrap { margin: 35px -10px }
	.donate_wrap>h2 { padding: 10px }

	.slider_container {
		margin: 0 -10px;
		padding: 0;
	}
	.slider_arrow { display: none }
	.slider_wrap {
		background-color: #105749;
		border-radius: 20px;
		padding: 20px 16px;
		align-items: start;
		position: relative;
	}
	.progress_box {
		position: absolute;
		z-index: 1;
		top: 190px;
		left: 16px;
		right: 16px;
		display: flex;
		gap: 5px;
		justify-content: space-around;
		padding: 0;
	}
	.progress_bar {
		flex: 1;
		margin: 15px 0;
		position: relative;
		border-radius: 16px;
		height: 5px;
		background-color: rgb(98, 152, 141, .25);
		overflow: hidden;
	}
	.progress_bar i {
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		width: 0;
		border-radius: 16px;
		background-color: rgb(98, 152, 141);
	}
	.slider_boxes {
		gap: 16px;
		height: 100%;
	}
	.slider_box {
		width: 388px; 
		grid-template-rows: auto 1fr;
		border-radius: 20px;
		aspect-ratio: auto;
	}
	.slider_box .slider_img {
		position: relative;
		background-size: cover;
		aspect-ratio: 350 / 159;
	}
	.slider_content {
		position: relative;
		grid-template-rows: auto 1fr;
		gap: 0;
	}
	.slider_top svg { opacity: 0 }
	.slider_top {
		display: flex;
		gap: 5px;
		justify-content: space-around;
		padding: 0;
	}

	.slider_bottom {
		align-items: start;
		grid-template-rows: 1fr auto;
		grid-template-columns: none;
		gap: 10px;
		padding: 0;
	}
	.slider_bottom:after { display: none }
	.slider_left {
		font-size: 20px;
		align-items: start;
		padding: 0;
	}
	.slider_right { justify-content: start }

	.item_wrap { grid-template-columns: repeat(2, 1fr) }
	.item_wrap .item_box { gap: 5px }
	.item_wrap .item_box .item_meta .item_title { font-size: 16px }
	.btn.donate {
		padding: 5px 0;
		font-size: 12px;
		width: auto;
		border-radius: 5px;
	}
	.amount_box,
	.donate_box .donate_method .donate_tab { grid-template-columns: repeat(2, 1fr) }
	.other_amount {
		grid-template-columns: 1fr;
		padding-right: 0;
	}
	.donate_tab_data .donate_data.current { gap: 15px }
	.deadlin_box {
		grid-template-columns: none;
		gap: 15px;
	}
	.deadlin_btn_box { grid-template-columns: repeat(2, 1fr) }
	.deadlin_hint {
		border-left: none;
		padding-left: 0;
	}
	.donate_help { grid-template-columns: none }
	.donate_button {
		grid-template-columns: none;
		gap: 0;
	}
	.donate_help>.hint_text { display: block }
	.donate_button>.hint_text { display: none }
	.donate_data .btn { padding: 10px 16px }
	.donate_data .btn_green { width: 100% }
	.donate_bottom {
		font-size: 14px;
		grid-template-columns: 1fr auto;
	}
	.donate_data .qr_code_box {
		grid-template-columns: none;
		gap: 0;
	}
	.qr_code_box .method_val p { display: inline-block }
	.donate_data .qr_code_box .first_method { display: none }
	.journal_wrap { grid-template-columns: none }
	.transfer_data {
		grid-template-columns: none;
		gap: 0;
	}
	.transfer_text { grid-template-columns: 2fr 3fr }
	.journal_wrap .news_wrap .item_wrap .item_box {

	}
	.item_wrap .item_box .item_meta {
		grid-template-rows: auto auto 1fr;
		gap: 5px;
	}
	.item_wrap .item_box .item_meta .item_info { grid-template-columns: none }
	.item_wrap .item_box .item_meta .item_info strong { display: none }
	.item_wrap .item_box .item_meta .item_lead { display: none }
	.journal_wrap .item_wrap {
		height: auto;
		gap: 10px;
	}
	.about_wrap { grid-template-columns: none }
	.founders_wrap {
		grid-template-columns: .5fr .5fr;
		gap: 10px;
	}
	.founders_wrap .founder_box:last-child {
		display: flex;
		grid-column: span 2;
		justify-content: center;
	}
	.founders_wrap .founder_box:last-child .back_light { max-width: 50% }
	.founder_box .founder_meta {
		align-items: start;
		gap: 5px;
		padding: 5px;
	}
	.founder_box .founder_meta img { max-width: 24px }
	.founder_box .founder_meta h3 { font-size: 16px }
	.founder_box .founder_meta span {
		display: block;
		font-size: 12px;
		line-height: 14px;
	}
	.footer { padding: 15px 15px 35px }
	.footer h3 {
		font-size: 18px;
		margin: 15px 0;
	}
	.footer_row {
		display: flex;
		flex-wrap: wrap;
		gap: 0;
		margin: 15px 0;
	}
	.footer_row:nth-child(1) .footer_col:first-child { flex: 1 0 100% }
	.footer_row:nth-child(1) .footer_col { flex: 0 0 50% }
	.footer_subscribe { 
		grid-template-columns: none;
		grid-template-rows: auto auto 1fr;
	 }
	 .footer_subscribe .footer_col { gap: 15px }
	.footer_row:nth-child(2) {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.footer_subscribe button { margin: 0 }
	.footer_row:nth-child(2) .footer_col:first-child { display: none }
	.footer_socials a {
		width: 35px;
		height: 35px;
		font-size: 18px;
	}
	.footer_row.two_row { flex-direction: column-reverse }
	.footer_subscribe .footer_col .subscribe_hint { display: none }
	.footer_subscribe>.subscribe_hint {
		display: inline-block;
		margin: 0;
	}
	.footer_app h3 { font-size: 24px }
	.footer_app .mobile_app_url {
		padding: 55px;
		margin: 0 auto;
	}
	.footer_app .flex { 
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 15px;
	}
	.about_info h3 {
		font-size: 25px;
		margin: 0;
	}
	.about_info p { font-size: 16px }
	.about_wrap .btn { height: 36px }
	.about_info .btn_green {
		width: auto;
		justify-content: center;
	}
	.about_description { column-count: 1 }
	.about_rules { grid-template-columns: none }
	.about_links { grid-template-columns: .5fr .5fr }
	.about_links .back_light {
		margin: 0;
		padding: 15px 5px;
		gap: 5px;
	}
	.about_links strong { font-size: 16px }
	.about_links .btn {
		gap: 5px;
		padding: 5px;
		border-radius: 5px;
	}
	.contacts_page_wrap { margin: 0 }
	.two_block.bottom,
	.help_alert,
	.contact_block,
	.report_header,
	.purpose_items,
	.purpose_header { grid-template-columns: none }
	.purpose_header img { display: none }
	.back_green .app_adv,
	.help_block,
	.report_items,
	.partner_items,
	.document_items {
		grid-template-columns: .5fr .5fr;
		gap: 5px;
		font-size: 18px;
	}
	.back_green .app_adv { gap: 10px }
	.partner_items,
	.report_items { gap: 10px }
	.partner_items { font-size: 16px }
	.document_items .btn { border-radius: 10px }
	.report_statistics { display: none }
	.contact_block .data_item { grid-template-columns: 2fr 5fr }
	.help_page_wrap p { max-width: 100% }
	.help_alert {
		margin: 35px 0;
		padding: 15px;
		gap: 15px;
	}
	.help_alert .alert_left { font-size: 24px }
	.help_alert img { max-width: 32px }
	.alert_title { display: none }
	.help_block h4 { font-size: 18px }
	.help_block span { font-size: 14px }
	.help_page_wrap .btn_fill {
		width: auto;
		justify-content: center;
	}
	.help_block img { max-width: 50px }
	.mobile_page_wrap .two_block.top { grid-template-columns: none }
	.two_block.bottom img,
	.mobile_page_wrap .two_block.top img { max-width: 100% }
	.app_qr_box .qr_img { display: none }
	.app_qr_box .btn {
		padding: 5px;
		border-radius: 10px;
		font-size: 14px;
	}
	.back_green .app_adv .adv_box { gap: 10px }
	.back_green .app_adv .adv_box .adv_icon {
		height: 50px;
		width: 50px;
	}
	.back_green .app_adv .adv_box strong { font-size: 16px }
	.back_green .app_adv .adv_box span { font-size: 12px }
	.journal_search_box button { padding: 10px 25px }
	.single_journal_page { grid-template-columns: none }
	.single_journal_page .journal_meta { display: none }
	.single_journal_page .journal_meta.mobile_journal_meta {
		display: grid;
		margin-top: 15px;
	}
	.carousel_boxes { min-height: 200px }
	.report_map .map_info_box {
		width: auto;
		margin: 0 auto;
		font-size: 20px;
	}
	.title { font-size: 25px }
	.lf { font-size: 25px }
	
	#profile .content { margin: 0 }
	.profile_page {
		grid-template-columns: none;
		gap: 15px;
	}
	.profile_menu {
		display: grid;
		grid-template-columns: repeat(6, minmax(max-content, 1fr));
		gap: 5px;
		overflow-x: scroll;
		margin: 25px 0 0;
		padding: 0 25px;
		border-radius: 0;
		background-color: transparent;
		color: #0f5648;
		scrollbar-width: none;
	}
	.profile_menu::-webkit-scrollbar { display: none }
	.profile_menu a {
		grid-template-columns: none;
		font-size: 12px;
		font-weight: 700;
		color: #0f5648;
		border-color: #0f5648;
		text-wrap: nowrap;
	}
	.profile_menu a.current:hover,
	.profile_menu a.current {
		color: #fff;
		background-color: #0f5648;
	}
	.profile_menu a img { display: none }
	.profile_menu a:last-child { margin-top: 0 }
	.profile_area {
		margin: 0;
		padding: 25px;
		padding-top: 0px;
	}

	.profile_area h1 {
		font-size: 25px;
	    margin-top: 0;
		padding-top: 25px;
	    border-top: 1px solid #0f5648;
	}
	.achievement_wrap h1 {
		margin: 0 25px;
		font-size: 25px;
	}
	.achievement_wrap h2 {
		margin: 0 25px;
		font-size: 18px;
	}
	.achievement_wrap h2 i {
		width: 18px;
		height: 18px;
	}
	.achievement_box {
		gap: 10px;
		padding: 10px;
		margin: 0;
		grid-template-columns: 150fr 175fr;
	}
	.achievement_boxes .achievement_box:first-child { margin-left: 25px }
	.achievement_boxes .achievement_box:last-child { margin-right: 25px }

	.achievement_img img { max-width: 60% }
	.achievement_boxes { grid-template-columns: repeat(5, 350px) }
	.achievement_starts img { width: 14px }
	.achievement_body { gap: 0 }
	.achievement_body h3 { font-size: 16px }
	.achievement_top { font-size: 12px }
	.achievement_body p { font-size: 12px }
	.achievement_meta {
		align-items: start;
		grid-template-rows: auto auto auto;
		font-size: 12px;
	}
	.achievement_progress {
		height: 12px;
		border-radius: 6px;
	}
	.user_achievements a {
		padding: 6px 9px;
		font-size: 12px;
		font-weight: 700;
	}
	.achievement_status { font-size: 12px }
	.filter_box .btn { padding: 10px 20px }
	.filter_box .btn i { display: inline }
	.filter_box .btn span { display: none }
	.filter_box input {
		padding: 10px;
		background-image: none !important;
	}
	.history_box {
		gap: 10px;
		font-size: 14px;
	}
	.history_box .ic_file {
	    width: 18px;
	    height: 24px;
	}
}
/* iPad Pro */
@media only screen and (max-width: 1024px) {
	.donate_data .btn { padding: 15px 5px }
	.header_bar .app_tools .get_help_btn a {
		font-size: 14px;
		font-weight: 600;
		padding: 8px;
	}
	.header_bar .app_tools { gap: 15px }
}
/* iPad Air & Mini */
@media only screen and (max-width: 992px) {
	.donate_data .btn { padding: 15px 5px }
	.header_bar .app_tools .get_help_btn a {
		font-size: 14px;
		font-weight: 600;
		padding: 8px;
	}
	.header_bar .app_tools {
		align-items: stretch;
		gap: 15px;
	}
}
@media (min-width: 375px) { }
@media (min-width: 576px) {
	.container { max-width: 540px }
}
@media (min-width: 768px) {
	.video_box { width: 720px }
	.container { max-width: 720px }
}
@media (min-width: 992px) {
	.video_box { width: 900px }
	.container { max-width: 960px }
}
@media (min-width: 1200px) {
	.video_box { width: 1000px }
	.container { max-width: 1140px }
}
@media (min-width: 1400px) {
	.video_box { width: 1200px }
	.container { max-width: 1180px }
	.report_map .big_marker { display: block }
	.report_map .marker.current path { fill: url(#gr_map_all) }
}

div.spinner {
	position: relative;
	width: 54px;
	height: 54px;
	display: inline-block;
	top: 40%;
	left: 50%;
	transform: translateX(-50%);
	padding: 10px;
	border-radius: 10px
}
div.spinner div {
	width: 6%;
	height: 16%;
	background: #777;
	position: absolute;
	left: 49%;
	top: 43%;
	opacity: 0;
	border-radius: 50px;
	box-shadow: 0 0 3px rgb(0, 0, 0, .2);
	animation: fade 1s linear infinite
}
@-webkit-keyframes fade {
	from { opacity: 1 }
	to { opacity: .25 }
}
div.spinner div.bar1 {
	transform: rotate(0) translate(0,-130%);
	animation-delay: 0s
}
div.spinner div.bar2 {
	transform: rotate(30deg) translate(0,-130%);
	animation-delay: -.9167s
}
div.spinner div.bar3 {
	transform: rotate(60deg) translate(0,-130%);
	animation-delay: -833ms
}
div.spinner div.bar4 {
	transform: rotate(90deg) translate(0,-130%);
	animation-delay: -.7497s
}
div.spinner div.bar5 {
	transform: rotate(120deg) translate(0,-130%);
	animation-delay: -667ms
}
div.spinner div.bar6 {
	transform: rotate(150deg) translate(0,-130%);
	animation-delay: -.5837s
}
div.spinner div.bar7 {
	transform: rotate(180deg) translate(0,-130%);
	animation-delay: -.5s
}
div.spinner div.bar8 {
	transform: rotate(210deg) translate(0,-130%);
	animation-delay: -.4167s
}
div.spinner div.bar9 {
	transform: rotate(240deg) translate(0,-130%);
	animation-delay: -333ms
}
div.spinner div.bar10 {
	transform: rotate(270deg) translate(0,-130%);
	animation-delay: -.2497s
}
div.spinner div.bar11 {
	transform: rotate(300deg) translate(0,-130%);
	animation-delay: -167ms
}
div.spinner div.bar12 {
	transform: rotate(330deg) translate(0,-130%);
	animation-delay: -83.3ms
}

.get_app { display: none!important }
.get_app.content {
	display: grid!important;
	gap: 25px;
	padding-top: 25px;
	padding-bottom: 25px;
}
.close_in_app {
	position: fixed;
	z-index: 9;
	margin: 0 auto;
	left: 0;
	right: 0;
	bottom: 25px;
	min-width: 200px;
}