.navbar {
  /* width:94%; */
  padding: 0 3%;
  height: 70px;
  display: flex;
  align-items: center;
}
.navbar--bg {
  background-color: #eef5fd;
  /* border-bottom: 2px solid #fff; */
}
.navbar--fixed {
  position: fixed !important;
  width: 100% !important;
  left: 0;
  z-index: 999999;
}
.navbar--fixed-top {
  top: 0;
}
.navbar--fixed-bottom {
  bottom: 0;
}
.navbar__col {
  flex-grow: 1;
}
.navbar__col--title {
  font-size: 28px;
  font-weight: 900;
}
.navbar__col-subtitle {
  display: block;
  font-size: 10px;
  font-weight: 300;
}
.navbar__col--title-sm {
  font-size: 22px;
}
.navbar__col--title-centered {
  text-align: center;
}
.navbar__col--title a {
  color: #fff;
}
.navbar__col--title a span {
  color: #060043;
}
.navbar__col--icon {
  width: 30px;
  flex-grow: 0;
  position: relative;
}
.navbar__col--icon img {
  display: block;
  max-width: 100%;
}
.navbar__col--icon-left {
  margin-right: 25px;
}
.navbar__col--icon-right {
  margin-left: 25px;
}
.navbar__icon-bullet {
  position: absolute;
  top: -7.5px;
  right: -7.5px;
  font-size: 10px;
  width: 15px;
  height: 15px;
  background-color: #445cfd;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  line-height: 15px;
  -webkit-box-shadow: 0px 0px 4px 0px #303030;
  -moz-box-shadow: 0px 0px 4px 0px #303030;
  box-shadow: 0px 0px 4px 0px #303030;
}

/*===============================================*/
/* 5. CUSTOM BUTTONS */
/*===============================================*/
.btn {
  display: inline-block;
  /* color: #fff; */
  /* background-color: #4f40f1;
  background: -webkit-linear-gradient(60deg, #4f40f1, #6100bc);
  background: linear-gradient(60deg, #4f40f1, #6100bc); */
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 12px 30px;
  font-size: 12px;
}
.btn--full {
  width: 100%;
  padding: 12px 0px;
  text-align: center;
  margin: 0 0 40px 0;
}
.btn--cart {
  width: 50%;
  padding: 12px 0px;
  float: right;
  text-align: center;
}
a.button_small {
  background-color: #fe7e27;
  display: inline-block;
  color: #222222;
  padding: 10px 20px;
  text-align: center;
  -webkit-appearance: none;
}
.button {
  border: none;
  color: #222222;
  text-decoration: none;
  text-align: center;
  display: block;
  border-radius: 0px 0px 0px 0px;
  line-height: 25px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background: none;
  padding: 0 10px;
  margin: 0;
  /* height:40px; */
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-family: "Droid Arabic Kufi", Arial, serif !important;
  cursor: pointer;
  /* background-color:#f7f7f7; */
  border-bottom: 1px solid #f1f1f1;
}
.button.active {
  background: #fe7e27;
  color: #222222;
}
.buttons-row .button:first-child {
  border-radius: 0px 0px 0px 0px;
  border-left-width: 0px;
}
.buttons-row .button:last-child {
  border-radius: 0px 0px 0px 0px;
}
.btyellow {
  background-color: #fe7e27;
  color: #fff;
}
.btmint {
  background-color: #61bb7e;
  color: #fff;
}
/*===============================================*/
/* 6. LEFT AND RIGHT SLIDE PANELS */
/*===============================================*/
  /* job */

.offcanvas {
  position: fixed;
  top: 0;
  left: -100%;
  width: 448px;
  height: 100%;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 100000000;
  overflow-y: auto;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
}

.offcanvas.open {
  left: 0;
}

.offcanvas-right {
  position: fixed;
  top: 0;
  right: -448px;
  width: 448px;
  height: 100%;
  background: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 100000001;
  overflow-y: auto;
  box-shadow: -2px 0 5px rgba(0,0,0,.3);
}

.offcanvas-right.open {
  right: 0;
}
[dir="rtl"] .offcanvas {
  left: auto;
  right: -448px;
  box-shadow: -2px 0 5px rgba(0,0,0,0.3);
}
[dir="rtl"] .offcanvas.open { right: 0; }

[dir="rtl"] .offcanvas-right {
  right: auto;
  left: -448px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.3);
}
[dir="rtl"] .offcanvas-right.open { 
  left: 0; 
}
.overlay {
  position: fixed;
  top:0;left:0;right:0;bottom:0;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 99999999;
}

.offcanvas.open ~ .overlay,
.offcanvas-right.open ~ .overlay {
  display: block;
}


.header-sidebar{
  display: flex;
  flex-direction: column;
  width:100%;
  height: auto;
  align-items: stretch;

}
.profile-intro{
  display: flex;
  flex-direction: row;
  justify-content: start;
  width: 100%;
  height: 100px;
  padding:0px 15px;
  background-color: #eef5fd;

}
.profile-image{
  display: flex;
  justify-content: center;
  align-items: center;
  width:26%;


}
.profile-image img{
    display: block;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;  /* fait le crop sans déformation */
    object-position: center; /* centre l'image (optionnel) */
}
.profile-description{
  display:flex;
  width: 74%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap:4px;
}
.profile-description #welcome{
    color: black;
    font-size: 15px;
    font-weight: 400;
}
.text-desc{
  display: flex;
  justify-content: space-between;
  width: 100%;

}
 .close-btn{
  border: none;
  background: #eef5fd;
  margin: 0 15px;
} 
.profile-description #name{
    color: #000000;
    font-size: 17px;
    font-weight: 600;
}
.profile-description .tools{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap:10px;
}
.tools .settings{
  align-items: center;
}
.tools .favoris{
  align-items: center;
  width: 13px;
  height: 20px;
}
.tools .langue{
  display: flex;
  align-items: center;
  gap: 4px;
}
.tools a{
  color: black;
}
.tools  a:hover{
  color: #eb5809;
}
  .btn.btn-premary {
    background: #f56526 !important;
    border: #f56526 !important;
    color: white;
    font-size: 13px;
    padding: 7px 0px;
    width: 97%;
  }
    .btn.btn-premary:hover{
      color: white;
    }
    .header-explorer{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  height: 90px;
  padding: 5px;
  background-color: #eef5fd;

  }
    
.explorer{
  display: flex;
  flex-direction: row;
  justify-content: start;
  width: 100%;
  align-items: center;
  gap: 3px;
  margin: 0 19px;
  }


.search-block{
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  align-items: stretch;

}
.recherche-form{
  width: 100%;
}
.header-sidebar h1{
    color: black;
    font-weight: 600;
    font-size: 26px;
    text-transform: capitalize;
    letter-spacing: 0.05em;
    display: contents;

}
.header-sidebar i{
    font-size: 18px;
    display: contents;

}
.right-sidebar-content{
  /* display: flex;
  flex-direction: row;
  justify-content: center; */
  margin: 0;
  padding: 0;
}


.sidebar-content {
  padding: 10px 30px;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin-bottom: 5px;
}

.sidebar-menu li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: bold;
  color: #333;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.sidebar-menu li a:hover {
  background: #f0f0f0;
}

.sidebar-menu li a.active {
  background: #ddd;
  color: #000;
}

.toggle-sidebar {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.toggle-sidebar:focus,
.toggle-sidebar:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}



.close-btn svg {
  transition: transform 0.3s ease;
}

.close-btn:hover svg {
  transform: rotate(90deg);
}
.close-btn:focus,
.close-btn:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.btn-job {
  background-color: #b60cc5;
  border-color: #b60cc5;
  color: #fff;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.btn-job:hover {
  background-color: #b60cc5;
  border-color: #b60cc5;
  color: #fff;
}
 @media (max-width: 768px) {
  .offcanvas {
  width: 100%;
}

.offcanvas.open {
  left: 0;
}

.offcanvas-right {
  right: -100%;
  width: 100%;
}
.profile-description{
  gap:0px;
  margin:0 auto;
  width: 70%;
}

[dir="rtl"] .offcanvas {
  right: -100%;
}

[dir="rtl"] .offcanvas-right {
  left: -100%;
}
}
  /* job */