﻿:root{
    --background-index:#000;
    --color-btn-green:#00E676;
    --color-white:#FFF;
    --color-orange: #FFA903;
    --color-grey-footer: rgba(84, 84, 84, 0.65);
    --color-body: #F0F1F3;
    --color-new-bug:#FF0000;
    --color-ignored:#6100FF;
    --color-gold: #ffe91f;
    --color-notification: #4de124;
    --color-alert: #e50000;

    --radius:5px;
    --shadow:0 0 5px lightgrey;
}

@font-face {
    font-family: 'DM-Sans';
    src: url("fonts/DM-Sans.ttf") format("ttf");
}
@font-face {
    font-family: 'Inter';
    src: url("fonts/Inter.ttf") format("ttf");
}
@font-face {
    font-family: 'Raleway';
    src: url("fonts/Raleway.ttf") format("ttf");
}
@font-face {
    font-family: 'RalewayBold';
    src: url("fonts/RalewayBold.ttf") format("ttf");
}

*{
    box-sizing: border-box;
}

html, body{
    margin: 0;
    padding: 0;
    top: 0;
    height: 100%;
    background-color: var(--color-body);
    overflow-x: hidden;
}

body{
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.black{
    background-color: var(--background-index)!important;
    color: var(--color-white);
}

.space{
    margin-top: 40px!important;
    margin-bottom: 40px!important;
}

a{
    text-decoration: none;
}

.fs20{
    font-size: 20px;
}

.h-in-black{
    color: var(--color-white);
}
.container{
    width: 90%;
    margin: 0 auto;
    font-family: "Raleway", sans-serif;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.container *{
    margin: auto;
}

.center{
    text-align: center;
}

.margin_auto{
    margin: auto !important;
}

.text_align_left{
    text-align: left;
    margin: initial;
}

h1{
    font-size: 50px;
    font-family: "RalewayBold", sans-serif;
    text-align: center;
}

h2{
    text-align: center;
    font-size: 25px;
    text-transform: uppercase;
}

h3{
    text-align: center;
    color: black;
    text-transform: uppercase;
}

section{
    width: 100%;
    margin-top: 3%!important;
    margin-bottom: 1%!important;
}

/* Nav */

nav{
    width: 100%;
    height: 50px;
    padding: 3px 10px;
    margin-bottom: 3.5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
}

nav .title{
    color: var(--color-white);
    font-family: "RalewayBold", sans-serif;
    font-weight: bold;
    font-size: 22px;
    text-transform: uppercase;
    text-decoration: none;
}

.flag-nav{
    width: 33px;
    height: 24px;
    margin: 0px 0 0 10px;
    top: 4px;
    position: relative;
    border-radius: var(--radius);
}

nav ul{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav ul li{
    list-style: none;
}

nav ul li a {
    color: var(--color-white);
    font-family: "RalewayBold", sans-serif;
    font-size: 20px;
    padding: 0 10px;
}

nav ul li button {
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    font-family: "RalewayBold", sans-serif;
    font-size: 20px;
    padding: 0 10px;
}

.nav-toggler{
    display: none;
}

    /* NavCompany */

.navCompany{
    background-color: var(--color-orange);
    box-shadow: var(--shadow);
    /*position: relative;*/
    min-height: 50px;
}

.plan{
    border-radius: 30px;
    border: 1px solid var(--color-white);
    box-shadow: 0 0 5px dimgrey;;
}

    /* Nav */

.nav .title{
    color: var(--color-btn-green);
}

.nav ul li:last-child a{
    display: inline-flex;
    height: 37px;
    padding: 10px 10px 10px 0;
    margin-left: 10px;
    background-color: var(--color-btn-green);
    border-radius: var(--radius);
    align-items: center;
}

.nav ul li:last-child a img{
    width: 30px;
}

.navCompany-toggler{
    display: none;
}

/* Alerte Notification */
.notifAlert {
    font-family: "Raleway", sans-serif;
    text-align: center;
    color: var(--color-white);
    font-size: 20px;
    padding: 15px 0;
}

.notification {
    background-color: var(--color-notification);
}
.alert {
    background-color: var(--color-alert);
}

.form-errors {
    display: grid;
    gap: 6px;
    width: 100%;
    margin: 0 0 14px;
    padding: 12px 14px;
    border: 1px solid rgba(229, 0, 0, 0.32);
    border-radius: 8px;
    color: #ff9b9b;
    background: rgba(229, 0, 0, 0.08);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.45;
}

.field-error {
    color: #ff8b8b;
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.35;
}

/* Index */

.messageOnNav{
    background-color: #6a0cff;
    color: white;
    font-family: "RalewayBold", sans-serif;
    text-align: center;
    font-size: 18px;
}

.citation{
    width: 85%;
    font-size: 19px;
    color: var(--color-white);
    font-style: italic;
    text-align: center;
}

.citation img{
    width: 130px;
    height: 130px;
    margin: -65px 30px 0 30px;
}

.slider {
    width: 450px;
    text-align: center;
    overflow: hidden;
    /*border: 4px solid var(--color-orange);
    border-radius: var(--radius);*/
}

.sliderIndex {
    border: none;
    border-radius: 0;
}

.slides {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;

    /*
    scroll-snap-points-x: repeat(300px);
    scroll-snap-type: mandatory;
    */
}
.slides::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
.slides::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 10px;
}
.slides::-webkit-scrollbar-track {
    background: transparent;
}
.slides > div {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 450px;
    height: 253px;
    margin-right: 50px;
    border-radius: 10px;
    background: #eee;
    transform-origin: center center;
    transform: scale(1);
    transition: transform 0.5s;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px;
}
.slides > div:target {
    /*   transform: scale(0.8); */
}
.author-info {
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 0.75rem;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
}
.author-info a {
    color: white;
}
.slides img {
    object-fit: contain; /*cover;*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slider .content-dotlink{
    position: relative;
    z-index:99;
}

.slide {
    font-family: "Inter", sans-serif;
    display: inline-flex;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--color-orange);
    text-decoration: none;
    color: var(--color-white);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 0 0.5rem 0;
    position: relative;
}
.slider > a:active {
    top: 1px;
}
.slider > a:focus {
    background: #000;
}

.index{
    background-color: transparent;
}

.slide-index{
    background-color: var(--color-btn-green);
}

.h-in-index{
    text-transform: none;
    color: var(--color-white);
    margin-bottom: 30px;
}

.index h4{
    text-align: left;
}

.container-row{
    display: flex;
    flex-direction: row!important;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    margin: 20px auto;
}

.cards{
    padding: 20px 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background-color: var(--color-white);
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}

.cards_detail{
    border: 4px solid var(--color-btn-green);
    text-transform: none;
    color: var(--background-index);
/*    margin: 0 5%;*/
    text-align: center;
    align-items: center;
}

.cards_detail h3{
    text-transform: none;
    font-size: 25px;
    font-family: "Raleway", sans-serif;
}

.tierce_card{
    width: 30%;
    align-items: stretch;
}

.demi_card{
    width: 45%;
    align-items: stretch;
}

.align-stretch{
    align-items: stretch;
}

.margin-bottom {
    margin-bottom: 15px;
}

.margin-top-0{
    margin-top: 0;
}

.cadre {
    text-align: center;
    display: block;
    z-index: -1;
}

.rotation {
    transform: rotate(5deg);
    /*overflow: hidden;*/
}

.rotation-none{
    transform: rotate(-5deg);
    font-size: 24px;
    line-height: 35px;
}

.rotation-none p{
    margin: 15px 0;
}

.green{
    background-color: var(--color-btn-green);
    padding: 2% 0;
    margin: 5% -10% 0 -10%;
}

.green-pill{
    background-color: var(--color-btn-green);
    width: fit-content;
    padding: 20px 40px;
    border-radius: 50px;
}

.intro{
    width: 80%;
    display: block;
}

.intro_mobile{
    display: none;
}

.btn-try{
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    padding: 7px 20px;
    width: fit-content;
    background-color: var(--color-white);
    color: black;
    font-size: 22px;
    border-radius: var(--radius);
    text-align: center;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.transition-index-btn-tryme{
    position: relative;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out 5s forwards;
}

#guidelineMotion{
    margin: 0 auto;
    width: 60%;
}

ul{
    text-align: left;
}

.ul-index{
    margin-top: 10px;
    font-weight: bold;
    font-size: 25px;
    position: relative;
    top: 50px;
}

.ul-index li{
    list-style: none;
}

.li-what-signal{
    box-shadow: 0 0 5px grey;
    padding: 15px 30px;
    color: black;
    background-color: #FFFFFF;
    border-radius: var(--radius);
    text-align: center;
    font-weight: initial;
    transition: left 1s ease-in-out;
}

.active-li {
    position: relative;
    left: 50px;
}

.container-slider-index {
    box-shadow: 0 14px 27px -8px rgba(0,0,0,0.3);
    border-radius: var(--radius);
    width: 480px;
    height: 300px;
    position: relative;
    top: -32px;
    overflow: hidden;
}

.img-slider-index {
    width: 480px;
    height: 300px;
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease-in-out;
}

.processus img{
    width: 80%;
    margin: 0 7% 0 auto;
}

#numbers-bar{
    display: none;
}

.big-number{
    font-family: "Inter", sans-serif;
    font-size: 50px;
    color:var(--color-btn-green);
    font-weight: bold;
}

.text-green {
    color: var(--color-btn-green);
}

.padding-bottom-20{
    padding-bottom: 20px;
}

.tryme-btn-index img{
    width: 150px;
    height: 150px;
    border-radius: 25px;
}
.img-in-price-card{
    width: 125px!important;
}

.h-in-price-card{
    font-size: 50px!important;
    font-family: Impact, sans-serif!important;
}

.price-in-card{
    padding: 12px 50px;
    margin: 20px auto 0 auto;
    font-size: 35px;
    font-family: Impact, sans-serif;
    border: 1px solid darkgrey;
    border-radius: 25px;
}

.halo-green{
    box-shadow: 0 0 20px 10px #00E676;
}

/*CSS Logo
.bugspointer-logo{
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}
.bugspointer-logo:hover{
    cursor: pointer;
}

.bugspointer-objet-logo{
    display: flex;
    justify-content:center;
    flex-direction:column;
    width:116px;
    height:100px;
}

.bugspointer-objet-ellispe{
    margin:0 auto;
    width: 65px;
    min-height: 65px;
    border-radius:100%;
    border: 0.4em solid var(--color-btn-green);
    background-image: url(img/chercher.gif);
    background-size: contain;
    box-shadow: 0 0 5px grey;
}

.bugspointer-objet-report{
    color:var(--color-white);
    background-color: var(--color-btn-green);
    border-radius:3px;
    padding:2px 3px;
    font-size:15px;
    box-shadow: 0 0 5px grey;
    margin: 0;
}
*/

/* Authentication */

.cancel-margin-top{
    margin-top:0;
}

/* Features */
.cards_detail img{
    position: relative;
    width: 100%;
    max-width: 500px;
}

.headband{
    z-index: 10;
    position: sticky;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    width: 100%;
    border-bottom: 5px solid var(--color-btn-green);
    text-align: center;
    background-color: black;
    font-family: "DM-Sans", sans-serif;
}

.headband h2{
    font-size: 60px;
    margin-block-start: 20px;
    margin-block-end: 10px;
    margin-right: 25px;
}

.left{
    width: 45%;
}

.right{
    width: 45%;
}

.space-feature{
    margin: 80px auto;
}

.feature_name{
    font-size: 50px;
    font-family: "Inter", sans-serif;
    font-weight: bold;
}

.feature_description p{
    font-size: 20px;
    font-family: "DM-Sans", sans-serif;
    margin: 15px;
}

.img-description-feature{
    width: 100%;
}

.grey-form1{
    position: relative;
    width: 600px;
    height: 600px;
    right: -61%;
    top: 400px;
    margin-top: -600px;
    border-top-left-radius: 70px;
    background: rgba(84, 84, 84, 0.65);
    transform: rotate(-45deg);
    box-shadow: inset 0 0 25px 1px black;
}

.grey-form2{
    position: relative;
    width: 850px;
    height: 850px;
    left: -61%;
    top: 763px;
    margin-top: -850px;
    border-top-right-radius: 70px;
    background: rgba(84, 84, 84, 0.65);
    transform: rotate(45deg);
    box-shadow: inset 0 0 25px 1px black;
}

.green-form{
    position: relative;
    width: 200px;
    height: 200px;
    top: 263px;
    margin-top: -200px;
    border-radius: 50px;
    background: var(--color-btn-green);
    transform: rotate(45deg);
    box-shadow: inset 0 0 20px black;
    animation: rotate 60s linear infinite;
}

.green-form-right{
    right: 37%;
}

.green-form-left{
    left: 37%;
}

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



.feature-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.feature-transition .active {
    opacity: 1;
    transform: translateY(0);
}



/* Authentication */
.form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form > * {
    width: 100%;
    text-align: center;
    border-radius: var(--radius);
}

.form > input {
    width: 90%;
    border: none;
    box-shadow: var(--shadow);
    margin: 15px auto;
    padding: 15px 10px;
}

.form input[type=submit]{
    width: fit-content;
}

/* Download Page */

.btn-download{
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 25px;
    color: #000;
    margin: 20px auto;
    padding: 5px 15px 5px 5px;
    width: 80%;
    max-width: 900px;
    height: 125px;
    border-radius: 5px;
    border: 5px solid var(--color-btn-green);
    background-color: var(--color-white);
}

.btn-download img {
    position: relative;
    width: 100px;
}

.btn-action{
    margin-top: 30px;
    background-color: var(--color-btn-green);
    padding: 7px 20px;
    color: var(--color-white);
    width: fit-content;
    font-size: 22px;
    border-radius: var(--radius);
    border: none;
}

/* RegisterConfirm */

.welcome {
    width: 30%;
    height: max-content;
}

.welcome img {
    position: relative;
    width: 90%;
    max-height: 350px;
}

.auRevoir {
    position: relative;
    width: 90%;
    max-height: max-content !important;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: stop-animation;
}

@keyframes stop-animation {
    to {
        background-position: 0 0;
    }
}

/* newUser */

.h2-newUser{
    color: var(--color-white);
    text-transform: initial;
}

.w20 {
    width: 20%;
}

.w40{
    width: 50%;
}

.w60{
    width: 60%!important;
}

.w90{
    width: 90%;
    max-width: inherit;
}

.w85{
    width: 85%;
    max-width: inherit;
}

.center-in-card{
    margin-top: 15px;
    margin-bottom: -5px;
}

.newUser {
    height: max-content;
}

.newUser img {
    width: 110px;
    height: auto;
}

.newUser input {
    border:none;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-size: 22px;
    height: max-content;
    margin-top: 1px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.newUser input[type="text"]{
    width: 70%;
}

.small-text {
    font-size: 50%;
}

.newUser a {
    margin-top: 1px;
    padding: 7px 20px;
    box-shadow: var(--shadow);
}

.popup {
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    padding-top: 60px;
    display: none;
    color: black;
}

.popup-container {
    background-color: var(--color-white);
    border: 3px solid var(--color-btn-green);
    margin: auto;
    width: 50%;
    border-radius: 20px;
    overflow: auto;
    font-size: 22px;
}

.popup-container input {
    margin: auto;
}

/* Dashboard Free*/

/*.cards_promo{
    border: 4px solid var(--color-orange)!important;
}*/
.cards_promo h2{
    font-family: "DM-Sans", sans-serif;
    font-size: 30px;
    margin-bottom: 15px;
}

.cards_promo ul{
    padding-inline-start: 10px;
}

.cards_promo ul li {
    font-family: "RalewayBold", sans-serif;
    text-transform: initial;
    font-weight: bold;
}

.cards_promo a {
    font-family: "DM-Sans", sans-serif;
    color: var(--color-white);
    background-color: var(--color-orange);
    padding: 5px 15px;
    margin: 15px auto 2px auto;
    width: fit-content;
    border-radius: var(--radius);
    font-size: 22px;
}

.cards_promo span {
    font-size: 9px;
    font-family: "RalewayBold", sans-serif;
}

.adjustPlan {
    /*width: 605px;*/
    text-align: center;
    overflow: hidden;
    /*border: 4px solid var(--color-orange);
    border-radius: var(--radius);*/
}

.adjustPlan .slides > div {
    width: 100%; /*600px;*/
    height: 333px;
}
/* Poll */

.poll-table{
    width: 100%;
    border-spacing: 30px;
}

.poll-table tr{
    padding-bottom: 20px;
}

.poll-table tr td{
    width: calc(100% - 50px);
    text-align: left;
}

.poll-table tr td:nth-last-child(1){
    width: 50px;
}

textarea{
    width: 100%;
    block-size: auto;
    display: inline-block;
    box-sizing: border-box;
    min-height: 50px;
    height: 150px;
    padding: 5px;
    font-family: var(--font);
    border: 1px solid lightgrey;
    margin-bottom: 5px;
    color: black;
}

/* Dashboard Company */

.number_cards{
    font-size: 25px;
    padding: 4px 20px;
    margin-bottom: 13px;
    border-radius: 40px;
    color: var(--color-white);
    font-family: "Inter", sans-serif;
}

.bug {
    width: 90%;
}

.new{
    background-color: var(--color-new-bug)!important;
}

.pending{
    background-color: var(--color-orange)!important;
}

.solved{
    background-color: var(--color-btn-green)!important;
}

.ignored{
    background-color: var(--color-ignored)!important;
}

.gold{
    background-color: var(--color-gold);
    color:black!important;
    box-shadow: 0 0 5px #fff000;
}

/* Documentation */

.container-documentation{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    top: 0;
    left: 0;
}

.anti-margin{
    margin: initial!important;
    justify-content: flex-start;
    padding: 15px;
}

.anti-margin h1{
    margin: 0 0 20px 0;
}

.menu{
    width: 250px;
    height: 100vh;
    border-right: 3px solid var(--color-orange);
    box-shadow: var(--shadow);
    padding: 5px 0 5px 8px;
    margin: -68px 0 0 0;
    top: 0;
    left: 0;
    position: sticky;
    overflow-y: auto;
    z-index: 999;
}

.menu::-webkit-scrollbar-thumb {
    background: transparent;
}

.menu::-webkit-scrollbar-track {
    background: transparent;
}

.h3_documentation{
    text-transform: initial;
    margin: 30px 0 0 30px;
    text-align: left;
}

.menu h4 a{
    font-family: "RalewayBold", sans-serif;
    color: black;
}

.menu ul {
    padding-inline-start:10px;
}

.menu ul li{
    list-style: none;
}
.menu ul li a {
    font-family: "Raleway", sans-serif;
    color: black;
}

.card_doc{
    padding: 10px 5px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background-color: var(--color-white);
    margin: 15px 0;
}

.warning{
    display: flex;
    justify-content: flex-start;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 5px 8px 5px 5px;
    background-color: var(--color-white);
    margin: 15px 0;
}

.border-orange{
    border: 3px solid var(--color-orange);
}

.border-green{
    border: 3px solid var(--color-btn-green);
}

.border-red{
    border: 3px solid var(--color-new-bug);
}

.warning img{
    width: 50px;
    height: 50px;
    margin-right: 10px;
    position: relative;
}

code{
    padding: 10px;
    color: var(--color-white);
    background-color: #1e1f38;
    border-radius: var(--radius);
    margin-bottom: 15px;
}

.card-documentation-youtube {
    min-width: fit-content;
    background-color: var(--color-new-bug);
    color:white;
    padding: 10px;
    margin-bottom: 30px;
}

.card-documentation-youtube p {
    text-transform: initial;
    text-align: center;
    width: 65%;
}

.btn-all-youtube {
    border: 2px solid white!important;
    background-color: transparent;
    margin-left: 60px;
}

.video-documentation {
    width: 530px;
    height: 298px;
    box-shadow: 0 12px 18px 3px black;
}

.btn-access-video{
    margin-top: 10px;
    padding-right: 12px;
    cursor: pointer;
}

.btn-access-video img{
    width: 30px;
    height: 30px;
    top: 7px;
    right: 5px;
    position: relative;
}

    /* Account*/

.account {
    width: 70%;
    text-align: center;
}


.account > h3 {
    margin-bottom: 10px;
}

.account >input {
    width: 90%;
    text-align: center;
    padding: 5px;
    margin-bottom: 5px;
    margin-top: 5px;
    border:none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    margin: 20px auto;
}

.container-phone {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 92.5%;

}

.container-phone > input,select {
    text-align: center;
    padding: 5px;
    margin: 5px auto;
    border:none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

#indicatif {
    width: 15%;
    text-align: center;
    padding: 5px;
    margin-bottom: 5px;
    margin-top: 5px;
}

#phoneNumber {
    width: 80%;
}

.cards-mandate{
    width: calc(100% - 30px);
    margin: 10px auto;
    padding: 10px;
}

.content-info-mandat{
    width: 100%;
    border-collapse: collapse;
    text-transform: inherit;
}

.content-info-mandat .th{
    line-height: 35px;
}

.content-info-mandat .tr{
    line-height: 25px;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}

.content-info-mandat .iban{
    width: 40%;
}

.content-info-mandat .bic{
    width: 25%;
}

.content-info-mandat .validity{
    width: 20%;
}

.content-info-mandat .action{
    width: 10%;
}

.content-info-mandat th{
    font-size: 15px;
    text-align: center;
}

.content-info-mandat td{
    font-size: 18px;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.02);
    font-family: "Inter", sans-serif;
    padding: 0 20px;
}

.submit{
    background-color: var(--color-orange);
    color: var(--color-white);
    width: fit-content;
    padding: 5px 10px;
    margin-top: 15px;
    border: none;
    border-radius: var(--radius);
    display: block;
    text-transform: uppercase;
    font-size: 18px;
    box-shadow: var(--shadow);
}

.align_in_container_row{
    position: relative;
    top: -6px;
}

.submit img{
    width: 30px;
    height: 30px;
    position: relative;
    top: 2px;
}

.delete {
    width: fit-content;
    background-color: var(--color-new-bug);
    color: var(--color-white);
    padding: 5px 10px;
    margin: 15px auto;
    border: none;
    border-radius: var(--radius);
    font-size: 18px;
    align-items: center;
}

.cancel {
    width: fit-content;
    align-items: center;
    background-color: var(--color-grey-footer);
    color: var(--color-white);
    padding: 5px 10px;
    margin: 15px auto;
    border: none;
    border-radius: 5px;
    font-size: 18px;
}


/* Notifications */

.notifications{
    width: 100%;
    align-items: center;
    text-transform: initial;
}

.cb-notifications {
    width: 5%;
}

.lab-notifications {
    width: 80%;
    text-align: left;
}

/* CrawlScan */

.justify-around{
    justify-content: space-around!important;
}

/* Payment */
.productName{
    text-transform: uppercase;
    margin-bottom: 40px;
    color: var(--btn-logo-color);
    font-size: 40px;
    font-weight: bold;
    font-family: "RalewayBold", sans-serif;
}

.tarif{
    font-weight: bold;
}

.hr-step{
    position: relative;
    width: 75%;
    top: calc(100% - 53%);
}

.step-payment{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step{
    width: fit-content;
    padding: 8px 8px;
    border-radius: var(--radius);
    z-index: 2;
    font-size: 20px;
    font-family: "Raleway", sans-serif;
}

.finish-step{
    background-color: #00E676;
    border: 2px solid var(--color-btn-green);
    color: white;
}

.pending-step{
    color: black;
    background-color: var(--color-white);
    border: 2px solid var(--color-white);
}

.futur-step{
    color: white;
    background-color: var(--background-index);
    border: 2px solid var(--color-white);
}

/* Bug report */

.container-report{
    width: 90%;
    margin:0 auto;
    display: flex;
    justify-content: space-between;
}
.list{
    flex-direction: column;
}

.aside{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: initial;
}

.decalage{
    position: relative;
    left: -10px;
}

#trick-find img{
    width: 70px;
    height: 70px;
    margin-left: 30px;
}

#cmd{
    width: 20px!important;
    height: 20px!important;
    padding: 4px;
    top: 4px;
    margin: 0!important;
}

.btn-raccourcis{
    border-radius: 3px;
    border: 1px solid black;
    padding: 0 3px;
}

.menu h2{
    font-family: "RalewayBold", sans-serif;
    font-size: 23px;
}

.btn-nbr-bug{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 7px auto;
}

.bug-type{
    padding: 7px;
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    color: black;

}

.nbr-bug{
    width: fit-content;
    height: 30px;
    font-size: 20px;
    align-items: center;
    padding: 4px 6px 0 5px;
    font-family: "Inter", sans-serif;
    color: var(--color-white);
    border-radius: 15px;
    margin-right: 15px;
    text-align: center;
}


.component{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    padding: 13px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background-color: var(--color-white);
}

.component h2{
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.component p{
    overflow-wrap: anywhere;
}

.indicator{
    font-family: "Raleway", sans-serif;
    margin: 7px auto 0 auto;
}

.indicator-result{
    font-family: "Inter", sans-serif;
    color: grey;
    font-style: italic;
}

.content-btn-action{
    text-transform: uppercase;
}

.content-btn-action a{
    width: 100%;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    color: var(--color-white);
    font-family: "RalewayBold", sans-serif;
    font-size: 21px;
    padding: 6px 0;
    margin: 7px auto;
    text-align: center;
}

.content-btn-action form {
    width: 100%;
}

.content-btn-action button {
    border: none;
    cursor: pointer;
    width: 100%;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    color: var(--color-white);
    font-family: "RalewayBold", sans-serif;
    font-size: 21px;
    padding: 6px 0;
    margin: 7px auto;
    text-align: center;
    text-transform: uppercase;
}

.component hr{
    width: 80%;
    color: black;
    margin: 20px auto;
}

pre code{
    display: block;
    padding: 10px;
    background-color: #f5f5f5;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    color: #333333;
}

/* Report list */

.card-reportList{
    width: 100%;
    border-radius: var(--radius);
    background-color: var(--color-white);
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px auto;
}
.led{
    align-items: center;
    width: 60px;
}

.led-report{
    width: 30px;
    height: 30px;
    background-color: red;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.description-reportList{
    width: 90%;
    height: 100%;
    text-align: center;
}

.description-reportList th{
    font-weight: bold;
}

.description-reportList td{
    font-family: "Inter", sans-serif;
    color: grey;
    overflow-wrap: anywhere;
}

.row-url{
    border-top: solid 0.5px black;
}

.card-reportList a{
    margin: 0 10px 0 auto;
}

/* Footer */

footer{
    width: 100%;
    position: relative;
    bottom: 0;
    padding: 50px 5px 15px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Raleway", sans-serif;
    background: linear-gradient( transparent, 10%, var(--color-grey-footer));
    color: var(--color-white);
    z-index: 2;
}

footer .title{
    color: var(--color-btn-green);
    font-family: "Inter", sans-serif;
    font-weight: bold;
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: black 1px 0 3px;
}

footer .container-row{
    width: 70%;
    display: flex;
    justify-content: space-between;
    margin: 20px auto;
}

.h-in-footer{
    color: var(--color-white);
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    text-transform: initial;
}

footer a{
    color: var(--color-white);
}

footer .tierce_card a {
    line-height: 30px;
}

.cta-facebook{
    margin: -5px auto 15px auto;
    padding: 15px 10px;
    background-color: #3b5998;
    display: flex;
}

.cta-facebook img{
    width: 30px;
    height: 30px;
    margin-right: 10px;
    margin-top: -3px;

}

.container-report-tablette{
    width: 80%;
}

/* Dashboard Admin */
.first-report{
    width: 100%;
}
.form-first-report{
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 5px auto;
    padding: 5px;
    height: 40px;
    display: flex;
    justify-content: end;
    align-items: center;
    background-color: white;
}

.form-first-report a{
    color: black;
    padding: 5px 10px;
    background-color: #bbbbbb;
    font-weight: bold;
    border-radius: var(--radius);
}

.form-first-report input[type="text"]{
    width: 60%;
    padding: 5px;
    border:none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-first-report input[type="checkbox"]{
    margin-left: 5px;
}

.form-first-report input[type="submit"]{
    width: fit-content;
    border:none;
    padding: 5px 15px;
    background-color: var(--color-btn-green);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    cursor:pointer;
}



.companiesList {
    width: 95%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-spacing: 0;
    text-align: center;
    overflow: hidden;
}

.companiesList thead tr{
    font-family: "Raleway", serif;
    background-color: var(--color-orange);
    line-height: 35px;
    color: white;
}

.companiesList tbody tr:nth-child(odd) {
    background-color: #d7d7d7;
}

.companiesList tbody tr {
    font-family: "Inter", sans-serif;
    border-bottom:1px solid #d2d2d2;
    color:black;
    line-height: 30px;
}

.companiesList tbody tr:hover{
    background-color: #dbf6d9;
}

.companiesList a{
    color: black;
    text-decoration: none;
}

.enclosure{
    border-radius: 25px;
    padding: 4px 9px;
    font-size: 14px;
    color: white;
}

        /* details */

.compo-admin h2{
    margin-bottom: 0;
    font-weight: bold;
}

.compo-admin span{
    font-family: "Inter", sans-serif;
    margin-bottom: 20px;
    margin-top: 4px;
    color: #575757;

}

.status-company{
    font-size: 22px;
    padding: 5px 20px;
    margin-bottom: 8px;
    color: white!important;
    border-radius:25px;
    box-shadow: var(--shadow);
    font-weight: lighter;
}

.component-mandate{
    width: 100%;
    display: flex;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 5px auto;
}

.container-info-mandate{
    display: flex;
    flex-direction: column;
    font-size: 15px;
}

.container-info-mandate span{
    margin-bottom: 0;
    margin-top: 5px;
}

.led-company-details{
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.lock{
    border-radius: 25px;
    box-shadow: var(--shadow);
    padding: 5px 20px;
    width: fit-content;
    font-size: 23px;
}

.lock a{
    color: white;
    font-weight: bold;
}

.lock button{
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 23px;
    font-weight: bold;
}

.fix-css-details{
    width: 75%!important;
    margin-top: 0;
}

.dataBugs{
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px!important;
}

.dataBugs span{
    margin-bottom:0;
}

.fix-css-details table {
    border-spacing: 0;
    border-collapse: collapse;
    margin-left: initial;
    font-family: "Inter", sans-serif;
}

.fix-css-details table tr{
    height: 30px;
}

.fix-css-details table tr td{
    padding: 0 3px;
    vertical-align : middle;
    line-height: 0;
    text-align: left;
}

.lockedPoint{
    width: 20px;
}

/* Metrics */
.choose-duration{
    position: relative;
    width: 100%;
    height: 40px;
    padding: 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #dedede;
    font-family: "Inter", sans-serif;
    box-shadow: var(--shadow);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-bottom: 10px;
}

.choose-duration .fixed {
    position: fixed;
    top: 0;
}

.btn-choose-duration{
    border-radius: var(--radius);
    background-color: var(--color-orange);
    box-shadow: var(--shadow);
    padding: 5px 10px;
    text-align: center;
    color: #FFF;
}

@media only screen and (max-width: 1280px) {

    /* Index*/

    .citation{
        width: 100%;
        font-size: 17px;
    }

    .citation img{
        width: 90px;
        height: 90px;
    }

    .green{
        padding: 3% 0 5% 0;
        margin: 5% -10% 2% -10%;
    }

    .sliderIndex{
        margin-right: 60px;
    }

    /* Documentation */
    .menu{
        margin: -45px 0 0 0;
    }

    /* Authentication*/

    .form > input {
        width: 100%;
    }

    .form input[type=submit]{
        width: initial;
    }

    .w95{
        width: 95%!important;
    }

    /* bugReport */

    .container-report-tablette{
        width: 80%;
    }

    .container-report{
        flex-direction: column;
    }

    .w100{
        width: 100%!important;
    }

    .content-btn-action{
        flex-direction: row;
    }

    .content-btn-action a{
        margin: 7px 11px;
    }

    .bug-type{
        font-size: 18px;
    }

    .nbr-bug{
        font-size : 18px;
    }

    .menu h2{
        font-size: 20px;
    }

    .order1{
        order: 1;
    }

    .order2{
        order: 2;
    }

    .order3{
        order: 3;
    }

    .decalage{
        left: 0;
    }
}

@media only screen and (min-width: 700px) and (max-width: 950px) {

    /* Index*/
    .green{
        padding: 3% 0 5% 0;
        margin: 5% -10% 2% -10%;
    }

    .sliderIndex{
        margin-right: 60px;
    }


    #pricing .cards{
        padding: 10px 6px;
        width: 47%;
    }

    .halo-green {
        box-shadow: 0 0 9px 6px #00E676;
    }

    .cards{
        padding: 10px 15px;
    }

    .cards_detail h3{
        font-size: 20px;

    }

    /* Documentation */
    .menu{
        margin: -45px 0 0 0;
    }

    code{
        padding: 2px 5px;
    }

}

@media only screen and (max-width: 850px) {

    /* Index */

    .citation img {
        display: none;
    }

    .green-pill {
        padding: 10px 40px;
        text-transform: inherit;
    }

    /*.intro{
        width: 80%;
        position: relative;
        left: -13%;
        margin-top: 0!important;
    }*/

    #guidelineMotion{
        width: 100%;
    }

    .li-what-signal{
        display: none;
    }

    .active-li {
        display:block;
        left: 0;
    }

    .slider{
        display: none;
    }

    .ul-index{
        margin: auto;
        width: 30%;
        top: 30px;
        padding: 0;
    }

    .container-slider-index {
        width: 50%;
        top: 0;
        height: 270px;
    }

    .img-slider-index {
        width: 100%;
        height: 100%;
    }



    /* bugReport */
    .content-btn-action a{
        margin: 7px 7px;
        padding: 6px 5px;
    }

    .form > input{
        padding: 10px;
    }

    /* Nav */
    .nav-menu{
        display: none;
    }
    .nav-toggler{
        display: block;
        margin: 5px 0;
        background: none;
        border: none;
        position: relative;
        z-index: 999999999;
    }
    .nav-toggler img{
        width: 30px;
        height: 30px;
        z-index: 9999;
    }
    .nav-black{
        background-color: var(--background-index);
    }

    .nav-item{
        margin: 45px 0;
    }

    .nav-menu.show {
        position: absolute;
        top: 30px;
        left: 0;
        width: 100%;
        display: block;
        height: 100%;
        padding: 0;
        text-align: center;
        z-index: 100;
    }

    /* Nav Company */

    .navCompany-toggler-icon{
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--color-orange);
        margin: 5px 0;
    }
    .navCompany-item{
        margin: 45px 0;
    }
    .company{
        background-color: var(--color-orange);
    }
    /* Menu Interne */

    .menu-documentation{
        width: 57px;
    }

    .menu-rapport{
        margin: 26px 0 0 0;
    }

    .content-nbr-report{
        width: 75%;
        display: flex;
    }

    .viewLargeMenu{
        width: 100%!important;
        display: block!important;
    }

    .menu-rapport img{
        margin: -40px 0 0 0;
    }

    .menu{
        margin: -32px 0 0 0;
        display: flex;
        height: 50px;
        width: 100%;
        background-color: var(--background-modal-color);
    }

    .menu h2{
        font-size: 17px;
        display: none;
    }

    .bug-type{
        font-size: 15px;
        display: none;
    }

    .nbr-bug{
        font-size: 13px;
        height: 23px;
        margin: 5px 5px 5px 0;
    }

    .navDashboard-toggler-icon{
        display: block;
        width: 7px;
        height: 3px;
        background-color: var(--color-orange);
        margin: 5px 0;
    }

    .body{
        position: relative;
    }

    .menu.show{
        position: absolute;
        top: 30px;
        left: 0;
        width: 75%;
        height: 100%;
        margin: 20px 0 0 0;
        background-color: var(--color-white);
        z-index: 8;
        display: block;
        border-right: 3px solid var(--color-orange);
    }


    .menu.show h2{
        display: block;
    }
    .menu.show a span.bug-type{
        display: block;
    }
    .menu h4,
    .menu ul{
        display: none;
    }
    .menu.show h4,
    .menu.show ul{
        display: block;
    }
    .menu.show ul li{
        margin: 20px 0;
    }
    .container-documentation{
        flex-direction: column;
    }
    .menu a{
        justify-content: flex-end;
    }
    .menu.show a{
        justify-content: space-around;
    }
    .anti-margin{
        margin: auto!important;
    }

    /* Feature */
    .feature_name {
        font-size: 40px;
    }

    .grey-form2{
        left:-74%;
    }


    /* Dashboard */
    .dashboard{
        flex-direction: column;
    }

    /* Payment */

    .w60{
        width: 100%;
    }
}

@media only screen and (max-width: 699px){

    /* Index */
    .intro{
        width: 100%;
    }

    .green-pill{
        font-size: 15px;
    }

    .container-slider-index {
        width: 70%;
    }

    #pricing .cards{
        width: 90%;
    }

    .img-in-price-card {
        width: 70px!important;
    }

    .h-in-price-card {
        font-size: 40px!important;
    }

    .price-in-card {
        font-size: 28px;
    }

    #numbers-bar .tierce_card {
        width: 100%;
    }

    /*Menu interne*/
    .menu-documentation{
        position: fixed;
        top: 94%;
        left: 0;
        width: 40px;
        height: 40px;
        background-color: var(--color-orange);
        border-radius: 0 3px 3px 0;
        border: none;
    }

    .nav-toggler{
        margin: 2px 0 0 -7px;
        padding: 0 0 0 6px;
    }

    #navDocumentation-toggler img {
        margin: -8px 0 0 1px!important;
    }

    .menu{
        margin: -40px 0 0 0;
    }

    .menu-rapport{
        margin-top: 24px!important;
    }

    .nav-toggler img{
        width: 23px;
        height: 23px;
        border: none;
    }

    /* Authentification */
    .container{
        width: 93%;
    }
    .container-row {
        flex-direction: column;
        width: 93%;
    }

    .w90 {
        width: 100%;
    }

    .w40 {
        width: 100%;
    }

    .form input {
        margin: 5px auto;
    }

    .form input[type=submit] {
        width: 90%;
        font-size: 18px;
    }

    /* Dashboard */
    h1{
        font-size: 30px;
    }

    .cards {
        width: 100%;
        margin: 10px auto;
        padding: 10px 5px;
    }
    .number_cards{
        padding: 4px 50px;
    }
    .cards_promo ul {
        padding-inline-start: 15px;
    }

    /* Account */
    .account{
        width: 95%;
    }

    /* Features */
    .left{
        width: 100%;
    }
    .right{
        width: 100%;
    }

    .text-after-title{
        order: 2;
    }

    .grey-form2 {
        position: relative;
        width: 500px;
        height: 500px;
        left: -67%;
        top: 145px;
        margin-top: -500px;
    }
    /* Index */
    .ul-index{
        width: 70%;
        top: 0;
        padding: 0;
    }

    .btn-try img{
        display: none;
    }

    .green{
        margin: 5% -15% 2% -15%;
    }

    .rotation-none h2,
    .rotation-none p{
        width: 80%;
        margin: 15px auto;
    }

    .index h4{
        text-align: center;
    }
    .cards_detail h3{
        font-size: 20px;
    }

    .processus img{
        width: 100%;
        margin: 0 3%;
    }

    .numbers-index .tierce_card{
        margin: 40px auto;
    }

    /* Report Bug List */
    .container-report{
        width: 100%;
    }
    .led {
        display: none;
    }
    .card-reportList{
        flex-direction: column;
    }
    .card-reportList a {
        margin: 5px auto;
    }
    .description-reportList{
        font-size: 15px;
    }

    /* Report Bug */
    .content-btn-action{
        flex-direction: column;
    }
    .content-btn-action a{
        margin: 10px 0;
    }

    /* Download */
    .space {
        text-align: center;
    }

    /* Documentation */
    h2 {
        font-size: 23px;
    }

    .h3_documentation {
        text-align: center;
        margin: auto;
    }

    .card-documentation-youtube p {
        display: none;
    }

    .card-documentation-youtube .btn-all-youtube{
        margin: auto;
    }

    .card_doc{
        overflow-wrap: anywhere;
    }
    code{
        padding: 5px;
    }

    /* Register */
    .btn-download{
        flex-direction: column;
        height: auto;
        width: 100%;
    }
    .welcome{
        width: 80%;
    }
    .newUser input[type="text"] {
        width: 100%;
    }
    .newUser a{
        margin-top: 20px;
    }

    /* Payment */

    .w60{
        display: none;
    }
}

@media only screen and (max-width: 449px){

    .intro_mobile{
        display: block;
    }

    .intro{
        display:none;
    }

    .citation{
        display: none;
    }

    .container-slider-index {
        width: 87%;
    }

    .processus{
        display: none;
    }

    /*Menu interne*/
    .menu{
        margin: -30px 0 0 0; /* -16px 0 0 0 */
    }

    /* Footer */
    footer .tierce_card{
        width: 100%;
        align-items: normal;
    }

    /* Features */
    .space-feature {
        margin: 50px auto;
    }

    .headband h2 {
        font-size: 35px;
        margin-right: 20px;
    }

    .headband .btn-action{
        padding: 5px 14px;
    }

    .feature_name {
        font-size: 30px;
    }

    .feature_description p {
        font-size: 17px;
        margin: 15px 0;
    }

    .green-form-right {
        right: 43%;
        top: 230px;
    }

    .grey-form2 {
        width: 400px;
        height: 400px;
        left: -230px;
        top: 228px;
        margin-top: -400px;
    }

    /* BugReport */
    #trick-find img{
        margin-left: 5px;
    }

}

@media only screen and (max-width: 290px){
    /*Menu interne*/
    .flag-nav{
        display: none;
    }

}
