:root {
	--main_color: #007bff;
	--secondmain_color: #FF2373;
	--poppins: Poppins, sans-serif;
	--quality_toggle_btn: #c8232c;
	--quality_header: #c8232c;
	--quality_title: #efd8ef;
	--close_bg: #d55559;
	--close_hover: #b12125;
	--close_line_color: #e8e8e8;
	--hr_color: #b3b3b3;
	--quality_text_color: #444247;
	--quality_btn_color: #c8232c;
	--quality_btn_text_color: #f1f1f1
}

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0
}

a {
	text-decoration: none;
	color: #2f2f2f
}

a:hover {
	text-decoration: none;
	color: inherit
}

body {
	margin: 0 auto !important;
	font-family: var(--poppins);
	background: #fff;
	font-size: 16px !important;
	color: #2f2f2fe6 !important
}

nav {
	height: 65px;
	display: flex;
	align-items: center;
	font-weight: 400;
	position: relative;
	user-select: none
}

nav .container {
	display: flex;
	align-items: center;
	justify-content: space-between
}

nav .container a.logo {
	color: #2f2f2f;
	font-weight: 600;
	user-select: none;
	font-size: 1.35rem;
	white-space: nowrap
}

nav .container a.logo span {
	color: var(--main_color)
}

.close,
nav .toggle_menu {
	position: absolute;
	right: 15px;
	width: 30px;
	height: 40px;
	cursor: pointer;
	margin: 0;
	display: none
}

nav .toggle_menu span {
	position: absolute;
	top: 18px;
	left: 0;
	width: 20px;
	height: 3px;
	background-color: #1b1b1b;
	display: inline-block;
	transition: .25s ease-in-out;
	border-radius: 25px
}

.close::after,
.close::before,
nav .toggle_menu::after,
nav .toggle_menu::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	width: 30px;
	height: 3px;
	background-color: #1b1b1b;
	display: inline-block;
	transition: .25s ease-in-out;
	border-radius: 25px
}

nav .toggle_menu::after {
	top: 26px;
	width: 25px
}

.close::before,
nav #toggle_menu:checked+.toggle_menu::before {
	transform: rotate(-135deg);
	top: 18px;
	width: 28px
}

.close::after,
nav #toggle_menu:checked+.toggle_menu::after {
	transform: rotate(135deg);
	top: 18px;
	width: 28px
}

nav #toggle_menu:checked+.toggle_menu span {
	transform: translate(-50px, 0);
	opacity: 0;
	visibility: hidden
}

nav #toggle_menu:checked~.menu-items {
	overflow-y: inherit;
	max-height: 1000px;
	padding-top: 20px;
	padding-bottom: 20px
}

nav ul.menu-items {
	margin-bottom: 0
}

nav ul.menu-items li.items {
	display: inline-block;
	font-weight: 400
}

nav ul.menu-items li.items a,
nav ul.menu-items li.items label {
	display: block;
	margin-bottom: 0
}

nav ul.menu-items li.items:not(:last-of-type) {
	padding-right: 15px
}

.languages-cover {
	color: #fff;
	z-index: 1299;
	background: rgba(255, 255, 255, .9);
	overflow-x: hidden;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	position: fixed;
	align-items: center;
	justify-content: center;
	-webkit-tap-highlight-color: transparent;
	display: none
}

.language-list {
	display: block;
	width: 100%;
	max-height: 85vh;
	overflow-x: hidden;
	overflow-y: scroll;
	text-align: center
}

.language-btn {
	cursor: pointer
}

.language-list a {
	display: block;
	color: rgba(0, 0, 0, .87);
	padding: 6px 15px;
	margin-bottom: 4px !important;
	font-size: 1.075rem;
	text-transform: capitalize;
	transition: background-color .1s ease-in-out
}

.language-list a:hover {
	background-color: rgba(200, 35, 44, .19)
}

.language-list a.active {
	color: var(--main_color);
	font-weight: 700
}

.language input[type=checkbox]:checked~.languages-cover {
	display: flex
}

.language input[type=checkbox]:checked~.languages-cover .close {
	display: block;
	top: 12px;
	background-color: #e2e2e2;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	text-align: center
}

.close::after,
.close::before {
	margin-left: 8px;
	width: 24px
}

@media(max-width:991px) {
	nav .container {
		justify-content: center
	}

	nav .toggle_menu {
		display: block
	}

	nav ul.menu-items {
		overflow-y: hidden;
		max-height: 0;
		position: absolute;
		background: #fff;
		top: 100%;
		width: 97%;
		height: auto;
		padding: 0 15px;
		margin-top: 15px;
		border-radius: 4px;
		z-index: 1;
		transition: all .5s ease;
		box-shadow: 0 14px 35px 0 rgba(9, 9, 12, .4)
	}

	nav ul.menu-items::after {
		position: absolute;
		top: -7px;
		right: 18px;
		width: 0;
		height: 0;
		border-left: 8px solid transparent;
		border-right: 8px solid transparent;
		border-bottom: 8px solid #fff;
		content: '';
		display: block;
		z-index: 2
	}

	nav ul.menu-items li.items {
		display: block;
		padding: 8px 0
	}
}

.quality_list {
	background-color: var(--quality_toggle_btn);
	border-radius: 4px;
	height: 45px;
	overflow: hidden;
	position: relative;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	margin-bottom: 10px;
	transition: background-color .3s cubic-bezier(.4, 0, .2, 1), height .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s cubic-bezier(.4, 0, .2, 1), border-radius .3s cubic-bezier(.4, 0, .2, 1)
}

.quality_list:not(.expand) {
	cursor: pointer
}

.quality_list:not(.expand):hover {
	background-color: rgba(200, 35, 44, .9)
}

.from {
	width: 100%;
	position: absolute;
	transition: opacity .2s .1s cubic-bezier(0, 0, .2, 1)
}

.from-contents {
	display: flex;
	flex-direction: row;
	transform-origin: 0 0;
	align-items: center;
	justify-content: center;
	transition: transform .3s cubic-bezier(.4, 0, .2, 1)
}

.quality_title {
	font-size: 16px;
	font-weight: 600;
	color: #f7f7f7;
	line-height: 45px;
	margin-left: 10px
}

.to {
	width: 100%;
	opacity: 0;
	position: absolute;
	transition: opacity .1s cubic-bezier(.4, 0, 1, 1)
}

.top {
	background: var(--quality_header);
	display: flex;
	flex-direction: row;
	height: 70px;
	transition: height .3s cubic-bezier(.4, 0, .2, 1)
}

.quality_title_large {
	color: var(--quality_title);
	font-size: 16px;
	line-height: 70px;
	margin-left: 20px
}

.close_ql {
	align-items: center;
	align-self: center;
	cursor: pointer;
	display: flex;
	height: 50px;
	justify-content: center;
	margin-left: auto;
	width: 50px
}

.x {
	background: var(--close_bg);
	border-radius: 14px;
	height: 24px;
	position: relative;
	width: 24px;
	transition: background .2s ease-in-out
}

.close_ql:hover .x {
	background: var(--close_hover)
}

.line1 {
	background: var(--close_line_color);
	height: 12px;
	position: absolute;
	transform: translateX(11px) translateY(7px) rotate(45deg);
	width: 2px
}

.line2 {
	background: var(--close_line_color);
	height: 12px;
	position: absolute;
	transform: translateX(11px) translateY(7px) rotate(-45deg);
	width: 2px
}

hr {
	border-color: var(--hr_color);
	border-radius: 4px;
	width: 50%;
	margin: 10px auto
}

.bottom {
	background: #fff;
	color: var(--quality_text_color);
	font-size: 14px;
	padding: 10px 8px
}

._row {
	align-items: center;
	display: flex;
	flex-direction: column
}

.download__btn {
	text-align: center;
	width: 100%;
	height: 42px;
	background-color: var(--quality_btn_color);
	text-decoration: none;
	color: var(--quality_btn_text_color);
	font-size: 14px;
	line-height: 42px;
	text-transform: uppercase;
	font-weight: 300;
	border-radius: 4px;
	transition: background-color .3s ease-in-out
}

.download__btn:hover {
	background-color: #cf3d43;
	color: var(--quality_btn_text_color)
}

._row .download__btn:first-of-type {
	margin-bottom: 8px
}

.quality_list.expand {
	height: 200px;
	border-radius: 6px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, .1), 0 6px 6px rgba(0, 0, 0, .16)
}

.expand .from {
	opacity: 0;
	transition: opacity .1s cubic-bezier(.4, 0, 1, 1)
}

.expand .to {
	opacity: 1;
	transition: opacity .2s .1s cubic-bezier(0, 0, .2, 1)
}

.quality_list:not(.expand) .close_ql {
	pointer-events: none
}

.download_form {
	margin-top: 32px;
	display: flex;
	flex-wrap: wrap;
	position: relative
}

.download_input {
	color: #fff;
	background-color: rgba(255, 255, 255, .2);
	outline-style: none;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	font-size: 18px;
	width: 0;
	flex: 1 1 auto;
	border-width: 1px;
	border-style: solid;
	border-color: transparent;
	border-image: initial;
	padding: 10px 20px
}

.download_input::placeholder {
	color: rgba(255, 255, 255, .7)
}

.download_button {
	color: #fff;
	background-color: var(--main_color);
	border-radius: 0 7px 7px 0;
	font-size: 18px;
	padding: 10px 50px;
	border-style: none;
	transition: background-color .2s ease-in-out;
	overflow: hidden
}

.download_button span {
	white-space: nowrap
}

.download_button:hover {
	background-color: rgba(200, 35, 44, .9)
}

form .download_button {
	color: var(--main_color);
	background-color: #fff;
	font-weight: 700;
	width: 191px;
	height: 49px;
	display: flex;
	justify-content: center;
	align-items: center
}

form .download_button:hover {
	background-color: rgba(255, 255, 255, .8)
}

.download_button:focus {
	outline: 0
}

@media (max-width:768px) {
	.download_input {
		padding-left: 12px
	}

	form .download_button {
		width: 100% !important;
		margin-top: 20px;
		border-radius: 3px
	}
}

.pinterest_container {
	width: 100%;
	height: auto;
	padding-bottom: 48px;
	background: var(--main_color)
}

h2 {
	font-size: 38px;
	font-weight: 700;
	color: #151515;
	text-align: center;
	margin: 35px 10px 15px 10px;
	text-shadow: 0 4px 3px rgba(0, 0, 0, .2), 0 18px 23px rgba(0, 0, 0, .1)
}

.pint_content h2 {
	font-size: 28px;
	color: #151515;
	text-align: center;
	margin: 35px 10px 30px 10px;
	text-shadow: none
}

.divider::after,
.faq-content h2::after {
	content: "";
	border: none;
	height: 5px;
	width: 90px;
	display: block;
	margin: 13px auto 10px auto;
	background: url(/static/img/divider.svg) no-repeat center
}

.pinterest_container h1 {
	font-size: 45px;
	font-weight: 700;
	color: #fff;
	margin-top: 48px
}

.pinterest_container h2 {
	font-size: 28px;
	font-weight: 500;
	color: #fff;
	margin-top: 0
}

.video_guide {
	border-radius: 8px
}

.video-responsive {
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
	height: 0
}

.video-responsive iframe {
	left: 50%;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
	height: 75%;
	width: 75%;
	position: absolute
}

.how_to_download ul li {
	margin-left: 40px
}

@media(max-width:491px) {
	.video-responsive iframe {
		height: 100%;
		width: 100%
	}

	.pinterest_container h1,
	h2 {
		font-size: 34px
	}

	.pinterest_container h2 {
		font-size: 22px
	}
}

.faq {
	padding: 0;
	list-style: none
}

.faq li {
	border-bottom: 1px solid #ebebeb
}

.faq li a {
	display: block;
	position: relative;
	font-weight: 900;
	font-size: 20px;
	line-height: 1;
	font-weight: 400;
	padding: 22px 20px 22px 0;
	text-decoration: none
}

.faq li a.collapsed {
	color: #000
}

.faq li h4 {
	font-size: 20px;
	font-weight: 600;
	margin-top: 14px;
	color: #333;
	margin-bottom: 0
}

.faq .fa {
	float: right;
	color: #212121
}

.faq li i {
	font-size: 29px;
	position: absolute;
	right: 0;
	top: 20px;
	font-weight: 600;
	font-style: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased
}

.plus_icon:before {
	content: "\2b"
}

.mines_icon:before {
	content: "\2212"
}

.steps,
.steps_svd {
	list-style: none;
	margin: 0;
	margin-left: 24px;
	position: relative;
	overflow: hidden
}

.steps li,
.steps_svd li {
	position: relative;
	padding: 10px 10px 10px 46px;
	border: none
}

.steps_svd li span:first-of-type i {
	width: 22px;
	height: 22px;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%)
}

.steps li span:first-of-type {
	height: 25px;
	width: 25px;
	font-size: 12px;
	color: #fff;
	text-align: center;
	font-weight: 600;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	line-height: 26px;
	border-radius: 50%;
	background-color: var(--main_color)
}

.steps li p,
.steps_svd p {
	font-size: 14px;
	margin: auto
}

.meta-header {
	margin-top: 0;
	padding-top: 25px;
	margin-bottom: 28px;
	font-size: 28px;
	text-shadow: none;
	font-weight: 600;
	text-decoration: solid;
	position: relative
}

.meta-video {
	max-width: fit-content;
	display: flex;
	justify-content: center;
	position: relative;
	margin-left: auto
}

video {
	max-width: 100%;
	border-radius: 10px;
	background: #f7f7f7
}

.play_button {
	position: absolute;
	display: block;
	width: 90px;
	height: 90px;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: transparent;
	background-image: url(/static/img/play_button.png);
	background-repeat: no-repeat;
	background-position: 50%;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	border: 0;
	outline: 0
}

.meta {
	display: flex;
	flex-direction: column;
	justify-content: center
}

.title {
	font-size: 17px;
	font-weight: 500;
	color: #212121;
	text-decoration: none
}

.meta .title a {
	color: #5c5c5c;
	text-decoration: none
}

.meta a.download_button {
	margin-bottom: 10px;
	font-size: 15px;
	border-radius: 8px;
	text-decoration: none;
	color: #fff;
	text-align: center;
	text-decoration: none
}

@media(max-width:991px) {
	.meta {
		margin-top: 25px;
		align-items: center;
		justify-content: unset
	}

	.meta .title {
		text-align: center
	}

	.meta-video {
		margin: auto
	}
}

@media(max-width:768px) {
	.meta .download_button {
		margin-bottom: 5px
	}

	.pinterestImage img {
		height: 220px
	}

	.meta-video {
		height: 200px
	}
}

#progress_container {
	margin-top: 60px;
	display: none;
	padding: 0 10px;
	text-align: center
}

.progress_circle {
	font-size: 5px;
	margin: 30px auto;
	text-indent: -9999em;
	width: 11em;
	height: 11em;
	border-radius: 50%;
	background: linear-gradient(to right, var(--main_color) 5%, rgba(2, 4, 1, 0) 42%);
	animation: progress_anim 1.4s infinite linear;
	transform: translateZ(0)
}

.progress_circle:before {
	width: 50%;
	height: 50%;
	background: var(--main_color);
	border-radius: 100% 0 0;
	position: absolute;
	top: 0
}

.progress_circle:after {
	background: #fff;
	width: 75%;
	height: 75%;
	border-radius: 50%;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0
}

.progress_circle:after,
.progress_circle:before {
	content: '';
	left: 0
}

#progress_container .status {
	text-align: center;
	font-size: 21px;
	color: #4c4c4c
}

@keyframes progress_anim {
	0% {
		transform: rotate(0)
	}

	100% {
		transform: rotate(360deg)
	}
}

.content-info-page p:first-of-type {
	margin-top: 25px
}

.content-info-page p {
	font-size: 16px;
	font-weight: 500
}

.content-info-page h2 {
	text-align: left;
	font-size: 28px;
	margin: 0 0 10px 0
}

.content-info-page ul li {
	margin-left: 40px
}

.content-info-page .contact-form ul li {
	margin-left: 0
}

.center-divider::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background: #d7d7d7;
	z-index: 1;
	top: 30px;
	transform: translateX(-50%);
	margin: 0 auto
}

@media(max-width:767px) {
	.center-divider::after {
		display: none
	}
}

pre {
	display: block;
	padding: 9.5px;
	margin: 10px auto;
	text-align: center;
	font-size: 13px;
	line-height: 1.42857143;
	color: #333;
	word-break: break-all;
	word-wrap: break-word;
	background-color: #f5f5f5;
	border: 1px solid #ccc;
	border-radius: 4px
}

pre span {
	display: block
}

footer {
	margin-top: 40px;
	background-color: var(--main_color);
	overflow: hidden
}

footer h3,
footer p {
	color: rgba(255, 255, 255, .8)
}

footer a {
	color: #fff;
	text-decoration: none;
	outline: 0;
	padding: 10px
}

footer a.high-light-a {
	color: rgba(255, 255, 255, .8)
}

footer a.high-light-a:hover {
	color: var(--mainColor)
}

footer .impo-page {
	text-align: center;
	display: block
}

.impo-page h3 {
	margin-right: 10px
}

.impo-page ul {
	list-style: none;
	display: inline-block;
	margin: 0 0 10px 0;
	padding: 0
}

.impo-page ul li a {
	text-decoration: none;
	display: block;
	line-height: 2px;
	text-align: left
}

.impo-page ul li a:hover {
	color: rgba(255, 255, 255, .8)
}

.f_underline {
	margin-top: 20px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	font-weight: 600;
	font-size: 18px;
	position: relative
}

.f_underline:before {
	content: "";
	position: absolute;
	width: 30px;
	height: 3px;
	background: var(--main_color);
	bottom: 2px
}

footer .copyright {
	overflow: hidden;
	height: 50px;
	line-height: 50px;
	color: rgba(255, 255, 255, .8);
	background-color: rgba(51, 51, 51, .08)
}

@media(max-width:767px) {
	.impo-page ul {
		justify-content: center;
		display: flex
	}

	.impo-page ul li {
		text-align: center
	}

	.impo-page h3 {
		margin-right: 0;
		margin: 0 0 10px 0
	}
}

@media(max-width:345px) {
	footer a.high-light-a {
		font-size: 10px
	}

	footer .copyright {
		font-size: 10px
	}
}

@media(max-width:339px) {
	.impo-page ul li a {
		font-size: 14px
	}
}

@media(max-width:322px) {
	.impo-page ul li a {
		font-size: 13px
	}
}

@media(max-width:305px) {
	.impo-page ul li a {
		font-size: 12px
	}
}

.bottom_line {
	border-bottom: 1px solid #e7e7e7;
	margin-top: 15px;
	margin-bottom: 25px
}

.media_cont {
	background: #e8e8e8;
	border-radius: 6px;
	padding: 10px
}

.adv .meta-video {
	margin-right: auto
}

audio::-webkit-media-controls-enclosure {
	border-radius: 8px
}

.f-width {
	width: 100%;
	display: block;
	border-radius: 6px !important
}

.best__sites a:hover {
	text-decoration: underline;
	color: #f7f7f7;
	transition: all .5s ease
}

.android-app {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1
}

.android-app a {
	font-size: 16px;
	font-weight: 500;
	border: 1px solid var(--main_color);
	background: var(--main_color);
	border-radius: 4px;
	padding: 4px 12px;
	display: flex;
	align-items: center;
	color: #e1e1e1;
	cursor: pointer;
	font-weight: 600
}

.android-app a svg {
	margin-right: 8px
}

.android-app:hover {
	box-shadow: rgba(255, 255, 255, .16) 0 3px 6px, rgba(255, 255, 255, .23) 0 3px 6px;
	transition: box-shadow .2s ease-in-out
}

.android-app:hover a,
.android-app:hover svg {
	color: #fff;
	fill: #fff;
	transition: color .2s ease-in-out, fill .2s ease-in-out
}

@media(max-width:991px) {
	.android-app {
		top: 82px;
		transform: translateX(-50%)
	}

	.android-app a {
		border: 1px solid #e1e1e1
	}
}