@charset "UTF-8";
/* Top-level Styling */
* {
	margin:0;
	padding:0; 
	-webkit-margin-before: 0; 
	-webkit-margin-after: 0;
	-webkit-padding-start: 0;
	-webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
	}

#trash{
	display: none;
}

body{
	font-family: 'Work Sans', sans-serif;
	background-color:#e6e6e6;
	margin: 0 auto;
		}
		.container{
			width: 97%;
			height: 300px;
			margin-left:20px;
			margin-right:20px;
		}
		
		.container2{
			display: block;
			width: 97%;
			position: relative;
			margin-left:40px;
		}

		ul.tabs{
			margin: 0px;
			padding: 0px;
			list-style: none;
			font-style: bold;
		}
		ul.tabs li{
			background: none;
			color: #222;
			display: inline-block;
			padding: 10px 15px;
			cursor: pointer;
		}

		ul.tabs li.current{
			background: #ededed;
			color: #222;
		}

		.tab-content{
			display: none;
			background: #ededed;
			padding: 15px;
		}

		.tab-content.current{
			display: inherit;
}

.left {
    float: left;
    width: 40%;
}

.right {
    margin-left: 40%;
}

fieldset { 
    display: block;
	margin: 15px 2px 0 2px;
    padding-bottom: 0.225em;
    padding-left: 0.75em;
    padding-right: 0.75em;
    border: 2px groove (internal value);
	font-weight: 300;
}

#wrapper {
	max-width: 1280px;
	height: 90%;
	background: #fff;
	margin: 25px auto 0;
	padding: 20px;
}

/* Div Layout Styling */

#viewerBox {
	position: relative;
	margin: 0 auto;
	padding:10px 0;
	height: auto;
	width: 100%;
	min-width: 500px;
}

.viewerForm {
	display: block;
	margin: 20px 0 0 0;
	width: 100%;
}

/* Text Styling for h2, p, a */
hx {
	font-size: 1.5em;
	font-weight: 500;
	letter-spacing: -.02em;
	color: #333333;
	font-style:normal;
}

.thin {
	font-weight:200;
}

.center-align {
	text-align: center;
}

.right-align {
	text-align: right;
}

h2 {
	font-weight: 400;
	font-size: 1.3em;
	letter-spacing: -.05em;
	color: #333333;
	font-style:normal;
}

hp {
	display: block;
	width: 100%;
	margin: 20px 0 0 0;
	line-height: 1.3em;
	color: #333333;
	font-style: normal;
	font-weight: 300;
}

hcpy {
	display: block;
	margin: 10px 0 15px 0;
	font-family: 'News Cycle', sans-serif;
	line-height: 1em;
	font-size: 0.9em;
	font-weight: 400;
}

ol {
	margin-left: 10px;
	padding: 10px;
}

ol li {
    padding: 2px;
    margin-left: 15px;
	font-weight: 300;
	font-size: 1em;
	letter-spacing: -.03em;
}

.switch-title {
  margin-bottom: 6px;
}

.switch-field {
  padding: 10px;
  overflow: hidden;
}

.switch-field input {
  display: none;
}

.switch-field label {
  float: left;
}

.switch-field label {
  display: inline-block;
  width: 60px;
  background-color: #e4e4e4;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-family: 'News Cycle', sans-serif;
  font-weight: bold;
  text-align: center;
  text-shadow: none;
  padding: 10px 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition:    all 0.1s ease-in-out;
  -ms-transition:     all 0.1s ease-in-out;
  -o-transition:      all 0.1s ease-in-out;
  transition:         all 0.1s ease-in-out;
}

.switch-field label:hover {
    cursor: pointer;
}

.switch-field input:checked + label {
  background-color: #FE7B1A;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.switch-field label:first-of-type {
  border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
  border-radius: 0 4px 4px 0;
}


#cf {
  position:relative;
  height:500px;
  width:500px;
  margin:0 0;
}

#cf img {
  position:absolute;
  left:0;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

#cf img.top:hover {
  opacity:0;
}









/* -------------------------------- 
Main components for slider
-------------------------------- */

.cd-image-container {
  position: relative;
  width: 90%;
  max-width: 500px;
}
.cd-image-container img {
  display: block;
}

.cd-image-label {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #ffffff;
  padding: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0.3s 0.7s;
  -moz-transition: -moz-transform 0.3s 0.7s, opacity 0.3s 0.7s;
  transition: transform 0.3s 0.7s, opacity 0.3s 0.7s;
}
.cd-image-label.is-hidden {
  visibility: hidden;
}
.is-visible .cd-image-label {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.cd-resize-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cd-resize-img img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
}
.cd-resize-img .cd-image-label {
  right: auto;
  left: 0;
}
.is-visible .cd-resize-img {
  width: 50%;
  /* bounce in animation of the modified image */
  -webkit-animation: cd-bounce-in 0.7s;
  -moz-animation: cd-bounce-in 0.7s;
  animation: cd-bounce-in 0.7s;
}

.cd-handle {
  position: absolute;
  height: 44px;
  width: 44px;
  /* center the element */
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border-radius: 50%;
  background: #dc717d url("../../assets/icons/cd-arrows.svg") no-repeat center center;
  cursor: move;
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0) scale(0);
  -moz-transform: translate3d(0, 0, 0) scale(0);
  -ms-transform: translate3d(0, 0, 0) scale(0);
  -o-transform: translate3d(0, 0, 0) scale(0);
  transform: translate3d(0, 0, 0) scale(0);
}
.cd-handle.draggable {
  /* change background color when element is active */
  background-color: #445b7c;
}
.is-visible .cd-handle {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  -ms-transform: translate3d(0, 0, 0) scale(1);
  -o-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0s 0.7s;
  -moz-transition: -moz-transform 0.3s 0.7s, opacity 0s 0.7s;
  transition: transform 0.3s 0.7s, opacity 0s 0.7s;
}