/*
* demo.css
* File include item demo only specific css only
******************************************************************************/

.menu .app-brand.demo {
  height: 64px;
  margin-top: 12px;
}

.app-brand-logo.demo svg {
  width: 22px;
  height: 38px;
}

.app-brand-text.demo {
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
/* Detached navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
  padding-top: 76px !important;
}
/* Default navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks > * {
  display: block !important;
}

.demo-inline-spacing > * {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg > * {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-lg.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl > * {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-xl.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.rtl-only {
  display: none !important;
  text-align: left !important;
  direction: ltr !important;
}

[dir='rtl'] .rtl-only {
  display: block !important;
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1rem;
}
.layout-demo-placeholder img {
  width: 900px;
}
.layout-demo-info {
  text-align: center;
  margin-top: 1rem;
}

.card-header
{
    display: flex;
}

.card-title 
{
    flex: auto;
}

.uppercase
{
  text-transform: uppercase;
}
.capitalize
{
  text-transform: capitalize;
}

.dropzone {
  border: 1px solid rgb(174 174 174 / 80%);
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: rgb(255 255 255 / 50%);
}

.dropzone .dz-preview .dz-progress 
{
  background: rgb(0 0 0 / 37%);
  border: 1px solid rgba(0,0,0,.8);
}

.tab-content {
  padding: 0 !important;
}

.trumbowyg-editor
{
  height: auto !important;
}


.select-box {
  position: relative;
  width: 100%;
  border-radius: 5px;
  background: #ddd;
  z-index: 1;

  &::after {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 8px;
    height: 8px;
    border-right: 3px solid #333;
    border-bottom: 3px solid #333;
    transform: translateY(-50%) rotate(45deg);
    content: "";
    z-index: -1;
  }
}

/* Reset default style */
select {
  appearance: none;
  width: 100%;
  height: 100%;
  border: none;
  background: none;
}

/* Reset default style for IE */
select::-ms-expand {
  display: none;
}

select {
  padding: 8px;
  width: inherit;
  color: #333;
  border-radius: 0.375rem;
  border: 1px solid lightgray;
  font-weight: 400;
  font-family: inherit;
}


.tag {
  display: inline-block;
  margin-bottom: 5px;
  background: #d5d3ff;
  color: #7473b2;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 12px;
}

.notif {
  margin-bottom: 5px;
  background: #ffc7c7;
  color: #d50000;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 12px;
  position: absolute;
  right: -16px;
  top: 8px;
}

.selectize-control.multi .selectize-input [data-value] {
  text-shadow: none;
  background-image: none !important;
  background-repeat: none;
  box-shadow: none;
  padding: 4px 10px;
  border: none;
  font-size: 12px;
  border-radius: 5px;
  color: #7473b2 !important;
  background-color: #d5d3ff !important;
}



.text-blue {
  color: #0d6efd;
}

.bc-primary .trumbowyg-editor 
{
    background-color: #7473b2;
}



.border-left-1
{
  border-left: 1px solid #9d9d9d;
}

.border-top-1
{
  border-top: 1px solid #9d9d9d;
}

.table-no-uppercase th 
{
    text-transform: capitalize;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.text-align-center
{
  text-align: center;
}

.tag-present 
{
  background-color: #dfdfdf;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 1.0rem;
  color: #747474;
  background-image: repeating-linear-gradient(163deg, transparent 0%, transparent 48%, #6c6c6c 50%, transparent 52%, transparent 100%);
}


.tag-absent-desistement 
{
  background-color: white;
  border: 1px solid #ffa43c;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 1.0rem;
  color: #ffa43c;
  background-image: repeating-linear-gradient(163deg, transparent 0%, transparent 48%, #6c6c6c 50%, transparent 52%, transparent 100%);
}

.tag-muted 
{
  background-color: #dfdfdf;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 1.0rem;
  color: #747474;
}

.tag-absent 
{
  font-size: 1.0rem;
  background-color: #ff2828;
  padding: 5px 10px;
  border-radius: 5px;
  color: white;
}

.tag-remplacement 
{
  font-size: 1.0rem;
  background-color: #ff8c8c;
  padding: 5px 10px;
  border-radius: 5px;
  color: white;
}

.tag-absent-attente
{
  font-size: 1.0rem;
  background-color: #ffa43c;
  padding: 5px 10px;
  border-radius: 5px;
  color: white;
}


.tag-attente
{
  font-size: 1.0rem;
  background-color: none;
  padding: 5px 10px;
  border: 1px solid #ffa43c;
  border-radius: 5px;
  color: #ffa43c;
}
.tag-remplacement
{
  font-size: 1.0rem;
  background-color: none;
  padding: 5px 10px;
  border: 1px solid #3c76ff;
  border-radius: 5px;
  color: #3c80ff;
  background-color: white;
}

.tag-absent-valide
{
  font-size: 1.0rem;
  background-color: #119711;
  padding: 5px 10px;
  border-radius: 5px;
  color: white;
}

.custom-password {
    cursor: pointer;
}

#modalCustom {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.text-green
{
  color: #298800;
}

.groups-right 
{
  border-left: none;
  border-radius: 0px 5px 5px 0px;
}

.groups-left 
{
  border-right: none;
  border-radius: 5px 0px 0px 5px;
}

.text-custom-marron
{
  color: #774d00;
}

.text-custom-orange
{
  color: #f28100;
}

.text-custom-purple
{
  color: #7200a3;
}

.text-custom-blue
{
  color: #002988;
}

.border-bottom-1
{
  border-bottom: 1px solid #a0abb7;
}
.border-top-1
{
  border-top: 1px solid #a0abb7;
}
.border-left-1
{
  border-left: 2px solid #a0abb7;
}
.border-left-red
{
  border-left: 2px solid #d09393;
}
.border-left-green
{
  border-left: 2px solid #76ba7d;
}

.justify-content-space-between
{
  justify-content: space-between;
}

.underline
{
  text-decoration: underline;
}