#tt_toplink {
	list-style: none;
	display: flex;
	gap: 25px;
	margin-bottom: 0;
	padding: 10px 0 0;
	font-weight: 600;
	font: 700 12px/20px "Noto", Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	color: #fff;
}

#tt_toplink a {
	color: #fff;
	display: block;
	transition: transform 0.3s ease;
  line-height: normal;
}

#tt_toplink a:hover {
	transform: scale(1.1);
}

.full-header .container {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	max-width: 100%;
  padding: 0;
}

.header-left {
	margin: 0;
	padding: 0;
	width: 17%;
	height: 100%;
	flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-left #logo {
  flex-shrink: 0;
}

.header-center {
  display: flex;
  flex-wrap: nowrap;
  flex-grow: 1;
  gap: 22px;
  align-items: center;
  padding-right: 35px;
}

.full-header.fixed .header-center {
  padding-left: 10px;
}

header #header-search {
	float: none !important;
	width: auto !important;
	flex-grow: 1;
}

.header-right {
	display: flex;
	flex-wrap: nowrap;
	gap: 35px;
  padding-right: 40px;
}

.full-header.fixed .header-right {
  padding-right: 10px;
}

header .button-additional-menu {
	height: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

header .mobile-search {
  display: none;
}


.button-additional-menu .button-block {
  height: 100%;  
  position: relative;
  display: flex;
  align-items: center;
}

.button-additional-menu button {
	background: none;
	border: none;
	display: flex;
	flex-direction: column;
}

.button-additional-menu button img {
	height: 28px;
	width: auto;
	transition: transform 1s ease;
}

.button-additional-menu button:hover img {
	transform: rotateY(360deg);
}

.button-additional-menu .button-description {
	letter-spacing: 1px;
	font: 400 13px / 15px "Poppins", sans-serif;
	text-transform: capitalize;
	color: #fff;
	white-space: nowrap;
  padding-top: 7px;
}

.button-additional-menu .button-block .dropdown-menu {
	display: block;
	left: 50%;
	transform: translateX(-50%);
	right: auto;
	top: 75px;
	border-radius: 10px;
	padding: 15px 1px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 1001;
}

.button-additional-menu .button-block.open .dropdown-menu {
	opacity: 1;
	visibility: visible;
}

.button-additional-menu.cart-new #cart #cart-total {
	background: #e6363c;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-khtml-border-radius: 50%;
	color: #fff;
	font-size: 12px;
	height: 16px;
	right: 12px;
	line-height: 13px;
	padding: 1px;
	position: absolute;
	top: -4px;
	width: 16px;
	z-index: 1;
}

.button-additional-menu.location-new .prmn-cmngr {
	margin: 0;
}

.button-additional-menu.location-new .prmn-cmngr .prmn-cmngr__city-name {
	letter-spacing: 1px;
	font: 400 13px / 15px "Poppins", sans-serif;
	text-transform: capitalize;
	color: #fff;
	white-space: nowrap;	
}

.button-additional-menu.location-new .prmn-cmngr .prmn-cmngr__city svg {
	display: none;
}

#cart .dropdown-menu {
  border: 1px solid #eeeeee;
  min-width: 300px;
  display: block;
  top: 74px;
  left: auto;
  right: 0;
  transform: translateX(0);  
}

/* ярлыки у dropdown */
.button-additional-menu .dropdown-menu::before {
  color: rgb(255, 255, 255);
  content: "";
  font-family: FontAwesome;
  font-size: 24px;
  right: auto;
  position: absolute;
  top: -15px;
  left: 15px;
}

.button-additional-menu .dropdown-menu.pull-center::before {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.button-additional-menu .dropdown-menu.pull-right::before {
  left: auto;
  right: 15px;
}

/* ============== END buttons top menu new ==============*/

@media (max-width: 991px) {

  header .full-header {
    padding: 20px 0;
  }
  
  .full-header .container {
    flex-direction: row;
    padding: 0 20px;
  }

  .header-left {
    width: auto;
    order: 2;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-center {
    flex-grow: 0;
    padding-right: 0;
  }

  .menu_sv {
    order: 0;
  }

  header .mobile-search {
    display: flex;
  }

  header #header-search {
    position: absolute;
    left: 0;
    top: 82px;
    width: 100% !important;
    background: #000;
    border-radius: 0;
    padding: 0px 25px 25px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s ease;
    transform: translateY(0);
  }

  header #header-search.open {
    opacity: 1;    
    visibility: visible;
    transform: translateY(14px);
  }

  #header-search span.input-group-btn {
    position: absolute;
    right: 22px;
  }  

  header #header-search input.form-control.input-lg {
    background: #fff;
    padding-left: 20px;
  }

  .header-right {
    display: inherit;
    order: 3;
    margin-left: auto;
    padding-right: 0;
  }

  .header-center, .header-right {
    gap: 25px;
  }

  .button-additional-menu button {
    justify-content: center;
  }

  .button-additional-menu .button-description {
    display: none;    
  }  

  .button-additional-menu.cart-new #cart #cart-total {
    right: 0;
    top: 8px;    
  }  

}

@media (max-width: 570px) {
  .full-header .container {
    padding: 0 15px 0 10px;
  }

	.header-center, .header-right {
		gap: 15px;
	}


  .button-additional-menu button img {
    width: 26px;
  }
}

@media (max-width: 480px) {
	.content-bottom {
		padding: 0;
	}

  .full-header .container {
    padding: 0 10px 0 5px;
  }

	.full-header .container, .header-right {
		gap: 10px;
	}

	.header-left {
		margin: 0;
	}

  .button-additional-menu button img {
    width: 24px;
  }
}

@media (max-width: 480px) {
	.header-center, .header-right {
		gap: 5px;
	}
}

@media (max-width: 390px) {

  .menu_sv .menu-toggle img, .button-additional-menu button img {
    height: 28px;
  }

  #logo a {
      display: flex;
    justify-content: center;
  }

  #logo img {
    width: 80%;
  }

  .button-additional-menu.cart-new #cart #cart-total {
    right: 0;
    top: 8px;    
  }  
}

