/***** VARIABLEs *****/

:root {
	--header-height: 90px;
	--primary: hsl(213, 46%, 50%);
	--primary-light: hsl(213, 46%, 60%);
	--primary-dark: hsl(213, 46%, 40%);
}

/***** MODIFS BOOTSTRAP *****/

@media (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}
}

a,
a:focus {
	color: var(--primary);
}
a:active,
a:hover {
	color: var(--primary-dark);
}
a[data-toggle="dropdown"]:hover {
	text-decoration: none;
}

.required:after {
	content: ' *';
	color: var(--primary);
}
input[type="radio"] + label.required:after {
	content: none;
}

.form-control.is-invalid {
	height: auto;
}

.h1, h1 {
    font-size: 1.5rem;
}
.h2, h2 {
    font-size: 1.4rem;
}
.h3, h3 {
    font-size: 1.3rem;
}
.h4, h4 {
    font-size: 1.2rem;
}
.h5, h5 {
    font-size: 1.1rem;
}
.h6, h6 {
    font-size: 1rem;
}

.btn-primary {
	background-color: var(--primary);
	border-color: var(--primary-dark);
	color: white;
}
.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
	background-color: var(--primary-dark);
	border-color: var(--primary-dark);
	color: white;
}

.dropdown-menu {
	min-width: 0;
}

.btn.btn-link.focus,
.btn.btn-link:focus {
	box-shadow: none;
}

/***** MODIFS FONTAWESOME *****/

.fa-facebook-square {
    color: #3b5998;
}
.fa-twitter-square {
    color: #00aced;
}
.fa-instagram-square {
    color: #c13584;
}
@supports (-webkit-background-clip: text) {
	.fa-instagram-square {
	    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
	    background-clip: text;
	    -webkit-background-clip: text;
	    color: transparent;
	}
}
/***** LAYOUT *****/

body > header {
	position: fixed;
	top: 0;
	width: 100%;
	height: var(--header-height);
	z-index: 10;
}

body > main {
	margin-top: var(--header-height);
	padding: 1.5rem 2rem;
}

/***** JQUERY UI *****/

.ui-draggable-handle {
	cursor: move;	
}
.ui-droppable-hover {
	background-color: rgba(69, 122, 186, 0.25);
}

/***** HEADER *****/
body header > nav {
	background-color: var(--primary);
}
nav.navbar li.separator {
	margin: 0 5px;
	width: 1px; height: 25px;
    background: rgba(255,255,255,.5);
    align-self: center;
}

#shop-header {
	background-color: var(--primary-light);
}
#shop-header > div {
	display: inline-block;
}
#shop-header .shop-name {
	margin: 5px 20px;
	font-size: 1rem;
}
#shop-header .shop-name,
#shop-header .shop-name a {
	color: #ffc107;
	font-weight: 600;
}
#shop-header .shop-name a:hover {
	text-decoration: none;
}
#shop-header .dropdown .dropdown-toggle {
	color: white;
	font-size: 0.9rem;
}




/***** SHOP *****/

#shop-table img {
	max-width: 100px;
	min-height: 100px;
}

/***** COMPONENT *****/

.data-table tbody tr:last-child td {
	padding-bottom: 25px;
}
.row-off > td:not(:last-child) {
    opacity: 0.666;
}
.row-draft {
  background: rgba(222, 222, 222, 0.4);
}
.row-past {
  	background: rgba(255, 128, 128, 0.4);
}
.row-not-in {
	background: rgba(171, 171, 171, 0.4);
}

/* Content */
.content-table tr,
.content-table td {
	text-align: center;
	vertical-align: middle;
}

.content-video {
	position: relative;
}
.content-video::after {
position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    background-image: url(../images/play.png);
    background-size: 40px 40px;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.666;
}

.content-visual,
.content-video img {
	max-width: 100px;
	max-height: 100px;
}
.content a:focus,
.content-visual:focus {
	outline: none;
}

.contents [data-toggle="collapse"] {
	margin: 0;
	position: relative;
	cursor: pointer;
}
.contents [data-toggle="collapse"]::after {
	content: '\f077';
	position: absolute;
	right: 0;
	padding-top: 5px;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 1rem;
}
.contents [data-toggle="collapse"].collapsed::after {
	content: '\f078';
}


/* Category */
.category-visual,
.page-category-visual {
	max-width: 200px;
	max-height: 100px;
}


/* Product */
.product-visual {
	max-width: 100px;
	max-height: 100px;
}

.product-category-visual {
	max-width: 150px;
	max-height: 75px;
}

.product-description {
	height: 6rem;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

/* Prospectus */
.prospectus-visual-link {
	position: relative;
	display: inline-block;
}
.prospectus-visual-link .loading {
	position: absolute;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}
.prospectus-visual {
	max-width: 100px;
	min-width: 100px;
}
.prospectus-banner {
	max-width: 150px;
	min-width: 75px;
}

/* Page */
.page-visual {
	max-width: 200px;
	max-height: 200px;
}