/* HEADER ============================================================ */


/* hedaer-top */
.header {
   color: #FFFFFF;
   position: fixed;
   width: 100%;
   z-index: 100;
   top: 0;
   border-bottom: 1px solid #F56505;
}

.header-top {
   background-color: #414141;
   height: 31px;
   font-weight: 400;
   font-size: 16px;
   line-height: 19px;
   transition: 0.3s;
}

.header-top a {
   color: #fff;
}

.header-top .container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 100%;
}

.header-top__phone {
   margin-right: 40px;
}

.header-top__left {
   font-weight: 700;
}

/* /hedaer-top */

/* main-header */

.main-header {
   height: 90px;
   background-color: #595959;
}

.main-header .container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 100%;
}

.main-header__list {
   display: flex;
   align-items: center;
}

.main-header__item {
   font-weight: 700;
   font-size: 18px;
   line-height: 22px;
   align-items: center;
   text-transform: uppercase;
   position: relative;
   cursor: pointer;
   display: flex;
   align-items: center;
}

.main-header__item img {
   margin-left: 5px;
}

.main-header__item:not(:last-child) {
   margin-right: 30px;
}

.main-header__item:hover div {
   visibility: visible;
}

.main-header__item:hover ul {
   opacity: 1;
}

.main-header__item:hover img {
   transform: rotate(180deg);
   transition: 0.1s;
}

.main-header__item-link {
   color: #595959;
   padding: 20px 10px 20px 20px;
   display: inline-block;
}

.main-header__item-link:hover {
   color: #F56505;
   transition: 0.2s;
}

.main-header__item>a {
   color: #fff;
}

.main-header__item div {
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   top: 20px;
   padding: 20px;
   visibility: hidden;
}

.main-header__item ul {
   opacity: 0;
   color: #000;
   transition: 0.3s;
   background-color: #fff;
   color: #000;
   border: 1px solid #E9E9E9;
   box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.25);
   border-radius: 4px;
   min-width: 320px;
   width: 100%;
   position: relative;
}

.main-header__item ul::before {
   content: '';
   position: absolute;
   top: -4px;
   left: 50%;
   width: 16px;
   height: 16px;
   transform: rotate(45deg) translateX(-50%);
   background-color: #fff;
}

.main-header__item ul li {
   cursor: pointer;
   font-weight: 600;
   font-size: 16px;
   line-height: 19px;
   text-transform: uppercase;
   color: #595959;
}

.main-header__item ul li:not(:last-child) {
   border-bottom: 1px solid #E9E9E9;
}

.main-header__left {
   display: flex;
}

.main-header__logo {
   margin-right: 40px;
}

.main-header__right {
   display: flex;
   align-items: center;
}

.main-header__shop-cart {
   position: relative;
   margin-right: 21px;
   cursor: pointer;
}

.main-header__shop-count {
   height: 15px;
   width: 15px;
   position: absolute;
   top: -3px;
   right: -7px;
   background-color: #F56505;
   border-radius: 100%;
   font-size: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
}

.menu-mobile__item a {
   color: #fff;
}

.menu-mobile__in-item {
   font-weight: 400;

}

/* /main-header */
/* HEADER ----------------------------------------------------------- */