/*
Custom styles for plugin
*/

body#online-cardgame {
    background: #F1F1F2;
    /*padding-top: 160px;*/
}

body#online-cardgame header#masthead {
    /*z-index: 999999;
    position: absolute;
    height: 150px;*/
	height: auto !important;
	position: relative !important;
}
body#online-cardgame header#masthead.sticky {
    border-bottom: 0;
}
body#online-cardgame header#masthead.sticky .site-branding .custom-logo {
    max-width: 300px;
}

table.online-cardgame {
    border-spacing: 0.5vw;
    border-collapse: separate;
    max-width: 1000px;
    margin: auto;
}

table.online-cardgame tr td {
	text-align: center;
	padding: 0;
	user-select: none;
}
table.online-cardgame tr td img {
	width: 19vw;
	-webkit-border-radius: 10%;
	-moz-border-radius: 10%;
	border-radius: 10%;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
	-webkit-transition: opacity 500ms ease-out;
	-moz-transition: opacity 500ms ease-out;
	-o-transition: opacity 500ms ease-out;
	transition: opacity 500ms ease-out;
}
table.online-cardgame tr td img.deselected {
	opacity: 0.1;
    filter: alpha(opacity=10);
	-webkit-transition: opacity 500ms ease-out;
	-moz-transition: opacity 500ms ease-out;
	-o-transition: opacity 500ms ease-out;
	transition: opacity 500ms ease-out;
}
table.online-cardgame tr td .placeholder.deselected {
	opacity: 0.1;
    filter: alpha(opacity=10);
	-webkit-transition: opacity 500ms ease-out;
	-moz-transition: opacity 500ms ease-out;
	-o-transition: opacity 500ms ease-out;
	transition: opacity 500ms ease-out;
}

#card-blocker {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #46455E;
	top: 0;
	left: 0;
	opacity: 0.9;
    filter: alpha(opacity=90);
	z-index: 9999999;
	-webkit-transition: opacity 500ms ease-out;
	-moz-transition: opacity 500ms ease-out;
	-o-transition: opacity 500ms ease-out;
	transition: opacity 500ms ease-out;
}
#card-blocker.hidden {
	opacity: 0;
    filter: alpha(opacity=0);
	-webkit-transition: opacity 500ms ease-out;
	-moz-transition: opacity 500ms ease-out;
	-o-transition: opacity 500ms ease-out;
	transition: opacity 500ms ease-out;
}

.identity-card img {
	cursor: pointer;
}

.cardgame-admin-buttons-wrapper {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 0.8em;
}
.cardgame-admin-buttons-wrapper .cardgame-button {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	padding: 0 5px;
    color: rgba(255, 255, 255, 0.2);
}
	.cardgame-admin-buttons-wrapper .cardgame-button span {
		width: 75px;
		text-align: center;
		position: relative;
		padding-left: 5px;
	}
.cardgame-admin-buttons-wrapper .cardgame-divider {
	display: inline-block;
	vertical-align: middle;
	cursor: default;
	padding: 0 5px;
    color: rgba(255, 255, 255, 0.2);
}

.cardgame-buttons-wrapper {
    width: 60%;
    position: absolute;
    top: 70px;
    right: 0;
    text-align: right;
    padding-right: 20px;
	font-size: 1em;
}
.cardgame-buttons-wrapper .cardgame-button {
	display: inline-block;
	vertical-align: middle;
	color: #FFF;
	cursor: pointer;
	padding: 0 10px;
}
	.cardgame-buttons-wrapper .cardgame-button.disabled {
		cursor: default;
		opacity: 0.5;
		filter: alpha(opacity=50);
	}
	.cardgame-buttons-wrapper .cardgame-button span {
		width: 75px;
		text-align: center;
		position: relative;
		padding-left: 5px;
	}
.cardgame-buttons-wrapper .cardgame-button.admin-allow {
	display: none;
}
.cardgame-buttons-wrapper .cardgame-button.secondary-button {
	opacity: 0.25;
    font-size: 0.8em;
}
    .cardgame-buttons-wrapper .cardgame-button.secondary-button svg {
        font-size: 0.8em;
    }

.cardgame-buttons-wrapper a:link, .cardgame-buttons-wrapper a:visited, .cardgame-buttons-wrapper a:hover, .cardgame-buttons-wrapper a:active {
	color: #FFF;
	width: 75px;
	text-align: center;
	position: relative;
}

.cardgame-buttons-wrapper.wrapper-bottom {
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
    text-align: center;
    padding-right: 0;
	margin-bottom: 40px;
}
.cardgame-buttons-wrapper.wrapper-bottom .cardgame-button {
	color: #46455E;
}

.popup-overlay {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: rgba(0,0,0,0.7);
    top: 0;
    z-index: 999999;
	display: none;
}
.popup-box {
    width: 300px;
    position: relative;
    top: 10vh;
    background: #46455E;
    color: #FFF;
	text-align: center;
    margin: auto;
    padding: 20px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	display: none;
}
	.popup-box h1, .popup-box h2, .popup-box h3, .popup-box h4 {
		color: #FFF;
		margin-top: 0;
		padding-top: 0;
	}
	.popup-box p {
		font-size: 1.2em;
		margin: 0;
	}
	.popup-box span.button, span.click-button {
		font-weight: bold;
		background: #8bbb96 !important;
		display: inline-block;
		padding: 5px 20px;
		margin: 20px 5px;
		cursor: pointer;
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		border-radius: 20px;
	}
	.popup-box span.button + span.button {
		background: #e2525c !important;
	}
.popup-box canvas + img {
    display: block;
    margin: auto;
    width: 350px;
	margin-bottom: 20px;
}

.popup-box input[type="text"], .popup-box input[type="email"], .popup-box input[type="url"], .popup-box input[type="password"], .popup-box input[type="search"], .popup-box input[type="number"], .popup-box input[type="tel"], .popup-box input[type="range"], .popup-box input[type="date"], .popup-box input[type="month"], .popup-box input[type="week"], .popup-box input[type="time"], .popup-box input[type="datetime"], .popup-box input[type="datetime-local"], .popup-box input[type="color"], .popup-box textarea,.popup-box input[type="text"]:focus {
	color: #FFF;
}

.popup-box.answers-feedback {
    position: fixed;
    z-index: 999999;
    margin: auto;
    left: calc(50% - 150px);
    background: #8bbb96;
}
.popup-box.answers-feedback#answers-incorrect {
    background: #E45259;
}
.popup-box.answers-feedback#answers-none {
    background: #1B1C24;
}

.popup-instructions {
    position: absolute;
    top: 0;
    width: 19vw;
	max-width: 192px;
    font-size: 16px;
    line-height: 1.1em;
    background: #FFF;
    color: #404040;
    text-align: center;
    padding: 10px;
	padding-bottom: 60px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    z-index: 999999;
	display: none;
}
.popup-instructions span {
	font-weight: 500;
	position: absolute;
	bottom: 10px;
	display: inline-block;
	padding: 3px 8px 2px;
	text-transform: uppercase;
	font-size: 0.6em;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	cursor: pointer;
}
.popup-instructions span.leave-button {
	color: #E45259;
	left: 10px;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}
	.popup-instructions span.leave-button:hover {
		color: #FFF;
		background: #E45259;
		-webkit-transition: all 300ms ease-out;
		-moz-transition: all 300ms ease-out;
		-o-transition: all 300ms ease-out;
		transition: all 300ms ease-out;
	}
.popup-instructions span.leave-button.last-button {
	color: #FFF;
	background: #E45259;
	left: 10px;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}
	.popup-instructions span.leave-button.last-button:hover {
		color: #FFF;
		background: #9E4647;
		-webkit-transition: all 300ms ease-out;
		-moz-transition: all 300ms ease-out;
		-o-transition: all 300ms ease-out;
		transition: all 300ms ease-out;
	}
.popup-instructions span.next-button {
	color: #FFF;
	background: #8abc95;
	right: 10px;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}
	.popup-instructions span.next-button:hover {
		color: #FFF;
		background: #46455E;
		-webkit-transition: all 300ms ease-out;
		-moz-transition: all 300ms ease-out;
		-o-transition: all 300ms ease-out;
		transition: all 300ms ease-out;
	}
.popup-instructions span.faux-next-button {
	color: #FFF;
	background: #CCC;
	right: 10px;
	cursor: default;
}
.popup-instructions p {
    margin: 0;
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    bottom: 40px;
    font-size: 0.7em;
    color: #aaa;
    font-weight: 400;
}

#access-code {
	width: 50%;
}
#access-code p.code-string {
	font-size: 2em;
	font-weight: bold;
}
#payday-feedback img {
	width: 200px;
	padding-top: 50px;
}

p.error {
	color: #e2525c;
	font-style: italic;
}
p.error span {
	font-weight: bold;
}

span.click-button {
	display: block;
	max-width: 100px;
	margin: auto;
	text-align: center;
	color: #FFF;
	margin-top: 20px;
}

#share-volunteers {
	width: 200px;
	height: 100vh;
	padding: 20px;
	position: fixed;
	/*overflow: scroll;*/
	top: 0;
	right: -200px;
	background: #1B1C24;
	color: #FFF;
	z-index: 999;
	-webkit-box-shadow: -5px 0 5px -2px rgba(0,0,0,0.2);
	box-shadow: -5px 0 5px -2px rgba(0,0,0,0.2);
}
	#share-volunteers #toggle-button {
		width: 30px;
		height: 30px;
		position: absolute;
		top: 50px;
		left: -30px;
		background: #1B1C24;
		text-align: center;
		font-size: 1.2em;
		cursor: pointer;
		-webkit-box-shadow: -5px 0px 15px -2px rgba(0,0,0,0.2);
		box-shadow: -5px 0px 15px -2px rgba(0,0,0,0.2);
	}
		#share-volunteers #toggle-button svg, #share-volunteers #toggle-button i {
			position: relative;
			top: 2px;
		}
		#share-volunteers #toggle-button.toggled svg, #share-volunteers #toggle-button.toggled i {
			-webkit-transform: rotate(180deg);
			-moz-transform: rotate(180deg);
			-o-transform: rotate(180deg);
			-ms-transform: rotate(180deg);
			transform: rotate(180deg);
		}
	#volunteers-box-container {
		position: relative;
		min-height: 90%;
		width: 160px;
		overflow: auto;
	}
	#volunteers-box {
		position: absolute;
		width: 100%;
		top: 0;
		left: 0;
	}
	#share-volunteers h2 {
		color: #FFF;
		font-size: 1.2em;
		padding: 0;
		margin: 0;
		text-transform: uppercase;
		text-align: center;
	}
	#share-volunteers p.refresh {
		padding: 0;
		margin: 10px;
		text-align: center;
		font-size: 0.9em;
    	border-spacing: 0;
		cursor: pointer;
	}
	.volunteer {
		padding: 5px 0;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		cursor: pointer;
		text-align: left;
	}

.cardgame-access {
	width: 400px;
	max-width: 90%;
	margin: auto;
	text-align: center;
}
.cardgame-access + .cardgame-access {
	font-style: italic;
	padding-top: 20px;
}

.cardgame-droparea {
	position: relative;
	margin-top: 2vw;
}
.cardgame-droparea.offset {
	position: relative;
	margin-top: 22vw;
}

@media screen and (max-width: 700px) {
	.cardgame-droparea {
		margin-top: 10px;
	}
	.cardgame-droparea.offset {
		position: relative;
		margin-top: 210px;
	}
}

.card-deck {
    min-height: 20vw;
    width: 100%;
    background: #46455E;
    z-index: 99999 !important;
    position: relative;
    /*top: 150px;*/
	touch-action: none;
}
	.card-deck.fixed {
		position: fixed;
		top: 0;
	}
	.card-deck.hidden {
		position: fixed;
		top: -22vw;
		z-index: 999999;
	}

.card-deck .arrow {
    display: none;
    background: #46455E;
    color: #FFF;
    font-size: 1.2em;
    height: 50px;
    padding-top: 20px;
    width: 50px;
    position: absolute;
    bottom: -50px;
    left: calc(50% - 25px);
    text-align: center;
    cursor: pointer;
    -webkit-border-bottom-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-bottomright: 20px;
    -moz-border-radius-bottomleft: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
	.card-deck .arrow.reversed svg {
		-webkit-transform: rotate(180deg);
		-moz-transform: rotate(180deg);
		-o-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg);
	}

.mini-headers {
	width: 100%;
	color: #FFF;
	font-size: 0.7em;
	text-transform: uppercase;
	height: 30px;
	position: absolute;
	bottom: -23px;
	left: 0;
	text-align: center;
	display: none;
}
	.mini-headers table td {
		background: #CE4B51;
		width: 20%;
		max-width: 198px;
		vertical-align: top;
    	line-height: 1em;
		padding: 5px 0;
		-webkit-border-bottom-right-radius: 10px;
		-webkit-border-bottom-left-radius: 10px;
		-moz-border-radius-bottomright: 10px;
		-moz-border-radius-bottomleft: 10px;
		border-bottom-right-radius: 10px;
		border-bottom-left-radius: 10px;
	}
@media screen and (max-width: 700px) {
	.mini-headers {
		font-size: 0.5em;
	}
}

/*.game-wrapper {
	margin-top: 22vw;
}*/

.card-deck img {
	-webkit-border-radius: 10%;
	-moz-border-radius: 10%;
	border-radius: 10%;
	cursor: grab;
	touch-action: manipulation;
	pointer-events: none;
}
.draggable, .flipcard {
	width: 19vw;
	height: 19vw;
	max-width: 190px;
	max-height: 190px;
	position: absolute;
	z-index: 1;
	transition: all 300ms;
}
.flipcard.stationary {
	position: relative !important;
}
.flipcard.stationary img {
	pointer-events: none;
}
.draggable.dragging {
	/*-webkit-box-shadow: 0px 0px 8px 2px rgba(228,82,89,1);
    -moz-box-shadow: 0px 0px 8px 2px rgba(228,82,89,1);
	box-shadow: 0px 0px 8px 2px rgba(228,82,89,1);
	-webkit-border-radius: 12%;
    -moz-border-radius: 12%;
    border-radius: 12%;*/
	transition: none !important;
}
.draggable.error {
	-webkit-box-shadow: 0px 0px 8px 2px rgba(228,82,89,1);
    -moz-box-shadow: 0px 0px 8px 2px rgba(228,82,89,1);
	box-shadow: 0px 0px 8px 2px rgba(228,82,89,1);
	-webkit-border-radius: 12%;
    -moz-border-radius: 12%;
    border-radius: 12%;
}

.flipcard .front, .flipcard .back {
	position: absolute;
	top: 0;
	left: 0;
	width: 19vw;
	height: 19vw;
	max-width: 190px;
	max-height: 190px;
	border-radius: 1.5vw;
	background: #F1F1F1;
	text-align: center;
	transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: all 0.5s ease-in-out;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
  }
  .flipcard .front {
	z-index: 900;
	transform: rotateY(0deg);
  }
  .flipcard .back {
	z-index: 800;
	transform: rotateY(-180deg);
	border: 1vw solid #46455E;
	font-weight: normal;
    font-size: 1vw;
    line-height: 1em;
    padding: 8% 5% 0;
    overflow: hidden;
	user-select: none;
	color: #000;
  }
	.flipcard .back h3 {
		margin: 0;
		margin-bottom: 1vw;
		position: relative;
		background: #46455E;
		color: #FFF;
		display: inline-block;
		padding: 0.2vw 1vw 0.5vw;
		text-transform: uppercase;
		font-size: 1.8vw;
	}
	.flipcard .back .disclaimer {
		font-size: 0.8em;
		line-height: 0.8em;
		font-style: italic;
		border-top: 1px solid #000;
		margin-top: 8%;
		padding-top: 3px;
	}
	.ism-card.flipcard .back {
	  border: 13px solid #F4B680;
	}
	.ism-card.flipcard .back h3 {
		background: #F4B680;
	}
	.header-card.flipcard .back {
	  border: 13px solid #E45259;
	}
	.header-card.flipcard .back h3 {
		background: #E45259;
	}
	.category-card.flipcard .back {
	  border: 13px solid #83B990;
	}
	.category-card.flipcard .back h3 {
		background: #83B990;
	}
  .flip {
	z-index: 999999999999 !important;
	transition: all 300ms;
	left: 35vw !important;
	top: 5vw !important;
  }
  .flip .front {
	transform: rotateY(180deg);
	z-index: 900;
  }
  .flip .back {
    transform: rotateY(0deg);
    z-index: 1000;
    max-width: 500px;
    max-height: 500px;
    width: 30vw;
    height: 30vw;
    border: 15px solid #46455E;
    font-size: 2vw;
    padding: 2vw;
	padding-top: 0;
}

.droppable .flip .back, .stationary.flip .back {
    position: fixed;
    top: 20vw;
    left: 35vw;
}

  .flipcard i.fa-info-circle, .flipcard svg.fa-info-circle {
    position: absolute;
    top: 8%;
    right: 8%;
    color: #FFF;
    font-size: 14px;
	cursor: pointer;
}
.flipcard i.fa-reply, .flipcard svg.fa-reply {
    position: absolute;
    top: 1%;
    right: 1%;
    color: #46455E;
    font-size: 1.5vw;
	cursor: pointer;
}
	.ism-card.flipcard i.fa-reply, .ism-card.flipcard svg.fa-reply {
		color: #F4B680;
	}
	.header-card.flipcard i.fa-reply, .header-card.flipcard svg.fa-reply {
		color: #E45259;
	}
	.category-card.flipcard i.fa-reply, .category-card.flipcard svg.fa-reply {
		color: #83B990;
	}

@media screen and (max-width: 1100px) {
	.flip {
		left: 30vw !important;
		top: 5vw !important;
	}
	.flip .back {
		width: 40vw;
		height: 40vw;
		border: 15px solid #46455E;
		font-size: 2.5vw;
		padding: 2vw;
		padding-top: 0;
	}
	.flipcard i.fa-reply, .flipcard svg.fa-reply {
		font-size: 2vw;
	}
	.flipcard .back h3 {
		font-size: 1.8vw;
	}
	.droppable .flip .back, .stationary.flip .back {
		position: fixed;
		top: 20vw;
		left: 30vw;
	}
}
@media screen and (max-width: 800px) {
	.flip {
		left: 20vw !important;
		top: 5vw !important;
	}
	.flip .back {
		width: 60vw;
		height: 60vw;
		border: 15px solid #46455E;
		font-size: 3.5vw;
		padding: 4vw;
		padding-top: 0;
	}
	.flipcard i.fa-reply, .flipcard svg.fa-reply {
		font-size: 3.5vw;
	}
	.flipcard .back h3 {
		font-size: 3vw;
	}
	.droppable .flip .back, .stationary.flip .back {
		top: 10vw;
		left: 20vw;
	}
}
@media screen and (max-width: 500px) {
	.flip {
		left: 5vw !important;
		top: 5vw !important;
	}
	.flip .back {
		max-width: 500px;
		max-height: 500px;
		width: 90vw;
		height: 90vw;
		border: 10px solid #46455E;
		font-size: 6vw;
		padding: 5vw;
		padding-top: 0;
	}
	.flipcard i.fa-reply, .flipcard svg.fa-reply {
		font-size: 5vw;
	}
	.flipcard .back h3 {
		font-size: 5vw;
	}
	.droppable .flip .back, .stationary.flip .back {
		top: 30vw;
		left: 5vw;
	}
}

.online-cardgame td {
	position: relative;
}

.online-cardgame td div.placeholder {
	position: absolute;
	width: 19vw;
	height: 19vw;
	max-width: 190px;
	max-height: 190px;
	left: 0;
	top: 0;
    background: #CCC;
    -webkit-border-radius: 10%;
    -moz-border-radius: 10%;
    border-radius: 10%;
    -webkit-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.2);
    box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.2);
}
.online-cardgame td div.placeholder.dragging-over {
    background: #46455E;
}

.droppable .incorrect {
	display: none;
	position: absolute;
	z-index: 999;
	width: 19vw;
	height: 19vw;
	max-width: 190px;
	max-height: 190px;
	left: 0;
	top: 0;
	background: rgba(206, 75, 81, 0.6);
    -webkit-border-radius: 10%;
    -moz-border-radius: 10%;
    border-radius: 10%;
    -webkit-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.2);
    box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.2);
}
	.droppable .incorrect.visible {
		display: block;
		z-index: 999;
	}



.wpkqcg_qrcode {
	width: 400px;
}


.noclick {
	cursor: default !important;
}
.hidden-clickable {
	display: none;
}
.nicoleid {
	z-index: 9;
}

.hypoid {
	z-index: 15;
	position: relative;
}
.hidden-unclickable {
	display: none;
	position: absolute;
}




/*--------------------------------
		BOARD GAME
--------------------------------*/

body#online-boardgame {
    background: #fafbfc;
    padding-top: 160px;
}

body#online-boardgame header#masthead {
    z-index: 999999;
    position: absolute;
    height: auto;
}
body#online-boardgame header#masthead.sticky {
    height: auto;
    border-bottom: 0;
}
body#online-boardgame header#masthead.sticky .site-branding .custom-logo {
    max-width: 300px;
}

body#online-boardgame header#masthead .student-info {
    margin-right: 100px;
	color: #FFF;
	font-size: 0.8em;
	padding-top: 15px;
}
body#online-boardgame header#masthead .student-info h3 {
	text-align: center;
	padding-bottom: 5px;
	margin-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
body#online-boardgame header#masthead .student-info label {
	min-width: 50px;
	display: inline-block;
	font-weight: bold;
}
	body#online-boardgame header#masthead .student-info div.second-group label {
		padding-left: 50px;
	}
body#online-boardgame header#masthead .student-info span {
	min-width: 70px;
	display: inline-block;
}

body#online-boardgame h2 {
	margin-top: 75px;
}
body#online-boardgame h2:first-of-type {
	margin-top: 20px;
}

footer .game-options {
	color: rgba(255, 255, 255, 0.4);
	display: inline-block;
	margin: 0 5px;
}
	footer .game-options:hover {
		color: rgba(255, 255, 255, 1);
		cursor: pointer;
	}

.boardgame-buttons-wrapper {
    width: 40%;
    position: absolute;
    top: 0;
    right: 0;
    text-align: right;
    padding-right: 5%;
    overflow: hidden;
    height: 155px;
}
.boardgame-buttons-wrapper img {
    max-height: 200px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: -1;
}
.boardgame-buttons-wrapper h1, .boardgame-buttons-wrapper h2, .boardgame-buttons-wrapper h3, .boardgame-buttons-wrapper h4, .boardgame-buttons-wrapper h5, .boardgame-buttons-wrapper p {
	margin: 0;
	padding: 0;
	color: #FFF;
}
.boardgame-buttons-wrapper .boardgame-button {
	display: inline-block;
	vertical-align: middle;
	font-size: 1.2em;
	color: #FFF;
	cursor: pointer;
	padding: 0 10px;
}
	.boardgame-buttons-wrapper .boardgame-button span {
		width: 75px;
		text-align: center;
		position: relative;
		padding-left: 10px;
	}
.boardgame-buttons-wrapper a:link, .boardgame-buttons-wrapper a:visited, .boardgame-buttons-wrapper a:hover, .boardgame-buttons-wrapper a:active {
	color: #FFF;
	width: 75px;
	text-align: center;
	position: relative;
	font-size: 1.2em;
}
.boardgame-buttons-wrapper a i {
	margin-right: 10px;
}

.budget-wrapper {
    width: 100%;
    max-width: 800px;
    min-width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
}

.budget-wrapper p {
	padding-top: 0px;
	margin-top: 0px;
	font-size: 0.9em;
	font-style: italic;
}

.boardgame-access {
	width: 400px;
	max-width: 90%;
	margin: auto;
	text-align: center;
}
.boardgame-access + .boardgame-access {
	font-style: italic;
	padding-top: 20px;
}


@media screen and (max-width: 700px) {
	.boardgame-buttons-wrapper {
		width: 100%;
		position: relative;
	}
	body#online-boardgame header#masthead .student-info {
		width: 275px;
		margin: 0;
		left: -15px;
		position: relative;
	}
	body#online-boardgame header#masthead .student-info span {
		min-width: 50px;
	}
	body#online-boardgame header#masthead .student-info div.second-group label {
		padding-left: 30px;
	}
}


/*
PICK A TEAM
*/

#impact-logo {
	width: 400px;
	max-width: 90%;
	margin: auto;
	display: block;
}

.pick-a-team {
    width: 100%;
    max-width: 800px;
    min-width: 300px;
    margin-left: auto;
    margin-right: auto;
	padding: 50px 10px;
	text-align: center;
}

.pawn-wrapper {
	display: block;
	text-align: center;
}
.pawn-wrapper > div {
	cursor: pointer;
	background: #FFF;
	display: inline-block;
	width: 20%;
	min-width: 150px;
	margin: 0 1%;
	padding: 15px 15px 0 15px;
	-webkit-border-top-left-radius: 20px;
	-webkit-border-top-right-radius: 20px;
	-moz-border-radius-topleft: 20px;
	-moz-border-radius-topright: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
    -webkit-box-shadow: rgba(9, 28, 46, 0.08) 0px 0.25rem 2.5rem 0px;
    box-shadow: rgba(9, 28, 46, 0.08) 0px 0.25rem 2.5rem 0px;
	-webkit-transition: all 500ms ease-out;
	-moz-transition: all 500ms ease-out;
	-o-transition: all 500ms ease-out;
	transition: all 500ms ease-out;
}
	.pawn-wrapper > div:hover {
		-webkit-transition: all 500ms ease-out;
		-moz-transition: all 500ms ease-out;
		-o-transition: all 500ms ease-out;
		transition: all 500ms ease-out;
	}
.pawn-wrapper > div#pawn-yellow:hover {
	background: #F4B680;
}
.pawn-wrapper > div#pawn-purple:hover {
	background: #46455E;
}
.pawn-wrapper > div#pawn-green:hover {
	background: #8abc95;
}
.pawn-wrapper > div#pawn-pink:hover {
	background: #E45259;
}
.pawn-wrapper > div img {
	vertical-align: bottom;
	max-width: 100%;
}



/*
ACCOUNT SUMMARY
*/

#acct-summary {
	text-align: center;
}
	#acct-summary span {
		display: block;
		color: rgba(0, 0, 0, 0.4);
		font-size: 0.8em;
	}
#share-acct {
	font-size: 0.8em;
	cursor: pointer;
	color: #8abc95;
}
	#share-acct:hover {
		color: #666;
	}
.acct-summary-balance {
    font-size: 2.5em;
    padding: 20px 0 10px;
}
	#acct-summary .acct-summary-balance img {
		max-width: 300px;
	}
	#acct-summary .acct-summary-balance strong {
		display: block;
	}
	#acct-summary .acct-summary-balance span {
		font-size: 0.5em;
	}
#running-balance.in-the-red {
	color: #E45259;
}
.savings-summary-balance {
    font-size: 1.7em;
    padding: 0 0 50px;
}
	#acct-summary .savings-summary-balance strong {
		display: block;
	}
	#acct-summary .savings-summary-balance span {
		font-size: 0.5em;
	}

.acct-summary {
	display: flex;
	justify-content: center;
}
.acct-summary-inout {
	flex: 1;
    background: #FFF;
    margin: 10px;
    padding: 10px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: rgba(9, 28, 46, 0.05) 0px 0.25rem 2.5rem 0px;
    box-shadow: rgba(9, 28, 46, 0.05) 0px 0.25rem 2.5rem 0px;
}

.acct-summary-in-label i {
	color: #8abc95;
}
.acct-summary-out-label i {
	color: #E45259;
}

#acct-summary a:link, #acct-summary a:visited {
	display: block;
	font-size: 0.8em;
	color: #46455E;
}
	#acct-summary a:hover, #acct-summary a:active {
		display: block;
		font-size: 0.8em;
		color: #22232E;
		cursor: pointer;
	}


@media screen and (max-width: 700px) {
	#acct-summary {
		padding-top: 50px;
	}
}



/*
CREDITS
*/

.credits-container {
	position: relative;
	min-height: 100px;
	margin: 50px 0 20px;;
}

div.credit {
	position: absolute;
	right: 0;
    width: 100px;
    height: 100px;
    background: #FFF;
    color: #CCC;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8em;
    padding: 30px 0;
    text-align: center;
    border: 10px solid #CCC;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px;
    -webkit-box-shadow: rgba(9, 28, 46, 0.05) 0px 0.25rem 2.5rem 0px;
    box-shadow: rgba(9, 28, 46, 0.05) 0px 0.25rem 2.5rem 0px;
}

.credits-container.yellow-team div.credit.earned {
    color: #E7B589;
    border: 10px solid #E7B589;
}
.credits-container.purple-team div.credit.earned {
    color: #21232E;
    border: 10px solid #21232E;
}
.credits-container.green-team div.credit.earned {
    color: #92B996;
    border: 10px solid #92B996;
}
.credits-container.pink-team div.credit.earned {
    color: #D25E5F;
    border: 10px solid #D25E5F;
}

.credits-addremove {
    overflow: auto;
}
#credits-remove {
	float: left;
	color: #E45259;
	-webkit-transition: all 500ms ease-out;
	-moz-transition: all 500ms ease-out;
	-o-transition: all 500ms ease-out;
	transition: all 500ms ease-out;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
	#credits-remove:hover {
		color: #BA3643;
		cursor: pointer;
		-webkit-transition: all 500ms ease-out;
		-moz-transition: all 500ms ease-out;
		-o-transition: all 500ms ease-out;
		transition: all 500ms ease-out;
	}
#credits-add {
	float: right;
	color: #8abc95;
	-webkit-transition: all 500ms ease-out;
	-moz-transition: all 500ms ease-out;
	-o-transition: all 500ms ease-out;
	transition: all 500ms ease-out;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
	#credits-add:hover {
		color: #607660;
		cursor: pointer;
		-webkit-transition: all 500ms ease-out;
		-moz-transition: all 500ms ease-out;
		-o-transition: all 500ms ease-out;
		transition: all 500ms ease-out;
	}

canvas#confetti {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999999;
    pointer-events: none;
}

#credits-congrats {
    display: none;
    text-align: center;
    width: 50%;
    min-width: 300px;
    margin: auto;
    background: #FFF;
    padding: 10px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: rgba(9, 28, 46, 0.05) 0px 0.25rem 2.5rem 0px;
    box-shadow: rgba(9, 28, 46, 0.05) 0px 0.25rem 2.5rem 0px;
}
	#credits-congrats h1 {
		margin: 0;
	}
	#credits-congrats i {
		display: block;
		font-size: 3em;
		color: #8abc95;
		margin: 10px 0;
	}


@media screen and (max-width: 700px) {
	.credits-container {
		min-height: 210px;
	}
}



/*
BILLPAY
*/

.payday-count {
    padding: 20px;
    margin-bottom: 20px;
    background: #8abc95;
    color: #FFF;
	position: relative;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
	.payday-count:after {
		bottom: 100%;
		left: 40px;
		border: solid transparent;
		content: " ";
		height: 0;
		width: 0;
		position: absolute;
		pointer-events: none;
		border-bottom-color: #8abc95;
		border-width: 15px;
		margin-left: -15px;
	}
.payday-count h3 {
	color: #FFF;
	margin: 0;
}
.payday-count p {
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}
.payday-count.bills-due {
	background: #E45259;
}
	.payday-count.bills-due:after {
		border-bottom-color: #E45259;
	}

#reset-payments {
	float: right;
	font-size: 0.8em;
	cursor: pointer;
	padding: 0 20px;
	color: #8abc95;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
	#reset-payments:hover {
		color: #607660;
	}
#reset-payments i.clicked {
    animation-name: spin;
    animation-duration: 500ms;
    animation-iteration-count: 1;
    animation-timing-function: linear;
}

.bill-item {
	clear: both;
	display: flex;
	background: #FFF;
	margin: 10px 0;
	padding: 10px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-box-shadow: rgba(9, 28, 46, 0.05) 0px 0.25rem 2.5rem 0px;
    box-shadow: rgba(9, 28, 46, 0.05) 0px 0.25rem 2.5rem 0px;
}
	.bill-item > div {
		position: relative;
	}
	.bill-item span {
		display: block;
		color: rgba(0, 0, 0, 0.4);
		font-size: 0.8em;
	}
	.bill-item input {
		width: 75px;
	}
.bill-item-icon {
	flex: 1;
}
	.bill-item-icon strong {
		font-size: 30px;
		position: absolute;
		top: 10px;
		left: -10px;
		width: 100%;
		text-align: center;
	}
.bill-item-title {
	flex: 5;
}
.bill-item-amt {
	flex: 2;
}
.bill-item-pay {
	flex: 2;
}
	.bill-item-pay span.reduced {
		color: #8abc95;
	}
	.bill-item-pay span.splitting {
		color: #EAB888;
	}
	.bill-item-pay span.invalid {
		color: #E45259 !important;
	}

.bill-summary {
	display: flex;
}
.bill-summary-item {
    position: relative;
    margin: 10px 0;
    padding: 10px;
    flex: 1 1;
	font-size: 2em;
	text-align: center;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: rgba(9, 28, 46, 0.05) 0px 0.25rem 2.5rem 0px;
    box-shadow: rgba(9, 28, 46, 0.05) 0px 0.25rem 2.5rem 0px;
}
	.bill-summary-item span {
		display: block;
		color: rgba(255, 255, 255, 0.5);
		font-size: 0.5em;
	}
.bill-summary-item#total-due {
	background: #1B1C24;
	color: #FFF;
	margin-right: 5px;
}
.bill-summary-item#total-remaining {
	background: #8abc95;
	color: #FFF;
	margin-left: 5px;
}
	.bill-summary-item#total-remaining.negative {
		background: #E45259;
	}
#bill-pay-button {
	text-transform: uppercase;
	font-weight: bold;
	color: #FFF;
	font-size: 1.5em;
	background: #46455E;
	text-align: center;
	padding: 10px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    -webkit-box-shadow: rgba(9, 28, 46, 0.05) 0px 0.25rem 2.5rem 0px;
    box-shadow: rgba(9, 28, 46, 0.05) 0px 0.25rem 2.5rem 0px;
	-webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out 
}
	#bill-pay-button:hover {
		cursor: pointer;
		background: #22232E;
		-webkit-transition: all 500ms ease-out;
		-moz-transition: all 500ms ease-out;
		-o-transition: all 500ms ease-out;
		transition: all 500ms ease-out;
	}
	#bill-pay-button.disabled {
		background: #BBB;
		cursor: default;
	}

.pay-error {
	display: none;
	font-style: italic;
	color: #E45259;
	text-align: center;
}

.budget-wrapper table th {
	border-bottom: 1px solid #ccc;
	text-align: left;
	padding-left: 20px;
}
.budget-wrapper table td {
	border-bottom: 1px dotted #ccc;
	padding-left: 20px;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
    font-size: 20px;
	font-family: "brandon-grotesque", Helvetica, Arial, sans-serif;
	background: transparent;
}
	input[type="number"].reduced {
		border: 1px solid #8abc95;
	}
	input[type="number"].splitting {
		border: 1px solid #EAB888;
	}
	input[type="number"].invalid {
		border: 1px solid #E45259 !important;
	}
input[readonly] {
    cursor: default;
}

@media screen and (max-width: 700px) {
	.bill-item {
    	font-size: 0.8em;
	}
	.bill-item-title {
		flex: 8;
	}
	.bill-item-amt, .bill-item-pay {
		flex: 5;
	}
	.bill-item-icon strong {
		font-size: 18px;
		top: 0;
		left: -5px;
	}
	.bill-item-pay input[type="number"] {
		padding: 0;
		font-size: 0.9em;
		width: 50px;
	}
	
	.bill-summary-item {
		font-size: 1.5em;
	}
	#bill-pay-button {
		font-size: 1.2em;
	}
}


/*
SOURCES OF INCOME
*/

#sources-income {
	padding-bottom: 50px;
}

#sources-income h3 {
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.income-paycheck {
    font-size: 2.5em;
    padding: 20px 0 30px;
	text-align: center;
}
.income-paycheck img {
    max-width: 300px;
    display: block;
    margin: auto;
    margin-bottom: 20px;
}
.income-paycheck span {
    display: block;
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.5em;
}

.center-container {
	text-align: center;
}

#add-job-form {
	display: inline-block;
	margin-left: 10px;
	color: #FFF;
	background: #8abc95;
	padding: 5px 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
	-webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out 
}
	#add-job-form:hover {
		cursor: pointer;
		background: #607660;
		-webkit-transition: all 500ms ease-out;
		-moz-transition: all 500ms ease-out;
		-o-transition: all 500ms ease-out;
		transition: all 500ms ease-out 
	}
	#add-job-form.disabled, #add-job-form.disabled:hover {
		background: #bbb !important;
		cursor: default !important;
	}
.yellow-team #add-job-form {
	background: #EAB888;
}
	.yellow-team #add-job-form:hover {
		background: #D4A781;
	}
.purple-team #add-job-form {
	background: #46455E;
}
	.purple-team #add-job-form:hover {
		background: #22232E;
	}
.green-team #add-job-form {
	background: #8abc95;
}
	.green-team #add-job-form:hover {
		background: #607660;
	}
.pink-team #add-job-form {
	background: #E45259;
}
	.pink-team #add-job-form:hover {
		background: #BA3643;
	}

.add-job-form {
	display: none;
	padding-top: 15px;
}
.add-job-form label {
    min-width: 100px;
    display: inline-block;
}
.add-job-form input {
	margin: 5px 0;
}

.part-time-jobs {
	clear: both;
}
.part-time-job {
    display: flex;
    background: #FFF;
    margin: 10px 0;
    padding: 10px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: rgba(9, 28, 46, 0.05) 0px 0.25rem 2.5rem 0px;
    box-shadow: rgba(9, 28, 46, 0.05) 0px 0.25rem 2.5rem 0px;
}
.part-time-job strong, .part-time-job span {
	flex: 1 1;
}

.extra-funds p {
	display: none;
}
.extra-funds span {
	margin-left: 10px;
	color: #FFF;
	background: #8abc95;
	padding: 5px 20px;
	display: inline-block;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
	-webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out 
}
	.extra-funds span:hover {
		cursor: pointer;
		background: #607660;
		-webkit-transition: all 500ms ease-out;
		-moz-transition: all 500ms ease-out;
		-o-transition: all 500ms ease-out;
		transition: all 500ms ease-out 
	}
.yellow-team .extra-funds span {
	background: #EAB888;
}
	.yellow-team .extra-funds span:hover {
		background: #D4A781;
	}
.purple-team .extra-funds span {
	background: #46455E;
}
	.purple-team .extra-funds span:hover {
		background: #22232E;
	}
.green-team .extra-funds span {
	background: #8abc95;
}
	.green-team .extra-funds span:hover {
		background: #607660;
	}
.pink-team .extra-funds span {
	background: #E45259;
}
	.pink-team .extra-funds span:hover {
		background: #BA3643;
	}

.remove-job {
	color: #E45259;
	cursor: pointer;
	text-align: right;
    position: relative;
    display: inline-block;
}
.remove-job.tooltip > span {
    position: absolute;
    width: 140px;
    color: #FFFFFF;
    background: #1B1C24;
    height: auto;
    padding-bottom: 5px;
    line-height: 30px;
    text-align: center;
    visibility: hidden;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
	.remove-job.tooltip > span:after {
		content: '';
		position: absolute;
		bottom: 100%;
		left: 50%;
		margin-left: -8px;
		width: 0; height: 0;
		border-bottom: 8px solid #1B1C24;
		border-right: 8px solid transparent;
		border-left: 8px solid transparent;
	}
.remove-job.tooltip > span.clicked {
    visibility: visible;
    opacity: 0.9;
    top: 30px;
    left: 50%;
    margin-left: -76px;
    z-index: 999;
}

.remove-job.tooltip > span span {
    cursor: pointer;
    display: inline-block;
    padding: 0px 10px;
    margin: 3px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #E45259;
}
.remove-job.tooltip > span span + span {
	background: #8abc95;
}



/*
SHARE ACCOUNT SUMMARY
*/

#share-acct-summary {
	display: none;
	text-align: center;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 999999999;
	background: #fafbfc;
	padding: 20px 5%;
	overflow: scroll;
}
	#share-acct-summary span {
		display: block;
		color: rgba(0, 0, 0, 0.4);
		font-size: 0.8em;
	}

#share-acct-summary > img {
	max-width: 300px;
}

#share-acct-summary .acct-summary-balance {
    font-size: 2.5em;
    padding: 20px;
	min-width: 25%;
}
#share-acct-summary .acct-summary-balance strong {
	display: block;
}
#share-acct-summary .acct-summary-balance span {
	font-size: 0.5em;
}

#share-running-balance.in-the-red {
	color: #E45259;
}

#share-acct-summary .acct-summary-inout {
    font-size: 1.2em;
}

#share-acct-summary .fa-times-circle {
	font-size: 1.5em;
	position: absolute;
	top: 20px;
	right: 20px;
	color: rgba(0, 0, 0, 0.3);
	cursor: pointer;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}
	#share-acct-summary .fa-times-circle:hover {
		color: #E45259;
		-webkit-transition: all 300ms ease-out;
		-moz-transition: all 300ms ease-out;
		-o-transition: all 300ms ease-out;
		transition: all 300ms ease-out;
	}

#share-acct-summary .team-banner {
	width: 200px;
	padding: 20px;
	text-align: center;
	position: absolute;
	top: 20px;
	left: 0;
	color: #FFF;
	background: #46455E;
	-webkit-border-top-right-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	-moz-border-radius-topright: 10px;
	-moz-border-radius-bottomright: 10px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}
	#share-acct-summary .team-banner.yellow-team { background: #F4B680; }
	#share-acct-summary .team-banner.purple-team { background: #46455E; }
	#share-acct-summary .team-banner.green-team { background: #8abc95; }
	#share-acct-summary .team-banner.pink-team { background: #E45259; }
#share-acct-summary .team-banner i {
	display: block;
	font-size: 2em;
}
#share-acct-summary .team-banner span {
	display: inline;
	color: #FFF;
	font-style: normal;
}



/*
POPUPS
*/

.bank-popups-container {
    background: rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9999999;
	display: none;
}

.bank-popup {
    position: fixed;
    top: 100px;
    left: calc(50% - 175px);
    width: 350px;
	color: #FFF;
	text-align: center;
	padding: 20px;
    background-color: #46455E;
    background-image: url(images/boardgame/payday_bg.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 9999999;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: rgba(9, 28, 46, 0.55) 0px 0.25rem 2.5rem 0px;
    box-shadow: rgba(9, 28, 46, 0.55) 0px 0.25rem 2.5rem 0px;
	display: none;
}
	.bank-popup.yellow-team {
		background-color: #F4B680;
	}
	.bank-popup.green-team {
		background-color: #8abc95;
	}
	.bank-popup.pink-team {
		background-color: #E45259;
	}
.bank-popup.payday img {
    width: 200px;
	padding-top: 50px;
}
.bank-popup.bills-paid img {
    width: 150px;
	padding: 10px 0 20px;
}
.bank-popup h1, .bank-popup h2, .bank-popup h3 {
	color: #FFF;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	font-weight: bold;
	line-height: 1em;
}
	.bank-popup h1 {
		font-size: 3em;
		margin-bottom: 20px;
	}
	.bank-popup h2 {
		font-size: 1em;
	}
	.bank-popup h3 {
		font-size: 2em;
	}
body#online-boardgame .bank-popup p {
	padding: 0;
	margin: 0;
	font-style: normal;
}

.bank-popup a.button {
	margin-top: 30px !important;
	background: #22232E !important;
}
	.bank-popup a.button:hover {
		margin-top: 30px !important;
		background: #1B1C24 !important;
	}

.bank-popup i.fa-times-circle {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}

.blurred {
	-webkit-filter: blur(2px);
	filter: blur(2px);
	-webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
header#masthead {
	-webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
.budget-wrapper {
	-webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}





@media screen and (max-width: 700px) {
	/*body#online-cardgame {
		padding-top: 200px;
	}*/
	
	.cardgame-buttons-wrapper {
		width: 100%;
		position: relative;
		top: 0;
		right: 0;
		text-align: center;
		padding-right: 0;
		padding-bottom: 10px;
	}
	
	.card-deck {
		min-height: 200px;
	}
		.card-deck.hidden {
			top: -200px;
		}

	#sample-intro {
		font-size: 0.7em;
	}

	.bank-popup {
		padding: 50px 20px 0;
		top: 0;
		left: 0;
		width: 100%;
		height: 105vh;
		z-index: 9999999;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
}



/*
TIMER
*/

.session-timer {
    position: fixed;
    bottom: 60px;
    right: 0;
    font-size: 1.5em;
    font-weight: bold;
    padding: 10px 5px;
    background: #1B1C24;
    color: #FFF;
    z-index: 99999;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    min-width: 160px;
    text-align: center;
}
.session-timer.hurry-up {
    background: #E45259;
    animation: bounce 30s linear infinite;
}
.session-timer span {
    display: block;
    line-height: 1em;
}
.session-timer span.label {
    text-transform: uppercase;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.5em;
}
/*@-webkit-keyframes bounce { 
    0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);} 
    40% {-webkit-transform: translateY(-30px);} 
    60% {-webkit-transform: translateY(-15px);} 
} */

@keyframes bounce { 
    0% {transform: translateY(0);}
    0.5% {transform: translateY(-15px);}
    1% {transform: translateY(0);}
    1.5% {transform: translateY(-7px);}
    2%{transform: translateY(0);}
    2.5% {transform: translateY(0);}
    100% {transform: translateY(0);}
}





