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

/* root */
:root {
  --c-main: #00ffb4;
  --c-black: #111;
	--c-grey-l: #eaeaea;
  --c-grey-m: #ccc;
	--c-grey-d: #808080;

  /* --hover: all 0.2s ease-in-out; */
	--spacer: 24px;
	--bs-gutter-x: var(--spacer);
	--radius: calc(1.5 * var(--spacer));

}


/*************************************
 +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')
}

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


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

body {
  font-family: 'Work Sans Medium', sans-serif;
  /* font-family: sans-serif; */
  /* font-size: .875rem; */
	font-size: .9375rem;
  line-height: 1.5rem;
  margin: 0;
  padding: 0;
  overflow-y: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

  /* 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.425 * var(--spacer));
}

	ul li {
    list-style-position: outside;
    margin: 0;
		padding-left: calc(0.25 * var(--spacer));
		list-style-type: none;
	}

	ul li::marker {
		content: '\2192';
	}

blockquote {
  font-size: 1.5rem;
  line-height: 1.375;
}

strong, b {
	font-family: 'Work Sans Bold', 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;
	}





/* (X)HTML / HTML 5 Containers
-----------------------------------------------------------*/
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	padding: 0 0 calc(1 * var(--spacer)) 0;
  margin: 0 0 calc(.25 * var(--spacer)) 0;
	line-height: 1.25rem;
	font-family: 'Work Sans Bold', sans-serif;
}

h1, .h1 {
  font-size: 2.125rem;
	padding: 0 0 calc(1 * var(--spacer)) 0;
	line-height: 1.25;
}

h2, .h2 {
  font-size: 1.325rem;
  line-height: 1.25;
  padding: 0 0 calc(.5 * var(--spacer)) 0;
}

h3, .h3 {
  font-size: 1.0625rem;
  line-height: 1.25;
  padding: 0;
}

h4, .h4 {
	font-size: 1rem;
	line-height: 1.25em;
	margin: 0;
	padding: 0;
}

h5, .h5 {
	font-size: 1rem;
}



table {
	border: none;
	border-collapse: collapse;
	width: 100%;
	caption-side: top;
}

table caption {
	background-color: var(--c-main);
	padding: 7px 0 6px;
	border-top: 1px dotted #000;

	font-family: 'Work Sans SemiBold', sans-serif;
	font-size: 1.2em;
	text-transform: uppercase;
	text-align: center;
	color: #000;
}

td, th {
	border-bottom: 1px dotted #000;
	vertical-align: -webkit-baseline-middle;
	padding: 8px 12px;
}

	td img, th img {
		height: initial;
	}

table tr:first-of-type td,
table tr:first-of-type th {
	border-top: 1px dotted #000;
}

th {
	text-align: left;
	font-family: 'Work Sans SemiBold', sans-serif;
}


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


/* ------------- button ------------- */
button, .button {
  display: inline-block;
  background-color: transparent;
  padding: calc(.325 * var(--spacer)) calc(.625 * var(--spacer));
  margin: 0 2px 7px 0;
  /* min-width: 100px; */
  text-align: left !important;
  border: 1px solid var(--c-black) !important;
  line-height: 1.5;
  display: inline-block;
	color: var(--c-black);
  /* font-size: .875rem; */
  /* text-transform: uppercase; */
}

	button[type="submit"] {
		min-width: 144px;
		text-align: center !important;
	}

  .button-invert {
    background-color: var(--c-black);
    color: #fff;
    border-color: var(--c-black);
  }

  .button-green {
		background-color: #00ffb4;
		color: var(--c-black);
		border-color: #00ffb4;
	}

  button:hover, .button:hover {
    background-color: #00ffb4;
    color: var(--c-black)
    border: 1px solid var(--c-black) !important;
  }

	.button-green:hover {
		background-color: var(--c-black);
		color: #fff;
		border-color: var(--c-black);
	}

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



/* ------------- Images / Figure ------------- */
figcaption {
  text-align: left
}

  img.non-responsive {
    width: auto !important;
  }

  figure {
    position: relative;
    width: 100%;
  }

    figure img {
      width: 100%;
    }

    figure.r3x2 img,
    figure.r4x3 img,
		figure.r7x6 img,
    figure.r16x9 img,
    figure.r16x10 img,
    figure.r1x1 img,
    figure.r21x9 img {
      position: absolute;
      height: 100% !important;
      top: 0;
      left: 0;
      object-fit: cover;
      object-position: center;
    }

    figure.wp-image {
      margin-bottom: calc(1 * var(--spacer) );
    }

    .r3x2 { aspect-ratio: 3 / 2;  }
    .r4x3 { aspect-ratio: 4 / 3;  }
		.r7x6 { aspect-ratio: 7 / 6;  }
    .r16x9 { aspect-ratio: 16 / 9; /*padding-top: 56.25%;*/ }
    .r16x10 { aspect-ratio: 16 / 10; /*padding-top: 56.25%;*/ }
    .r21x9 { aspect-ratio: 2.39 / 1;  }
    .r1x1 { aspect-ratio: 1 / 1;}
		/* .r1x1 { padding-top: 100%; } */

    .aligncenter { }
    .alignright { }
    .alignleft { }



/* Custom / Grid & Flex & Bootstrap
-----------------------------------------------------------*/
.widget {

}

.container, .row {

}

.container {

}

.container-fullwidth {
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  overflow: hidden;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7,
.col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4,
.col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {

}

.row {
  --bs-gutter-x: var(--spacer) !important;
}

.row>* {

}
