/* Global Reset */
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;700&display=swap");


*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
}

/* Base Styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #4a4a4a;
    line-height: 1.5em;
    letter-spacing: -0.1px;
    min-width: 1024px;
    background-color: #f5f5f5;

}

#conteneur {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background-color: #eeeeee;
    border-radius: 4px;
    overflow: auto;
    background-size: cover;
}

.filepond--progress {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.filepond--progress__circle {
    width: 80px;
    height: 80px;
    border: 10px solid #70a4bb;
    border-top: 10px solid transparent;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.filepond--credits {
    display: none !important;
}

/* Table Styles */
table tr td,
table tr th {
    vertical-align: top;
    padding: 8px;
}

/* Input Control */
.ts-control {
    padding: 4px 8px;
    border: 1px solid #CCCCCC;
    line-height: 28px !important;
    border-radius: 4px;
    background-color: #fff;
}

/* Layout Styles */
.content-app {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 260px;
    right: 0;
    overflow-y: auto;
    background: url('../assets/images/online.png') no-repeat center #eee;
    background-size: cover;
}

#sidebar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 260px;
    padding: 2px;
    background-color: #fff;
    border-right: solid 1px #cccccc;
}

/* Typography */
h3 {
    font-size: 1.25em;
    font-weight: 600;
    padding: 10px;
    color: #333;
}

#accordion div{
    margin-top: 0!important;
    padding-top: 0!important;
}


#accordion li {
    margin-top: 15px!important;
    list-style-type: none!important;
    margin-left: -20px!important;
}

#accordion li a {
    color: #525151 !important;
    padding: 5px!important;
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
    text-decoration: none;
}

#accordion h3 {
    margin: 0;
    font-weight: 600;
    font-size: 1em;
}

#accordion ul{
    margin: 0!important;
}


.container{
    max-width: 1000px;
    margin: auto;
    background-color: #fff;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    margin-bottom: 20px;
    border: solid 1px #cccccc;
    padding-left: 40px;
    padding-right: 40px;
}

.containe form{
    max-width: 450px;
    margin: auto;
}

.results{
    max-width: 800px;
    margin: auto;
    padding: 20px;
    color: #333333;
    font-size: 17px;
    line-height: 18pt;
}


h2 {
    text-align: center;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

input, select, textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
    resize: vertical;
    height: 100px;
}

.container button {
    background: linear-gradient(90deg, #f2e140 0%, #991e29 100%);
    border: none;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 17px!important;
}

button:hover {
    background-color: #00bf63;
}



/* Style pour le menu de navigation */
.nav-menu {
    list-style: none; /* Enlever les puces de la liste */
    display: flex; /* Utiliser flexbox pour aligner les éléments horizontalement */
    margin: 0; /* Enlever les marges */
    padding: 0; /* Enlever le padding */
}

.nav-menu li {
    margin: 0 15px; /* Espacement horizontal entre les éléments */
}

.nav-menu a {
    color: #00bf63; /* Couleur du texte des liens */
    text-decoration: none; /* Enlever le soulignement des liens */
    font-size: 16px; /* Taille de la police des liens */
    transition: color 0.3s; /* Effet de transition pour la couleur */
}

.nav-menu a:hover {
    color: #00bf63; /* Couleur du texte au survol */
}

/* Style pour le menu hamburger */
.nav-toggle {
    display: none; /* Cacher le menu hamburger par défaut */
    flex-direction: column; /* Aligner les barres verticalement */
    cursor: pointer; /* Changer le curseur en pointeur */
}


.results header {
    background-color: #00bf63;
    color: #ffffff;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    width: 99%;
    margin: auto;
}

.results header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.results .container {
    width: 90%;
    max-width: 800px;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    border: solid 1px #eeeeee;
}

.results .result-container {
    padding: 5px;
    margin-top: 20px;
    display: grid;
}

.results .result-card {
    background: #e9ecef;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}


.results .result-card h2 {
    margin-top: 0;
    color: #333;
}

.results .result-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .results .result-container {
        grid-template-columns: 1fr;
    }
}

/****
Form user register
 */


.add-account .container {
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 4px;
    max-width: 400px;
    width: 100%;
    border: solid 1px #eeeeee;

}

/* Titre */
.add-account h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* Groupe de formulaires */
.add-account .form-group {
    margin-bottom: 15px;
}

/* Étiquettes */
.add-account .form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

/* Champs de saisie */
.add-account .form-group input[type="text"],
.add-account .form-group input[type="email"],
.add-account .form-group input[type="password"],
.add-account .form-group select,
.add-account .form-group input[type="url"]{
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

/* Champ de sélection */
.add-account .form-group select {
    appearance: none;
    background-color: #fff;
}

/* Bouton de soumission */
.add-account button[type="submit"] {
    width: 100%;
    background: linear-gradient(90deg, #f2e140 0%, #991e29 100%);
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-account button[type="submit"]:hover {
    background-color: #00bf63;
}

/* Effet de focus sur les champs de saisie */
.add-account .form-group input[type="text"]:focus,
.add-account .form-group input[type="email"]:focus,
.add-account .form-group input[type="password"]:focus,
.add-account .form-group select:focus,
.add-account .form-group input[type="url"]:focus{
    border-color: #00bf63;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}
input[type="text"],
input[type="number"],
button,
input[type="email"],
input[type="password"],
input[type="url"],
select{
    padding: 5px 10px;
    font-size: 17px;
}

textarea{
    padding: 10px;
}

/* Style pour petits écrans */
@media (max-width: 500px) {
    .add-account .container {
        padding: 15px 20px;
    }

    .add-account button[type="submit"] {
        font-size: 14px;
    }
}


/* Style du loader */
#loader {
    margin-left: calc(50% - 40px);
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}


.spinner {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #00bf63;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.container td{
    border-bottom: solid 1px #333333;
    border-left: solid 1px #333333;
    border-right: solid 1px #333333;
}

.no-border{
    border: none!important;
    border: 0!important;
    border: unset!important;
}

.model-link{
    background: #00bf63!important;
    border-radius: 3px;
    padding: 5px;
    color: #fff;
    text-decoration: none;
}

a{
    color: #00bf63;
}

#accordion .bx{
    color: #00bf63;
    font-size: 20px;
}

textarea{
    font-family: Arial;
    font-size: 17px;
}

.pagination{
    width: 100%;
    text-align: center;
}

.pagination li{
    display: inline-block;
    margin: 5px;
}
.pagination li a{
    text-decoration: none;
    font-size: 18px;
    color: #00bf63;
}

#titleGeneratorForm {

    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
}

#titleGeneratorForm .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

#titleGeneratorForm .form-group {
    flex: 1;
}

#titleGeneratorForm .full-width {
    margin-bottom: 20px;
}

#titleGeneratorForm label {
    font-size: 16px;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

#titleGeneratorForm input[type="text"],
#titleGeneratorForm input[type="number"],
#titleGeneratorForm select {
    width: 100%;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

#titleGeneratorForm input[type="text"]:focus,
#titleGeneratorForm input[type="number"]:focus,
#titleGeneratorForm select:focus {
    border-color: #00bf63;
    outline: none;
}

#titleGeneratorForm .btn-submit {
    background-color: #00bf63;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

#titleGeneratorForm .btn-submit:hover {
    background-color: #038a49;
}



.not-display{
    display: none;
}

.center-text{
    text-align: center;
}

.right-text{
    text-align: right;
}


.line-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    color: #666; /* Couleur du texte */
    font-weight: bold;
    font-family: Arial, sans-serif;
    margin-top: 10px;
}

.line-with-text::before,
.line-with-text::after {
    content: "";
    flex: 1;
    border-bottom: 2px solid #666;
}

.line-with-text::before {
    margin-right: 10px; /* Espacement à gauche du texte */
}

.line-with-text::after {
    margin-left: 10px; /* Espacement à droite du texte */
}

.no-account {
    font-family: Arial, sans-serif; /* Choix de la police */
    font-size: 14px; /* Taille de la police */
    color: #333; /* Couleur du texte */
    text-align: center; /* Centrer le texte */
    margin-top: 20px; /* Espacement au-dessus */
}

.no-account a {
    color: #00bf63; /* Couleur du lien */
    text-decoration: none; /* Supprimer le soulignement par défaut */
    font-weight: bold; /* Mettre le texte en gras */
    margin-left: 5px; /* Espacement entre le texte et le lien */
}

.no-account a:hover {
    text-decoration: underline; /* Soulignement au survol */
    color: #058d4c; /* Couleur du lien au survol */
}





.feedback-button {
    position: fixed;
    right: -52px;
    top: calc(50% - 30px);
    transform: translateY(-50%);
    z-index: 1000;
    background: linear-gradient(90deg, #f2e140 0%, #991e29 100%);
    color: white; /* Couleur du texte */
    text-align: center;
    border-radius: 5px 5px 0 0; /* Arrondi du bord gauche */
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 16px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3); /* Ombre */
    rotate: -90deg;
}

.feedback-button a {
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    padding-top:4px;
    padding-bottom: 4px;
    padding-left: 16px;
    padding-right: 16px;
}

.feedback-button:hover {
    background-color: #00bf63; /* Couleur lors du survol */
}

.hr{
    width: 95%;
    height: 1px;
    background-color: #CCCCCC;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.button-menu .bx{
    font-size: 22px;
    position: absolute;
    color: #333333;
}

.brand button{
    position: absolute;
    margin-top: -10px;
    margin-left: 180px;
}

.brand-name{

}

.brand a{
    display: block;
    padding: 10px;
    font-size: 30px;
}

.brand img{
    position: absolute;
    width: 180px;
    margin-top: -10px;
}

.brand td{
    vertical-align: middle;

}

.arial-file{
    max-width: 1000px;
    margin: auto;
}

.arial-file ul{
    margin-left: 10px;
    margin-top: 20px;
}

.arial-file li{
    display: inline-block;
    font-size: 22px;
}

.arial-file li .bx{
    margin-top: 10px;
}

.info{
    text-align: center;
    font-size: 14px;
    color: #5a6268;
    margin-top: 10px;
}

.info a{
    font-size: 19px;
}


/*
Search form
 */

.search-form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-form input[type="text"] {
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    width: 200px!important;
}

.search-form button.form-button2 {
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 120px;
}

.search-form input[type="text"],
.search-form button.form-button2 {
    border: none;
    margin: 0;
    display: inline-block;
}

.search-form input[type="text"] {
    border-radius: 5px 0 0 5px;
    flex-grow: 1;
    border: solid 1px #00bf63;
    border-right: none;
}

.search-form button.form-button2 {
    border-left: none;
    border-radius: 0 5px 5px 0;
}

.no-shadow{
    box-shadow: none!important;
    box-shadow: unset!important;
}

.no-border{
    border: none!important;
    border: 0!important;
    border: unset!important;
}


/* Style global de la barre de défilement */
::-webkit-scrollbar {
    width: 4px; /* Largeur de la barre de défilement verticale */
    height: 4px; /* Hauteur de la barre de défilement horizontale */
}

/* Style du "thumb" (partie déplaçable de la barre de défilement) */
::-webkit-scrollbar-thumb {
    background-color: #888; /* Couleur du thumb */
    border-radius: 4px; /* Coins arrondis du thumb */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Couleur du thumb au survol */
}

/* Style de la piste (partie de la barre de défilement où le thumb se déplace) */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* Couleur de la piste */
    border-radius: 4px; /* Coins arrondis de la piste */
}


#editor{
    color: #333333;
    font-size: 17px;
}

.home-header-content2{
    width: 90%;
    margin: auto;
    min-height: 120px;
    background-color: #fff;
    border: solid 1px #ccc;
    margin-top:40px;
    border-radius: 20px;
    padding-top: 10px;
}


.home-header-content3{
    width: 90%;
    margin: auto;
    min-height: 80px;
    background-color: #fff;
    border: solid 1px #ccc;
    margin-top:40px;
    border-radius: 20px;
    padding-top: 10px;
}

.home-header-content{
    width: 90%;
    margin: auto;
    min-height: 350px;
    background: linear-gradient(90deg, #f2e140 0%, #991e29 100%);
    margin-top:40px;
    border-radius: 20px;
    padding-top: 10px;
}


.home-header-content .search-container {
    display: flex;
    align-items: center;
    width: 580px;
    max-width: 600px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
    margin-left: 20px;
}

.home-header-content .search-input {
    flex: 1;
    border: none;
    padding: 15px;
    font-size: 16px;
    outline: none;
}

.home-header-content .search-button {
    background-color: #991e29;
    border: none;
    padding: 15px 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eee;
    width: 120px;
}

.home-header-content .search-button svg {
    width: 20px;
    height: 20px;
}

.home-header-content .search-button:hover {
    background-color: #880a15;
}



#community{
    margin-right: 0;
    top: 80px;
}

#community a{
    padding: 12px 18px;
    background-color: #FFFFFF;
    border-radius: 6px;
    color: #333333;
    font-size: 18px;
    border: solid 1px #333333;
}

.export li{
    display: inline-block;
    margin: 10px;
}

.export li .bx{
    font-size: 25px;
}



/* Style général pour les lignes fictives */
.loading-line {
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    margin: 5px 0;
    border-radius: 20px;
}

/* Animation pour simuler un chargement */
@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Centrer les lignes de chargement */
.loading-container {
    width: 80%;
    margin: 20px auto;
}

/* Tailles différentes pour chaque ligne */
.line-1 {
    width: 90%;
}
.line-2 {
    width: 75%;
}
.line-3 {
    width: 60%;
}
.line-4 {
    width: 85%;
}
.line-5 {
    width: 50%;
}

/* Gradient subtil */
.gradient-line {
    background: linear-gradient(90deg, #f2e140 0%, #991e29 100%);
}





#info-box {
    width: 100%;
}


#search-bar {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}



.main-crate-button{

    width: 100%;
    margin: auto;
}

.ql-formats .fas{
    color: #4a4a4a;
}

.main-crate-button{

}

.main-crate-button button{
    width: 100%;
    cursor: pointer;
    border: solid 1px #777;
    color: #333333;font-weight: bold;
    border-radius: 5px;
    background: #FFFFFF;
}

.main-crate-button button:hover{
    background: #f2e140;
    border: solid 1px #f2e140;
}

h1, h2, h3, h4, h5{
    color: #4a4a4a!important;
}

.bg-radient{
    background: linear-gradient(90deg, #f2e140 0%, #991e29 100%);
    border: unset!important;
    border:none!important;
    color: #fff!important;
}

#new-projet{
    font-weight: 700;
    color: #333;
}


#accordion .bx{
    color: #000!important;
}



.ui-accordion .ui-accordion-header {
    background: #fff;
    color: #333333;
    border: 1px solid #fff;
    font-weight: bold;
}

.ui-accordion .ui-accordion-content {
    background: #f8f9fa;
    border-top: 1px solid #ddd;
}

.ui-accordion .ui-accordion-header.ui-state-active {
    background: #991e29;
    color: #fff!important;
    border-color: #991e29;
}

.ui-accordion .ui-accordion-content {
    background: #f8f8f8;
}
.brand-name{
    font-size: 30px;
}
.collaspe{
    background: unset;
    cursor: pointer;
}

.brand button:hover{
    background: unset;
}

#sidebar {
    transition: transform 0.3s ease;
}

#sidebar.collapsed {
    transform: translateX(-250px);
}

table {
    border-collapse: collapse;
}

td,th{
    border: solid 1px #333333;
    padding: 2px;
}

.multiselect-dropdown-search,
.form-control{
    height: 38px!important;
    font-size: 18px;
}
.multiselect-dropdown-list input[type=checkbox],
.multiselect-dropdown-list label{
    display: inline-block;
}

.multiselect-dropdown-list{
    cursor: pointer;
}

thead{
    background: #d7d7c3;
}



.t-doc{
    color: #eee;
}

.products-list td{
    padding: 2px;
}

/* Appliquer une couleur de fond pour les lignes impaires */
.altern-color tr:nth-child(odd) {
    background-color: #ffffff;
}

/* Appliquer une autre couleur pour les lignes paires */
.altern-color tr:nth-child(even) {
    background-color: #f2f2f2;
}
.no-background{
    background-color: none!important;
    background: none!important;
}

.button{
    padding: 6px 12px;
    background: linear-gradient(90deg, #f2e140 0%, #991e29 100%);
    border-radius: 5px;
    color: #fff;
}

.c-s-cat{
    display: inline-block!important;
    background-color: #EEEEEE;
    padding: 5px 12px;
    border-radius: 5px;
    margin: 5px;
}

.signatures{
    margin: 10px;
}
.signatures ul{
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Adds 10px space between flex items */
}
.signatures ul li{
    flex: 1;
    border: solid 1px #333;
    border-radius: 5px;
    list-style: none;
    padding: 10px 20px;
    text-align: center;
}


/* Réduire la taille du titre */
.swal2-title-custom {
    font-size: 18px !important;
}

/* Aligner les boutons horizontalement */
.swal2-actions-custom {
    display: flex !important;
    justify-content: center !important;
    gap: 10px; /* Ajouter un espace entre les boutons */
}

/* Style du bouton de confirmation */
.swal2-confirm-button {
    background-color: #e75e5e !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 8px 16px !important;
    display: inline-block!important;
    width: 150px!important;
}

/* Style du bouton d'annulation */
.swal2-cancel-button {
    background-color: #425985 !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 8px 16px !important;
    display: inline-block!important;
    width: 150px!important;
}


#list-t90 li{
    display: inline-block;
    margin-left: 20px;
}

#list-t90 li a{
    background: #f2e140;
    padding: 6px 13px;
    border-radius: 5px;
    color: #000;
    font-size: 17px
}

#devi-factures li{
    display: block;
    margin-top: 5px;
    margin-left: 12px;
}

#devi-factures li a{
    color: #333;
    font-size: 18px;
}

#devi-factures li a i{
    color: #dc3545;
}

/* Change la couleur de l'icône pour chaque type de notification */
.swal2-icon.swal2-success {
    color: #28a745 !important; /* Vert */
}

.swal2-icon.swal2-error {
    color: #dc3545 !important; /* Rouge */
}

.swal2-icon.swal2-warning {
    color: #ffc107 !important; /* Jaune */
}

.swal2-icon.swal2-info {
    color: #17a2b8 !important; /* Bleu */
}

.swal2-icon.swal2-question {
    color: #007bff !important; /* Bleu foncé */
}

.search-form input[type=date],
.search-form input[type=text]{
    max-width: 250px;
    height: 30px;
    width: 200px!important;
    border: solid 1px #222;
    border-radius: 5px;
}

.search-form button{
    width: 60px;
    margin-left: 10px;
}

.h-search{
    width: 100%;
    text-align: right;
    background-color: red;
    margin-top: 40px;
    position: relative;
}
.search-form{

    right: 1%;
}
.stocks td{
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
}


.user-box{
    position: absolute;
    bottom: 20px;
}
.user-box .bx{
    font-size: 20px!important;
}

.user-box td {
    width: 50px;
    vertical-align: middle; /* Centre verticalement */
    text-align: center; /* Centre horizontalement */
    padding: 10px;
}

.header-table{
    background: linear-gradient(90deg, #f2e140 0%, #e09788 100%);

}

.header-table td,
.header-table th{
    border: solid 1px #333333!important;
}
.fa-trash{
    color: #e09788;
}


.swal2-styled{
    background: linear-gradient(90deg, #f2e140 0%, #991e29 100%);
    padding: 8px 15px;
}

.link-button{
    background: #eee;
    padding: 5px 10px;
    border-radius: 5px;
    color: #000;
    font-size: 17px;
    border: solid 1px #333;
}