/**
 * Resets
 */


* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
    margin-left: auto /*!content_center*/;
	margin-right: auto /*!content_center*/;
    
}

::-moz-selection {
	background-color: #09f;
	color: #fff;
} 

::selection {
	background-color: #09f;
	color: #fff;
}

:focus {
	outline: 0;
}

customhtml > * {
	position: relative;
    z-index: 10;
}


/**
 * Global
 */

body,
html {
	min-height: 100vh;
	margin: 0px;
	padding: 0px;

}

html {
	position: relative;
}

body {
	background: #fff;
	color: #000;
	
    
}

a:active {
	opacity: 0.7;
    transition: background-color 0.5s ease;

}

/**
 * Backdrop
 */

#backdrop {
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	max-width: 100%;
	z-index: 1;
}

/**
 * Container
 */

main {
	background: #fff;
	clear: both;
	overflow: hidden;
	position: absolute;
	max-width: 100%;
	width: 100%;
	z-index: 2;

	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

main > div {
	-moz-flex: 1 0 auto;
	-webkit-flex: 1 0 auto;
	flex: 1 0 auto;
	max-width: 1000px;
    min-height: 100vw;
    width: 100%;
    border-left: 0.0px solid #fff;
    border-right: 0.0px solid #fff;
	margin-left: auto /*!content_center*/;
	margin-right: auto /*!content_center*/;
}


.subpage_overlay {
	display: block;
	pointer-events: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

body.homepage .subpage_overlay {
	display: none;
    
}


/**
 * Content
 */

i, em {
	font-style: italic;
}

b, strong {
	font-weight: bold;
}

ul, ol {
	margin: 0;
	padding: 0 0 0 1em;
}

sup {
	top: -0.4em;
	vertical-align: baseline;
	position: relative;
}

sub {
	top: 0.3em;
	vertical-align: baseline;
	position: relative;
}


.slideshow-nav { 
	margin-bottom: 0.5em; 
}

img {
	border: none;
	padding: 0;  
}

blockquote {
	margin: 0;
	padding: 0 0 0 2em;
}

hr {
	background: rgba(127, 127, 127, 0.2);
	border: 0;
	height: 0.08em;
	display: block;
}

.bodycopy {
	display: flex;

}

.container {
	min-height: 100%;
}

.content img {
	float: none;
	margin-bottom: 0.1em;
}

.clear:after {
	content: "";
	display: table;
	clear: both;
}

.loading[data-loading] {
	display: none;
	position: fixed;
	top: 8px; left: 8px;
	z-index: 100;
}
.pill-btn {
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom:28px;
  display:inline-flex;
  align-items:center;
  background: #f1f1f1;
  color: #000;
  padding:1rem;
  border-radius: 50px;
  border:0px solid #000;
  font-weight:500;
  font-size:21px;
  cursor:pointer;
    letter-spacing: 0.05rem;

  transition:
    transform .16s cubic-bezier(.2,.9,.2,1),
    box-shadow .16s ease,
    opacity .12s ease;
}

/* Icon styling */
.pill-btn svg {
  width:18px;
  height:18px;
  display:block;
  flex-shrink:0;
  color:rgba(255,255,255,0.95);
}

/* Hover / focus states */
.pill-btn:hover,
.pill-btn:focus{
  transform:translateX(-50%) translateY(-4px) scale(1.01);
  outline: none;
  background: #FF5652;
  color: #fff;
  padding:1rem;
  border-radius: 50px;
  border:0px solid #FF5652;
}

/* Active/pressed state */
.pill-btn:active {
  transform:translateX(-50%) translateY(0) scale(.995);
  box-shadow: 0 6px 16px rgba(37,117,252,0.14);
}

/* Responsive tweaks */
@media (max-width:420px){
  .pill-btn {
    bottom:18px;
    padding:12px 18px;
    font-size:15px;
  }
}
/**
 * Editor styles
 */

[data-css-presets="true"] main {
	background-color: transparent/*!content_center*/;
	text-align: left /*!text_left*/;
	min-height: 100vh /*!content_stretch*/;
	-webkit-align-items: flex-start /*!vertical_top*/;
	align-items: flex-start;
    margin-left: auto /*!content_center*/;
	margin-right: auto /*!content_center*/;
    
}

[data-css-presets="true"] .content_padded {

    margin-bottom: -1em;
    margin-top: 3rem;
    padding-left: 5%;
    padding-right: 5%;
    

}

[data-css-presets="true"] .content_width {
	margin-left: auto /*!content_center*/;
	margin-right: auto /*!content_center*/;
}

[data-css-presets="true"] #backdrop {
	width: 100% /*!background_cover*/;
}

[data-predefined-style="true"] main {
	font-size: 19.5px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.85);
	font-family: Charter, Georgia, Georgia, serif, Georgia, Social /*!System*/;
	font-style: normal;
	line-height: 1.5;
    letter-spacing: 0.02rem;
}

[data-predefined-style="true"] main a {
	color: rgba(0, 0, 0, 0.85);
    text-decoration: none;

}

[data-predefined-style="true"] main a:hover {
    border-bottom: 0.08em solid rgba(198, 198, 198, 1);
            transition: opacity 0.2s ease-in-out,
                          color 0.3s ease-in-out;
         opacity: 0.8;

}

main a.image-link,
main a.icon-link,
main a.image-link:hover,
main a.icon-link:hover {
	border-bottom: 0;
	padding-bottom: 0;
}

[data-predefined-style="true"] h1 {
	font-family: "inter", Helvetica Neue, Helvetica, sans-serif, "Helvetica Roman", Social /*!System*/;
	font-style: normal;
	font-weight: 500;
    font-size: 23pt;
	padding: 0;
	margin: 0;
	line-height: 1.2;
	color: rgba(0, 0, 0, 0.85);
	text-rendering: optimizeLegibility;
    letter-spacing: -0.02rem;
}

[data-predefined-style="true"] h1 a {
	color: rgba(0, 0, 0, 0.85);
}

[data-predefined-style="true"] h2 {
    	font-family: "inter", Helvetica Neue, Helvetica, sans-serif, "Helvetica Roman", Social /*!System*/;
	font-style: normal;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.85);
	font-size: 21px;
	line-height: 1.3;
    	padding: 0;
	margin: 0;
	text-rendering: optimizeLegibility;
        letter-spacing: 0.00rem;

}

[data-predefined-style="true"] h2 a {
	color: rgba(0, 0, 0, 0.85);
}

[data-predefined-style="true"] small {
	display: inline-block;
	font-size: 16px;
	line-height: 1.4;
	font-family: "inter", Helvetica Neue, Helvetica, sans-serif, "Helvetica Roman", Social /*!System*/;
	font-style: normal;
	font-weight: 500;
	color: rgb(161, 161, 161);
    margin-bottom: 1rem ;
	letter-spacing: 0.02rem;
}
[data-predefined-style="true"] small a {
	color: rgb(0, 0, 0);
	border-bottom-width: 0.0em;

}

[data-predefined-style="true"] h4 {
	max-width: 600px;
    	font-family: "charter", "georgia", "Times New Roman", "Times New Roman", Times, serif, "Times New Roman", Social /*!System*/;
	font-style: normal;
	font-weight: 400;
    font-size: 16pt;
	line-height: 1.4;
	color: rgba(0, 0, 0, 0.85);
	text-rendering: optimizeLegibility;
    letter-spacing: 0.01rem;

}
text {
	position: fixed;
	max-width: 600px;

}
[data-predefined-style="true"] h5 {
	max-width: 600px;
    font-size: 19.5px;
	font-weight: 400;
    letter-spacing: -0.02rem;
}


[data-css-presets="true"] .subpage_overlay {
	background-color: initital/*!subpage_overlay*/;
}
/**
 * Backstage Icon
 */

#backstage_icon {
	display: block;
}

/**
 * Breakpoints
 */

[data-css-presets="true"].mobile #plugin,
[data-css-presets="true"].mobile #backdrop,
.mobile #backdrop,
.mobile #plugin {
	position: relative;
	height: 50vh;
	min-width: 100%;
	width: calc(100% - 80rem) /*!right_fit*/;
	top: 0;
	bottom: auto;
	left: 0 /*!right_fit*/;
}

.mobile main,
[data-css-presets="true"].mobile main {
	position: relative;
	min-height: 10px;
	max-width: 100%;
	width: 100%;
}

.mobile main.content_width,
[data-css-presets="true"].mobile main.content_width {
	max-width: 100%;
	width: 100%;
}
