/*!
 * Custom CSS
 */

 /* scroll to top button */
.scroll-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  display: none;
  width: 50px;
  height: 50px;
  text-align: center;
  color: white;
  background: rgba(52, 58, 64, 0.5);
  line-height: 45px;
}

.scroll-to-top:focus, .scroll-to-top:hover {
  color: white;
}

.scroll-to-top:hover {
  background: #343a40;
}

.scroll-to-top i {
  font-weight: 800;
}

/* main logo */
.logo_image
{
  background-image: url("../images/logo.png");
	background-size: cover;
  background-repeat: no-repeat;
	background-position: center center;
	width: 160px;
	height: 60px;
}

/* icons */
.ic-button-white
{
  color:white;
  font-size: 1.6em;
  padding-top:6px;
  padding-left:7px;
}
.ic-button-black
{
  color:black;
  font-size: 1.6em;
  padding-top:0px;
  padding-left:0px;
}
.ic-button-brown
{
  color:#947d70;
  font-size: 1.6em;
  padding-top:0px;
  padding-left:0px;
}

.avlogin
{
  color:#947d70;
  margin-bottom: 4px;
}
.avlogin i
{
  margin-right: 7px;
}
@media only screen and (max-width: 991px)
{
  .logo_image
  {
    width: 140px;
    height: 52px;
  }
}
@media only screen and (max-width: 767px)
{
  #avtlogin
  {
    display: none;
  }
}
@media only screen and (max-width: 575px)
{
  .logo_image
  {
    width: 130px;
    height: 48px;
  }
}
@media only screen and (max-width: 539px)
{
  .avc
  {
    margin-right:5px;
  }
}

.user_nav
{
	margin-top: -6px;
  margin-right: -1.73em;
}
.user_nav ul li
{
	display: inline-block;
}

.user_nav ul li.dropdown
{
	margin-left: 0px;
  margin-top: 7px;
}

.user_nav ul li:last-child
{
  margin-left: 0.1em;
}
.user_nav ul li a
{
	font-size: 12px;
	text-transform: uppercase;
	color: #2f2f2f;
	font-weight: 600;
	letter-spacing: 0.2em;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.user_nav ul li a.av
{
	font-size: 1em;
  margin-left: 0.16em;
  margin-top: -1px;
}
.user_nav ul li a:hover
{
	color: #937c6f;
}

.user_nav ul li:hover
{
  background: transparent;
}
.user_nav ul li:active
{
  background: transparent;
}

.user_nav ul.dropdown-menu
{
  padding-top: 13px;
}
.user_nav li.dropdown-item
{
  padding-top: 0px;
  padding-bottom: 3px;
}

/* Menu darken background cover */
div#cover
{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}
div#cover.covering
{
  display: block;
  height: 100%;
  width: 100%;
  z-index: 100;
  background-color: rgba(0,0,0,70%);
}

/* Footer links */
.footer_links
{
  font-size: 12px;
  margin-top: -10px;
  margin-bottom: 20px;
  text-decoration: none;
}
.footer_links a:link, a:visited
{
  color: #aaa;
}
.footer_links a:hover, a:active
{
  color: #333;
}

/* Search input placeholder */
.search_input::placeholder {
	color: #bbb;
	opacity: 1; /* firefox */
}
.search_input::-ms-input-placeholder { /* edge 12-18 */
	color: #bbb;
}
