@font-face {
    font-family: 'myBrother-1816-Bold';
    src: url('../fonts/Brother-1816-Bold.woff2') format('woff2'),
        url('../fonts/Brother-1816-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'myACaslonPro-Regular';
    src: url('../fonts/ACaslonPro-Regular.woff2') format('woff2'),
        url('../fonts/ACaslonPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'myACaslonPro-Italic';
    src: url('../fonts/ACaslonPro-Italic.woff2') format('woff2'),
        url('../fonts/ACaslonPro-Italic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.container{
	margin-left:auto;
	margin-right:auto;
}

/*.decoWrap{
	width: 100%;
	overflow-x: hidden;
}
*/
/** {
    outline: 1px solid red;
}*/

body{
	background-color: #F8F8F4;
	color: #17211C;
	font-family: myACaslonPro-Regular;
	overflow-x: clip;
}

html{
	overflow-x: clip;
}

header{
	height: 100vh;
	position: relative;
}

section{
	position: relative;
}

.centerContainer{
	margin-right: auto;
	margin-left: auto;
}

nav{
	position: sticky;
	z-index: 100;
}

nav ul{
	padding-left: 0;
}

nav a{
	color: #17211C;
	display: block;
	/*filter: drop-shadow(1px 1px 6px rgba(248, 248, 244, 1));*/

}

a.circle{
	background-color: #E1AC31;
	border-radius: 50%;
	transition: background-color .5s, transform .5s;
	filter: drop-shadow(1px 1px 2px rgba(23, 33, 28, .15));
}

a.circle:hover{
	background-color: #D34F37;
}

a.circle.active {
    background-color: #D34F37;
}

ul.flexParent{
	align-items: center; 
}



h1{
	color: #385D4B;
	font-family: myBrother-1816-Bold;
	text-align: right;
}

h2{
	font-family: myACaslonPro-Italic;
}

h2.headertxt{
	text-align: right;
}

header a{
	display: block;
	margin-right: auto;
	margin-left: auto;

	position: absolute;

	text-align: center;
	background-color: #D34F37;
	border-radius: 50vw;

	filter: drop-shadow(1px 1px 2px rgba(23, 33, 28, .15));
	animation: floating 5s infinite;
}

@keyframes floating{
 	0%{
 		translate: 0 0;
 	}
 	50%{
 		translate: 0 -30%;
 	}
 	100%{
 		translate: 0 0;
 	}
}

a{
	text-decoration: none;
	text-transform: uppercase;
	font-family: myBrother-1816-Bold;
	color: #F8F8F4;
	display: block;
	cursor: pointer !important;
}

h2 span{
	color: #385D4B;
	text-transform: uppercase;
	font-family: myBrother-1816-Bold;
}

h3{
	text-transform: uppercase;
	font-family: myBrother-1816-Bold;
}

h3.carosel{
	color: #D34F37;
}

.caroselContainer {
	position: absolute;
	left: 0;
    width: 100%;
    overflow: hidden;
    text-transform: uppercase;
}

.track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.carosel {
    white-space: nowrap;
    margin-right: .25vw;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

p span{
	color: #D34F37;
	text-transform: uppercase;
	font-family: myBrother-1816-Bold;
}

.vender{
	background-color: #385D4B;
	filter: drop-shadow(1px 1px 2px rgba(23, 33, 28, .15));

}

.station{
	background-color: #D34F37;
	filter: drop-shadow(1px 1px 2px rgba(23, 33, 28, .15));

}

.changingRoomContainer li{
	background-color: #E1AC31;
	filter: drop-shadow(1px 1px 2px rgba(23, 33, 28, .15));

}

.visited {
    opacity: 0.5;
    transition: opacity 0.5s;
}

.popUpCont{
	position: relative;
}

.popUpBox{
	height: auto;
	width: 100%;
	background-color: #F8F8F4;
	filter: drop-shadow(1px 1px 2px rgba(23, 33, 28, .15));
	display: none;
	position: relative;
	/*position: absolute;
	bottom: 0;*/
}

.popUpBox h3{
	text-align: left !important; 
}

.x{
	position: absolute;
	top: 2vw;
	right: 2vw;

	display: block;

	background-image: url("../images/x.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;

	cursor: pointer;

	z-index: 999999;
}

.popUpBox *{
	pointer-events: auto;
}


input[type="checkbox"] {
  display: inline-block;
  appearance: none;
  /*border: 2px solid #17211C;*/
  background-color: #E1AC31;
  cursor: pointer;
  vertical-align: top;
  filter: drop-shadow(1px 1px 2px rgba(23, 33, 28, .15));

  transition: background-color .5s;
}

input[type="checkbox"]:checked {
  background-color: #D34F37;
}

input[type="checkbox"]:checked::after {
  content: "✓";
  display: flex;
  color: white;
}

.popUpCompleted{
	position: fixed;
	bottom: 2vw;
	right: 2vw;

	background-color: #F8F8F4;
	filter: drop-shadow(1px 1px 2px rgba(23, 33, 28, .15));
	z-index: 100;
}

.stationsFinished{
	display: none;

}

.checklistFinished{
	display: none;
}

/*.popUpCompleted .x{
	width: 1vw;
	height: 1vw;
}*/

.img{
	background-size: cover;
	background-position: center;
	display: block;
	filter: drop-shadow(1px 1px 2px rgba(23, 33, 28, .15));

}

.colorRect{
	mix-blend-mode: multiply;
}

.flexParent{
	display: flex;
	justify-content: center;
	/*align-items: center; */
}

.pinterest{
	background-image: url(../images/pinterest.svg);
}

.facebook{
	background-image: url(../images/facebook.svg);
}

.instagram{
	background-image: url(../images/instagram.svg);
}

.icon{
	background-repeat: no-repeat;
	display: block;
	background-position: center;
}

/*.deco-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}*/


.decoButtons{
	display: block;
    position: absolute;
    background-position: center;
    background-size: cover;

    will-change: transform;
    transition: transform 0.05s linear;
    z-index: -100000;
    pointer-events: none;
}

/* MOBILE STYLES ////////////////////////////////////////////////////////////////////////////////////////////////*/
@media only screen and (max-width: 767px){
	.container{
		width:87.5%; /* 280 pixels at a 320 pixel screen width (iPhone 3 / 4 / 5) */
	}

	.caroselContainer{
		padding-top: 8vw;
	}

	header{
		padding-top: 90%;
	}

	h1{
		font-size: 15vw;
		margin-left: -2vw;
		letter-spacing: -5%;
	}

	.centerContainer{
		width: 80vw;
	}

	h2.headertxt{
		margin-bottom: 70%;
	}

	header a{
		width: 12vw;
		padding: 3.5vw;
		font-size: 3.5vw;

		left: calc(50% - 6vw);
		bottom: 17vw;

		transition: transform .5s;
	}

	header a:hover{
		transform: scale(1.1);
	}

	nav{
		top: 8vw;
		margin-bottom: 25vw;
	}

	a{
		font-size: 2.75vw;
	}

	a.circle{
		height: 4vw;
		width: 4vw;
	}

	a.circle.active {
		transform: scale(1.2);
	}


	h2{
		line-height: 5.5vw;
		font-size: 6vw;
	}

	h3{
		font-size: 2.75vw;
	}

	p{
		font-size: 3.5vw;
	}

	.img{
		width: 49%;
		height: 60vw;
		padding: 0;
		display: block;
	}

	.div-1 { order: 2; } /* Moves to bottom */
  	.div-2 { order: 1; }

	/*section#welcome{
		
	}*/

	section{
		padding-bottom: 30vw;
		scroll-margin: 23vw;
	}

	.colorRect{
		width: 100%;
		height: 100%;
	}

	.redColor{
		background-color: #D34F37;
	}

	.greenColor{
		background-color: #385D4B;
	}

	.yellowColor{
		background-color: #E1AC31;
	}

	.imgOne{
		/*display: relative;*/
		background-image: url(../images/thrift_m.webp);
		/*margin-left: .8rem;*/
		margin-right: 2%;
	}

	.imgTwo{
		/*display: relative;*/
		margin-top: 12vw;
		background-image: url(../images/sew_m.webp);
	}

	.imgThree{
		/*display: relative;*/
		background-image: url(../images/racks_m.webp);
		/*margin-left: .8rem;*/
		margin-right: 2%;

	}

	.imgFour{
		/*display: relative;*/
		margin-top: 12vw;
		background-image: url(../images/bin_m.webp);
	}

	label{
		font-size: 3.5vw;
		margin-bottom: 3vw;
		display: block;
		cursor: pointer;
	}

	.vender, .station, .changingRoomContainer li{
		display: block;
		margin-bottom: .5rem;
		/*margin-right: 10px;*/
		width: 15.5vw;
		height: 15.5vw;
		align-content: center;
		text-align: center;
	}

	ul.venderContainerOne, ul.changingRoomContainer{
		padding-left: 0;
	}

	ul.venderContainerOne{
		padding-right: 1.5rem;
	}

	ul.venderContainerTwo{
		padding-left: 1.5rem;
	}

	ul.stationContainerTwo{
		padding-left: 0;
		margin-bottom: 0;
	}

	ul.stationContainerOne{
		padding-left: 0;
		margin-right: .5rem;
		margin-bottom: 0;
	}

	.changingRoomContainer li{
		margin-bottom: 0;
		margin-right: .5rem;
	}

	.changingRoomContainer li:nth-of-type(4n){
		margin-right: 0;
	}

	.station{
		margin-right: 0;
	}

	.changingRoomContainer{
		margin-bottom: 1.5rem;
		
	}


	.vendorStationContainer h3{
		text-align: center;
	}

	#station{
		position: relative;
	}

	.popUpBox{
		padding: 8vw;
		position: absolute;
		z-index: 100000;
		width: 91.5%;

	}

	.buttonHover li{
		transition: transform .5s;
	}

	.buttonHover li:hover{
		transform: scale(1.1);
	}

	.x{
		width: 3vw;
		height: 3vw;

	}

	.popUpCompleted{
		padding: 8vw;
		width: calc(90% - 2rem);
		left: 2rem;
	}

	footer{
		height: 60vh;
		padding-top: 12vh;
	}

	.icon{
		height: 4vw;
		width: 4vw;
	}

	input[type="checkbox"] {
		width: 3.75vw !important;
		margin-top: .15vw; 
	  	height: 3.75vw !important;
	  	margin-right: .75vw;
	}

	input[type="checkbox"]::before {
		width: 3.75vw;
		height: 3.75vw;
	}

	input[type="checkbox"]:checked::after {
	  	font-size: 2.75vw;
	  	width: 3.75vw;
		height: 3.75vw;
		margin-left: .75vw;
	}

	p.special {
		text-align: center;
		font-size: 2.5vw;
	}

	.decoOne{
		background-image: url("../images/buttons_B1M.webp");
		width: 19vw;
		height: 19vw;
		left: -12vw;
		top: 60vw;
	}

	.decoTwo{
		background-image: url("../images/buttons_B2M.webp");
		width: 30vw;
		height: 30vw;
		right: -12vw;
		top: -20vw;
		/*bottom: -120vh;*/
	}

	.decoThree{
		background-image: url("../images/buttons_B3M.webp");
		width: 20vw;
		height: 20vw;
		left: -12vw;
		top: -130vw;
	}

	.decoFour{
		background-image: url("../images/buttons_B4M.webp");
		width: 32vw;
		height: 32vw;
		right: -12vw;
		top: -20vw;
	}

	.decoFive{
		background-image: url("../images/buttons_B5M.webp");
		width: 18vw;
		height: 18vw;
		right: -9vw;
		top: -20vw;
		/*bottom: -200vh;*/
	}

}

/* TABLET STYLES ////////////////////////////////////////////////////////////////////////////////////////////////*/
@media only screen and (min-width: 768px) and (max-width: 991px){
	.container{
		width:93.75%; /* 720 pixels at a 768 pixel screen width (iPads) */
	}

	.caroselContainer{
		padding-top: 5%;
	}

	header{
		padding-top: 50%;
	}

	.centerContainer{
		width: 90vw;
	}

	h1{
		font-size: 17.2vw;
		margin-left: -2vw;
		letter-spacing: -5%;
	}

	h2.headertxt{
		/*margin-right: 1vw;*/
		margin-bottom: 13%;
	}

	header a{
		width: 7vw;
		padding: 2.35vw;
		font-size: 1.5vw;

		left: calc(50% - 4vw);
		bottom: 10vw;

		transition: transform .5s;
	}

	header a:hover{
		transform: scale(1.2);
	}

	nav{
		top:4vw;
		margin-bottom: 10vw;
	}

	a.circle{
		height: 2vw;
		width: 2vw;
	}

	a.circle.active {
		transform: scale(1.2);
	}


	h2{
		line-height: 3.75vw;
		font-size: 4vw;
	}

	h3, a{
		font-size: 1.5vw;
	}


	p{
		font-size: 1.75vw;
	}

	.img{
		width: 49%;
		height: 40vw;
		padding: 0;
		display: block;
	}

	section{
		scroll-margin: 10vw;
		padding-bottom: 20vw;

	}

	.colorRect{
		width: 100%;
		height: 100%;
	}

	.redColor{
		background-color: #D34F37;
	}

	.greenColor{
		background-color: #385D4B;
	}

	.yellowColor{
		background-color: #E1AC31;
	}

	.imgOne{
		/*display: relative;*/
		background-image: url(../images/thrift_t.webp);
		margin-right: 2%;
	}

	.imgTwo{
		/*display: relative;*/
		margin-top: 4.2vw;
		background-image: url(../images/sew_t.webp);
	}

	.imgThree{
		/*display: relative;*/
		background-image: url(../images/racks_t.webp);
		margin-right: 2%;
	}

	.imgFour{
		/*display: relative;*/
		margin-top: 4.2vw;
		background-image: url(../images/bin_t.webp);
	}

	label{
		font-size: 1.75vw;
		margin-bottom: 1.75vw;
		display: block;
	}

	.vender, .station, .changingRoomContainer li{
		display: block;
		margin-bottom: .5rem;
		/*margin-right: 10px;*/
		width: 8vw;
		height: 8vw;
		align-content: center;
		text-align: center;
	}

	ul.venderContainerOne, ul.changingRoomContainer{
		padding-left: 0;
	}

	ul.venderContainerOne{
		padding-right: 1.5rem;
	}

	ul.venderContainerTwo{
		padding-left: 1.5rem;
	}

	ul.stationContainerTwo{
		padding-left: 0;
		margin-bottom: 0;
	}

	ul.stationContainerOne{
		padding-left: 0;
		margin-right: .5rem;
		margin-bottom: 0;
	}

	.changingRoomContainer li{
		margin-bottom: 0;
		margin-right: .5rem;
	}

	.changingRoomContainer li:nth-of-type(4n){
		margin-right: 0;
	}

	.station{
		margin-right: 0;
	}

	.changingRoomContainer{
		margin-bottom: 1.5rem;
		
	}


	.vendorStationContainer h3{
		text-align: center;
	}

	#station{
		position: relative;
	}

	.popUpBox{
		padding: 2vw;
	}

	.buttonHover li{
		transition: transform .5s;
	}

	.buttonHover li:hover{
		transform: scale(1.1);
	}

	.x{
		width: 1.75vw;
		height: 1.75vw;
	}

	.popUpCompleted{
		padding: 2vw;
	}

	footer{
		height: 30vh;
		padding-top: 12vh;
	}

	.icon{
		height: 2vw;
		width: 2vw;
	}

	input[type="checkbox"] {
		width: 1.75vw !important;
		margin-top: .15vw; 
	  	height: 1.75vw !important;
	  	margin-right: 1vw;
	}

	input[type="checkbox"]::before {
		width: 1.75vw;
		height: 1.75vw;
	}

	input[type="checkbox"]:checked::after {
	  	font-size: 1.5vw;
	  	width: 2vw;
		height: 2vw;
		margin-left: .25vw;
	}

	p.special {
		text-align: center;
		font-size: 1.5vw;
	}

	.decoOne{
		background-image: url("../images/buttons_B1T.webp");
		width: 11vw;
		height: 11vw;
		left: -5vw;
		bottom: 7vw;
	}

	.decoTwo{
		background-image: url("../images/buttons_B2T.webp");
		width: 12.6vw;
		height: 12.6vw;
		right: -5vw;
		bottom: 5vw;
		/*bottom: -120vh;*/
	}

	.decoThree{
		background-image: url("../images/buttons_B3T.webp");
		width: 12.3vw;
		height: 12.3vw;
		left: -5vw;
		bottom: 12vw;
	}

	.decoFour{
		background-image: url("../images/buttons_B4T.webp");
		width: 8.5vw;
		height: 8.5vw;
		left: 2.5vw;
		bottom: 9vw;
	}

	.decoFive{
		background-image: url("../images/buttons_B5T.webp");
		width: 6.95vw;
		height: 6.95vw;
		right: -5vw;
		top: 5vw;
		/*bottom: -200vh;*/
	}

	.decoSix{
		background-image: url("../images/buttons_B6T.webp");
		width: 12vw;
		height: 12vw;
		left: -5vw;
		bottom: 2vw;
	}

	.decoSeven{
		background-image: url("../images/buttons_B7T.webp");
		width: 8.5vw;
		height: 8.5vw;
		left: 3vw;
		bottom: 9vw;
	}
}

/* DESKTOP STYLES ////////////////////////////////////////////////////////////////////////////////////////////////*/
@media only screen and (min-width: 992px){
	.container{
		/*width:978px;*/
		width:95.5%;
	}

	.caroselContainer{
		padding-top: 2.5%;
	}

	header{
		padding-top: 17%;
	}

	.centerContainer{
		width: 70vw;
	}

	h1{
		font-size: 13.5vw;
		margin-left: -2vw;
		letter-spacing: -5%;
	}

	h2.headertxt{
		/*margin-right: 1vw;*/
		margin-bottom: 13%;
	}

	header a{
		width: 3.5vw;
		padding: 1vw;
		font-size: 1vw;

		left: calc(50% - 1.75vw);
		bottom: 5vw;

		transition: transform .5s;
	}

	header a:hover{
		transform: scale(1.2);
	}

	nav{
		top:2vw;
		margin-bottom: 10vw;
	}

	a.circle{
		height: 1.25vw;
		width: 1.25vw;
	}

	a.circle.active {
		transform: scale(1.2);
	}


	h2{
		line-height: 2.75vw;
		font-size: 2.75vw;
	}

	h3{
		font-size: 1vw;
	}

	p{
		font-size: 1.25vw;
	}

	.img{
		width: 49%;
		/*width: 21.2vw;*/
		height: 35vw;
		padding: 0;
		display: block;
	}

/*	section#visit, section#welcome{
		padding-bottom: 10vw;
	}
*/
	/*section#welcome{
		padding-top: 10vw;
	}*/

	section{
		scroll-margin: 10vw;
		padding-bottom: 10vw;
	}

	.colorRect{
		width: 100%;
		height: 100%;
	}

	.redColor{
		background-color: #D34F37;
	}

	.greenColor{
		background-color: #385D4B;
	}

	.yellowColor{
		background-color: #E1AC31;
	}

	.imgOne{
		/*display: relative;*/
		background-image: url(../images/thrift_d.webp);
		margin-right: 2%;
	}

	.imgTwo{
		/*display: relative;*/
		margin-top: 3.1vw;
		background-image: url(../images/sew_d.webp);
	}

	.imgThree{
		/*display: relative;*/
		background-image: url(../images/racks_d.webp);
		margin-right: 2%;
	}

	.imgFour{
		/*display: relative;*/
		margin-top: 3.1vw;
		background-image: url(../images/bin_d.webp);
	}

	label{
		font-size: 1.25vw;
		margin-bottom: 1vw;
		display: block;
	}

	.vender, .station, .changingRoomContainer li{
		display: block;
		margin-bottom: .6rem;
		/*margin-right: 10px;*/
		width: 5.5vw;
		height: 5.5vw;
		align-content: center;
		text-align: center;
	}

	ul.venderContainerOne, ul.changingRoomContainer{
		padding-left: 0;
	}

	ul.venderContainerOne{
		padding-right: 2rem;
	}

	ul.stationContainerTwo{
		padding-left: 0;
		margin-bottom: 0;
	}

	ul.stationContainerOne{
		padding-left: 0;
		margin-right: .6rem;
		margin-bottom: 0;
	}

	.changingRoomContainer li{
		margin-bottom: 0;
		margin-right: .6rem;
	}

	.changingRoomContainer li:nth-of-type(4n){
		margin-right: 0;
	}

	.station{
		margin-right: 0;
	}

	.changingRoomContainer{
		margin-bottom: 2rem;
		
	}


	.vendorStationContainer h3{
		text-align: center;
	}

	.popUpBox{
		padding: 2vw;
	}

	.buttonHover li{
		transition: transform .5s;
	}

	.buttonHover li:hover{
		transform: scale(1.1);
	}

	.x{
		width: 1.25vw;
		height: 1.25vw;
		/*padding: 1vw;*/
	}

	.popUpCompleted{
		padding: 2vw;
	}

	footer{
		height: 42vh;
		padding-top: 12vh;
	}

	.icon{
		height: 1.25vw;
		width: 1.25vw;
	}

	input[type="checkbox"] {
		width: 1.25vw !important;
		margin-top: .15vw; 
	  	height: 1.25vw !important;
	  	margin-right: .75vw;
	}

	input[type="checkbox"]::before {
		width: 1.25vw;
		height: 1.25vw;
	}

	input[type="checkbox"]:checked::after {
	  	font-size: 1vw;
	  	width: 1.25vw;
		height: 1.25vw;
		margin-left: .25vw;
	}

	p.special {
		text-align: center;
		font-size: 1vw;
	}

	.decoOne{
		background-image: url("../images/buttons_B1D.webp");
		width: 7.4vw;
		height: 7.4vw;
		left: -6vw;
		bottom: 5vw;
	}

	.decoTwo{
		background-image: url("../images/buttons_B2D.webp");
		width: 12.6vw;
		height: 12.6vw;
		right: -6vw;
		bottom: 0vw;
	}

	.decoThree{
		background-image: url("../images/buttons_B3D.webp");
		width: 12.3vw;
		height: 12.3vw;
		left: -6vw;
		bottom: 12vw;
	}

	.decoFour{
		background-image: url("../images/buttons_B4D.webp");
		width: 8.5vw;
		height: 8.5vw;
		left: 2.5vw;
		bottom: 9vw;
	}

	.decoFive{
		background-image: url("../images/buttons_B5D.webp");
		width: 6.95vw;
		height: 6.95vw;
		right: -6vw;
		top: 5vw;
	}

	.decoSix{
		background-image: url("../images/buttons_B6D.webp");
		width: 12vw;
		height: 12vw;
		left: -6vw;
		bottom: 2vw;
	}

	.decoSeven{
		background-image: url("../images/buttons_B7D.webp");
		width: 8.5vw;
		height: 8.5vw;
		left: 3vw;
		bottom: 9vw;
	}

}
