/*****************************************
1: General Styles
2: Navbar
3: Header
4: Inputs
******************************************
4: Home
5: Menu (General styles)
6: Menu (Selected drink)
******************************************
7: Footer
8: Back-to-top button
9: Locations
******************************************
10: Media queries
******************************************/

/**************************/
/*     (0)  Colours       */
/**************************/

:root {
	--bubble-citea-light-green: #9be198;
	--body-text-dark-grey: #3b3b3b;
	--background-box-light-grey: #ededed;
	--link-dark-green: #2d642c;
}

/**************************/
/*  (1)  General Styles   */
/**************************/
body,
html {
	width: 100%;
	height: 100%;
}

body {
	text-align: center;
}

body,
p {
	color: var(--body-text-dark-grey);
	font: 400 1rem/1.625rem "Poppins", sans-serif;
}

h1 {
	color: black;
	font: 600 2.5rem/3.25rem "Poppins", sans-serif;
}

h2 {
	color: black;
	font: 600 2.125rem/2.75rem "Poppins", sans-serif;
}

h3 {
	color: black;
	font: 600 1.85rem/2.375rem "Poppins", sans-serif;
}

h4 {
	color: black;
	font: 600 1.25rem/2.125rem "Poppins", sans-serif;
}

h5 {
	color: black;
	font: 600 1.25rem/1.75rem "Poppins", sans-serif;
}

h6 {
	color: black;
	font: 600 1rem/1.5rem "Poppins", sans-serif;
}

ul {
	text-align: left;
}

.p-large {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.p-small {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

a {
	color: black;
	text-decoration: none;
}

a:hover {
	color: var(--link-dark-green);
	text-decoration: none;
}

.bg-green {
	background-color: var(--bubble-citea-light-green);
}

basi .form-control-input,
.form-control-select {
	display: block;
	/* needed for proper display of the label in Firefox, IE, Edge */
	width: 100%;
	padding-top: 1.125rem;
	padding-bottom: 0.125rem;
	padding-left: 1.3125rem;
	border: 1px solid #cbcbd1;
	border-radius: 4px;
	background-color: white;
	color: #6b747b;
	font-size: 0.875rem;
	line-height: 1.875rem;
	transition: all 0.2s;
	-webkit-appearance: none;
	/* removes inner shadow on form inputs on ios safari */
}

select {
	/* you should keep these first rules in place to maintain cross-browser behavior */
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	background-image: url('../images/down-arrow.png');
	background-position: 96% 50%;
	background-repeat: no-repeat;
	outline: none;
}

/**********************/
/*   (2)  Navbar      */
/**********************/
.navbar {
	background-color: white;
	font: 600 1rem/1.625rem "Poppins", sans-serif;
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .logo-image img {
	width: 250px;
	height: auto;
}

.navbar .logo-text {
	color: white;
	font-weight: 600;
	font-size: 2rem;
	line-height: 1rem;
	text-decoration: none;
}

/* slide-over menu on mobile */
.offcanvas-collapse {
	position: fixed;
	top: 5rem;
	/* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	overflow-y: auto;
	visibility: hidden;
	background-color: #8eb88cf7;
	transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
}
.offcanvas-collapse.open {
	visibility: visible;
	-webkit-transform: translateX(-75%);
	transform: translateX(-75%);
}
/****************************/

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .nav-item .nav-link {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: black;
	text-decoration: none;
	transition: all 0.2s ease;
	text-align: left;
}

.navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
	color: var(--bubble-citea-light-green);
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}

.navbar-dropdown {
	list-style: none;
}

.navbar-dropdown-order {
	list-style: none;
}

.navbar-dropdown .nav-item .nav-link {
	font-weight: 400;
}

#menu-navbar-item-link::after {
	content: url(../../resources/images/menu_down_arrow.svg);
	margin-left: 0.3rem;
}

.navbar-dark .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.66%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/**********************/
/*   (3)  Header      */
/**********************/

#notification {
	display: flex;
	justify-content: center;
	background-color: #9be198;
}

#notification p {
	margin: 0;
	padding: 1rem;
}

.header {
	position: relative;
	overflow: hidden;
	padding-top: 5rem;
	background: var(--bubble-citea-light-green);
}

.header.home-header {
	background: white;
}

.header .text-container {
	margin-bottom: 4rem;
	text-align: center;
}

.header .h1-large {
	margin-bottom: 0.375rem;
	color: black;
}

.header .p-large {
	margin-bottom: 2rem;
	color: black;
}

/**********************/
/*   (4)  Inputs      */
/**********************/

.input-label {
	float: left;
}

.error-label {
	color: #ED5B47;
	display: none;
	margin: 0;
	line-height: 2rem !important;
}

.input-error {
	border-color: #ED5B47 !important; 
}

.form-control[readonly] {
	background-color: #fff;
}

.mandatory {
	color: #fa485d;
}

/**********************/
/*   (5)  Home        */
/**********************/

/*   "As featured in"    */
.featured-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.featured-image-container {
	padding: 15px;
}

.featured-image-container img {
	height: 75px;
	width: auto;
}

/*   "welcome to bubble citea"    */
.basic-1 {
	padding-top: 2rem;
	padding-bottom: 3.75rem;
}

.basic-1 .text-container {
	text-align: center;
}

.basic-1 h3 {
	margin-bottom: 1rem;
}

.basic-1 .p-large {
	margin-bottom: 2.25rem;
}

.sunny-img {
	width: 110px;
	margin-bottom: 0.75rem;
	border-radius: 50%;
}

#promo-carousel {
	padding-bottom: 3rem;
}

.carousel-indicators li {
	background-color: var(--link-dark-green) !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  height: 100px;
  width: 100px;
  outline: white;
  background-size: 100%, 100%;
  border-radius: 50%;
  background-image: none;
}

.carousel-control-next-icon:after
{
  content: '>';
  font-size: 55px;
  color: black;
  box-shadow: black;
}

.carousel-control-prev-icon:after {
  content: '<';
  font-size: 55px;
  color: black;
}
/*********************************/

.basic-1,
.basic-2 {
	box-shadow: 0 10px 10px 0 rgb(0 0 0 / 14%);
}

/*     Drinks banners    */

.drink-image-container {
	text-align: center;
}

.drink-image-container .img-fluid {
	max-width: 55%;
}

.drink-1 .container .row,
.drink-3 .container .row {
	display: flex;
	flex-direction: row-reverse;
}

.basic-2 {
	padding-top: 8rem;
	padding-bottom: 8rem;
	height: 660px;
	overflow: hidden;
}

.basic-2 .image-container {
	margin-bottom: 3.75rem;
}

.basic-2 h2 {
	margin-bottom: 1.25rem;
}

/*     stores       */

#stores h3 {
	margin-bottom: 2rem;
}

#stores h4 {
	border-bottom: solid 1px #0000003d;
	padding-bottom: 1rem;
    margin-bottom: 1rem;
}

#stores .stores-list {
	list-style-type: disc;
	padding-left: 0;
	margin-bottom: 3rem;
	text-align: center;
}

#stores .stores-list li {
	display: inline;
	margin: 20px;
	line-height: 2.5rem;
}

.nowrap {
	white-space: nowrap;
}

/********************************/
/*  (6) Menu (general styles)   */
/********************************/

.menu.header { /* non-homepage header */
	padding-top: 5rem;
	padding-bottom: 0;
}

.menu.header .text-container {
	margin-bottom: 0;
}

.h2-heading {
	margin-top: 0.5rem;
}

.menu-container .row {
	height: 300px;
	text-align: center;
	box-shadow: 0 10px 10px 0 rgb(0 0 0 / 14%);
}

.menu-container .row p {
	font-size: 2rem;
	font-weight: 600;
	line-height: 300px;
	color: black;
	transition: all 0.3s;
}

.menu-container .row div p:hover {
	color: var(--bubble-citea-light-green);
	cursor: pointer;
}

/*    menu categories banners    */

.menu-container .row {
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	transition: 0.3s;
}

/*
#specials_banner {
	background-image: url("../images/menu-banners/specials_banner_bg.png");
	z-index: 4;
}
#specials_banner:hover {
	background-image: url("../images/menu-banners/specials_blur.png");
}

#fruit_teas_banner {
	background-image: url("../images/menu-banners/fruit_banner_bg.png");
	z-index: 3;
}
#fruit_teas_banner:hover {
	background-image: url("../images/menu-banners/fruit_blur.png");
}

#milk_teas_banner {
	background-image: url("../images/menu-banners/milk_banner_bg.png");
	z-index: 2;
}
#milk_teas_banner:hover {
	background-image: url("../images/menu-banners/milk_blur.png");
}

#toppings_banner {
	background-image: url("../images/menu-banners/toppings_banner_bg.png");
	z-index: 1;
}
#toppings_banner:hover {
	background-image: url("../images/menu-banners/toppings_blur.png");
}

*/

/*     drink selection page     */

.teas-subnavbar {
	box-shadow: 0 10px 10px 0 rgb(0 0 0 / 14%)
}

.teas-subnavbar .text-container-h2 {
	cursor: pointer;
}

.teas-subnavbar .text-container-h2 .h2-heading {
	transition: all 0.2s;
}

.teas-subnavbar .text-container-h2 .h2-heading:hover {
	color: var(--bubble-citea-light-green);
}

.drink-icon-title-iconhover {
	color: var(--bubble-citea-light-green);
}

#drinks-container .drink-icon-image-container {
	cursor: pointer;
}

#drinks-container .row {
	margin-top: 20px;
	margin-bottom: 40px;
}

h4.drink-icon-title,
h4.topping-icon-title {
	text-align: center;
}

h4.drink-icon-title {
	transition: all 0.2s;
}

.topping-icon-image-container {
	margin: 10px;
}

.topping-icon-image {
	border-radius: 50%;
	height: 180px;
	width: 180px;
	object-fit: none;
	border: 6px solid white;
	box-shadow: 0 0 15px 10px rgb(0 0 0 / 14%)
}

#drinks-container .row div {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.calorie-info {
	font-weight: 400;
}

p.calorie-info {
	margin-top: 1rem;
	font-style: italic;
	font-size: 0.8rem;
}

/******************************/

/*********************************/
/*  (7) Menu (selected drink)    */
/*********************************/

/*   Milk/Fruit/Toppings navbar  */
#selected-drink {
	background-color: black;
	cursor: pointer;
}

#selected-drink h2 {
	color: white;
}
/******************************/

/*     drink showcase      */

.drink-icon-image-container {
	text-align: center;
	margin: 15px;
}

#drinks-info-container .row {
	margin-top: 4rem;
}

.span-drinks-info-bold {
	font-weight: 600;
}

#description-col * {
	color: black;
}

.h3-drink-size {
	font-size: 1.4rem;
	font-weight: 400;
}

.can-drink-size {
	font-size: 1.2rem;
}

#description-col p {
	padding: 1.5rem;
	font-size: 0.9rem;
	line-height: 1.2rem;
}

#description-col h3,
#description-col h4 {
	text-align: center;
}

#description-col h4 {
	margin-top: 1.9rem;
}

.topping-description {
	margin-bottom: 0;
	padding-top: 0.5rem !important;
}

.allergen-link {
	margin-bottom: 2rem;
	font-size: 0.8rem;
	font-weight: 600;
	font-style: italic;
	line-height: 1rem;
	border-bottom: none !important;
}

.allergen-link a {
	color: rgb(45, 100, 44) !important;
}

.allergen-link a:hover {
	text-decoration: underline;
}

.recommended-toppings-container {
	display: flex;
	justify-content: space-evenly;
	padding-top: 1rem;
}

.recommended-toppings-container .image-container {
	text-align: center;
}

.recommended-toppings-container .image-container img {
	width: 110px;
	border-radius: 50%;
	box-shadow: 0 10px 10px 0 rgb(0 0 0 / 14%);
}

.topping-heading {
	margin-top: 3rem;
	border-bottom: 2px solid #e2e2e2;
}

/******************************/

/*     drink nutrition      */
#nutrition-col * {
	text-align: left;
}

#nutrition-col h4 {
	margin-top: 1.5rem;
}

#nutrition-col p {
	color: black;
	margin-bottom: 1rem;
	border-bottom: 2px solid #e2e2e2;
}
/******************************/

/******************/
/*  (8) Footer    */
/******************/

.footer {
	padding-top: 3.25rem;
	padding-bottom: 1rem;
	text-align: center;
}

.footer a {
	text-decoration: none;
}

.footer .fa-stack {
	width: 2em;
	margin-bottom: 1.25rem;
	margin-right: 0.375rem;
	font-size: 1.5rem;
}

.footer .fa-stack .fa-stack-1x {
	color: black;
	transition: all 0.2s ease;
}

.footer .fa-stack .fa-stack-2x {
	color: var(--bubble-citea-light-green);
	transition: all 0.2s ease;
}

.footer .fa-stack:hover .fa-stack-1x {
	color: var(--bubble-citea-light-green);
}

.footer .fa-stack:hover .fa-stack-2x {
	color: black;
}

.copyright {
	padding-top: 1rem;
	padding-bottom: 1rem;
	text-align: center;
}

.copyright .p-small {
	color: black;
	text-align: center;
}

address {
	color: black;
}

.footer-link {
	transition: all 0.2s;
}

.footer-link:hover {
	color: white;
}

.footer-brand img {
	width: 35%;
}

/******************************/
/*   (9) Back To Top Button   */
/******************************/

a.back-to-top {
	position: fixed;
	z-index: 999;
	right: 12px;
	bottom: 12px;
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 30px;
	background: rgb(108, 159, 106) url("../images/up-arrow.png") no-repeat center 47%;
	background-size: 18px 18px;
	text-indent: -9999px;
}

a:hover.back-to-top {
	background-color: black;
}

/******************************/
/*   (10)  Location page       */
/******************************/

.locations-container {
	margin-top: 6rem;
}

.location-nav {
	box-shadow: 0 10px 10px 0 rgb(0 0 0 / 14%);
}

/* MAP div */

.locations-container .container .row {
	display: flex;
	flex-direction: column-reverse;
}

/* Pop up marker custom styles (classes from Mapbox API) */

.mapboxgl-popup-close-button,
.mapboxgl-popup-tip {
	display: none;
}

.mapboxgl-popup-content {
	margin-bottom: 55px;
	padding: 0;
	width: auto;
	height: auto;
	box-shadow: 0 10px 10px 0 rgb(0 0 0 / 14%);
}

.mapboxgl-popup-content .store-image-container {
	margin: 2px;
	width: 220px;
	height: 120px;
	background-size: cover;
}

/******************************/

#map-container {
	height: 300px;
}

/*      list of stores     */

.store-list-container-item {
	/* class defined in map_script.js */
	margin: 0;
	padding: 10px;
	transition: all 0.2s;
	font-size: 1.15rem;
	font-weight: 600;
	cursor: pointer;
}

.store-list-container-item-details,
.store-list-distance {
	font-size: 1rem;
}

.store-list-container-item-details {
	font-weight: 400;
}

.store-list-distance {
	font-weight: 600;
}

#store-list-container > p:nth-of-type(odd) {
	background-color: #9ae1983f;
}

#store-list-container > p:nth-of-type(even) {
	background-color: #5c985b3f;
}

.store-list-container-item:hover {
	background-color: #00000034 !important;
}

/*      search bar      */

#store-list-container * {
/* #store-search {*/
	text-align: left;
}

.mapboxgl-ctrl-geocoder {
	font-size: 1.25rem;
	border: none;
	border-radius: 8px;
	top: 0;
	background-color: rgb(238, 238, 238);
	width: 100%;
}

/**********************************/

/*      store details     */
h3.h3-store-info {
	margin-top: 1rem;
	font: 600 1.35rem/1.4rem "Poppins", sans-serif;
}

h4.h4-store-info {
	font: 400 1.15rem/1.4rem "Poppins", sans-serif;
}

h4.h4-store-info::before,
h5.phone::before {
	content: "";
	display: inline-block;
	margin-right: 5px;
	height: 1.4rem;
	width: 1.2rem;
	background-size: 1.2rem 1.2rem;
	background-repeat: no-repeat;
	vertical-align: middle;
}

h4.h4-store-info::before {
	background-image: url("../images/map_pin.svg");
}

h5.h5-store-info.phone::before {
	background-image: url("../images/phone.svg");
}

p.back-to-stores {
	text-align: left;
	margin-top: 1.4rem;
	margin-bottom: 1.4rem;
	color: black;
}

p.back-to-stores::before {
	content: "";
	display: inline-block;
	height: 1.4rem;
	width: 1.4rem;
	margin-right: 5px;
	background-size: 1.4rem 1.4rem;
	background-image: url("../images/menu_down_arrow.svg");
	background-repeat: no-repeat;
	transform: rotate(90deg);
	vertical-align: middle;
}

p.back-to-stores,
h4.h4-store-info,
h5.phone {
	transition: 0.2s;
}

p.back-to-stores:hover,
h4.h4-store-info:hover,
h5.phone:hover {
	cursor: pointer;
	color: var(--bubble-citea-light-green);
}

h5.opening-times {
	margin-top: 1.4rem;
	font-weight: 600;
}

p.disclaimer-small {
	font-style: italic;
	font-size: 0.8rem;
	line-height: 1rem;
}

/*******************************/
/*   (11)  Our Story page      */
/*******************************/

.story-container {
	margin-top: 3rem;
}

/* all image bubble styles */
.story-image-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 1rem;
}


.story-image-roadmap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: 5rem;
	margin-bottom: 1rem;
}

.story-image-container img {
	height: 170px;
	width: auto;
	border-radius: 50%;
}

.story-container p {
	text-align: left;
	line-height: 2.2rem;
}

.pic-bubble-left,
.pic-bubble-right {
	shape-outside: circle(46%);
}

.pic-bubble-right {
	float: right;
	margin-right: 0;
}

.pic-bubble-left {
	float: left;
	margin-left: 0;
}

/************************************/
/*   (12)  Miscellaneous pages      */
/************************************/

.bold {
	font-weight: 600;
}

/************************************/
/*   (13)  Feedback pages      */
/************************************/

.preview-badge {
	margin: 1rem 0.5rem 0 0;
	font-weight: normal;
}

#feedback_submit {
	float: right;
	padding: 0.375rem 3rem;
}

.custom-tooltip {
	width: 15px;
	height: auto;
	margin-left: 0.5rem;
}



/*****************************************************************************************/
/*****************************************************************************************/
/*****************************************************************************************/
/*****************************************************************************************/

/*************************/
/*   14 Media Queries     */
/*************************/
/* Min-width 768px */
@media (min-width: 768px) {

	/* General Styles */
	.frame-decoration {
		height: 64px;
	}

	/* end of general Styles */


	/* Header */
	.header {
		padding-top: 5rem;
	}

	/* end of header */


	/* Features */

	.basic-2 {
		height: 500px;
	}

	.basic-4 .text-box {
		padding-right: 2rem;
		padding-left: 2rem;
	}

	/* end of features */

	.topping-icon-image {
		height: 200px;
		width: 200px;
	}


	/* Invitation */
	.basic-6 h4 {
		width: 35rem;
		margin-right: auto;
		margin-left: auto;
	}

	/* end of invitation */
}

/* end of min-width 768px */

@media (min-width: 768px) and (max-width: 992px) {

	.basic-2 {
		height: 840px;
	}

}


/* Min-width 992px */
@media (min-width: 992px) {

	#nutrition-col {
		position: sticky;
		top: 140px;
		position: -webkit-sticky;
		align-self: flex-start;
		height: auto;
		margin-bottom: 2rem;
	}

	body {
		text-align: left;
	}

	#description-col .drink-description {
		text-align: center;
	}

	/* General Styles */
	.h1-large {
		font-size: 3.725rem;
		line-height: 4.625rem;
	}

	.h2-heading {
		margin-right: auto;
		margin-left: auto;
	}

	.p-heading {
		width: 42.5rem;
		margin-right: auto;
		margin-left: auto;
	}

	.row.teas-header {
		margin: 0 3rem 0 3rem;
	}

	.frame-decoration {
		height: 96px;
	}

	/* end of general styles */


	/* Navigation */
	.navbar {
		background-color: white;
		box-shadow: 0 10px 10px 0 rgb(0 0 0 / 14%);
		transition: all 0.2s;
	}

	.navbar.top-nav-collapse {
		/*
		padding-top: 0.625rem;
		padding-bottom: 0.625rem;
		*/
		background-color: rgb(255, 255, 255);
		box-shadow: 0 10px 10px 0 rgb(0 0 0 / 14%)
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		-webkit-transform: none;
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar .nav-item .nav-link,
	.navbar-dropdown .nav-item .nav-link {
		text-align: center;
		padding-right: 1.15rem;
		padding-left: 1.15rem;
	}

	.navbar-dropdown {
		display: none;
		position: fixed;
		background-color: white;
		padding-left: 0;
		box-shadow: 0 10px 10px 0 rgb(0 0 0 / 14%)
	}

	.navbar-dropdown-order {
		display: none;
		position: fixed;
		background-color: white;
		padding-left: 0;
		box-shadow: 0 10px 10px 0 rgb(0 0 0 / 14%)
	}

	.navbar-dropdown-visible {
		opacity: 1;
		display: block;

	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}

	.navbar .fa-stack {
		margin-top: 0;
		margin-right: 0;
		margin-left: 0.25rem;
	}

	/* end of navigation */


	/* Header */
	.header {
		padding-top: 5rem;
		padding-bottom: 0;
	}

	.menu.header .text-container {
		text-align: center;
	}

	.header .text-container {
		margin-bottom: 0;
		text-align: left;
	}


	.text-container-h2 {
		text-align: center;
	}

	/* end of header */


	/* Statement */
	.basic-1 .text-container {
		width: 760px;
		margin-right: auto;
		margin-left: auto;
	}

	/* end of statement */


	/* Details 1 */
	.basic-2 .image-container {
		margin-bottom: 0;
	}

	.basic-2 {
		height: 500px;
	}

	/* end of details 1 */

	#nutrition-col * {
		text-align: left;
	}


	/* Details Lightbox */
	.lightbox-basic {
		padding: 3rem 3rem;
	}

	.lightbox-basic .image-container {
		margin-bottom: 0;
		text-align: left;
	}

	/* end of details lightbox */


	/* Details 2 */
	.basic-3 .text-container {
		margin-bottom: 0;
	}

	/* end of details 2 */


	/* About */
	.basic-5 .text-container {
		margin-bottom: 0;
	}

	.basic-5 .image-container {
		margin-bottom: 0;
	}

	/* end of about */


	/* Statistics */
	.counter {
		padding-top: 5rem;
	}

	/* end of statistics */

	/* *** MAP *** */

	#map-container,
	#store-list-container {
		height: 760px;
	}

	#map-container {
		width: 40vw;
	}

	#store-list-container {
		overflow-y: scroll;
	}

	#store-container {
		height: auto;
	}

	.locations-container .container .row {
		display: row;
		flex-direction: row;
	}

	/* *** END OF MAP *** */


	/* Invitation */
	.basic-6 .text-container {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}

	.basic-6 h4 {
		width: 600px;
	}

	/* end of invitation */

	/* Footer */
	.footer-brand img {
		width: 70%;
	}

	/* End of footer */
}

/* end of min-width 992px */


/* Min-width 1200px */
@media (min-width: 1200px) {

	/* General Styles */
	.frame-decoration {
		height: 128px;
	}

	/* end of general styles */


	/* Navigation */
	.navbar .container {
		max-width: 100%;
		padding-right: 1.5rem;
		padding-left: 1.5rem;
	}

	/* end of navigation */


	/* Header */
	.header {
		padding-top: 5rem;
		padding-bottom: 0;
	}

	.menu.header {
		padding-top: 2rem;
	}

	.header .text-container {
		margin-top: 3.625rem;
	}

	.header .text-container-h2 {
		margin-top: 0;
	}

	/* end of header */


	/* Statement */
	.basic-1 {
		padding-top: 5rem;
	}

	/* end of statement */


	/* Details 1 */
	/* .basic-2 .image-container {
		margin-left: 5rem;
	} */

	.drink-image-container .img-fluid {
		max-width: 50%;
	}

	.basic-2 {
		padding-top: 3rem;
	}

	.basic-2 .text-container {
		margin-top: 5.75rem;
	}

	/* end of details 1 */


	/* Details Lightbox */
	.lightbox-basic .image-container {
		margin-right: 1.5rem;
	}

	/* end of details lightbox */


	/* Details 2 */
	.basic-3 .text-container {
		margin-top: 0;
	}

	.basic-3 .image-container {
		margin-left: 5rem;
	}

	/* end of details 2 */


	/* About */
	.basic-5 .text-container {
		margin-top: 3.5rem;
	}

	.basic-5 .image-container {
		margin-right: 3.5rem;
		margin-left: 2.5rem;
	}

	/* end of about */


	/* Statistics */
	.counter #counter .cell {
		margin-right: 2.375rem;
		margin-left: 2.375rem;
	}

	/* end of statistics */


	/* Contact */
	form {
		width: 860px;
		margin-right: auto;
		margin-left: auto;
	}

	.form-1 .decoration {
		width: 560px;
		bottom: -80px;
		right: -200px;
	}

	/* end of contact */
}

/* end of min-width 1200px */