@charset "utf-8";

/* Auth corner */
.auth-right {
    float: right;
}
.auth__righ--corner {
    height: 31px;
    width: 31px;
    display: block;
    position: relative;
}

.auth:after {
    /* background-image: url(img/user.svg);
    background-repeat: no-repeat;
    z-index: 99999;
    content: "";
    position: absolute;
    width: 31px;
    height: 31px;
    top: 0px; */
}
a.auth.greyfont {
	display: inline-block;
    background-image: url(img/user.svg);
    background-repeat: no-repeat;
    z-index: 99999;
    content: "";
    position: relative;
    width: 36px;
    height: 36px;
    top: 0px;
    background-size: 36px 36px;
}

.auth-dropdown:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-top: 4px solid #f6f5f6;
    top: 5px;
    left: 0px;
    margin: 9px 0 0;
    z-index: 99999999;
}

a.auth-dropdown {
    width: 50px;
    height: 30px;
    right: -25px;
    display: block;
    top: 0;
    position: absolute;
    text-decoration: none;
}
.dropdown .item-color {
  display: block;
  background-color: #f1f1f1;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.dropdown .first.item-color {
  margin-left: 15px;
}
.dropdown .last.item-color {
  margin-right: 15px;
}
.dropdown .item-color:hover .icon-tear {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.dropdown .icon-arrow-up {
  display: block;
  width: 15px;
  height: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 10px -17px rgba(0, 0, 0, 0.5);
}
.dropdown .icon-arrow-up:after {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #FFF;
  top: 10px;
  left: 0;
  box-shadow: -1px -1px 6px -2px rgba(0, 0, 0, 0.3);
  border-top: 1px solid #fbfbfb;
  border-left: 1px solid #fbfbfb;
}
.dropdown .icon-arrow-up:hover, .dropdown .icon-arrow-up:hover:after {
  box-shadow: none;
}

.dropdown-link .icon-menu {
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  posiiton: relative;
  cursor: pointer;
  height: 30px;
  display: block;
}
.dropdown-link .icon-menu:before {
  -moz-box-shadow: 0 14px 0 0 #717171, 0 7px 0 0 #717171;
  -webkit-box-shadow: 0 14px 0 0 #717171, 0 7px 0 0 #717171;
  box-shadow: 0 14px 0 0 #717171, 0 7px 0 0 #717171;
  content: "";
  position: absolute;
  left: 15px;
  width: 30px;
  height: 4px;
  background: #717171;
}

.icon-tear {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-border-radius: 100px 0 100px 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px 0 100px 100px;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  -moz-transform: translateX(9px) translateY(11px) rotate(-45deg);
  -ms-transform: translateX(9px) translateY(11px) rotate(-45deg);
  -webkit-transform: translateX(9px) translateY(11px) rotate(-45deg);
  transform: translateX(9px) translateY(11px) rotate(-45deg);
  display: block;
  background: rgba(255, 255, 255, 0.9);
  width: 10px;
  height: 10px;
}

.dropdown {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0 0 0 1px rgba(136,152,170,.1), 0 15px 35px 0 rgba(49,49,93,.1), 0 5px 15px 0 rgba(0,0,0,.08);
  -webkit-box-shadow: 0 0 0 1px rgba(136,152,170,.1), 0 15px 35px 0 rgba(49,49,93,.1), 0 5px 15px 0 rgba(0,0,0,.08);
  box-shadow: 0 0 0 1px rgba(136,152,170,.1), 0 15px 35px 0 rgba(49,49,93,.1), 0 5px 15px 0 rgba(0,0,0,.08);
  top: 50px;
  position: absolute;
  width: 300px;
  background-color: #f6f9fc;
  border: 1px solid #fbfbfb;
  display: none;
  z-index: 99999;  
  right: -11px;
}
.mobile-search .auth-right {
    top:12px;
}


.dropdown .item-color {
  -moz-transform: translateX(15px) translateY(15px);
  -ms-transform: translateX(15px) translateY(15px);
  -webkit-transform: translateX(15px) translateY(15px);
  transform: translateX(15px) translateY(15px);
  float: left;
}
.dropdown .active .dropdown-label {
  border-bottom: 1px solid #242a4d;
}
.dropdown .icon-arrow-up {
  position: absolute;
  top: -15px;
  right: 18px;
}

.dropdown-link .icon-menu:hover {
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

.dropdown-label {
  -moz-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02);
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02);
  display: block;
  padding: 25px 15px 25px 60px;
  text-decoration: none;
  text-transform: uppercase;
  color: #595c5f;
  font-weight: bold;
  border-bottom: 1px solid #fbfbfb;
}

.dropdown-blocks .item-block {
  -moz-transition: color 1s;
  -o-transition: color 1s;
  -webkit-transition: color 1s;
  transition: color 1s;
  -moz-box-shadow: 1px 0 0 #e4e4e4;
  -webkit-box-shadow: 1px 0 0 #e4e4e4;
  box-shadow: 1px 0 0 #e4e4e4;
  float: left;
  display: block;
  padding: 70px 25px 20px;
  width: 70px;
  height: 50px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  color: #dadcdd;
  line-height: 1.6;
  font-weight: bold;
}
.dropdown-blocks .item-block:hover {
  color: #595c5f;
  -moz-transition: color 1s;
  -o-transition: color 1s;
  -webkit-transition: color 1s;
  transition: color 1s;
}
.dropdown-blocks .list-item {
  border: 0px;
}
.dropdown-blocks .list-item.active .item-block {
  color: #595c5f;
}
.auth-right {
    position: relative;
    display: block;
}

ul.list {
    list-style: none;
    margin: 0px;
    padding: 0px;
}


li.list-item a {
    color: #242641;
    font-weight: 400;
    padding: 8px;
    line-height: 1;
    position: relative;
    display: list-item;
    text-decoration: none;
}
li.list-item a:hover {
    background: #edf1ff;
    
}
.dropdown {
  -webkit-animation: animation 1000ms linear both;
  animation: animation 1000ms linear both;
}

li.list-item {
    border-bottom: 1px solid #aab8c469;
    padding: 0;
    margin: 0;
}

li.list-item:last-child {
    border-bottom:none;
}