.limithight{
    height: 70vh;
}


#buttonBg{
    font-weight: bold;
    background-color: rgb(38,60,92) !important;
    color:#ffffff;
}


#Totalresult>td{
    font-weight: bold;
    background-color: rgb(38,60,92) !important;
    color:#ffffff;
}


.solide_bordre>td{
    border: 1px solid rgb(214, 214, 214);
    text-align: center;
}

.align_center{
    text-align: center;
}

.align_right{
    text-align: right !important;
}
.align_left{
    text-align: left !important;
}

#solde_cell, .solde_cell{
    font-weight: bold;
    color: red
}

.bg-1 { 
    background-color: #FFFFFF !important;
    color: #000000 !important;
}
.bg-2 { 
    background-color: #f1f1f1 !important;
    color: #000000 !important;
}

.mt-2{
    margin-top: 2px;
}
.mb-2{
    margin-bottom: 2px;
}
.mr-2{
    margin-right: 2px;
}
.ml-2{
    margin-left: 2px;
}
.pt-2{
    padding-top: 2px;
}
.pb-2{
    padding-bottom: 2px;
}
.pr-2{
    padding-right: 2px;
}
.pl-2{
    padding-left: 2px;
}

.mt-4{
    margin-top: 4px;
}
.mb-4{
    margin-bottom: 4px;
}
.mr-4{
    margin-right: 4px;
}
.ml-4{
    margin-left: 4px;
}
.pt-4{
    padding-top: 4px;
}
.pb-4{
    padding-bottom: 4px;
}
.pr-4{
    padding-right: 4px;
}
.pl-4{
    padding-left: 4px;
}

.txtbold{
    font-weight: bold;
}

.mr-100{
    margin-right: 100px;
}
.mr-50{
    margin-right: 50px;
}

.mb-50{
    margin-bottom: 50px;
}
.mb-20{
    margin-bottom: 20px;
}
.txtgreen{
    color: green;
}
.hight-30{
    height: 30px;
}
.hight-40{
    height: 40px;
}

.width-700{
    width: 700px;
}
.m-0{
    margin: 0px;
}

.width-400{
    width: 400px;
}
.width-200{
    width: 200px;
}

a.links:link, a.links:visited, a.links:hover, a.links:active, .links{
	color : black !important;
}

.pl-6rem{
    padding-left: 6rem;
}

.ml-15per{
    margin-left: 15%;
}


/* #price_ttc{
display: none;
} */

/* The container */
.checkboxcontainer {
    display: block;
    position: relative;
    padding-left: 35px;
    /* margin-bottom: 12px; */
    cursor: pointer;
    /* font-size: 22px; */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .checkboxcontainer>a:link, .checkboxcontainer>a:visited, .checkboxcontainer>a:hover, .checkboxcontainer>a:active{
    text-decoration: none;
    color: black !important;
  }
  /* Hide the browser's default checkbox */
  .checkboxcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 5px;
    border: 1px solid var(--butactionbg);
  }
  
  /* On mouse-over, add a grey background color */
  .checkboxcontainer:hover input ~ .checkmark {
    background-color: #c2c2c2;
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkboxcontainer input:checked ~ .checkmark {
    background-color: var(--butactionbg);;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkboxcontainer input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .checkboxcontainer .checkmark:after {
    left: 7px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }