input {
	border: none;
}

input:focus-visible {
	border: none;
	outline: none;
}

button:hover {
	opacity: 0.7;
}

button:focus {
	opacity: 0.7;
}

.flex-row {
	display: flex;
	flex-direction: row;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

.justify-start {
	display: flex;
	justify-content: flex-start;
}

.justify-center {
	display: flex;
	justify-content: center;
}

.justify-end {
	display: flex;
	justify-content: flex-end;
}

.justify-evenly {
	display: flex;
	justify-content: space-evenly;
}

.justify-around {
	display: flex;
	justify-content: space-around;
}

.justify-between {
	display: flex;
	justify-content: space-between;
}

.items-start {
	display: flex;
	align-items: flex-start;
}

.items-center {
	display: flex;
	align-items: center;
}

.items-baseline {
	display: flex;
	align-items: baseline;
}

.items-end {
	display: flex;
	align-items: flex-end;
}

.flex1 {
	flex: 1;
}

.flow-wrap {
	flex-flow: wrap;
}

.flow-nowrap {
	flex-flow: nowrap;
}

.gray-filter {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray;
	filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
	pointer-events: none;
}

.gray-filter-none {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray;
	filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
	/* pointer-events: none; */
}

.pointer-events {
	pointer-events: none;
}

.line-clamp {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	word-wrap: break-word;
	line-break: anywhere;
}
.line-clamp2 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-wrap: break-word;
	line-break: anywhere;
}
.line-clamp3 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	word-wrap: break-word;
	line-break: anywhere;
}
.line-clamp4 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	word-wrap: break-word;
	line-break: anywhere;
}
.hide {
	display: none !important;
}

.light {
	-webkit-filter: brightness(1.2);
	filter: brightness(1.2);
}

@-webkit-keyframes bouncedelay {

	0%,
	100%,
	80% {
		-webkit-transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1);
	}
}

@keyframes bouncedelay {

	0%,
	100%,
	80% {
		transform: scale(0);
		-webkit-transform: scale(0);
	}

	40% {
		transform: scale(1);
		-webkit-transform: scale(1);
	}
}

.loading_bg {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	background: #000;
	opacity: 0.9;
}

.loading_bg .spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.loading_bg .spinner>div {
	width: 30px;
	height: 30px;
	background-color: #f8eddd;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: bouncedelay 1.4s infinite ease-in-out;
	animation: bouncedelay 1.4s infinite ease-in-out;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

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

.loading_bg .spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
.animated.fadeIn.toast{
	position: fixed !important;
}
[v-cloak]{
	display: none !important; 
}
.pointer-events{
	pointer-events: none;
}
.pop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  width: 100vw;
  height: 100vh;
  
}
.pop .pop-content{
    margin: auto auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
	font-size: 26px;
}
/* .lock{
				overflow: hidden !important; 
				width: 100vw;
				height: 100vh;
			} */