/* Days One */
@font-face {
	font-family: 'Days One';
	src: url('../fonts/DaysOne-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

/* Inter - Variable Font */
@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/Inter-VariableFont_slnt,wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
}

/* Inter - Static Fonts */
@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/static/Inter-Thin.ttf') format('truetype');
	font-weight: 100;
	font-style: normal;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/static/Inter-ExtraLight.ttf') format('truetype');
	font-weight: 200;
	font-style: normal;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/static/Inter-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/static/Inter-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/static/Inter-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/static/Inter-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/static/Inter-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/static/Inter-ExtraBold.ttf') format('truetype');
	font-weight: 800;
	font-style: normal;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/static/Inter-Black.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
}




.fade-out {
	-webkit-animation: fade-out 0.7s ease-out both;
	animation: fade-out 0.7s ease-out both;
}

.puff-in-center {
	-webkit-animation: puff-in-center 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) both;
	animation: puff-in-center 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

/* ANIMATIIONS */
/* FADE OUT */
@-webkit-keyframes fade-out {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

@keyframes fade-out {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

.fade-out {
	-webkit-animation: fade-out .5s ease-out both;
	animation: fade-out .5s ease-out both
}

/* FADE IN */
@-webkit-keyframes fade-in {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes fade-in {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

.fade-in {
	-webkit-animation: fade-in 1.2s cubic-bezier(.39, .575, .565, 1.000) both;
	animation: fade-in 1.2s cubic-bezier(.39, .575, .565, 1.000) both
}

/* SLIDE IN */
@-webkit-keyframes slide-out-top {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1
	}

	100% {
		-webkit-transform: translateY(-1000px);
		transform: translateY(-1000px);
		opacity: 0
	}
}

@keyframes slide-out-top {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1
	}

	100% {
		-webkit-transform: translateY(-1000px);
		transform: translateY(-1000px);
		opacity: 0
	}
}

.slide-out-top {
	-webkit-animation: slide-out-top .5s cubic-bezier(.55, .085, .68, .53) both;
	animation: slide-out-top .5s cubic-bezier(.55, .085, .68, .53) both
}

/* SLIDE IN TOP*/
@-webkit-keyframes slide-in-top {
	0% {
		-webkit-transform: translateY(-1000px);
		transform: translateY(-1000px);
		opacity: 0
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1
	}
}

@keyframes slide-in-top {
	0% {
		-webkit-transform: translateY(-1000px);
		transform: translateY(-1000px);
		opacity: 0
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1
	}
}

.slide-in-top {
	-webkit-animation: slide-in-top 1s cubic-bezier(.25, .46, .45, .94) both;
	animation: slide-in-top 1s cubic-bezier(.25, .46, .45, .94) both
}

/* PING */

@-webkit-keyframes ping {
	0% {
		-webkit-transform: scale(.2);
		transform: scale(.2);
		opacity: .8
	}

	80% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
		opacity: 0
	}

	100% {
		-webkit-transform: scale(2.2);
		transform: scale(2.2);
		opacity: 0
	}
}

@keyframes ping {
	0% {
		-webkit-transform: scale(.2);
		transform: scale(.2);
		opacity: .8
	}

	80% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
		opacity: 0
	}

	100% {
		-webkit-transform: scale(2.2);
		transform: scale(2.2);
		opacity: 0
	}
}

.ping {
	border-radius: 50%;
    width: 6rem;
    height: 6rem;
	background-color: #ffffff;
	-webkit-animation: ping .8s ease-in infinite both;
	animation: ping .8s ease-in infinite both
}

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.hidden {
	display: none !important;
}

.toggable-element {
	display: none;
}


/* BODY CONTENT */
body {
	-text-size-adjust: 100%;
}

body,
.bg-blob {
	background: url("../img/blob.svg") center / cover no-repeat;
	font-family: 'Inter', sans-serif;
}
.app{
	flex-direction: column !important;
	display: flex !important;
	justify-content: space-between !important;
	position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: 'Days One', sans-serif;
}

.bi.bi2 {
	font-size: 2.5rem;
}

.bi.bi3 {
	font-size: 3rem;
}

.bi.bi1 {
	font-size: 2rem;
}

.bi {
	font-size: 1.5rem;
}

#navs-cols-menu{
	position: fixed;
	z-index: 1015;
	top: 80px;
}
#navcol-app.show {
	display: flex;
}

.dropdown-no-arrow::after {
	display: none;
}

.container-fluid-limit{
	max-width: 1500px;
}

.grid-template-columns-buttons{
	grid-template-columns: repeat(2, 1fr);
}

.grid-template-columns-min-2 {
	grid-template-columns: repeat(1, 1fr);
}
#table_discounts_campaign_filter>label{
	width: 100%;
}

@media (min-width: 768px) {
	#navs-cols-menu{
		top: 75px;
	}
	.grid-template-columns-buttons {
		grid-template-columns: repeat(4, 1fr);
	}
	.grid-template-columns-min-2{
		grid-template-columns: auto;
	}
}
