@import url('https://fonts.googleapis.com/css?family=Dosis:300,500&display=swap');

/**
 * Editor base
 */

.editor-styles-wrapper {
	font: 300 1.3em/1.7 Dosis, "Arial Narrow", sans-serif;
	color: #777;
}

.editor-styles-wrapper p {
	margin: 0 0 1em 0;
}

.editor-styles-wrapper b,
.editor-styles-wrapper strong {
	font-weight: 500;
}

.editor-styles-wrapper em,
.editor-styles-wrapper i {
	font-style: italic;
}

.editor-styles-wrapper ::selection {
	background: #f7941e;
	color: #fff;
}


/**
 * Headings
 */

.editor-styles-wrapper h1,
.editor-styles-wrapper h2 {
	margin: 0 0 0.5em 0;
	font-size: 2em;
	font-weight: 300;
	line-height: 1.3;
}

.editor-styles-wrapper h3,
.editor-styles-wrapper h4,
.editor-styles-wrapper h5,
.editor-styles-wrapper h6 {
	margin: 0 0 0.5em 0;
	font-weight: 300;
}

.editor-styles-wrapper h3 {
	font-size: 1.5em;
}

.editor-styles-wrapper h4 {
	font-size: 1em;
}

.editor-styles-wrapper h5,
.editor-styles-wrapper h6 {
	font-size: 0.83em;
	text-transform: uppercase;
	font-weight: 500;
}


/**
 * Links
 */

.editor-styles-wrapper a {
	color: #f7941e;
	text-decoration: none;
	transition: color 0.2s ease-in-out;
}

.editor-styles-wrapper a:hover,
.editor-styles-wrapper a:focus {
	color: #eb5b04;
}


/**
 * Lists
 */

.editor-styles-wrapper ul,
.editor-styles-wrapper ol {
	margin: 0 0 1em 0;
	padding: 0;
}

.editor-styles-wrapper ul li {
	margin-left: 1.2em;
	list-style: disc outside none;
}

.editor-styles-wrapper ul ul li {
	list-style: circle outside none;
}

.editor-styles-wrapper ol li {
	margin-left: 1.4em;
	list-style: decimal outside none;
}

.editor-styles-wrapper ol ol li {
	list-style: lower-alpha outside none;
}


/**
 * Block layout
 */

.editor-styles-wrapper .wp-block {
	max-width: 1200px;
}

.editor-styles-wrapper .wp-block.alignwide {
	max-width: 1200px;
}

.editor-styles-wrapper .wp-block.alignfull {
	max-width: none;
}


/**
 * Quotes
 */

.editor-styles-wrapper blockquote,
.editor-styles-wrapper .wp-block-quote {
	margin: 0 0 1em 0;
	padding-left: 1em;
	border-left: 2px solid #f7941e;
}

.editor-styles-wrapper blockquote p:last-of-type,
.editor-styles-wrapper .wp-block-quote p:last-of-type {
	margin-bottom: 0;
}

.editor-styles-wrapper .wp-block-pullquote {
	box-sizing: border-box;
	border: 2px solid #f7941e;
	border-right-width: 0;
	border-left-width: 0;
	color: #f7941e;
}

.editor-styles-wrapper .wp-block-pullquote blockquote {
	border: none;
	padding: 0;
	max-width: 60%;
	margin: 0 auto;
}

.editor-styles-wrapper .wp-block-pullquote p {
	margin: 0;
}

.editor-styles-wrapper .wp-block-pullquote.is-style-solid-color {
	color: #fff;
	background-color: #f7941e;
}


/**
 * Media and embeds
 */

.editor-styles-wrapper figure {
	margin-left: 0;
	margin-right: 0;
}

.editor-styles-wrapper embed,
.editor-styles-wrapper iframe,
.editor-styles-wrapper object,
.editor-styles-wrapper video,
.editor-styles-wrapper .wp-block-embed {
	width: 100%;
	max-width: 1000px;
	margin-bottom: 1.5em;
}


/**
 * Separator
 */

.editor-styles-wrapper hr,
.editor-styles-wrapper .wp-block-separator {
	box-sizing: border-box;
	margin: 2em auto;
	width: 100%;
	max-width: 30rem !important;
	height: 0;
	overflow: visible;
	border: 2px solid #f7941e;
	border-width: 0 0 2px;
}

.editor-styles-wrapper .wp-block-separator.is-style-wide {
	width: 100%;
	max-width: 100% !important;
}


/**
 * Tables
 */

.editor-styles-wrapper table {
	width: 100%;
	margin-bottom: 1.5em;
	border-collapse: collapse;
	border-spacing: 0;
	border: 0;
}

.editor-styles-wrapper table th,
.editor-styles-wrapper table td {
	padding: 0 0.4em;
	vertical-align: top;
	text-align: left;
	border: 0;
}

.editor-styles-wrapper table th {
	font-weight: bold;
	background: #bfbbbb;
	color: #fff;
}

.editor-styles-wrapper table:not(.is-style-stripes) tr:nth-child(odd) {
	background: #fefbfb;
}

.editor-styles-wrapper table:not(.is-style-stripes) tr:nth-child(even) {
	background: #f5f2f2;
}


/**
 * Buttons
 */

.editor-styles-wrapper .button,
.editor-styles-wrapper button,
.editor-styles-wrapper input[type="button"],
.editor-styles-wrapper input[type="reset"],
.editor-styles-wrapper input[type="submit"],
.editor-styles-wrapper .wp-block-button__link,
.editor-styles-wrapper .wp-element-button,
.editor-styles-wrapper .wp-block-file__button {
	position: relative;
	padding: 0.3em 2.7em 0.4em 2em;
	background: #f7941e url(images/right-arrow.svg) no-repeat right 1.2em center !important;
	background-size: 0.6em !important;
	background-color: #f7941e !important;
	color: #fff;
	border: 0;
	border-radius: 1.3em;
	transition: background-color 0.2s ease-in-out;
	box-shadow: 0.05em 0.1em 0 #777 !important;
}

.editor-styles-wrapper .button:hover,
.editor-styles-wrapper .button:focus,
.editor-styles-wrapper button:hover,
.editor-styles-wrapper button:focus,
.editor-styles-wrapper input[type="button"]:hover,
.editor-styles-wrapper input[type="reset"]:hover,
.editor-styles-wrapper input[type="submit"]:hover,
.editor-styles-wrapper .wp-block-button__link:hover,
.editor-styles-wrapper .wp-element-button:hover,
.editor-styles-wrapper .wp-block-file__button:hover {
	background-color: #eb5b04 !important;
	color: #fff;
}

.editor-styles-wrapper .wp-block-file__button {
	padding: 0.3rem 1rem !important;
	background-image: none !important;
	font-size: 80%;
}
