/*Font Family*/
@font-face {
	font-family:'FontAwesome';
	font-style:normal;
	src: url(webfonts/fa-solid-900.eot);
	src: url(webfonts/fa-solid-900.svg),
	url(webfonts/fa-solid-900.ttf),
	url(webfonts/fa-solid-900.woff),
	url(webfonts/fa-solid-900.woff2);
}

@font-face {
	font-family:'Coffee-Regular';
	src: url(webfonts/kenyan-coffee-rg.ttf);
}

@font-face {
	font-family:'Pan-Pizza';
	src: url(webfonts/panpizza.ttf);
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

body.login {
    width:100%;
	margin-left:auto;
	margin-right:auto;
	margin-top:0;
	margin-bottom:5px;
	min-height:99%;
    font-size:100%;
    font-family: Arial, sans-serif;
}

.fas {
    font-family: FontAwesome;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.header {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.349);
    height: 70px;
    width: 100%;
    z-index: 1;
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.header .media-icons {
    display: flex;
    align-items: center;
}

.header .media-icons .volume {
    background-image: url(../img/volume-high.png);
    width: 32px;
    height: 32px;
    display: inline-block;
    cursor: pointer;
    
}

.header .media-icons .play_pause {
    background-image: url(../img/play.png);
    width: 48px;
    height: 48px;
    display: inline-block;
    background-position: center;
    background-size: cover;
    margin-left: 5px;
    cursor: pointer;
}

.header .media-icons .play_pause.active {
    background-image: url(../img/stop48.png);
}

.disable-div {
    pointer-events: none;
}

.chat-container {
    width: 550px;
    height: 300px;
    background: #00000070;
    z-index: 13;
    bottom: 0;
    position: fixed;
    padding: 5px;
}

.chat-container .chat-list {
    width: 100%;
    height: calc(100% - 50px);
    /* background: #00000070; */
    box-sizing: border-box;
    margin: 0;
    color: #FFF;
    padding: 5px;
    overflow-y: auto;
}

.chat-container .chat-input {
    width: calc(100% - 90px);
    bottom: 5px;
    height: 40px;
    padding: 5px;
    /* position: absolute; */
    border: none;
    outline: none;
}

.chat-container .send-button {
    width: 50px;
    height: 40px;
    cursor: pointer;
    float: right;
    background-color: white;
    border: none;
    outline: none;
    font-weight: 700;
}

.chat-container .chat-list .chat-block {
    list-style-type: none;
    margin: 0;
    padding: 5px;
    display: flex;
    align-items: center;
}

.chat-container .chat-list .chat-block .user-image {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: red;
    display: inline-block;
    min-width: 30px;
}

.chat-container .chat-list .chat-block .username {
    margin-left: 5px;
    margin-right: 5px;
    color: yellow;
}

.chat-container .chat-list .chat-block .username.local {
    color: #b2bcff;
}

.chat-container .chat-list .chat-block .username.status {
    color: orange;
}

.chat-container .chat-list .chat-block .chat {
    overflow-wrap: anywhere;
}

.chat-container .chat-list .chat-block .chat.status {
    color: orange;
}

.chat-container .input-block {
    margin-top: 10px;
    background: white;
}

.chat-container .emoji {
    width: 30px;
    height: 40px;
    background-color: transparent;
    cursor: pointer;
    margin-right: 5px;
    float: left;
    border: none;
    font-size: 150%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333029;
    outline: none;
}

/* The emerging W3C standard
   that is currently Firefox-only */
   * {
    scrollbar-width: thin;
    scrollbar-color: blue orange;
  }
  
  /* Works on Chrome/Edge/Safari */
  *::-webkit-scrollbar {
    width: 10px;
  }
  *::-webkit-scrollbar-track {
    background: #00000070;
  }
  *::-webkit-scrollbar-thumb {
    background-color: red;
    border-radius: 20px;
    border: 3px solid #00000070;
  }

  /* .wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .login-block {
      width: 400px;
      height: 400px;
  } */

/* Login Page */
body.login {
    background: url(../img/bg.jpg) fixed;
    background-position: center;
    background-size: cover;

    
}

#order-page {
    background: url(../images/bg.jpg) no-repeat fixed;
}

.login-container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.login-header {
    font-family: Coffee-Regular;
    color: #FFF;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 550px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    font-size: 220%;
    text-shadow: 2px 2px 8px #000;
}

.login-block {
    color: #000;
    max-width: 360px;
    border-radius: 3px;
    border-color: #090;
    box-shadow: 0px 5px 20px #000;
    background: #FFF;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 15px 20px 15px;
}

.login-container input[type=text], 
.login-container input[type=password],
.login-container input[type=email] {
    padding: 10px;
    border: none !important;
}

.login-container input[type=text]:focus,
.login-container input[type=password]:focus,
.login-container input[type=email]:focus {
	outline: none !important;
	box-shadow: none !important;
}

*, ::after, ::before {
    box-sizing: border-box;
}

.login-password,
.login-user {
    padding-right: 15px;
    padding-left: 15px;
}

.login-button {
	cursor:pointer;
	height:40px;
	font-weight:bold;
	background-color: #501507;
	border:none;
	box-shadow:0px 2px 10px;
	border-radius:5px;
	transition:all .2s;
	width:100%;
	font-size:110%;
	color:#fff;
}

.login-button:hover {
    background-color:#030;
	border-color:#CCC;
	color:#fff;
}

.login-logo {
    background-image: url(../images/login_logo.png);
    height: 70px;
    width: 270px;
}

.login-container .login-footer {
    margin-top: 15px;
}

.login-container .login-footer .login-link {
    font-size: 80%;
}

.login-container .login-footer .login-link a {
    text-decoration: none;
    color: #6c8a22;
    font-weight: 700;
}

.shake {
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
}

/* Shake Animation */
@keyframes shake {
    10%, 90% {
      transform: translate3d(-1px, 0, 0);
    }
    
    20%, 80% {
      transform: translate3d(2px, 0, 0);
    }
  
    30%, 50%, 70% {
      transform: translate3d(-4px, 0, 0);
    }
  
    40%, 60% {
      transform: translate3d(4px, 0, 0);
    }
  }
/* End Login Page */

/* Form Styling */
.form-default {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    height: auto !important;
}

.input-group>.form-default {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    margin-bottom: 10px;
}

.input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

.input-icon {
    background: none !important;
    border: none !important;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus {
    background-color: #FFF !important;
    -webkit-box-shadow: 0 0 0 30px white inset;
    box-shadow: 0 0 0 30px white inset;
    border: 1px solid green;
    -webkit-text-fill-color: green;
    transition: background-color 5000s ease-in-out 0s;
}

.a-enter-ar, .a-enter-vr {
    top: 50px;
    bottom: unset !important;
}

/*Screen Sizes Variations*/
@media only screen and (max-width: 550px) {
    .chat-container {
        width: 100%;
    }
}