/**************************************************
 										Theme Colour
**************************************************/

/*	Blue = #002080	*/
/*	Light Gold = #e6c94d	*/
/*	Dark Gold = #dfbc20	*/

/**************************************************
 											Universal
**************************************************/

* {
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Arial, sans-serif;
}

/* Go Back Button */
#goBackBtn {
	background-color: #002080;
	font-size: 18px;
	width: 60px;
	height: 60px;
	margin: -3px 0 5px 7px;
	border: none;
	border-radius: 8px;
}
#goBackBtn i {
	position: relative;
	color: white;
	left: 7px;
	top: 18px;
	margin-top: -35px;
	font-size: 35px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#goBackBtn:hover i {
	left: -12px;
}

/**************************************************
 												NavBar
**************************************************/

/* Navigation */
#navbar {
	background-color: #002080;
}

/* Navbar Item */
#navbarItem {
	color: #ffffff;
	font-size: 20px;
	font-weight: bold;
	padding: 25px;
	text-align: center;
}
#navbarItem:active,
#navbarItem:hover,
#navbarItem:focus {
	color: #e6c94d;
}

/* On Large Screen */
@media screen and (min-width: 1024px) {

	/* Navbar Item - Admin */
	#navbarItemAdmin {
		color: #ffffff;
		width: 100px;
		margin: 0;
		font-size: 25px;
		text-align: center;
	}
	#navbarItemAdmin:active,
	#navbarItemAdmin:hover,
	#navbarItemAdmin:focus {
		color: #e6c94d;
	}

	/* Navbar Item - Logout */
	#navbarItemLogout {
		color: #ffffff;
		width: 100px;
		margin: 0;
		font-size: 25px;
		text-align: center;
	}
	#navbarItemLogout:active,
	#navbarItemLogout:hover,
	#navbarItemLogout:focus {
		color: red;
	}

}

/* On Small Screen */
@media screen and (max-width: 1024px) {

	/* Toggle Button */
	.navbar-toggler span {
		position: relative;
		display: block;
		background-color: #ffffff;
		height: 3px;
		width: 35px;
		margin-top: 7px;
		margin-bottom: 7px;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		left: 0px;
		opacity: 1;
	}

	.navbar-toggler span:nth-child(1),
	.navbar-toggler span:nth-child(3) {
		-webkit-transition: transform .35s ease-in-out;
		-moz-transition: transform .35s ease-in-out;
		-o-transition: transform .35s ease-in-out;
		transition: transform .35s ease-in-out;
	}

	.navbar-toggler:not(.collapsed) span:nth-child(1) {
		position: absolute;
		left: 27px;
		top: 22px;
		width: 40px;
		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		-ms-transform: rotate(135deg);
		-o-transform: rotate(135deg);
		transform: rotate(135deg);
		opacity: 0.9;
	}

	.navbar-toggler:not(.collapsed) span:nth-child(2) {
		height: 20px;
		visibility: hidden;
		background-color: transparent;
	}

	.navbar-toggler:not(.collapsed) span:nth-child(3) {
		position: absolute;
		left: 27px;
		top: 22px;
		width: 40px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		-ms-transform: rotate(-135deg);
		-o-transform: rotate(-135deg);
		transform: rotate(-135deg);
		opacity: 0.9;
	}

	/* Navbar Item */
	#navbarItem {
		color: #ffffff;
		width: 100%;
		font-size: 18px;
		font-weight: bold;
		padding-top: 15px;
		padding-bottom: 15px;
		padding-left: 15px;
		text-align: left;
	}
	#navbarItem:active,
	#navbarItem:hover,
	#navbarItem:focus {
		color: #e6c94d;
	}

	/* Navbar Item - Admin */
	#navbarItemAdmin {
		color: #ffffff;
		width: 100px;
		margin: 0;
		font-size: 26px;
		text-align: left;
		padding-left: 15px;
	}
	#navbarItemAdmin:active,
	#navbarItemAdmin:hover,
	#navbarItemAdmin:focus {
		color: #e6c94d;
	}

	/* Navbar Item - Logout */
	#navbarItemLogout {
		color: #ffffff;
		width: 100px;
		margin: 0;
		font-size: 26px;
		text-align: left;
		padding-left: 15px;
	}
	#navbarItemLogout:active,
	#navbarItemLogout:hover,
	#navbarItemLogout:focus {
		color: red;
	}

}

/**************************************************
 												Index
**************************************************/

/* Section */
#mainSection {
	padding-bottom: 50px;
}

/* Logo On Homepage */
#tmkLogoOnHomepage {
	margin: auto;
	width: 100%;
	text-align: center;
	border-bottom: 5px #002080 solid;
}

/* Sector Section */
#indexSectorsSection {
	padding-bottom: 50px;
}

/* Sector Header */
#indexSectorsSectionHeader {
	color: #002080;
	font-weight: bold;
	font-size: 30px;
	text-align: center;
	padding-bottom: 20px;
}

/**************************************************
 										Sector Page
**************************************************/

/* Section */
#sectorSection {
	background-color: #ffffff;
	width: 100%;
	height: 100%;
	padding-top: 0px;
	padding-bottom: 100px;
}

/* Header */
#sectorHeader {
	color: #002080;
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Arial, sans-serif;
	font-style: italic;
	font-size: 40px;
	text-align: center;
	margin: 50px auto 25px auto;
}

/* Sector Thumbnail Click */
#sectorThumbnailClick {
	text-decoration: none;
}

/* Sector Thumbnail */
#sectorThumbnail {
	position: relative;
	border-radius: 8px;
	border: 2px solid rgba(201, 169, 29, 0.4);
	margin: 20px;
}
#sectorThumbnail:hover {
	border: 2px solid #002080;
}

/* Sector Thumbnail Image */
#sectorThumbnailImage {
	z-index: -99;
	width: 100%;
	padding: 1px;
	border-radius: 8px;
}

/* Sector Thumbnail Title */
#sectorThumbnailTitle {
	color: #002080;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin-top: 20px;
	overflow: auto;
	white-space: nowrap;
}

/* On Small Screen */
@media screen and (max-width: 768px) {

	/* Section */
	#sectorSection {
		background-color: #ffffff;
		width: 100%;
		height: 100%;
		padding-top: 0px;
		padding-bottom: 50px;
	}

	/* Header */
	#sectorHeader {
		color: #002080;
		font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Arial, sans-serif;
		font-style: italic;
		font-size: 30px;
		text-align: center;
		margin: 40px auto 20px auto;
	}

	/* Sector Thumbnail Title */
	#sectorThumbnailTitle {
		color: #002080;
		font-size: 16px;
		text-align: center;
		font-weight: bold;
		margin-top: 20px;
		overflow: auto;
		white-space: nowrap;
	}

}

/**************************************************
 										About Us Page
**************************************************/

/* Section */
#aboutUsSection {
	background-image: url('../View/Images/AboutUs/background.jpg');
	background-position: center;
	background-repeat: no-repeat;
  background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
	width: 100%;
	height: 100%;
	padding-top: 100px;
	padding-bottom: 100px;
}

/* About Us Container */
#aboutUsContainer {
	background: rgba(201, 169, 29, 0.6);
	border: none;
	border-radius: 8px;
	margin: auto;
	padding: 60px 90px;
	font-size: 18px;
	width: 50%
}

/* Logo */
#tmkLogoOnAboutUs {
	margin: auto;
	padding-bottom: 50px;
	width: 300px;
	text-align: center;
}

/* Header */
#aboutUsHeader {
	font-size: 30px;
	font-weight: bold;
	color: white;
	text-align: center;
}

/* Hr Line */
#aboutUsHrLine {
	width: 100%;
	margin: 20px auto 20px auto;
	border: 2px solid #e6c94d;
}

/* About Us Text */
#aboutUsText {
	color: white;
	text-align: justify;
	font-size: 18px;
	line-height: 30px;
}

/* About Us Contact Link */
#aboutUsContactLink {
	color: #002080;
	font-size: 18px;
}
#aboutUsContactLink:hover {
	font-weight: bold;
	text-decoration: none;
}

/* On Small Screen */
@media screen and (max-width: 1024px) {

	/* Section */
	#aboutUsSection {
		background-image: url('../View/Images/AboutUs/background.jpg');
		background-position: center;
		background-repeat: no-repeat;
	  background-attachment: fixed;
		-webkit-background-size: cover;
		-moz-background-size: cover;
	  -o-background-size: cover;
	  background-size: cover;
		width: 100%;
		height: 100%;
		padding-top: 50px;
		padding-bottom: 50px;
	}

	/* About Us Container */
	#aboutUsContainer {
		background: rgba(201, 169, 29, 0.6);
		border: none;
		border-radius: 8px;
		margin: auto;
		padding: 30px;
		font-size: 18px;
		width: 90%;
	}

	/* Logo */
	#tmkLogoOnAboutUs {
		margin: auto;
		padding-bottom: 25px;
		width: 300px;
		text-align: center;
	}

	/* Hr Line */
	#aboutUsHrLine {
		width: 100%;
		margin: 20px auto 20px auto;
		border: 1px solid #e6c94d;
	}

	/* About Us Text */
	#aboutUsText {
		color: white;
		text-align: justify;
		font-size: 16px;
		line-height: 25px;
		width: 100%;
	}

	/* About Us Contact Link */
	#aboutUsContactLink {
		color: #002080;
		font-size: 16px;
	}
	#aboutUsContactLink:hover {
		font-weight: bold;
		text-decoration: none;
	}

}

/**************************************************
									Contacts Page
**************************************************/

/* Section */
#contactUsSection {
	background-color: #ffffff;
	padding-left: 0;
  padding-right: 0;
  overflow-x: hidden;
}

/* Photo */
#contactUsPhoto {
	object-fit: cover;
	object-position: 50% 50%;
	width: 100.5%;
	height: 100%;
}

/* Header */
#contactUsHeader {
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 40px;
	color: #002080;
	text-align: center;
	margin-top: 50px;
}

/* Hr Line */
#contactUsHrLine {
	width: 60%;
	padding: 0;
	margin-bottom: 20px;
	border: 2px solid #e6c94d;
}

/* Text Boxes */
#contactUsTextBoxes {
	color: #594b0d;
	background: transparent;
	border: 1px solid #e6c94d;
	border-radius: 8px;
	width: 60%;
	height: 60px;
	margin: auto;
	font-size: 18px;
}

/* Message Box */
#contactUsMsgBox {
	color: #594b0d;
	background: transparent;
	border: 1px solid #e6c94d;
	border-radius: 8px;
	width: 60%;
	margin: auto;
	font-size: 18px;
}

/* Text Boxes Placeholder */
#contactUsTextBoxes::-webkit-input-placeholder,
#contactUsMsgBox::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #dfbc20;
}
#contactUsTextBoxes::-moz-placeholder,
#contactUsMsgBox::-moz-placeholder { /* Firefox 19+ */
  color: #dfbc20;
}
#contactUsTextBoxes:-ms-input-placeholder,
#contactUsMsgBox:-ms-input-placeholder { /* IE 10+ */
  color: #dfbc20;
}
#contactUsTextBoxes:-moz-placeholder,
#contactUsMsgBox:-moz-placeholder { /* Firefox 18- */
  color: #dfbc20;
}

/* Recaptcha */
#recaptcha {
	width: 307px;
	margin: 20px auto 20px auto;
}

/* Contact Us Form Submit Button */
#contactSubmitBtn {
	color: white;
	background: #002080;
	border: none;
	border-radius: 8px;
	width: 300px;
	height: 60px;
	margin-bottom: 50px;
	font-size: 18px;
}
#contactSubmitBtn:hover,
#contactSubmitBtn:focus {
	background-color: #00cc00;
}

/* Contact Us - Server Success */
#contactUsServerSuccess {
	background-color: rgba(0, 204, 0, 0.8);
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 20px auto;
	width: 60%;
}

/* Contact Us - Server Error */
#contactUsServerError {
	background-color: rgba(255, 0, 0, 0.8);
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 20px auto;
	width: 60%;
}

/* On Small Screen */
@media screen and (max-width: 768px) {

	/* Photo */
	#contactUsPhoto {
		object-fit: cover;
		object-position: 55% 45%;
		width: 100%;
		height: 200px;
	}

	/* Hr Line */
	#contactUsHrLine {
		width: 95%;
		padding: 0;
		margin-bottom: 20px;
		border: 2px solid #e6c94d;
	}

	/* Text Boxes */
	#contactUsTextBoxes {
		color: #594b0d;
		background: transparent;
		border: 1px solid #e6c94d;
		border-radius: 8px;
		width: 95%;
		height: 60px;
		margin: auto;
		font-size: 16px;
	}

	/* Message Box */
	#contactUsMsgBox {
		color: #594b0d;
		background: transparent;
		border: 1px solid #e6c94d;
		border-radius: 8px;
		width: 95%;
		margin: auto;
		font-size: 16px;
	}

	/* Recaptcha */
	#recaptcha {
		width: 300px;
		margin: 20px auto 20px auto;
	}

	/* Contact Us Form Submit Button */
	#contactSubmitBtn {
		color: white;
		background: #002080;
		border: none;
		border-radius: 8px;
		width: 300px;
		height: 60px;
		margin-bottom: 50px;
		font-size: 16px;
	}
	#contactSubmitBtn:hover,
	#contactSubmitBtn:focus {
		background-color: #00cc00;
	}

	/* Contact Us - Server Success */
	#contactUsServerSuccess {
		background-color: rgba(0, 204, 0, 0.8);
		border: none;
		border-radius: 8px;
		color: white;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 20px auto;
		width: 95%;
	}

	/* Contact Us - Server Error */
	#contactUsServerError {
		background-color: rgba(255, 0, 0, 0.8);
		border: none;
		border-radius: 8px;
		color: white;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 20px auto;
		width: 95%;
	}

}

/**************************************************
 										Login Page
**************************************************/

/* Section */
#loginSection {
	background-image: url('../View/Images/Login/background.jpg');
	background-position: center;
	background-repeat: no-repeat;
  background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
	width: 100%;
	height: 100%;
	padding-top: 150px;
	padding-bottom: 550px;
}

/* Login Form */
#loginForm {
	float: right;
}

/* Header */
#loginHeader {
	color: #002080;
	font-weight: bold;
	font-size: 30px;
	text-align: center;
	padding-bottom: 20px;
}

/* Text Boxes */
#loginTextBoxes {
	color: #002080;
	background: rgba(201, 169, 29, 0.6);
	border: none;
	border-radius: 8px;
	width: 300px;
	height: 60px;
	margin: auto;
	font-size: 18px;
	text-align: center;
}

/* Text Boxes Placeholder */
#loginTextBoxes::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #594b0d;
}
#loginTextBoxes::-moz-placeholder { /* Firefox 19+ */
  color: #594b0d;
}
#loginTextBoxes:-ms-input-placeholder { /* IE 10+ */
  color: #594b0d;
}
#loginTextBoxes:-moz-placeholder { /* Firefox 18- */
  color: #594b0d;
}

/* Login Button */
#loginBtn {
	color: white;
	background: #002080;
	border: none;
	border-radius: 8px;
	width: 300px;
	height: 60px;
	margin: 20px auto auto auto;
	font-size: 18px;
}
#loginBtn:hover,
#loginBtn:focus {
  background-color: #00cc00;
}

/* Login - Server Error */
#loginServerError {
	background-color: rgba(255, 0, 0, 0.8);
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 20px auto;
	width: 300px;
}

/* On Small Screen */
@media screen and (max-width: 1024px) {

	/* Section */
	#loginSection {
		background-position: center;
		background-repeat: no-repeat;
	  background-attachment: fixed;
		-webkit-background-size: cover;
		-moz-background-size: cover;
	  -o-background-size: cover;
	  background-size: cover;
		width: 100%;
		height: 100%;
		padding-top: 100px;
		padding-bottom: 300px;
	}

	/* Login Form */
	#loginForm {
		float: none;
	}

	/* Text Boxes */
	#loginTextBoxes {
		color: #002080;
		background: rgba(201, 169, 29, 0.6);
		border: none;
		border-radius: 8px;
		width: 95%;
		height: 60px;
		margin: auto;
		font-size: 16px;
		text-align: center;
	}

	/* Login Button */
	#loginBtn {
		color: white;
		background: #002080;
		border: none;
		border-radius: 8px;
		width: 300px;
		height: 60px;
		margin: 20px auto auto auto;
		font-size: 16px;
	}
	#loginBtn:hover,
	#loginBtn:focus {
	  background-color: #00cc00;
	}

	/* Login - Server Error */
	#loginServerError {
		background-color: rgba(255, 0, 0, 0.8);
		border: none;
		border-radius: 8px;
		color: white;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 20px auto;
		width: 95%;
	}

}

/**************************************************
 										Admin Page
**************************************************/

/* Admin & Item Section */
#adminSection {
	width: 100%;
	height: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: rgba(201, 169, 29, 0.4);
}

/* Add Buttons */
#addItemBtn, #addCategoryBtn,
#addSubCategoryBtn {
	color: white;
	background: #00cc00;
	border: #00cc00 solid 2px;
	border-radius: 8px;
	width: 220px;
	height: 80px;
	padding-top: 25px;
	margin: 20px;
	font-size: 18px;
}
#addItemBtn:hover, #addCategoryBtn:hover,
#addSubCategoryBtn:hover,
#addItemBtn:focus, #addCategoryBtn:focus,
#addSubCategoryBtn:focus {
	border: #008000 solid 2px;
}

/* Category Section */
#adminCategorySection {
	width: 100%;
	height: 100%;
	padding-top: 50px;
	padding-bottom: 100px;
}

/* Header */
#adminHeader {
	font-size: 30px;
	font-weight: bold;
	color: #002080;
	text-align: center;
	padding-bottom: 20px;
}

/* Category Thumbnail Click */
#categoryThumbnailClick {
	text-decoration: none;
}

/* Category Thumbnail */
#categoryThumbnail {
	position: relative;
	border-radius: 8px;
	border: 2px solid rgba(201, 169, 29, 0.4);
	margin: 20px;
}
#categoryThumbnail:hover {
	border: 2px solid #002080;
}

/* Category Thumbnail Image */
#categoryThumbnailImage {
	z-index: -99;
	width: 100%;
	padding: 1px;
	border-radius: 8px;
}

/* Category Thumbnail Name */
#categoryThumbnailName {
	color: #002080;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin-top: 20px;
	overflow: auto;
	white-space: nowrap;
}

/* Edit Category Button */
#editCategoryBtn {
	color: rgba(201, 169, 29, 0.4);
	background: transparent;
	border: none;
	width: 25%;
	height: 60px;
	margin: -8px 5px 5px -5px;
	font-size: 30px;
}
#editCategoryBtn:hover,
#editCategoryBtn:focus {
	color: #ffa500;
}

/* Delete Category Button */
#deleteCategoryBtn {
	float: right;
	color: rgba(201, 169, 29, 0.4);
	background: transparent;
	border: none;
	width: 25%;
	height: 60px;
	margin: -8px -10px 5px 5px;
	font-size: 30px;
}
#deleteCategoryBtn:hover,
#deleteCategoryBtn:focus {
	color: #ff0000;
}

/* Edit Category Modal */
#editCategoryModal {
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
	position: fixed;
	overflow: auto;
	width: 100%;
	height: 100%;
}

/* Edit Category Modal - Content */
#editCategoryModalContent {
  background-color: white;
  border: none;
	border-radius: 8px;
	padding: 3%;
  width: 45%;
	top: 50%;
  left: 50%;
	transform: translate(-50%, -50%);
}

/* Edit Category Modal - Close Button */
#closeEditCategoryModal {
  color: #e6c94d;
  font-size: 40px;
	text-align: right;
}
#closeEditCategoryModal:hover,
#closeEditCategoryModal:focus {
  color: #002080;
}

/* Edit Category Modal - Header */
#editCategoryModalHeader {
	font-size: 30px;
	font-weight: bold;
	color: #002080;
	text-align: center;
	padding-bottom: 20px;
}

/* Edit Category Modal - Text Box */
#editCategoryFormTextBoxes {
	color: #002080;
	background: rgba(201, 169, 29, 0.6);
	border: none;
	border-radius: 8px;
	width: 80%;
	height: 60px;
	margin: auto auto 20px auto;
	font-size: 18px;
}

/* Text Boxes Placeholder */
#editCategoryFormTextBoxes::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #594b0d;
}
#editCategoryFormTextBoxes::-moz-placeholder { /* Firefox 19+ */
  color: #594b0d;
}
#editCategoryFormTextBoxes:-ms-input-placeholder	{ /* IE 10+ */
  color: #594b0d;
}
#editCategoryFormTextBoxes:-moz-placeholder { /* Firefox 18- */
  color: #594b0d;
}

/* Edit Category Modal - Save Button */
#saveEditCategoryBtn {
	color: white;
	background: #002080;
	border: none;
	border-radius: 8px;
	width: 150px;
	height: 60px;
	margin: auto;
	font-size: 18px;
}
#saveEditCategoryBtn:hover,
#saveEditCategoryBtn:focus {
  background-color: #00cc00;
}

/* Edit Category - Server Response Success */
#editCategoryServerResponseSuccess {
	background-color: #00cc00;
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 20px auto;
	width: 80%;
}

/* Edit Category - Server Response Error */
#editCategoryServerResponseError {
	background-color: red;
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 20px auto;
	width: 80%;
}

/* Delete Category Modal */
#deleteCategoryModal {
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
	position: fixed;
	overflow: auto;
	width: 100%;
	height: 100%;
}

/* Delete Category Modal - Content */
#deleteCategoryModalContent {
	background-color: white;
  border: none;
	border-radius: 8px;
	padding: 2%;
  width: 35%;
	top: 50%;
  left: 50%;
	transform: translate(-50%, -50%);
}

/* Delete Category Modal - Close Button */
#closeDeleteCategoryModal {
  color: #e6c94d;
  font-size: 40px;
	text-align: right;
}
#closeDeleteCategoryModal:hover,
#closeDeleteCategoryModal:focus {
  color: #002080;
}

/* Delete Category Modal - Text */
#deleteCategoryModalText {
	color: #002080;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	padding-bottom: 20px;
}

/* Delete Category Modal - Yes Button */
#deleteCategoryFinalBtn {
	color: white;
	background: #002080;
	border: none;
	border-radius: 8px;
	margin: 10px;
	height: 60px;
	width: 150px;
	font-size: 18px;
}
#deleteCategoryFinalBtn:hover,
#deleteCategoryFinalBtn:focus {
	color: white;
  background-color: #ff0000;
}

/* Delete Category Modal - No Button */
#deleteCategoryNoBtn {
	color: white;
	background: #002080;
	border: none;
	border-radius: 8px;
	margin: 10px;
	height: 60px;
	width: 150px;
	font-size: 18px;
}
#deleteCategoryNoBtn:hover,
#deleteCategoryNoBtn:focus {
	color: white;
  background-color: #e6c94d;
}

/* Delete Category Error */
#deleteCategoryResponseError {
	background-color: red;
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 20px auto;
	width: 80%;
}

/* On Small Screen */
@media screen and (max-width: 1024px) {

	/* Add Buttons */
	#addItemBtn, #addCategoryBtn,
	#addSubCategoryBtn {
		color: white;
		background: #00cc00;
		border: #00cc00 solid 2px;
		border-radius: 8px;
		width: 100%;
		height: 60px;
		padding-top: 15px;
		margin: 5px auto;
		font-size: 18px;
	}
	#addItemBtn:hover, #addCategoryBtn:hover,
	#addSubCategoryBtn:hover,
	#addItemBtn:focus, #addCategoryBtn:focus,
	#addSubCategoryBtn:focus {
		border: #008000 solid 2px;
	}

	/* Category Thumbnail Name */
	#categoryThumbnailName {
		color: #002080;
		font-size: 16px;
		text-align: center;
		margin-top: 20px;
		overflow: auto;
		white-space: nowrap;
	}

	/* Edit Category Modal - Content */
	#editCategoryModalContent {
	  background-color: white;
	  border: none;
		border-radius: 8px;
		padding: 8%;
	  width: 95%;
		top: 50%;
	  left: 50%;
		transform: translate(-50%, -50%);
	}

	/* Edit Category Modal - Text Box */
	#editCategoryFormTextBoxes {
		color: #002080;
		background: rgba(201, 169, 29, 0.6);
		border: none;
		border-radius: 8px;
		width: 100%;
		height: 60px;
		margin: auto auto 20px auto;
		font-size: 16px;
	}

	/* Edit Category Modal - Save Button */
	#saveEditCategoryBtn {
		color: white;
		background: #002080;
		border: none;
		border-radius: 8px;
		width: 150px;
		height: 60px;
		margin: auto;
		font-size: 16px;
	}
	#saveEditCategoryBtn:hover,
	#saveEditCategoryBtn:focus {
	  background-color: #00cc00;
	}

	/* Edit Category - Server Response Success */
	#editCategoryServerResponseSuccess {
		background-color: #00cc00;
		border: none;
		border-radius: 8px;
		color: white;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 20px auto;
		width: 100%;
	}

	/* Edit Category - Server Response Error */
	#editCategoryServerResponseError {
		background-color: red;
		border: none;
		border-radius: 8px;
		color: white;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 20px auto;
		width: 100%;
	}

	/* Delete Category Modal - Content */
	#deleteCategoryModalContent {
		background-color: white;
	  border: none;
		border-radius: 8px;
		padding: 5%;
	  width: 95%;
		top: 50%;
	  left: 50%;
		transform: translate(-50%, -50%);
	}

	/* Delete Category Modal - Text */
	#deleteCategoryModalText {
		color: #002080;
		font-size: 20px;
		font-weight: bold;
		text-align: center;
		margin-bottom: 20px;
	}

	/* Delete Category Modal - Yes Button */
	#deleteCategoryFinalBtn {
		color: white;
		background: #002080;
		border: none;
		border-radius: 8px;
		margin: 10px;
		height: 60px;
		width: 100px;
		font-size: 16px;
	}
	#deleteCategoryFinalBtn:hover,
	#deleteCategoryFinalBtn:focus {
		color: white;
	  background-color: #cc0000;
	}

	/* Delete Category Modal - No Button */
	#deleteCategoryNoBtn {
		color: white;
		background: #002080;
		border: none;
		border-radius: 8px;
		margin: 10px;
		height: 60px;
		width: 100px;
		font-size: 16px;
	}
	#deleteCategoryNoBtn:hover,
	#deleteCategoryNoBtn:focus {
		color: white;
	  background-color: #e6c94d;
	}

	/* Delete Category Error */
	#deleteCategoryResponseError {
		background-color: red;
		border: none;
		border-radius: 8px;
		color: white;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 20px auto;
		width: 100%;
	}

}

/**************************************************
 									Add Item Page
**************************************************/

/* Section */
#addItemSection {
	width: 100%;
	height: 100%;
	padding-top: 20px;
	padding-bottom: 100px;
	background-color: white;
}

/* Header */
#addItemSectionHeader {
	color: #002080;
	font-weight: bold;
	font-size: 30px;
	text-align: center;
	padding-bottom: 20px;
}

/* Text Boxes */
#addItemTextBoxes {
	color: #002080;
	background: rgba(201, 169, 29, 0.6);
	border: none;
	border-radius: 8px;
	width: 80%;
	height: 60px;
	margin: auto auto 20px auto;
	font-size: 18px;
}

/* Item Description Box */
#addItemDescriptionBoxe {
	color: #002080;
	background: rgba(201, 169, 29, 0.6);
	border: none;
	border-radius: 8px;
	width: 80%;
	margin: auto auto 20px auto;
	font-size: 18px;
}

/* Text Boxes Placeholder */
#addItemTextBoxes::-webkit-input-placeholder,
#addItemDescriptionBoxe::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #594b0d;
}
#addItemTextBoxes::-moz-placeholder,
#addItemDescriptionBoxe::-moz-placeholder { /* Firefox 19+ */
  color: #594b0d;
}
#addItemTextBoxes:-ms-input-placeholder,
#addItemDescriptionBoxe:-ms-input-placeholder { /* IE 10+ */
  color: #594b0d;
}
#addItemTextBoxes:-moz-placeholder,
#addItemDescriptionBoxe:-moz-placeholder { /* Firefox 18- */
  color: #594b0d;
}

/* Category Select */
#addItemSelectedCategory,
#addItemSelectedSubCategory {
	color: #594b0d;
	background: rgba(201, 169, 29, 0.6);
	border: none;
	border-radius: 8px;
	width: 80%;
	height: 60px;
	margin: auto;
	font-size: 18px;
}

/* Images Upload */
#addNewItemImageSection {
	color: #594b0d;
	background: rgba(201, 169, 29, 0.6);
	border: none;
	border-radius: 8px;
	width: 80%;
	height: 100px;
	margin: auto auto 20px auto;
	padding: 20px;
	font-size: 18px;
}

/* Add Item Button */
#addItemFinalBtn {
	color: white;
	background: #002080;
	border: none;
	border-radius: 8px;
	width: 220px;
	height: 60px;
	margin: auto;
	font-size: 18px;
}
#addItemFinalBtn:hover,
#addItemFinalBtn:focus {
	background-color: #00cc00;
}

/* Add Item - Server Success */
#addItemServerSuccess {
	background-color: #00cc00;
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 20px auto;
	width: 80%;
}

/* Add Item - Server Error */
#addItemServerError {
	background-color: red;
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 20px auto;
	width: 80%;
}

/* On Small Screen */
@media screen and (max-width: 1024px) {

	/* Section */
	#addItemSection {
		width: 100%;
		height: 100%;
		padding-top: 25px;
		padding-bottom: 50px;
		background-color: white;
	}

	/* Text Boxes */
	#addItemTextBoxes {
		color: #002080;
		background: rgba(201, 169, 29, 0.6);
		border: none;
		border-radius: 8px;
		width: 95%;
		height: 60px;
		margin: auto auto 20px auto;
		font-size: 16px;
	}

	/* Item Description Box */
	#addItemDescriptionBoxe {
		color: #002080;
		background: rgba(201, 169, 29, 0.6);
		border: none;
		border-radius: 8px;
		width: 95%;
		margin: auto auto 20px auto;
		font-size: 16px;
	}

	/* Category Select */
	#addItemSelectedCategory,
	#addItemSelectedSubCategory {
		color: #594b0d;
		background: rgba(201, 169, 29, 0.6);
		border: none;
		border-radius: 8px;
		width: 95%;
		height: 60px;
		margin: auto;
		font-size: 16px;
	}

	/* Images Upload */
	#addNewItemImageSection {
		color: #594b0d;
		background: rgba(201, 169, 29, 0.6);
		border: none;
		border-radius: 8px;
		width: 95%;
		height: 100px;
		margin: auto auto 20px auto;
		padding: 20px;
		font-size: 16px;
	}

	/* Add Item Button */
	#addItemFinalBtn {
		color: white;
		background: #002080;
		border: none;
		border-radius: 8px;
		width: 95%;
		height: 60px;
		margin: auto;
		font-size: 16px;
	}
	#addItemFinalBtn:hover,
	#addItemFinalBtn:focus {
		background-color: #00cc00;
	}

	/* Add Item - Server Success */
	#addItemServerSuccess {
		background-color: #00cc00;
		border: none;
		border-radius: 8px;
		color: white;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 20px auto;
		width: 95%;
	}

	/* Add Item - Server Error */
	#addItemServerError {
		background-color: red;
		border: none;
		border-radius: 8px;
		color: white;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 20px auto;
		width: 95%;
	}

}

/**************************************************
 								Add Category Page
**************************************************/

/* Section */
#addCategorySection {
	width: 100%;
	height: 100%;
	padding-top: 20px;
	padding-bottom: 100px;
	background-color: white;
}

/* Header */
#addCategoryHeader {
	color: #002080;
	font-weight: bold;
	font-size: 30px;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
}

/* Text Boxes */
#addCategoryTextBoxes {
	color: #002080;
	background: rgba(201, 169, 29, 0.6);
	border: none;
	border-radius: 8px;
	width: 80%;
	height: 60px;
	margin: auto auto 20px auto;
	font-size: 18px;
}

/* Text Boxes Placeholder */
#addCategoryTextBoxes::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #594b0d;
}
#addCategoryTextBoxes::-moz-placeholder { /* Firefox 19+ */
  color: #594b0d;
}
#addCategoryTextBoxes:-ms-input-placeholder	{ /* IE 10+ */
  color: #594b0d;
}
#addCategoryTextBoxes:-moz-placeholder { /* Firefox 18- */
  color: #594b0d;
}

/* Image Upload */
#addNewCategoryImageSection {
	color: #594b0d;
	background: rgba(201, 169, 29, 0.6);
	border: none;
	border-radius: 8px;
	width: 80%;
	height: 200px;
	margin: auto auto 20px auto;
	padding: 20px;
	font-size: 18px;
}

/* Add Category Button */
#addCategoryFinalBtn {
	color: white;
	background: #002080;
	border: none;
	border-radius: 8px;
	width: 220px;
	height: 60px;
	margin: auto;
	font-size: 18px;
}
#addCategoryFinalBtn:hover,
#addCategoryFinalBtn:focus {
	background-color: #00cc00;
}

/* Add Category - Server Success */
#addCategoryServerSuccess {
	background-color: #00cc00;
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 20px auto;
	width: 80%;
}

/* Add Category - Server Error */
#addCategoryServerError {
	background-color: red;
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 20px auto;
	width: 80%;
}

/* On Small Screen */
@media screen and (max-width: 1024px) {

	/* Section */
	#addCategorySection {
		width: 100%;
		height: 100%;
		padding-top: 20px;
		padding-bottom: 50px;
		background-color: white;
	}

	/* Text Boxes */
	#addCategoryTextBoxes {
		color: #002080;
		background: rgba(201, 169, 29, 0.6);
		border: none;
		border-radius: 8px;
		width: 95%;
		height: 60px;
		margin: auto auto 20px auto;
		font-size: 16px;
	}

	/* Image Upload */
	#addNewCategoryImageSection {
		color: #594b0d;
		background: rgba(201, 169, 29, 0.6);
		border: none;
		border-radius: 8px;
		width: 95%;
		height: 200px;
		margin: auto auto 20px auto;
		padding: 20px;
		font-size: 16px;
	}

	/* Add Category Button */
	#addCategoryFinalBtn {
		color: white;
		background: #002080;
		border: none;
		border-radius: 8px;
		width: 95%;
		height: 60px;
		margin: auto;
		font-size: 16px;
	}
	#addCategoryFinalBtn:hover,
	#addCategoryFinalBtn:focus {
		background-color: #00cc00;
	}

	/* Add Category - Server Success */
	#addCategoryServerSuccess {
		background-color: #00cc00;
		border: none;
		border-radius: 8px;
		color: white;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 20px auto;
		width: 95%;
	}

	/* Add Category - Server Error */
	#addCategoryServerError {
		background-color: red;
		border: none;
		border-radius: 8px;
		color: white;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 20px auto;
		width: 95%;
	}

}

/**************************************************
 							Add Sub-Category Page
**************************************************/

/* Section */
#addSubCategorySection {
	width: 100%;
	height: 100%;
	padding-top: 20px;
	padding-bottom: 100px;
	background-color: white;
}

/* Header */
#addSubCategoryHeader {
	color: #002080;
	font-weight: bold;
	font-size: 30px;
	text-align: center;
	padding-bottom: 20px;
}

/* Category Select */
#addSubCategorySelectedCategory {
	color: #594b0d;
	background: rgba(201, 169, 29, 0.6);
	border: none;
	border-radius: 8px;
	width: 80%;
	height: 60px;
	margin: auto auto 20px auto;
	font-size: 18px;
}

/* Text Boxes */
#addSubCategoryTextBoxes {
	color: #002080;
	background: rgba(201, 169, 29, 0.6);
	border: none;
	border-radius: 8px;
	width: 80%;
	height: 60px;
	margin: auto auto 20px auto;
	font-size: 18px;
}

/* Text Boxes Placeholder */
#addSubCategoryTextBoxes::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #594b0d;
}
#addSubCategoryTextBoxes::-moz-placeholder { /* Firefox 19+ */
  color: #594b0d;
}
#addSubCategoryTextBoxes:-ms-input-placeholder	{ /* IE 10+ */
  color: #594b0d;
}
#addSubCategoryTextBoxes:-moz-placeholder { /* Firefox 18- */
  color: #594b0d;
}

/* Image Upload */
#addNewSubCategoryImageSection {
	color: #594b0d;
	background: rgba(201, 169, 29, 0.6);
	border: none;
	border-radius: 8px;
	width: 80%;
	height: 200px;
	margin: auto auto 20px auto;
	padding: 20px;
	font-size: 18px;
}

/* Add Sub-Category Button */
#addSubCategoryFinalBtn {
	color: white;
	background: #002080;
	border: none;
	border-radius: 8px;
	width: 220px;
	height: 60px;
	margin: auto;
	font-size: 18px;
}
#addSubCategoryFinalBtn:hover,
#addSubCategoryFinalBtn:focus {
	background-color: #00cc00;
}

/* Add Sub-Category - Server Success */
#addSubCategoryServerSuccess {
	background-color: #00cc00;
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 20px auto;
	width: 80%;
}

/* Add Sub-Category - Server Error */
#addSubCategoryServerError {
	background-color: red;
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 20px auto;
	width: 80%;
}

/* On Small Screen */
@media screen and (max-width: 1024px) {

	/* Section */
	#addSubCategorySection {
		width: 100%;
		height: 100%;
		padding-top: 20px;
		padding-bottom: 50px;
		background-color: white;
	}

	/* Category Select */
	#addSubCategorySelectedCategory {
		color: #594b0d;
		background: rgba(201, 169, 29, 0.6);
		border: none;
		border-radius: 8px;
		width: 95%;
		height: 60px;
		margin: auto auto 20px auto;
		font-size: 16px;
	}

	/* Text Boxes */
	#addSubCategoryTextBoxes {
		color: #002080;
		background: rgba(201, 169, 29, 0.6);
		border: none;
		border-radius: 8px;
		width: 95%;
		height: 60px;
		margin: auto auto 20px auto;
		font-size: 16px;
	}

	/* Image Upload */
	#addNewSubCategoryImageSection {
		color: #594b0d;
		background: rgba(201, 169, 29, 0.6);
		border: none;
		border-radius: 8px;
		width: 95%;
		height: 100px;
		margin: auto auto 20px auto;
		padding: 20px;
		font-size: 16px;
	}

	/* Add Sub-Category Button */
	#addSubCategoryFinalBtn {
		color: white;
		background: #002080;
		border: none;
		border-radius: 8px;
		width: 95%;
		height: 60px;
		margin: auto;
		font-size: 16px;
	}
	#addSubCategoryFinalBtn:hover,
	#addSubCategoryFinalBtn:focus {
		background-color: #00cc00;
	}

	/* Add Sub-Category - Server Success */
	#addSubCategoryServerSuccess {
		background-color: #00cc00;
		border: none;
		border-radius: 8px;
		color: white;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 20px auto;
		width: 95%;
	}

	/* Add Sub-Category - Server Error */
	#addSubCategoryServerError {
		background-color: red;
		border: none;
		border-radius: 8px;
		color: white;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 20px auto;
		width: 95%;
	}

}

/**************************************************
 									Category Page
**************************************************/

/* Section */
#categoryPageSection {
	width: 100%;
	height: 100%;
	padding-top: 25px;
	padding-bottom: 100px;
	background-color: white;
}

/* Category Image */
#categoryImage {
	width: 80vh;
	margin: auto;
}

/* Hr Line */
#categoryHrLine {
	margin: auto auto 20px auto;
	border: 0;
	width: 100%;
	height: 4px;
	background: transparent;
	background-image: linear-gradient(to right, #fff, #e6c94d, #fff);
}

/* Header */
#categoryHeader {
	color: #002080;
	text-align: center;
	margin: auto auto 20px auto;
}

/* Sub-Category Thumbnail Click */
#subCategoryThumbnailClick {
	text-decoration: none;
}

/* Sub-Category Thumbnail */
#subCategoryThumbnail {
	position: relative;
	border-radius: 8px;
	border: 2px solid rgba(201, 169, 29, 0.4);
	margin: 20px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
#subCategoryThumbnail:hover {
	border: 2px solid #002080;
}

/* Sub-Category Thumbnail Image */
#subCategoryThumbnailImage {
	z-index: -99;
	width: 100%;
	padding: 1px;
	border-radius: 8px;
}

/* Sub-Category Thumbnail Name */
#subCategoryThumbnailName {
	color: #002080;
	font-size: 18px;
	text-align: center;
	margin-top: 20px;
	overflow: auto;
	white-space: nowrap;
}

/* Edit Sub-Category Button */
#editSubCategoryBtn {
	color: rgba(201, 169, 29, 0.4);
	background: transparent;
	border: none;
	width: 25%;
	height: 60px;
	margin: 5px;
	font-size: 22px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
#editSubCategoryBtn:hover,
#editSubCategoryBtn:focus {
	transform: scale(1.5);
	color: #ffa500;
}

/* Delete Sub-Category Button */
#deleteSubCategoryBtn {
	float: right;
	color: rgba(201, 169, 29, 0.4);
	background: transparent;
	border: none;
	width: 25%;
	height: 60px;
	margin: 5px;
	font-size: 22px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
#deleteSubCategoryBtn:hover,
#deleteSubCategoryBtn:focus {
	transform: scale(1.5);
	color: red;
}

/* Edit Sub-Category Modal */
#editSubCategoryModal {
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
	position: fixed;
	overflow: auto;
	width: 100%;
	height: 100%;
}

/* Edit Sub-Category Modal - Content */
#editSubCategoryModalContent {
	background-color: white;
  border: none;
	border-radius: 8px;
	padding: 3%;
  width: 50%;
	top: 50%;
  left: 50%;
	transform: translate(-50%, -50%);
}

/* Edit Sub-Category Modal - Close Button */
#closeEditSubCategoryModal {
	color: #e6c94d;
  font-size: 40px;
	text-align: right;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
#closeEditSubCategoryModal:hover,
#closeEditSubCategoryModal:focus {
  color: #705e10;
}

/* Edit Sub-Category Modal - Header */
#editSubCategoryModalHeader {
	color: #002080;
	text-align: center;
	margin-bottom: 20px;
}

/* Edit Sub-Category Modal - Text Box */
#editSubCategoryFormTextBoxes {
	color: #002080;
	background: rgba(201, 169, 29, 0.6);
	border: none;
	border-radius: 100px;
	width: 80%;
	height: 60px;
	margin: auto auto 20px auto;
	font-size: 18px;
}

/* Text Boxes Placeholder */
#editSubCategoryFormTextBoxes::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #594b0d;
}
#editSubCategoryFormTextBoxes::-moz-placeholder { /* Firefox 19+ */
  color: #594b0d;
}
#editSubCategoryFormTextBoxes:-ms-input-placeholder	{ /* IE 10+ */
  color: #594b0d;
}
#editSubCategoryFormTextBoxes:-moz-placeholder { /* Firefox 18- */
  color: #594b0d;
}

/* Edit Sub-Category Modal - Save Button */
#saveEditSubCategoryBtn {
	color: white;
	background: #002080;
	border: none;
	border-radius: 100px;
	width: 300px;
	height: 60px;
	margin: auto;
	font-size: 18px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
#saveEditSubCategoryBtn:hover,
#saveEditSubCategoryBtn:focus {
	background-color: #00cc00;
}

/* Edit Sub-Category - Server Response Success */
#editSubCategoryServerResponseSuccess {
	background-color: #00cc00;
	border: none;
	border-radius: 20px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 20px auto;
	width: 80%;
}

/* Edit Sub-Category - Server Response Error */
#editSubCategoryServerResponseError {
	background-color: red;
	border: none;
	border-radius: 20px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 20px auto;
	width: 80%;
}

/* Delete Sub-Category Modal */
#deleteSubCategoryModal {
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
	position: fixed;
	overflow: auto;
	width: 100%;
	height: 100%;
}

/* Delete Sub-Category Modal - Content */
#deleteSubCategoryModalContent {
	background-color: white;
  border: none;
	border-radius: 8px;
	padding: 3%;
  width: 50%;
	top: 50%;
  left: 50%;
	transform: translate(-50%, -50%);
}

/* Delete Sub-Category Modal - Close Button */
#closeDeleteSubCategoryModal {
	color: #e6c94d;
  font-size: 40px;
	text-align: right;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
#closeDeleteSubCategoryModal:hover,
#closeDeleteSubCategoryModal:focus {
  color: #ff0000;
}

/* Delete Sub-Category Modal - Text */
#deleteSubCategoryModalText {
	color: #002080;
	font-size: 18px;
	text-align: center;
	margin-bottom: 20px;
}

/* Delete Sub-Category Modal - Yes Button */
#deleteSubCategoryFinalBtn {
	color: white;
	background: #002080;
	border: none;
	border-radius: 100px;
	margin: 10px;
	height: 60px;
	width: 150px;
	font-size: 18px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
#deleteSubCategoryFinalBtn:hover,
#deleteSubCategoryFinalBtn:focus {
	color: white;
  background-color: #cc0000;
}

/* Delete Sub-Category Modal - No Button */
#deleteSubCategoryNoBtn {
	color: white;
	background: #002080;
	border: none;
	border-radius: 100px;
	margin: 10px;
	height: 60px;
	width: 150px;
	font-size: 18px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
#deleteSubCategoryNoBtn:hover,
#deleteSubCategoryNoBtn:focus {
	color: white;
  background-color: #e6c94d;
}

/* Delete Sub-Category Error */
#deleteSubCategoryResponseError {
	background-color: red;
	border: none;
	border-radius: 100px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 20px auto;
	width: 80%;
}

/* On Small Screen */
@media screen and (max-width: 1024px) {

	/* Category Image */
	#categoryImage {
		width: 100%;
		margin-top: 20px;
	}

	/* Sub-Category Thumbnail Name */
	#subCategoryThumbnailName {
		color: #002080;
		font-size: 18px;
		text-align: center;
		margin-top: 20px;
		overflow: auto;
		white-space: nowrap;
	}

	/* Edit Sub-Category Modal - Content */
	#editSubCategoryModalContent {
		background-color: white;
	  border: none;
		border-radius: 8px;
		padding: 5%;
	  width: 95%;
		top: 50%;
	  left: 50%;
		transform: translate(-50%, -50%);
	}

	/* Edit Sub-Category Modal - Text Box */
	#editSubCategoryFormTextBoxes {
		color: #002080;
		background: rgba(201, 169, 29, 0.6);
		border: none;
		border-radius: 100px;
		width: 100%;
		height: 60px;
		margin: auto auto 20px auto;
		font-size: 18px;
	}

	/* Edit Sub-Category Modal - Save Button */
	#saveEditSubCategoryBtn {
		color: white;
		background: #002080;
		border: none;
		border-radius: 100px;
		width: 300px;
		height: 60px;
		margin: auto;
		font-size: 18px;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		-ms-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
	#saveEditSubCategoryBtn:hover,
	#saveEditSubCategoryBtn:focus {
		background-color: #00cc00;
	}

	/* Edit Sub-Category - Server Response Success */
	#editSubCategoryServerResponseSuccess {
		background-color: #00cc00;
		border: none;
		border-radius: 20px;
		color: white;
		font-size: 18px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 20px auto;
		width: 100%;
	}

	/* Edit Sub-Category - Server Response Error */
	#editSubCategoryServerResponseError {
		background-color: red;
		border: none;
		border-radius: 20px;
		color: white;
		font-size: 18px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 20px auto;
		width: 100%;
	}

	/* Delete Sub-Category Modal - Content */
	#deleteSubCategoryModalContent {
		background-color: white;
	  border: none;
		border-radius: 8px;
		padding: 5%;
	  width: 95%;
		top: 50%;
	  left: 50%;
		transform: translate(-50%, -50%);
	}

	/* Delete Sub-Category Modal - Text */
	#deleteSubCategoryModalText {
		color: #002080;
		font-size: 18px;
		text-align: center;
		margin-bottom: 20px;
	}

	/* Delete Sub-Category Modal - Yes Button */
	#deleteSubCategoryFinalBtn {
		color: white;
		background: #002080;
		border: none;
		border-radius: 100px;
		margin: 10px;
		height: 60px;
		width: 100px;
		font-size: 18px;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		-ms-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
	#deleteSubCategoryFinalBtn:hover,
	#deleteSubCategoryFinalBtn:focus {
		color: white;
	  background-color: #cc0000;
	}

	/* Delete Sub-Category Modal - No Button */
	#deleteSubCategoryNoBtn {
		color: white;
		background: #002080;
		border: none;
		border-radius: 100px;
		margin: 10px;
		height: 60px;
		width: 100px;
		font-size: 18px;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		-ms-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
	#deleteSubCategoryNoBtn:hover,
	#deleteSubCategoryNoBtn:focus {
		color: white;
	  background-color: #e6c94d;
	}

	/* Delete Sub-Category Error */
	#deleteSubCategoryResponseError {
		background-color: red;
		border: none;
		border-radius: 100px;
		color: white;
		font-size: 18px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 20px auto;
		width: 100%;
	}

}

/**************************************************
 								Sub-Category Page
**************************************************/

/* Section */
#subCategorySection {
	width: 100%;
	height: 100%;
	padding-top: 25px;
	padding-bottom: 100px;
	background-color: white;
}

/* Sub-Category Image */
#subCategoryImage {
	width: 80vh;
	margin: auto;
}

/* Hr Line */
#subCategorySectionHrLine {
	margin: auto auto 20px auto;
	border: 0;
	width: 100%;
	height: 4px;
	background: transparent;
	background-image: linear-gradient(to right, #fff, #e6c94d, #fff);
}

/* Header */
#subCategorySectionHeader {
	color: #002080;
	text-align: center;
	margin: auto auto 20px auto;
}

/* Item Thumbnail Click */
#itemThumbnailClick {
	text-decoration: none;
}

/* Item Thumbnail */
#itemThumbnail {
	position: relative;
	border-radius: 8px;
	border: 2px solid rgba(201, 169, 29, 0.4);
	margin: 20px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
#itemThumbnail:hover {
	border: 2px solid #002080;
}

/* Item Thumbnail Image */
#itemThumbnailImage {
	z-index: -99;
	width: 100%;
	padding: 1px;
	border-top-right-radius: 25px;
	border-top-left-radius: 25px;
}

/* Item Thumbnail Name */
#itemThumbnailName {
	display: block;
  display: -webkit-box;
  width: 95%;
  height: 45px;
  line-height: 1;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
	color: #002080;
	font-size: 18px;
	text-align: center;
	margin: 20px auto;
}

/* On Small Screen */
@media screen and (max-width: 1024px) {

	/* Sub-Category Image */
	#subCategoryImage {
		width: 100%;
		margin-top: 20px;
	}

	/* Item Thumbnail Name */
	#itemThumbnailName {
		display: block;
	  display: -webkit-box;
	  width: 95%;
	  height: 45px;
	  line-height: 1;
	  -webkit-line-clamp: 3;
	  -webkit-box-orient: vertical;
	  -moz-box-orient: vertical;
	  -ms-box-orient: vertical;
	  overflow: hidden;
	  text-overflow: ellipsis;
		color: #002080;
		font-size: 18px;
		text-align: center;
		margin: 20px auto;
	}

}

/**************************************************
 										Item Page
**************************************************/

/* Section */
#itemSection {
	width: 100%;
	height: 100%;
	padding-top: 25px;
	padding-bottom: 100px;
	background-color: white;
}

/* Edit Item Button */
#editItemBtn {
	background: #e6c94d;
	bottom: 60px;
	right: 60px;
	width: 60px;
	height: 60px;;
	float: right;
	margin-right: 20px;
	border: none;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}
#editItemBtn i {
	position: relative;
	color: white;
	left: 3px;
	top: 14px;
	font-size: 22px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#editItemBtn:hover i {
	transform: scale(1.5);
}

/* Delete Item Button */
#deleteItemBtn {
	background: #e6c94d;
	bottom: 60px;
	right: 60px;
	width: 60px;
	height: 60px;;
	float: right;
	margin-right: 10px;
	border: none;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}
#deleteItemBtn i {
	position: relative;
	color: white;
	top: 14px;
	font-size: 22px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#deleteItemBtn:hover i {
	transform: scale(1.5);
	color: red;
}

/* Photo Slides */
#itemPhotoSlides {
	width: 100%;
}

/* Photo Slides Dots */
#itemPhotoSlidesIndicators {
	bottom: -30px;
}
#itemPhotoSlidesIndicators li {
	width: 40px;
	height: 3px;
	margin: 5px;
	cursor: pointer;
	border: none;
	border-radius: 100px;
	background-color: rgba(201, 169, 29, 0.3);
}
#itemPhotoSlidesIndicators .active {
	background-color: #002080;
	height: 3px;
}

/* Item Photo Slides Images */
#itemImage {
	margin: auto;
	width: 100%;
}

/* Item Name */
#itemName {
	color: #002080;
	text-align: left;
	font-weight: bold;
}

/* Item Price */
#itemPrice {
	color: red;
	text-align: left;
	font-weight: bold;
	margin-bottom: 40px;
}

/* Item Description Header */
#itemDescriptionHeader {
	font-weight: bold;
	color: #002080;
	text-align: left;
}

/* Item Description */
#itemDescriptionBody {
	color: #e6c94d;
	font-size: 18px;
	text-align: justify;
	white-space: pre-wrap;
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
	word-wrap: break-word;
}

/* Edit Item Modal */
#editItemModal {
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
	position: fixed;
	overflow: auto;
	width: 100%;
	height: 100%;
}

/* Edit Item Modal - Content */
#editItemModalContent {
	background-color: white;
  border: none;
	border-radius: 8px;
	padding: 3%;
  width: 95%;
	margin: 2% auto;
}

/* Edit Item Modal - Close Button */
#closeEditItemModal {
	color: #e6c94d;
  font-size: 40px;
	text-align: right;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
#closeEditItemModal:hover,
#closeEditItemModal:focus {
  color: #705e10;
}

/* Edit Item Modal - Header */
#editItemModalHeader {
	color: #002080;
	text-align: center;
	margin-bottom: 20px;
}

/* Edit Item Image Thumbnail */
#editItemImageThumbnail {
	border-radius: 8px;
	border: 2px solid rgba(201, 169, 29, 0.4);
	margin: 20px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
#editItemImageThumbnail:hover {
	border: 2px solid #002080;
}

/* Edit Item Image */
#editItemImage {
	z-index: -99;
	width: 100%;
	padding: 1px;
	border-top-right-radius: 25px;
	border-top-left-radius: 25px;
}

/* Delete Item Image Button */
#deleteItemImageBtn {
	color: rgba(201, 169, 29, 0.4);
	background: transparent;
	border: none;
	width: 25%;
	height: 60px;
	margin: 5px;
	font-size: 22px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
#deleteItemImageBtn:hover,
#deleteItemImageBtn:focus {
	transform: scale(1.5);
	color: red;
}

/* Edit Item Modal - Labels */
#editItemLabels {
	color: #002080;
	text-align: left;
	font-size: 18px;
}

/* Edit Item Modal - Text Box */
#editItemFormTextBoxes {
	color: #002080;
	background: rgba(201, 169, 29, 0.6);
	border: none;
	border-radius: 100px;
	width: 100%;
	height: 60px;
	margin-bottom: 40px;
	font-size: 18px;
}

/* Edit Item Modal - Description Box */
#editItemDescriptionBoxe {
	color: #002080;
	background: rgba(201, 169, 29, 0.6);
	border: none;
	border-radius: 30px;
	width: 100%;
	margin-bottom: 40px;
	font-size: 18px;
}

/* Text Boxes Placeholder */
#editItemFormTextBoxes::-webkit-input-placeholder,
#editItemDescriptionBoxe::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #594b0d;
}
#editItemFormTextBoxes::-moz-placeholder,
#editItemDescriptionBoxe::-webkit-input-placeholder { /* Firefox 19+ */
  color: #594b0d;
}
#editItemFormTextBoxes:-ms-input-placeholder,
#editItemDescriptionBoxe::-webkit-input-placeholder	{ /* IE 10+ */
  color: #594b0d;
}
#editItemFormTextBoxes:-moz-placeholder,
#editItemDescriptionBoxe::-webkit-input-placeholder { /* Firefox 18- */
  color: #594b0d;
}

/* Edit Item Modal - Save Button */
#saveEditItemBtn {
	color: white;
	background: #002080;
	border: none;
	border-radius: 100px;
	width: 300px;
	height: 60px;
	margin: auto;
	font-size: 18px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
#saveEditItemBtn:hover,
#saveEditItemBtn:focus {
	background-color: #00cc00;
}

/* Edit Item - Server Success */
#editItemServerSuccess {
	background-color: #00cc00;
	border: none;
	border-radius: 20px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 40px auto;
	width: 100%;
}

/* Edit Item - Server Error */
#editItemServerError {
	background-color: red;
	border: none;
	border-radius: 20px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 40px auto;
	width: 100%;
}

/* Delete Item Modal */
#deleteItemModal {
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
	position: fixed;
	overflow: auto;
	width: 100%;
	height: 100%;
}

/* Delete Item Modal - Content */
#deleteItemModalContent {
	background-color: white;
  border: none;
	border-radius: 8px;
	padding: 3%;
  width: 50%;
	top: 50%;
  left: 50%;
	transform: translate(-50%, -50%);
}

/* Delete Item Modal - Close Button */
#closeDeleteItemModal {
	color: #e6c94d;
  font-size: 40px;
	text-align: right;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
#closeDeleteItemModal:hover,
#closeDeleteItemModal:focus {
  color: #ff0000;
}

/* Delete Item Modal - Text */
#deleteItemModalText {
	color: #002080;
	font-size: 18px;
	text-align: center;
	margin-bottom: 20px;
}

/* Delete Item Modal - Yes Button */
#deleteItemFinalBtn {
	color: white;
	background: #002080;
	border: none;
	border-radius: 100px;
	margin: 10px;
	height: 60px;
	width: 150px;
	font-size: 18px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
#deleteItemFinalBtn:hover,
#deleteItemFinalBtn:focus {
	color: white;
  background-color: #cc0000;
}

/* Delete Item Modal - No Button */
#deleteItemNoBtn {
	color: white;
	background: #002080;
	border: none;
	border-radius: 100px;
	margin: 10px;
	height: 60px;
	width: 150px;
	font-size: 18px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
#deleteItemNoBtn:hover,
#deleteItemNoBtn:focus {
	color: white;
  background-color: #e6c94d;
}

/* Delete Item Error */
#deleteItemResponseError {
	background-color: red;
	border: none;
	border-radius: 100px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 20px auto;
	width: 80%;
}

/* On Small Screen */
@media screen and (max-width: 1024px) {

	/* Item Name */
	#itemName {
		color: #002080;
		text-align: center;
		font-weight: bold;
		margin: 40px auto 20px auto;
	}

	/* Item Price */
	#itemPrice {
		color: red;
		text-align: center;
		font-weight: bold;
		margin-bottom: 40px;
	}

	/* Edit Item Modal */
	#editItemModal {
		background-color: rgba(0, 0, 0, 0.6);
		display: none;
		position: fixed;
		overflow: auto;
		width: 100%;
		height: 100%;
	}

	/* Edit Item Modal - Content */
	#editItemModalContent {
		background-color: white;
	  border: none;
		border-radius: 8px;
		padding: 5%;
	  width: 95%;
		margin: 2% auto;
	}

	/* Edit Item Modal - Labels */
	#editItemLabels {
		color: #002080;
		text-align: left;
		font-size: 18px;
	}

	/* Edit Item Modal - Text Box */
	#editItemFormTextBoxes {
		color: #002080;
		background: rgba(201, 169, 29, 0.6);
		border: none;
		border-radius: 100px;
		width: 100%;
		height: 60px;
		margin-bottom: 40px;
		font-size: 18px;
	}

	/* Edit Item Modal - Description Box */
	#editItemDescriptionBoxe {
		color: #002080;
		background: rgba(201, 169, 29, 0.6);
		border: none;
		border-radius: 30px;
		width: 100%;
		margin-bottom: 40px;
		font-size: 18px;
	}

	/* Edit Item Modal - Save Button */
	#saveEditItemBtn {
		color: white;
		background: #002080;
		border: none;
		border-radius: 100px;
		width: 300px;
		height: 60px;
		margin: auto;
		font-size: 18px;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		-ms-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
	#saveEditItemBtn:hover,
	#saveEditItemBtn:focus {
		background-color: #00cc00;
	}

	/* Edit Item - Server Response Success */
	#editItemServerResponseSuccess {
		background-color: #00cc00;
		border: none;
		border-radius: 20px;
		color: white;
		font-size: 18px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 40px auto;
		width: 100%;
	}

	/* Edit Item - Server Response Error */
	#editItemServerResponseError {
		background-color: red;
		border: none;
		border-radius: 20px;
		color: white;
		font-size: 18px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 40px auto;
		width: 100%;
	}

	/* Delete Item Modal - Content */
	#deleteItemModalContent {
		background-color: white;
	  border: none;
		border-radius: 8px;
		padding: 5%;
	  width: 95%;
		top: 50%;
	  left: 50%;
		transform: translate(-50%, -50%);
	}

	/* Delete Item Modal - Text */
	#deleteItemModalText {
		color: #002080;
		font-size: 18px;
		text-align: center;
		margin-bottom: 20px;
	}

	/* Delete Item Modal - Yes Button */
	#deleteItemFinalBtn {
		color: white;
		background: #002080;
		border: none;
		border-radius: 100px;
		margin: 10px;
		height: 60px;
		width: 100px;
		font-size: 18px;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		-ms-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
	#deleteItemFinalBtn:hover,
	#deleteItemFinalBtn:focus {
		color: white;
	  background-color: #cc0000;
	}

	/* Delete Item Modal - No Button */
	#deleteItemNoBtn {
		color: white;
		background: #002080;
		border: none;
		border-radius: 100px;
		margin: 10px;
		height: 60px;
		width: 100px;
		font-size: 18px;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		-ms-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
	#deleteItemNoBtn:hover,
	#deleteItemNoBtn:focus {
		color: white;
	  background-color: #e6c94d;
	}

	/* Delete Item Error */
	#deleteItemResponseError {
		background-color: red;
		border: none;
		border-radius: 100px;
		color: white;
		font-size: 18px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 20px auto;
		width: 100%;
	}

}

/**************************************************
 										Back To Top
**************************************************/

#backToTop {
	position: fixed;
	display: none;
	background: rgba(0, 0, 175, 0.8);
	bottom: 60px;
	right: 60px;
	width: 60px;
	height: 60px;
	text-decoration: none;
	border: none;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#backToTop i {
	position: relative;
	color: white;
	left: 15px;
	top: 33px;
	margin-top: -35px;
	font-size: 35px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#backToTop:hover i {
	top: 15px;
}

/* On Small Screen */
@media screen and (max-width: 1024px) {

	#backToTop {
		position: fixed;
		display: none;
		background: rgba(0, 0, 175, 0.8);
		bottom: 30px;
		right: 30px;
		width: 60px;
		height: 60px;
		text-decoration: none;
		border: none;
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		border-radius: 8px;
		-webkit-transition: all 0.3s linear;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}

}

/**************************************************
 												Footer
**************************************************/

/* Section */
#footerSection {
	background-color: #e6c94d;
}

/* Footer Text 1 */
#footerText1	{
	color: white;
	font-size: 12px;
	padding-top: 100px;
}

/* Footer Text 2 */
#footerText2	{
	font-size: 10px;
	color: white;
	margin: 0;
	padding-bottom: 100px;
}
