@import url('https://fonts.googleapis.com/css?family=Noto+Sans:400,700|Roboto:300,400,500,700');

html {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	width: 100%;
	height: 100%;
    color: #191919;
    font-family: 'Noto Sans', sans-serif;
	background: url(../imgs/bg.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../imgs/bg.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../imgs/bg.jpg', sizingMethod='scale')";
}

img {
    vertical-align: baseline;
}

a {
    color: #8cc2ff;
}

a:visited {
    color: purple;
}

a:hover, a:focus, a:active {
    color: #0022ee;
}

a:focus {
    outline: thin dotted;
}

a:hover, a:active {
    outline: 0;
    list-style: none;
}

.flex {
    display: flex;
}

.error-msg {
	display: none;
}

.link {
	color: #8cc2ff;
	cursor: pointer;
}

.clickable {
	cursor: pointer;
}

#admin-btn {
	display: none;
}

.menu-admin {
	display: none;
	padding-top: 100px;
}

.tab-content {
	padding-top: 10px;
}

.form-rounded {
	border-radius: 0.3rem;
}

#product-fav {
	font-size: 30px;
	display: inline;
}

#product-name {
	display: inline;
	color: #333;
}

.rounded-corner {
	border: solid 1px #4c4c4c;
    border-radius: 0.5em;
}

.fa-heart {
    color: #8cc2ff;
}

.menu-favs {
	color: #ddd;
}

@media screen and (min-width: 992px) {
    .outer-container {
        padding-left: 80px;
    }
}

@media screen and (min-width: 768px) {
    .no-padding {
        padding: 0;
    }
}

.site-branding {
    transition: all .5s;
	text-align: center;
}

.site-title {
    margin: 0;
    text-align: center;
}

.site-navigation .site-title a {
    display: block;
}

.menu-favs {
	display: none;
}

.hamburger-menu .menu-icon {
    width: 44px;
    height: 44px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s;
}

.hamburger-menu.close .menu-icon {
    visibility: hidden;
    opacity: 0;
}

.hamburger-menu img {
    display: block;
    margin: 0 auto;
}

.site-navigation {
    transition: all .5s;
	color: #686868;
}

.main-menu {
    padding: 15px 30px;
    margin: 0;
}

.main-menu li {
    display: block;
    padding: 12px 0;
    font-size: 26px;
    font-weight: 500;
    border-bottom: 1px solid #ebebeb;
}

.main-menu li:nth-last-of-type(1) {
    border-bottom: 0;
}

.main-menu li a {
    display: block;
    color: #686868;
    text-decoration: none;
    transition: all 0.35s;
}

.main-menu li a:hover,
.main-menu li.current-menu-item a {
    color: #8cc2ff;
}

.social-profiles ul {
    padding: 10px 0 34px 0;
    margin: 0;
}

.social-profiles ul li {
    display: block;
    padding: 0 18px;
    font-size: 1.5rem;
}

.social-profiles ul li a {
    color: #686868;
    transition: all 0.35s;
}

.social-profiles ul li a:hover {
    color: #8cc2ff;
}

.nav-bar-sep {
    height: 78px;
}

@media screen and (max-width: 992px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        width: 100%;
        padding: 15px 30px;
        background: #333;
		color: #ddd;
        box-shadow: 0 12px 24px rgba(0,0,0,.09);
    }

    .site-header,
    .hamburger-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger-menu {
        flex-flow: column;
    }

    .hamburger-menu .menu-icon, .hamburger-menu .menu-close-icon {
        position: absolute;
        top: 26px;
        right: 24px;
    }

    .main-menu li {
        position: relative;
    }

    .main-menu li::after {
        content: '';
        position: absolute;
        top: 11px;
        right: 0;
        font-family: 'FontAwesome', serif;
    }

    .main-menu li:hover::after,
    .main-menu li.current-menu-item::after {
        color: #8cc2ff;
    }

    .site-navigation {
        position: absolute;
        top: 78px;
        left: 0;
        z-index: 99;
        width: 100%;
        height: 500px;
        background: #fff;
        box-shadow: 0 12px 24px rgba(0,0,0,.09);
        visibility: hidden;
        opacity: 0;
        transition: all 0.35s;
    }

    .site-navigation.show {
        visibility: visible;
        opacity: 1;
    }

    .social-profiles ul {
        padding: 80px 15px 30px;
        margin: 0;
    }

	.site-login {
		position: absolute;
		top: 15px;
		right: 70px;
		display: none;
	}

	.site-logout {
		position: absolute;
		top: 15px;
		right: 70px;
		display: none;
	}
}

@media screen and (min-width: 992px) {
    .site-header,
    .site-navigation {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        width: 80px;
        height: 100vh;
        padding: 0 15px;
        box-shadow: 6px 0 12px rgba(0,0,0,.05);
    }

    .site-navigation {
        background: #f7f7f7;
    }

    .site-navigation.show {
        left: 80px;
    }

    .site-header {
        background: #333;
		color: #ddd;
    }

    .site-header.no-shadow {
        box-shadow: none;
    }

    .site-header .site-branding.hide {
        visibility: hidden;
        opacity: 0;
    }

    .site-title {
        padding: 28px 0 10px 0;
    }

    .hamburger-menu .menu-icon,
    .hamburger-menu .menu-close-icon {
        position: absolute;
        top: calc(50vh - 22px);
        left: 15px;
        width: calc(100% - 30px);
        padding: 10px 0;
    }

    .site-navigation {
        left: -250px;
        z-index: 99;
        width: 250px;
        padding: 0;
        box-shadow: 16px 0 42px rgba(0,0,0,.09);
    }

    .main-menu {
        height: calc(100vh - 160px);
        padding: 0;
    }

    .main-menu li {
        border-bottom: 0;
        text-align: center;
    }

    .social-profiles ul li {
        font-size: 1.125rem;
    }

	.site-login {
		position: absolute;
		bottom: 10px;
		left: 22px;
		display: none;
	}

	.site-logout {
		position: absolute;
		bottom: 10px;
		left: 22px;
		display: none;
	}
}

.menu-content {
    position: relative;
    margin-bottom: 30px;
}

.menu-content figure {
    margin: 0;
}

.menu-content figure img {
    display: block;
    width: 100%;
    height: auto;
    /*min-height: 100%;
	max-height: 200px;*/
	border-top-left-radius: 0.5em;
	border-top-right-radius:0.5em;
	border: solid 1px #999;
}

.menu-content .entry-content {
    width: 100%;
    height: 100%;
    background-color: #333;
    font-family: 'Roboto', sans-serif;
	color: #eee;
    text-align: center;
    transition: all 0.35s;
	border-bottom-left-radius: 0.5em;
	border-bottom-right-radius:0.5em;
}

.fav {
	position: absolute;
    top: 0;
    right: 6px;
    visibility: visible;
    opacity: 1;
	color: darkred;
	font-size: 28px;
}

.newprod {
    position: absolute;
    top: 5px;
    left: 5px;
}

.noshow {
	display: none !important;
}

.prices {
	display: none;
}

#editproduct-image-imgpreview {
	width: 30px;
	height: auto;
}

#editcategory-image-imgpreview {
	width: 30px;
	height: auto;
}

.menu-content h3 {
    margin-bottom: 0;
	padding-top: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
}

.menu-content h3 a {
    color: #eee;
    text-decoration: none;
}

.menu-content ul {
    padding: 0;
    margin: 3px 0 0;
    list-style: none;
}

.menu-content li {
    margin: 3px;
}

.menu-content li a {
    font-size: 0.875rem;
    color: #3e3e3e;
    background-color: #b0d3f9;
    border: solid 1px #8cc2ff;
	padding: 2px;
	border-radius: 0.3rem;
}

.menu-content li a:hover {
    color: #2e2e2e;
    background-color: #8cc2ff;
    border: solid 1px #8cc2ff;
}

@media screen and (min-width: 768px) {
    .home-page {
        padding: 0;
    }

    .home-page .menu-content {
        margin-bottom: 0;
    }
}

.breadcrumbs {
    padding: 48px 0;
    margin: 0;
    color: #a6a6a6;
    list-style: none;
    font-family: 'Roboto', sans-serif;
	font-size: 14pt;
}

.breadcrumbs li {
    position: relative;
    color: #a6a6a6;
    padding: 0 12px;
}

.breadcrumbs li:nth-of-type(1) {
    padding-left: 0;
}

.breadcrumbs li::after {
    content: '/';
    position: absolute;
    top: 0;
    right: -6px;
    width: 10px;
}

.breadcrumbs li:nth-last-of-type(1)::after {
    display: none;
}

.breadcrumbs li a {
    text-decoration: none;
    color: #3e3e3e;
    background-color: #b0d3f9;
    border: solid 1px #8cc2ff;
    padding: 2px;
    border-radius: 0.3rem;
}

.modal-header h4 {
	position: absolute;
    top: 8px;
    left: 10px;
}
.modal-fullscreen {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
}
.modal-fullscreen .modal-dialog {
	position: fixed;
	margin: 0;
	width: 100% !important;
	height: 100% !important;
	padding: 0;
}
.modal-fullscreen .modal-content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0;
}

@media (min-width: 576px) {
	.modal-fullscreen .modal-dialog {
		max-width: 100%;
	}
}

.menu-product {
    padding-top: 15px;
    padding-bottom: 70px;
	display: none;
}

.menu-product figure {
	text-align: center;
}

.menu-product figure img {
    max-width: 100%;
	max-height: 300px;
	border-radius: 0.5em;
	border: solid 1px #999;
}

.menu-product .content-area h1 {
    margin-top: 20px;
    font-size: 2.25rem;
    font-family: 'Roboto', sans-serif;
}

.menu-product .content-area .entry-content {
    margin-top: 5px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #595959;
}

.menu-product .entry-meta {
    margin-top: 5px;
    font-family: 'Roboto', sans-serif;
    border: solid 1px #999;
    border-radius: 0.5em;
    background-color: #ddd;
	opacity: 0.8;
	color: #111;
    padding: 5px;
}

.menu-product .entry-meta label {
    display: block;
    line-height: 1.3;
    text-transform: uppercase;
}

.menu-product .product-descriptors,
.menu-product .product-tags {
    display: block;
    margin-bottom: 26px;
}

.menu-product .product-tags span,
.menu-product .entry-meta span {
    color: #4c4c4c;
}

#product-desc {
	border: solid 1px #999;
	border-radius: 0.5em;
	background-color: #ddd;
	opacity: 0.8;
	color: #111;
	padding: 5px;
}

#product-saleprice {
	color: #bb0000;
}

.padded {
	padding: 5px;
}

.fa-edit {
	color: #007bff;
}

.nav-link {
	color: #333;
}

.strikeout {
	text-decoration: line-through;
}
