html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner > *{
  opacity: 0;
}

/* Spinner */
body.show-spinner::before{
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

.break-words{
	word-wrap: break-word !important;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.card .card-body{
	padding: 0.75rem !important;
}

.verticalSeparator{
	border-right: 1px solid #d7d7d7 !important;
}

.roomOrdering{
	border: none !important;
    background: transparent !important;
    width: 150% !important;
    text-align: center !important;
    font-size: 12px !important;
    display: inline-block !important;
}

ul.pagination{
	justify-content: center !important;
}

/* ACTIONS LOADING... */
#actionLoader{
	background: rgba(0,0,0,0.9);
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 999999999999;	
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}


