/*Get the colors file*/
@import url("/static/assets/Colors/custom-colors.css");
/*Get the fonts file*/
@import url("/static/assets/fonts/fonts.css");
/* SNACKBAR */

#snackbar {
	visibility: hidden;
	min-width: 250px;
	margin-left: -125px;
	background-color: rgb(34, 73, 86);
	color: #fff;
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	position: fixed;
	z-index: 10;
	left: 50%;
	bottom: 30px;
	font-size: 17px;
	border-radius: 12px;
}

.snackbar-danger {
	background-color: #CD5C5C!important;
	box-shadow: 0 0 4px 2px #CD5C5C;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

/* SNACKBAR */

.no-margin {
	margin: 0!important;
}

.small-top-padding {
	padding-top: 4px!important;
}

.medium-top-padding {
	padding-top: 10px!important;
}

.large-top-padding {
	padding-top: 25px!important;
}

.small-top-margin {
	margin-top: 4px!important;
}

.medium-top-margin {
	margin-top: 15px!important;
}

.medium-bottom-margin {
	margin-bottom: 15px!important;
}

.large-bottom-margin {
	margin-bottom: 30px!important;
}

/* LOADER */

#spinner-container {
	z-index: 2;
	width: 200px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	height: 80px;
	background-color: rgb(255, 255, 255, 0.8);
	border-radius: 15px;
}

.spinner {
	padding-top: 30px;
	margin: auto;
	width: 100%;
	text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #337ab7;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

/* LOADER */

/* BACKDROP */
.backdrop {
	z-index: 1;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
}

/* BACKDROP */

.hidden {
	visibility: hidden;
}

/* hidden classes for bootstrap-4 */
@media(max-width: 576px) {
	.hidden-xs {
		display: none;
	}
}

@media(min-width: 576px and max-width: 767px) {
	.hidden-sm {
		display: none;
	}
}

/* FULL WIDTH GRIDS */
.full-width {
	margin-left: 0;
	margin-top: 0;
	padding-left: 0;
	padding-right: 0;
}

.justified-text {
	text-align: justify;
}

.text-no-wrap {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.center-elements {
    text-align: center;
}

.no-padding {
	padding: 0;
}

.no-margin {
	margin: 0;
}

.text-bold {
	font-family: "Montserrat-Bold";
}

.text-semibold {
	font-family: "Montserrat-SemiBold";
}

/* CUSTOM BORDER */

.custom-border {
	background-color:var(--d4m-body-default);
    height: 1px;
    margin-left: 10px;
    margin-right: 10px;
}


/* INPUT MODES */
.input-error-bg {
	background-color: var(--d4m-cancelled-booking)!important;
}

.input-warning-bg {
	background-color: var(--d4m-new-booking)!important;
}

.vertically-centered {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#sendOtp {
	border-top-right-radius: 10px;
  	border-bottom-right-radius: 10px;
	background-color: green;
}
#deleteAccBtn {
	border-radius: 10px;
}
#resetNumber {
	border-radius: 0px;
}
