body {
	--color-base: #5B5751;
	--color-light-base: #BAB1AB;
	--color-gray: #C4C4C4;
	--color-light-gray: #F2F2F2;
	--color-dark: #1A1A1A;

	--border-width: 0.03em;
	--block-padding: 20px;
	--grid-margin: 10px;

	--sidebar-width: 300px;

	font-family: 'Roboto Flex';
	font-style: normal;
	font-weight: 200;
	box-sizing: border-box;
	color: var(--color-dark);

	background-color: white;
}






header {
	display: none;
	position: fixed;
	background-color: var(--color-dark);
	top: 0;
	left: 0;
	right: 0;
	z-index: 5000;
	padding: 15px 10px;
}

header #header-logo {
	display: table;
	margin: 0 auto;
	padding: 0 0 0;
}

header #header-logo img {
	height: 35px;
}




#sidebar-btn.hamburger {
	padding: 4px 5px 2px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;

	position: fixed;
	top: 15px;
	left: 5px;
	z-index: 16500;
	outline: 0;
}

#sidebar-btn.hamburger:hover {
	opacity: 0.7;
}

.hamburger-box {
	width: 35px;
	height: 24px;
	display: inline-block;
	position: relative;
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 40px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
}

.hamburger-inner::before {
	top: -10px;
}

.hamburger-inner::after {
	bottom: -10px;
}

.hamburger--collapse .hamburger-inner {
	top: auto;
	bottom: 0;
	transition-duration: 0.13s;
	transition-delay: 0.13s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
	top: -20px;
	transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
	transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
	transform: translate3d(0, -10px, 0) rotate(-45deg);
	transition-delay: 0.22s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
	top: 0;
	opacity: 0;
	transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
	top: 0;
	transform: rotate(-90deg);
	transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner,
.hamburger--collapse.is-active .hamburger-inner::before,
.hamburger--collapse.is-active .hamburger-inner::after {
	background-color: white;
}











#sidebar {
	background-color: var(--color-base);
	border-right: .5px solid rgba(255, 255, 255, .1);
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	width: var(--sidebar-width);
	height: 100vh;
	padding: 0;
	z-index: 10000;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

#sidebar:after {
	--width: 250px;
	content: "";
	border-radius: 50%;
	top: calc(50% - (var(--width) / 2) - 50px);
	right: -80px;
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
	position: absolute;
	display: block;
	height: 250px;
	width: 250px;
	opacity: .5;
	border-left: .04em solid var(--color-gray);
	border-right: .04em solid transparent;
	border-bottom: .04em solid var(--color-gray);
	border-top: .04em solid transparent;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-animation-name: spin;
	-webkit-animation-duration: 5000ms;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease;
	-moz-animation-name: spin;
	-moz-animation-duration: 5000ms;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: ease;
	-ms-animation-name: spin;
	-ms-animation-duration: 5000ms;
	-ms-animation-iteration-count: infinite;
	-ms-animation-timing-function: ease;

	animation-name: spin;
	animation-duration: 5000ms;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
}

@-moz-keyframes spin {
	from {
		-moz-transform: rotate(45deg);
	}

	to {
		-moz-transform: rotate(405deg);
	}
}

@-webkit-keyframes spin {
	from {
		-webkit-transform: rotate(45deg);
	}

	to {
		-webkit-transform: rotate(405deg);
	}
}

@keyframes spin {
	from {
		transform: rotate(45deg);
	}

	to {
		transform: rotate(405deg);
	}
}

#sidebar .sidebar-logo {
	width: 70%;
	margin: 0 0;
	display: block;
	position: absolute;
	top: 30px;
	left: calc(50% - (70% / 2));
	z-index: 150;
}

#sidebar .sidebar-icon {
	width: 60%;
	left: calc(50% - (60% / 2));
	bottom: 20px;
	position: absolute;
	z-index: 150;
}

#sidebar #sidebar-nav {
	display: table;
	width: 100%;
	height: 100vh;
	margin: 0 auto;
	padding: 0 0;
	position: relative;
	background-color: var(--color-base);
	z-index: 100;
}

#sidebar #sidebar-nav ul {
	display: table-cell;
	height: 100%;
	width: 100%;
	vertical-align: middle;
	margin: 0 auto;
	padding: 0 0 0;
	list-style: none;
	position: relative;
	top: -50px;
}

#sidebar #sidebar-nav ul li {
	width: 100%;
	display: block;
	text-align: center;
	margin: 8px auto;
	position: relative;
	line-height: 35px;
}

#sidebar #sidebar-nav ul li:first-child:before,
#sidebar #sidebar-nav ul li:last-child:before {
	width: 1px;
	height: 40px;
	display: block;
	content: "";
	position: absolute;
	border-right: var(--border-width) solid rgba(255, 255, 255, .5);
	top: -50px;
	left: calc(50% - (1px / 2));
}

#sidebar #sidebar-nav ul li:last-child:before {
	top: auto;
	bottom: -50px;
}

#sidebar #sidebar-nav ul li a,
footer .footer-nav li a {
	text-transform: uppercase;
	font-family: 'Roboto Flex';
	color: rgba(255, 255, 255, .7);
	text-decoration: none;
	letter-spacing: .1em;
	text-shadow: -.25px -.25px 0 transparent, .25px .25px transparent;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

#sidebar #sidebar-nav ul li a:hover,
footer .footer-nav li a:hover {
	color: rgba(255, 255, 255, 1);
	text-shadow: -.25px -.25px 0 white, .25px .25px white;
}



#viewport {
	width: 100%;
	padding: 0 0 0 var(--sidebar-width);
	display: block;
}




#slides {
	width: 100%;
	height: calc(100vh - var(--grid-margin));
	display: block;
	margin: 0 auto;
	position: relative;
}

.slides-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
	max-width: 500px;
	background-color: white;
	z-index: 1000;
	padding: 20px 35px;
}

.slides-content:after {
	--width: 250px;
	background-color: var(--color-gray);
	content: "";
	width: var(--width);
	height: .5px;
	display: block;
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	right: calc(var(--width) / -2);
	opacity: .5;
}

.slides-content .subtitle,
.collection-card .cc-content-wrapper .cc-resume,
#album .heading .subtitle {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 100%;
	text-transform: uppercase;
	color: var(--color-gray);
	letter-spacing: .15em;
}

.slides-content .title,
.collection-card .cc-content-wrapper .cc-name,
#album .heading .name {
	padding: 0 0 0;
	margin: 5px 0 15px;
	width: 100%;
	font-family: 'Roboto Flex';
	font-size: 2.3em;
	line-height: 30px;
	display: block;
	text-transform: uppercase;
	letter-spacing: .15em;
}

.slides-content .description,
.collection-card .cc-content-wrapper .cc-description,
#album .heading .description {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 90%;
	font-size: 1.15em;
}

.slides-content a,
.collection-card .cc-content-wrapper .cc-cta {
	color: var(--color-gray);
	margin-top: 15px;
	display: block;
	text-decoration: none;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.slides-content a:hover,
.collection-card .cc-content-wrapper .cc-cta:hover {
	color: var(--color-base);
}




#timeline {
	width: 100%;
	display: block;
	margin: 0 auto;
	padding: 30px var(--grid-margin);
	position: relative;
}

#timeline:after {
	width: .7px;
	height: 100%;
	background-color: var(--color-gray);
	display: block;
	top: 0;
	right: 50%;
	position: absolute;
	content: "";
	z-index: -1;
	opacity: .5;
}

#timeline h1,
#youtube h1,
#social h1,
#bio h1,
#contact h1 {
	font-family: 'Roboto Flex';
	font-style: normal;
	font-weight: 200;
	text-align: center;
	display: block;
	width: 100%;
	background-color: white;
	padding: 20px 0;
	margin: 50px auto;
}




.collection-card {
	width: 100%;
	max-width: 1000px;
	display: table;
	margin: 75px auto;
	position: relative;
}

.collection-card .cc-image-wrapper {
	position: relative;
}

.collection-card:nth-child(even) .cc-image-wrapper {
	padding: 0 var(--grid-margin) 0 0;
}

.collection-card:nth-child(odd) .cc-image-wrapper {
	padding: 0 0 0 var(--grid-margin);
}

.collection-card .cc-image-wrapper img {
	width: 100%;
}

.collection-card .cc-image-wrapper .cc-cta {
	background-color: var(--color-base);
	display: table;
	position: absolute;
	bottom: -10px;
	width: 100%;
	max-width: 150px;
	left: calc(50% - (150px / 2));
	z-index: 100;
	color: white;
	text-align: center;
	padding: 3px 0 0;
	text-decoration: none !important;
	line-height: 25px;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.collection-card .cc-image-wrapper .cc-cta:hover {
	background-color: var(--color-dark);
}

.collection-card .cc-content-wrapper {
	padding: 20px;
	text-align: center;
	display: table;
}

.collection-card .cc-content-wrapper .cc-content {
	display: table-cell;
	vertical-align: middle;
	height: 100%;
}

.collection-card .cc-content-wrapper .cc-name {
	text-decoration: none;
	color: var(--color-gray);
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.collection-card .cc-content-wrapper .cc-name:hover {
	color: var(--color-base);
}

.collection-card .cc-content-wrapper .cc-description {
	margin: 0 auto 0;
	width: 100%;
	max-width: 350px;
	color: var(--color-dark);
}

.collection-card .cc-content-wrapper .cc-link {
	display: block;
	margin: 15px auto 0;
	width: 60px;
}

.collection-card .cc-content-wrapper .cc-link img {
	width: 100%;
	display: block;
}

.collection-card .cc-content-wrapper ul.subcollections {
	background-color: var(--color-light-gray);
	padding: 20px;
	display: block;
	width: 100%;
	max-width: 350px;
	margin: 20px auto 0;
	list-style: none;
}

.collection-card .cc-content-wrapper ul.subcollections li a {
	text-decoration: none;
	text-transform: uppercase;
	color: var(--color-dark);
	line-height: 30px;
	text-shadow: -.25px -.25px 0 transparent, .25px .25px transparent;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.collection-card .cc-content-wrapper ul.subcollections li a:hover {
	text-shadow: -.25px -.25px 0 var(--color-dark), .25px .25px var(--color-dark);
}

.collection-card:nth-child(even):after {
	--width: 180px;
	background-color: var(--color-gray);
	content: "";
	width: var(--width);
	height: .5px;
	display: block;
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	bottom: -3px;
	right: calc(50% - (var(--width) / 2));
	opacity: .3;
	z-index: 100;
}

.collection-card:nth-child(odd):after {
	--width: 100px;
	background-color: transparent;
	border: 1px solid var(--color-gray);
	content: "";
	width: var(--width);
	height: var(--width);
	display: block;
	position: absolute;
	bottom: calc(var(--width) / -2);
	right: calc(50% - (var(--width) / 2));
	opacity: .3;
	z-index: 100;
	border-radius: 50%;
}


.collection-card .cc-image-wrapper .cc-title-mobile {
	position: absolute;
	background-color: var(--color-base);
	color: var(--color-light-gray);
	bottom: -10px;
	right: 0;
	line-height: 20px;
	padding: 3px 10px 0;
	width: 200px;
	text-align: right;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: .9em;
}

.collection-card .cc-image-wrapper .cc-subtitle-mobile {
	position: absolute;
	color: var(--color-gray);
	bottom: -35px;
	right: 0;
	line-height: 20px;
	padding: 3px 10px 0;
	width: 150px;
	font-size: .9em;
	text-align: right;
}







footer {
	width: 100%;
	display: block;
	margin: 100px auto var(--grid-margin);
	padding: var(--grid-margin) var(--grid-margin) 0;
	position: relative;
}

footer:after {
	--width: 100px;
	display: block;
	top: calc(var(--width) / -3);
	left: calc(50% + var(--width) / -2);
	z-index: 100;
	position: absolute;
	content: "";
	background-color: transparent;
	border: 1px solid var(--color-gray);
	height: var(--width);
	width: var(--width);
	border-radius: 50%;
	opacity: .5;
}

footer .footer-wrapper {
	z-index: 1000;
	position: relative;
	width: 100%;
	display: block;
	margin: 0 auto;
	padding: 50px 15px;
	background-color: var(--color-base);
}

footer .footer-nav {
	padding: 0 0 0;
	margin: 0 auto 25px;
	text-align: center;
	display: table;
}

footer .footer-nav li {
	display: inline-block;
	float: left;
}

footer .footer-nav li a {
	margin: 0 10px;
}

footer .footer-logo {
	width: 100%;
	max-width: 300px;
	display: block;
	margin: 0 auto 50px;
	opacity: .5;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

footer .footer-logo:hover {
	opacity: 1;
}

footer .footer-logo img {
	width: 100%;
}

footer .legal {
	width: 100%;
	max-width: 600px;
	display: block;
	margin: 0 auto;
	text-align: center;
	color: rgba(255, 255, 255, .5);
	font-size: .9em;
}








#social h1,
#youtube h1,
#contact .heading {
	position: relative;
}

#social h1:after,
#youtube h1:after,
#album .heading:after,
#bio .heading:after,
#contact .heading:after {
	--width: 180px;
	background-color: var(--color-gray);
	content: "";
	width: var(--width);
	height: .5px;
	display: block;
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 50%;
	right: calc(50% - (var(--width) / 2));
	opacity: .5;
}

#social {
	margin: 75px auto;
}

#youtube-link {
	width: 100%;
	max-width: 180px;
	margin: 30px auto;
	display: table;
}

#youtube-link img {
	width: 100%;
}

#social .social-links {
	list-style: none;
	margin: 25px auto;
	padding: 0 0 0;
	display: table;
}

#social .social-links li {
	float: left;
	margin: 0 10px 0;
	padding: 0 0 0;
}

#social .social-links li a {
	display: block;
	width: 100%;
	max-width: 60px;
	opacity: .5;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

#social .social-links li a:hover {
	opacity: 1;
}

#social .social-links li a img {
	width: 100%;
}






#youtube {
	width: 100%;
	display: table;
	margin: 25px auto;
	position: relative;
	padding: 0 0 0 var(--grid-margin);
}

#youtube-items {
	display: table;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.video-card-wrapper {
	padding: 0 var(--grid-margin) var(--grid-margin) 0;
}

.video-card {
	width: 100%;
	display: block;
	margin: 0 auto;
	padding: 0 0 0 0;
}

.video-card img {
	width: 100%;
}










#album {
	padding: 100px 0;
}

#album .heading,
#contact .heading {
	text-align: center;
	margin: 50px auto 75px;
	position: relative;
}

#album .heading:after,
#contact .heading:after {
	--width: 300px;
}

#album .heading .name,
#contact .heading .name {
	color: var(--color-dark);
}

#album .heading .description,
#contact .heading .description {
	max-width: 450px;
	display: block;
	margin: 0 auto;
}





#album-footer {
	width: 100%;
	text-align: center;
	margin: 50px auto 0;
}

#album-footer a {
	display: inline-block;
	width: 100%;
	max-width: 50px;
	margin: 0 20px;
	text-decoration: none;
	opacity: .5;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

#album-footer a:hover {
	opacity: 1;
}

#album-footer a img {
	width: 100%;
	max-width: 35px;
	display: block;
	margin: 0 auto 10px;
}

#album-footer a span {
	text-align: center;
	font-size: .9em;
	color: var(--color-dark);
}



.album-item {
	width: 100%;
	max-width: 550px;
	display: block;
	margin: 0 auto calc(var(--grid-margin) * 2);
	position: relative;
}

.album-item img {
	width: 100%;
}

.album-item .buy-link {
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: var(--color-light-base);
	color: var(--color-dark);
	line-height: 30px;
	font-size: 1.1em;
	padding: 3px 10px 0;
	display: block;
	width: 100%;
	max-width: 100px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.album-item .buy-link:hover {
	background-color: var(--color-dark);
	color: white;
}



#buyPanel {
	position: fixed;
	width: 100%;
	height: 100vh;
	background-color: white;
	z-index: 100000;
	display: none;
	opacity: 0;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

#buyPanel.visible {
	display: table;
	opacity: 1;
}

#buyPanel .buyPanel-cell {
	display: table-cell;
	height: 100%;
	width: 100%;
	text-align: center;
	vertical-align: middle;
}

#buyPanel .buyPanel-cell p {
	font-size: 1.2em;
}

#buyPanel-close {
	position: fixed;
	top: 15px;
	right: 15px;
	background-color: transparent;
	border: 0;
	display: block;
	height: 40px;
	width: 40px;
	padding: 0;
	z-index: 100000;
}

#buyPanel-close img {
	width: 100%;
}


#top-bar {
	display: table;
	width: calc(100% - var(--sidebar-width));
	border-bottom: .5px solid var(--color-light-gray);
	padding: 30px 10px;
	background-color: white;
	position: fixed;
	top: 0;
	left: var(--sidebar-width);
	right: 0;
	z-index: 10000;
	line-height: 30px;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;

}

#top-bar span {
	display: inline-table;
	float: left;
	color: var(--color-gray);
	margin-right: 20px;
}

#top-bar ul {
	list-style: none;
	margin: 0;
	padding: 0 0 0;
	float: left;
}

#top-bar ul li {
	float: left;
	margin: 0 10px 0;
}

#top-bar ul li strong a {
	color: var(--color-dark);
}

#top-bar ul li a {
	color: var(--color-base);
	text-decoration: none;
	text-transform: uppercase;
}




#bio {
	padding: 0 0 75px;
}

#bio img.bio-img {
	width: 100%;
	max-height: 650px;
  	height: 650px;
	object-fit: cover;
	object-position: top;
}

#bio .heading {
	position: relative;
}

#bio .content {
	padding: 0 var(--grid-margin);
}

#bio .content p {
	max-width: 650px;
	display: block;
	margin: 0 auto;
	padding: 10px 0;
	text-align: justify;
	font-size: 1.2em;
}








#contact {
	padding: 100px var(--grid-margin) 0;
	display: block;
	width: 100%;
}

#contact .heading h1 {
	margin-bottom: 0;
}

#form {
	width: 100%;
	max-width: 800px;
	display: block;
	margin: 0 auto;
}

#form .form-control {
	border-radius: 0;
	border: 1px solid var(--color-gray);
	box-shadow: none;
	outline: 0;
	height: 40px;
	line-height: 40px;
	font-size: 1.1em;
	color: var(--color-dark);
}

#form textarea.form-control {
	height: 80px;
	resize: none;
}

#form input[type=submit] {
	width: 100%;
	max-width: 150px;
	text-align: center;
	margin: 0 auto;
	padding: 8px 10px 5px;
	display: block;
	border: none;
	background-color: var(--color-base);
	color: var(--color-light-gray);
	text-decoration: none;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-size: 1.1em;
}

#form .fileuploader {
	background: white;
	border-radius: 0;
	border: 0;
	border: 1px solid var(--color-gray) !important;
	padding: 5px 8px;
}

#form .fileuploader-input {
	border-radius: 0;
}

#form .fileuploader .fileuploader-input-caption {
	border-radius: 0;
	border: 0;
	/*border-bottom: 1px solid var(--color-gray) !important;*/
	color: var(--color-dark);
	background-color: transparent;
}

#form .fileuploader .fileuploader-input-button {
	background: var(--color-base);
	outline-style: none;
	color: white;
	border-radius: 0 !important;
}

.fileuploader-items .fileuploader-items-list {
	margin: 0 0 !important;
}

#form .fileuploader-items .fileuploader-item {
	border-bottom: 1px solid var(--color-gray) !important;
}

#form .fileuploader-items li:last-child {
	border-bottom: 0 !important;
}








.auth-views {
	padding-top: 100px;
}












#server-error {
	color: white;
	min-height: 300px;
	width: 100%;
	display: table;
	padding: 100px 0;
	display: block;
	text-align: center;
}


#error-msg {
	position: relative;
	width: 100%;
	margin: 100px auto;
	padding: 0;
	text-align: center;
}

#error-msg h1 {
	text-transform: uppercase;
	font-size: 2.2em;
	margin: 0 0 0;
	padding: 0 0 0;
	width: 100%;
	color: var(--color-base);
}

#error-msg h1 small {
	text-transform: none;
}

#error-msg a {
	font-size: 1.5em;
	margin: 50px auto;
	min-width: 200px;
	color: var(--color-base);
}


/* Perezcanto Timeline */


.timeline-box {
	display: flex;
	column-gap: 40px;
	justify-content: space-between;
	background: #f1f1f1;
	padding: 20px;
	/* max-width: 450px; */
	position: relative;
}

@media screen and (max-width: 500px) {
	.timeline-box {
		display: flex;
		flex-direction: column;
		row-gap: 20px;
		justify-content: center;
		align-items: center;
	}

	.timeline-box-text  {
		text-align: center;
	}
	
}


.timeline-box-image img {
	height: 100%;
	width: 130px;
	object-fit: contain;
	border-radius: 0.25rem;
	
}

.timeline-box-text {}

.timeline-box-text h2 {
	margin-top: 0 !important;
}

.timeline-box-arrow img {
	position: absolute;
	margin: 15px;
	height: auto;
	width: 30px;
	object-fit: contain;
	border-radius: 0.25rem;
	bottom: 0;
	right: 0;
}

.timeline-box-arrow-2 img {
	width: 30px;
}

.timeline-icons {
	background: #c59b6d;
	height: 90px;
	width: 90px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
}


.timeline-icon {
	height: 60px;
	width: 60px;
	object-fit: contain;

}

.timeline-return{
	background: #5b5751;
	color: white;
	padding: 15px 10px;
	display: flex;
	column-gap: 10px;
	align-items: center;
	width: fit-content;
	
}


.timeline-return:hover{
	background: #1b1a19;
	color: white;
	text-decoration: none;
}


.date-box {
	height: 90px;
	display: flex;
	align-items: center;
	color: #c59b6d;
	font-weight: 800;
	font-size: 20px;
}


.vertical-line {
	background: #c59b6d;
	width: 10px;
	height: 200%;
	position: absolute;
	left: 50%;
	/* transform: translateX(-50%); */
	z-index: -1;
	transform: translate(-50%, -20%);

}


.date-right {
	justify-content: start;
}


.date-left {
	justify-content: end;
}

@media screen and (max-width: 1200px) {
	.date-right {
		justify-content: center;
	}

	.date-left {
		justify-content: center;
	}

	.vertical-line{
		transform: translate(-50%, -20%);
		height: 200%;

	}

	.timeline-icons-box{
		padding: 20px 0;
	}

	.order-lg-1 {
		order: 0;
	  }
	  .order-lg-2 {
		order: 1;
	  }
	  .order-lg-3 {
		order: 2;
	  }
	  .order-lg-4 {
		order: 3;
	  }
	  
}

@media screen and (min-width: 1536px) {

	.container-xl {
		max-width: 1170px;
	margin-right: auto;
	  margin-left: auto;
	  padding-left: 15px;
	  padding-right: 15px;
	}
}


.background-white{
	background: #fff;
}

.timeline-box-text p {
	font-size: 1.25rem;
	/* 20px */
	line-height: 1.75rem;
	/* 28px */
}

.row-flex {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}


.mx-0 {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.mt-40{
	margin-top: 40px;
}

.mt-60{
	margin-top: 60px;
}

/* Display */
.flex {
	display: flex;
}

.inline-flex {
	display: inline-flex;
}

/* Flex Direction */
.flex-row {
	flex-direction: row;
}

.flex-row-reverse {
	flex-direction: row-reverse;
}

.flex-col {
	flex-direction: column;
}

.flex-col-reverse {
	flex-direction: column-reverse;
}

/* Flex Wrap */
.flex-wrap {
	flex-wrap: wrap;
}

.flex-wrap-reverse {
	flex-wrap: wrap-reverse;
}

.flex-no-wrap {
	flex-wrap: nowrap;
}


/* Justify Content */
.justify-start {
	justify-content: flex-start;
}

.justify-end {
	justify-content: flex-end;
}

.justify-center {
	justify-content: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-around {
	justify-content: space-around;
}


