.firstHeader{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 55px;
}
.desktopSiteLogo{
  height: 45px;
}
.firstAction{
  display: flex;
  align-items: center;
  height: 100%;
} 
.firstActBtn{
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0px 20px;
}
.secondHeaderWraper{
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  height: 60px;
}
.secondHeader{
  display: flex;
  align-items: center;
  height: 100%;
}

.secondHeader .dropdown{
  height: 100%;
  display: flex;
  align-items: center;
}
.secondDropdown{
  padding: 0px 15px;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.secondDropdown.show{
  background-color: white;
  box-shadow: 0 6px 12px rgba(0,0,0,0.175);
}
.secondHeader .dropdown-menu{
  top: -2px !important;
  box-shadow: 0 6px 12px rgba(0,0,0,0.175);
  border-radius: 0px !important;
  border: none !important;
  padding: 5px 0px;
}

.secondHeader .searchFrom{
  flex: 1;
  padding: 0px 15px;
}
.mobileSiteLogo{
  flex: 1;
}
.catDropContainer{
  width: 300px;
  position: relative;
  padding: 20px 15px !important;
}
.subCatPart{
  position: absolute;
  display: none;
  justify-content: space-between;
  left: 99%;
  min-height: 100%;
  max-height: 90vh;
  overflow-y: auto;
  top:0px;
  width: 996px;
  background: white;
  box-shadow: 0 6px 12px rgba(0,0,0,0.175);
  border-radius: 0px !important;
  border: none !important;
  padding: 15px;
  background-position: right bottom;
  background-repeat: no-repeat;
}
.pCatRow{
  margin-right: -20px;
}
.pCatRow:hover>a{
  font-weight: bold;
}
.pCatRow:hover .subCatPart{
  display: block;
}
.subCatMenuMain{
  display: flex;
  width: 70%;
  flex-wrap: wrap;
}
.subCatMenuItem{
  margin-bottom: 20px;
  padding-right: 15px;
  width: 33%;
}
.pCatMark{
  background-color: var(--color-mint);;
  color: white;
  font-size: 24px;
  clear: both;
  position: absolute;
  top: 16px;
  right: 12px;
  max-width: 30%;
  padding: 6px 20px;
}
@media (max-width: 1200px) {
  .subCatPart{  
    width: 630px;
  }
}
@media (max-width: 992px) {
  .subCatPart{  
    width: 440px;
  }
}
