/*Стили для шапки сайта*/

.registerFormInput:focus  {
    border: 2px solid #009dff;
}

.important  {
    color: red;
    margin-right: 5px;
}

header  {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    margin: 5px auto;
    width: 95%;
   /* max-height: 180px;*/
    background-color: #e7f7bc;
}

#headerMenu  {
    width: 95%;
}

.headerMenu  {
    display: flex;
	padding-top: 0.5%
}

.headerMenu li  {
    border-radius: 15px 15px 0 0;
    background-color: #F4DC93;
    border: 1px solid #D58A33;
    margin-left: 0.4%;
	margin-top: 0.5%;
    padding: 2px 24px;
}

.headerMenu li:first-child  {margin-left: 0;}

/*.headerMenu li:last-child  {
    display: flex;
    align-items: center;
    margin: 0 0 0 auto;
    text-align: left;
    width: auto;
    padding: 2px 15px;
}*/

.usd img  {
    width: 75%;
}

#loginRegister  {
    margin: 0 0 0 auto;
    width: 15%;
    margin-right: 0.5%;
    text-align: center;
}

#headerLogo  {
    width: 30%;
}

.logo  {
    width: 80%;
    max-height: 160px;
    margin-top: 1.5%;
}

#headerCenter  {
    align-self:stretch;
    display: flex;
    flex-direction: column;
    width: 52.5%;
}

.centerTop  {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /*width: 100%;*/
    margin: 5px;
}

.centerTop>img  {display: none;}

#minHeader  {
    display: none;
}

.headerContacts  {
    margin: 0 0 0 auto;
}

.contact  {
    display: flex;
    /*flex-wrap: wrap;*/
    align-items: center;
}

.contact img  {
    width: 17%;
}

#headerSearchForm  {
	position: relative;
    display: flex;
    width: 98%;
    height: 35px;
    margin: auto auto 10px auto;
}

.searchInput  {
    border: 1px solid #D58A33;
    border-radius: 5px;
    width: 90%;
    height: 33px;
	padding-left: 5px;
}

.searchButton  {
    border: 1px solid #D58A33;
    background-color: #F4DC93;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 0.4%;
    width: 9%;
    height: 35px;

}

.searchResult  {
    display: none;
    border: 1px solid #D58A33;
    border-radius: 5px;
    box-shadow: -1px 15px 25px;
    background-color: #ffffff;
    position: absolute;
    top: 110%;
	left:  0;
    z-index: 999;
    width: 90%;
    min-height: 24px;
    max-height: 400px;
    overflow: auto;
}

.searchProducts  {display: none;}
.searchProducts img  {width: 20%; margin: 3px 10px;}
.searchProducts li a  {
    width: 95%;
    margin: 2px auto;
    display: flex;
    align-items: center;
}

.productData  {flex-basis: 75%; padding-left: 10px;}
.productData li  {display: block; color: black;}

.loginBox  {
    position: relative;
}

[data = "loginBox"], [data = "loginBox"]+br  {
    display: none;
}

span[data="resetPasswordBox"]  {
    display: none;
    text-decoration: underline;
    color: #ba0902;
}

.loginEmail, .loginPwd, #loginBtn  {
    border: 1px solid #D58A33;
}

.loginEmail, .loginPwd  {
    width: 80%;
    text-align: center;
}

#hiUser  {
    display: block;
    margin: 5% auto;
    font-size: 1.25em;
}

.loginBtn  {
    margin: 10px auto 5px;
	opacity: 0.75;
}

.registerBtn, .loginBtn  {
    cursor: pointer;
}

.registerBox  {
    text-align: left;
    padding: 10px 20px;
    border: 2px solid #D58A33;
    border-radius: 7px;
    background-color: #F4DC93;
    position: fixed;
    width: 30%;
    left: 35%;
    top: 15%;
    z-index: 1000;
}

.registerBox input  {
    float: right;
    width: 60%;
    height: 30px;
    text-align: center;
    vertical-align: baseline;
}

.registerBox ul li  {
    margin-bottom: 30px;
}

.registerBox ul  {
    list-style: none;
}

.closeBtn  {
    width: 25px;
    top: -25px;
    right: -25px;
    float: right;
    cursor: pointer;
}

.popUpBtn{
    display: flex;
    justify-content: center;
    margin: 0 auto;
    background-color: #4C9ED9;
    color: #ffffff;
    cursor: pointer;
    border-radius: 7px;
    padding: 5px;
    font-size: 1.2em;
    width: max-content;
}

.searchResult .popUpBtn  {
    background-color: #ffffff;
    color: grey;
    font-size: 1em;
}
.searchResult .popUpBtn div  {background: gray;}

.popUpBtn  div  {
    margin-left: 5px;
    /*margin-bottom: 5px;*/
    align-self: flex-end;
    content: "";
    width: 5px;
    height: 5px;
    background: #ffffff;
    border-radius: 100%;
    -webkit-animation: opacity 1s linear infinite;
            animation: opacity 1s linear infinite;
}

.popUpBtn > div:nth-of-type(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.popUpBtn > div:nth-of-type(2) {
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}
.popUpBtn > div:nth-of-type(3) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.popUpBtn > div:nth-of-type(4) {
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s;
}

@-webkit-keyframes opacity {0% {opacity: 0;}25% {opacity: 0.25;}50% {opacity: 0.5;}75% {opacity: 0.75;}100% {opacity: 1;}}

@keyframes opacity {0% {opacity: 0;}25% {opacity: 0.25;}50% {opacity: 0.5;}75% {opacity: 0.75;}100% {opacity: 1;}}