@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    min-height: 100vh;
    background: url("../img/background.jpg");
    background-size: cover;
    font-family: 'Ubuntu', sans-serif;
}

h1
{
    width: 100%;
    font-size: 1.6em;
    color: #fff;
    margin-bottom: 10px;
    text-transform: capitalize;
}

h2
{
    color: #a2d2ff;
    font-size: 1.3em;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom:  15px;
}

header
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logotams
{
    width: 100px;
    height: auto;
    margin-left: 25px;
}

.logoclient
{
    width: 65px;
    height: auto;
}

.deconnect
{
    margin-right: 25px;
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing : 5px;
    
}

.ligne
{
    width: 200px;
    border-bottom: 2px solid #fff;
    margin-bottom: 25px;
}

.navigation
{
    margin-top: 50px;
    position: fixed;
    inset: 20px;
    width: 80px;
    background: #a2d2ff;
    border-left: 10px solid #a2d2ff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 15px 15px 25px rgba(0,0,0,0.05);
    transition: 0.5s;
}

.navigation.active
{
    width: 300px;
    border-radius: 50px;
}

.toggle
{
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle::before
{
    content: '';
    position: absolute;
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: #a2d2ff;
    transform: translateY(-5px);
    transition: 1s;
}

.toggle::after
{
    content: '';
    position: absolute;
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: #a2d2ff;
    transform: translateY(5px);
    transition: 1s;
}

.navigation.active .toggle::before
{
    transform: translateY(0px) rotate(-405deg);
}

.navigation.active .toggle::after
{
    transform: translateY(0px) rotate(225deg);
}

.navigation ul
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.navigation ul li:hover
{
    background-color: #fff;
}

.navigation ul li:nth-child(1)
{
    top : 20px;
    margin-bottom: 40px;
    background: none;
}
.navigation ul li:not(:first-child):hover::before
{
    content: '';
    position: absolute;
    top: -20px;
    right: 0;
    width: 20px;
    height: 20px;
    background: transparent;
    border-bottom-right-radius: 20px;
    box-shadow: 7.5px 7.5px 0 7.5px #fff;
}

.navigation ul li:not(:first-child):hover::after
{
    content: '';
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 20px;
    height: 20px;
    background: transparent;
    border-top-right-radius: 20px;
    box-shadow: 7.5px -7.5px 0 7.5px #fff;
}



.navigation ul li
{
    position: relative;
    list-style: none;
    width: 100%;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    /* background: #fff; */
}

.navigation ul li a
{
    position: relative;
    display: block;
    width: 100%;
    display: flex;
    text-decoration: none;
    color: #fff;
}

.navigation ul li:hover:not(:first-child) a
{
    color: #365fa1;
}

.navigation ul li a .icon
{
    position: relative;
    display: block;
    min-width: 60px;
    height: 60px;
    line-height: 70px;
    text-align: center;
}

.navigation ul li a .icon i
{
    font-size: 1.75em;
}


.navigation ul li a .title
{
    position: relative;
    display: block;
    padding: 0 10px;
    height: 60px;
    line-height: 60px;
    text-align: start;
    white-space: nowrap;
}

.contenu
{
    margin-left: 120px;
    margin-top: 100px;
}

.contenu_actus
{
  margin-left: 120px;
  margin-top: 10px;
}

.contenu.active
{
    margin-left: 350px;
    margin-top: 100px;
}

.contenu_actus.active
{
    margin-left: 350px;
    margin-top: 10px;
}

.tableAd
{
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.ligneAd
{
    width: 300px;
    border: 1px solid #fff;
    padding: 10px 5px;
    color: #fff;

}

.modif
{
    min-width: 100px;
    width: 100px;
    text-align: center;
}

/* Login */
.login
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(../img/background.jpg);
    background-size: cover;
}

.box
{
    position: relative;
    padding: 50px;
    width: 600px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    box-shadow: 0 5px 35px rgba(0,0,0,0.2);
}

.box::after
{
    content:'';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 5px;
    pointer-events: none;
    background:linear-gradient(to bottom, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0.1) 15%, transparent 85%,rgba(255,255,255,0.3) 100%);
}

.box .logoConnexion
{
    padding-right: 25px;
}

.box .logoConnexion img
{
    width: 150px;
}

.box .form
{
    position: relative;
    width: 100%;
}

.box .form h2
{
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom:  30px;
}

.box .form .inputBox
{
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.box .form .inputBox input
{
    width: 100%;
    outline: none;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    padding:  8px 10px;
    padding-left: 35px;
    border-radius: 6px;
    color: #fff;
    box-shadow: inset 0 0 25px rgba(0,0,0,0.2);
    font-size: 16px;
    font-weight: 300;
}
.box .form .inputBox [type="checkbox"]
{
    position: absolute;
    right: 50px;
    top: 10px;
    width: auto;
    font-size: 16px;
    font-weight: 300;
}

.box .form .check
{
    display: flex;
}
.box .form .inputBox p
{
    width: 100%;
    /* outline: none;
    border: 1px solid rgba(255,255,255,0.2); */
    background: transparent;
    padding:  8px 10px;
    padding-left: 35px;
    /* border-radius: 6px; */
    color: #fff;
    /* box-shadow: inset 0 0 25px rgba(0,0,0,0.2); */
    font-size: 16px;
    font-weight: 300;
}

.box .form .inputBox i
{
   position: absolute;
   top: 8px;
   left: 10px;
   color: #fff;
}

.box .form .inputBox input[type="submit"]
{
    background: #fff;
    color: #365fa1;
    padding-left: 0px;
    /* max-width: 100px; */
    box-shadow: none;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
}
.box .form a
{
    color: #fff;
    font-weight: 300;
    font-size: 15px;
    margin-top: 5px;
    text-decoration: none;
    text-transform :uppercase;
}

.height_box_650
{
    width: 400px;
    height: 650px;
}

.height_box_500
{
    width: 400px;
    height: 500px;
}

.height_box_450
{
    width: 400px;
    height: 450px;
}

.BtnRetour
{
    padding:  8px 10px;
    border-radius: 6px;
    background: #365fa1;
    color: #fff;
    max-width: 200px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: inset 0 0 25px rgba(0,0,0,0.2);
    
    cursor: pointer;
    text-align: center;
}

.message p
{
    font-size: 16px;
    font-weight: 300;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
}

/* e-boutique */

.menu
{
    width: 60%;
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 30px;
}

.box__Menu
{
    position: relative;
    padding: 50px;
    width: 200px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    box-shadow: 0 5px 35px rgba(0,0,0,0.2);
    text-align: center;
}

.column
{
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    font-size: 15px;
    line-height: 30px;
    color: #fff;
}

.box__Menu::after
{
    content:'';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 5px;
    pointer-events: none;
    background:linear-gradient(to bottom, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0.1) 15%, transparent 85%,rgba(255,255,255,0.3) 100%);
}

.box__Menu a
{
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.box__Menu a:hover
{
    color: #eead2b;
}

.box__Menu.active a
{
    color: #1fce19;
}

.box__Menu i
{
    font-size: 40px;
    margin-bottom: 10px;
    
}

.Edit__Article
{
margin-top: 20px;
}

.message__config
{
    margin: 20px 0px;
}

.message__config p
{
    padding:  8px 10px;
    color: #fff;
    text-align: left;
}

.BtnWhite
{
    
    margin-top: 10px;
    padding:  8px 10px;
    border-radius: 6px;
    background:  #fff;
    max-width: 200px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: inset 0 0 25px rgba(0,0,0,0.2);
    cursor: pointer;
    text-align: center;
    
}

.BtnWhite a
{
    color: rgb(48, 101, 247);
    text-decoration: none;
}

.box__Article
{
    position: relative;
    padding: 20px;
    width: 350px;
    height: 600px;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    box-shadow: 0 5px 35px rgba(0,0,0,0.2);
}

.box__Article::after
{
    content:'';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 5px;
    pointer-events: none;
    background:linear-gradient(to bottom, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0.1) 15%, transparent 85%,rgba(255,255,255,0.3) 100%);
}
.box__Article .form__Article .contenu__Article
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.taille__box_actus
{
  height: auto;
  padding-bottom: 30px;
}

.box__Article h3
{
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    padding-bottom: 30px;
}

.principale__Article
{
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: stretch;
    gap: 20px;
}

.principale__Article p
{
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    padding-bottom: 10px;
}
.inputBox
{
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    
}
.inputBox input, textarea
{
    width: 100%;
    outline: none;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    padding:  8px 10px;
    padding-left: 35px;
    padding-bottom: 10px;
    border-radius: 6px;
    color: antiquewhite;
    box-shadow: inset 0 0 25px rgba(0,0,0,0.2);
    font-size: 16px;
    font-weight: 300;
}

.inputBox input[type='checkbox']
{
    width: 50px;
    padding-left: 10px;
    background: none;
    box-shadow: none;
}

.inputBox input[type='radio']
{
  width: 50px;
    padding-right: 10px;
    background: none;
    box-shadow: none;
}

.inputBox label
{
    padding-left: 20px;
    margin-bottom: 10px;
    color: aliceblue;
}
.box__Article  .form__Article .inputBox [type="checkbox"]
{

    width: auto;
    margin: 0 20px;
    font-size: 16px;
    font-weight: 300;
}

.Image__Article_small
{
    width: 100px;
    height: auto;
    
}

.Image__Article img
{
    width: 300px;
    height: auto;
}

.Images__small
{
    justify-content: center;
    flex-direction: row;
    gap: 30px;
}
table {
  width: 90%;
  margin: auto;
  border-collapse: collapse;
  color: darkblue;
}

td
{
    border: 1px solid darkblue;
    padding: 5px;
}

th
{
  border: 1px solid darkblue;
  background: aliceblue;
  color: darkblue;
  padding: 5px;
}

/* Button */
.btn
{
  /* margin-top: 20px; */
  padding: 15px 10px;
  text-align: center;
}

.btn a
{
  position: relative;
  color: #a2d2ff;
  background: #a2d2ff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1em;
  letter-spacing: 0.1em;
  font-weight: 400;
  padding: 10px 30px;
  transition: 0.5s;
}

.btn a:hover
{
  background:#a2d2ff;
  color: #a2d2ff;
  letter-spacing: 0.15em;
  box-shadow: 0 0 35px #a2d2ff;

}

.btn a::before
{
  content:'';
  position: absolute;
  inset: 2px;
  background: #343a40;
}
.btn a span
{
  position: relative;
  z-index: 1;
}

.btn a i
{
  position: absolute;
  inset: 0;
  display: block;
}

.btn a i::before
{
  content: '';
  position: absolute;
  top: 0;
  left: 80%;
  width: 10px;
  height: 40px;
  background-color: #343a40;
  transform: translateX(-50%) skewX(352deg);
  transition: 0.5s;
}

.btn a:hover i::before
{
  width: 20px;
  left: 20%;
}

.btn a i::after
{
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 10px;
  height: 40px;
  background-color: #343a40;
  transform: translateX(-50%) skewX(352deg);
  transition: 0.5s;
}

.btn a:hover i::after
{
  width: 20px;
  left: 80%;
}

.BtnStandard
{
  width: auto;
  text-decoration: none;
    outline: none;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    padding:  15px 15px;
    border-radius: 6px;
    color: aliceblue;
    box-shadow: inset 0 0 25px rgba(0,0,0,0.2);
    font-size: 16px;
    font-weight: 300;
}

.Groupement__Btn_H
{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 20px;
}
.message
{
  height: auto;
  color: #eead2b;
}

.center
{
  text-align: center;
}

.orange
{
  color: #eead2b;
}

.red
{
  color: crimson;
}
.img-fluid
{
  max-width:100%;
  height: auto;
}

.les_biens
{
 width: 100%;   
 display: flex;
 justify-content: center ;
 align-items: center;
 flex-wrap: wrap;

}

.item_biens
{
    width: 350px;
    position: relative;
}

.item_biens img
{
    width: 150px;
    margin: auto;
}

.item_biens a
{
    font-size: large;
    color: #365fa1;
}

.item_biens a:hover
{
    font-size: large;
    color: orange;
    /* border: solid 1px #eead2b; */
}

.contenu_biens
{
    width: 150px;
    position: absolute;
    top: 50px;
    text-align: center;
    font-size: 15px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: auto;
}

.Btn-compte
{
    padding: 5px;
    width: 100%;
    display: flex;
    justify-content:space-between;
    align-items: top;
    flex-direction: column;
}

.acte
{
    color: #a2d2ff;
}

.identite
{
    width: 100%;
    display: flex;
    justify-content:space-around;
    align-items: top;
}