/*****************************************************************/
/* Imports */
/*****************************************************************/

/* Fonts */
@import url('https://fonts.googleapis.com/css?family=Khand|Shrikhand');

/*****************************************************************/
/* Generic Style */
/*****************************************************************/

*{
	outline: none;
}


body{
	margin:0px;
	background-color: #e6e4e4;
	background-repeat:repeat;
	font-family: 'Khand', sans-serif;
	font-size:100%;
	/* background-image:url(https://lh3.googleusercontent.com/WGJuPBVFuqvMQYAybkm7tgRkAiHVtd-KlSvHezoEdGzoAF-_TYJ8XcP7VHHfROxFRKffXTTxys40zCamX-M); */
	background-size:20px 20px;
	overflow-x:hidden;
}

input{
	font-family: 'Khand', sans-serif;
}

#aMI_MainPanel:before{
	/* content:''; */
	/* width: 100%; */
	/* height: 75vh; */
	/* left: 0px; */
	/* z-index:-1; */
	/* position:absolute; */
	/* background-color: #ffffff; */
	/* top:0px; */
}

/*** Fields ***/

.aMS_TextBox,
.aMS_PasswordTextBox{
	font-size:20px;
	background-color:white;
	border: 1px solid #999;
	height: 33px;
	text-align: center;
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
	padding:0px;
	font-weight:bold;
	color:black;
	background-color:#f5f5f5;
	border-radius:3px;
}

.aMS_ListBoxWrapper{
	position:relative;
	color:black;
	text-align:center;
	text-align-last:center;
    border:1px solid #999;
    height: 33px;
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
}

.aMS_ListBoxWrapper:after{
	content:'\25bc';
	position:absolute;
	right:2px;
	top:0px;
	height:100%;
	font-size:12px;
	line-height:32px;
}

.aMS_ListBoxWrapper:hover:after{
	-webkit-animation-name: ListBoxAnimation;
	        animation-name: ListBoxAnimation;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	        animation-timing-function: linear;
}

.aMS_ListBox{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border-radius:0px;
    border:none;
    background-color:transparent;
    font-size:20px;
    font-family: 'Khand', sans-serif;
    font-weight:normal;
    width:100%;
    height:100%;
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
}

/*** Buttons ***/

#aMI_ScreenContent .aMS_Button,
#aMI_OrderListContent .aMS_Button,
.aMS_PopupContent .aMS_Button,
#aMI_OptionsContent .aMS_Button{
	border: 1px solid #bb5132;
	background: rgb(235, 103, 65);
	/* background: -webkit-linear-gradient(top, rgba(141,224,74,1) 0%,rgba(105,165,53,1) 100%); */
	/* background: -webkit-gradient(linear, left top, left bottom, from(rgba(141,224,74,1)),to(rgba(105,165,53,1))); */
	background: -o-linear-gradient(top, rgba(141,224,74,1) 0%,rgba(105,165,53,1) 100%);
	/* background: linear-gradient(to bottom, rgba(141,224,74,1) 0%,rgba(105,165,53,1) 100%); */
}

#aMI_ScreenContent .aMS_Button.aMS_ButtonNegative,
#aMI_OrderListContent .aMS_Button.aMS_ButtonNegative,
.aMS_PopupContent .aMS_Button.aMS_ButtonNegative,
#aMI_OptionsContent .aMS_Button.aMS_ButtonNegative{
	border:1px solid red;
	background: rgb(255,104,104);
	background: -webkit-linear-gradient(top, rgba(255,104,104,1) 0%,rgba(255,0,0,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,104,104,1)),to(rgba(255,0,0,1)));
	background: -o-linear-gradient(top, rgba(255,104,104,1) 0%,rgba(255,0,0,1) 100%);
	background: linear-gradient(to bottom, rgba(255,104,104,1) 0%,rgba(255,0,0,1) 100%);
}

#aMI_ScreenContent .aMS_Button.aMS_ButtonNegative:active,
#aMI_OrderListContent .aMS_Button.aMS_ButtonNegative:active,
.aMS_PopupContent .aMS_Button.aMS_ButtonNegative:active,
#aMI_OptionsContent .aMS_Button.aMS_ButtonNegative:active{
	background: red;
	background: -webkit-linear-gradient(top, rgba(255,0,0,1) 0%,rgb(255,104,104) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,0,0,1)),to(rgb(255,104,104)));
	background: -o-linear-gradient(top, rgba(255,0,0,1) 0%,rgb(255,104,104) 100%);
	background: linear-gradient(to bottom, rgba(255,0,0,1) 0%,rgb(255,104,104) 100%);
}

#aMI_ScreenContent .aMS_Button.aMS_DisabledElement,
#aMI_OrderListContent .aMS_Button.aMS_DisabledElement,
#aMI_ScreenContent .aMS_Button.aMS_DisabledElement:hover,
#aMI_OrderListContent .aMS_Button.aMS_DisabledElement:hover,
#aMI_ScreenContent .aMS_Button.aMS_DisabledElement:active,
#aMI_OrderListContent .aMS_Button.aMS_DisabledElement:active,
.aMS_PopupContent .aMS_Button.aMS_DisabledElement,
.aMS_PopupContent .aMS_Button.aMS_DisabledElement:hover,
.aMS_PopupContent .aMS_Button.aMS_DisabledElement:active,
#aMI_OptionsContent .aMS_Button.aMS_DisabledElement,
#aMI_OptionsContent .aMS_Button.aMS_DisabledElement:hover,
#aMI_OptionsContent .aMS_Button.aMS_DisabledElement:active{
	border:1px solid #cecece;
	background: rgb(239,239,239);
	background: -webkit-linear-gradient(top, rgba(239,239,239,1) 0%,rgba(191,191,191,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(239,239,239,1)),to(rgba(191,191,191,1)));
	background: -o-linear-gradient(top, rgba(239,239,239,1) 0%,rgba(191,191,191,1) 100%);
	background: linear-gradient(to bottom, rgba(239,239,239,1) 0%,rgba(191,191,191,1) 100%);
}

#aMI_ScreenContent .aMS_Button,
#aMI_OrderListContent .aMS_Button,
.aMS_PopupContent .aMS_Button,
#aMI_OptionsContent .aMS_Button
{
	min-width:40px;
	min-height:40px;
	border-radius:3px;
	color:white;
	font-size:20px;
	text-shadow: 0px 0px 5px rgba(104, 104, 104, 1);
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
	cursor:pointer;
}

#aMI_ScreenContent .aMS_Button:active,
#aMI_OrderListContent .aMS_Button:active,
.aMS_PopupContent .aMS_Button:active,
#aMI_OptionsContent .aMS_Button:active
{
	background: rgb(224, 121, 91);
}

/***  ***/

#aMI_Header{
	background-color: #eb6741;
	height: 135px;
	text-align: center;
	position: fixed;
	top:0px;
	width:100%;
	z-index: 5;
}

.aMS_WaitScreen #aMI_Header{
	height:120px;
}


#aMI_Logo{
	height: 110px;
	/* background-color: white; */
	/* left: 0; */
	position: absolute;
	left: 10%;
	top: 5px;
}

#aMI_HeaderButtons{
	position: absolute;
	left: 10%;
	width: 80%;
	height: 25px;
	top: 110px;
	z-index: 0;
	/* background-color: cadetblue; */
}

#aMI_Header .aMS_Button{
	background-color: #eb6741;
	width:40px;
	height: 32px;
	position:absolute;
	border:none;
	color: white;
	font-size:20px;
	line-height:35px;
	border-radius: 0px;
	text-align:center;
	text-shadow: 0px 0px 5px rgba(104, 104, 104, 1);
	background-position:-5px -5px;
	background-size:50px 50px;
	padding-left:5px;
	padding-right:5px;
	cursor:pointer;
	-webkit-transition:background-color 0.3s ease;
	-o-transition:background-color 0.3s ease;
	transition:background-color 0.3s ease;
}

#aMI_Header .aMS_Button.aMS_DisabledElement{
	/* background-color:#666; */
	display: none!important;
}

#aMI_Header .aMS_Button.aMS_DisabledElement:hover{
	background-color:#666;
	-webkit-animation:none;
	        animation:none;
}

#aMI_Header .aMS_Button:active{
	background-color:#ff9118;
	-webkit-animation-name: HeaderButtonAnimation;
	        animation-name: HeaderButtonAnimation;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	        animation-timing-function: linear;
}

#aMI_Header #aMI_BackButton,
#aMI_Header #aMI_NextButton{
	left:0px;
	top: 0px;
	min-width: initial;
	width: auto;
	padding-left:28px;
	max-width: 275px;
	overflow: hidden;
	height: 25px;
	line-height: 25px;
}

#aMI_Header #aMI_NextButton{
	left:auto;
	right:0px;
	padding-left:5px;
	padding-right:28px;
	max-width: 275px;
}

#aMI_Header #aMI_BackButton:before{
	content:'<';
	position:absolute;
	font-size:30px;
	font-weight:bold;
	left:5px;
	top:-1px;
}

#aMI_Header #aMI_NextButton:after{
	content:'>';
	float:left;
	position:absolute;
	font-size:30px;
	font-weight:bold;
	left:calc(100% - 25px);
	top:-1px;
}

#aMI_Header #aMI_BackButton:active:before,
#aMI_Header #aMI_NextButton:active:after{
	-webkit-animation-name: AnimationArrow;
	        animation-name: AnimationArrow;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	        animation-timing-function: linear;
}


#aMI_Header #aMI_OrderButton{
	right:45px;
	top:5px;
	background-image:url(https://lh3.googleusercontent.com/idJNoY4-h2sLiqAF-o9TXx9VE49uuOsfNZp4goECWMXB9j0DhGeV9mmPTUf98NeFmzG9mQ51yit8WM0_Hxka);
	background-repeat:no-repeat;
	background-position:center;
	display:none;
}

#aMI_Header .aMS_OrderQuantity{
	position:absolute;
	background-color:black;
	color:red;
	top:27px;
	right:78px;
	width:18px;
	height:18px;
	font-size:15px;
	line-height:20px;
	/* border-top-right-radius:9px; */
	display:none;
	pointer-events:none;
}

#aMI_Header #aMI_OptionsButton{
	right: 0px;
	/* margin-right: 0; */
	top: -40px;
	background-image: url(SvgLoader/options.ffffffff.ffffffff.ffffffff.svg);
	/* display:none; */
}

#aMI_TitleBar{
	width: 40%;
	margin-left: 30%;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	margin-top: 130px;
	position:relative;
	text-align:center;
	min-height: 80px;
}



.aMS_HasHeaderMenu #aMI_TitleBar{
	margin-top: 150px;
	position: relative;
}

.aMS_AddressLocationScreen.aMS_HasHeaderMenu #aMI_TitleBar{background-color: #ffffff;margin-bottom: 30px;-webkit-box-shadow: 0px 0px 15px -2px rgba(1,1,1,1);box-shadow: 0px 0px 15px -2px rgba(1,1,1,1);}


#aMI_TitleBar.aMS_NoPhoto .aMS_Photo{
	display:none;
}

#aMI_TitleBar.aMS_HasPhoto{
	border-bottom:1px solid black;
	padding-bottom:5px
}

#aMI_TitleBar.aMS_HasPhoto .aMS_Photo{
	position:absolute;
	top:0px;
	left:0%;
	height:70px;
	width:70px;
	padding:5px;
	border-radius:2px;
	background-color:white;
	z-index:-1;
	-o-object-fit:cover;
	   object-fit:cover;
}

#aMI_Title{
	font-weight:900;
	font-size:35px;
	color: #eb6642;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

#aMI_SubTitle{
	font-size:25px;
	margin-top:-10px;
	/* -webkit-box-shadow: 0px 0px 15px -2px rgba(1,1,1,1); */
	/* box-shadow: 0px 0px 15px -2px rgba(1,1,1,1); */
}

#aMI_TitleBar.aMS_HasPhoto #aMI_SubTitle,
#aMI_TitleBar.aMS_HasPhoto #aMI_Title{
	margin-left:85px;
}

#aMI_ScreenContent{
	width:80%;
	margin-left:10%;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	position: relative;
	margin-bottom:150px;
	margin-top: 150px;
}



@media screen and (min-width: 600px){
	
	.aMS_BookingScreen.aMS_HasOrderItems #aMI_TitleBar,.aMS_BookingScreen.aMS_HasOrderItems #aMI_ScreenContent,.aMS_OptionsScreen.aMS_HasOrderItems #aMI_ScreenContent,.aMS_MenuSearchScreen.aMS_HasOrderItems #aMI_ScreenContent,.aMS_MenuScreen.aMS_HasOrderItems #aMI_ScreenContent,.aMS_HasOrderItems.aMS_InfoScreen #aMI_TitleBar,.aMS_HasOrderItems.aMS_MenuSearchScreen #aMI_TitleBar{
		width:60%;
		margin-left: 5%;
	}


}

#aMI_ScreenContent,
.aMS_ScreenInnerContent,
#aMI_HeaderMenuContent
{
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	/* background-color: #e6e4e4; */
}

.aMS_ScreenInnerContent{
	width:100%;
	float:left;
}

.aMS_ScreenContentSeparator,
.aMS_Family.aMS_Family_Opened .aMS_ScreenContentInnerElement .aMS_Title{
	width:100%;
	float:left;
	font-size:25px;
	height:35px;
	border-bottom:1px solid black;
	margin-bottom:10px;
	display:block;
	top:auto;
	left:auto;
	position:relative;
	text-shadow:none;
	text-align:left;
	background:none;
	line-height: normal;
}

.aMS_MenuElement:not(.aMS_Family_Opened),
.aMS_ChooseDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement,
.aMS_ChooseParentDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement,
#aMI_ScreenContent #aMI_CulturesPanel .aMS_ScreenContentElement,
#aMI_ScreenContent #aMI_OrderHistoryPanel .aMS_ScreenContentElement{
	width: calc((100vw - (100vw - 100%)) * 0.31);
	margin: calc((100vw - (100vw - 100%)) * 0.01);
	margin-bottom:0.8vw;
	margin-top:0.8vw;
	height:auto;
	float:left;
	background-color: #ffffff;
	/* border:1px solid #d8d8d8; */
	border-radius:2px;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	position:relative;
	cursor:pointer;
}

.aMS_MenuElement:not(.aMS_Family_Opened).aMS_HasPhoto
{
	background-color: #f3f2f2;
}


.aMS_MenuElement .aMS_ScreenContentInnerElement,
#aMI_ScreenContent #aMI_CulturesPanel .aMS_ScreenContentElement .aMS_ScreenContentInnerElement,
#aMI_ScreenContent #aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_ScreenContentInnerElement{
	/* padding-bottom:100%; */
	/* border: 10px solid white; */
}

.aMS_ChooseDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement .aMS_Label,
.aMS_ChooseParentDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement .aMS_Label{
	padding-bottom:50%;
}

.aMS_MenuElement:before,
.aMS_ChooseDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement:before,
.aMS_ChooseParentDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement:before,
.aMS_ChoosePositionDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement:before,
#aMI_ScreenContent #aMI_CulturesPanel .aMS_ScreenContentElement:before,
.aMS_Voucher .aMS_ScreenContentInnerElement:before,
.aMS_Voucher.aMS_Partial .aMS_ScreenContentInnerElement:before{
	content:'';
	background-color:rgba(0, 0, 0, 0.75);
	width:100%;
	height:0%;
	position:absolute;
	top:0px;
	left:0px;
	z-index: 2;
	-webkit-transition:height 0.3s ease;
	-o-transition:height 0.3s ease;
	transition:height 0.3s ease;
	overflow:hidden;
	color: black;
	text-align:center;
	font-size:3vw;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	pointer-events:none;
}

.aMS_MenuElement:before{
	background-color:initial;
}

.aMS_MenuElement:active:before,
.aMS_ChooseDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement:active:before,
.aMS_ChooseParentDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement:active:before,
#aMI_ScreenContent #aMI_CulturesPanel .aMS_ScreenContentElement:active:before,
.aMS_Voucher:active .aMS_ScreenContentInnerElement:before{
	height:100%;
}

.aMS_ScreenContentElement{
	-webkit-animation-name: AnimationFadeIn1;
	        animation-name: AnimationFadeIn1;
	-webkit-animation-duration: 1.2s;
	        animation-duration: 1.2s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
}

.aMS_ScreenContentElement:nth-child(2n) { 
	-webkit-animation-name: AnimationFadeIn0;
	        animation-name: AnimationFadeIn0;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s; 
}
.aMS_ScreenContentElement:nth-child(3n) {
	-webkit-animation-name: AnimationFadeIn2;
	        animation-name: AnimationFadeIn2;
	-webkit-animation-duration: 1.4s;
	        animation-duration: 1.4s; 
}
.aMS_ScreenContentElement:nth-child(5n) {
	-webkit-animation-name: AnimationFadeIn3;
	        animation-name: AnimationFadeIn3;
	-webkit-animation-duration: 1.6s;
	        animation-duration: 1.6s; 
}

/** Animations **/
@-webkit-keyframes AnimationFadeIn0 {
	from{opacity:0;}
	to{opacity:1;}
}
@keyframes AnimationFadeIn0 {
	from{opacity:0;}
	to{opacity:1;}
}

@-webkit-keyframes AnimationFadeIn1 {
	0%{opacity:0;}
	18%{opacity:0;}
	100%{opacity:1;}
}
@keyframes AnimationFadeIn1 {
	0%{opacity:0;}
	18%{opacity:0;}
	100%{opacity:1;}
}

@-webkit-keyframes AnimationFadeIn2 {
	0%{opacity:0;}
	30%{opacity:0;}
	100%{opacity:1;}
}
@keyframes AnimationFadeIn2 {
	0%{opacity:0;}
	30%{opacity:0;}
	100%{opacity:1;}
}

@-webkit-keyframes AnimationFadeIn3 {
	0%{opacity:0;}
	45%{opacity:0;}
	100%{opacity:1;}
}
@keyframes AnimationFadeIn3 {
	0%{opacity:0;}
	45%{opacity:0;}
	100%{opacity:1;}
}

@keyframes AnimationFlash {
	0%{border:2.5px solid;left:5px;top:5px;}
	10%{border:2.5px solid;left:5px;top:5px;}
	45%{border:5px solid;left:2.5px;top:2.5px;}
	90%{border:2.5px solid;left:5px;top:5px;}
	100%{border:2.5px solid;left:5px;top:5px;}
}


@-webkit-keyframes AnimationArrow {
	0%{margin-left:0px;}
	25%{margin-left:-3px;}
	75%{margin-left:3px;}
	100%{margin-left:0px;}
}

@keyframes AnimationArrow {
	0%{margin-left:0px;}
	25%{margin-left:-3px;}
	75%{margin-left:3px;}
	100%{margin-left:0px;}
}

@-webkit-keyframes HeaderButtonAnimation {
	0%{background-position:-5px -5px;}
	25%{background-position:-5px -8px;}
	75%{background-position:-5px -2px;}
	100%{background-position:-5px -5px;}
}

@keyframes HeaderButtonAnimation {
	0%{background-position:-5px -5px;}
	25%{background-position:-5px -8px;}
	75%{background-position:-5px -2px;}
	100%{background-position:-5px -5px;}
}

@-webkit-keyframes ListBoxAnimation {
	0%{margin-top:0px;}
	25%{margin-top:-2px;}
	75%{margin-top:2px;}
	100%{margin-top:0px;}
}

@keyframes ListBoxAnimation {
	0%{margin-top:0px;}
	25%{margin-top:-2px;}
	75%{margin-top:2px;}
	100%{margin-top:0px;}
}

/*****************************************************************/
/* Shadows */
/*****************************************************************/

/** Inset shadow **/

#aMI_OrderListContent:after,
#aMI_OptionsContent:after,
#aMI_OrderListContent #aMI_OrderListPanel:before,
#aMI_OptionsContent #aMI_OptionsPanel:before,
#aMI_HeaderMenuContent,
.aMS_FormPanel .aMS_FormFieldValue:not(.aMS_FormFieldValueNoTitle),
#aMI_LoginPanel .aMS_FormFieldValue:not(.aMS_FormFieldValueNoTitle),
.aMS_LocationHelper,
.aMS_Voucher .aMS_ItemTitle,
.aMS_TextBox{
	-webkit-box-shadow: inset 0px 0px 7px 0px rgba(0,0,0,0.75);
	box-shadow: inset 0px 0px 7px 0px rgba(0,0,0,0.75);
}

/** Shadow far **/

#aMI_Header,
#aMI_OrderListContent,
#aMI_OptionsContent,
#aMI_OrderListContent:before,
#aMI_OptionsContent:before,
.aMS_PopupContent
{
	/* -webkit-box-shadow: 0px 0px 14px 1px rgba(0,0,0,1); */
	/* box-shadow: 0px 0px 14px 1px rgba(0,0,0,1); */
}


#aMI_Header
{
	-webkit-box-shadow: initial!important;
	box-shadow: initial!important;
}

#aMI_Header,#aMI_HeaderMenuContent
{
	-webkit-box-shadow: initial!important;
	box-shadow: initial!important;

}

#aMI_Header
{
	border-bottom: 3px solid #c1c1c1;
}

#aMI_BackButton{
	/* border-left:3px solid #c1c1c1!important; */
	/* border-bottom:3px solid #c1c1c1!important; */
	/* border-right:3px solid #c1c1c1!important; */
}

/** Shadow near **/

.aMS_ChooseDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement,
.aMS_ChooseParentDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement,
.aMS_ItemScreen #aMI_ItemPanel .aMS_Description,
.aMS_ItemScreen #aMI_ItemPanel .aMS_Photo,
.aMS_InnerItemPanel .aMS_ModifierFamily,
.aMS_OrderListScreen .aMS_OrderItems,
#aMI_TitleBar.aMS_HasPhoto .aMS_Photo,
#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem,
.aMS_InfoScreen #aMI_InfoPanel .aMS_Photo,
.aMS_InfoScreen #aMI_InfoPanel .aMS_Description,
.aMS_FormPanel,
#aMI_AskAddressPanel,
#aMI_LoginPanel,
.aMS_BookingScreen #aMI_BookingPanel,
#aMI_PaymentMethodsPanel,
#aMI_ScreenContent #aMI_OrderHistoryPanel .aMS_ScreenContentElement,
.aMS_Voucher,
#aMI_VouchersPanel .aMS_RedeemCode,
.aMS_UserDetailsScreen #aMI_BookingPanel,
.aMS_MenuElement .aMS_InnerItemPanel,
.aMS_OrderListScreen #aMI_OrderListPanel .aMS_RedeemCode,
#aMI_PositionDivisionScrollPanel{
	-webkit-box-shadow: 0px 0px 15px -2px rgba(1,1,1,1);
	box-shadow: 0px 0px 15px -2px rgba(1,1,1,1);
}

/** Shadow stamp **/
#aMI_ScreenContent .aMS_Button, 
#aMI_OrderListContent .aMS_Button, 
.aMS_PopupContent .aMS_Button, 
#aMI_OptionsContent .aMS_Button,
.aMS_WaitScreen .aMS_ScreenContentElement, 
.aMS_Item .aMS_ScreenContentInnerElement > .aMS_Price, 
.aMS_Family .aMS_Price, 
.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPrice .aMS_Description:after, 
.aMS_ItemScreen #aMI_ItemPanel .aMS_Price, 
.aMS_InnerItemPanel .aMS_ModifierFamily .aMS_Title, 
#aMI_OrderListPanel .aMS_OrderItem .aMS_InnerItemPanel .aMS_ModifierFamily .aMS_Title, 
#aMI_OrderListPanel .aMS_OrderItem .aMS_Title, 
#aMI_OrderListPanel .aMS_OrderItem .aMS_Photo, 
#aMI_OrderListPanel .aMS_OrderItem.aMS_NoPhoto .aMS_Title:before, 
#aMI_OrderListPanel .aMS_OrderItem .aMS_Price, 
#aMI_OrderListPanel .aMS_OrderItem.aMS_NoPrice .aMS_Title:after, 
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_InnerItemPanel .aMS_ModifierFamily .aMS_Title, 
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_Title, 
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_Photo, 
#aMI_OrderListPanel .aMS_OrderComplexItem.aMS_NoPhoto .aMS_Title:before, 
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_Price, 
#aMI_OrderListPanel .aMS_OrderComplexItem.aMS_NoPrice .aMS_Title:after, 
#aMI_OrderListPanel .aMS_OrderSummary .aMS_Price, 
#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item > .aMS_ScreenContentInnerElement > .aMS_Title, 
#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family .aMS_Title, 
.aMS_ItemScreen #aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Title, 
.aMS_ComplexItem .aMS_Price, 
.aMS_Info .aMS_Title:after, 
#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_Price{
	/* -webkit-box-shadow: 0px 0px 6px -1px rgba(0,0,0,1); */
	/* box-shadow: 0px 0px 6px -1px rgba(0,0,0,1); */
}

/** NoShadow **/
.aMS_InnerItemPanel .aMS_ModifierFamily .aMS_ModifierItem .aMS_Title,
#aMI_OrderListPanel .aMS_OrderItem .aMS_InnerItemPanel .aMS_ModifierFamily .aMS_ModifierItem .aMS_Title,
#aMI_ItemPanel .aMS_InnerItemPanel .aMS_ModifierFamily .aMS_ModifierItem .aMS_Price,
#aMI_OrderListPanel .aMS_OrderItem .aMS_InnerItemPanel .aMS_ModifierFamily .aMS_ModifierItem .aMS_Price,
#aMI_OrderListPanel .aMS_OrderItem .aMS_InnerItemPanel .aMS_ModifierFamily,
#aMI_OrderListPanel .aMS_OrderItem .aMS_InnerItemPanel .aMS_ModifierFamily .aMS_Title,
#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Price,
#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_InnerItemPanel .aMS_ModifierFamily,
#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_ModifierFamily .aMS_ModifierItem .aMS_Title,
#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_ModifierFamily .aMS_Title,
#aMI_OrderListPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Price,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Title,
.aMS_FormPanel .aMS_FormFieldValue.aMS_Label,
#aMI_BookingPanel .aMS_FormPanel,
#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_HistoryOrderItem .aMS_Price,
#aMI_HeaderMenuContent .aMS_MenuElement,
.aMS_MenuElement .aMS_InnerItemPanel .aMS_ModifierFamily,
#aMI_OrderListPanel .aMS_RedeemCode{
	-webkit-box-shadow: none;
	box-shadow: none;
}

/*****************************************************************/
/* Prices & Rotations */
/*****************************************************************/

.aMS_Item .aMS_Price,
.aMS_ComplexItem .aMS_Price,
.aMS_Family .aMS_Price,
.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPrice .aMS_Description:after,
.aMS_ItemScreen #aMI_ItemPanel .aMS_Price,
#aMI_OrderListPanel .aMS_OrderItem .aMS_Price,
#aMI_OrderListPanel .aMS_OrderItem.aMS_NoPrice .aMS_Title:after,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_Price,
#aMI_OrderListPanel .aMS_OrderComplexItem.aMS_NoPrice .aMS_Title:after,
#aMI_OrderListPanel .aMS_OrderSummary .aMS_Price,
.aMS_Info .aMS_Title:after,
#aMI_OrderHistoryPanel *:not(.aMS_HistoryOrderItem) .aMS_Price{
	background-color: #eb6741;
	border:3px solid white;
	border-radius:50%;
	/* text-shadow: 0px 0px 5px rgba(104, 104, 104, 1); */
	color:white;
	text-align: center;
	z-index: 2;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	-ms-transform: rotate(7deg);
	/* -webkit-transform: rotate(7deg); */
	/* transform: rotate(7deg); */
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	white-space: nowrap;
}

/*****************************************************************/
/* Heavy Rotation */
/*****************************************************************/

#aMI_OrderListPanel .aMS_OrderItem:nth-child(2n) .aMS_Price,
#aMI_OrderListPanel .aMS_OrderComplexItem:nth-child(2n) .aMS_Price,
.aMS_ScreenContentElement:nth-child(2n) .aMS_Price,
.aMS_ScreenContentElement:nth-child(2n).aMS_NoPrice .aMS_Title:after,
.aMS_Info:nth-child(2n) .aMS_Title:after,
#aMI_OrderHistoryPanel .aMS_ScreenContentElement:nth-child(2n) .aMS_Price,
.aMS_Voucher:nth-child(2n) .aMS_Title{ 
	-ms-transform: rotate(-6deg);
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg); 
}

#aMI_OrderListPanel .aMS_OrderItem:nth-child(3n) .aMS_Price,
#aMI_OrderListPanel .aMS_OrderComplexItem:nth-child(3n) .aMS_Price,
.aMS_ScreenContentElement:nth-child(3n) .aMS_Price,
.aMS_ScreenContentElement:nth-child(3n).aMS_NoPrice .aMS_Title:after,
.aMS_Info:nth-child(3n) .aMS_Title:after,
#aMI_OrderHistoryPanel .aMS_ScreenContentElement:nth-child(3n) .aMS_Price,
.aMS_Voucher:nth-child(3n) .aMS_Title{
	-ms-transform: rotate(-2deg);
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg); 
}

#aMI_OrderListPanel .aMS_OrderItem:nth-child(5n) .aMS_Price,
#aMI_OrderListPanel .aMS_OrderComplexItem:nth-child(5n) .aMS_Price,
.aMS_ScreenContentElement:nth-child(5n) .aMS_Price,
.aMS_ScreenContentElement:nth-child(5n).aMS_NoPrice .aMS_Title:after,
.aMS_Info:nth-child(5n) .aMS_Title:after,
#aMI_OrderHistoryPanel .aMS_ScreenContentElement:nth-child(5n) .aMS_Price,
.aMS_Voucher:nth-child(5n) .aMS_Title{
	-ms-transform: rotate(3deg);
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg); 
}

/*****************************************************************/
/* Soft Rotation */
/*****************************************************************/

.aMS_Voucher:nth-child(2n){ 
	-ms-transform: rotate(2deg);
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg); 
}

.aMS_Voucher:nth-child(3n){
	-ms-transform: rotate(-1.5deg);
    -webkit-transform: rotate(-1.5deg);
    transform: rotate(-1.5deg); 
}

.aMS_Voucher:nth-child(5n){
	-ms-transform: rotate(1deg);
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg); 
}

/*****************************************************************/
/* WaitScreen */
/*****************************************************************/

.aMS_WaitScreen #aMI_ScreenContent{
	height: calc(70vh - 80px);
	margin-bottom: 0px;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-top: 0px;
}

.aMS_WaitScreen #aMI_WaitGraphic{
	position:relative;
	background-color:black;
	border:none;
	background-image:url(SvgLoader/order.00000000.ff9118ff.79b83bff.svg);
	background-position: center;
	background-size:100% 100%;
	background-repeat:no-repeat;
	width: 15vw;
	height:15vw;
	border-radius:7.5vw;
	opacity:1;
	-webkit-animation-name: WaitAnimation;
	        animation-name: WaitAnimation;
	-webkit-animation-duration: 1.2s;
	        animation-duration: 1.2s;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
}

@-webkit-keyframes WaitAnimation {
	0%{
  -webkit-transform: scale(1);
  transform: scale(1);
	}
	10%{
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
	}
	20%{
  -webkit-transform: scale(1);
  transform: scale(1);
	}
	30%{
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
	}
	40%{
  -webkit-transform: scale(1);
  transform: scale(1);
	}
}

@keyframes WaitAnimation {
	0%{
  -webkit-transform: scale(1);
  transform: scale(1);
	}
	10%{
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
	}
	20%{
  -webkit-transform: scale(1);
  transform: scale(1);
	}
	30%{
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
	}
	40%{
  -webkit-transform: scale(1);
  transform: scale(1);
	}
}

/*****************************************************************/
/* ChooseDivisionScreen */
/*****************************************************************/

.aMS_ScreenContentElement.aMS_Division .aMS_Title{
	width:100%;
	height:0;
	margin-top:50%;
	font-size:50px;
	font-weight:900;
	text-align:center;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position:relative;
}

.aMS_ScreenContentElement.aMS_Division.aMS_Decorative .aMS_Title{
	display:none;
}

.aMS_ScreenContentElement.aMS_Division .aMS_Image{
	position:absolute;
	top:0px;
	left:0px;
	width: 100%;
    height: 100%;
}

.aMS_ChoosePositionDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement.aMS_Decorative:before{
	content:none;
	display:none;
}

.aMS_ChooseDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement.aMS_Division.aMS_DisabledElement,
.aMS_ChooseParentDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement.aMS_Division.aMS_DisabledElement{
	background-color:#666;
	cursor:default;
}

.aMS_ChooseDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement.aMS_Division.aMS_DisabledElement:hover:before,
.aMS_ChooseParentDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement.aMS_Division.aMS_DisabledElement:hover:before{
	display:none;
}

.aMS_ChooseDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement.aMS_ClientDivision,
.aMS_ChooseParentDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement.aMS_ClientDivision{
	background-color:#ffc17e;
}

/*****************************************************************/
/* ChoosePositionDivisionScreen */
/*****************************************************************/

#aMI_PositionDivisionScrollPanel{
	overflow-x:auto;
	overflow-y: hidden;
	width: 100%;
	float: left;
	position: relative;
	justify-content:normal;
	background-color:white;
	/*border:10px solid white;*/
	box-sizing:content-box;
	border-radius:2px;
}

#aMI_PositionDivisionPanel{
	background-repeat:repeat;
	float: left;
	display: block;
	position: relative;
	transition: zoom 1s;
	width:auto;
}

#aMI_PositionDivisionNavigationPanel{
	position:absolute;
	top:5px;
	left:5px;
	width:auto;
	height:auto;
	border-bottom-right-radius:2px;
}

#aMI_ScreenContent #aMI_PositionDivisionNavigationPanel .aMS_Button,
#aMI_ScreenContent #aMI_PositionDivisionNavigationPanel .aMS_Button:hover,
#aMI_ScreenContent #aMI_PositionDivisionNavigationPanel .aMS_Button:active,
#aMI_ScreenContent #aMI_PositionDivisionNavigationPanel .aMS_Button.aMS_DisabledElement{
	background-repeat:no-repeat;
	border:none;
	box-shadow:none;
	background-color:rgba(255,255,255,0.8);
	color:transparent;
	text-shadow:none;
	background-position:center;
	background-size:25px 25px;
	min-width:30px !important;
	min-height:30px !important;
}

.aMS_ChoosePositionDivisionScreen .aMS_ScreenContentElement.aMS_Division{
	-webkit-animation-name: none;
	        animation-name: none;
}

.aMS_ChoosePositionDivisionScreen .aMS_ScreenContentElement.aMS_Division.aMS_DisabledElement{
	opacity:0.5;
}

.aMS_ChoosePositionDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement.aMS_DisabledElement:hover:before{
	display:none;
}

.aMS_ChoosePositionDivisionScreen .aMS_ScreenContentElement.aMS_Division.aMS_ClientDivision{
	background-color:orange;
}

#aMI_ScreenContent #aMI_PositionDivisionNavigationPanel .aMS_Button:hover{
	background-color:white;
}

#aMI_ScreenContent #aMI_PositionDivisionNavigationPanel .aMS_Button.aMS_DisabledElement{
	background-color:grey;
}

#aMI_ScreenContent #aMI_PositionDivisionNavigationPanel .aMS_Button:first-child{
	margin-right:5px;
	background-image:url(/Pictures/makerWidget/zoom_in.png);
}

#aMI_ScreenContent #aMI_PositionDivisionNavigationPanel .aMS_Button:nth-child(2){
	background-image:url(/Pictures/makerWidget/zoom_out.png);
}

/*****************************************************************/
/* MenuTree */
/*****************************************************************/

.aMS_MenuElement.aMS_Family_Opened:before{
	display:none;
}

.aMS_Family.aMS_Family_Opened .aMS_ScreenContentInnerElement *{
	display:none;
}

.aMS_Family.aMS_Family_Opened{
	width:100%;
}

.aMS_Family.aMS_Family_Opened .aMS_ScreenContentInnerElement .aMS_Title:before,
.aMS_Family.aMS_Family_Opened.aMS_NoPhoto .aMS_ScreenContentInnerElement .aMS_Title:before{
	background:none;
	height: auto;
}

.aMS_MenuElement.aMS_Family_Opened .aMS_ScreenContentInnerElement{
	padding-bottom:0px;
}

.aMS_Item > .aMS_ScreenContentInnerElement > .aMS_Title,
.aMS_ComplexItem .aMS_Title,
.aMS_Family .aMS_Title,
.aMS_Enterprise .aMS_Title,
.aMS_Info .aMS_Title{
	/* background-color:rgba(255, 255, 255, 0.47); */
	position:absolute;
	margin-top: 5px;
	/* bottom: 2%; */
	left: 2%;
	width:96%;
	height: auto;
	font-size:2vw;
	line-height:2vw;
	font-weight:bold;
	text-align: left;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	/* text-shadow: 0px 0px 5px rgba(104, 104, 104, 1); */
	z-index: 1;
}

.aMS_Item .aMS_Subtitle,
.aMS_ComplexItem .aMS_Subtitle{
	z-index:1;
	color:black;
	position:absolute;
	bottom: 20%;
	width:100%;
	text-align:center;
	background-color:rgba(255,255,255,0.47);
	text-shadow: 0px 0px 5px rgba(104, 104, 104, 1);
	font-size: 1.2vw;
}

.aMS_Item .aMS_Subtitle:before,
.aMS_ComplexItem .aMS_Subtitle:before{
	content:"(";
}

.aMS_Item .aMS_Subtitle:after,
.aMS_ComplexItem .aMS_Subtitle:after{
	content:")";
}

.aMS_Item .aMS_Description,
.aMS_ComplexItem .aMS_Description,
.aMS_Family .aMS_Description,
.aMS_Enterprise .aMS_Description,
.aMS_Info .aMS_Description{
	position:absolute;
	left: 2%;
	top: 2%;
	width: 96%;
	height: 59%;
	overflow:hidden;
	text-align:justify;
	/* padding:4%; */
	z-index: 1;
	font-size:1.2vw;
	line-height:1.4vw;
	max-height: 75px;
}

#aMI_HeaderMenuContent .aMS_Description{
	display:none;
}

.aMS_Item.aMS_HasPrice .aMS_Description:before,
.aMS_ComplexItem.aMS_HasPrice .aMS_Description:before,
.aMS_Enterprise .aMS_Description:before{
	/* content:''; */
	width:22%;
	height:33%;
	position:relative;
	float:right;
}

.aMS_Enterprise .aMS_Description:before{
	height:25%;
	width:30%;
}

.aMS_Enterprise.aMS_Enterprise_PosNotOk .aMS_Description:before,
.aMS_Enterprise.aMS_Enterprise_PosOk .aMS_Description:before{
	height:45%;
}

.aMS_Item.aMS_HasQuantity.aMS_NoPrice .aMS_Description:before,
.aMS_ComplexItem.aMS_HasQuantity.aMS_NoPrice .aMS_Description:before{
	content:'';
	width:22%;
	height:24%;
	position:relative;
	float:right;
}

.aMS_Item.aMS_HasQuantity.aMS_HasPrice .aMS_Description:before,
.aMS_ComplexItem.aMS_HasQuantity.aMS_HasPrice .aMS_Description:before{
	height:61%;
}




.aMS_MenuElement.aMS_Item .aMS_Plu,
.aMS_MenuElement.aMS_ComplexItem .aMS_Plu,
.aMS_MenuElement.aMS_Info .aMS_Plu,
.aMS_MenuElement.aMS_NoPhoto .aMS_Photo,
.aMS_MenuElement.aMS_HasPhoto .aMS_Title:before{
	display:none;
}

.aMS_Item .aMS_Photo,
.aMS_ComplexItem .aMS_Photo,
.aMS_Family .aMS_Photo,
.aMS_Enterprise .aMS_Photo,
.aMS_Info .aMS_Photo{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	border-radius:0.2vw;
	z-index: 0;
	-o-object-fit:cover;
	object-fit: cover;
}

.aMS_Item .aMS_Price,
.aMS_ComplexItem .aMS_Price,
.aMS_Family .aMS_Price,
.aMS_Enterprise .aMS_Price{
	position:absolute;
	width:25%;
	height:25%;
	right:-2%;
	top:-2%;
    font-size:1.5vw;
}

.aMS_Info .aMS_Title:after{
	position:absolute;
	content:'i';
	border-color:black;
	background-color:white;
	height:60%;
	width:15%;
	top:-315%;
	right:-4%;
	font-size:1.5vw;
	color:black;
}

.aMS_Item .aMS_Quantity,
.aMS_ComplexItem .aMS_Quantity{
	position:absolute;
	width: 8%;
	height: 14%;
	color: #eb6741;
	padding-left:1%;
	font-size:1.4vw;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack:start;
	-ms-flex-pack:start;
	justify-content:flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
	top: 0%;
	right: 2%;
	background-color:rgba(255, 255, 255, 0.47);
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	z-index: 1;
}

.aMS_Item.aMS_NoPrice .aMS_Quantity,
.aMS_ComplexItem.aMS_NoPrice .aMS_Quantity{
	top: 4%;
}

.aMS_Item .aMS_Quantity:before,
.aMS_ComplexItem .aMS_Quantity:before{
	position:absolute;
	content:'=';
	background-image:url(/Pictures/Phone_Vectorial/shop_cart.svg);
	background-size: contain;
	background-repeat:no-repeat;
	background-position: 0% 50%;
	left: -100%;
	top: 0px;
	width: 100%;
	height: auto;
	background-color:rgba(255, 255, 255, 0.47);
	text-align:right;
	color:black;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-top-left-radius:5px;
	border-bottom-left-radius:5px;
}

.aMS_Enterprise .aMS_Distance,
.aMS_Enterprise.aMS_Enterprise_PosNotOk:after,
.aMS_Enterprise.aMS_Enterprise_PosOk:after{
	position:absolute;
	width: 28%;
	height: 14%;
	color:black;
	padding-left:5px;
	padding-right:5px;
	font-size:1.4vw;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
	top: 4%;
	right: 2%;
	background-color:rgba(255, 255, 255, 0.47);
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	border-top-left-radius:5px;
	border-bottom-left-radius:5px;
	z-index: 1;
	display: none;
}

.aMS_Enterprise.aMS_Enterprise_PosNotOk:after{
	content:'Offline';
	font-size:1.1vw;
	top: 20%;
	height: 10%;
	color:red;
}

.aMS_Enterprise.aMS_Enterprise_PosOk:after{
	content:'Online';
	font-size:1.1vw;
	top: 20%;
	height: 10%;
	color:#79b83b;
}

.aMS_Item .aMS_ScreenContentInnerElement > .aMS_Check,
.aMS_ComplexItem .aMS_Check,
.aMS_Family .aMS_Plu,
.aMS_Enterprise .aMS_Plu,
.aMS_Item .aMS_Plu,
.aMS_ComplexItem .aMS_Plu,
.aMS_Info .aMS_Plu{
	display:none;
}

.aMS_MenuElement.aMS_Opened:before{
	display:none;
}


.aMS_MenuElement.aMS_Opened .aMS_InnerItemPanel{
	opacity:1;
	pointer-events:all;
}

.aMS_MenuElement.aMS_Opened{
	z-index: 3;
}

.aMS_MenuElement .aMS_InnerItemPanel{
	padding:0px;
	position:absolute;
	width: 100%;
	left: 0%;
	top: 0;
	z-index: 2;
	background-color: #6f2c2c00;
	padding:1.6vw;
	border-radius:2px;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	opacity:0;
	pointer-events:none;
	-webkit-transition:opacity 0.3s ease;
	-o-transition:opacity 0.3s ease;
	transition:opacity 0.3s ease;
	/* border: 1px solid #d8d8d8; */
}

.aMS_ComplexWizardScreen .aMS_MenuElement .aMS_InnerItemPanel{
	top: 105px;	
}

.aMS_MenuElement .aMS_InnerItemPanel:before{
	content:'';
	width: calc(50% + 2px);
	height:2%;
	background-color: #ffffff;
	position:absolute;
	top:-2%;
	left:calc(25% - 1px);
	border-left: 1px solid #d8d8d8;
	border-right: 1px solid #d8d8d8;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}



.aMS_MenuElement.aMS_Opened:hover .aMS_ScreenContentInnerElement > .aMS_Title:after{
	opacity: 0;
}

.aMS_MenuElement .aMS_InnerItemPanel .aMS_ModifierFamily{
	border-radius:0px;
	padding:0px;
	/* margin-top: 140px; */
	/* top: 0; */
}

.aMS_MenuElement.aMS_Opened:hover .aMS_Title{
	z-index:2;
}

.aMS_MenuElement .aMS_InnerItemPanel .aMS_Button{
	min-width:50%;
}

#aMI_SuggestionsPanel .aMS_MenuElement{
	display:none;
}

#aMI_SuggestionsPanel .aMS_MenuElement:nth-child(1),
#aMI_SuggestionsPanel .aMS_MenuElement:nth-child(2),
#aMI_SuggestionsPanel .aMS_MenuElement:nth-child(3),
#aMI_SuggestionsPanel .aMS_MenuElement:nth-child(4){
	display:block;
}

.aMS_Item.aMS_HasStock .aMS_Description,
.aMS_ComplexItem.aMS_HasStock .aMS_Description{
	padding-top:10%;
}

/*** ComplexWizard ***/

#aMI_ComplexWizardPanel .aMS_MenuElement .aMS_InnerItemPanel{
	width: calc(100% + 2px);
	left: -1px;
}

#aMI_ComplexWizardPanel .aMS_MenuElement .aMS_InnerItemPanel:before{
	width: calc(100% + 2px);
	height:8%;
	left: -1px;
	top:-4%;
	background-color:white;
}

#aMI_ComplexWizardPanel .aMS_MenuElement .aMS_InnerItemPanel .aMS_Button{
	min-width:50%;
}

#aMI_ComplexWizardPanel .aMS_MenuElement.aMS_Opened .aMS_ScreenContentInnerElement > .aMS_Title:after{
	background-color:white;
    width: 146%;
    height: 280%;
    top: -8%;
    left: -29%;
    color:#666;
}

#aMI_ComplexWizardPanel .aMS_MenuElement.aMS_Opened:hover .aMS_ScreenContentInnerElement > .aMS_Title:after{
	left: -23%;
}

#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item.aMS_Opened:hover > .aMS_ScreenContentInnerElement > .aMS_Title{
	color: black;
	left:16%;
}

body:not(.aMS_ComplexWizardScreen) #aMI_NextButton{
	display:none;
}

#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item,
#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family{
	width:calc((100vw - (100vw - 100%)) * 0.48);
}

#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item > .aMS_ScreenContentInnerElement,
#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family .aMS_ScreenContentInnerElement{
	padding-bottom:20%;
}

#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item .aMS_Photo,
#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family .aMS_Photo{
	width:18%;
	height:90%;
	left:1%;
	top:5%
}

#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item .aMS_Price{
	width: 11%;
	height: 55%;
	right: -1%;
	top: 48%;
}

#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item > .aMS_ScreenContentInnerElement > .aMS_Title,
#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family .aMS_Title{
	border-radius:0px;
	left:20%;
	top:5%;
	width: 68%;
	height:40%;
	font-size: 1.5vw;
	line-height:1.5vw;
	/* background-color:#666; */
	color: #3e3e3e;
	border-radius: 0.2vw;
}

#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family .aMS_Title{
	width:79%;
}

#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item .aMS_Title:before,
#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family .aMS_Title:before{
	top:0px;
	left: -28%;
	width: 26.5%;
	height: 225%;
	border-radius: 0.2vw;
}

#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item.aMS_Opened:hover .aMS_Title:before{
	left: -22%;
}

#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family .aMS_Title:before{
	left: -24.2%;
	width: 22.9%;
}

#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item .aMS_Description,
#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family .aMS_Description{
	display:block;
	left:20%;
	top: 45%;
	height: 50%;
	width: 68%;
	padding:0px;
	font-size: 1vw;
	line-height:1.1vw;
	color:black;
	padding-top: 1%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family .aMS_Description{
	width: 79%;
}



#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item .aMS_Description:before,
#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family .aMS_Description:before{
	display:none;
}

#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item > .aMS_ScreenContentInnerElement > .aMS_Check{
	width:6%;
	height:30%;
	position:absolute;
	top:5%;
	right:1%;
	display:block;
	background-size:100% 100%;
}

#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item .aMS_Check.aMS_Unchecked{
	background-image:url(SvgLoader/check_dot.ffffff00.eb6741ff.ffffff00.svg);
}

#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item .aMS_Check.aMS_Checked{
	background-image:url(SvgLoader/check_check.ffffff00.eb6741ff.eb6741ff.svg);
}

#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item .aMS_Quantity:before{
	display:none;
}

#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item .aMS_Quantity{
	top: 5%;
	right: 6%;
	height: 30%;
	width: 5%;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 0px;
}

#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item .aMS_Quantity:after{
	content:'x';
	color:black;
	margin-left:5%;
	font-size: 1.1vw;
}

.aMS_MenuElement.aMS_InfoHTML{
	overflow:hidden;
	text-align:justify;
	cursor:auto;
}

.aMS_MenuElement.aMS_InfoHTML:before{
	display: none;
}


/*****************************************************************/
/* Header And Footer Menu */
/*****************************************************************/


#aMI_HeaderMenuContent{
	background-color: #eb674100;
	width: 70%;
	height: 25px;
	/* margin-top: 0px; */
	margin-left: 15%;
	/* display: block; */
	position: fixed;
	z-index: 9;
	top: 90px;
}
#aMI_HeaderMenuContent .aMS_ScreenInnerContent
{
	background-color: #ff000000;
	/* background-size:20px 20px; */
	width: 100%;
	height: 25px;
	border-radius: 3px;
	overflow:hidden;
	position: relative;
	margin-top: 0px;
	margin-left: 0%;
	top: 0;
}


#aMI_HeaderMenuContent .aMS_Label:before,
#aMI_HeaderMenuContent .aMS_Label:after
{
	display:none;
}

#aMI_HeaderMenuContent .aMS_ScreenContentElement
{
	float:left;
	position:relative;
	width:auto;
	background-color:transparent;
	margin:0px;
	border:none;
	height: 25px!important;
	border-radius:0px;
}

#aMI_HeaderMenuContent .aMS_ScreenContentElement:active .aMS_Title,
#aMI_HeaderMenuContent .aMS_InnerOptionWrapper:active .aMS_Button,
#aMI_HeaderMenuContent .aMS_ScreenContentElement.aMS_IsSelected .aMS_Title,
#aMI_HeaderMenuContent .aMS_InnerOptionWrapper.aMS_IsSelected .aMS_Button
{
	color: #ffffff;
	border-bottom: 2px solid white;
	text-shadow:none;
}

#aMI_HeaderMenuContent .aMS_Title,
#aMI_HeaderMenuContent .aMS_InnerOptionWrapper .aMS_Button
{
	display:block;
	position:relative;
	float:left;
	background:none;
	margin:0px;
	left:auto;
	top:auto;
	/* line-height: 30px; */
	font-size: 25px;
	height: 25px;
	white-space: nowrap;
	padding-left: 10px;
	padding-right: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-weight: normal;
	cursor:pointer;
	/* text-shadow: 0px 0px 5px rgba(104, 104, 104, 1); */
	border:none;
	font-family: 'Khand', sans-serif;
	line-height: 25px;
}

#aMI_HeaderMenuContent .aMS_Title{
	color:white;
}

@media screen and (max-width: 600px)
{
	#aMI_HeaderMenuContent .aMS_Title
	{padding-left: 3px;padding-right: 3px;/* background-color: #ffffff; */color: white;text-shadow: initial;}
}



/*****************************************************************/
/* ItemPanel */
/*****************************************************************/

.aMS_ItemScreen #aMI_ItemPanel,
.aMS_InfoScreen #aMI_InfoPanel{
	display: block;
	float:left;
	position:relative;
}

.aMS_ItemScreen #aMI_ItemPanel .aMS_Description,
.aMS_InfoScreen #aMI_InfoPanel .aMS_Description{
	position:relative;
	float:left;
	width:50%;
	text-align:justify;
	margin-left:49%;
	padding:1.6vw;
	background-color:white;
	border-radius:2px;
	padding-bottom:calc(3.2vw + 40px);
	font-size:20px;
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
}

.aMS_InfoScreen #aMI_InfoPanel .aMS_Description{
	padding-bottom:2%;
}

.aMS_ItemScreen #aMI_ItemPanel.aMS_NoDescription .aMS_Description,
.aMS_InfoScreen #aMI_InfoPanel.aMS_NoDescription .aMS_Description{
	padding-top:0px;
	height:0px;
}

.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPrice .aMS_Description:after{
	content:'';
	position: absolute;
	width: calc(40px + 4vw);
	height: calc(40px + 4vw);
	font-size:2.5vw;
	left:calc(101% - 40px - 4vw);
	bottom:calc(-0.2vw);
	line-height:calc((100vw - (100vw - 100%)) * 1.4 + 40px);
	display:none;
}


.aMS_ItemScreen #aMI_ItemPanel .aMS_Photo,
.aMS_InfoScreen #aMI_InfoPanel .aMS_Photo{
	background-color:white;
	position:absolute;
	left:1%;
	top:0px;
	width:44%;
	height:auto;
	border-radius:2px;
	border:0.5vw solid white;
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
}

.aMS_InfoScreen #aMI_InfoPanel.aMS_NoDescription .aMS_Description{
	display:none;
}

.aMS_InfoScreen #aMI_InfoPanel.aMS_NoDescription .aMS_Photo{
	margin-left:28%;
}

.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_Photo,
.aMS_InfoScreen #aMI_InfoPanel.aMS_NoPhoto .aMS_Photo{
	display:none;
}

.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_Description,
.aMS_InfoScreen #aMI_InfoPanel.aMS_NoPhoto .aMS_Description{
	margin-left:25%;
}

.aMS_ItemScreen #aMI_ItemPanel .aMS_Price{
	position:relative;
	width: calc(40px + 4vw);
	height: calc(40px + 4vw);
	font-size:3vw;
	float:left;
	margin-left:calc(94.5% - 40px);
	margin-top:calc(-4.7% - 40px);
	line-height:calc((100vw - (100vw - 100%)) * 1.4 + 40px);
}

.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_Price{
	margin-left:calc(70.5% - 40px);
}

.aMS_ItemScreen #aMI_ItemPanel .aMS_Quantity{
	position:relative;
	float:left;
	margin-left:calc(51% + 40px);
	width:70px;
	height:40px;
	text-align:center;
	line-height:40px;
	font-size:30px;
	margin-top:calc(-1.6vw + -40px);
	color: #eb6741;
	font-weight:bold;
}

.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_Quantity{
	margin-left:calc(27% + 40px);
}

.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPrice .aMS_Quantity{
	margin-top:calc(-1.6vw - 40px);
}

.aMS_ItemScreen #aMI_ItemPanel .aMS_Quantity:after{
	content:'pcs';
	margin-left:5px;
	color:black;
	font-size:15px;
}

.aMS_ItemScreen #aMI_ItemPanel .aMS_AddQuantity{
	position:relative;
	float:left;
	margin-left:calc(51% + 110px);
	margin-top:calc(-1.6vw - 40px);
}

.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_AddQuantity{
	margin-left:calc(27% + 110px);
}

.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPrice .aMS_AddQuantity{
	margin-top:calc(-1.6vw - 40px);
}

.aMS_ItemScreen #aMI_ItemPanel .aMS_RemoveQuantity{
	position:relative;
	float:left;
	margin-left:calc(51%);
	margin-top:calc(-1.6vw - 40px);
}

.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_RemoveQuantity{
	margin-left:calc(27%);
}

.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPrice .aMS_RemoveQuantity{
	margin-top:calc(-1.6vw - 40px);
}

/*****************************************************************/
/* InnerItemPanel */
/*****************************************************************/

.aMS_ItemScreen #aMI_ItemPanel .aMS_InnerItemPanel,
.aMS_ItemScreen #aMI_ItemPanel .aMS_InnerComplexItemPanel{
	position:relative;
	float:left;
	margin-left:49%;
	width:50%;
	margin-top:30px;
}

.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_InnerItemPanel,
.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_InnerComplexItemPanel{
	margin-left:25%;
}

.aMS_ItemScreen #aMI_ItemPanel .aMS_InnerItemPanel .aMS_Button,
.aMS_ItemScreen #aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_Button{
	width:100%;
}

.aMS_InnerItemPanel .aMS_ModifierFamily,
.aMS_InnerComplexItemPanel .aMS_OrderItem{
	background-color: white;
	width:100%;
	float:left;
	position:relative;
	margin-bottom: 30px;
	border-radius:2px;
	padding:1.6vw;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}

.aMS_InnerItemPanel .aMS_ModifierFamily .aMS_Title,
#aMI_OrderListPanel .aMS_OrderItem .aMS_InnerItemPanel .aMS_ModifierFamily .aMS_Title,
#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Title{
	width:100%;
	background-color:#666;
	font-size: 20px;
	color:white;
	text-shadow: 0px 0px 5px rgba(104, 104, 104, 1);
	padding-left:5px;
	border-radius:2px;
	margin-left:0px;
	height:auto;
	line-height:normal;
}

#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem.aMS_HasQuantity .aMS_Title,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_InnerComplexItemPanel .aMS_OrderItem.aMS_HasQuantity .aMS_Title{
	padding-left:30px;
}

#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem.aMS_HasQuantity .aMS_Quantity,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_InnerComplexItemPanel .aMS_OrderItem.aMS_HasQuantity .aMS_Quantity{
	display:block;
	position:absolute;
	left:30px;
	top: 27px;
	margin:0px;
	padding:0px;
	font-size:25px;
	width:auto;
	right: auto;
	line-height: 25px;
	height: 25px;
}

#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_InnerComplexItemPanel .aMS_OrderItem.aMS_HasQuantity .aMS_Quantity{
	top:4px;
	left:5px;
}

#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem.aMS_HasQuantity .aMS_Quantity:after,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_InnerComplexItemPanel .aMS_OrderItem.aMS_HasQuantity .aMS_Quantity:after{
	content:'x';
	color:white;
	margin:0px;
}

#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_InnerComplexItemPanel .aMS_OrderItem.aMS_HasQuantity .aMS_Quantity:after{
	color:#666;
}

#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem.aMS_HasQuantity .aMS_ModifierFamily .aMS_Title,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_InnerComplexItemPanel .aMS_OrderItem.aMS_HasQuantity .aMS_ModifierFamily .aMS_Title{
	padding-left:5px;
}

.aMS_InnerItemPanel .aMS_ModifierFamily .aMS_ModifierItem{
	width:100%;
	border-bottom:1px solid #666;
	position:relative;
}

.aMS_ScreenContentInnerElement .aMS_InnerItemPanel .aMS_ModifierFamily .aMS_ModifierItem:hover{
	background-color:#eb67416b;
}

.aMS_OutOfSchedule .aMS_ScreenContentInnerElement .aMS_InnerItemPanel .aMS_ModifierFamily .aMS_ModifierItem:hover{
	background-color:initial;
	pointer-events: none;
}

.aMS_InnerItemPanel .aMS_ModifierFamily .aMS_ModifierItem .aMS_Title,
#aMI_OrderListPanel .aMS_OrderItem .aMS_InnerItemPanel .aMS_ModifierFamily .aMS_ModifierItem .aMS_Title,
#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_ModifierFamily .aMS_ModifierItem .aMS_Title{
	background-color:transparent;
	width: 65%;
	position:relative;
	float:left;
	text-shadow:none;
	color:#666;
	margin-top:5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.aMS_InnerItemPanel .aMS_ModifierFamily .aMS_ModifierItem .aMS_Check{
	width:35px;
	height:35px;
	position:absolute;
	right:0px;
	top:2px;
	background-size:35px 35px;
}

.aMS_InnerItemPanel .aMS_ModifierFamily .aMS_ModifierItem .aMS_Unchecked{
	background-image:url(SvgLoader/check_dot.ffffff00.eb6741ff.ffffff00.svg);
}

.aMS_InnerItemPanel .aMS_ModifierFamily .aMS_ModifierItem .aMS_Checked{
	background-image:url(SvgLoader/check_check.ffffff00.eb6741ff.eb6741ff.svg);
}

.aMS_InnerItemPanel .aMS_ModifierFamily .aMS_ModifierItem .aMS_Dotted{
	background-image:url(SvgLoader/check_dot.ffffff00.eb6741ff.eb6741ff.svg);
}

.aMS_ScreenContentInnerElement .aMS_ModifierItem .aMS_Unchecked{
	display:none;
}


#aMI_ItemPanel .aMS_InnerItemPanel .aMS_ModifierFamily .aMS_ModifierItem .aMS_Price,
.aMS_MenuElement .aMS_InnerItemPanel .aMS_ModifierFamily .aMS_ModifierItem .aMS_Price,
#aMI_OrderListPanel .aMS_OrderItem .aMS_InnerItemPanel .aMS_ModifierFamily .aMS_ModifierItem .aMS_Price,
#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Price,
#aMI_OrderListPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Price{
	height:auto;
	border:none;
	background-color:transparent;
	line-height: normal;
	display:block;
	padding: 0px;
	border-radius:0px;
	-webkit-transform:none;
	-ms-transform:none;
	transform:none;
	color: #eb6741;
	margin:auto;
	float:left;
	text-shadow:none;
	width: 18%;
	font-size:20px;
	margin-top:5px;
	position:relative;
	top:auto;
	left:auto;
	right:auto;
	text-align: right;
	padding-right: 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.aMS_InnerItemPanel .aMS_ModifierFamily .aMS_ModifierItem .aMS_Plu{
	display:none;
}

#aMI_OrderListPanel .aMS_OrderItem .aMS_InnerItemPanel .aMS_ModifierFamily .aMS_Title,
#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_ModifierFamily .aMS_Title{
	background-color:#e3e3e3;
	color:#666;
	text-shadow:none;
	border-radius:0px;
}

#aMI_OrderListPanel .aMS_OrderItem .aMS_InnerItemPanel .aMS_ModifierFamily:last-child,
#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_InnerItemPanel .aMS_ModifierFamily:last-child{
	margin-bottom:4px;
}

#aMI_OrderListPanel .aMS_OrderItem .aMS_InnerItemPanel .aMS_ModifierFamily .aMS_ModifierItem,
#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_ModifierFamily .aMS_ModifierItem{
	border-left:1px solid #e3e3e3;
	border-bottom-color:#e3e3e3
}

/*** Complex item ***/

#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Description,
#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Button,
#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Quantity,
#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Photo,
#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem.aMS_NoInnerItem .aMS_InnerItemPanel,
#aMI_OrderListPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Description,
#aMI_OrderListPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Button,
#aMI_OrderListPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Quantity,
#aMI_OrderListPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Photo,
#aMI_OrderListPanel .aMS_InnerComplexItemPanel .aMS_OrderItem.aMS_NoInnerItem .aMS_InnerItemPanel,
#aMI_ItemPanel .aMS_OrderItem .aMS_Date{
	display:none;
}

#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Title,
#aMI_OrderListPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Title{
	padding-right: 16%;
}

#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Title{
	margin:0px;
	padding-left:5px;
	width:100%;
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
	background-color:#e3e3e3;
	border-radius:0px;
	color:#666;
	text-shadow:none;
	line-height: 30px;
	height:auto;
	font-size:20px;
}

#aMI_OrderListPanel .aMS_InnerComplexItemPanel .aMS_OrderItem{
	padding:0px;
	margin-left:45px;
	border-bottom:none;
	min-height: auto;
	margin-bottom: 0px;
	margin-top: 10px;
}

.aMS_InnerComplexItemPanel .aMS_OrderItem:before,
.aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Title:before,
.aMS_InnerItemPanel .aMS_Title:before,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_InnerComplexItemPanel .aMS_Title:after{
	display:none;
}

#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_ModifierFamily .aMS_Title,
#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_ModifierFamily .aMS_ModifierItem .aMS_Title,
#aMI_OrderListPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_ModifierFamily .aMS_Title,
#aMI_OrderListPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_ModifierFamily .aMS_ModifierItem .aMS_Title{
	padding-right: 0px;
}

#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_ModifierFamily .aMS_ModifierItem .aMS_Title,
#aMI_OrderListPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_ModifierFamily .aMS_ModifierItem .aMS_Title{
	width: 80%;
}

#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Price,
#aMI_OrderListPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Price{
	margin:0px;
	font-size:20px;
	left:auto;
	right: 4%;
	position:absolute;
}

#aMI_OrderListPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_Price{
	right: 0%;
}

#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_ModifierItem .aMS_Price,
#aMI_OrderListPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_ModifierItem .aMS_Price{
	float:right;
}

#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_InnerItemPanel,
#aMI_OrderListPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_InnerItemPanel{
	margin-left:0px;
	width: 95%;
	margin-left: 5%;
	margin-top: 10px;
}

#aMI_OrderListPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_InnerItemPanel{
	margin-top:0px;
	margin-bottom:5px;
}

#aMI_ItemPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_InnerItemPanel .aMS_ModifierFamily,
#aMI_OrderListPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_InnerItemPanel .aMS_ModifierFamily{
	padding:0px;
	border-radius:0px;
	margin-bottom:10px;
}

#aMI_OrderListPanel .aMS_InnerComplexItemPanel .aMS_OrderItem .aMS_InnerItemPanel .aMS_ModifierFamily{
	margin-top:10px;
	margin-bottom:0px;
}

/*****************************************************************/
/* Sidebars */
/*****************************************************************/

#aMI_OrderListContent,
#aMI_OptionsContent
{
	background-color:white;
	width: 30%;
	right: 0;
	height: calc(100vh - 120px);
	position:fixed;
	top: 125px;
	right: 0;
	border: 10px solid #eb6741;
	border-bottom-left-radius:5px;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-transition:right 0.3s ease;
	-o-transition:right 0.3s ease;
	transition:right 0.3s ease;
	z-index: 5;
	/* border-left: 3px solid red; */
}



#aMI_OptionsContent
{
	width: 400px;
	right: -415px;
	height:auto;
	max-height:calc(100vh - 100px);
}





#aMI_OrderListContent:hover,
#aMI_OptionsContent:hover
{
	/* right:0px; */
}

#aMI_OrderListContent:after,
#aMI_OptionsContent:after
{
	content:'';
	width: 100%;
	height:55px;
	position:absolute;
	left: -10px;
	top:-10px;
	border-top-left-radius:5px;
	border-bottom-left-radius:5px;
	border: 10px solid #eb6741;
	background-image:url(https://lh3.googleusercontent.com/idJNoY4-h2sLiqAF-o9TXx9VE49uuOsfNZp4goECWMXB9j0DhGeV9mmPTUf98NeFmzG9mQ51yit8WM0_Hxka);
	background-repeat:no-repeat;
	background-size: 50px 50px;
	background-position: 50% 50%;
	background-color:#eeeeee;
	-webkit-transition:background-color 0.3s ease;
	-o-transition:background-color 0.3s ease;
	transition:background-color 0.3s ease;
	cursor:pointer;
}

#aMI_OrderListContent:before,
#aMI_OptionsContent:before
{
	content:'';
	width: 100%;
	height:75px;
	position:absolute;
	left: 0px;
	top: -10px;
	border-top-left-radius:5px;
	border-bottom-left-radius:5px;
	background-color:black;
	cursor:pointer;
}

#aMI_OrderListContent:hover:after,
#aMI_OptionsContent:hover:after
{
	/* background-color:#78b53b; */
}

#aMI_OrderListContent #aMI_OrderListPanel:before,
#aMI_OptionsContent #aMI_OptionsPanel:before
{
	content:'';
	width:100%;
	height:100%;
	position:absolute;
	left:0px;
	top:0px;
	pointer-events:none;
}

#aMI_OptionsContent
{
	border-top-left-radius:5px;
}

#aMI_OptionsContent:after{
	background-image:url(SvgLoader/options.444444ff.000000ff.000000ff.svg);
	background-size:45px 45px;
	background-position:5px 5px;
}


#aMI_OptionsContent:after,
#aMI_OptionsContent:before{
	top:80px;
}


.aMS_NoOrderItems #aMI_OrderListContent,
.aMS_OrderListScreen #aMI_OrderListContent,
.aMS_WaitScreen #aMI_OrderListContent,
.aMS_WaitScreen #aMI_OptionsContent,
.aMS_OrderFormScreen #aMI_OrderListContent,
.aMS_AskAddressScreen #aMI_OrderListContent,
.aMS_AddressFormScreen #aMI_OrderListContent,
.aMS_LoginScreen #aMI_OrderListContent,
.aMS_LoginScreen #aMI_OptionsContent,
.aMS_PaymentMethodsScreen #aMI_OrderListContent,
.aMS_ItemScreen #aMI_OrderListContent,
.aMS_VouchersScreen #aMI_OrderListContent,
.aMS_VouchersScreen #aMI_OptionsContent,
.aMS_OrderHistoryScreen #aMI_OrderListContent,
.aMS_OrderHistoryScreen #aMI_OptionsContent,
.aMS_UserDetailsScreen #aMI_OptionsContent,
.aMS_UserDetailsScreen #aMI_OrderListContent,
.aMS_AddressFormScreen #aMI_OptionsContent,
.aMS_ComplexWizardScreen #aMI_OrderListContent,
.aMS_AskAddressScreen #aMI_OptionsContent,
.aMS_OrderFormScreen #aMI_OptionsContent,
.aMS_PaymentMethodsScreen #aMI_OptionsContent,
.aMS_PaymentMethod #aMI_OrderListContent,
.aMS_PaymentMethod #aMI_OptionsContent,
.aMS_PaymentIFrameScreen #aMI_OrderListContent,
.aMS_PaymentIFrameScreen #aMI_OptionsContent{
	right: -640px;
}

.aMS_SideBar:hover ~ #aMI_OptionsContent,
.aMS_OptionsScreen #aMI_OptionsContent{
	right: -490px;
}

.aMS_NoOrderItems #aMI_OrderListContent #aMI_OrderListPanel *{
	display:none;
}



/*****************************************************************/
/* OrderList */
/*****************************************************************/

#aMI_OrderListPanel .aMS_OrderQuantity{
	display:none;
}

#aMI_OrderListContent #aMI_OrderListPanel .aMS_OrderQuantity{
	background-color: white;
	position:absolute;
	width: 25px;
	height: 25px;
	border-radius:15px;
	text-align:center;
	color: black;
	text-weight:bold;
	font-size:20px;
	top: -14px;
	left: 50%;
	z-index:1;
	display:block;
}

.aMS_OrderListScreen #aMI_OrderListPanel{
	width: 96%;
}

.aMS_OrderListScreen .aMS_OrderItems{
	background-color:white;
	padding:2%;
	border-radius:2px;
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
}

#aMI_OrderListContent #aMI_OrderListPanel{
	background-color: #e6e4e4;
	width:calc(100% - 20px);
	height: calc(100% - 100px);
	overflow: auto;
	padding:10px;
	padding-top:20px;
	padding-bottom: 20px;
	margin-top: 50px;
}

#aMI_OrderListPanel.aMS_ScreenInnerContent{
	display: block;
	float:left;
}

#aMI_OrderListPanel .aMS_OrderItem.aMS_HasInnerItem:before,
#aMI_OrderListPanel .aMS_OrderComplexItem.aMS_HasInnerItem:before{
	content:'-';
	position:absolute;
	top:0px;
	left:45px;
	color:black;
	background-color:transparent;
	width:20px;
	height:40px;
	line-height:40px;
	z-index:1;
	color:white;
	text-shadow: 0px 0px 5px rgba(104, 104, 104, 1);
	font-size:20px;
	font-weight:bold;
	text-align:center;
}

#aMI_OrderListPanel .aMS_OrderItem.aMS_HasInnerItem.aMS_HideInnerItem:before,
#aMI_OrderListPanel .aMS_OrderComplexItem.aMS_HasInnerItem.aMS_HideInnerItem:before{
	content:'+';
}

#aMI_OrderListPanel .aMS_OrderItem,
#aMI_OrderListPanel .aMS_OrderComplexItem{
	margin-bottom:20px;
	display:block;
	position:relative;
	float:left;
	padding-bottom:5px;
	border-bottom:1px solid #666;
	min-height:85px;
	-webkit-transition:height 0.3s ease;
	-o-transition:height 0.3s ease;
	transition:height 0.3s ease;
}

#aMI_OrderListPanel .aMS_OrderItem .aMS_Title,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_Title{
	font-size:20px;
	font-weight:bold;
	float:left;
	position:relative;
	width:calc(100% - 50px);
	height:40px;
	line-height:40px;
	margin-left:45px;
	background-color:#666;
	color:white;
	text-shadow: 0px 0px 5px rgba(104, 104, 104, 1);
	padding-left:5px;
	border-radius:2px;
	cursor:pointer;
	overflow: hidden;
}

#aMI_OrderListPanel .aMS_NoPhoto.aMS_OrderItem .aMS_Title,
#aMI_OrderListPanel .aMS_NoPhoto.aMS_OrderComplexItem .aMS_Title{
	margin-left:0;
}
#aMI_OrderListPanel .aMS_NoPhoto.aMS_OrderItem.aMS_HasInnerItem.aMS_HideInnerItem:before,
#aMI_OrderListPanel .aMS_NoPhoto.aMS_OrderComplexItem.aMS_HasInnerItem.aMS_HideInnerItem:before{
	margin-left:-45px;
}


#aMI_OrderListPanel .aMS_OrderItem.aMS_HasInnerItem .aMS_Title,
#aMI_OrderListPanel .aMS_OrderComplexItem.aMS_HasInnerItem .aMS_Title{
	padding-left:20px;
	width: calc(100% - 65px);
}

#aMI_OrderListPanel .aMS_OrderItem .aMS_Description,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_Description{
	width:calc(100% - 135px);
	float:left;
	height:40px;
	line-height:20px;
	overflow:hidden;
	margin-left:0px;
	margin-top:5px;
	text-align:justify;
	color:#666;
}

#aMI_OrderListPanel .aMS_OrderItem .aMS_HTML.aMS_Description,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_HTML.aMS_Description{
	visibility:hidden;
}

#aMI_OrderListPanel .aMS_OrderItem.aMS_NoDescription .aMS_Description,
#aMI_OrderListPanel .aMS_OrderComplexItem.aMS_NoDescription .aMS_Description{
	display:none;
}

#aMI_OrderListPanel .aMS_OrderItem .aMS_Date,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_Date,
#aMI_OrderListPanel .aMS_OrderItem .aMS_EndDate,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_EndDate,
#aMI_OrderListPanel .aMS_OrderItem .aMS_Duration,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_Duration{
	display:none;
}

#aMI_OrderListPanel .aMS_OrderItem .aMS_Photo,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_Photo{
	width:40px;
	height:40px;
	position:absolute;
	left:0px;
	top:0px;
	/* background-color: #e6e4e4; */
}

#aMI_OrderListPanel .aMS_OrderItem.aMS_NoPhoto .aMS_Photo,
#aMI_OrderListPanel .aMS_OrderComplexItem.aMS_NoPhoto .aMS_Photo{
	display:none;
}

#aMI_OrderListPanel .aMS_OrderItem.aMS_NoPhoto .aMS_Title:before,
#aMI_OrderListPanel .aMS_OrderComplexItem.aMS_NoPhoto .aMS_Title:before{
	content:'';
	width:40px;
	height:40px;
	position:absolute;
	left:-45px;
	top:0px;
}

#aMI_OrderListPanel .aMS_OrderItem .aMS_Price,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_Price{
	position:absolute;
	top: -3px;
	right:-5px;
	width: 45px;
	height: 45px;
	font-size: 17px;
}

#aMI_OrderListPanel .aMS_OrderItem.aMS_NoPrice .aMS_Title:after,
#aMI_OrderListPanel .aMS_OrderComplexItem.aMS_NoPrice .aMS_Title:after{
	content:'';
	position:absolute;
	top: -3px;
	right:-5px;
	width: 45px;
	height: 45px;
	font-size: 17px;
}

#aMI_OrderListPanel .aMS_OrderItem .aMS_RemoveQuantity,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_RemoveQuantity{
	position:absolute;
	top:45px;
	right:90px;
}

#aMI_OrderListPanel .aMS_OrderItem .aMS_Quantity,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_Quantity{
	position:absolute;
	top:45px;
	right:40px;
	width:50px;
	height:40px;
	line-height:40px;
	text-align:center;
	color:red;
	font-weight:bold;
	font-size:20px;
}

#aMI_OrderListPanel .aMS_OrderItem .aMS_Quantity:after,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_Quantity:after{
	content:'pcs';
	color:black;
	font-size:15px;
	margin-left:2px;
}

#aMI_OrderListPanel .aMS_OrderItem .aMS_AddQuantity,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_AddQuantity{
	position:absolute;
	top:45px;
	right:0px;
}

#aMI_OrderListPanel .aMS_OrderItem .aMS_InnerItemPanel,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_InnerComplexItemPanel{
	display:none;
}

#aMI_OrderListPanel .aMS_OrderItem.aMS_NoDescription .aMS_InnerItemPanel,
#aMI_OrderListPanel .aMS_OrderComplexItem.aMS_NoDescription .aMS_InnerComplexItemPanel{
	margin-top: 45px;
}

#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_OrderItem.aMS_NoDescription .aMS_InnerItemPanel{
	margin-top: 0px;
}

#aMI_OrderListPanel .aMS_OrderItem.aMS_HasInnerItem.aMS_ShowInnerItem .aMS_InnerItemPanel,
#aMI_OrderListPanel .aMS_OrderComplexItem.aMS_HasInnerItem.aMS_ShowInnerItem .aMS_InnerComplexItemPanel{
	display: block;
	display:-webkit-box;
	display:-ms-flexbox;
	display: flex;
}

#aMI_OrderListPanel .aMS_OrderItem .aMS_InnerItemPanel .aMS_ModifierFamily,
#aMI_OrderListPanel .aMS_OrderComplexItem .aMS_InnerItemPanel .aMS_ModifierFamily{
	background-color:transparent;
	padding:0px;
	margin:0px;
	margin-top:10px;
	/* padding-left:45px; */
}

#aMI_OrderListPanel .aMS_OrderSummary, #aMI_OrderListPanel .aMS_RedeemCode{
	width:100%;
	float:left;
	position:relative;
	margin-top:20px;
	padding: 0px;
}

.aMS_OrderListScreen #aMI_OrderListPanel .aMS_RedeemCode{
	padding: 2%;
}

#aMI_OrderListPanel .aMS_OrderSummary{
	display:block;
}

#aMI_OrderListPanel .aMS_OrderSummary #aMI_FinishButton,
#aMI_OrderListPanel .aMS_OrderSummary #aMI_GoHomeButton,
#aMI_OrderListPanel .aMS_RedeemCode #aMI_RedeemButton,
#aMI_OrderListPanel .aMS_OrderSummary #aMI_ShareShoppingCartButton{
	position:relative;
	width:50%;
	float:left;
	margin-right:10px;
	margin-left:0px;
	left:0px;
	top:0px;
	margin-top:0px;
}

#aMI_OrderListPanel .aMS_OrderSummary #aMI_ShareShoppingCartButton{
	margin-top:10px;
}

#aMI_OrderListPanel .aMS_OrderSummary #aMI_GoHomeButton{
	margin-top:20px;
}

#aMI_OrderListPanel .aMS_RedeemCode #aMI_RedeemButton{
	margin-top:10px;
}

#aMI_OrderListPanel .aMS_OrderSummary .aMS_PriceTitle{
	position:absolute;
	z-index:3;
	left:calc(50% - 5px);
	top:-2px;
	width:66px;
	text-shadow: 0px 0px 5px rgba(104, 104, 104, 1);
	text-align:center;
	font-size:20px;
	-webkit-transform:rotate(7deg);
	    -ms-transform:rotate(7deg);
	        transform:rotate(7deg);
}

#aMI_OrderListPanel .aMS_OrderSummary .aMS_Price{
	position:absolute;
	top:-10px;
	left:calc(50% - 5px);
	background-color: #eb6741;
	width: 60px;
	height: 60px;
	font-size:20px;
	padding-top: 20px;
}

#aMI_OrderListPanel .aMS_RedeemCode:before{
	padding:0px;
}

/*****************************************************************/
/* Popup */
/*****************************************************************/

.aMS_PopupWrapper{
	background-color:rgba(255, 255, 255, 0.60);
	background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(255,255,255,0.7) 100%);
	background: -webkit-radial-gradient(center, ellipse, rgba(255,255,255,1) 0%,rgba(255,255,255,0.7) 100%);
	background: -o-radial-gradient(center, ellipse, rgba(255,255,255,1) 0%,rgba(255,255,255,0.7) 100%);
	background: radial-gradient(ellipse at center, rgba(255,255,255,1) 0%,rgba(255,255,255,0.7) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#b3ffffff',GradientType=1 );
	position:fixed;
	width:100%;
	height:100%;
	z-index: 5;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-animation:AnimationFadeIn0 0.5s ease;
	        animation:AnimationFadeIn0 0.5s ease;
	top: 0px;
	left: 0px;
}

.aMS_PopupContent{
	width:100%;
	height:100%;
	color:white;
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
	display: block;        
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	background-color:white;
	border-radius:3px;
	overflow:hidden;
	border:1px solid #696969;
}

.aMS_PopupContent *{
	margin:10px;
}

.aMS_PopupContent .aMS_Button{
	min-width:100px;
}

.aMS_PopupContent .aMS_Title{
	background-color:black;
	width:100%;
	padding:10px;
	margin:0px;
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
	font-size:20px;
	text-shadow: 0px 0px 5px rgba(104, 104, 104, 1);
	text-align:center;
}

/*****************************************************************/
/* OptionsPanel */
/*****************************************************************/

#aMI_OptionsPanel{
	width:100%;
}

#aMI_OptionsPanel .aMS_Button{
	width: 90%;
	margin-left:5%;
	margin-right:5%;
	margin-bottom:20px;
}

#aMI_OptionsContent #aMI_OptionsPanel{
	overflow-y:auto;
	width:100%;
	padding: 0px;
	padding-top: 10px;
	max-height:calc(100vh - 150px);
	position:relative;
	float:left;
}

#aMI_OptionsContent #aMI_OptionsPanel .aMS_Button{
	width: calc(100% - 20px);
	margin: 0px;
	margin-bottom: 10px;
}

/*****************************************************************/
/* FormPanel & LoginPanel */
/*****************************************************************/

.aMS_FormPanel,
#aMI_LoginPanel{
	width:50%;
	background-color: white;
	padding: 1.6vw;
	border-radius: 2px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	display: block;
}

.aMS_FormPanel .aMS_FormFieldTitle,
#aMI_LoginPanel .aMS_FormFieldTitle,
.aMS_FormPanel .aMS_FormFieldValue.aMS_FormFieldValueNoTitle,
#aMI_LoginPanel .aMS_FormFieldValue.aMS_FormFieldValueNoTitle{
	float:left;
	width:100%;
	font-size:25px;
	font-weight:bold;
	border-bottom:1px solid #999;
	position:relative;
}

.aMS_FormPanel .aMS_FormFieldValue:not(.aMS_FormFieldValueNoTitle),
#aMI_LoginPanel .aMS_FormFieldValue:not(.aMS_FormFieldValueNoTitle){
	width:100%;
	margin-bottom:10px;
	width:75%;
	float:right;
	margin-top:-1px;
	border-radius:3px;
	border-top-left-radius:0px;
	border-top-right-radius:0px;
	background-color:#f5f5f5;
}

.aMS_FormPanel .aMS_FormFieldValue.aMS_Label,
#aMI_LoginPanel .aMS_FormFieldValue.aMS_Label{
	text-align:center;
	background-color:white;
	border:1px solid #999;
	color:#666;
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
}

.aMS_FormPanel #aMI_ConfirmButton,
#aMI_LoginPanel #aMI_ConfirmButton{
	width:50%;
	float:left;
	margin-top:40px;
	margin-right:10px;
}

.aMS_FormFieldValue.aMS_Checkbox{
	margin-bottom: 43px;
	cursor:pointer;
}

.aMS_Checkbox .aMS_Check{
	width:40px;
	height:40px;
	position:absolute;
	margin-top: 2px;
	right:0px;
}

.aMS_Checkbox .aMS_Check.aMS_Checked{
	background-image:url(SvgLoader/check_check.ffffff00.79b83bff.79b83bff.svg);
}

.aMS_Checkbox .aMS_Check.aMS_Unchecked{
	background-image:url(SvgLoader/check_dot.ffffff00.79b83bff.ffffff00.svg);
}

#aMI_LoginPanel #aMI_ChangePasswordButton{
	position:relative;
	float:left;
	width:50%;
	margin-top: 10px;
}

.aMS_ImageUpload{
	height:100px;
	position:relative;
	display: block;
	display:-webkit-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	overflow:hidden;
	border: 1px solid #999;
}

.aMS_ImageUpload.aMS_NoPhoto:before{
	content:'';
	height:100%;
	width:100%;
	position:absolute;
	background-image:url(Pictures/icons/picture_icon.png);
	background-size:auto 100px;
	background-position:center;
	background-repeat:no-repeat;
	opacity:0.1;
	z-index: -1;
}

.aMS_ImageUpload .aMS_Title{
	font-size:17px;
	color:#666;
	position:absolute;
	width:100%;
	height:100%;
	display: block;
	display:-webkit-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.aMS_ImageUpload .aMS_Upload{
	width:100%;
	height:100%;
	position:absolute;
	top:0px;
	left:0px;
	color:transparent;
	opacity:0;
	cursor:pointer;
}

.aMS_ImageUpload .aMS_ScreenContentInnerElement{
	height:100%;
	width:100%;
}

.aMS_ImageUpload .aMS_Preview{
	max-height:100%;
	max-width:100%;
	cursor:pointer;
	margin:0 auto;
}

#aMI_LoginPanel #aMI_AllowMarketingListBox,
#aMI_LoginPanel #aMI_AllowMarketingCheckBox,
#aMI_LoginPanel #aMI_AllowMarketingTitle{
	margin-left: 10%;
	width: 90%;
	font-size: 16px;
}

#aMI_LoginPanel #aMI_AllowMarketingTitle,
#aMI_LoginPanel #aMI_AllowMarketingCheckBox{
	margin-top:20px;
}

#aMI_LoginPanel #aMI_AllowMarketingCheckBox .aMS_Check{
	width:35px;
	height:35px;
	background-size:35px 35px;
}

#aMI_LoginPanel #aMI_AllowMarketingListBox{
	width:20%;
	margin-left:50%;
}

.aMS_OrderFormScreen .aMS_FormFieldAddress.aMS_FormFieldValue{
	padding-top:5px;
}

.aMS_OrderFormScreen .aMS_FormFieldAddress.aMS_FormFieldValue .aMS_Label{
	margin-left:5px;
	margin-bottom:5px;
	font-size: 18px;
	font-weight:bold;
}

.aMS_OrderFormScreen .aMS_FormFieldAddress.aMS_FormFieldValue .aMS_Label:before{
	content:'';
	width:15px;
	height:23px;
	background-size:15px 23px;
	margin-right:5px;
	float:left;
	background-image:url(https://lh3.googleusercontent.com/WpEDf_RvT2aiOr9c6dz-pIbvWv2oJIubK7FfD6-O9c1fZ0XefBIdXBGtK5JNwN2h6-9VfdON-br9AUSSaun1);
}

.aMS_OrderFormScreen .aMS_FormFieldAddress .aMS_Button{
	float:right;
	margin-right:5px;
	margin-bottom:5px;
}

.aMS_OrderFormScreen #aMI_ScreenContent .aMS_ButtonAddField.aMS_Button,
.aMS_OrderFormScreen #aMI_ScreenContent .aMS_ButtonRemoveField.aMS_Button{
	float:left;
	width: 25px;
    height: 25px;
    padding:0px;
    min-width: 0px;
    min-height: 0px;
    margin-top:5px;
    margin-right:5px;
}

/*** External_LoginButtons ***/

#aMI_ScreenContent .aMS_Button.aMS_LoginButton_Facebook{
	background: #4166a1;
	background-image: url(/Pictures/icons/facebookLogin.png);
	background-image: url(/Pictures/icons/facebookLogin.png), -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4166a1), color-stop(100%,#32528b));
	background-image: url(/Pictures/icons/facebookLogin.png), -webkit-linear-gradient(top,  #4166a1 0%,#32528b 100%);
	background-image: url(/Pictures/icons/facebookLogin.png), -o-linear-gradient(top,  #4166a1 0%,#32528b 100%);
	background-image: url(/Pictures/icons/facebookLogin.png), -webkit-gradient(linear,  left top, left bottom,  from(#4166a1),to(#32528b));
	background-image: url(/Pictures/icons/facebookLogin.png), linear-gradient(to bottom,  #4166a1 0%,#32528b 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4166a1', endColorstr='#32528b',GradientType=0 );
	width:75%;
	height: 45px;
	margin-bottom: 5px;
	border-radius: 4px;
	color:white;
	font-size: 0.8em;
	border:none;
	border-top: solid rgb(112,141,185) 1px;
	-webkit-box-shadow: 0px 0px 0px 1px rgba(50,80,133,1);
	box-shadow: 0px 0px 0px 1px rgba(50,80,133,1);
	font-weight: bold;
	background-repeat: no-repeat;
	background-size: 51px 45px;
	padding-left: 51px;
	text-shadow: 0px 2px 1px rgba(27, 43, 71, 1);
	outline: none;
	margin-left:12.5%;
}

#aMI_ScreenContent .aMS_Button.aMS_LoginButton_Google{
	width:75%;
	height: 45px;
	margin-bottom: 5px;
	border-radius: 4px;
	color:white;
	font-size: 0.8em;
	border:none;
	font-weight: bold;
	padding-left: 51px;
	outline: none;
	margin-left:12.5%;
	background: #ffffff; /* Old browsers */
	background-image: url(/Pictures/icons/googleLogin.png?);
	color:black;
	font-size: 0.8em;
	border:none;
	border-bottom: solid rgb(62, 62, 62) 1px;
	-webkit-box-shadow: 0px 0px 0px 1px rgb(255, 255, 255);
	-moz-box-shadow: 0px 0px 0px 1px rgb(255, 255, 255);
	box-shadow: 0px 0px 0px 1px rgb(210, 210, 210);
	font-weight: bold;
	background-repeat: no-repeat;
	background-size: 51px 45px;
	padding-left: 51px;
	text-shadow: none;
	outline: none;	
}


#aMI_ScreenContent .aMS_Button.aMS_LoginButton_LinkedIn{
	background: #4e83b8;
	background-image: url(/Pictures/icons/linkedinLogin.png);
	background-image: url(/Pictures/icons/linkedinLogin.png), -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4e83b8), color-stop(100%,#3d6aa6));
	background-image: url(/Pictures/icons/linkedinLogin.png), -webkit-linear-gradient(top,  #4e83b8 0%,#3d6aa6 100%);
	background-image: url(/Pictures/icons/linkedinLogin.png), -o-linear-gradient(top,  #4e83b8 0%,#3d6aa6 100%);
	background-image: url(/Pictures/icons/linkedinLogin.png), -webkit-gradient(linear,  left top, left bottom,  from(#4e83b8),to(#3d6aa6));
	background-image: url(/Pictures/icons/linkedinLogin.png), linear-gradient(to bottom,  #4e83b8 0%,#3d6aa6 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4e83b8', endColorstr='#3d6aa6',GradientType=0 );
	width:75%;
	height: 45px;
	margin-bottom: 4px;
	border-radius: 4px;
	color:white;
	font-size: 0.8em;
	border:none;
	border-top: solid rgb(123,163,202) 1px;
	-webkit-box-shadow: 0px 0px 0px 1px rgba(52,89,132,1);
	box-shadow: 0px 0px 0px 1px rgba(52,89,132,1);
	font-weight: bold;
	background-repeat: no-repeat;
	background-size: 51px 45px;
	padding-left: 51px;
	text-shadow: 0px 2px 1px rgba(37, 69, 100, 1);
	outline: none;
	margin-left:12.5%;
}

#aMI_ScreenContent .aMS_Button.aMS_LoginButton_CustomOAuth{
	background: #e2e2e2;
	background-image: url(/Pictures/icons/googleLogin.png);
	background-image: url(/Pictures/icons/googleLogin.png), -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c7c7c7), color-stop(100%,#afafaf));
	background-image: url(/Pictures/icons/googleLogin.png), -webkit-linear-gradient(top,  #c7c7c7 0%,#afafaf 100%);
	background-image: url(/Pictures/icons/googleLogin.png), -o-linear-gradient(top,  #c7c7c7 0%,#afafaf 100%);
	background-image: url(/Pictures/icons/googleLogin.png), -webkit-gradient(linear,  left top, left bottom,  from(#c7c7c7),to(#afafaf));
	background-image: url(/Pictures/icons/googleLogin.png), linear-gradient(to bottom,  #c7c7c7 0%,#afafaf 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c7c7c7', endColorstr='#afafaf',GradientType=0 );
	width:75%;
	height: 45px;
	margin-bottom: 5px;
	border-radius: 4px;
	color:white;
	font-size: 0.8em;
	border:none;
	border-top: solid rgb(255, 255, 255) 1px;
	-webkit-box-shadow: 0px 0px 0px 1px rgb(115, 115, 115);
	box-shadow: 0px 0px 0px 1px rgb(115, 115, 115);
	font-weight: bold;
	background-repeat: no-repeat;
	background-size: 51px 45px;
	padding-left: 51px;
	text-shadow: 0px 2px 1px rgb(60, 60, 60);
	outline: none;
	margin-left:12.5%;
}

/*****************************************************************/
/* AskAddressPanel & AddressLocationPanel */
/*****************************************************************/

#aMI_AskAddressPanel{
	width:50%;
	background-color: white;
	padding: 1.6vw;
	border-radius: 2px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	display: block;
}

#aMI_AskAddressPanel .aMS_Button:nth-of-type(3){
	margin-right:4%;
	width: 100%;
	height: 40px!important;
}

#aMI_AskAddressPanel .aMS_Button{
	float:left;
	width:48%;
	margin-top:4%;
	height:55px;
	overflow: hidden;
	font-size: 15px;
}

.aMS_AddressLocationScreen #aMI_AskAddressPanel .aMS_Button{
	height: 80px;
}

.aMS_AddressLocationScreen .aMS_FormPanel .aMS_Button{
	width:48%;
	margin-top:40px;
	height:80px;
}

.aMS_AddressLocationScreen .aMS_FormPanel #aMI_ConfirmButton{
	margin-right:4%;
	width:48%;
}

#aMI_AskAddressPanel #aMI_SelectButton{
	margin-right:4%;
}

.aMS_AddressLine{
	float:left;
	width:100%;
	border-bottom:1px solid #999;
	font-size:20px;
	margin-bottom:20px;
	cursor:pointer;
}

.aMS_AddressLine .aMS_AddressValue{
	width:calc(100% - 40px);
	float:left;
}

.aMS_AddressLine .aMS_AddressValue .aMS_Label{
	float:left;
	width:auto;
	height:25px;
	line-height:25px;
}

.aMS_AddressLine .aMS_AddressValue .aMS_Label:after{
	content:',\00a0';
}

.aMS_AddressLine .aMS_AddressValue .aMS_Label:first-child{
	margin-top:-3px;
}


.aMS_AddressLine .aMS_AddressValue .aMS_Label:last-child:after{
	content:'';
}

.aMS_AddressLine .aMS_Check{
	float:right;
	width:35px;
	height:35px;
	background-size:35px 35px;
}

.aMS_AddressLine .aMS_Check.aMS_Unchecked{
	background-image:url(SvgLoader/check_dot.ffffff00.eb6741ff.ffffff00.svg);
}

.aMS_AddressLine .aMS_Check.aMS_Dotted{
	background-image:url(SvgLoader/check_dot.ffffff00.eb6741ff.eb6741ff.svg);
}

.aMS_LocationHelper{
	float:left;
	width:100%;
	font-size:20px;
	margin-top:20px;
	text-align:center;
	background-color:#f5f5f5;
	border-radius:3px;
	border:1px solid #999;
}

/*****************************************************************/
/* BookingPanel */
/*****************************************************************/

#aMI_BookingPanel{
	width:50%;
	float:left;
	position:relative;
	background-color:white;
	padding:1.6vw;
	border-radius: 2px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	display:block;
}

.aMS_AddressLocationScreen #aMI_BookingPanel{
	float:left;
	position:relative;
	width:100%;
	margin-top:20px;
	margin-bottom:20px;
	padding:0px;
	border-radius:0px;
}

#aMI_BookingPanel.aMS_HasDuration > .aMS_Title{
	color: black;
	border-bottom: 1px solid #999;
}

#aMI_BookingPanel .aMS_Title{
	width: 90%;
	font-size:25px;
	font-weight: bold;
	float:left;
	position:relative;
}

#aMI_BookingPanel .aMS_BookingPanelOption{
	width:100%;
	float:left;
	position:relative;
}

#aMI_BookingPanel.aMS_HasDuration .aMS_BookingPanelOption:nth-child(2){
	margin-bottom:25px;
}

#aMI_BookingPanel .aMS_BookingPanelOption .aMS_Title{
	font-size:20px;
	border-bottom:1px solid #999;
	margin-top:10px;
}

#aMI_BookingPanel .aMS_BookingPanelOption .aMS_Check{
	width:35px;
	height:35px;
	position:absolute;
	bottom:0px;
	right:0px;
	background-image:url(SvgLoader/check_dot.ffffff00.eb6741ff.ffffff00.svg);
	background-size:100%;
}

#aMI_BookingPanel .aMS_BookingPanelOption .aMS_Dotted{
	background-image:url(SvgLoader/check_dot.ffffff00.eb6741ff.eb6741ff.svg);
}

#aMI_BookingPanel .aMS_FormPanel{
	border:none;
	padding:0px;
	width:100%;
	margin-top:10px;
	padding-left:30px;
}

.aMS_AddressLocationScreen #aMI_BookingPanel .aMS_FormPanel select:disabled{
  background:white;
  color:transparent;
  background-image:url(https://i.giphy.com/media/sSgvbe1m3n93G/giphy-downsized.gif);
  background-size:25px 25px;
  background-position:center;
  background-repeat:no-repeat;
}

.aMS_BookingScreen #aMI_BookingPanel .aMS_FormPanel{
	padding:0px;
}

.aMS_BookingScreen #aMI_BookingPanel.aMS_HasDuration .aMS_FormPanel{
	padding-left:10%;
}

#aMI_BookingPanel #aMI_ConfirmButton{
	width:50%;
	float:left;
	position:relative;
	margin-top:20px;
}

/*****************************************************************/
/* PaymentMethods */
/*****************************************************************/

#aMI_PaymentMethodsPanel{
	width:50%;
	float:left;
	background-color: white;
	border-radius: 2px;
	padding: 1.6vw;
	display:block;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

#aMI_PaymentMethodsPanel .aMS_PaymentMethod{
	float:left;
	position:relative;
	width:100%;
	height:70px;
	margin-bottom:10px;
	border-bottom:1px solid #999;
	cursor:pointer;	
}

#aMI_PaymentMethodsPanel .aMS_PaymentMethod .aMS_Title{
	position:absolute;
	font-size:25px;
	left:110px;
	width:calc(100% - 155px);
	height:100%;
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

#aMI_PaymentMethodsPanel .aMS_PaymentMethod .aMS_Photo{
	max-height:50px;
	max-width:100px;
	position:absolute;
	margin-top:10px;
}

#aMI_PaymentMethodsPanel .aMS_PaymentMethod .aMS_Check{
	position:absolute;
	width:35px;
	height:35px;
	right:0px;
	top:15px;
}

#aMI_PaymentMethodsPanel .aMS_PaymentMethod .aMS_Dotted{
	background-image:url(SvgLoader/check_dot.ffffff00.eb6741ff.eb6741ff.svg);
}

#aMI_PaymentMethodsPanel .aMS_PaymentMethod .aMS_Unchecked{
	background-image:url(SvgLoader/check_dot.ffffff00.eb6741ff.ffffff00.svg);
}

#aMI_PaymentMethodsPanel #aMI_SelectButton{
	width:50%;
	margin-top:10px;
}

#aMI_PaymentIFrame{
	width:100vw;
	height:calc(100vh - 50px);
	position:fixed;
	top:50px;
	left:0px;
	border: none;
	background-color: white;
}

.aMS_PaymentIFrameScreen #aMI_OrderButton,
.aMS_PaymentIFrameScreen #aMI_OptionsButton{
	display:none;
}

/*****************************************************************/
/* UserDetails & SearchUser */
/*****************************************************************/

.aMS_UserDetailsScreen .aMS_FormPanel{
	margin-left:1px;
	margin-right:1px;
	margin-bottom:30px;
}

.aMS_UserDetailsScreen #aMI_AskAddressPanel{
	margin-left:1px;
	margin-right:1px;
	margin-bottom:30px;
}

.aMS_UserDetailsScreen #aMI_BookingPanel{
	margin-bottom:30px;
}

.aMS_UserDetailsScreen #aMI_AskAddressPanel #aMI_CreateButton{
	margin-right:4%;
}

.aMS_UserDetailsScreen #aMI_SaveButton{
	float:left;
	width:50%;
}

#aMI_SearchUserPanel .aMS_Suggestions{
	float:left;
	width:100%;
	margin-top:30px;
	border:1px solid #999;
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
	overflow:hidden;
	border-radius:3px;
}

#aMI_SearchUserPanel .aMS_Suggestion{
	width:100%;
	border-bottom:1px solid #e3e3e3;
	text-align:center;
	font-size:20px;
	cursor:pointer;
}

#aMI_SearchUserPanel .aMS_Suggestion:hover{
	background-color:#e3e3e3;
}

#aMI_SearchUserPanel .aMS_Suggestion:last-child{
	border-bottom:none;
}

/*****************************************************************/
/* OrderHistoryPanel */
/*****************************************************************/

#aMI_ScreenContent #aMI_OrderHistoryPanel .aMS_ScreenContentElement{
	height:auto;
	padding: 1.6vw;
	padding-bottom:calc(1.6vw + 40px);
	cursor: default;
	width:31%;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_TitleTitle{
	font-size:20px;
	font-weight:bold;
	color:#79b83b;
	float:left;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_Title{
	color:red;
	font-size:30px;
	font-weight:bold;
	float:left;
	margin-left:5px;
	margin-top:-10px;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_Date{
	color:#666;
	font-size:20px;
	float:left;
	width:100%
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_Price{
	position:absolute;
	top:-5px;
	right:-5px;
	width:60px;
	height:60px;
	font-size:20px;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_HistoryOrderItem{
	float:left;
	width:100%;
	border-left:1px solid #e3e3e3;
	border-bottom:1px solid #e3e3e3;
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
	margin-bottom:10px;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_HistoryOrderItem:not(.aMS_TopItem){
	margin-left:10%;
	width:90%;
	border-left:none;
	border-bottom:none;
	margin-bottom:0px;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_HistoryOrderItem .aMS_Title{
	width:100%;
	background-color:#e3e3e3;
	color:#666;
	margin-left:0px;
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
	padding-left:5px;
	padding-right:5px;
	font-size:20px;
	margin-top:0px;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_HistoryOrderItem .aMS_Quantity{
	float:left;
	margin-left:5px;
	color:red;
	font-size:18px;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_HistoryOrderItem .aMS_Quantity:after{
	content:'x';
	color:black;
	margin-left:5px;
	margin-right:5px;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_HistoryOrderItem .aMS_Price{
	float:left;
	color:#79b83b;
	font-size:18px;
	-webkit-transform:none;
	    -ms-transform:none;
	        transform:none;
	width:auto;
	position:relative;
	border:none;
	border-radius:0px;
	background-color:transparent;
	text-shadow:none;
	width:auto;
	height:auto;
	top:0px;
	right:0px;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_HistoryOrderItem:not(.aMS_TopItem) .aMS_Title{
	font-size:18px;
	padding:0px;
	color:#666;
	background-color:transparent;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_PriceTitle{
	display:none;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement #aMI_AddButton{
	position:absolute;
	bottom:4%;
	left: 4%;
	width:92%;
}

/*** Order Timeline ***/

#aMI_ScreenContent #aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_ScreenContentInnerElement{
	padding-bottom: 0px;
	position:relative;
}

.aMS_OrderTimeline{
	float: left;
	width: 100%;
	margin-bottom:40px;
	margin-top:10px;
}

.aMS_OrderTimeline.aMS_Complete{
	display:none;
}

.aMS_OrderTimeline:before{
	content:" ";
	width:9px;
	height:9px;
	background-color: #666;
	position:absolute;
	left:calc(50% - 5px);
	top:-6px;
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
}

.aMS_OrderTimelineMilestone{
	width:calc(50% - 20px);
	float: left;
	height: 60px;
	margin-bottom: -20px;
	position:relative;
	border:1px solid #c5c5c5;
	border-radius:5px;
	background-color:#f3f3f3;
}

.aMS_OrderTimelineMilestone:nth-child(even){
	float: right;
	margin-left:50%;
}

.aMS_OrderTimelineMilestone:before,
.aMS_OrderTimelineMilestone:after{
	content:" ";
	width:0px;
	height:0px;
	background-color:transparent;
	position:absolute;
	left:calc(100% + 1px);
	bottom:10px;
	
	border-top:10px solid transparent;
	border-left:10px solid #c5c5c5;
	border-bottom:10px solid transparent;
}

.aMS_OrderTimelineMilestone:after{
	left:100%;
	border-left:10px solid #f3f3f3;
}

.aMS_OrderTimelineMilestone:nth-child(even):before,
.aMS_OrderTimelineMilestone:nth-child(even):after{
	left:-11px;
	border-top:10px solid transparent;
	border-right:10px solid #c5c5c5;
	border-left:none;
	border-bottom:10px solid transparent;
}

.aMS_OrderTimelineMilestone:nth-child(even):after{
	border-right:10px solid #f3f3f3;
	left:-10px;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_OrderTimelineMilestone .aMS_Title{
	color:#666;
	font-size:20px;
	position:absolute;
	width: calc(100% - 40px);
	top:0px;
	left:40px;
	margin:0px;
	height:60px;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_OrderTimelineMilestone.aMS_HasDate .aMS_Title{
	height:50px;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_OrderTimelineMilestone:nth-child(even) .aMS_Title{
	left:0px;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_OrderTimelineMilestone .aMS_Icon{
	width: 40px;
	height:40px;
	position:absolute;
	top:10px;
	left: 4px;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_OrderTimelineMilestone:nth-child(even) .aMS_Icon{
	left: calc(100% - 44px);
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_OrderTimelineMilestone .aMS_Date{
	position:absolute;
	bottom:-3px;
	left:40px;
	width:calc(100% - 40px);
	text-align:center;
	font-size:12px;
	height:auto;
	color:black;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_OrderTimelineMilestone:nth-child(even) .aMS_Date{
	left:0px;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_OrderTimelineMilestone .aMS_Title:before{
	content:" ";
	width:0px;
	height:33px;
	background-color:transparent;
	position:absolute;
	right:-20px;
	border-left:3px dashed #aaa;
	top:2px;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_OrderTimelineMilestone:nth-child(even) .aMS_Title:before{
	right:auto;
	left:-21px;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_OrderTimelineMilestone .aMS_Title:after{
	content:" ";
	background-color:transparent;
	width:9px;
	height:9px;
	border-radius:4.5px;
	position:absolute;
	right:-23px;
	top:35px;
	border:3px solid #aaa;
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_OrderTimelineMilestone:nth-child(even) .aMS_Title:after{
	right:auto;
	left:-24px;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_OrderTimelineMilestone.aMS_Done .aMS_Title:before{
	border-left:3px solid #666;
}

#aMI_OrderHistoryPanel .aMS_ScreenContentElement .aMS_OrderTimelineMilestone.aMS_Done .aMS_Title:after{
	border-color:#666;
	background-color:#666;
}

/*****************************************************************/
/* VouchersPanel */
/*****************************************************************/

.aMS_Voucher.aMS_Partial .aMS_ScreenContentInnerElement:before{
	content:'';
}

#aMI_VouchersPanel #aMI_ContinueButton{
	width:50%;
	height:auto;
	margin-left:25%;
	margin-right:25%;
	margin-bottom:50px;
}

.aMS_Voucher,
#aMI_VouchersPanel .aMS_RedeemCode{
	width:30%;
	height:auto;
	margin:1.5%;
	margin-top:1.3vw;
	margin-bottom:1.3vw;
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
	border:0.3vw solid white;
	border-radius:3px;
	position:relative;
	background-color:white;
	cursor:pointer;
}

.aMS_Voucher .aMS_ScreenContentInnerElement{
	padding-bottom:50%;
}



#aMI_VouchersPanel .aMS_RedeemCode:before{
	content:'';
	padding-bottom:50%;
	position:relative;
	float:left;
}

.aMS_Voucher{
	-ms-transform: rotate(-2deg);
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg); 
}

.aMS_Voucher:before{
	content:'';
	background-color:white;
	width:calc(100%  + 0.3vw);
	height:100%;
	position:absolute;
	top:0px;
	left:-0.3vw;
	border:0.3vw solid pink;
	border-left:none;
	border-radius:3px;
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
	z-index:-1;
}

.aMS_RedeemCode .aMS_Title{
	position:absolute;
	width:95%;
	left:2.5%;
	top:4%;
	font-size:2vw;
	text-align:center;
	text-shadow: 0px 0px 5px rgba(104, 104, 104, 1);
}

.aMS_RedeemCode .aMS_CodeInput{
	position:absolute;
	width:95%;
	left:2.5%;
	bottom:calc(8% + 40px);
}

.aMS_RedeemCode .aMS_ButtonPositive{
	position:absolute;
	bottom:4%;
	left:2.5%;
	width:95%;
}

.aMS_Voucher:after{
	content:'';
	position:absolute;
	width:0px;
	height:100%;
	left:-0.6vw;
	top:0px;
	border-left:0.5vw dotted white;
	z-index:-2;
}

.aMS_Voucher .aMS_Title{
	width:60%;
	height:40%;
	font-size:1.8vw;
	font-weight:bold;
	text-align:center;
	left:0px;
	top:0.3vw;
	z-index: 2;
	color:black;
	text-shadow: 0px 0px 5px rgba(104, 104, 104, 1);
	position:absolute;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	overflow:hidden;
	line-height:2.3vw;
}

.aMS_Voucher .aMS_ItemTitle,
.aMS_Voucher .aMS_Photo{
	position:absolute;
	right:0vw;
	top:0px;
	height:100%;
	width:40%;
	border-top-left-radius:80%;
	border-bottom-left-radius:80%;
	color:white;
	font-size:1.7vw;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-shadow: 0px 0px 5px rgba(104, 104, 104, 1);
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
    text-align:center;
    overflow:hidden;
    line-height:2.3vw;
}

.aMS_Voucher .aMS_Photo{
	padding:0px;
	-o-object-fit:cover;
	   object-fit:cover;
	z-index:-1;
}

.aMS_ScreenContentElement.aMS_Voucher .aMS_Description{
	position:absolute;
	width:58%;
	height:35%;
	left:0px;
	top:calc(40% + 0.6vw);
	overflow:hidden;
	line-height:1.4vw;
	text-align:center;
	color:black;
	font-size:1.2vw;
}


.aMS_ScreenContentElement.aMS_Voucher .aMS_AvailableValue,
.aMS_ScreenContentElement.aMS_Voucher .aMS_OfferedValue{
	position:absolute;
	bottom:0.8vw;
	right:85%;
	-ms-transform: none;
	-webkit-transform: none;
	transform: none;
	font-size:1.5vw;
	color:#79b83b;
}

.aMS_ScreenContentElement.aMS_Voucher .aMS_OfferedValue{
	left:15%;
}

.aMS_ScreenContentElement.aMS_Voucher .aMS_OfferedValue:before,
.aMS_ScreenContentElement.aMS_Voucher .aMS_OfferedValue:after{
	margin-right:5px;
	margin-left:5px;
	font-size:1.0vw;
	color:#666;
}

.aMS_Voucher.aMS_NoPhoto .aMS_Photo{
	display:none;
}

.aMS_Voucher .aMS_Validity{
	position:absolute;
	bottom:0px;
	left:0px;
	font-size:1vw;
	color:#666;
}

.aMS_Voucher .aMS_ScreenContentInnerElement:before,
.aMS_Voucher.aMS_Partial .aMS_ScreenContentInnerElement:before{
	top:-0.3vw;
	left:-0.3vw;
	width:calc(100% + 0.6vw);
	border-radius:3px;
}

.aMS_Voucher:active .aMS_ScreenContentInnerElement:before,
.aMS_Voucher.aMS_Partial .aMS_ScreenContentInnerElement:before{
	height:calc(100% + 0.6vw);
}

.aMS_Voucher .aMS_ScreenContentInnerElement:after{
	content:'';
	width:1.2vw;
	height:2vw;
	position:absolute;
	background-image:url(https://lh3.googleusercontent.com/y3b0eGb5rlh3765rgusNnMPpi9stF8u7iuGoCS19MWltCzRYtsSih0VD0cIdh-T6XLZwKiZawyx9rsZSe7Le=r90);
	left:-0.3vw;
	top:0.5vw;
	background-size:150% 100%;
	background-position:100% 0px;
}

.aMS_Voucher.aMS_NewVoucher .aMS_ScreenContentInnerElement:after{
	background-image:url(Pictures/Front_DeliveryTask/newDelivery.png);
	left:-0.6vw;
	top:-0.6vw;
	background-size:100% 100%;
	height:4vw;
	width:4vw;
}

.aMS_Voucher.aMS_Partial .aMS_Percentage{
	position:absolute;
	color:white;
	z-index:3;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size:4vw;
    text-shadow: 0px 0px 5px rgba(104, 104, 104, 1);
    -webkit-transition:opacity 0.3s ease;
    -o-transition:opacity 0.3s ease;
    transition:opacity 0.3s ease;
}

.aMS_Voucher.aMS_Partial .aMS_Percentage:before,
.aMS_Voucher.aMS_Partial .aMS_Percentage:after{
	content:'';
	height:7%;
	width:50%;
	position:absolute;
	border-radius:2px;
	top:70%;
	left:25%;
	background: rgb(255,104,104);
	background: -webkit-linear-gradient(top, rgba(255,104,104,1) 0%,rgba(255,0,0,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,104,104,1)),to(rgba(255,0,0,1)));
	background: -o-linear-gradient(top, rgba(255,104,104,1) 0%,rgba(255,0,0,1) 100%);
	background: linear-gradient(to bottom, rgba(255,104,104,1) 0%,rgba(255,0,0,1) 100%);
}

.aMS_Voucher.aMS_Partial .aMS_Percentage:after{
	width:0%;
	background: rgb(141,224,74);
	background: -webkit-linear-gradient(top, rgba(141,224,74,1) 0%,rgba(105,165,53,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(141,224,74,1)),to(rgba(105,165,53,1)));
	background: -o-linear-gradient(top, rgba(141,224,74,1) 0%,rgba(105,165,53,1) 100%);
	background: linear-gradient(to bottom, rgba(141,224,74,1) 0%,rgba(105,165,53,1) 100%);
}

.aMS_Voucher.aMS_Partial .aMS_Title:after{
	content:'i';
	position:absolute;
	left:0.6vw;
	top:0px;
	background-color:white;
	width:2.4vw;
	height:2.4vw;
	border-radius:2vw;
	border:0.2vw solid black;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	font-size:1.8vw;
	-webkit-transition:opacity 0.3s ease;
	-o-transition:opacity 0.3s ease;
	transition:opacity 0.3s ease;
}

.aMS_Voucher.aMS_Partial .aMS_PromoDescription,
.aMS_Voucher.aMS_Partial .aMS_SharedCodeTitle,
.aMS_Voucher.aMS_Partial .aMS_SharedCode{
	color:white;
	z-index:3;
	position:absolute;
	width:100%;
	height:60%;
	top:20%;
	font-size:1.4vw;
	overflow:hidden;
	text-align:center;
	opacity:0;
	text-shadow: 0px 0px 5px rgba(104, 104, 104, 1);
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition:opacity 0.3s ease;
    -o-transition:opacity 0.3s ease;
    transition:opacity 0.3s ease;
}

.aMS_Voucher.aMS_Partial .aMS_SharedCodeTitle{
	display:block;
	width:50%;
	height:20%;
	top:0px;
	top:auto;
	bottom:0px;
	text-align:right;
	font-size:1.2vw;
	line-height:2.6vw;
	background-color:black;
}

.aMS_Voucher.aMS_Partial .aMS_SharedCode{
	padding-left:5px;
	display:block;
	width:50%;
	height:20%;
	top:auto;
	bottom:0px;
	right:0px;
	text-align:left;
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
	font-size:1.8vw;
	line-height:2.5vw;
	color:#79b83b;
	background-color:black;
}

.aMS_Voucher.aMS_Partial:hover .aMS_Percentage,
.aMS_Voucher.aMS_Partial:hover .aMS_Title:after{
	opacity:0;
}

.aMS_Voucher.aMS_Partial:hover .aMS_PromoDescription,
.aMS_Voucher.aMS_Partial:hover .aMS_SharedCodeTitle,
.aMS_Voucher.aMS_Partial:hover .aMS_SharedCode{
	opacity:1;
}

.aMS_Voucher.aMS_Partial_10 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_11 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_12 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_13 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_14 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_15 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_16 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_17 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_18 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_19 .aMS_Percentage:after{
	width:5%;
}

.aMS_Voucher.aMS_Partial_20 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_21 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_22 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_23 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_24 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_25 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_26 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_27 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_28 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_29 .aMS_Percentage:after{
	width:10%;
}

.aMS_Voucher.aMS_Partial_30 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_31 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_32 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_33 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_34 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_35 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_36 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_37 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_38 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_39 .aMS_Percentage:after{
	width:15%;
}

.aMS_Voucher.aMS_Partial_40 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_41 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_42 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_43 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_44 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_45 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_46 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_47 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_48 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_49 .aMS_Percentage:after{
	width:20%;
}

.aMS_Voucher.aMS_Partial_50 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_51 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_52 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_53 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_54 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_55 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_56 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_57 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_58 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_59 .aMS_Percentage:after{
	width:25%;
}

.aMS_Voucher.aMS_Partial_60 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_61 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_62 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_63 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_64 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_65 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_66 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_67 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_68 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_69 .aMS_Percentage:after{
	width:30%;
}

.aMS_Voucher.aMS_Partial_70 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_71 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_72 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_73 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_74 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_75 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_76 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_77 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_78 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_79 .aMS_Percentage:after{
	width:35%;
}

.aMS_Voucher.aMS_Partial_80 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_81 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_82 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_83 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_84 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_85 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_86 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_87 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_88 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_89 .aMS_Percentage:after{
	width:40%;
}

.aMS_Voucher.aMS_Partial_90 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_91 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_92 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_93 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_94 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_95 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_96 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_97 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_98 .aMS_Percentage:after,
.aMS_Voucher.aMS_Partial_99 .aMS_Percentage:after{
	width:45%;
}

.aMS_Voucher.aMS_Partial_100 .aMS_Percentage:after{
	width:50%;
}

/*****************************************************************/
/* Hover */
/*****************************************************************/

.no-touchevents #aMI_ScreenContent .aMS_Button.aMS_ButtonNegative:hover,
.no-touchevents #aMI_OrderListContent .aMS_Button.aMS_ButtonNegative:hover,
.no-touchevents .aMS_PopupContent .aMS_Button.aMS_ButtonNegative:hover,
.no-touchevents #aMI_OptionsContent .aMS_Button.aMS_ButtonNegative:hover{
	background: rgb(255,104,104);
}

.no-touchevents > :not(.aMS_LoginScreen) #aMI_ScreenContent > :not(.aMI_LoginPanel) .aMS_Button:hover,
.no-touchevents #aMI_OrderListContent .aMS_Button:hover,
.no-touchevents .aMS_PopupContent .aMS_Button:hover,
.no-touchevents #aMI_OptionsContent .aMS_Button:hover
{
	background: rgb(224, 121, 91);
}


.no-touchevents #aMI_Header .aMS_Button:hover{
	background-color: #ea7351;
	-webkit-animation-name: HeaderButtonAnimation;
	animation-name: HeaderButtonAnimation;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	border-bottom: 1px solid white;
}

.no-touchevents #aMI_Header #aMI_BackButton:hover:before,
.no-touchevents #aMI_Header #aMI_NextButton:hover:after{
	-webkit-animation-name: AnimationArrow;
	        animation-name: AnimationArrow;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	        animation-timing-function: linear;
}

.no-touchevents .aMS_MenuElement:hover:before,
.no-touchevents .aMS_ChooseDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement:hover:before,
.no-touchevents .aMS_ChooseParentDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement:hover:before,
.no-touchevents .aMS_ChoosePositionDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement:hover:before,
.no-touchevents #aMI_ScreenContent #aMI_CulturesPanel .aMS_ScreenContentElement:hover:before,
.no-touchevents .aMS_Voucher:hover .aMS_ScreenContentInnerElement:before{
	height:100%;
	/* background-color: #eb6741!important; */
}

.no-touchevents #aMI_HeaderMenuContent .aMS_ScreenContentElement:hover .aMS_Title,
.no-touchevents #aMI_HeaderMenuContent .aMS_InnerOptionWrapper:hover .aMS_Button
{
	color: #eb6741;
	text-shadow:none;
	/* border: 3px solid white; */
}

.no-touchevents .aMS_Voucher:hover .aMS_ScreenContentInnerElement:before{
	height:calc(100% + 0.6vw);
}

.no-touchevents #aMI_HeaderMenuContent .aMS_ScreenContentElement:hover .aMS_Title{
	color:white;
	background-color:#ea7351;
	border-bottom: 1px solid white;
	border-radius:3px;
}

/*****************************************************************/
/* MenuSearch */
/*****************************************************************/

#aMI_MenuPanel .aMS_SearchBox{
	width:15%;
	position: fixed;
	top:8px;
	right: 42.5%;
	z-index:5;
}

.aMS_WaitScreen #aMI_MenuPanel .aMS_SearchBox{
	display:none;
}

.aMS_SearchMenuStatus{
	font-size:25px;
	margin-top:20px;
}

#aMI_MenuSearchPanel{
	margin-top:50px;
}

#aMI_MenuSearchPanel .aMS_SearchBox{
	width:calc(15% + 30px);
	position:absolute;
	z-index:10;
	right:0%;
	top:-172px;
	-webkit-animation-name: SearchBoxAnimation;
	        animation-name: SearchBoxAnimation;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s; 
}

.aMS_HasHeaderMenu #aMI_MenuSearchPanel .aMS_SearchBox{
	-webkit-animation-name: SearchBoxAnimationWHeader;
	      	animation-name: SearchBoxAnimationWHeader;
}

@keyframes SearchBoxAnimation {
	from{
		width:calc(15% + 30px);
		right:0%;
		top:-172px;
	}
	to{
		width:50%;
		right:25%;
		top:0px;
		z-index:auto;
	}
}

@-webkit-keyframes SearchBoxAnimation {
	from{
		width:calc(15% + 30px);
		right:0%;
		top:-172px;
	}
	to{
		width:50%;
		right:25%;
		top:0px;
		z-index:auto;
	}
}

@keyframes SearchBoxAnimationWHeader {
	from{
		width:calc(15% + 30px);
		right:0%;
		top:-227px;
	}
	to{		
		width:50%;
		right:25%;
		top:0px;
		z-index:auto;
	}
}

@-webkit-keyframes SearchBoxAnimationWHeader {
	from{
		width:calc(15% + 30px);
		right:0%;
		top:-227px;
	}
	to{
		width:50%;
		right:25%;
		top:0px;
		z-index:auto;
	}
}

.aMS_SearchBox .aMS_TextBox{
	width:100%;
}

.aMS_SearchBox:after{
	content:' ';
	width:30px;
	height:30px;
	position:absolute;
	right:0px;
	background-image:url(https://lh3.googleusercontent.com/ZaA3f6BNOqDU0Q2sWP6wZbojHo_DI90VUQQklbLeGsnXFXBEbPOp1-jksGLib16WtGj1PFCck2i0oNiGxSwp);
	background-size:28px 28px;
	background-position:0px 2px;
}

/*****************************************************************/
/* Stock status
/*****************************************************************/

.aMS_HasStock .aMS_StockMax,
.aMS_HasStock .aMS_StockAvailable{
	position:absolute;
	z-index:1;
	width:10%;
	color:#666;
}

.aMS_InnerComplexItemPanel .aMS_ModifierItem.aMS_HasStock .aMS_StockMax,
.aMS_InnerComplexItemPanel .aMS_ModifierItem.aMS_HasStock .aMS_StockAvailable,
#aMI_OrderListPanel .aMS_ModifierItem.aMS_HasStock .aMS_StockMax,
#aMI_OrderListPanel .aMS_ModifierItem.aMS_HasStock .aMS_StockAvailable{
	display:none;
}

.aMS_ModifierItem.aMS_HasStock .aMS_StockMax,
.aMS_ModifierItem.aMS_HasStock .aMS_StockAvailable{
	width:5%;
}

#aMI_ComplexWizardPanel .aMS_Item.aMS_HasStock .aMS_StockMax,
#aMI_ComplexWizardPanel .aMS_Item.aMS_HasStock .aMS_StockAvailable{
	width:5%;
}

.aMS_Item.aMS_HasStock .aMS_StockMax,
.aMS_Item.aMS_HasStock .aMS_StockAvailable,
.aMS_ComplexItem.aMS_HasStock .aMS_StockMax,
.aMS_ComplexItem.aMS_HasStock .aMS_StockAvailable{
	font-size: 1.2vw;
}

.aMS_ModifierItem.aMS_HasStock .aMS_StockMax,
.aMS_ModifierItem.aMS_HasStock .aMS_StockAvailable{
	font-size: 1vw;
}


.aMS_ModifierItem.aMS_HasStock .aMS_StockMax,
.aMS_ModifierItem.aMS_HasStock .aMS_StockAvailable,
#aMI_ComplexWizardPanel .aMS_Item.aMS_HasStock .aMS_StockMax,
#aMI_ComplexWizardPanel .aMS_Item.aMS_HasStock .aMS_StockAvailable{
	bottom:0px;
	color:white;
}

.aMS_HasStock .aMS_StockMax{
	left:0%;
	padding-left:33%;
	padding-right:6px;
	background-color:white;
	border-bottom-right-radius:3px;
}

.aMS_ModifierItem.aMS_HasStock .aMS_StockMax{
	padding-left:20%;
}

#aMI_ComplexWizardPanel .aMS_Item.aMS_HasStock .aMS_StockMax{
	padding-left:20%;
}

.aMS_ModifierItem.aMS_HasStock .aMS_StockMax{
	background-color:#999;
	border-bottom-right-radius:0px;
	border-top-right-radius:3px;
}

#aMI_ComplexWizardPanel .aMS_Item.aMS_HasStock .aMS_StockMax{
	background-color:#999;
	border-bottom-right-radius:0px;
	border-top-left-radius:3px;
}

#aMI_ComplexWizardPanel .aMS_Item.aMS_HasStock .aMS_StockMax{
	left: calc(75% - 6px);
}

.aMS_ScreenInnerContent .aMS_ModifierItem.aMS_HasStock{
	padding-bottom: 6%;
}

.aMS_InnerComplexItemPanel .aMS_ModifierItem.aMS_HasStock,
#aMI_OrderListPanel .aMS_ModifierItem.aMS_HasStock{
	padding-bottom: 0px;
}

.aMS_HasStock .aMS_StockAvailable{
	right:70%;
	text-align:right;
}

.aMS_ModifierItem.aMS_HasStock .aMS_StockAvailable{
	right:82%;
}

#aMI_ComplexWizardPanel .aMS_Item.aMS_HasStock .aMS_StockAvailable{
	right:8%;
}

.aMS_HasStock .aMS_StockAvailable:after{
	content:'/';
	position:absolute;
	width:30%;
	text-align:center;
}

.aMS_HasStock .aMS_StockAvailable:before{
	content:'Stock:';
	position:absolute;
	width:200%;
	right:100%;
}

.aMS_HasStock .aMS_StockMax:before,
.aMS_HasStock .aMS_StockMax:after{
	content:'';
	background-color:red;
	position:absolute;
	width:3px;
	height:calc(100% - 6px);
	right:3px;
	bottom:3px;
}

.aMS_HasStock .aMS_StockMax:after{
	background-color:#79b83b;
}

.aMS_HasStock.aMS_Stock_0 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_1 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_2 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_3 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_4 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_5 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_6 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_7 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_8 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_9 .aMS_StockMax:after{
	height:calc(0 * (100% - 6px));
}

.aMS_HasStock.aMS_Stock_10 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_11 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_12 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_13 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_14 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_15 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_16 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_17 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_18 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_19 .aMS_StockMax:after{
	height:calc(0.1 * (100% - 6px));
}

.aMS_HasStock.aMS_Stock_20 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_21 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_22 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_23 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_24 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_25 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_26 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_27 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_28 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_29 .aMS_StockMax:after{
	height:calc(0.2 * (100% - 6px));
}

.aMS_HasStock.aMS_Stock_30 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_31 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_32 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_33 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_34 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_35 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_36 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_37 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_38 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_39 .aMS_StockMax:after{
	height:calc(0.3 * (100% - 6px));
}

.aMS_HasStock.aMS_Stock_40 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_41 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_42 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_43 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_44 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_45 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_46 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_47 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_48 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_49 .aMS_StockMax:after{
	height:calc(0.4 * (100% - 6px));
}

.aMS_HasStock.aMS_Stock_50 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_51 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_52 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_53 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_54 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_55 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_56 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_57 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_58 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_59 .aMS_StockMax:after{
	height:calc(0.5 * (100% - 6px));
}

.aMS_HasStock.aMS_Stock_60 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_61 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_62 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_63 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_64 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_65 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_66 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_67 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_68 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_69 .aMS_StockMax:after{
	height:calc(0.6 * (100% - 6px));
}

.aMS_HasStock.aMS_Stock_70 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_71 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_72 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_73 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_74 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_75 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_76 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_77 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_78 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_79 .aMS_StockMax:after{
	height:calc(0.7 * (100% - 6px));
}

.aMS_HasStock.aMS_Stock_80 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_81 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_82 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_83 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_84 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_85 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_86 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_87 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_88 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_89 .aMS_StockMax:after{
	height:calc(0.8 * (100% - 6px));
}

.aMS_HasStock.aMS_Stock_90 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_91 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_92 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_93 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_94 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_95 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_96 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_97 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_98 .aMS_StockMax:after, .aMS_HasStock.aMS_Stock_99 .aMS_StockMax:after{
	height:calc(0.9 * (100% - 6px));
}

.aMS_HasStock.aMS_Stock_100 .aMS_StockMax:after{
	height:calc(1 * (100% - 6px));
}

.aMS_MenuElement.aMS_HasStock.aMS_Stock_SoldOut:before{
	height:100%;
}

.aMS_MenuElement.aMS_HasStock.aMS_Stock_SoldOut{
	cursor:default;
}

.aMS_ModifierItem.aMS_HasStock.aMS_Stock_SoldOut:before{
	height:100%;
	width:100%;
	background-color:rgba(0, 0, 0, 0.75);
	position:absolute;
	top:0px;
	left:0px;
	z-index:3;
	color:white;
	text-align:center;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/*****************************************************************/
/* Payment clients
/*****************************************************************/

.aMS_PaymentMethod_BlockchainBitcoin #aMI_MainPanel .aMS_FormFieldValue_transferStatus,
.aMS_PaymentMethod_MBWay #aMI_MainPanel .aMS_FormFieldValue_transferStatus{
	background-image:url(https://i.giphy.com/media/sSgvbe1m3n93G/giphy-downsized.gif);
	background-size:20px 20px;
	background-position:2px 2px;
	background-repeat:no-repeat;
}

.aMS_PaymentMethod_BlockchainBitcoin #aMI_MainPanel .aMS_FormFieldValue_transferStatus.aMS_TransferDone, 
.aMS_PaymentMethod_MBWay #aMI_MainPanel .aMS_FormFieldValue_transferStatus.aMS_TransferDone{
	color:black;
	background-size:25px 25px;
	background-position:-5px 2px;
	background-image:url(SvgLoader/check_check.ffffff00.ffffff00.79b83bff.svg);
}

/*** BlockchainBitcoin ***/

.aMS_PaymentMethod_BlockchainBitcoin #aMI_MainPanel #aMI_TransferAdressQrCode{
	display: block;
    margin: auto;
}

/*** MB WAY ***/

.aMS_PaymentMethod_MBWay #aMI_MainPanel #aMI_MBWayLogo{
	display: block;
    margin: auto;
    width: 100%;
	height: auto;
	max-width:400px;
}

.aMS_PaymentMethod_MBWay #aMI_MainPanel .aMS_FormFieldValue_transferStatus.aMS_TransferError{
	background-image:url(Pictures/PaymentMethods/error.png);
}

.aMS_PaymentMethod_MBWay #aMI_MainPanel .aMS_FormFieldValue_transferStatus.aMS_TransferDenied{
	background-image:url(Pictures/PaymentMethods/cancel.png);
}

/*****************************************************************/
/* Size adaptation  1200px */
/*****************************************************************/

@media screen and (max-width: 1200px){
	
	.aMS_MenuElement:not(.aMS_Family_Opened), 
	.aMS_ChooseDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement, 
	.aMS_ChooseParentDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement, 
	#aMI_ScreenContent #aMI_CulturesPanel .aMS_ScreenContentElement, 
	#aMI_ScreenContent #aMI_OrderHistoryPanel .aMS_ScreenContentElement {
		width: calc((100vw - (100vw - 100%)) * 0.46);
		margin: calc((100vw - (100vw - 100%)) * 0.011);
		margin-bottom:0.9vw;
		margin-top:0.9vw;
	}

	.aMS_MenuElement:before,
	.aMS_ChooseDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement:before,
	.aMS_ChooseParentDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement:before,
	.aMS_ChoosePositionDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement:before,
	#aMI_ScreenContent #aMI_CulturesPanel .aMS_ScreenContentElement:before,
	.aMS_Voucher .aMS_ScreenContentInnerElement:before,
	.aMS_Voucher.aMS_Partial .aMS_ScreenContentInnerElement:before {
    	font-size: 4vw;
	}

	/*****************************************************************/
	/* WaitScreen */
	/*****************************************************************/

	.aMS_WaitScreen #aMI_WaitGraphic{
		width: 20vw;
		height:20vw;
		border-radius:10vw;
	}

	/*****************************************************************/
	/* MenuTree */
	/*****************************************************************/

	.aMS_Item > .aMS_ScreenContentInnerElement > .aMS_Title,
	.aMS_ComplexItem .aMS_Title,
	.aMS_Family .aMS_Title,
	.aMS_Enterprise .aMS_Title,
	.aMS_Info .aMS_Title{
		font-size: 1.7vw;
		line-height: 1.7vw;
	}

	.aMS_Item .aMS_Description,
	.aMS_ComplexItem .aMS_Description,
	.aMS_Family .aMS_Description,
	.aMS_Enterprise .aMS_Description,
	.aMS_Info .aMS_Description{
		font-size: 1.3vw;
		line-height: 1.3vw;
	}
	.aMS_Info .aMS_Description p{line-height: initial;}



	.aMS_Item .aMS_Photo,
	.aMS_ComplexItem .aMS_Photo,
	.aMS_Family .aMS_Photo,
	.aMS_Enterprise .aMS_Photo,
	.aMS_Info .aMS_Photo{
		border-radius:0.267vw;
	}

	.aMS_Item .aMS_Price,
	.aMS_ComplexItem .aMS_Price,
	.aMS_Family .aMS_Price,
	.aMS_Enterprise .aMS_Price,
	.aMS_Info .aMS_Title:after{
		font-size:2vw;
	}

	.aMS_Item .aMS_Quantity,
	.aMS_ComplexItem .aMS_Quantity,
	.aMS_Enterprise .aMS_Distance,
	.aMS_Enterprise.aMS_Enterprise_PosNotOk:after,
	.aMS_Enterprise.aMS_Enterprise_PosOk:after{
		font-size:1.867vw;
	}

	.aMS_Enterprise.aMS_Enterprise_PosNotOk:after,
	.aMS_Enterprise.aMS_Enterprise_PosOk:after{
		font-size:1.467vw;
	}

	.aMS_MenuElement.aMS_Opened .aMS_ScreenContentInnerElement > .aMS_Title:after{
		font-size: 1.9vw;
	}

	#aMI_SuggestionsPanel .aMS_MenuElement:nth-child(4){
		display:none;
	}

	/*** ComplexWizard ***/

	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item,
	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family{
		margin: calc((100vw - (100vw - 100%)) * 0.010);
		margin-bottom:0.8vw;
		margin-top:0.8vw;
	}

	/*****************************************************************/
	/* OrderHistoryPanel */
	/*****************************************************************/

	#aMI_ScreenContent #aMI_OrderHistoryPanel .aMS_ScreenContentElement{
		height:auto;
		width:47%;
	}
	
	/*****************************************************************/
	/* VouchersPanel */
	/*****************************************************************/
	
	#aMI_VouchersPanel #aMI_ContinueButton{
		width:50%;
		height:auto;
		margin-left:25%;
		margin-right:25%;
		margin-bottom:50px;
	}
	
	.aMS_Voucher,
	#aMI_VouchersPanel
	.aMS_RedeemCode{
		width:45%;
		margin:2.25%;
		margin-top:1.8vw;
		margin-bottom:1.8vw;
		border:0.45vw solid white;
	}
	
	.aMS_Voucher:before{
		width:calc(100%  + 0.45vw);
		left:-0.45vw;
		border:0.45vw solid pink;
		border-left:none;
	}
	
	.aMS_RedeemCode .aMS_Title{
		font-size:3vw;
	}
	
	.aMS_Voucher:after{
		left:-0.9vw;
		border-left:0.75vw dotted white;
	}
	
	.aMS_Voucher .aMS_Title{
		font-size:2.7vw;
		top:0.45vw;
	    line-height:3.45vw;
	}
	
	.aMS_Voucher .aMS_ItemTitle,
	.aMS_Voucher .aMS_Photo{
		font-size:2.55vw;
	    line-height:3.45vw;
	}
	
	.aMS_ScreenContentElement.aMS_Voucher .aMS_Description{
		top:calc(40% + 0.9vw);
		line-height:2.1vw;
		font-size:1.8vw;
	}
	

	.aMS_Voucher .aMS_Validity{
		font-size:1.5vw;
	}

	.aMS_ScreenContentElement.aMS_Voucher .aMS_AvailableValue,
	.aMS_ScreenContentElement.aMS_Voucher .aMS_OfferedValue{
		font-size: 2.25vw;
		bottom: 1.2vw;
	}

	.aMS_ScreenContentElement.aMS_Voucher .aMS_OfferedValue:before, 
	.aMS_ScreenContentElement.aMS_Voucher .aMS_OfferedValue:after{
		font-size:1.5vw
	}
	
	.aMS_Voucher .aMS_ScreenContentInnerElement:before,
	.aMS_Voucher.aMS_Partial .aMS_ScreenContentInnerElement:before{
		top:-0.45vw;
		left:-0.45vw;
		width:calc(100% + 0.9vw);
	}
	
	.aMS_Voucher:hover .aMS_ScreenContentInnerElement:before,
	.aMS_Voucher.aMS_Partial .aMS_ScreenContentInnerElement:before{
		height:calc(100% + 0.9vw);
	}
	
	.aMS_Voucher .aMS_ScreenContentInnerElement:after{
		width:1.8vw;
		height:3vw;
		left:-0.45vw;
		top:0.75vw;
	}
	
	.aMS_Voucher.aMS_NewVoucher .aMS_ScreenContentInnerElement:after{
		left:-0.9vw;
		top:-0.9vw;
		height:6vw;
		width:6vw;
	}
	
	.aMS_Voucher.aMS_Partial .aMS_Percentage{
	    font-size:6vw;
	}
	
	.aMS_Voucher.aMS_Partial .aMS_Title:after{
		left:0.9vw;
		width:3.6vw;
		height:3.6vw;
		border-radius:3vw;
		border:0.3vw solid black;
		font-size:2.7vw;
	}
	
	.aMS_Voucher.aMS_Partial .aMS_PromoDescription,
	.aMS_Voucher.aMS_Partial .aMS_SharedCodeTitle,
	.aMS_Voucher.aMS_Partial .aMS_SharedCode{
		font-size:2.1vw;
	}
	
	.aMS_Voucher.aMS_Partial .aMS_SharedCodeTitle{
		font-size:1.8vw;
		line-height:3.9vw;
	}
	
	.aMS_Voucher.aMS_Partial .aMS_SharedCode{
		font-size:2.7vw;
		line-height:3.75vw;
	}
	
	/*****************************************************************/
	/* MenuSearch */
	/*****************************************************************/
	
	#aMI_MenuSearchPanel .aMS_SearchBox{
		opacity:1;
	}

	/*****************************************************************/
	/* Stock status
	/*****************************************************************/

	.aMS_Item.aMS_HasStock .aMS_StockMax,
	.aMS_Item.aMS_HasStock .aMS_StockAvailable,
	.aMS_ComplexItem.aMS_HasStock .aMS_StockMax,
	.aMS_ComplexItem.aMS_HasStock .aMS_StockAvailable{
		font-size: 1.6vw;
	}

	.aMS_ModifierItem.aMS_HasStock .aMS_StockMax,
	.aMS_ModifierItem.aMS_HasStock .aMS_StockAvailable{
		font-size: 1.4vw;
	}
}

/*****************************************************************/
/* Size adaptation  600px */
/*****************************************************************/

@media screen and (max-width: 600px){

	body:not(.aMS_WaitScreen) #aMI_Logo{
		/* display:none; */
		height: 70px;
		pointer-events: none;
	}



	#aMI_ScreenContent .aMS_MenuElement:not(.aMS_Family_Opened), 
	.aMS_ChooseDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement, 
	.aMS_ChooseParentDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement, 
	#aMI_ScreenContent #aMI_OrderHistoryPanel .aMS_ScreenContentElement {
		width: calc((100vw - (100vw - 100%)) * 0.96);
		margin: calc((100vw - (100vw - 100%)) * 0.02);
		margin-bottom:1.6vw;
		margin-top:1.6vw;
		width: 100%!important;
	}

	.aMS_MenuElement:before,
	.aMS_ChooseDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement:before,
	.aMS_ChooseParentDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement:before,
	.aMS_ChoosePositionDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement:before,
	#aMI_ScreenContent #aMI_CulturesPanel .aMS_ScreenContentElement:before,
	.aMS_Voucher .aMS_ScreenContentInnerElement:before,
	.aMS_Voucher.aMS_Partial .aMS_ScreenContentInnerElement:before {
    	font-size: 6vw;
	}

	/*****************************************************************/
	/* WaitScreen */
	/*****************************************************************/

	.aMS_WaitScreen #aMI_WaitGraphic{
		width: 25vw;
		height:25vw;
		border-radius:12.5vw;
	}

	/*****************************************************************/
	/* MenuTree */
	/*****************************************************************/

	.aMS_Item > .aMS_ScreenContentInnerElement > .aMS_Title,
	.aMS_ComplexItem .aMS_Title,
	.aMS_Family .aMS_Title,
	.aMS_Enterprise .aMS_Title,
	.aMS_Info .aMS_Title{
		font-size: 2.5vw;
		line-height: 2.5vw;
	}

	.aMS_Item .aMS_Subtitle,
	.aMS_ComplexItem .aMS_Subtitle{
		font-size:2vw;
	}

	.aMS_Item .aMS_Description,
	.aMS_ComplexItem .aMS_Description,
	.aMS_Family .aMS_Description,
	.aMS_Enterprise .aMS_Description,
	.aMS_Info .aMS_Description{
		font-size:2.4vw;
		line-height:2.8vw;
	}



	.aMS_Item .aMS_Photo,
	.aMS_ComplexItem .aMS_Photo,
	.aMS_Family .aMS_Photo,
	.aMS_Enterprise .aMS_Photo,
	.aMS_Info .aMS_Photo{
		border-radius:0.4vw;
	}

	.aMS_Item .aMS_Price,
	.aMS_ComplexItem .aMS_Price,
	.aMS_Family .aMS_Price,
	.aMS_Enterprise .aMS_Price,
	.aMS_Info .aMS_Title:after{
		font-size:3vw;
	}

	.aMS_Item .aMS_Quantity,
	.aMS_ComplexItem .aMS_Quantity,
	.aMS_Enterprise .aMS_Distance,
	.aMS_Enterprise.aMS_Enterprise_PosNotOk:after,
	.aMS_Enterprise.aMS_Enterprise_PosOk:after{
		font-size:2.8vw;
	}

	.aMS_Enterprise.aMS_Enterprise_PosNotOk:after,
	.aMS_Enterprise.aMS_Enterprise_PosOk:after{
		font-size:2.2vw;
	}
	
	.aMS_MenuElement.aMS_Opened{
		width:calc((100vw - (100vw - 100%)) * 0.92 + (100vw - (100vw - 100%)) * 0.04);
		padding-right: 50%;
	}

	.aMS_MenuElement.aMS_Opened > .aMS_ScreenContentInnerElement{
		position: relative;
	}

	.aMS_MenuElement .aMS_InnerItemPanel{
		display:block;
		position:relative;
		float:left;
		top:0px;
		left:0px;
		width:209%;
		margin-top: 100%;
		opacity:1;
		background-color:transparent;
	}

	.aMS_MenuElement .aMS_InnerItemPanel:before{
		display:none;
	}

	.aMS_MenuElement .aMS_InnerItemPanel{
		-webkit-box-shadow:none;
		        box-shadow:none;
	}

	.aMS_MenuElement.aMS_Opened:hover .aMS_ScreenContentInnerElement > .aMS_Title:after{
		display:none;
	}

	.aMS_MenuElement.aMS_Opened:hover .aMS_Title{
		z-index:auto;
	}

	.aMS_MenuElement .aMS_InnerItemPanel{
		border: none;
	}

	#aMI_SuggestionsPanel .aMS_MenuElement:nth-child(3),
	#aMI_SuggestionsPanel .aMS_MenuElement:nth-child(4){
		display:none;
	}

	/*** ComplexWizard ***/

	#aMI_ComplexWizardPanel .aMS_MenuElement.aMS_Opened{
		padding-right: 0%;
	}

	#aMI_ComplexWizardPanel .aMS_MenuElement .aMS_InnerItemPanel{
		margin-top: 20%;
	}

	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item,
	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family{
		width:calc((100vw - (100vw - 100%)) * 0.96);
	}

	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item > .aMS_ScreenContentInnerElement > .aMS_Title,
	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family .aMS_Title{
		font-size: 3vw;
		line-height:3vw;
		border-radius: 0.4vw;
	}

	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item.aMS_Opened:hover > .aMS_ScreenContentInnerElement > .aMS_Title{
		left:20%;
		color: white;
	}

	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item.aMS_Opened:hover .aMS_Title:before{
		left: -28%;
	}

	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item .aMS_Title:before,
	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family .aMS_Title:before{
		border-radius: 0.4vw;
	}

	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item .aMS_Description,
	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family .aMS_Description{
		font-size: 2vw;
		line-height:2.2vw;
	}

	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item .aMS_Quantity:after{
		font-size: 2.2vw;
	}

	/*****************************************************************/
	/* ItemPanel */
	/*****************************************************************/

	.aMS_ItemScreen #aMI_ItemPanel .aMS_Photo,
	.aMS_InfoScreen #aMI_InfoPanel .aMS_Photo{
		width:80%;
		left: 10%;
	}

	.aMS_ItemScreen #aMI_ItemPanel .aMS_Description,
	.aMS_InfoScreen #aMI_InfoPanel .aMS_Description,
	.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_Description,
	.aMS_InfoScreen #aMI_InfoPanel.aMS_NoPhoto .aMS_Description{
		margin-top: calc(80% + 30px);
		width: 80%;
		margin-left:10%;
	}

	.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_Description,
	.aMS_InfoScreen #aMI_InfoPanel.aMS_NoPhoto .aMS_Description{
		margin-top: 0%;
	}

	.aMS_ItemScreen #aMI_ItemPanel .aMS_InnerItemPanel,
	.aMS_ItemScreen #aMI_ItemPanel .aMS_InnerComplexItemPanel,
	.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_InnerItemPanel,
	.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_InnerComplexItemPanel{
		width:80%;
		margin-left:10%;
	}

	.aMS_ItemScreen #aMI_ItemPanel .aMS_RemoveQuantity,
	.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_RemoveQuantity{
		margin-left:12%;
	}

	.aMS_ItemScreen #aMI_ItemPanel .aMS_Quantity,
	.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_Quantity{
		margin-left:calc(12% + 40px);
	}

	.aMS_ItemScreen #aMI_ItemPanel .aMS_AddQuantity,
	.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_AddQuantity{
		margin-left:calc(12% + 110px);
	}

	.aMS_ItemScreen #aMI_ItemPanel .aMS_Price,
	.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_Price{
		margin-left:calc(86% - 40px);
		font-size: 4vw;
	}

	.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPrice .aMS_Description:after{
		font-size: 4vw;
	}

	/*****************************************************************************************************************/
	/* FormPanel & LoginPanel & AskAddressPanel & AddressLocationPanel & BookingPanel & PaymentMethods & UserDetails */
	/*****************************************************************************************************************/

	.aMS_FormPanel, 
	#aMI_LoginPanel,
	#aMI_AskAddressPanel,
	#aMI_BookingPanel,
	#aMI_PaymentMethodsPanel,
	.aMS_UserDetailsScreen #aMI_SaveButton{
		width:80%;
	}

	/*****************************************************************/
	/* OrderHistoryPanel */
	/*****************************************************************/

	#aMI_ScreenContent #aMI_OrderHistoryPanel .aMS_ScreenContentElement{
		height:auto;
		width:80%;
	}

	#aMI_OrderHistoryPanel .aMS_ScreenContentElement #aMI_AddButton {
		position: absolute;
		bottom: 4%;
		left: 4%;
		width: 92%;
	}

	/*****************************************************************/
	/* VouchersPanel */
	/*****************************************************************/
	
	#aMI_VouchersPanel #aMI_ContinueButton{
		width:50%;
		height:auto;
		margin-left:25%;
		margin-right:25%;
		margin-bottom:50px;
	}
	
	.aMS_Voucher,
	#aMI_VouchersPanel
	.aMS_RedeemCode{
		width:75%;
		margin:3.75%;
		margin-top:3.2vw;
		margin-bottom:3.2vw;
		border:0.75vw solid white;
	}
	
	.aMS_Voucher:before{
		width:calc(100%  + 0.75vw);
		left:-0.75vw;
		border:0.75vw solid pink;
		border-left:none;
	}
	
	.aMS_RedeemCode .aMS_Title{
		font-size:5vw;
	}
	
	.aMS_Voucher:after{
		left:-1.5vw;
		border-left:1.25vw dotted white;
	}
	
	.aMS_Voucher .aMS_Title{
		font-size:4.5vw;
		top:0.75vw;
	    line-height:5.75vw;
	}
	
	.aMS_Voucher .aMS_ItemTitle,
	.aMS_Voucher .aMS_Photo{
		font-size:4.25vw;
	    line-height:5.75vw;
	}
	
	.aMS_ScreenContentElement.aMS_Voucher .aMS_Description{
		top:calc(40% + 1.5vw);
		line-height:3.5vw;
		font-size:3vw;
	}
	

	.aMS_Voucher .aMS_Validity{
		font-size:2.5vw;
	}

	.aMS_ScreenContentElement.aMS_Voucher .aMS_AvailableValue,
	.aMS_ScreenContentElement.aMS_Voucher .aMS_OfferedValue{
		font-size: 3.75vw;
		bottom: 2vw;
	}

	.aMS_ScreenContentElement.aMS_Voucher .aMS_OfferedValue:before, 
	.aMS_ScreenContentElement.aMS_Voucher .aMS_OfferedValue:after{
		font-size:2.5vw
	}
	
	.aMS_Voucher .aMS_ScreenContentInnerElement:before,
	.aMS_Voucher.aMS_Partial .aMS_ScreenContentInnerElement:before{
		top:-0.75vw;
		left:-0.75vw;
		width:calc(100% + 1.5vw);
	}
	
	.aMS_Voucher:hover .aMS_ScreenContentInnerElement:before,
	.aMS_Voucher.aMS_Partial .aMS_ScreenContentInnerElement:before{
		height:calc(100% + 1.5vw);
	}
	
	.aMS_Voucher .aMS_ScreenContentInnerElement:after{
		width:3vw;
		height:5vw;
		left:-0.75vw;
		top:1.25vw;
	}
	
	.aMS_Voucher.aMS_NewVoucher .aMS_ScreenContentInnerElement:after{
		left:-1.5vw;
		top:-1.5vw;
		height:10vw;
		width:10vw;
	}
	
	.aMS_Voucher.aMS_Partial .aMS_Percentage{
	    font-size:10vw;
	}
	
	.aMS_Voucher.aMS_Partial .aMS_Title:after{
		left:1.5vw;
		width:6vw;
		height:6vw;
		border-radius:5vw;
		border:0.5vw solid black;
		font-size:4.5vw;
	}
	
	.aMS_Voucher.aMS_Partial .aMS_PromoDescription,
	.aMS_Voucher.aMS_Partial .aMS_SharedCodeTitle,
	.aMS_Voucher.aMS_Partial .aMS_SharedCode{
		font-size:3.5vw;
	}
	
	.aMS_Voucher.aMS_Partial .aMS_SharedCodeTitle{
		font-size:3vw;
		line-height:3.9vw;
	}
	
	.aMS_Voucher.aMS_Partial .aMS_SharedCode{
		font-size:4.5vw;
		line-height:6.25vw;
	}

	/*****************************************************************/
	/* Stock status
	/*****************************************************************/

	.aMS_Item.aMS_HasStock .aMS_StockMax,
	.aMS_Item.aMS_HasStock .aMS_StockAvailable,
	.aMS_ComplexItem.aMS_HasStock .aMS_StockMax,
	.aMS_ComplexItem.aMS_HasStock .aMS_StockAvailable{
		font-size: 2.4vw;
	}

	.aMS_ModifierItem.aMS_HasStock .aMS_StockMax,
	.aMS_ModifierItem.aMS_HasStock .aMS_StockAvailable{
		font-size: 2.0vw;
	}

	#aMI_HeaderMenuContent .aMS_ScreenContentElement .aMS_Label{
		font-size: 15px!important;
	}
}

/*****************************************************************/
/* Size adaptation  600px */
/*****************************************************************/


/*****************************************************************/
/* WaitScreen */
/*****************************************************************/

.aMS_WaitScreen {
  /* margin-top:200px; */
  display: inline-block;
  position: relative;
  width: 100%;
  height: 64px;
}


.aMS_WaitScreen #aMI_ScreenContent {
	left:calc(50% - 25px);
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 51px;
	height: 51px;
	margin: 6px;
	border: 6px solid #eb6741;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #eb6741 transparent transparent transparent;
	background-image:initial;
	margin-top: 45vh;
	background-color: initial;
}
.aMS_WaitScreen #aMI_ScreenContent:nth-child(1) {
  animation-delay: -0.45s;
}
.aMS_WaitScreen #aMI_ScreenContent:nth-child(2) {
  animation-delay: -0.3s;
}
.aMS_WaitScreen #aMI_ScreenContent:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.aMS_WaitScreen #aMI_WaitGraphic{
		background-image:initial!important;
		background-color:initial;
		border:initial;
		box-shadow:initial;
}


.aMS_ComplexWizardScreen .aMS_SearchBox{
	display:none;
}


/* Restaurants */

#aMI_ScreenContent{
	top: 0px!important;
	margin-top: 0;
}

.aMS_Enterprise.aMS_MenuElement,.aMS_Family.aMS_MenuElement{
	width:50%;
	height:inherit;
	margin:initial!important;
	border: 10px solid #e6e4e4!important;
	margin-top: 30px!important;
}

.aMS_Enterprise.aMS_CustomClass_NOVO:after{
	content:"Novo";
	font-size: 2vw;
	font-weight: 900;
	width: 5vw!important;
	position:absolute!important;
	background-color:#eb6741;
	color:white;
	border:3px solid white;
	top: 5px;
	left: 5px!important;
	border-radius: 5vw;
	height: 5vw;
	text-align:center;
	line-height: 5vw;
	box-sizi ng:border-box;
	-webkit-animation-name: AnimationFlash;
	animation-name: AnimationFlash;
	-webkit-animation-duration: 1.2s;
	animation-duration: 1.2s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	animation-iteration-count:infinite;
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
@media screen and (max-width: 600px){
	.aMS_Enterprise.aMS_CustomClass_NOVO:after{
		font-size: 5vw;
		width: 12vw!important;
		border-radius: 12vw;
		height: 12vw;
		line-height: 12vw;
	}
}

.aMS_MenuLocale_en .aMS_Enterprise.aMS_CustomClass_NOVO:after{
	content:"New";
}

.aMS_MenuLocale_fr .aMS_Enterprise.aMS_CustomClass_NOVO:after{
	content:"Nouveau";
}

.aMS_Enterprise.aMS_CustomClass_CLOSE{
	pointer-events:none!important;
}

.aMS_Enterprise.aMS_CustomClass_CLOSE:after{
	content:"Fechado";
	font-size: 1.2vw;
	font-weight: 900;
	width: 5vw!important;
	position:absolute!important;
	background-color:#eb6741;
	color:white;
	border:3px solid white;
	top: 5px;
	left: 5px!important;
	border-radius: 5vw;
	height: 5vw;
	text-align:center;
	line-height: 5vw;
	-webkit-animation-name: AnimationFlash;
	animation-name: AnimationFlash;
	-webkit-animation-duration: 1.2s;
	animation-duration: 1.2s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	animation-iteration-count:infinite;
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
@media screen and (max-width: 600px){
	.aMS_Enterprise.aMS_CustomClass_CLOSE:after{
		font-size: 3vw;
		width: 12vw!important;
		border-radius: 12vw;
		height: 12vw;
		line-height: 12vw;
	}
}

.aMS_MenuLocale_en .aMS_Enterprise.aMS_CustomClass_CLOSE:after{
	content:"Closed";
}

.aMS_MenuLocale_fr .aMS_Enterprise.aMS_CustomClass_CLOSE:after{
	content:"Ferme";
}



.aMS_Enterprise.aMS_CustomClass_FERIAS{
	pointer-events:none!important;
}

.aMS_Enterprise.aMS_CustomClass_FERIAS:after{
	content:"Ferias";
	font-size: 1.2vw;
	font-weight: 900;
	width: 5vw!important;
	position:absolute!important;
	background-color:#eb6741;
	color:white;
	border:3px solid white;
	top: 5px;
	left: 5px!important;
	border-radius: 5vw;
	height: 5vw;
	text-align:center;
	line-height: 5vw;
	-webkit-animation-name: AnimationFlash;
	animation-name: AnimationFlash;
	-webkit-animation-duration: 1.2s;
	animation-duration: 1.2s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	animation-iteration-count:infinite;
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
@media screen and (max-width: 600px){
	.aMS_Enterprise.aMS_CustomClass_FERIAS:after{
		font-size: 3vw;
		width: 12vw!important;
		border-radius: 12vw;
		height: 12vw;
		line-height: 12vw;
	}
}

.aMS_MenuLocale_en .aMS_Enterprise.aMS_CustomClass_FERIAS:after{
	content:"Holidays";
}

.aMS_MenuLocale_fr .aMS_Enterprise.aMS_CustomClass_FERIAS:after{
	content:"Holidays";
}



.aMS_Family_Opened.aMS_MenuElement{
	width:100%;
}

.aMS_Enterprise.aMS_MenuElement .aMS_Photo,.aMS_Family.aMS_MenuElement .aMS_Photo{
	width:100%;
	left:0;
	top:0;
	position:relative;
	height: 100%;
}

.aMS_Enterprise.aMS_MenuElement .aMS_ScreenContentInnerElement,.aMS_Family.aMS_MenuElement .aMS_ScreenContentInnerElement
{
	padding:initial;
}

.aMS_Enterprise.aMS_MenuElement .aMS_ScreenContentInnerElement .aMS_Title,.aMS_Family.aMS_MenuElement .aMS_ScreenContentInnerElement .aMS_Title
{
	top: -35px;
	left:0;
	background-color:initial;
	justify-content:left;
	color:#eb6741;
	text-shadow:initial;
	font-weight:bolder;
}

.aMS_Enterprise.aMS_MenuElement.aMS_HasDescription .aMS_ScreenContentInnerElement .aMS_Description,.aMS_Family.aMS_MenuElement.aMS_HasDescription .aMS_ScreenContentInnerElement .aMS_Description
{
	top:-80px;
	left:0;
	background-color:initial;
	justify-content:left;	
	color:#eb6741;
	font-size:10px;
	
}

.aMS_MenuElement.aMS_NoDescription .aMS_ScreenContentInnerElement .aMS_Description{
	display:none;
}

/* Items */

#aMI_ScreenContent .aMS_MenuElement.aMS_Item,.aMS_MenuElement.aMS_ComplexItem
{
	min-height: 140px;
}

#aMI_ScreenContent .aMS_MenuElement.aMS_Item.aMS_NoDescription.aMS_NoPhoto ,.aMS_MenuElement.aMS_ComplexItem.aMS_NoDescription.aMS_NoPhoto
{
	min-height: 70px;
}



.aMS_MenuScreen .aMS_MenuElement.aMS_Item:hover,.aMS_MenuScreen .aMS_MenuElement.aMS_ComplexItem:hover{
	background-color: #eb6741!important;
	/* background-image:initial; */
	color: white;
}

#aMI_ComplexWizardPanel .aMS_MenuElement.aMS_Item:hover{
	background-color: #6b6b6b2b!important;
}


.aMS_MenuScreen .aMS_MenuElement.aMS_Item:hover .aMS_Photo,.aMS_MenuScreen .aMS_MenuElement.aMS_ComplexItem:hover .aMS_Photo{
	display:none;
}

#aMI_ComplexWizardPanel .aMS_MenuElement.aMS_Item:hover .aMS_Photo{
	display:initial!important;
}


.aMS_MenuElement.aMS_Item:hover.aMS_HasPhoto:after,.aMS_MenuElement.aMS_ComplexItem:hover.aMS_HasPhoto:after{
	display:none!important;
}

.aMS_MenuElement.aMS_ComplexItem:hover .aMS_Title,.aMS_MenuElement.aMS_Item:hover .aMS_Title,.aMS_MenuElement.aMS_Item:hover .aMS_Description,.aMS_MenuElement.aMS_Item:hover .aMS_Price{

	color: white;
}

.aMS_MenuElement.aMS_Item .aMS_Title,.aMS_MenuElement.aMS_ComplexItem .aMS_Title{
	top: 0px;
	justify-content:left;
	/* left:20px; */
	color: #424242;
	font-size: 20px;
	position: relative;
	line-height:20px;
}



.aMS_MenuElement.aMS_Item .aMS_Description,.aMS_MenuElement.aMS_ComplexItem .aMS_Description{
	top: 5px;
	height: auto;
	justify-content:left;
	color: #6d6d6d;
	font-size: 15px;
	position: relative;
	line-height:15px;
}



.aMS_MenuElement.aMS_Item .aMS_Price,.aMS_MenuElement.aMS_ComplexItem .aMS_Price{
	bottom:0;
	height:initial;
	justify-content:left;
	top:initial;
	left: 2%;
	background-color: initial;
	transform:initial;
	box-shadow:initial;
	box-sizing:initial;
	border: initial;
	border-radius: initial;
	color: #3e3e3e;
}


.aMS_MenuScreen .aMS_MenuElement.aMS_Item.aMS_HasPhoto:after,.aMS_MenuScreen .aMS_MenuElement.aMS_ComplexItem.aMS_HasPhoto:after{
	content:"";
	background-color: #00000036;
	position:absolute;
	top:0;
	left:0;
	height:100%;
	width:100%;
	margin-left: 0;
}

.aMS_MenuElement.aMS_ComplexItem.aMS_HasPhoto .aMS_Description,.aMS_MenuElement.aMS_ComplexItem.aMS_HasPhoto .aMS_Price,.aMS_MenuElement.aMS_ComplexItem.aMS_HasPhoto .aMS_Title,.aMS_MenuElement.aMS_Item.aMS_HasPhoto .aMS_Title,.aMS_MenuElement.aMS_Item.aMS_HasPhoto .aMS_Description,.aMS_MenuElement.aMS_Item.aMS_HasPhoto .aMS_Price{
	color:white;

}



/* Complementos */

.aMS_MenuElement.aMS_Opened{
}


.aMS_MenuElement.aMS_Opened .aMS_InnerItemPanel
{
	position:relative!important;
	padding:initial!important;
	margin-top: 60px;
}

.aMS_MenuElement.aMS_Opened .aMS_InnerItemPanel .aMS_Title
{
	color:white;
}


.aMS_MenuElement.aMS_Opened .aMS_InnerItemPanel .aMS_ModifierItem .aMS_Title
{
	color:#3a3a3a;
}



.aMS_Enterprise_Closed_OutOfSchedule .aMS_Plu{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:#000000a8;
	display:initial;
}

.aMS_MenuLocale_pt .aMS_Enterprise_Closed_OutOfSchedule .aMS_Plu:after{
	content:"Encerrado";
}
.aMS_MenuLocale_en .aMS_Enterprise_Closed_OutOfSchedule .aMS_Plu:after{
	content:"Closed";
}
.aMS_MenuLocale_fr .aMS_Enterprise_Closed_OutOfSchedule .aMS_Plu:after{
	content:"Fermé";
}

.aMS_MenuLevel_1 .aMS_MenuElement:hover .aMS_Image,.aMS_MenuLevel_20 .aMS_MenuElement:hover .aMS_Image{
	transition:transform 0.5s;
	transform:scale(1.1);
}

.aMS_MenuLevel_1 .aMS_MenuElement .aMS_Image,.aMS_MenuLevel_20 .aMS_MenuElement .aMS_Image{
	transition:transform 0.5s;
	transform:scale(1);
}

.aMS_MenuLevel_1 .aMS_MenuElement .aMS_ScreenContentInnerElement,.aMS_MenuLevel_20 .aMS_MenuElement .aMS_ScreenContentInnerElement{
	overflow:hidden;
}

.aMS_MenuLevel_1 .aMS_MenuElement.aMS_Family .aMS_ScreenContentInnerElement,.aMS_MenuLevel_20 .aMS_MenuElement.aMS_Family .aMS_ScreenContentInnerElement{
	overflow:hidden;
	background-color:#e6e4e4;
}


.aMS_Enterprise_Closed_OutOfSchedule .aMS_Plu:after{
	color:white;
	width: 100%;
	height: initial;
	justify-content:center;
	font-size:6vw;
	position: absolute;
	/* line-height: 100%; */
	/* align-content: center; */
	text-align: -webkit-center;
	top: 50%;
	transform: translateY(-50%);
}



.aMS_CustomClass_BANNER{
	width:100%!important;
}

.aMS_ScreenContentElement.aMS_Info.aMS_MenuElement.aMS_CustomClass_BANNER.aMS_NoDescription.aMS_HasPhoto
{
	height: 30vh!important;
}
.aMS_ScreenContentElement.aMS_Info.aMS_MenuElement.aMS_CustomClass_BANNER.aMS_NoDescription.aMS_HasPhoto .aMS_Photo
{
	object-fit:contain!important;
	background-color:#e6e4e4;
	pointer-events: none;
}

@media screen and (max-width: 600px){
.aMS_ScreenContentElement.aMS_Info.aMS_MenuElement.aMS_CustomClass_BANNER.aMS_NoDescription.aMS_HasPhoto
{
	height: 20vh!important;
	pointer-events: none;
}
}

@media screen and (min-width: 600px){
	.aMS_HasOrderItems .aMS_MenuElement .aMS_Plu:after{
		font-size:3vw;
	}



	.aMS_ItemScreen #aMI_ScreenContent{
		left:0;
		margin-left:0;
		width:100%;
	}

	.aMS_Enterprise.aMS_CustomClass_NOVO:after{
		font-size: 1.2vw;
		width: 4vw!important;
		border:2px solid white;
		top: 4px;
		left: 4px!important;
		border-radius: 4vw;
		height: 4vw;
		line-height: 4vw;
	}

/*  
	.aMS_ComplexWizardScreen.aMS_HasOrderItems #aMI_ScreenContent{
		left:10%;
		width:80%!important;
	}

	.aMS_PaymentMethod  #aMI_ScreenContent,.aMS_AskAddressScreen #aMI_ScreenContent,.aMS_PaymentMethodsScreen #aMI_ScreenContent,.aMS_AddressFormScreen #aMI_ScreenContent,.aMS_OrderFormScreen #aMI_ScreenContent,.aMS_HasOrderItems.aMS_ItemScreen #aMI_ScreenContent, .aMS_LoginScreen #aMI_ScreenContent{
		left:10%;
		width:80%!important;
	}

	.aMS_PaymentMethod #aMI_TitleBar,.aMS_AskAddressScreen #aMI_TitleBar,.aMS_PaymentMethodsScreen #aMI_TitleBar,.aMS_AddressFormScreen #aMI_TitleBar,.aMS_OrderFormScreen #aMI_TitleBar,.aMS_HasOrderItems.aMS_ItemScreen #aMI_TitleBar, .aMS_LoginScreen #aMI_TitleBar
	{
		left:10%;
		width:80%!important;		
	}

	.aMS_HasOrderItems.aMS_ItemScreen #aMI_TitleBar{
		left:10%;
		width:80%!important;
	}
  */
	
}


.aMS_ScreenContentElement.aMS_Info.aMS_MenuElement.aMS_CustomClass_BANNER.aMS_NoDescription.aMS_HasPhoto .aMS_Title
{
	display:none;
}




.aMS_MenuElement.aMS_OutOfSchedule
{
	background-color:#0000004f!important;
	pointer-events:none;
	cursor: initial!important;
}

.aMS_MenuElement:hover.aMS_OutOfSchedule
{
	background-color:#0000004f!important;
	pointer-events:none;
	cursor: initial!important;

}



@media screen and (max-width: 600px){

	*:not(input){
	  -webkit-touch-callout: none;
		-webkit-user-select: none;
		 -khtml-user-select: none;
		   -moz-user-select: none;
			-ms-user-select: none;
				user-select: none;
	}
	#aMI_Header #aMI_BackButton
	{

	}
	
	#aMI_ScreenContent {
		width: 100%;
		margin-left: 0%;
		top: 0px!important;
		margin-top: 10px;
		position: relative;
	}

	#aMI_HeaderButtons{
		width:96%;
		left:2%;
	}

	#aMI_OrderListContent.aMS_SideBar{
		display:none; 
	}



	#aMI_Header #aMI_OrderButton{
		display:block;
		right:0;
		top: -7px;
		line-height: 40px;
		background-position: 0px 0px;
		background-size: 40px 40px;
	}

	.aMS_HasOrderItems #aMI_Header .aMS_OrderQuantity{
		display:block;
		right: 20px;
		top: 100px;
		background-color:white;
	}

	#aMI_Header #aMI_OptionsButton{
		display:block;
		top: -7px;
		line-height: 40px;
		background-position: 0px 0px;
		background-size: 40px 40px;
	}

	.aMS_HasOrderItems #aMI_OptionsButton{
		right: 50px!important;
	}

	#aMI_TitleBar{
		width:98%;
		margin-left:1%;
		min-height: 1px;
		/* margin-top: 0!important; */
	}

	.aMS_ScreenContentSeparator{
		width:96%;
	}

	.aMS_MenuElement:before,
	.aMS_ChooseDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement:before,
	.aMS_ChooseParentDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement:before,
	.aMS_ChoosePositionDivisionScreen #aMI_ScreenContent .aMS_ScreenContentElement:before,
	#aMI_ScreenContent #aMI_CulturesPanel .aMS_ScreenContentElement:before,
	.aMS_Voucher .aMS_ScreenContentInnerElement:before,
	.aMS_Voucher.aMS_Partial .aMS_ScreenContentInnerElement:before {
    	font-size: 7.5vw;
	}

	/*****************************************************************/
	/* WaitScreen */
	/*****************************************************************/

	.aMS_WaitScreen #aMI_WaitGraphic{
		width: 35vw;
		height:35vw;
		border-radius:17.5vw;
	}

	/*****************************************************************/
	/* MenuTree */
	/*****************************************************************/

	.aMS_Family.aMS_Family_Opened{
		width:96%;
	}

	.aMS_Item > .aMS_ScreenContentInnerElement > .aMS_Title,
	.aMS_ComplexItem .aMS_Title,
	.aMS_Family .aMS_Title,
	.aMS_Enterprise .aMS_Title,
	.aMS_Info .aMS_Title{
		font-size:5vw;
		line-height:5vw;
	}
	
	#aMI_HeaderMenuContent .aMS_Title
	{
		font-size:4vw!important;
		height: 18px;
	}

	.aMS_Item .aMS_Subtitle,
	.aMS_ComplexItem .aMS_Subtitle{
		font-size:3vw;
	}

	.aMS_Item .aMS_Description,
	.aMS_ComplexItem .aMS_Description,
	.aMS_Family .aMS_Description,
	.aMS_Enterprise .aMS_Description,
	.aMS_Info .aMS_Description{
		font-size:3vw;
		line-height:3.5vw;
	}



	.aMS_Item .aMS_Photo,
	.aMS_ComplexItem .aMS_Photo,
	.aMS_Family .aMS_Photo,
	.aMS_Enterprise .aMS_Photo,
	.aMS_Info .aMS_Photo{
		border-radius:0.5vw;
	}

	.aMS_Item .aMS_Price,
	.aMS_ComplexItem .aMS_Price,
	.aMS_Family .aMS_Price,
	.aMS_Enterprise .aMS_Price,
	.aMS_Info .aMS_Title:after{
		font-size:3.75vw;
	}

	.aMS_Item .aMS_Quantity,
	.aMS_ComplexItem .aMS_Quantity,
	.aMS_Enterprise .aMS_Distance,
	.aMS_Enterprise.aMS_Enterprise_PosNotOk:after,
	.aMS_Enterprise.aMS_Enterprise_PosOk:after{
		font-size:3.5vw;
	}

	.aMS_Enterprise.aMS_Enterprise_PosNotOk:after,
	.aMS_Enterprise.aMS_Enterprise_PosOk:after{
		font-size:2.75vw;
	}

	.aMS_MenuElement .aMS_InnerItemPanel{
		border: none;
	}

	#aMI_SuggestionsPanel .aMS_MenuElement:nth-child(3),
	#aMI_SuggestionsPanel .aMS_MenuElement:nth-child(4){
		display:none;
	}

	/*** ComplexWizard ***/

	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item,
	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family{
		width:calc((100vw - (100vw - 100%)) * 0.96);
	}

	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item > .aMS_ScreenContentInnerElement > .aMS_Title,
	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family .aMS_Title{
		font-size: 3.75vw;
		line-height:3.75vw;
		border-radius: 0.5vw;
	}

	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item .aMS_Title:before,
	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family .aMS_Title:before{
		border-radius: 0.5vw;
	}

	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item .aMS_Description,
	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Family .aMS_Description{
		font-size: 2.25vw;
		line-height:2.75vw;
	}

	#aMI_ScreenContent #aMI_ComplexWizardPanel #aMI_MenuTree .aMS_Item .aMS_Quantity:after{
		font-size: 2.75vw;
	}

	.aMS_MenuElement.aMS_Opened:hover {
    	z-index: auto;
	}

	.aMS_MenuElement.aMS_Opened:hover .aMS_Title {
    	z-index: 1;
	}

	/*****************************************************************/
	/* ItemPanel */
	/*****************************************************************/

	.aMS_ItemScreen #aMI_ItemPanel .aMS_Photo,
	.aMS_InfoScreen #aMI_InfoPanel .aMS_Photo{
		width:96%;
		left: 2%;
	}

	.aMS_ItemScreen #aMI_ItemPanel .aMS_Description,
	.aMS_InfoScreen #aMI_InfoPanel .aMS_Description,
	.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_Description,
	.aMS_InfoScreen #aMI_InfoPanel.aMS_NoPhoto .aMS_Description{
		margin-top: calc(96% + 30px);
		width: 96%;
		margin-left:2%;
	}

	.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_Description,
	.aMS_InfoScreen #aMI_InfoPanel.aMS_NoPhoto .aMS_Description{
		margin-top: 0%;
	}

	.aMS_ItemScreen #aMI_ItemPanel .aMS_InnerItemPanel,
	.aMS_ItemScreen #aMI_ItemPanel .aMS_InnerComplexItemPanel,
	.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_InnerItemPanel,
	.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_InnerComplexItemPanel{
		width:96%;
		margin-left:2%;
	}

	.aMS_ItemScreen #aMI_ItemPanel .aMS_RemoveQuantity,
	.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_RemoveQuantity{
		margin-left:4%;
	}

	.aMS_ItemScreen #aMI_ItemPanel .aMS_Quantity,
	.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_Quantity{
		margin-left:calc(4% + 40px);
	}

	.aMS_ItemScreen #aMI_ItemPanel .aMS_AddQuantity,
	.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_AddQuantity{
		margin-left:calc(4% + 110px);
	}

	.aMS_ItemScreen #aMI_ItemPanel .aMS_Price,
	.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPhoto .aMS_Price{
		width: calc(50px + 3.2vw);
    	height: calc(50px + 3.2vw);
		margin-left:calc(94.5% - 50px);
		margin-top:calc(-3.3vw - 50px);
		font-size: 5.5vw;
	}

	.aMS_ItemScreen #aMI_ItemPanel.aMS_NoPrice .aMS_Description:after{
		font-size: 5vw;
	}

	/*****************************************************************/
	/* Header */
	/*****************************************************************/

	#aMI_HeaderMenuContent{
		width: 100%;
		margin-left: 0%;
		margin-right: 0%;
		top: 67px;
		/* font-size: 1px; */
		height: 20px;
	}

	/*****************************************************************************************************************/
	/* FormPanel & LoginPanel & AskAddressPanel & AddressLocationPanel & BookingPanel & PaymentMethods & UserDetails */
	/*****************************************************************************************************************/

	.aMS_FormPanel, 
	#aMI_LoginPanel,
	#aMI_AskAddressPanel,
	#aMI_BookingPanel,
	#aMI_PaymentMethodsPanel,
	.aMS_UserDetailsScreen #aMI_SaveButton{
		width:96%;
	}

	/*****************************************************************/
	/* OrderHistoryPanel */
	/*****************************************************************/

	#aMI_ScreenContent #aMI_OrderHistoryPanel .aMS_ScreenContentElement{
		height:auto;
		width:96%;
	}

	#aMI_OrderHistoryPanel .aMS_ScreenContentElement #aMI_AddButton {
		position: absolute;
		bottom: 3%;
		left: 2%;
		width: 96%;
	}

	/*****************************************************************/
	/* VouchersPanel */
	/*****************************************************************/
	
	#aMI_VouchersPanel #aMI_ContinueButton{
		width:96%;
		height:auto;
		margin-left:2%;
		margin-right:2%;
		margin-bottom:50px;
	}
	
	.aMS_Voucher,
	#aMI_VouchersPanel
	.aMS_RedeemCode{
		width:90%;
		margin:4.5%;
		margin-top:4.5vw;
		margin-bottom:4.5vw;
		border:1.125vw solid white;
	}
	
	.aMS_Voucher:before{
		width:calc(100%  + 1.125vw);
		left:-1.125vw;
		border:1.125vw solid pink;
		border-left:none;
	}
	
	.aMS_RedeemCode .aMS_Title{
		font-size:7.5vw;
	}
	
	.aMS_Voucher:after{
		left:-2.25vw;
		border-left:1.875vw dotted white;
	}
	
	.aMS_Voucher .aMS_Title{
		font-size:6.75vw;
		top:1.125vw;
	    line-height:8.625vw;
	}
	
	.aMS_Voucher .aMS_ItemTitle,
	.aMS_Voucher .aMS_Photo{
		font-size:6.375vw;
	    line-height:8.625vw;
	}
	
	.aMS_ScreenContentElement.aMS_Voucher .aMS_Description{
		top:calc(40% + 2.25vw);
		line-height:5.25vw;
		font-size:4.5vw;
	}
	

	.aMS_Voucher .aMS_Validity{
		font-size:3.75vw;
	}

	.aMS_ScreenContentElement.aMS_Voucher .aMS_AvailableValue,
	.aMS_ScreenContentElement.aMS_Voucher .aMS_OfferedValue{
		font-size: 5.625vw;
		bottom: 3vw;
	}

	.aMS_ScreenContentElement.aMS_Voucher .aMS_OfferedValue:before, 
	.aMS_ScreenContentElement.aMS_Voucher .aMS_OfferedValue:after{
		font-size:3.75vw
	}
	
	.aMS_Voucher .aMS_ScreenContentInnerElement:before,
	.aMS_Voucher.aMS_Partial .aMS_ScreenContentInnerElement:before{
		top:-1.125vw;
		left:-1.125vw;
		width:calc(100% + 2.25vw);
	}
	
	.aMS_Voucher:hover .aMS_ScreenContentInnerElement:before{
		height:0;
	}

	.aMS_Voucher:active .aMS_ScreenContentInnerElement:before,
	.aMS_Voucher.aMS_Partial .aMS_ScreenContentInnerElement:before{
		height:calc(100% + 2.25vw);
	}
	
	.aMS_Voucher .aMS_ScreenContentInnerElement:after{
		width:4.5vw;
		height:7.5vw;
		left:-1.125vw;
		top:1.875vw;
	}
	
	.aMS_Voucher.aMS_NewVoucher .aMS_ScreenContentInnerElement:after{
		left:-2.25vw;
		top:-2.25vw;
		height:15vw;
		width:15vw;
	}
	
	.aMS_Voucher.aMS_Partial .aMS_Percentage{
	    font-size:15vw;
	}
	
	.aMS_Voucher.aMS_Partial .aMS_Title:after{
		left:2.25vw;
		width:9vw;
		height:9vw;
		border-radius:7.5vw;
		border:0.75vw solid black;
		font-size:6.75vw;
	}
	
	.aMS_Voucher.aMS_Partial .aMS_PromoDescription,
	.aMS_Voucher.aMS_Partial .aMS_SharedCodeTitle,
	.aMS_Voucher.aMS_Partial .aMS_SharedCode{
		font-size:5.25vw;
	}
	
	.aMS_Voucher.aMS_Partial .aMS_SharedCodeTitle{
		font-size:4.5vw;
		line-height:9.75vw;
	}
	
	.aMS_Voucher.aMS_Partial .aMS_SharedCode{
		font-size:6.75vw;
		line-height:9.375vw;
	}
	
	/*****************************************************************/
	/* MenuSearch */
	/*****************************************************************/
	
	#aMI_MenuPanel .aMS_SearchBox{
		width:46%;
		top: auto;
		left: auto;
		right: auto;
		position: relative;
		z-index:0;
		margin-right: 50%;
		margin-bottom: 1.6vw;
	}
	
	#aMI_MenuSearchPanel .aMS_SearchBox{
		-webkit-animation-name: none;
				animation-name: none;
		
		width:50%;
		right:25%;
		top:0px;
		z-index:auto;
	}

	.aMS_HasHeaderMenu #aMI_MenuSearchPanel .aMS_SearchBox{
		-webkit-animation-name: none;
		      	animation-name: none;
	}

	/*****************************************************************/
	/* Stock status
	/*****************************************************************/

	.aMS_Item.aMS_HasStock .aMS_StockMax,
	.aMS_Item.aMS_HasStock .aMS_StockAvailable,
	.aMS_ComplexItem.aMS_HasStock .aMS_StockMax,
	.aMS_ComplexItem.aMS_HasStock .aMS_StockAvailable{
		font-size: 3vw;
	}

	.aMS_ModifierItem.aMS_HasStock .aMS_StockMax,
	.aMS_ModifierItem.aMS_HasStock .aMS_StockAvailable{
		font-size: 2.6vw;
	}

}

.aMS_CustomClass_NOQTY .aMS_RemoveQuantity,.aMS_CustomClass_NOQTY .aMS_Quantity,.aMS_CustomClass_NOQTY .aMS_AddQuantity{
	display:none;
}

.aMS_InnerOptionWrapper.aMS_CustomClass_FLAG
{
	position:fixed!important;
	top:10px;
	right:5px;
	width:40px;
	height:40px;
	z-index: 9;
}

.aMS_InnerOptionWrapper.aMS_CustomClass_FLAG .aMS_Button
{
	background-color:#eb6642;
	border:initial;
	background-repeat:no-repeat;background-size: 30px 30px!important;width: 30px!important;height: 30px!important;font-size:0!important;padding: initial!important;}

.aMS_MenuLocale_pt .aMS_InnerOptionWrapper.aMS_CustomClass_FLAG .aMS_Button
{
	background-image:url("https://www.airmenu.com/Pictures/CountryFlags/Portugal.png")!important;
}

.aMS_MenuLocale_en .aMS_InnerOptionWrapper.aMS_CustomClass_FLAG .aMS_Button
{
	background-image:url("https://www.airmenu.com/Pictures/CountryFlags/United_Kingdom.png")!important;
}

.aMS_MenuLocale_fr .aMS_InnerOptionWrapper.aMS_CustomClass_FLAG .aMS_Button
{
	background-image:url("https://www.airmenu.com/Pictures/CountryFlags/France.png")!important;
}


.aMS_ChooseCultureScreen #aMI_CulturesPanel .aMS_MenuElement
{
	width:30%!important;
}

.aMS_ChooseCultureScreen #aMI_ScreenContent
{
	margin-top:0px;
}

.aMS_ScreenContentElement.aMS_CustomClass_FACEBOOK.aMS_HTML{
	position:fixed!important;
	top: 10px!important;
	z-index:9;
	right:50px;
	object-fit:cover!important;
	height: 30px!important;
}

.aMS_ScreenContentElement.aMS_CustomClass_FACEBOOK.aMS_HTML p{
	border:initial!important;
	margin:initial!important;	
}

.aMS_ScreenContentElement.aMS_CustomClass_FACEBOOK.aMS_HTML img{
	height:30px!important;
}

.aMS_ScreenContentElement.aMS_CustomClass_INSTAGRAM.aMS_HTML{
	position:fixed!important;
	top: 10px!important;
	z-index:9;
	right:70px;
	object-fit:cover!important;
	height:30px!important;
}

.aMS_ScreenContentElement.aMS_CustomClass_INSTAGRAM.aMS_HTML p{
	border:initial!important;
	margin:initial!important;	
}

.aMS_ScreenContentElement.aMS_CustomClass_INSTAGRAM.aMS_HTML img{
	height:30px!important;
	width: 30px!important;
}

.aMS_CustomClass_PHONE{
	position:fixed;
	top: 110px!important;
	z-index: 10;
	color: white;
	pointer-events:none!important;
	font-size: smaller;
}


@media screen and (max-width: 600px){
	.aMS_CustomClass_PHONE{
		top: 85px!important;

	}
}
.aMS_CustomClass_PHONE p{
	padding:initial!important;
	margin:initial!important;
}


#aMI_FooterMenuContent .aMS_ScreenInnerContent {
	height: initial;
	background-color:#e6e4e4;
}

#aMI_FooterMenuContent .aMS_ScreenInnerContent .aMS_ScreenContentElement{
	width:100%!important;
	/* height: auto; */
	position:relative;
	margin-bottom:50px;
	background-color: #e6e4e400;
	padding: 5px;
	/* border: 10px solid white; */
}

#aMI_FooterMenuContent .aMS_ScreenInnerContent .aMS_ScreenContentElement .aMS_Description.aMS_HTML img {
	/* width:20%!important; */
	/* left:10%; */
	height: auto !important;
	position:relative;
}
#aMI_FooterMenuContent .aMS_ScreenInnerContent .aMS_ScreenContentElement .aMS_Description.aMS_HTML {
	width:80%!important;
	max-height: initial;
	left:10%;
	height: initial;
	position:relative;
	background-color:white;
	border: 10px solid white;
	box-sizing: border-box;
}
#aMI_FooterMenuContent .aMS_ScreenInnerContent .aMS_ScreenContentElement .aMS_Title{
	width:80%!important;
	max-height: initial;
	left:10%;
	position:relative;
	margin-top: -20px;
	background-color: #ffffff;
	color: #eb6741;
	border: 10px solid white;
	box-sizing: border-box;
}

#aMI_FooterMenuContent .aMS_ScreenInnerContent .aMS_ScreenContentElement .aMS_Photo{
	width:80%!important;
	left:10%;
	height:auto;
	position: relative;
	/* border: 10px solid whitesmoke; */
}

#aMI_FooterMenuContent .aMS_ScreenInnerContent .aMS_ScreenContentElement .aMS_Label:after{
	display:none;
}


@media screen and (max-width: 600px){
	#aMI_FooterMenuContent .aMS_ScreenInnerContent .aMS_ScreenContentElement .aMS_Description.aMS_HTML img {
		width:30%!important;
	}

	#aMI_FooterMenuContent .aMS_ScreenInnerContent .aMS_ScreenContentElement .aMS_Description.aMS_HTML {
		width:90%!important;
		left:5%;
	}
	#aMI_FooterMenuContent .aMS_ScreenInnerContent .aMS_ScreenContentElement .aMS_Title{
		width:90%!important;
		left:5%;
	}

	#aMI_FooterMenuContent .aMS_ScreenInnerContent .aMS_ScreenContentElement .aMS_Photo{
		width:90%!important;
		left:5%;
		position: relative;
	}
}

 



.aMS_ChooseCultureScreen .aMS_Image.aMS_Photo{
	background-color:#e6e4e4;
}

.aMS_CustomClass_BANNER_INI{
	display:none;
}

.aMS_AddressLocationScreen .aMS_CustomClass_BANNER_INI
{
		display:initial;
		top: 0!important;
		position: fixed!important;
		height: 100vh!important;
		left: 0!important;
		width: 100vw!important;
		padding: initial!important;
		margin: initial!important;
		pointer-events: none;
		/* background-color: #ff000000!important; */
}


.aMS_CustomClass_oferta .aMS_ScreenContentElement.aMS_AddQuantity,.aMS_CustomClass_oferta .aMS_ScreenContentElement.aMS_RemoveQuantity{
	display:none;
}



.aMS_ScreenInnerContent.aMS_OrderComplexItem.aMS_ScreenContentElement.aMS_NoPrice.aMS_CustomClass_TABACO
{
	display:initial!important;
}


.aMS_MenuScreen #aMI_ScreenContent .aMS_Item,.aMS_MenuScreen #aMI_ScreenContent .aMS_ComplexItem,.aMS_MenuScreen .aMS_Info
{
	pointer-events:none;
}

#aMI_FooterMenuContent .aMS_Info
{
	pointer-events:none;
}

.aMS_HasBooking #aMI_ScreenContent .aMS_Item,.aMS_HasBooking #aMI_ScreenContent .aMS_ComplexItem
{
	pointer-events:all;
}

.aMS_CustomClass_PHONE{
	font-size: larger;
}

.aMS_HasBooking .aMS_CustomClass_PHONE{
	font-size: smaller;
}




.aMS_CustomClass_FULLSCREEN{
	width:100%!important;
}



.TopMenu
{
	height: 30px!important;
	overflow: hidden;
}

.TopMenu.SHOW
{
	height: initial!important;
}

.TopMenu
{
	display: block !important;
	position: absolute;
	top:150px;
	right: 10%!important;
	width: 100vw;
	background-color: red!important;
	max-width: 300px;
  border-radius:3px;
	height:32px!important;
}

@media screen and (max-width: 600px){

	.TopMenu
	{
		position: absolute;
		top:152px;
		right: 2%!important;
		width: 48%;
    
	}
}

.TopMenu .aMS_Image,.TopMenu .aMS_Description,.TopMenu .aMS_Plu
{
	display: none!important;
}
.TopMenu div
{
	font-size: 20px;
	color: black;
  position: initial;
	background-color: white!important;
	width: 100%!important;
	text-align: center!important;
	justify-content:center!important;
	-webkit-box-shadow: inset 0px 0px 7px 0px rgba(0,0,0,0.75);
	box-shadow: inset 0px 0px 7px 0px rgba(0,0,0,0.75);
}


.TopMenu div:nth-child(1):after{

  background-image: url(https://lh3.googleusercontent.com/U4ZIt8lGP6qemqkAR0sQo-D7Qybv_q_PlumhfWn_7VCYN_TNzDee8QMrZYhrSm7FcNvCLxHT-9ih12QvRUOO);
  background-size: contain;
	background-repeat: no-repeat;
	width: 40px;	
	content:"X";
	color: #f5f5f500;
	position:  absolute;
}


.TopMenu
{
	display: none!important;

}
.aMS_MenuLevel_3 .TopMenu.SHOWTop
{
	display: initial!important;
	z-index:4;
	cursor: pointer;
}

.aMS_ItemScreen .TopMenu
{
	display:none!important;
}

@media screen and (min-width: 600px){
.aMS_HasOrderItems .TopMenu{
	right:35%!important;
}
}


#aMI_ScreenContent .aMS_Button.aMS_LoginButton_Apple{
	display:block;
	cursor:initial;
	background-color:initial;
	border-bottom:initial;
	align-self:initial;
	padding:initial;
	padding-right:initial;
	text-shadow:initial;
	background-position:initial;
	overflow:initial;
	line-height:initial;
	-webkit-transition:initial;
	-o-transition:initial;
	transition:initial;
	-webkit-box-sizing:initial;
	background:black;
	background-image:url(/Pictures/icons/appleLogin.png);
	border-radius:4px;
	color:white;
	border:none;
	font-weight:initial;
	background-repeat:no-repeat;
	outline:none;
	box-sizing:border-box;
	text-align:center;
	background-size:19px;
	background-position: calc(50% - 60px) 13px;
	padding-left: 15px;
	min-height:45px;
	font-size:0.8em;
	margin-left: 12.5%;
	width: 75%;
	cursor: pointer;
	margin-bottom: 4px;
}




