/*
    The 2016UI v2 CSS
*/
/* Font: */
@font-face {
    font-family: 'Museo Sans';
    src: url('../font/MuseoSans_100-webfont.eot');
    src: url('../font/MuseoSans_100-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/MuseoSans_100-webfont.woff') format('woff'),
         url('../font/MuseoSans_100-webfont.ttf') format('truetype'),

         url('../font/MuseoSans_100-webfont.svg#museo_sans_100regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*@font-face {
    font-family: 'Museo Sans';
    src: url('/shop/fd/font/MuseoSans_300.otf');
    font-weight: normal;
    font-style: normal;
}*/

@font-face {
    font-family: 'Museo Sans';
    src: url('../font/MuseoSans_500-webfont.eot');
    src: url('../font/MuseoSans_500-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/MuseoSans_500-webfont.woff') format('woff'),
         url('../font/MuseoSans_500-webfont.ttf') format('truetype'),
         url('../font/MuseoSans_500-webfont.svg#museo_sans_500regular') format('svg');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Museo Sans';
    src: url('../font/MuseoSans_300.otf');
    font-weight: 300;
    font-style: normal;
}

@font-face {
	font-family: 'Museo';
	src: url('../font/Museo700-regular-webfont.eot');
	src: url('../font/Museo700-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/Museo700-regular-webfont.woff') format('woff'),
         url('../font/Museo700-regular-webfont.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Start Stylesheets */

html {
	height: 100%
}

body {
    font-family: 'Museo Sans', Helvectica, sans-serif;
	font-weight: normal;
    background-color: #E0ECEB;
    position: inherit;
	-webkit-text-size-adjust: 100%;
}

div, .site, body {
    margin: 0;
    padding: 0;
	border: 0;
    /*color: #3B3B39;*/
	color: #212120;
}

.site {
	min-height: 100vh;
}

.claro {
  border: 30px #E0ECEB solid;
  padding: 20px;
  background: white;
  min-height: 100%;
}

/*
	Scrollbars:
*/

/* Webkit */
::-webkit-scrollbar {
	width: 0.4em;
}

::-webkit-scrollbar,
::-webkit-scrollbar-thumb {
	overflow:visible;
	border-radius: 4px;
	opacity: 1;
	
	transition: opacity 1s ease;
	-webkit-transition: opacity 1s ease;
}

::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,0.2); 
}

::-webkit-scrollbar:window-inactive,
::-webkit-scrollbar-thumb:window-inactive {
	opacity: 0;
}

/* Animations: */
@-webkit-keyframes grow {
	0% {
		display: none;
		opacity: 0;
	}
	
	50% {
		display: initial;
		opacity: 0;
		transform-origin: top;
		-webkit-transform-origin: top;
		-moz-transform-origin: top;
		-ms-transform-origin: top;
		-o-transform-origin: top;
		-webkit-transform: scale(1, 0);
		transform: scale(1, 0);
	}
	
	100% {
		opacity: 1;
		transform-origin: top;
		-webkit-transform-origin: top;
		-moz-transform-origin: top;
		-ms-transform-origin: top;
		-o-transform-origin: top;
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
}

@keyframes grow {
	0% {
		display: none;
		opacity: 0;
	}
	
	50% {
		display: initial;
		opacity: 0;
		transform-origin: top;
		-webkit-transform-origin: top;
		-moz-transform-origin: top;
		-ms-transform-origin: top;
		-o-transform-origin: top;
		-webkit-transform: scale(1, 0);
		transform: scale(1, 0);
	}
	
	100% {
		opacity: 1;
		transform-origin: top;
		-webkit-transform-origin: top;
		-moz-transform-origin: top;
		-ms-transform-origin: top;
		-o-transform-origin: top;
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
}

@-webkit-keyframes reverse-grow {
	0% {
		display: initial;
		opacity: 1;
	}
	
	50% {
		display: none;
		opacity: 1;
		transform-origin: top;
		-webkit-transform-origin: top;
		-moz-transform-origin: top;
		-ms-transform-origin: top;
		-o-transform-origin: top;
		-webkit-transform: scale(1, 0);
		transform: scale(1, 0);
	}
	
	100% {
		display: none;
		opacity: 0;
		transform-origin: top;
		-webkit-transform-origin: top;
		-moz-transform-origin: top;
		-ms-transform-origin: top;
		-o-transform-origin: top;
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
}

@keyframes reverse-grow {
	0% {
		display: initial;
		opacity: 1;
	}
	
	50% {
		display: none;
		opacity: 1;
		transform-origin: top;
		-webkit-transform-origin: top;
		-moz-transform-origin: top;
		-ms-transform-origin: top;
		-o-transform-origin: top;
		-webkit-transform: scale(1, 0);
		transform: scale(1, 0);
	}
	
	100% {
		display: none;
		opacity: 0;
		transform-origin: top;
		-webkit-transform-origin: top;
		-moz-transform-origin: top;
		-ms-transform-origin: top;
		-o-transform-origin: top;
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
}

/* Animate the pop effect of personIcons in the catalogue */

@-webkit-keyframes pop {
	50% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
	}
}

@keyframes pop {
	50% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
	}
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
}
/* IE */

/* Text Styles: */

a {
    color: #007F95;
}

b {
	font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

h2 {
	margin-top: 5px;
    font-size: 22.63px;
}

h4 {
    color: #717272;
}

h5 {
    font-size: 14.4px;
    font-weight: 300;
    color: #666664;

    margin: 0 0 5px 0;
}

/* Misc: */
.highlight {
    width: calc(100% - 20px);
    max-width: 750px;
	
	font-weight: 300;
	color: #657577;
	
    padding: 10px;

    display: inline-block;

    background: #EFF7F6;
    -webkit-border-radius: 23.5px;
    -moz-border-radius: 23.5px;
    border-radius: 23.5px;
}

.highlight > h4 {
    color: #3B798B;
    vertical-align: middle;
    line-height: 23px;
}

.contentSeperator {
    display: block !important;
    height: 1px;
    width: 100%;
    border-bottom: 1px solid #AFAFB0;
}

.noSelect {
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Chrome/Safari/Opera */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* IE/Edge */
            user-select: none; /* Non-prefixed version, for the latest browsers */
}

.select {
	-webkit-touch-callout: initial; /* iOS Safari */
    -webkit-user-select: initial; /* Chrome/Safari/Opera */
       -moz-user-select: initial; /* Firefox */
        -ms-user-select: initial; /* IE/Edge */
            user-select: initial; /* Non-prefixed version, for the latest browsers */
}

.popContainer {
	/* When this is hovered over, trigger the pop animation on the .pop children */
}

.popContainer .pop {
	animation: pop 0.25s linear 1;
	animation-play-state: paused;
}

.popContainer:hover .pop {
	animation-play-state: running;
}

/* Height and width must be equal */
.infoCircle {
	position: absolute;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    font-size: 10px;
    background-color: #C54545;
    color: #FFFFFF;
    font-weight: 300;
    vertical-align: middle;
    text-align: center;
    line-height: 15px;
}

/* Custom Placeholder Text Colour: MAKE DARKER?*/
::-webkit-input-placeholder {
    color: #7f7f7f;
    font-weight: 300;
}

:-moz-placeholder { /* Firefox 18- */
    color: #7f7f7f;
    font-weight: 300;
}

::-moz-placeholder {  /* Firefox 19+ */
    color: #7f7f7f;
    font-weight: 300;
}

:-ms-input-placeholder {  
    color: #7f7f7f;
    font-weight: 300;
}
/* Remove controls from Firefox */
input[type="number"],
input[type="text"][inputmode="numeric"] {
	/* number inputs and text-typed numeric inputs for correctly formatted dollar amounts */
    -moz-appearance: textfield;
    font-family: 'Museo Sans', sans-serif;
    font-weight: 500;
    color: #717272;
}

/* Remove controls from Safari and Chrome */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none;
  margin: 0; /* Removes leftover margin */
}

/* Fancy Input */
input[type="text"],
input[type="number"] {
	/* remove that ugly outline around text boxes */
	outline: none;
}

.roundedInput {
    border: solid 0.88px #AFAFB0;
    height: 23.3px;
	padding-top: 3px;
    border-radius: 15px;
    width: 72.5px;
    font-size: 14.4px;
    padding-left: 7.5px;
}

/* Navigation has migrated to navigation.css */

@import url('navigation.css');

/* Windows: */

.windowContainer {
    align-self: center;
	z-index: 10;
}

.windowContainer > div {
    display: inline-block;
    vertical-align: top;
    
    border-radius: 23.5px;
	
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: box-shadow 0.3s cubic-bezier(.25,.8,.25,1), visibility 0s, opacity 0.3s linear;
	-webkit-transition: box-shadow 0.3s cubic-bezier(.25,.8,.25,1), visibility 0s, opacity 0.3s linear;
}

.windowContainer > div:hover {
    /* shadow */
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.windowContainer > .centredWindow {
    /* A lone window, centred in the middle of the .windowContainer */
    background: #FFFFFF;
    width: 40%;
    padding: 15px;

    border: 2px solid #007F95;

    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.windowContainer > .centredWindow:hover {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.windowContainer > .centredWindow .successTitle {
	color: #BCCC3A;
}

.windowContainer > .centredWindow .moderateTitle {
	color: #71B7C9;
}

.windowContainer > .centredWindow .oopsTitle {
	color: #935C94;
}

.windowPadder {
    width: 1%;
}

/* Service Menu */

.serviceMenu {
    position: relative;
    background-color: #FFFFFF;
    height: 100%;
    width: 17.1%;
    padding-left: 20.8px;
    padding-right: 12.8px;
    padding-top: 11.57px;
	
	/* Polyfill Required: */
	/*position: -webkit-sticky;
	position: sticky;*/
	top: 0;
	
	transition: opacity 0.5s ease;
	-webkit-transition: opacity 0.5s ease;
}

.serviceMenu > div {
	max-height: 80vh;
	overflow-y: auto;
}

.serviceMenu .overlay {
	display: none;
}

.serviceMenu .schoolName {
    font-weight: 500;
    font-size: 22.63px;
    color: #007F95;
    margin-bottom: 0;
}

.serviceMenu select.schoolName {
	white-space: pre-wrap;
	width: 100%;
	padding-left: 0;
	padding-top: 0;
}

.serviceMenu select.schoolName > option {
	font-size: initial;
	color: initial;
	font-weight: 300;
}

/*
	serviceMenu schoolName styles.
*/
.serviceMenu .KindoSelect .KindoSelect__single-value {
	font-weight: 500;
	font-size: 22.63px;
	color: #007F95;
}


.serviceMenu .schoolName img {
	height: 17px;
	cursor: pointer;
}

.serviceMenu .done {
    cursor: pointer;
    float: right;
    color: #3B798B;
    display: none;
	font-weight: 500;
	padding-right: 10px;
}

/* Service Menu -> People Table */
.peopleTable {
    padding-top: 7px;
}

.peopleTable tr {
    height: 35px;
    color: #717272;
    
    transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    cursor: pointer;
}

.peopleTable tr:hover {
    color: #000000;
}

.peopleTable tr td {
    text-align: left;
    font-size: 16.46px;
    vertical-align: middle;
}

.peopleTable tr td img {
    padding-right: 10px;
    height: 26.8px;
}

.peopleTable .selected {
    color: #000000;
}

.peopleTableContainer {
    width: 100%;
    position: relative;
    
    padding-bottom: 12px;
}

.peopleTableContainer .plusPersonIcon {
    color: #FF7F50;
    height: 26.8px;
    cursor: pointer;
	
	/* Float the icon next to names */
	
	position: absolute;
	right: 0;
	bottom: 18px;
}

/* Service Menu -> Service List */

.serviceList {
	width: 100%;
}

.serviceList table tr .img img {
	max-height: 28px;
	max-width: 28px;
}

.serviceList .serviceContainer {
	border-bottom: 1px solid #AFAFB0;
}

.serviceList .serviceContainer .titleContainer {
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.serviceList .serviceContainer .titleContainer > div {
	display: flex;
	align-items: flex-end;
	height: auto;
	min-height: 25px;
	padding: 12px 0;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;

	color: #717272;
	
	/*vertical-align: middle;*/

	-webkit-transition: color 0.5s ease;
	-moz-transition: color 0.5s ease;
	-ms-transition: color 0.5s ease;
	-o-transition: color 0.5s ease;
	transition: color 0.5s ease;
}

/*.serviceList .serviceContainer .titleContainer:hover > div {
	color: #000000;

}*/

.serviceList .serviceContainer .titleContainer .img {
	width: 40px;
	text-align: center;
	vertical-align: middle;
}

.serviceList .serviceContainer .titleContainer .img > img {
	max-width: 40px;
	max-height: 25px;
}

.serviceList .serviceContainer .titleContainer .title {
	flex: 1;
	font-weight: 500;
	text-overflow: ellipsis;
	word-wrap: anywhere;
}

.serviceList .serviceContainer .titleContainer .title > span {
	/* service notification text */
	font-size: 12px;
}

.serviceList .serviceContainer .titleContainer .chevron {
	width: 31px;

	flex-direction: column;
	justify-content: space-around;
}

.serviceList .serviceContainer .titleContainer .chevron img {
	height: 13px;
	padding: 0;

	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
}

/* mcat stuff */

.serviceList .serviceContainer .mcatContainer {
	max-height: 100vh;
	overflow-y: hidden;
	
	-webkit-transition: max-height 1s ease;
	-moz-transition: max-height 1s ease;
	-ms-transition: max-height 1s ease;
	-o-transition: max-height 1s ease;
	transition: max-height 1s ease;
}

.serviceList .serviceContainer .mcatContainer .mcat {
	/*display: list-item;
	width: 100%;
	list-style-type: circle;
	list-style-image: url('../img/icon/fa_caret-right.png');*/
	display: inline-block;
	width: 100%;
	
	cursor: pointer;
	
	min-height: 19px;
}

.serviceList .serviceContainer .mcatContainer .mcat > div {
	flex: 1;
	color: #3B798B;
	padding-left: 41px;

	font-size: 14.4px;

	-webkit-transition: color 0.5s ease;
	-moz-transition: color 0.5s ease;
	-ms-transition: color 0.5s ease;
	-o-transition: color 0.5s ease;
	transition: color 0.5s ease;
}

.serviceList .serviceContainer .mcatContainer .mcat:hover > div {
	color: #1d3c45;
}

.serviceList .serviceContainer .mcatContainer .mcat.active > div {
	color: #1d3c45;
}

.serviceList .serviceContainer.closed .mcatContainer {
	max-height: 0;
}

.serviceList .serviceContainer.closed .titleContainer .chevron img {
	transform: rotate(180deg);
}

/* Left Window */

/* Universal menu elements */
.menuAddFav td {
    /* Specificity issue forces !important */
    font-size: 12.34px !important;
    color: #D54545 !important;
    border-bottom: none !important;
    cursor: pointer;
}

.menuAddFav td img {
    height: 25.5px;
    vertical-align: middle;
}

/* Excessively long - for specificity points (required, otherwise styles are ignored) */
.buyGrid table tbody tr td {
    height: auto;
}

.buyGrid .personSelector {
    text-align: right;
	/* Stop text highlighting when clicking on it a lot of times. */
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Chrome/Safari/Opera */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* IE/Edge */
            user-select: none; /* Non-prefixed version, for the latest browsers */
}

.buyGrid .personSelector td {
	position: relative;
}

.buyGrid .personSelector td > div {
    position: absolute;
    /*right: -0.75px;
    top: -0.75px;*/
	right: 0px;
	top: 0px;
    background-color: rgba(256, 256, 256, 0.6);
    height: 28px;
    width: 28px;
    z-index: 1;
    cursor: pointer;
    border-radius: 20px;
}

/* animations */
.buyGrid .personSelector td > div,
.buyGrid .personSelector td > img {
	-webkit-animation: pulse 2s 3;
	animation: pulse 2s 3;
}

.buyGrid .personSelector td:hover > div,
.buyGrid .personSelector td:hover > img {
	-webkit-animation-play-state: paused; /* Safari 4.0 - 8.0 */
    animation-play-state: paused;
}

.buyGrid .personSelector td.selected > div {
    background-color: rgba(256, 256, 256, 0);
}

.buyGrid .personSelector td > div.quantity {
    background-color: #C54545;
    position: absolute;
    top: -2px;
    right: -5px;
    height: 15px;
    width: 15px;
}

.buyGrid .personSelector img {
    height: 26.4px;
    width: 26.4px;
    padding-left: 10px;
    cursor: pointer;
}

.buyGrid.tinyIcons .personSelector td img,
.buyGrid.tinyIcons .personSelector td div {
	height: 10px;
	width: 10px;
}

.buyGrid.tinyIcons .personSelector td div {
	top: 4px;
	right: 0;
}

.buyGrid.tinyIcons .personSelector td:hover div,
.buyGrid.tinyIcons .personSelector td:hover img {
	-ms-transform: scale(3, 3);
	-webkit-transform: scale(3, 3);
	transform: scale(3, 3);
}

.buyGrid.tinyIcons .personSelector td:hover div {
	right: -2px;
}

.buyGrid .priceEdit .price {
    font-weight: 500;
    font-size: 14.4px;
    
    white-space: nowrap;
}

.buyGrid .priceEdit .price input {
    width: 80px;
}

.buyGrid .priceEdit .edit {
    color: #81B4C1;
    width: 0;
    text-align: right;
}

.buyGrid .priceEdit .edit img {
    height: 18px;
}

.buyGrid .priceEdit .product_delivery_date_true {
	display: block;
}

.buyGrid .priceEdit .product_delivery_date_false {
	display: none;
}

.buyGrid .priceEdit td > img.infoButton {
	height: 20px;
	padding-left: 5px;
	
	cursor: pointer;
}

.leftWindow {
    width: 42.2%;
    background: #FFFFFF;
    padding-left: 21.2px;
    padding-right: 13.5px;
    padding-top: 10.17px;
}

.personCategoryHead {
    
}

.personCategoryHead tr td {
    font-size: 22.63px;
}

.personCategoryHead tr td img {
    height: 33.17px;
    padding-right: 19.6px;
}

.personCategory {
    width: 100%;
    background: #EFF7F6;
    border-collapse: collapse;
}

.personCategory tr td {
    border-bottom: 1px solid #CCD8D8;
    height: 43.5px;
    font-size: 14.4px;
    color: #3B3B39;
    position: relative;
}

.personCategory tr td.prodName {
	padding-left: 5px;
	/*max-width: 50px;*/
	max-height: 3em;
	
	word-wrap: break-word;
	overflow: hidden;
	text-overflow: ellipsis;
	
}

.personCategory tr td.prodName .infoButton {
	height: 16px;
    width: 16px;
    vertical-align: bottom;
}

.personCategory tr td:not(.input):not(.personIconContainer){
	cursor: pointer;
}

.personCategory tr td.personIconContainer {
	/*max-width: 6px;*/
	padding-right: 8px;
}

.personCategory tr td.personIconContainer svg {
	cursor: pointer;
}

.personCategory tr td.personIconContainer svg path[fill="#FF7F50"] {
	-webkit-transition: fill 0.5s ease;
	transition: fill 0.5s ease;
}

.personCategory tr td.personIconContainer svg:hover path[fill="#FF7F50"] {
	fill: #b25838;
}

.personCategory tr td.input {
	color: #717272;
    width: 105px;
	font-weight: 500;
}

.personCategory tr td .dollarSign {
	position: absolute;
	left: 7px;
	
	/* this is a nasty hack since IE positions this differently, top: 50% works, but for other's we need top: 50% - 9px, so since IE doesn't like nested calc(), it'll ignore it. */
	top: 50%;
	top: calc(100% - calc(50% + 9px));
}

.personCategory tr td.input input {
	text-align: right;
	padding-right: 7.5px;
	padding-left: 17px;
	width: 71.5px;
}

.personCategory tr td span.paid {
    color: #007F95;
    font-size: 12.34px;
}

.personCategory tr td span.amount {
    font-weight: 500;
    color: #007F95;
    font-size: 14.4px;
}

.personCategory > tbody > tr > td.price {
	color: #717272;
    font-weight: 500;
    font-size: 14.4px;
    text-align: right;
    padding-right: 17.5px;
}

.purchaseButton {
    color: #C7C7C8;
    font-size: 25.5px;
    cursor: pointer;
    
    transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
}

.purchaseButton:hover {
    color: #777778;
}

.personCategory .favourite > td > table {
	width: 100%;
}

.personCategory .favourite table td {
    width: 100%;
    border-bottom: none;
}

.personCategory .favourite td div > img,
.personCategory .favourite td .imageContainer {
    width: 25.5px;
}

.personCategory .favourite .name {
    font-weight: 500;
    font-size: 14.4px;
}

.personCategory .favourite .desc {
    font-size: 14.4px;
}

.personCategory .favourite .buyGrid .plusPersonIcon {
	cursor: pointer;
}

.personCategory .favourite .buyGrid .plusPersonIcon path[fill="#FF7F50"] {	
	transition: fill 0.5s ease;
    -webkit-transition: fill 0.5s ease;
	
	fill: #FF7F50;
}

.personCategory .favourite .buyGrid .plusPersonIcon:hover path[fill="#FF7F50"] {
	fill: #b25838;
    color: #b25838;
}

/* Standard Menu */

.menuHeader.closed,
.menuDateHeader.closed {
	position: relative;
}

.menuHeader.closed::after,
.menuDateHeader.closed::after {
  border-bottom: 0.125em solid;
  content: "";
  left: 0;
  margin-top: calc(0.125em / 2 * -1);
  position: absolute;
  right: 0;
  top: 50%;
  width: calc(100% - 5px);
}

.menuHeader.closed::after {
	border-bottom-color: #3B3B39;
}

.menuDateHeader.closed::after {
	border-bottom-color: #007F95;
}


.menuHeader {
	display: inline-block;
    color: #3B3B39;
}

.menuDateHeader {
	display: inline-block;
    color: #007F95;
}

.statusBubble {
	display: inline-block;
	font-size: 16px;
    font-weight: 500;
    color: #007F95;
	
	margin-left: 5px;
}

.statusBubble[data-closeStatus^"1"] {
	/* It's open, in a standard way */
	display: initial;
}

.statusBubble[data-closeStatus="1-1"] {
	/* < 1hr left */
}

.statusBubble[data-closeStatus="1-2"] {
	/* < 5min left */
}

.statusBubble[data-closeStatus="1-3"] {
	/* < 1min left */
}

.statusBubble[data-closeStatus~="0"] {
	/* > 1hr left or closed */
	display: none;
}

#service_closing[data-closeStatus="greater_than_one_hour"] {
	/* To Be Replaced with the method above */
	display: none;
}

.menuCatHeader {
    font-size: 14.4px;
    font-weight: 500;
    padding-top: 10px;
}

.menu {
    width: 100%;
    border-collapse: collapse;
}
/*
.menu tr:hover .buyGrid .personSelector td > img,
.menu tr:hover .buyGrid .personSelector td > div {
	/* Grab attention animation *//*
	
	animation: pop 0.25s linear 1;
	animation-play-state: running !important;
}
*/
.menu tr > td {
    border-top: 1px solid #e7e7e7;
    padding-top: 15.925px;
    padding-bottom: 15.925px;
    position: relative;
	vertical-align: top;
}

.menu tr .text {
    width: 100%;
}

.menu .buyGrid {
    text-align: right;
    /*vertical-align: middle;*/
}

.menu .buyGrid tr td div.quantity {
    top: -4px;
    right: -6.5px;
	line-height: 1.6;
}

.menu .disabled .text div {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 99%;
    background: rgba(256, 256, 256, 0.6);
}

.menu .disabled .text .out_of_stock {
	display: none;
}

.menu .disabled .buyGrid div {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 99%;
    background-color: rgba(256, 256, 256, 0.8);
}

.menu .buyGrid table {
    right: 0px;
    top: 15.925px;
    height: 100%;
    width: 0;
    text-align: right;
    display: inline;
}

.menu .buyGrid table tr td {
    padding: 0px;
}

.menu tr > td > table tr > td {
    border: none;
}

.menu tr .img {
	width: 0;
    display: table-cell;
    padding-right: 10px;
	min-width: 70px;
	
	padding-top: 10px;
	padding-bottom: 10px;
	
	transition: background-color 0.5s ease;
	-webkit-transition: background-color 0.5s ease;
}

.menu tr .img svg {
    width: 46px;
    height: 46px;
    position: absolute;
    top: 8px;
    left: 5px;
}

.menu tr .img svg text {
    font-size: 10px;
    font-weight: 500;
}


/* Remove 1px from all values for the below two element's widths and heights when re-enabling border */
.menu tr .img.missing div {
    width: 71px;
    height: 48px;
    /*border: 1px solid #AFAFB0;*/
}

.menu tr td.food.missing div {    
    vertical-align: top;
    width: 105px;
    height: 64px;
}

.menu tr .img .infoButton {
    position: absolute;
    top: 14px;
    right: 0;
	height: 16px;
	width: 16px;
	cursor: pointer;
	background-color: #FFFFFF;
	border-radius: 3px;
}

/* General Supplier type */
.menu tr .img img {
    max-height: 65px;
    max-width: 70px;
    vertical-align: top;
}

/* Food Supplier type */
.menu tr .food img {
    max-height: 63px;
    max-width: 104px;
}

.menu tr td .desc .title {
	font-size: 14.4px;
	font-weight: 300;
	color: #717272;
}

.menu tr td .desc {
    font-size: 12px;
	overflow-wrap: anywhere;
}

.menu tr td .product_flags {
    font-size: 10px;
    font-weight: 500;
    position: absolute;
    bottom: 15.925px;
}

.menu tr .text {
	transition: background-color 0.5s ease;
	-webkit-transition: background-color 0.5s ease;
}

.menu tr .img:hover,
.menu tr .text:hover {
	cursor: pointer;
	background: #fdfdfd;
}

/* Colour for Product Flags */

.product_flags span[data-productFlag="V"] {
	color: #BCCC3A;
}

.product_flags span[data-productFlag="GF"] {
	color: #935C94;
}

.product_flags span[data-productFlag="H"] {
	color: #D78929;
}

.product_flags span[data-productFlag="DF"] {
	color: #71B7C9;
}

.menuContentSeperator {
    border-color: #007F95;
    border-width: 2px;
    padding-top: 22.5px;
}

/* Menu-specific pillbox styling */

.pillbox.quantitySelector img {
    height: 20px;
    width: 20px;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
}

.pillbox.quantitySelector div > span {
    padding: 0 5px;
    color: #007F95;
}

/* Right Window */

.rightWindow {
    padding-left: 17.125px;
    padding-right: 17.125px;
    width: 24%;
    background: #FFFFFF;
    padding-top: 9.57px;
    padding-bottom: 10px;
	max-height: 80vh;
	
	z-index: 1;
	
	/* Polyfill probably needed (even chrome doesn't support yet) */
	position: relative; /* This is the polyfill, works with client side js to emulate floating */
	/*position: -webkit-sticky;
	position: sticky;*/
	top: 0;
}

.rightWindow .overlay {
	display: none;
}

.rightWindow .popupClose {
	top: 20px;
	padding-right: 15px;
	display: none;
}

/* The Cart: WARNING - Extreme Nesting */
.cartMenuContainer {
	max-height: calc(80vh - 150px);  /*UPDATE THIS: 80vh, max-hieght of .cart, 150px, height of .cart > center*/
	font-size: 14.4px;
	overflow-y: auto;
}

.cartMenuContainer .datedTable {
	
	width: 100%;
}

.cartMenuContainer .datedTable table tr .img img {
	height: 26.4px;
	width: 26.4px;
}

.cartMenuContainer .datedTable .studentContainer {
	width: 100%;
}

.cartMenuContainer .datedTable .studentContainer .overviewContainer {
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	
	cursor: pointer
}

.cartMenuContainer .datedTable .studentContainer .overviewContainer > div,
.cartMenuContainer .datedTable .studentContainer .overviewContainer > div span {
	display: flex;
	align-items: center;
	height: 28px;
	text-overflow: ellipsis
}

.cartMenuContainer .datedTable .studentContainer .overviewContainer div {
	border-bottom: 1px solid #e7e7e7;
	padding-bottom: 5px;
	padding-top: 5px;
}

.cartMenuContainer .datedTable .studentContainer .overviewContainer.noBorder > div {
	border-bottom: none;
}

.cartMenuContainer .datedTable .studentContainer .overviewContainer .img {
	width: 28px;
	border-bottom: none;
	position: relative;
}

.cartMenuContainer .datedTable .studentContainer .overviewContainer .img img {
	width: 26px;
	height: 26px;
}

.cartMenuContainer .datedTable .studentContainer .overviewContainer .img .minusContainer {
	background: #FFFFFF;
	border-radius: 15px;
	position: absolute;
	bottom: 1px;
	right: -3px;
	height: 14px;
	width: 15px;
	padding: 0 0 0 0;
}

.cartMenuContainer .datedTable .studentContainer .overviewContainer .img .minusContainer img {
	height: 15px;
	width: 15px;
}

.cartMenuContainer .datedTable .studentContainer .overviewContainer .desc {
	flex: 1;
	font-weight: 500;
	position: relative;
}

.cartMenuContainer .datedTable .studentContainer .overviewContainer .desc .date {
	min-width: 41px;
	color: #007F95;
}

.cartMenuContainer .datedTable .studentContainer .overviewContainer .desc img {
	height: 13px;
	transition: 0.5s ease;
}

.cartMenuContainer .datedTable .studentContainer .overviewContainer .quantity {
	width: 20px;
	font-weight: 500;
}

.cartMenuContainer .datedTable .studentContainer .overviewContainer .price {
	justify-content: flex-end;
	font-weight: 500;
	width: 50px;
}

/* SOP stuff: */

.cartMenuContainer .datedTable .studentContainer .sopListContainer {
	max-height: 100vh;
	overflow-y: hidden;
	
	/*animation: grow 0.5s 1;
	-webkit-animation: grow 0.5s 1;*/
	
	transition: max-height 1s ease;
	-webkit-transition: max-height 1s ease;
}

.cartMenuContainer .datedTable .studentContainer .SOP {
	display: inline-block;
	width: 100%;
}

.cartMenuContainer .datedTable .studentContainer .SOP .sopContainer {
	display: flex;
	align-items: center;
	width: 100%;
	flex: 1;
}

.cartMenuContainer .datedTable .studentContainer .SOP .sopContainer > div {
	padding-top: 5px;
	padding-bottom: 5px;
}

.cartMenuContainer .datedTable .studentContainer .SOP .sopContainer .desc {
	flex: 1;
	border-bottom: 1px solid #e7e7e7;
	font-size: 13px;
}

.cartMenuContainer .datedTable .studentContainer .SOP .sopContainer .desc span {
	font-size: 10px;
}

.cartMenuContainer .datedTable .studentContainer .SOP .sopContainer .img {
	width: 28px;
}

.cartMenuContainer .datedTable .studentContainer .SOP .sopContainer .quantitySelectors {
	display: flex;
	align-items: center;
	color: #007F95;
}

.cartMenuContainer .datedTable .studentContainer .SOP .sopContainer .quantitySelectors img {
	height: 16px;
	vertical-align: middle;
}

/* Advanced Buttons: */
.cartMenuContainer .datedTable .studentContainer .advancedButtonContainerContainer {
	width: 100%;
	display: flex;
}

.cartMenuContainer .datedTable .studentContainer .advancedButtonContainer {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	font-size: 12px;
	background-color: #EFF7F6;
	border-radius: 23.5px;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 5px;
	padding-bottom: 5px;
	flex: 1;
}

.cartMenuContainer .datedTable .studentContainer .advancedButtonContainerContainer .imgSpacer {
	width: 28px;
}

.cartMenuContainer .datedTable .studentContainer.closed .overviewContainer .desc img {
	transform: rotate(180deg);
}

.cartMenuContainer .datedTable .studentContainer.closed .sopListContainer {
	/*animation: reverse-grow 0.5s 1;
	-webkit-animation: reverse-grow 0.5s 1;*/
	
	max-height: 0;
}

/* Headers */

.cartMenuContainer .studentContainer .header {
	font-size: 8px;
	font-weight: 500;
	cursor: initial !important;
}

.cartMenuContainer .studentContainer .header > div {
	background-color: #EFF7F6;
	height: 10px !important;
}

.fundsAvail {
    color: #007F95;
    text-align: right;
    font-size: 14.4px;
    padding-top: 5px;
    padding-right: 8.5px;
    padding-bottom: 5px;
}

/* Header Row: */
.rightWindow .cartMenu {
	border-collapse: collapse;
}

.rightWindow .cartMenu tr th {
	background-color: #EFF7F6;
	font-size: 12px;
	font-weight: 500;
}

.checkout {
    border-radius: 23.5px;
    background: #EFF7F6;
    padding-left: 17.125px;
    padding-right: 17.125px;
    padding-top: 12.97px;
    padding-bottom: 12.97px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.checkout tr th {
    vertical-align: bottom;
}

.checkout tr th.h1 {
    text-align: left;
}

.checkout .small {
    font-weight: 500;
    height: 23px;
    font-size: 11px;
    padding-right: 8.5px;
}

.checkout .subTotal {
    font-weight: 500;
    font-size: 16px;
    text-align: right;
}

.checkout .total {
    font-weight: 500;
    font-size: 16px;
    text-align: right;
    color: #000000;
}

.checkout tr td[colspan="3"] {
    text-align: right;
}

/* Wide leftWindow */

.leftWindow.wide {
    width: 75%;
}

.rightWindow.hidden {
    display: none;
}

/* Full Page */
.windowContainer.leftWindowOnly .serviceMenu {
	display: none;
}

.windowContainer.leftWindowOnly .windowPadder {
	display: none;
}

.windowContainer.leftWindowOnly .leftWindow {
	box-sizing: border-box;
	width: 100%;
}


/*
Service, MCat, Date selection styling
*/
button[id^="service_pick_date_pick_"] {
	font-size: 10px;
	margin-left: 41px;
}

/* Misc */

.copyright {
    position: fixed;
    bottom: 5px;
    right: 5px;

    font-size: 12px;
    color: #007F95;
	
	pointer-events: none;
}

.popupHeader {
	position: fixed;
	background: #FFFFFF;
	width: 100%;
}

/* Stop weird WebKit outlines */
textarea:focus, input:focus{
    outline: none;
}

/* Stop WebKit browsers from changing input colour on autofill */
input:-webkit-autofill {
	box-shadow: 0 0 0 100px white inset;
    /*box-shadow: 0 0 0 100px white inset !important;*/
}

/*
    Popup
*/

.interrupting_cow {
	z-index: 101;
	background-color: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	pointer-events: auto;
}

.moo {
	position: relative;
	background: #FFF;
	padding: 20px;
	padding-top: 10px;
	width: auto;
	max-width: 500px;
	margin: 10vh auto 10vh auto;
	border-radius: 23.5px;
	max-height: 80vh;
	pointer-events: auto;
}

.moo > div {
	/*margin-top: 24px;*/
	max-height: 75vh;
	overflow: hidden;
}

.moo .dialogContent,
.moo .questions {
	max-height: calc(70vh - 87px);
	overflow-y: auto;
	overscroll-behavior-y: contain;
}

.moo .questions .questionDateTitle {
	font-size: 14.4px;
}

.moo .bottomButtons::before {
	content: "";
	position: absolute;
	right: 0;
	top: -20px;
	width: 100%;
	-webkit-box-shadow: inset 0 -6px 8px -9px rgba(0,0,0,0.7);
	box-shadow: inset 0 -6px 8px -9px rgba(0,0,0,0.7);
	z-index: 2;

	height: 5px;
	pointer-events: none;
	background: rgba(0,0,0,0);
}

.moo .bottomButtons {
	position: relative;

	margin-top: 16px;
	text-align: right;
	margin-bottom: 0;
}

.moo.overflowing .questions,
.moo.overflowing .dialogContent {
	-webkit-box-shadow: inset 0 -7px 9px -7px rgba(0,0,0,0.7);
	box-shadow: inset 0 -7px 9px -7px rgba(0,0,0,0.7);
}

.mfp-fade {
	background-color: rgba(224,234,235, 0.7);
}

.moo h2 {
	/*position: absolute;
    left: 15px;
    top: 6px;*/
	margin-bottom: 5px;
	margin-top: 0;
}

.moo h2 .modalSubtitle {
	margin: 0;
	font-size: 14.4px;
	font-weight: 300;
	color: #717272;
	text-overflow: ellipsis;;
	overflow: hidden;
	white-space: nowrap;
}

.moo .headerDivider {
	margin-bottom: 12px;
	border-bottom: 1px solid #CCD8D8;
}

.moo .divider {
	margin-top: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #CCD8D8;
}

.moo .thinDivider {
	margin-top: 5px;
	margin-bottom: 5px;
	border-bottom: 1px solid #CCD8D8;
}

.moo .required {
	color: red;
}

.moo .requiredErrText {
	color: red;
	font-size: 14px;
}

.moo .header {
	background: white;
	height: 25px;
	position: absolute;
	left: 15px;
	top: 0;
	width: 100%;
}

.popupClose {
	color: #81B4C1;
	font-size: 14.4px;
	right: 15px;
	position: absolute;
	top: 10px;
	cursor: pointer;

	font-weight: 500;

	background: 0;
	border: none;
	transition: color 0.5s ease;
	-webkit-transition: color 0.5s ease;
}

.popupClose:hover {
	background-color: transparent;
	background: 0;
	color: #74a2ad;
}


@media only screen and (max-width: 675px) {
    /* In-between Phone and Portrait Tablet*/
    
    .serviceMenu {
        width: 50% !important;
    }
    
    .leftWindow {
        padding-left: 2vw;
        padding-right: 1vw;
		width: 97vw !important;
    }
    
	.leftWindow .buyGrid .personSelector img {
		padding-left: 2px;
	}
	
    .rightWindow {
		/* Set to pop out of cart icon */
		max-height: initial;
		overflow-y: auto;
		
		z-index: 10;
		position: fixed;
        top: 0;
        right: 0;
        width: 300px !important;
        height: 0;
        max-width: 300px;
        visibility: hidden;
        opacity: 0;
    }
	
	.rightWindow.popped {
		opacity: 1;
		visibility: visible;
		height: auto;
	}
	
	.rightWindow.popped .overlay {
		display: initial;
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: -1;
	}
	
	.rightWindow .popupClose {
		display: block !important;
	}
	
	.rightWindow .cartMenuContainer > h2 {
		padding-left: 2vw;
		margin-bottom: 0;
	}
	
	.cartMenuContainer .datedTable .studentContainer .overviewContainer.header > div,
	.cartMenuContainer .datedTable .studentContainer .overviewContainer.header > div span {
		height: 0;
	}

    .loginContainer .bottomBanner .rightText {
        display: none;
    }

    .loginContainer .bottomBanner .leftText {
        width: 100%;
        padding-left: 15px;
    }

	/* {
		padding-right: 4% !important;
	}*/
}

@media only screen and (max-width: 360px) {
    /* Phones */
	
	.menuCatHeader {
		padding-top: 15px;
	}
	
	.menu tr td .product_flags {
		bottom: 10px;
	}
	
	.menu tr > td {
		padding-top: 10px;
		padding-bottom: 5px;
	}
	
	.menu tr .img .infoButton {
		top: 8px;
	}
	
	.menu tr .img {
		min-width: 35px;
	}
	
	/* If borders are re-enabled, take 1 from both values in this: */
	.menu tr .img.missing div {
		width: 36px;
		height: 24px;
	}
	
	.menu tr .img img {
		max-height: 35.25px;
		max-width: 56.25px;
	}
	
    .serviceMenu {
        width: 80% !important;
    }
	
	.loginContainer .loginCircle {
        width: 90vw;
        height: 90vw;
        border-radius: 45vw;
    }

    .loginContainer .loginCircle > div form input {
        padding: 5px 10px !important;
    }

    .loginContainer .loginCircle > div form button {
        margin-top: 10px;
        left: calc(50% - 52.5px) !important;
    }

	.serviceMenu,
	.rightWindow {
		width: calc(100vw - 35px) !important;
	}
	
	h2 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.moo h2 .modalSubtitle {
		font-size: 12px;
	}
	
	.menuHeader,
	.menuDateHeader {
		margin-bottom: 0;
	}
    
    .hideOnPhones {
        display: none;
    }
	
	.menu tr .img svg {
		top: 2px;
	}

    .copyright {
        display: none;
    }

    .windowContainer > .centredWindow {
        width: 90% !important;
    }
	
	.personCategory tr td.input {
		width: 55px;
	}
	
	.personCategory tr td.input input {
		width: 50px;
	}
}

@media only screen and (max-width: 867px) {
    /* Portrait Tablets */
    
    html{
        overflow-x: hidden;
    }
    
    .site {
        width: auto;
    }
	
    /* Some real fun dropdown menu stuff: */
    
    .serviceMenu {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 30%;
        height: 0;
        max-width: 240px;
        visibility: hidden;
        opacity: 0;
		z-index: 10;
    }
    
	.serviceMenu.popped {
		opacity: 1;
		visibility: visible;
		height: auto;
	}
	
	.serviceMenu.popped .overlay {
		display: initial;
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: -1;
	}
	
    .serviceMenu .done {
        display: block;
    }
    
    #padder1 {
        display: none;
    }
    
	/*
		.leftWindow:
		55% + 44px
		
		
		.windowPadder:
		0.1%
		
		.rightWindow:
		% + 20px
	*/
	
    .leftWindow {
        width: 55%;
    }
    
    .rightWindow {
		padding-left: 10px;
		padding-right: 10px;
		display: inherit;
        width: calc(100vw - ((55% + 44px) + (0.1% + (20px + 17px)))); /* Absolute most possible space left over */
    }
	
	.windowPadder {
		width: 0.1%;
	}
	
    .leftWindow.wide {
        width: 95%;
    }

	.loginContainer .loginCircle {
        width: 90vw;
        height: 90vw;
        border-radius: 45vw;
    }
    
    .loginContainer .loginCircle form {
        /*padding-top: 25px;*/
    }

    .windowContainer > .centredWindow {
        width: 60%;
    }
}

@media only screen and (max-width: 445px) {
    .loginContainer .loginCircle img {
        top: 10%;
    }

    .loginContainer .loginCircle > div {
        top: calc(10% + 17px);
    }

    .loginContainer .loginCircle > div form button {
        margin-top: 7px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .loginContainer .loginCircle .createAccount {
        top: 78%;
        left: 0;
        text-align: center;

        width: 100%;

        border: none;
        padding: 0;

        font-size: 14px;
    }

    .loginContainer .loginCircle .createAccount > span {
        display: none;
    }
}

@media only screen and (min-width: 445px) {
    .loginContainer .loginCircle {
        width: 400px;
        height: 400px;
        border-radius: 200px;
    }
}
@media only screen and (min-width: 868px) {
    /* Landscape Tablets */
    .site {
        width: 100%;
    }
    
	#padder1 {
        display: auto;
    }
    
    .leftWindow.wide {
        width: 70%;
    }
	
	.serviceMenu {
		opacity: 1 !important;
		visibility: visible !important;
		height: auto !important;
	}
}

@media screen and (min-width: 1280px) {
    /* PCs */
    
    .site {
        margin: auto;
        width: 1260px;
    }
    
    .windowPadder {
        width: 10px;
    }
    
    .serviceMenu {
        width: 215.25px;
    }
    
    .leftWindow {
        width: 550px;
    }
    
    .rightWindow {
        width: 345.75px;
    }
    
    .leftWindow.wide {
        width: 945px;
    }

    .windowContainer > .centredWindow {
        width: 550px;
    }
}

.noTableBorder td {
    border-bottom: none !important;
    border-top: none !important;
    border-right: none !important;
    border-left: none !important;
}

/* Popups: */

.popupButtons {
    text-align: right;
}

.detailItemPopup .prodImg {
	height: 150px;
	
	max-width: calc(100vw - 40px);
}

.detailItemPopup .prodImg.missing {
	height: 148px;
	width: 148px;
	border: 1px solid #AFAFB0;
}

.detailItemPopup .ingredients {
	font-size: 12px;
}

.detailItemPopup .buyGrid {
    display: inline-block;
    width: calc(100% - 80px);
	overflow-x: auto;
	vertical-align: middle;
}

.detailItemPopup .buyGrid td {
    position: relative;
}

.detailItemPopup .buyGrid td div {
    height: 36.6px;
    width: 36.6px;
}

.detailItemPopup .buyGrid img {
    height: 35px;
    width: 35px;
}

.detailItemPopup .itemTitle {
    margin-top: 5px;
    margin-bottom: 5px;
    color: #000000;
}

.detailItemPopup p {
    font-size: 14.4px;
	overflow-wrap: anywhere;
}

.detailItemPopup .divider {
    border-bottom: 1px solid #CCD8D8;
    margin-bottom: 14px;
}

.detailItemPopup .price {
    font-weight: 500;
	display: inline-block;
	vertical-align: middle;
}

.detailItemPopup .product_flags span {
    font-weight: 500;
    font-size: 12px;
}

.favComboPopup table {
    width: 100%;
    border-collapse: collapse;
}

.favComboPopup table td {
    padding-top: 7.5px;
    padding-bottom: 7.5px;
    border-bottom: 1px solid #e7e7e7;
}

.favComboPopup table tr.first td {
    padding-top: 0;
}

.favComboPopup table tr.last td {
    border-bottom: none;
}

.favComboPopup table .personIcon {
    width: 33.17px;
}

.favComboPopup table .personIcon img {
    width: 33.17px;
    height: 33.17px;
}

.favComboPopup table .idSelect {
    text-align: center;
    vertical-align: top;
    font-weight: 500;
    font-size: 14.4px;
}

.favComboPopup table .desc .title {
    font-weight: 500;
}

.favComboPopup table .desc {
    font-size: 14.4px;
}


.favComboPopup table .plusMinus {
    text-align: right;
}

.favComboPopup table .plusMinus img {
    height: 23px;
    width: 23px;
    padding-left: 10px;
    cursor: pointer;
}

.optChoice .optionDetail {
	font-size: 14.4px;
}

.optChoice .optionDetail .inclOptions {
	font-weight: 500;
	color: #BCCC3A;
}

.optChoice .optionDetail .optionCost {
	font-weight: 500;
}

.dd_picker .buyGrid .personSelector td {
	font-size: 14.4px;
}

.logo {
    font-family: 'Museo';
}

.logo .my {
    font-family: 'Museo';
    font-weight: 700;
    color: #007F95;
}

.logo .kindo {
    font-family: 'Museo';
    font-weight: 700;
    color: #45A8BB;
}

.logo .chevron > img {
	margin-left: 2px;
	
	height: 12px;
	width: 12px;
}

#school_services {
	/*padding-left: 43px;*/
}

.switch_service {
	display: block;
	
	overflow: hidden;
	align-items: center;
	cursor: pointer;
	font-weight: 500;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #717272;
	
	height: 16px;
	padding: 0;
}

/* form in catalogue */

.leftWindow .form {
	
}

.leftWindow .form .highlight {
	width: calc(100% - 47px);
	border-radius: 23.5px;
	padding: 23.5px;
	background: #EFF7F6;
	
	margin-bottom: 10px;
}

.leftWindow .form .title {
	margin-top: 0;
	margin-bottom: 5px;
}

.leftWindow .form svg.button {
	vertical-align: middle;
	cursor: pointer;
}

.leftWindow .form svg.button path.colour {
	fill: #81B4C1;
	
	transition: fill 0.5s ease;
}

.leftWindow .form svg.button:hover path.colour {
	fill: #5A7D87;
}

/* Walkthrough tooltips */

#buy_product {
	top: -68px;
	right: 0;
}

#buy_product::after {
	left: 71%;
}

#buy_product > span {
	color: #007F95;
	cursor: pointer;
}

/* Anchor button */
.anchorButton {
    font-family: 'Museo Sans', sans-serif;
    font-weight: 500;
    border-radius: 23.5px;
    border: none;
    background-color: #81B4C1;
    color: #FFFFFF;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 21.8px;
    text-decoration: none;
    padding-right: 21.8px;
    cursor: pointer;
    font-size: 13.33px;
}