﻿/* Colors */

body {
    font-family: 'Segoe UI', 'Inter', sans-serif;
}

.navbar-blue {
    background: #2A2E3F;
}

.bg-blue {
    background-color: #2A2E3F;
}

.text-grey {
    color: #707070;
}

.bg-light-gray {
    background-color: #f3f5fb;
}

.subtitle {
    font-size: 1.25em;
    font-weight: bold;
    color: #0277ED;
    margin-bottom: 0.8em;
}

.alinea {
    margin-left: 1.938rem;
}

.left-panel {
    border-right: solid;
    border-color: #DBDBDB;
    min-width: 20rem;
}

.button-primary {
    border-width: 0.1em;
    border-radius: 0.5em;
    background-color: blue;
    border-color: black;
    width: 15em;
    padding: 0.5em;
}

btn.btn-primary[disabled] {
    background-color: #F3F3F3;
}

.button-secondary {
    border-width: 0.1em;
    border-radius: 0.5em;
    background-color: white;
    border-color: black;
    width: 15em;
    padding: 0.5em;
}

.custom-icon {
    width: 3.5em;
    height: 3.5em;
}

.min-width15 {
    min-width: 15rem;
}

.w-3rem {
    width: 3rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.margin-component {
    margin-left: 1.938rem;
}

/* ------------------------- LAYOUTS -------------------------- */
.full-screen {
    height: 100vh;
    margin-top: 1.6rem;
}

.split-screen {
    display: grid;
    grid-template-columns: 1fr 3px 1fr;
    height: 100vh;
    margin-top: 1.6rem;
}

.left {
    min-width: 25rem;
    margin-left: 1.938rem;
}

.right {
    min-width: 25rem;
    margin-left: 4rem;
}

.divider {
    background-color: #ccc;
    width: 3px;
}

/* ------------------------ END LAYOUTS ------------------------- */


/* ------------------------- INPUT FIELDS -------------------------- */
/* Text Input ne peut être design qu'ici */
.custom-input-text {
    width: 100%;
    height: 100%;
    padding: 0.5rem 1rem 0.5rem 5.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    background-color: #fff;
    outline: none;
}

.custom-form-group {
    position: relative;
    /*height: 2.188rem;*/
   /* margin-bottom: 1rem;*/
    max-width: 25rem;
    min-width: 15rem;
}

.custom-form-label {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 5rem;
    font-size: 0.75rem;
    color: #707070;
    pointer-events: none;
    white-space: nowrap;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-form-input:focus {
    border-color: #007bff;
}


/* ------------------------- END INPUT FIELDS -------------------------- */

/* Effects */

.rounded-15px {
    border-radius: 15px;
}

.rounded-left-15px {
    border-radius: 15px 0 0 15px;
}

.rounded-top-15px {
    border-radius: 15px 15px 0 0;
}

.shadow {
    box-shadow: 0px 3px 6px #00000029;
}

/* Labels */
.inter-16px {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.inter-18px {
    font-size: 18px;
    font-family: 'Inter', sans-serif;
}

.inter-20px {
    font-size: 20px;
    font-family: 'Inter', sans-serif;
}

.inter-24px {
    font-size: 24px;
    font-family: 'Inter', sans-serif;
}

.inter-30px {
    font-size: 30px;
    font-family: 'Inter', sans-serif;
}

.segoe-20px {
    font-size: 20px;
    font-family: 'Segoe UI';
}

.semibold {
    font-weight: 600;
}

/* Icônes */

.icon-40px {
    width: 40px;
    height: 40px;
}

.icon-32px {
    width: 32px;
    height: 32px;
}

.icon-24px {
    width: 24px;
    height: 24px;
}

.icon-16px {
    width: 16px;
    height: 16px;
}

/* Containers */

.full-size-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.navbar-top {
    height: 6rem;
    width: 100%;
}

.accordion-button::after {
    order: -1;
    //swap order margin-left: 0;
    //margin-right: 0.5em;
    margin-left: 0;
    // just extra space between text and icon
}

.hover:hover {
    background-color: lightblue;
    border: 1px solid blue;
}
