.site-header{
  background-color: white;
  padding:20px 56px 20px 20px;
}

#header-form-search{
  position: relative;
  margin-block-end: 0;
}

#header-form-search input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none; 
}

#header-form-search input[type="search"]{
  background-color: var(--grayscale-100);
  border: 1px solid var(--grayscale-100) ;
  border-radius: 10px;
  padding: 8px 60px 8px 40px;
  font-size: 14px;
  min-height: 48px;
}

#header-form-search input[type="search"]:focus-visible{
  border-color: var(--main);
  outline: none;
}

#header-form-search .icon-search-header{
  background-color: transparent;
  position: absolute;
  left: 12px;
  border: 0;
  top: 50%;
  transform: translateY(-50%);
}

#header-form-search .command-button{
  border:0;
  padding: 4px 12px;
  position: absolute;
  right: 8px;
  top: 9px;
  font-weight: 600;
  height: 36px;
  border-radius: 8px;
}

#header-form-search .command-button svg{
  margin-bottom: 2px;
  margin-right: 4px;
}

.dark-mode #header-form-search .command-button svg path{
  fill:var(--charcoal);
}

#header-form-search .command-button span{
  line-height: 28px;
}

/* .header-logo img{
  width: 134px;
} */

.header-profile{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.header-profile .notifications {
  gap: 1.5rem;
}

.cart-icon{
  position: relative;
}

span.cart-count {
  position: absolute;
  font-size: 11px;
  top: -10px;
  right: -10px;
  background: var(--main);
  color: white;
  border-radius: 50%;
  padding: 0 4px;
  min-width: 16px;
  text-align: center;
}

.toggle-sidebar-mobile{ display:none }
.header-center{
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  align-items: center;
}
.header-upgrade a{
  font-weight: 700;
}
.header-center #select-company-name{
  font-family: "Eudoxus";
  border-radius: 10px;
  padding: 8px 30px 8px 8px;
  background-color: var(--grayscale-100);
  min-width: 211px;
  font-weight: 400;
  font-size: 14px;
}
.header-search-form i.fa-magnifying-glass{
  color: var(--grayscale-900);
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-profile-avatar img{
  border-radius: 50%;
  height: 32px;
}
.user-dropdown{
  width: 15px;
  height: 15px;
  object-fit: contain;
}
.user-dropdown > img {
  position: absolute;
  top: 0;
}
@media screen and (min-width: 1200px){
  #header-form-search input[type="search"]{
    width: 315px;
  }
}

@media screen and (max-width: 767px){

  .toggle-sidebar-mobile{
    display: block;
    margin: auto 1rem auto 0;
    text-align: left;
  }
  .toggle-sidebar-mobile .close-icon {
    display: none;
  }
}


@media (min-width: 768px) and (max-width: 1199px){
  .header-center {
    padding: 0;
    gap: 12px;
  }

  .header-search-form {
    flex: 1;
  }

  .header-search-form .search-field {
    width: 100%;
  }
}

.my-task-label {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 5px 10px 5px 5px;
}

.my-task-label .txt-my-task {
  min-width: 51px;
}

.my-task-label.active {
  background-color: var(--main);
  border-radius: 10px;
  color: white;
}

.my-task-label.active:hover {
  background-color: var(--main-hover);
  text-decoration: unset;
}

.notification-item {
  width: 24px;
  height: 24px;
  position: relative;
}

.notification-item span {
  width: 11px; 
  height:11px; 
  background-color: var(--alert-error); 
  border-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  border: 2px solid #FFFFFF;
}

span#select2-header-select-company-name-container{
  font-size: 14px;
}

.header-company .select2-selection--single{
  padding:4px;
  min-height: 45px;
  margin-top: 0;
}

.header-company .select2-container {
  min-width: 167px !important;
  min-height: 45px;
}

.verimus-icon {
  height: 40px;
  object-fit: contain;
}

.verimus-icon-mobile{
  display: none;
}

@media screen and (max-width: 767px){
  .header-logo .verimus-text {
    display: none;
  }

  .header-center .header-search-form,
  .header-center .header-company {
    display: none;
  }

  .my-task-label .txt-my-task{
    display: none;
  }

  .my-task-label {
    padding: 5px !important;
  }

  .header-profile .notifications {
    gap: 12px
  }
  .header-profile{
    gap: 10px
  }
  .site-header{
    padding:20px;
  }
}

@media screen and (max-width: 991px){
  .verimus-icon-desktop{
    display: none;
  }

  .verimus-icon-mobile{
    display: block;
  }
}

