/* RESET */

.h-barre {
    display: inline-block;
    position: relative;
    width: 100%;
}

.h-barre::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgb(196, 196, 196);
}

.text_hr {
    position: relative;
    width: 100%;
    text-align: center;
}

.text_hr::before,
.text_hr::after {
    content: '';
    position: absolute;
    top: 15px;
    width: 30%;
    height: 1px;
    background: var(--barre);
}

.text_hr::before {
    left: 0%;
}

.text_hr::after {
    right: 0%;
}

.box {
    display: flex;
}

/* UTILS AND ANIMATION */

.hr_horizontal {
    position: relative;
	display: inline-block;
	margin: auto 10px;
	width: 1px;
	height: 50%;
	background: rgb(184, 184, 184);
    z-index: 1;
}

.tr-transform {
    transition: transform .3s;
}

.tr-all {
    transition: all .3s;
}

[class*="reveal-"] {
  opacity: 0;
  transform: translate(0, 50px);
}

.reveal-visible {
  opacity: 1;
  transition: 1s;
  transform: translate(0, 0);
}

.reveal-1.reveal-visible {
  transition-delay: .2s;
}

.reveal-2.reveal-visible {
  transition-delay: .4s;
}

.reveal-3.reveal-visible {
  transition-delay: .6s;
}

.reveal-4.reveal-visible {
  transition-delay: .8s;
}

.reveal-5.reveal-visible {
  transition-delay: 1s;
}

/* INPUT AND BTN */

.btn {
    --btn-color: var(--primary);
	display: inline-block;
	position: relative;
    min-width: 100px;
    font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	text-align: center;
	border-radius: 5px;
	outline: none;
	border: none;
	transition: all .3s;
	cursor: pointer;
    font-weight: bold;
}

.btn-primary-app {
	padding: 10px 15px;
	margin: 5px;
    border: 1px solid transparent;
	color: var(--white);
    background: var(--color-primary);
}

.btn-secondary-app {
	padding: 10px 15px;
	margin: 5px;
	color: var(--white);
    background: #6C150E;
}

.btn-primary-app:hover,
.btn-primary-app:active,
.btn-secondary-app:hover,
.btn-secondary-app:active {
	color: var(--white);
	opacity: .9;
	transform: scale(1.05, 1.05);
}
.btn:hover i {
    color: inherit;
}

.btn i {
	color: var(--white);
}

@keyframes alerte-shadow {
    0% {
        box-shadow: 0 0 0 0 red;
    }
    40% {
        box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
    }
    80% {
        box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.alerte-clignotante {
    background-color: red;
    animation: alerte-shadow 1.5s linear infinite;
}

/* paginate-btn-container */
.paginate-btn-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
