html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	box-sizing: border-box;
}

html {
	font-size: 10px;
	background-color: #f7f7f7;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
	font-size: 1.2rem;
}

body.roboto *{
	font-family: 'Roboto', sans-serif;
}

body.nunito *{
	font-family: 'Nunito', sans-serif;
}

body.pt-sans *{
	font-family: 'PT Sans', sans-serif;
}

body.quicksand *{
	font-family: 'Quicksand', sans-serif;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*::selection {
	background: #f55656;
	color: #fff;
}

* {
	font-family: 'Roboto', serif;
}

.main-wrapper {
	padding: 8rem 0 32rem;
	min-height: 100vh;
	position: relative;
}
@media print {
	.main-wrapper {
		min-height: auto;
		padding: 0;
	}
}
@media screen and (max-width: 1400px) {
	.main-wrapper {
		padding: 8rem 4rem 30rem;
	}
}
@media screen and (max-width: 768px) {
	.main-wrapper {
		padding: 8rem 2rem 33rem;
	}
}
@media screen and (max-width: 570px) {
	.main-wrapper {
		padding: 8rem 2rem 54rem;
	}
}

.main {
	width: 100%;
	max-width: 1366px;
	display: flex;
	margin: auto;
}
@media print {
	.main {
		max-width: auto;
	}
}
@media screen and (max-width: 768px) {
	.main {
		flex-direction: column;
	}
}
.main aside {
	flex: 0 0 215px;
	font-size: 1.5rem;
	color: #a9a9a9;
}
@media print {
	.main aside {
		display: none;
	}
}
.main aside.nav-menu {
	transition: all 0.3s;
}
@media screen and (max-width: 768px) {
	.main aside.nav-menu {
		position: fixed;
		top: 5.5rem;
		left: 0;
		z-index: 11;
		background-color: #fff;
		padding: 2rem;
		box-shadow: 0px 20px 37px -24px rgba(0, 0, 0, 0.75);
		transform: translateX(-110%);
	}
	.main aside.nav-menu.opened {
		transform: translateX(0%);
	}
}
.main aside.nav-menu .download {
	flex: 0 0 16rem;
	background-color: #f55656;
	padding: 1.2rem 2rem 1.2rem 2rem;
	color: #fff;
	cursor: pointer;
	font-size: 1.55rem;
	position: relative;
	border-radius:  5px;
	background-image: url(src/pdf1.png);
	background-repeat: no-repeat;
	background-position: calc( 100% - .7rem ) center;
}
@media screen and (min-width: 769px) {
	.main aside.nav-menu .download {
		display: none;
	}
}
.main aside.nav-menu .download .txt {
	position: relative;
}
.main aside.nav-menu .download .txt::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 27px;
	background: url(src/pdf.png);
	top: 50%;
	right: -1.5rem;
	transform: translate(100%, -50%);
	background-position: center;
	background-repeat: no-repeat;
}
.main aside a {
	text-decoration: none;
	color: #a9a9a9;
	transition: all 0.3s;
	display: block;
	padding: .3rem;
}
.main aside a:hover {
	color: #333;
}
@media screen and (max-width: 1366px) {
	.main aside.buttons {
		flex: 0 0 40px;
	}
}
.main aside section {
	margin-bottom: 4rem;
}
.main aside section header {
	font-weight: 800;
	margin-bottom: 1.5rem;
}
.main aside section li {
	margin-bottom: .9rem;
}
@media screen and (max-width: 768px) {
	.main aside .buttonblock {
		display: flex;
		justify-content: center;
	}
}
.main aside .buttonblock .button-icon {
	width: 4.4rem;
	height: 4.4rem;
	margin-bottom: 1rem;
	cursor: pointer;
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center;
	transition: all 0.3s;
	position: relative;
	border-radius: 5px;
}
@media screen and (max-width: 768px) {
	.main aside .buttonblock .button-icon {
		margin: 0 0.5rem;
	}
}
.main aside .buttonblock .button-icon.follow {
	background-image: url('src/follow.png');
}
.main aside .buttonblock .button-icon.print {
	background-image: url('src/print.png');
}
.main aside .buttonblock .button-icon.mail {
	background-image: url('src/email.png');
}
.main aside .buttonblock .button-icon.fb {
	background-image: url('src/fb.png');
}
.main aside .buttonblock .button-icon:hover {
	background-color: #ebebeb;
}
.main aside .buttonblock .button-icon a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.main article {
	flex: 1 1 100%;
	margin: 0 8rem;

	position: relative;
	font-size: 1.4rem;
	line-height: 1.5em;
}

.main article .wrapper {
	padding: 4rem 9rem;
	background-color: #fff;
	/* margin-bottom: 5rem; */
}

.main article.not-first-page .wrapper,
.main article.static-page .wrapper {
	box-shadow: 0px 0px 37px -24px #000;
}

@media print {
	.main article .wrapper {
		margin: 0;
		padding: 0;
	}

	.main article.not-first-page .wrapper,
	.main article.static-page .wrapper {
		box-shadow: none;
	}
}
@media screen and (max-width: 1000px) {
	.main article .wrapper {
		padding: 3rem 4rem;
	}

	.main article {
		margin: 0 4rem;
	}
}
@media screen and (max-width: 800px) {
	.main article {
		margin: 0 2rem;
	}

	.main article .wrapper {
		padding: 3rem 5rem;
	}
}
@media screen and (max-width: 768px) {
	.main article {
		margin: 0;
		margin-bottom: 4rem;
	}
}
@media screen and (max-width: 768px) {
	.main article .wrapper {
		padding: 3rem 3rem;
	}
}
@media screen and (max-width: 768px) {
	.main article .nav-links {
		position: fixed;
		bottom: 4rem;
		left: 0;
		display: flex;
		justify-content: center;
		width: 100%;
		z-index: 5;
	}
}

@media screen and (max-width: 600px) {
	.main article .wrapper {
		padding: 3rem 2rem;
	}
}

.main article .nav-links .chapt-link {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	box-shadow: 0px 0px 5px 2px #00000033;
	background-color: #ebebeb;
	position: absolute;
	top: 240px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 40%;
	/* transition: all 0.3s; */
}
@media print {
	.main article .nav-links .chapt-link {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.main article .nav-links .chapt-link {
		position: relative;
		top: 0 !important;
		margin: 1rem;
		border-radius: 50%;
		box-shadow: 0px 0px 12px 0px #999;
	}
}
.main article .nav-links .chapt-link.prev-chapt {
	left: -2rem;
	background-image: url(src/l_arr.png);
}
@media screen and (max-width: 768px) {
	.main article .nav-links .chapt-link.prev-chapt {
		left: 0;
	}
}
.main article .nav-links .chapt-link.next-chapt {
	right: -2rem;
	background-image: url(src/r_arr.png);
}
@media screen and (max-width: 768px) {
	.main article .nav-links .chapt-link.next-chapt {
		right: 0;
	}
}
.main article .nav-links .chapt-link:hover {
	background-color: #ccc;
}
.main article .nav-links .chapt-link a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.main article .main-chapter {
	margin: auto;
	/* line-height: 1.8em; */
}

.main article .main-chapter.nodala p {
	transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main article .main-chapter.nodala p.highlight {
	background-color:  #f55656;
	color: #fff;
	padding-left: 1rem
}

.main article .book-title {
	text-align: center;
	font-size: 2.1rem;
	font-weight: 800;
	margin-bottom: 1rem;
}
.main article.first-page {
	background-color: transparent;
	display: flex;
	padding: 0;
}
.main article.first-page .fp-img-wrapper {
	position: relative;
	margin: auto;
	box-shadow: 7px 6px 10px -4px rgba(0,0,0,0.51);
}
.main article.first-page .fp-img-wrapper img {
	max-width: 100%;
}
.main article.first-page a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all 0.3s;
	opacity: 0;
	z-index: 8;
	/* &:hover {
                opacity:1;
               } */
}
.main article.first-page .begin-reading {
	transition: all 0.3s;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	color: #fff;
	font-size: 3rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(245, 86, 86, 0.5);
	/* &:hover {
                    opacity:1;
                } */
}
.main article.first-page .fp-img-wrapper:hover .begin-reading,
.main article.first-page .fp-img-wrapper:hover a {
	opacity: 1;
}

.site-header {
	width: 100%;
	height: 5.5rem;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #fff;
	box-shadow: 0px 20px 37px -24px rgba(0, 0, 0, 0.75);
	z-index: 10;
}

.admin-bar .site-header {
	top: 30px;
}

@media print {
	.site-header {
		display: none;
	}
}
.site-header .header-wrapper {
	max-width: 1366px;
	margin: auto;
	display: flex;
	font-size: 1.4rem;
	height: 5.5rem;
	padding-left: 1rem;
}
@media screen and (max-width: 768px) {
	.site-header .header-wrapper {
		justify-content: center;
	}
}
.site-header .header-wrapper .burger {
	display: none;
}
@media screen and (max-width: 768px) {
	.site-header .header-wrapper .burger {
		display: block;
		flex: 0 0 4rem;
		align-self: center;
		width: 4rem;
		height: 4rem;
		background-image: url(src/burger.png);
		background-size: 80%;
		background-position: center;
		background-repeat: no-repeat;
		position: absolute;
		top: 0.5rem;
		left: 0.5rem;
	}
}
.site-header .header-wrapper .logo {
	background-image: url(src/logo.png);
	height: 30px;
	flex: 0 0 140px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	align-self: center;
	margin-right: 2rem;
	position: relative;
}
.site-header .header-wrapper .logo a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.site-header .header-wrapper .site-title {
	font-size: 1.55rem;
	color: #bababa;
}
@media screen and (max-width: 768px) {
	.site-header .header-wrapper .site-title {
		display: none;
	}
}
.site-header .header-wrapper div {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
}
.site-header .header-wrapper .download {
	flex: 0 0 auto;
	background-color: #f55656;
	padding: 1.2rem 4.5rem 1.2rem 2rem ;
	color: #fff;
	cursor: pointer;
	font-size: 1.45rem;
	position: relative;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	align-self: center;
	/* padding:  10px; */
	border-radius:  5px;
	background-image: url(src/pdf1.png);
	background-repeat: no-repeat;
	background-position: calc( 100% - .7rem ) center;
}

.site-header .header-wrapper .download:hover {
	background-color: #d04c4c;
}

@media screen and (max-width: 768px) {
	.site-header .header-wrapper .download {
		display: none;
	}
}
.site-header .header-wrapper .download .txt {
	position: relative;
}
/*.site-header .header-wrapper .download .txt::after {
	content: '';
	position: absolute;
	width: 24px;
	height: 25px;
	background: url(src/pdf1.png);
	top: 50%;
	right: -2.5rem;
	transform: translate(100%, -50%);
	background-position: center;
	background-repeat: no-repeat;
}*/

.subhead {
	font-size: 1.55rem;
	margin: 0 0 2.5rem;
	color: #bababa;
}
@media print {
	.subhead {
		display: none;
	}
}
.subhead .chapter-select {
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width: 550px) {
	.subhead .chapter-select {
		flex-direction: column;
	}
}
.subhead .chapter-select .select-field {
	position: relative;
}
.subhead .chapter-select .select-field.select-eva {
	width: 37rem;
}
@media screen and (max-width: 550px) {
	.subhead .chapter-select .select-field.select-eva {
		width: 100%;
	}
}
.subhead .chapter-select .select-field.select-chapter {
	width: 16rem;
}
@media screen and (max-width: 550px) {
	.subhead .chapter-select .select-field.select-chapter {
		width: 100%;
	}
}
.subhead .chapter-select .select-field .select-field-val {
	background-color: #ebebeb;
	padding: 0.75rem 4rem 0.75rem 2rem;
	border-bottom: 1px solid #fff;
	background: #ebebeb url(src/dropdown.svg) right 10px center/20px no-repeat;
	cursor: pointer;
}
.subhead .chapter-select .select-field .select-options {
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateY(100%);
	width: 100%;
	background-color: #ebebeb;
	overflow-y: hidden;
	max-height: 0px;
	transition: all 0.3s;
	z-index: 9;
}
.subhead .chapter-select .select-field .select-options.open {
	max-height: 800px;
}
.subhead .chapter-select .select-field .select-options .select-opt {
	width: 100%;
	padding: 1rem 2rem;
	border-bottom: 1px solid #fff;
	cursor: pointer;
	transition: all 0.2s;
}
.subhead .chapter-select .select-field .select-options .select-opt:hover {
	background-color: #f0f0f0;
}
.subhead .chapter-select .select-separator {
	margin: 0 1rem;
}

footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin-top: 40px;
	background-color: #323232;
	color: #a9a9a9;
	padding: 7rem 2rem 3rem;
	font-size: 1.66rem;
	line-height: 2rem;
	height: 28rem;
	z-index: 7;
}
@media print {
	footer {
		display: none;
	}
}
@media screen and (max-width: 570px) {
	footer {
		height: 50rem;
	}
}
footer li {
	margin-bottom: 1.5rem;
}
footer li:last-child {
	margin-bottom: 0;
}
footer a {
	text-decoration: none;
	color: #a9a9a9;
	transition: all 0.3s;
	font-size: 1.5rem;
}
footer a:hover {
	color: #fff;
}
footer .nav-columns {
	display: flex;
	justify-content: space-between;
	margin: 0 auto 6rem;
	width: 100%;
	max-width: 80.5rem;
}
@media screen and (max-width: 570px) {
	footer .nav-columns {
		justify-content: center;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}
@media screen and (max-width: 570px) {
	footer .nav-columns nav {
		margin-bottom: 1.2rem;
	}
}
footer .copyright {
	font-size: 1.5rem;
	text-align: center;
	background-color: #3f3f3f;
	padding: 2rem;
	margin: 0 -2rem;
}

article {
	line-height: 1.35em;
}
article h1 {
	font-size: 2.1rem;
	margin-bottom: 0.7em;
	line-height: 1.35em;
}
article h2,
article h3 {
	font-size: 1.4rem !important;
	font-weight: 800;
	margin-top: 1rem;
}
article .popup h2 {
	font-size: 2.1rem !important;
}

article h3 {
	font-size: 1.76rem;
}
article p {
	line-height: 1.6em;
	margin-bottom: 2em;
}

.popup {
	position: absolute;
	background-color: rgba(245, 86, 86, 0.95);
	top: -1rem;
	left: -2rem;
	right: -2rem;
	padding: 8rem 7rem 5rem;
	color: #fff;
	text-align: center;
	z-index: -1;
	transform: translateY(3rem);
	opacity: 0;
	transition: all 0.3s;
}
.popup.visible {
	transform: translateY(0);
	opacity: 1;
}
.popup .popup-inner {
	max-height: 100vh;
	overflow: hidden;
	transition: all 0.3s;
}
.popup .popup-inner.hidden {
	max-height: 0;
}
.popup .success {
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s;
}
.popup .success.visible {
	max-height: 200px;
}
.popup h2 {
	font-size: 1.8rem;
	margin-bottom: 4rem;
}
.popup p {
	font-size: 1.4rem;
	margin-bottom: 5rem;
	line-height: 1.5em;
}
.popup input {
	display: block;
	margin: 0 auto 4rem;
	background-color: transparent;
	border: 0px solid #fff;
	border-bottom: 1px solid #fff;
	padding: 1rem 7rem;
	color: #fff;
	text-align: center;
}
.popup .action-btn {
	padding: 1.5rem 7rem;
	background-color: #c32828;
	display: inline-block;
	cursor: pointer;
}
.popup .action-btn.dl {
	position: relative;
}
.popup .action-btn.dl a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.popup .close-btn {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 2rem;
	height: 2rem;
	background-image: url(src/close.png);
	cursor: pointer;
	transition: all 0.3s;
	border-radius: 2px;
}
.popup .close-btn:hover {
	background-color: #fff;
}

.main-chapter ul {
	padding-left: 2rem;
	margin-bottom: 2rem;
}

.main-chapter li {
	list-style-type: disc;
}

article h3,
article h2 {
	font-size: 1.4rem;
	font-weight: 800;
	margin-top: 1.2rem;
	margin-bottom: 0.9rem;
}

.remade {
	display: flex;
	margin-bottom: 3px;
	cursor: pointer;
	position: relative;
}

.remade.opened-menu {
	background-color: #efefef;
	padding: 0 .5rem;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.remade:hover {
	background-color: #efefef;
}

.str_num {
	display: inline-block;
}

.lighten {
	color: #808080;
}

.static-page ol {
	padding: 0 0 0 1.5rem;
	margin-bottom: 2rem;
}

.static-page ol li {
	list-style-type: decimal;
}

.btn-txt-wrapper {
	position: absolute;
	left: 120%;
	top: 50%;
	transform: translateY(-50%);
	width: 0px;
	text-align: left;
	overflow: hidden;
	transition: all 0.3s;
}

@media screen and (max-width: 1366px) {
	.btn-txt-wrapper {
		left: auto;
		right: 120%;
		text-align: right;
	}
}

.btn-txt-wrapper span {
	width: 100px;
	display: block;
}

.button-icon:hover .btn-txt-wrapper {
	width: 100px;
}

@media screen and (max-width: 768px) {
	.btn-txt-wrapper {
		bottom: 120%;
		top: auto;
		right: 50%;
		transform: translateX(50%);
		text-align: center;
	}
}

.footer-action {
	cursor: pointer;
	transition: all 0.3s;
}

.footer-action:hover {
	color: #fff;
}

.footer-action,
.footer-info {
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
}

.comment-reply-title {
	display: none;
}

.comment-form-cookies-consent {
	display: none;
}

h2.comments-block-title {
	text-align: center;
	font-size: 1.2em !important;
	color: #a8a8a8;
	margin: 4rem 0 2rem;
}

.comments-area {
	padding: 4rem 9rem;
	background-color: #fff;
	box-shadow: 0px 0px 37px -24px #000;
}

@media print {
	.comments-area {
		display: none;
	}
}

@media screen and (max-width: 1000px) {
	.comments-area {
		padding: 4rem;
	}
}

@media screen and (max-width: 768px) {
	.comments-area {
		padding: 3rem;
	}
}

.comment-form {
	/* display: flex; */
	align-items: flex-end;
}

@media screen and (max-width: 500px) {
	.comment-form {
		flex-wrap: wrap;
	}
}

.comment-data {
	display: flex;
	flex-direction: column;
	flex: 0 0 70%;
	/* padding-right: 2rem; */
}
@media screen and (max-width: 500px) {
	.comment-data {
		flex: 100%;
		padding-right: 0;
		margin-bottom: 5px;
	}
}

.comment-data .comment-form-author {
	margin-bottom: 0;
}

.comment-data .comment-form-author input {
	order: 0;
	width: 100%;
	margin-bottom: 0.5rem;
	box-sizing: border-box;
	padding: 1.5rem;
	box-shadow: 1px 3px 26px -13px rgba(0, 0, 0, 0.29) inset;
	border: 0px;
}

.comment-data .comment-form-comment {
	order: 2;
	width: 100%;
	margin-bottom: 0;
}

.comment-data .comment-form-comment textarea {
	width: 100%;
	box-sizing: border-box;
	margin-bottom: -5px;
	padding: 1.5rem;
	box-shadow: 1px 3px 26px -13px rgba(0, 0, 0, 0.29) inset;
	border: 0px;
}

.form-submit {
	margin-bottom: 0;
	/* padding-left: 2rem; */
	flex: 0 0 30%;
}

@media screen and (max-width: 500px) {
	.form-submit {
		flex: 100%;
		padding-left: 0;
		margin-bottom: 5px;
	}
}

.form-submit input[type='submit'] {
	box-sizing: border-box;
	background-color: #3f3f3f;
	width: 100%;
	padding: 1.2rem 2rem 1.2rem 2rem;
	color: #fff;
	font-size: 1.45rem;
	border-radius:  5px;
	line-height: 1.0rem;
	max-width: 10rem;
	margin-top: 1rem;
}

.commentlist {
}

.comment {
	margin-top: 3rem;
}

.comment__header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.comment__name {
	font-weight: 700;
}

.comment__date {
	font-size: 0.8em;
	color: #a2a2a2;
}


.search-results h2 a{
	font-size: 1.2em;
	color: #3f3f3f;;
	text-
}

.search-results p {
	margin-bottom:1rem;
}

.search-form {
	display: flex;
	align-items: center;
	padding: 2rem;
}

.search-form input {
	padding: 1rem;
	border: 0
}

.search-form input[type="submit"] {
	background-color: #3f3f3f;
	color: #efefef;
	padding: 1rem 3rem;
	cursor: pointer;
	border-top-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
}

.search-form input.search-field {
	border-bottom: 1px solid #a2a2a2;
}

.search-icon {
	background-image: url(src/search.png);
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
	flex: 0 0 4rem!important;
	padding: 1rem;
	cursor: pointer;
	/* background-color: red; */
	margin-right:  2rem;
	position: relative;
}

@media screen and (max-width: 1000px) {
	.search-icon {
		position: static;
	}
}

@media screen and (max-width: 768px) {
	.search-icon {
		position: absolute;
		right:0;
		height: 55px;
		width: 50px;
	}
}

.search-wrapper {
	position: absolute;
	right: 100%;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	max-width: 0px;
	overflow: hidden
	
}

@media screen and (max-width: 1000px) {
	.search-wrapper {
		right: 0rem;
		top: 55px;
		transform: translateY(0);
		background-color: #fff
	}
}


@media screen and (max-width: 768px) {
	.search-wrapper {
		right: -2rem;
	}
}

.search-icon.active .search-wrapper {
	max-width: 330px;
}

#dynamicMenu {
	position: absolute;
	bottom: 100%;
	right:0;
	background-color: #efefef;
	padding: 1rem .5rem 0 .5rem;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

#dynamicMenu button {
	border-radius: 40px;
	width: 4rem;
	height: 3rem;
	border: 0px;
	/* margin: 0 .5rem; */
	background-position: center;
	background-repeat: no-repeat;
	background-size: 70%;
	cursor: pointer;
}

#dynamicMenu button.fb {
	background-image: url(src/fb.svg);
}
#dynamicMenu button.copy {
	background-image: url(src/sh.svg);
}
#dynamicMenu button.wa {
	background-image: url(src/wa.svg);
}

#dynamicMenu button.fm {
	background-image: url(src/fm.svg);
}

.copyright {
	vertical-align: super;
	font-size: .8em;
}