@charset "UTF-8";
/* CSS Document */

@font-face {
	font-family: 'Museo Sans 300';
	src: url("../../fonts/MuseoSans-300.otf");
}

@font-face {
	font-family: 'Museo Sans 700';
	src: url("../../fonts/MuseoSans-700.otf");
}

@font-face {
	font-family: 'Museo Sans 500';
	src: url("../../fonts/MuseoSans_500.otf");
}

@font-face {
	font-family: 'Museo Sans 900';
	src: url("../../fonts/museosans-900-webfont.ttf");
}

body {
	width: 100%;
	padding: 0;
	margin: 0;
	max-width: 100%;
	background-color: #f7f7f9;
	font-family: 'Museo Sans 500';
	overflow-y: auto;
	overflow-x: hidden;
}

h1 {
	font-family: 'Museo Sans 900';
	font-size: 30px;
	color: #1d1e23;
	text-align: center;
}

h2 {
	font-family: 'Museo Sans 700';
	font-size: 30px;
	color: #1d1e23;
	text-align: left;
	float: left;
}

p {
	font-family: 'Museo Sans 500';
	font-size: 16px;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s;
}

input, textarea {
	padding: 14px 14px 12px 14px;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 2px solid #eee;
	font-family: 'Museo Sans 700';
    font-size: 15px;
    color: #1d1e23;
    outline: none;
    background-color: #fafafa;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    position: relative;
	/*
	margin-bottom: 22px;
	*/
	transition: border-bottom 0.3s; 
	resize: none;
}

select {
	padding: 14px 12px 12px 12px;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 2px solid #eee;
	font-family: 'Museo Sans 700';
    font-size: 15px;
    color: #1d1e23;
	min-width:150px;
    outline: none;
    background-color: #fafafa;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    position: relative;
	/*
	margin-bottom: 22px;
	*/
	transition: border-bottom 0.3s; 
	resize: none;
}
input:focus, textarea:focus {
	border-bottom: 2px solid #E1374B;
}

input::placeholder {
	font-family: 'Museo Sans 500';
	color: #aaa;
}

ul {
	padding: 0;
	margin: 0;
}

li {
	list-style: none;
}

td {
	color: #1d1e23;
}

.clearAll {
	clear: both;
}

.container.login {
	width: 100vw;
	height: 100vh;
	min-height: 650px;
	position: relative;
	float: none;
	padding: 0;
}

.login .logo {
	width: auto;
	position: absolute;
	top: -90px;
	left: 50%;
	transform: translateX(-50%);
}

.logo img {
	width: 100%;
}

.login .form-wrap {
	width: calc(90% - 120px);
	max-width: 450px;
	padding: 60px;
	background-color: #fff;
	position: absolute;
	top: calc(50% + 40px);
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.05);
	-webkit-box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.05);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.login .form-wrap h1 {
	margin-bottom: 40px;
}

.login .form-wrap input {
	width: calc(100% - 28px);
}

.error {
	color: #e84238;
	padding: 5px;
	border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.error::before {
	content: '\f06a';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	margin-right: 15px;
}

.submit {
	width: 100% !important;
	margin-top: 12px;
	background-color: #d62d00;
    border-bottom: none;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    color: #fff;
    cursor: pointer;
    -webkit-appearance: none;
	transition: background-color 0.3s; 
}

.submit:hover {
	background-color: #b42600;
}

.nav-header {
	background-color: #fff;
	-webkit-box-shadow: -5px 0px 20px 0px rgba(0,0,0,0.08);
	-moz-box-shadow: -5px 0px 20px 0px rgba(0,0,0,0.08);
	box-shadow: -5px 0px 20px 0px rgba(0,0,0,0.08);
	float: left;
	height: 100vh;
	position: fixed;
	width: 105px;
	transition: width 0.3s;
	overflow: hidden;
	z-index: 10;
	display: block;
}
.nav-header:hover {
	width: 250px;
}

.nav-header:hover .logo {
	margin-left: 37px;
	width: 93px;
}

.nav-header .logo {
	width: 80px;
	padding-top: 35px;
	margin-left: 10px;
	transition: all 0.3s;
	position: absolute;
}

.nav-header .label {
	display: inline-block;
	margin-left: 20px;
	opacity: 0;
	vertical-align: middle;
	transition: opacity 0.3s;
	font-size: 14px;
}

.nav-header:hover .label {
	opacity: 1;
}

.nav-header:hover li {
	width: 163px;
}

.nav-header a {
	color: inherit;
}

.nav {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
	max-height: calc(100vh - 250px);
    overflow-y: scroll;
    overflow-x: hidden;
}

nav {
	background-color: #fff;
}

nav ul li {
	text-align: left;
	position: relative;
	cursor: pointer;
	padding: 15px 42px;
	margin: 15px 0;
	opacity: 0.35;
	white-space: nowrap;
	width: 18px;
	transition: opacity 0.3s, width 0.3s;
	-webkit-backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
}

nav ul li img {
	display: inline-block;
	vertical-align: middle;
}

nav ul li:hover {
	opacity: 1;
}

nav ul li img {
	width: 21px;
}

nav .active li {
	opacity: 1;
	border-right: 3px solid #E1374B;
}

nav a {
	color: inherit;
	text-decoration: none;
}

.logout {
	width: 100%;
	position: absolute;
	bottom: 0px;
	text-align: center;
	font-family: 'Museo Sans 500';
	font-size: 12px;
	opacity: 0.35;
	transition: opacity 0.3s;
	text-align: left;
	cursor: pointer;
	padding: 20px 42px;
	background-color: #eee;
}

.logout img {
	width: 21px;
	vertical-align: middle;
}

.logout:hover {
	opacity: 1;
}

.container {
	width: calc(100% - 195px);
	float: right;
	padding: 20px 40px;
	position: relative;
	margin-bottom: 30px;
}

.nav-bar  {
	display: none;
	position: absolute;
	right: 30px;
	top: 30px;
	z-index: 2;
}

.nav-bar i {
	font-size: 24px;
	color: #1d1e23;
	padding: 10px;
}

.top-btns {
	float: right;
	display: block;
	margin: 30px 0;
    line-height: 30px;
	text-align: right;
	position: relative;
}

.top-btns a {
	cursor: pointer;
}

.top-btns a:hover::before, .top-btns .add:hover::before {
	transform: rotate(90deg);
}

.top-btns .export {
	background-image: url(/ffth-cms/assets/export.svg);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: 17px center;
	display: initial;
	font-size: 14px;
    border: 1px solid #d62d00;
    color: #d62d00;
    text-decoration: none;
    padding: 10px 18px 10px 42px;
    border-radius: 5px;
    text-transform: uppercase;
	cursor: pointer;
	margin-bottom: 0;
}

.top-btns .add {
	display: initial;
	font-size: 14px;
    background-color: #d62d00;
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 5px;
    text-transform: uppercase;
	cursor: pointer;
}

.top-btns .add::before {
	content: '\f067';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	margin-right: 7px;
	color: #fff;
	font-size: 12px;
	transition: transform 0.3s;
}

.top-btns .dropdown {
	display: none;
	margin-top: 20px;
	padding: 15px 30px;
	background-color: #fff;
	border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
	position: absolute;
	right: 0;
	z-index: 1;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.06);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.06);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.06);
}

.top-btns .dropdown::after {
	bottom: 100%;
    right: 12px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: #ffffff;
    border-width: 7px;
    margin-left: -7px;
}

.top-btns .dropdown a {
	display: block;
	padding: 8px 0;
	color: #999;
	white-space: nowrap;
	text-align: left;
}

.top-btns .dropdown a:hover {
	color: #1d1e23;
}

.top-btns .back {
	cursor: pointer;
	border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
	padding: 10px 15px;
    color: #666;
    text-transform: uppercase;
	transition: background-color 0.3s, color 0.3s;
}

.top-btns .back:hover {
	background-color: #eee;
	color: #1d1e23;
}

.top-btns .back i {
	font-size: 13px;
	margin-right: 4px;
}

.filter-row {
	margin: 10px 0 20px 0;
}

.filter-row a {
	margin-right: 30px;
	color: #999;
	font-size: 14px;
	text-transform: uppercase;
	padding-bottom: 3px;
	border-bottom: 2px solid transparent;
	display: inline-block;
	margin-bottom: 10px;
}

.filter-row a:hover {
	color: #1d1e23;
}

.filter-row a.active {
	color: #1d1e23;
	border-bottom: 2px solid #E1374B;
}

.table-full {
	background-color: #fff;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.06);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.06);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.06);
	width: 100%;
	border-collapse: collapse;
	border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
	/*
	line-height: 24px;
	*/
	color: #1d1e23;
}

.table-full::after {
	content: '';
    display: block;
    height: 40px;
}

.table-full tr.header, .filter-row span {
	font-family: 'Museo Sans 700';
    color: #999;
    text-transform: uppercase;
    font-size: 14px;
}

.table-full tr {
	color: #666;
	border-bottom: 1px solid #eeeeee;
}

.table-full tr:hover td {
	background-color: #f7f7f7;
}

.table-full tr.header:hover td {
	background-color: inherit;
}

.table-full tr.header td {
	padding: 40px 10px 20px 10px;
}

.table-full tr td:first-child {
	padding-left: 40px;
	font-size: 14px;
}

.table-full tr td:last-child {
	padding-right: 40px;
}

.table-full tr td {
	padding: 15px 10px;
	transition: background-color 0.3s;
}

.table-full tr.status {
	width: 85px;
}

.table-full tr td.actions {
	text-align: right;
	white-space: nowrap;
}

.table-full tr td.actions a {
	margin-left: 20px;
	opacity: 0.35;
}

.table-full tr td.actions a:hover {
	opacity: 1;
}

.table-full tr td.actions a img {
	height: 20px;
	display: inline-block;
	padding: 5px;
	margin-bottom: -3px;
}

.table-full tr td.status div {
	text-transform: uppercase;
    font-size: 12px;
    padding: 1px;
	width: 85px;
	text-align: center;
	border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border: 2px solid;
}

.pagination {
	padding: 25px;
}

.pagination li {
	display: inline-block;
    margin-right: 10px;
    padding: 5px 7px;
    color: #c1c1c1;
    border-radius: 50%;
}

.pagination li.active {
	background-color: #E1374B;
    color: #fff;
}

.pagination li a {
	padding: 3px;
	font-size: 14px;
}

.pagination li a:hover {
	color: #1d1e23;
}

.pagination li.active:hover {
	color: inherit;
}

.save-cancel {
	margin-top: 30px;
}

.save-cancel .button {
	border: none;
    background-color: #d62d00;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    padding: 14px 20px 12px 20px;
	cursor: pointer;
	width: auto;
}

.save-cancel .cancel {
	display: inline-block;
	padding: 14px 20px 12px 20px;
    border: 1px solid #1d1e23;
    color: #1d1e23;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    margin-left: 5px;
	font-size: 14px;
	text-transform: uppercase;
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.3s;
}

.save-cancel .cancel:hover {
	opacity: 1;
}

#div-search {
	width: 500px;
}

#div-search input[type="text"] {
	width: calc(100% - 125px);
	background-color: #fff;
}

#div-search input[type="submit"] {
    background-color: #E1374B;
    border-bottom: none;
    width: 90px;
	text-transform: uppercase;
	font-size: 14px;
}

.form-entry {
	padding: 30px;
    background-color: #fff;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.06);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.06);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.06);
	max-width: 1366px;
    margin: 0 auto;
}

.form-entry table {
	width: 100%;
}

.form-entry label {
	font-size: 12px;
    color: #999;
    font-family: 'Museo Sans 700';
    text-transform: uppercase;
    display: block;
}

.form-entry input, .form-entry textarea {
	margin: 10px 0 25px 0;
	width: calc(100% - 26px);
}

.form-entry select {
	vertical-align: top;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 2px solid #eee;
    height: 46px;
    font-family: 'Museo Sans 700';
    font-size: 15px;
    color: #1d1e23;
    outline: none;
    transition: border-bottom 0.3s;
    text-indent: 7px;
    margin: 10px 0 25px 0;
}

.form-entry textarea {
	height: 200px;
	font-family: 'Museo Sans 500';
}

.form-entry input[type="file"] {
	display: none;
}

.form-entry label.upload {
	vertical-align: middle;
	cursor: pointer;
	padding: 15px 20px;
    width: calc(100% - 40px);
    max-width: 220px;
    margin: 0 auto;
    background-color: #FF8291;
    margin-top: 10px;
    font-size: 14px;
    color: #1d1e23;
	border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-entry input[type="file"]:focus {
	border-bottom: none;
}

.form-entry .publish-date {
	width: calc(50% - 26px);
	float: left;
	margin-right: 26px;
}

.form-entry .status {
	width: 50%;
	float: left;
}

.form-entry .status select, .form-entry .publish-date select {
	width: 100%;
}

.form-entry .file {
	width: calc(100%/3 - 69px);
    display: inline-block;
    padding: 20px;
    text-align: center;
    border: 3px dashed #eaeaea;
    border-radius: 5px;
    margin: 10px;
    vertical-align: middle;
	margin-bottom: 30px;
}

.form-entry .file img, .form-entry .file video {
	max-height: 140px;
	max-width: 100%;
	margin: 10px 0;
}

.form-entry td tr .one-third {
	width: calc(100%/3 - 10px);
	display: inline-block;
}

.form-entry td tr .one-third:nth-of-type(2) {
    margin: 0 10px;
}

.form-entry .form-header{
	color: #d62d00;
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

img[src=""] {
    display: none;
}

.no-edits {
	border-collapse: collapse;
}

.approval input{
	border-bottom: none;
	color: #fff;
    width: calc(50% - 13px);
	max-width: 220px;
	cursor: pointer;
	margin: 5px;
	text-transform: uppercase;
	transition: background-color 0.3s;
}

.approval .approve {
	background-color: #04bf09;
}

.approval .approve:hover {
	background-color: #07aa07;
}

.approval .reject {
	background-color: #e00000;
}

.approval .reject:hover {
	background-color: #c90000;
}

.no-edits tr.header:hover {
	background-color: inherit;
}

.no-edits tr.header td {
	padding: 0 15px;
}

.no-edits .label {
	font-size: 14px;
    color: #999;
    text-transform: uppercase;
}

.no-edits td {
	padding: 15px;
}

.no-edits tr {
	transition: background-color 0.3s;
}

.no-edits tr:hover {
	background-color: #f7f7f7;
}

.table-wrap {
	overflow-x: scroll;
}

.table-full tr td.donation-status div {
    width: 100px;
}

.table-full tr td.donation-status div:empty {
	color: transparent;
}

.table-full tr td.donation-status {
	color: #e00000;
}

.table-full tr td.date-submitted {
	font-size: 14px;
	width: 80px;
}

.table-full tr td.quote div {
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.mce-panel {
	margin: 10px 0 25px 0;
}

@media(max-width: 768px) {
	
	.container {
		width: 85%;
		float: none;
		padding: 50px 0;
		margin: 0 auto;
		transition: margin-left 0.3s;
	}
	
	.container.slide {
		margin-left: 90%;
	}
	
	.nav-header .logo {
		width: 93px;
		display: inline-block;
		position: relative;
		padding-top: 25px;
		margin-left: 30px;
	}
	
	.nav-header {
		width: 280px;
		overflow: auto;
		position: fixed;
		left: -280px;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}
	
	.nav-header:hover {
		width: 280px;
	}
	
	.nav-header:hover li {
		width: inherit;
	}
	
	.nav-header:hover .logo {
		margin-left: 30px;
	}
	
	.nav-header .label {
		opacity: 1;
		font-size: 16px;
	}
	
	.nav-bar {
		display: block;
	}
	
	.nav-bar .overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: none;
		z-index: -1;
	}
	
	.nav {
		position: relative;
		top: 0;
		transform: none;
		max-height: none;
	}
	
	nav ul {
		margin-top: 40px;
	}
	
	nav ul li {
		width: calc(100% - 87px);
		opacity: 1;
	}
	
	.logout {
		width: calc(100% - 84px);
		position: relative;
		padding: 20px 42px;
		margin: 15px 0 0 0;
		opacity: 1;
	}
	
	h2 {
		float: none;
	}
	
	.top-btns {
		float: left;
		margin-top: 0;
	}
	
	.filter-row a {
		display: inline-block;
	}
	
	.div-search {
		width: 100%;
	}
	
	.form-entry .file {
		width: auto;
		display: block;
	}
	
	.form-entry td tr .one-third {
		width: 100%;
		display: block;
	}

}

@media(max-width: 480px) {
	
	.login .form-wrap {
		width: calc(90% - 40px);
		    padding: 40px 20px;
	}
	
	.no-edits .approve, .no-edits .reject {
		width: 100%;
		max-width: none;
	}
	
	.no-edits tr.header td {
		padding: 0;
	}
	
	.no-edits tr td {
		display: block;
		padding: 5px 0;
		word-break: break-word;
	}
	
	.no-edits tr td:nth-child(2) {
		margin-bottom: 30px;
	}
	
	#export-button {
		float: none !important;
	}
	
	.form-entry .publish-date, .form-entry .status {
		width: 100%;
		float: none;
		margin: 0;
	}
	
}

/* #export-button input[type="submit"]	{
	background-color: #E1374B;
    border-bottom: none;
    width: 90px;
    text-transform: uppercase;
    font-size: 14px;
} */


.yellow-button {
   border: none;
	border-radius: 5px;
    background-color: #E1374B;
    color: #fff;
	font-family: 'Museo Sans 700';
    font-size: 14px;
	margin:0 5px;
    text-transform: uppercase;
    padding: 14px 20px 12px 20px;
    cursor: pointer;
    width: auto;
}

.yellow-button:hover {
	color:#1d1e23;

}