

/* Morph Button: Default Styles */

.morph-button {
	position: relative;
	display: block;
	margin: 0 auto;
}

.morph-button > button {
	position: relative;
	border: none;
	background-color: #e85657;
	color: #f9f6e5;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.morph-button.open > button {
	pointer-events: none;
}

.morph-content {
	pointer-events: none;
}

.morph-button.open .morph-content {
	pointer-events: auto;
}

/* Common styles for overlay and modal type (fixed morph) */
.morph-button-fixed,
.morph-button-fixed .morph-content {
	width: 300px;
	height: 80px;
}

.morph-button-fixed > button {
	z-index: 1000;
	width: 100%;
	height: 100%;
	-webkit-transition: opacity 0.1s 0.5s;
	transition: opacity 0.1s 0.5s;
	cursor: pointer;
}

.morph-button-fixed.open > button {
	opacity: 0;
	-webkit-transition: opacity 0.1s;
	transition: opacity 0.1s;
}

.morph-button-fixed .morph-content {
	position: absolute;
	z-index: 900;
	opacity: 0;
	right: 0px !important;
	top: 0px !important;
	-webkit-transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
	transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
}

.morph-button-fixed.open .morph-content {
	opacity: 1;
}

.morph-button-fixed .morph-content > div {
	visibility: hidden;
	height: 0;
	opacity: 0;
	-webkit-transition: opacity 0.1s, visibility 0s 0.1s, height 0s 0.1s;
	transition: opacity 0.1s, visibility 0s 0.1s, height 0s 0.1s;
}

.morph-button-fixed.open .morph-content > div {
	visibility: visible;
	height: auto;
	opacity: 1;
	-webkit-transition: opacity 0.3s 0.5s;
	transition: opacity 0.3s 0.5s;
}

.morph-button-fixed.active > button {
	z-index: 2000;
}

.morph-button-fixed.active .morph-content {
	z-index: 1900;
}

/* Transitions for overlay button and sidebar button */
.morph-button-overlay .morph-content,
.morph-button-sidebar .morph-content {
	-webkit-transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
	transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
}

.morph-button-overlay.open .morph-content,
.morph-button-sidebar.open .morph-content {
	-webkit-transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
	transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
}

/* Morph Button Style: Overlay */
.morph-button.morph-button-overlay {
	margin: 50px auto;
}

.morph-button-overlay .morph-content {
	overflow: hidden;
	background: #e85657;
}

.morph-button-overlay.open .morph-content {
	top: 0 !important;
	left: 0 !important;
	width: 100%;
	height: 100%;
}

/* Morph Button Style: Modal */
.morph-button-modal::before {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 800;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
	pointer-events: none;
}

.morph-button-modal.open::before {
	opacity: 1;
	pointer-events: auto;
}

.morph-button-modal.active::before {
	z-index: 1800;
}

.morph-button-modal .morph-content {
	overflow: hidden;
	-webkit-transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
	transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
}

.morph-button-modal.open .morph-content {
	top: 50% !important;
	left: 50% !important;
	margin: -210px 0 0 -300px;
	width: 600px;
	height: 420px;
	-webkit-transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
	transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
}


/* Morph Button Style: In the content flow */
.morph-button-inflow {
	overflow: hidden;
	max-width: 100%;
	height: 70px;
}

.morph-button-inflow > button {
	width: 100%;
	line-height: 70px;
}

.morph-button-inflow .morph-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.morph-button-inflow .morph-content .morph-clone {
	padding: 0;
	font-weight: 700;
	font-size: 1.5em;
	line-height: 70px;
}
.white {
	color: #fff !important;
}

/* Colors and sizes for individual in flow buttons */

/* Morph Button Style: Sidebar */
.morph-button-sidebar,
.morph-button-sidebar .morph-content {
	width: 160px;
	height: 40px;
}

.morph-button-sidebar {
	/* position: fixed;
	bottom: 50px;
	left: 50px; */
	float:right;
}

.morph-button-sidebar > button {
	font-size: 1.2em;
}

.morph-button-sidebar .morph-content {
	background: #e85657;
}

.morph-button-sidebar.open .morph-content {
	top: 0 !important;
	/*left: 1048px !important;*/
	width: 160px;
	height: 100vh;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
}

/* Let's add some nice easing for all cases */
.morph-button .morph-content,
.morph-button.open .morph-content,
.morph-button-modal-4 .morph-clone {
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

/* Helper classes */
.noscroll {
	overflow: hidden;
}

.morph-button-overlay.scroll .morph-content {
	overflow-y: scroll;
}

.morph-button-sidebar.scroll .morph-content {
	overflow: auto;
}

/* No JS fallback: let's hide the button and show the content */
.no-js .morph-button > button {
	display: none;
}

.no-js .morph-button {
	margin: 10px 0;
	float: none;
}

.no-js .morph-button,
.no-js .morph-button .morph-content,
.no-js .morph-button .morph-content > div {
	position: relative;
	width: auto;
	height: auto;
	opacity: 1;
	visibility: visible;
	top: auto;
	left: auto;
	-webkit-transform: none;
	transform: none;
	pointer-events: auto;
}

.no-js .morph-button .morph-content .icon-close {
	display: none;
}

.no-js .morph-button-sidebar {
	width: 300px;
	position: fixed;
	top: 0;
	left: 0;
	margin: 0;
	height: 100%;
	background: #e85657;
	overflow: auto;
}

.no-transition {
	-webkit-transition: none !important;
	transition: none !important;
}

/* Media Queries */

@media screen and (max-width: 600px) {
	.morph-button-modal.open .morph-content {
		top: 0% !important;
		left: 0% !important;
		margin: 0;
		width: 100%;
		height: 100%;
		overflow-y: scroll;
		-webkit-transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
		transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
	}
}

@media screen and (max-width: 400px) {
	.morph-button-fixed,
	.morph-button-fixed .morph-content {
		width: 200px;
		height: 80px;
	}

	.morph-button-fixed > button {
		font-size: 75%;
	}

	.morph-button-sidebar > button {
		font-size: 1.6em;
	}

	.morph-button-inflow .morph-content .morph-clone {
		font-size: 0.9em;
	}

	.morph-button-sidebar,
	.morph-button-sidebar .morph-content {
		width: 100% !important;
		height: 60px !important;
	}

	.morph-button-sidebar {
		bottom: 0px;
		left: 0px;
	}

	.morph-button-sidebar.open .morph-content {
		height: 100% !important;
	}
}

.og-grid {
	list-style: none;
	padding: 20px 0;
	margin: 0 auto;
	text-align: center;
	width: 90%;
}

.og-grid li {
	display: inline-block;
	margin: 10px 1% 0 0;
	vertical-align: top;
	width: 24%;
}
.og-grid li:nth-child(4n) {
    margin-right: 0;
}

.og-grid li > a,
.og-grid li > a img {
	border: none;
	outline: none;
	display: block;
	position: relative;
	width: 100%;
}

.og-grid li.og-expanded > a::after {
	top: auto;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-bottom-color: #ddd;
	border-width: 15px;
	left: 50%;
	margin: -20px 0 0 -15px;
}

.og-expander {
	position: absolute;
	background: #ddd;
	top: auto;
	left: 0;
	width: 100%;
	margin-top: 10px;
	text-align: left;
	height: 0;
	overflow: hidden;
}

.og-expander-inner {
	padding: 50px 30px;
	height: 100%;
}

.og-close {
	position: absolute;
	width: 40px;
	height: 40px;
	top: 20px;
	right: 20px;
	cursor: pointer;
}

.og-close::before,
.og-close::after {
	content: '';
	position: absolute;
	width: 100%;
	top: 50%;
	height: 1px;
	background: #888;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

.og-close::after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.og-close:hover::before,
.og-close:hover::after {
	background: #333;
}

.og-fullimg,
.og-details {
	width: 50%;
	float: left;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.og-details {
	padding: 0 40px 0 20px;
}

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

.og-fullimg img {
	display: inline-block;
	max-height: 100%;
	max-width: 100%;
}

.og-details h3 {
	font-weight: 300;
	font-size: 52px;
	padding: 40px 0 10px;
	margin-bottom: 10px;
}

.og-details p {
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: #999;
}

.og-details a {
	font-weight: 700;
	font-size: 16px;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 10px 20px;
	border: 3px solid #333;
	display: inline-block;
	margin: 30px 0 0;
	outline: none;
}

.og-details a::before {
	content: '\2192';
	display: inline-block;
	margin-right: 10px;
}

.og-details a:hover {
	border-color: #999;
	color: #999;
}

.og-loading {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #ddd;
	box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ccc;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	-webkit-animation: loader 0.5s infinite ease-in-out both;
	-moz-animation: loader 0.5s infinite ease-in-out both;
	animation: loader 0.5s infinite ease-in-out both;
}

@-webkit-keyframes loader {
	0% { background: #ddd; }
	33% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd; }
	66% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc; }
}

@-moz-keyframes loader {
	0% { background: #ddd; }
	33% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd; }
	66% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc; }
}

@keyframes loader {
	0% { background: #ddd; }
	33% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd; }
	66% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc; }
}

@media screen and (max-width: 830px) {

	.og-expander h3 { font-size: 32px; }
	.og-expander p { font-size: 13px; }
	.og-expander a { font-size: 12px; }

}

@media screen and (max-width: 650px) {

	.og-fullimg { display: none; }
	.og-details { float: none; width: 100%; }

}

/* loder*/
.pageload-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	visibility: hidden;
	z-index: 9999;
}

.pageload-overlay.show {
	visibility: visible;
}

.pageload-overlay svg {
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}

.pageload-overlay svg path {
	fill: #fff;
}

.pageload-overlay::after,
.pageload-overlay::before {
	content: '';
	position: fixed;
	width: 20px;
	height: 20px;
	top: 50%;
	left: 50%;
	margin: -10px 0 0 -10px;
	border-radius: 50%;
	visibility: hidden;
	opacity: 0;
	z-index: 1000;
	-webkit-transition: opacity 0.15s, visibility 0s 0.15s;
	transition: opacity 0.15s, visibility 0s 0.15s;
}

.pageload-overlay::after {
	background: #6cc88a;
	-webkit-transform: translateX(-20px);
	transform: translateX(-20px);
	-webkit-animation: moveRight 0.6s linear infinite alternate;
	animation: moveRight 0.6s linear infinite alternate;
}

.pageload-overlay::before {
	background: #4fc3f7;
	-webkit-transform: translateX(20px);
	transform: translateX(20px);
	-webkit-animation: moveLeft 0.6s linear infinite alternate;
	animation: moveLeft 0.6s linear infinite alternate;
}

@-webkit-keyframes moveRight {
	to { -webkit-transform: translateX(20px); }
}

@keyframes moveRight {
	to { transform: translateX(20px); }
}

@-webkit-keyframes moveLeft {
	to { -webkit-transform: translateX(-20px); }
}

@keyframes moveLeft {
	to { transform: translateX(-20px); }
}

.pageload-loading.pageload-overlay::after,
.pageload-loading.pageload-overlay::before {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}



/* ********************Formi Add Form Menu *********************** */
.formi-add-form-menu {
    float: left;
    padding-left: 10px;
    width: 95%;
}
.menu-add-form li {
    display: inline-block;
    margin: 0;
}

.menu-add-form > ul > li > a {
    color: #fff;
    font-size: 15px;
    outline: medium none;
    padding: 10px;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
}
.menu-add-form {
    float: none;
    padding-top: 10px;
    text-align: center;
}
/* ********************edit field modal box css start *********************** */
.formi-modal {
    left: 0;
    max-width: 500px;
    min-width: 320px;
    padding:0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9;
    /*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);*/
    box-shadow: -60px 0 60px -90px #000000, 60px 0 60px -90px #000000;
    background: #fff;
    overflow-y: auto;
}
.formi-modal .close-btn,
section.container_sub .close-btn {
    background: #0080ff none repeat scroll 0 0;
    color: #ffffff;
    font-weight: bold;
    padding: 6px 10px 8px 11px;
    position: absolute;
    right: 0;
    text-align: center;
    text-decoration: none;
}
.formi-modal-content {
    padding-left: 15px;
    padding-right: 15px;
}
.formi-modal-content > h3 {
    margin: 0;
    padding: 15px 0;
}

/* ********************edit field modal box css end *********************** */

@media screen and (max-width: 46.0625em) {
	.column {
		width: 100%;
		min-width: auto;
		min-height: auto;
		padding: 2em;
		text-align: center;
	}

	.column p {
		font-size: 1.5em;
	}

	.column:nth-child(2) {
		text-align: center;
		box-shadow: 0 -1px 0 rgba(0,0,0,0.1);
	}
}

@media screen and (max-width: 25em) {

	.codrops-header {
		font-size: 80%;
	}

	.codrops-top {
		font-size: 120%;
	}

	.codrops-icon span {
		display: none;
	}

}



.navigation-checkbox {
  display: none;
}

.navigation-toggle {
  width: 40px;
  height: 40px;
  display: block;
  position: relative;
  cursor: pointer;
}

.navigation-toggle-label {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: white;
  text-align: center;
  display: block;
  text-transform: uppercase;
  position: relative;
  bottom: -20px;
}

.navigation-toggle-icon {
  border-bottom: 6px solid white;
  padding-top: 17px;
  display: block;
}

.navigation-toggle-icon:before,
.navigation-toggle-icon:after {
  border-top: 6px solid white;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
}

.navigation-toggle-icon:before {
  top: 4px;
}

.navigation-toggle-icon:after {
  bottom: 4px;
}

/*
 * This is where all the animation happens
 */
.navigation-toggle-icon,
.navigation-toggle-icon:before,
.navigation-toggle-icon:after {
  -webkit-transition-property: -webkit-transform, border-color;
  -moz-transition-property: -moz-transform, border-color;
  transition-property: transform, border-color;
  -webkit-transition-duration: 0.25s;
  -moz-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-timing-function: cubic-bezier(0.5, -0.5, 0.5, 1.5);
  -moz-transition-timing-function: cubic-bezier(0.5, -0.5, 0.5, 1.5);
  transition-timing-function: cubic-bezier(0.5, -0.5, 0.5, 1.5);
}

.navigation-toggle-icon {
  -webkit-transition-delay: 0.125s;
  -moz-transition-delay: 0.125s;
  transition-delay: 0.125s;
}

.navigation-toggle-icon:before,
.navigation-toggle-icon:after {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
}

.st-menu-open .navigation-toggle .navigation-toggle-icon {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.st-menu-open .navigation-toggle .navigation-toggle-icon:before,
.st-menu-open .navigation-toggle .navigation-toggle-icon:after {
  -webkit-transition-delay: 0.125s;
  -moz-transition-delay: 0.125s;
  transition-delay: 0.125s;
}
.st-menu-open .navigation-toggle .navigation-toggle-icon:before {
  -webkit-transform: translateY(13px) rotate(135deg);
  -moz-transform: translateY(13px) rotate(135deg);
  -ms-transform: translateY(13px) rotate(135deg);
  -o-transform: translateY(13px) rotate(135deg);
  transform: translateY(13px) rotate(135deg);
}
.st-menu-open .navigation-toggle .navigation-toggle-icon {
  border-color: transparent;
}
.st-menu-open .navigation-toggle .navigation-toggle-icon:after {
  -webkit-transform: translateY(-13px) rotate(-135deg);
  -moz-transform: translateY(-13px) rotate(-135deg);
  -ms-transform: translateY(-13px) rotate(-135deg);
  -o-transform: translateY(-13px) rotate(-135deg);
  transform: translateY(-13px) rotate(-135deg);
}
.navigation-toggle {
  margin: 0 auto;
}

.navigation-bar {
  background: #0080ff;
  display: block;
  height: 80px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

/* ************************ save button css ******************* */
.progress-button {
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
  	transition: transform 0.2s, -webkit-transform 0.2s;
    background: #6cc88a none repeat scroll 0 0;
    border: medium none;
    color: #ffffff;
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1px;
    outline: medium none;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-transform: capitalize;
    width: 150px;
    line-height: 40px;
    margin: 0;
}
.progress-button[disabled] {
  cursor: not-allowed;
}
.progress-button[disabled].state-loading {
  cursor: default;
}
.progress-button .content {
  position: relative;
  display: block;
}
.progress-button .content::before, .progress-button .content::after {
  position: absolute;
  right: 20px;
  color: #0e7138;
  font-family: "icomoon";
  opacity: 0;
  -webkit-transition: opacity 0.3s 0.3s;
  transition: opacity 0.3s 0.3s;
}
.progress-button .content::before {
  content: "success";
}
.progress-button .content::after {
  content: "error";
}
.progress-button.state-success .content::before, .progress-button.state-error .content::after {
  opacity: 1;
}
.progress-button .progress {
  background: #148544;
}
.progress-button .progress-inner {
  position: absolute;
  left: 0;
  background: #0e7138;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.progress-button .content {
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}
.progress-button .content::before, .progress-button .content::after {
  top: 100%;
  right: auto;
  left: 50%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.progress-button.state-loading {
  -webkit-transform: scaleY(0.3);
          transform: scaleY(0.3);
}
.progress-button.state-loading .content {
  opacity: 0;
}
.progress-button.state-success .content, .progress-button.state-error .content {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.state-loading .progress-inner {
  opacity: 1;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}


/* ********************** setting css ****************** */
section.container_sub {
    background: #fff none repeat scroll 0 0;
    display: none;
    left: 0;
    position: absolute;
    top: 80px;
    width: 500px;
    padding: 15px;
    box-shadow: -60px 0px 60px -90px #000000, 60px 0px 60px -90px #000000;
    overflow-y:auto;
}
section.container_sub.active {
    display: block;
}

div#loader_sub.pageload-overlay.show.pageload-loading {
	position: absolute;
}
div#loader_sub.pageload-overlay {
	position: absolute;
}

div#loader_sub.pageload-overlay::after, div#loader_sub.pageload-overlay::before {
	position: absolute;
	top: 30%;
}
/* ********************** dashboard Style ****************** */
section#dashboard.container {
	padding: 15px;
}

/* ********************** Accordian Style :) ****************** */
.transition, .acc-content, .content_sub ul li i:before, .content_sub ul li i:after {
  transition: all 0.25s ease-in-out;
}

.content_sub .flipIn, .content_sub h1, .content_sub ul li {
  animation: flipdown1 0.5s ease both;
}

.content_sub .no-select, .content_sub h2 {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


.content_sub h1, .content_sub h2 {
  color: #ff6873;
}

.content_sub h1 {
  text-transform: uppercase;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 3px;
  font-weight: 100;
}

.content_sub h2 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 300;
  letter-spacing: 1px;
  display: block;
  background-color: #fefffa;
  margin: 0;
  cursor: pointer;
}

.content_sub .acc-content {
  color: rgba(48, 69, 92, 0.8);
  font-size: 17px;
  line-height: 26px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
}

.content_sub ul {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
}
.content_sub ul li {
  position: relative;
  padding: 10px 5px;
  margin: 0;
  border-top: 1px dotted #dce7eb;
}
.content_sub ul li:nth-of-type(1) {
  animation-delay: 0.5s;
}
.content_sub ul li:nth-of-type(2) {
  animation-delay: 0.75s;
}
.content_sub ul li:nth-of-type(3) {
  animation-delay: 1s;
}
.content_sub ul li:last-of-type {
  padding-bottom: 0;
}
.content_sub ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 12px;
  right: 0;
}
.content_sub ul li i:before, .content_sub ul li i:after {
  content: "";
  position: absolute;
  background-color: #ff6873;
  width: 3px;
  height: 9px;
}
.content_sub ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
.content_sub ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
.content_sub ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
.content_sub ul li input[type=checkbox]:checked ~ .acc-content {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  /*transform: translate(0, 50%);*/
}
.content_sub ul li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
.content_sub ul li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}

@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: top center;
    transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: rotateX(8deg);
  }
  83% {
    transform: rotateX(6deg);
  }
  92% {
    transform: rotateX(-3deg);
  }
  100% {
    transform-origin: top center;
    transform: rotateX(0deg);
  }
}




/* ********************** Formi Fonts :) ****************** */

@charset "UTF-8";

@font-face {
  font-family: "formi";
  src:url("../fonts/formi/formi.eot");
  src:url("../fonts/formi/formi.eot?#iefix") format("embedded-opentype"),
    url("../fonts/formi/formi.woff") format("woff"),
    url("../fonts/formi/formi.ttf") format("truetype"),
    url("../fonts/formi/formi.svg#formi") format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-icon]:before {
  font-family: "formi" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "formi" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-formi-clone:before {
  content: "\63";
}
.icon-formi-copy:before {
  content: "\64";
}
.icon-formi-trash-o:before {
  content: "\61";
}
.icon-formi-delete-garbage-streamline:before {
  content: "\62";
}
.icon-formi-trash:before {
  content: "\65";
}
.icon-formi-pencil-square-o:before {
  content: "\67";
}
.icon-formi-cogs:before {
  content: "\66";
}
.icon-formi-cog:before {
  content: "\68";
}
.icon-formi-wrench:before {
  content: "\69";
}
.icon-formi-settings:before {
  content: "\6a";
}
.icon-formi-settings-streamline-2:before {
  content: "\6b";
}
.icon-formi-settings-streamline:before {
  content: "\6c";
}
.icon-formi-settings-streamline-1:before {
  content: "\6d";
}
.icon-formi-params:before {
  content: "\6e";
}
.icon-formi-cc-stripe:before {
  content: "\6f";
}
.icon-formi-cc-paypal:before {
  content: "\70";
}
.icon-formi-cloud-upload:before {
  content: "\71";
}
.icon-formi-check:before {
  content: "\72";
}
.icon-formi-check-circle-o:before {
  content: "\73";
}
.icon-formi-check-circle:before {
  content: "\74";
}
.icon-formi-code:before {
  content: "\75";
}
.icon-formi-desktop:before {
  content: "\76";
}
.icon-formi-frown-o:before {
  content: "\77";
}
.icon-formi-laptop:before {
  content: "\78";
}
.icon-formi-life-ring:before {
  content: "\79";
}
.icon-formi-meh-o:before {
  content: "\7a";
}
.icon-formi-puzzle-piece:before {
  content: "\41";
}
.icon-formi-random:before {
  content: "\42";
}
.icon-formi-smile-o:before {
  content: "\43";
}
.icon-formi-tachometer:before {
  content: "\44";
}
.icon-formi-wordpress:before {
  content: "\45";
}
.icon-formi-screen-full:before {
  content: "\46";
}
.icon-formi-screen-normal:before {
  content: "\47";
}
.icon-formi-map-pin-streamline:before {
  content: "\48";
}
.formi-fw-card {
	min-height: 100%;
	padding: 25px;
	width: 100%;
}






.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 2rem;
  background-color: #ffffff;
}
.table > thead > tr,
.table > tbody > tr,
.table > tfoot > tr {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  text-align: left;
  padding: 1.6rem;
  vertical-align: top;
  border-top: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.table > thead > tr > th {
  font-weight: 400;
  color: #757575;
  vertical-align: bottom;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
 	border-bottom: 1px solid #e0e0e0;
}
.table > tbody + tbody {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.table .table {
  background-color: #ffffff;
}
.table .no-border {

}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 0.8rem;
}
.table-bordered {
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border-bottom: 1px solid #e0e0e0;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {

}
@media screen and (max-width: 768px) {
  .table-responsive-vertical > .table {
    margin-bottom: 0;
    background-color: transparent;
  }
  .table-responsive-vertical > .table > thead,
  .table-responsive-vertical > .table > tfoot {
    display: none;
  }
  .table-responsive-vertical > .table > tbody {
    display: block;
  }
  .table-responsive-vertical > .table > tbody > tr {
    display: block;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    margin-bottom: 1.6rem;
  }
  .table-responsive-vertical > .table > tbody > tr > td {
    background-color: #ffffff;
    display: block;
    vertical-align: middle;
    text-align: right;
  }
  .table-responsive-vertical > .table > tbody > tr > td[data-title]:before {
    content: attr(data-title);
    float: left;
    font-size: inherit;
    font-weight: 400;
    color: #757575;
  }
  .table-responsive-vertical.shadow-z-1 {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .table-responsive-vertical.shadow-z-1 > .table > tbody > tr {
    border: none;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
  }
  .table-responsive-vertical > .table-bordered {
    border-bottom: 1px solid #e0e0e0;
  }
  .table-responsive-vertical > .table-bordered > tbody > tr > td {
    border-bottom: 1px solid #e0e0e0;
  }
  .table-responsive-vertical > .table-bordered > tbody > tr > td:last-child {
    border-bottom: 1px solid #e0e0e0;
  }
  .table-responsive-vertical > .table-striped > tbody > tr > td,
  .table-responsive-vertical > .table-striped > tbody > tr:nth-child(odd) {
    border-bottom: 1px solid #e0e0e0;
  }
  .table-responsive-vertical > .table-striped > tbody > tr > td:nth-child(odd) {
    border-bottom: 1px solid #e0e0e0;
  }
  .table-responsive-vertical > .table-hover > tbody > tr:hover > td,
  .table-responsive-vertical > .table-hover > tbody > tr:hover {
    border-bottom: 1px solid #e0e0e0;
    border: 1px solid #000;
  }
  .table-responsive-vertical > .table-hover > tbody > tr > td:hover {
    border-bottom: 1px solid #e0e0e0;
}

tbody {
    font-family: "Roboto";
    font-size: 16px;
}
th {
    font-family: "Roboto";
    font-size: 18px;
}
.action-button:active
{
	transform: translate(0px,5px);
  -webkit-transform: translate(0px,5px);
	border-bottom: 1px solid;
}
.animate
{
	transition: all 0.1s;
	-webkit-transition: all 0.1s;
}

.action-button
{
	position: relative;
	padding: 10px 40px;
  	margin: 0px 10px 10px 0px;
  	float: left;
	border-radius: 10px;
	font-size: 25px;
	color: #FFF;
	text-decoration: none;
}

.blue
{
	background-color: #fafafa;
	border-bottom: 5px solid #fff;
	text-shadow: 0px -2px #fafafa;
}
