/*************************************
 +Wysiwyg editor / Custom styles
*************************************/

/* root */
:root {
  --c-main: #00ffb4;
  --c-black: #000;
  --c-grey-d: #272425;

  /* --hover: all 0.2s ease-in-out; */

  --spacer: 24px;
}


/*************************************
 +Fonts
*************************************/
@font-face{
	font-family: 'Work Sans Regular';
	src:	url('fonts/woff/WorkSans-Regular.woff') format('woff'),
				url('fonts/woff2/WorkSans-Regular.woff2') format('woff2'),
				url('fonts/ttf/WorkSans-Regular.ttf') format('truetype')
}

@font-face{
	font-family: 'Work Sans Medium';
	src:	url('fonts/woff/WorkSans-Medium.woff') format('woff'),
				url('fonts/woff2/WorkSans-Medium.woff2') format('woff2'),
				url('fonts/ttf/WorkSans-Medium.ttf') format('truetype')
}

@font-face{
	font-family: 'Work Sans ExtraLight';
	src:	url('fonts/woff/WorkSans-ExtraLight.woff') format('woff'),
				url('fonts/woff2/WorkSans-ExtraLight.woff2') format('woff2'),
				url('fonts/ttf/WorkSans-ExtraLight.ttf') format('truetype')
}

@font-face{
	font-family: 'Work Sans Light';
	src:	url('fonts/woff/WorkSans-Light.woff') format('woff'),
				url('fonts/woff2/WorkSans-Light.woff2') format('woff2'),
				url('fonts/ttf/WorkSans-Light.ttf') format('truetype')
}

@font-face{
	font-family: 'Work Sans SemiBold';
	src:	url('fonts/woff/WorkSans-SemiBold.woff') format('woff'),
				url('fonts/woff2/WorkSans-SemiBold.woff2') format('woff2'),
				url('fonts/ttf/WorkSans-SemiBold.ttf') format('truetype')
}


/*************************************
 +Body & Html
*************************************/
html.site-html {
  background-color: var(--c-grey-d);
  overflow-x: hidden;
}

body {
  /*font-family: 'Work Sans Regular', sans-serif;*/
  font-family: sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.25rem;
  margin: 0;
  padding: 0;
  overflow-y: auto;
}

  /* only for WYSIWYG editor */
  body#tinymce {
    margin: 0;
    padding: 1px 10px !important;
  }





/*************************************
 +(X)HTML / HTML 5 Containers
*************************************/

p, ul, ol {
  margin: 0 0 var(--spacer) 0;
	padding: 0;
}

ul, ol {
  margin-left: calc(0.6 * var(--spacer));
}

strong, b {
	/*font-family: 'Work Sans Medium', sans-serif;*/
	font-weight: bold;
}

small {
	font-size: smaller
}

hr {
	border: none;
	border-top: 1px dotted;
	margin: 24px 0;
}

img {
	max-width: 100%;
	height: auto;
}

	img.featured-image,
	img.wp-image,
	.multimedia-gallery img {
		max-width: 100%;
		height: auto;
	}

	.nonresponsive-image img {
		width: auto;
	}

	.shadow {
		border: 1px solid;
		width: calc(100% - 6px);
		-webkit-box-shadow: 2px 2px 2px 0px rgba(0,0,0,0.75);
		-moz-box-shadow: 2px 2px 2px 0px rgba(0,0,0,0.75);
		box-shadow: 2px 2px 2px 0px rgba(0,0,0,0.75);
	}


	.siteorigin-widget-tinymce p:last-child {
		margin-bottom: 0;
	}


ul {
	/* margin-left: 12px; */
}

	ul li {
    list-style-position: outside;
    margin: 0 0 0 16px;
		list-style-type: square;
	}



/* ------------- Forms ------------- */


/* ------------- button ------------- */
button, .button {
  display: inline-block;
  background-color: #fff;
  padding: 12px 12px 11px;
  margin: 0 2px 7px 0;
  border: 3px solid #222 !important;
  line-height: 1.4;
  display: inline-block;
  font-size: .875rem;
  text-transform: uppercase;
}

  .button-invert {
    background-color: #000;
    color: #fff;
    border-color: #000;
  }

  .button-green {
		background-color: #00ffb4;
		color: #000;
		border-color: #00ffb4;
	}

  button:hover, .button:hover {
    background-color: #00ffb4;
    color: #222;
    padding: 12px 12px 11px;
    border: 3px solid #222 !important;
  }

	.button-green:hover {
		background-color: #000;
		color: #fff;
		border-color: #000;
	}

	.button-full-width {
		width: 100%;
		text-align: center;
	}



/*************************************
 +Wysiwyg editor / Custom styles
*************************************/
