/*
 * © Loyal Shops 2024 | All Rights Reserved
 */

/** custom login button **/
.flatbtn-blu {
  background-color: #4f94cf;
  border: 0;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  color: #edf4f9;
  cursor: pointer;
  display: inline-block;
  font-size: 1.3em;
  font-weight: bold;
  line-height: normal;
  outline: 0;
  padding: 12px 26px 12px 26px;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  vertical-align: middle;
}

/** modal window styles **/
#lean_overlay {
  background: #000;
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

#loginmodal {
  background: #f3f6fa;
    -moz-border-radius:8px;
    -webkit-border-radius:8px;
    border-radius:8px;
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  padding: 15px 20px;
  width: 300px;
}

#loginmodal h3 {
  margin-top: 0;
}

#loginform { /* no default styles */
}

#loginform label {
  color: #7c8291;
  display: block;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 3px;
}

.txtfield {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#edf3f9), to(#fff));
  background-image: -webkit-linear-gradient(top, #edf3f9, #fff);
  background-image: -moz-linear-gradient(top, #edf3f9, #fff);
  background-image: -ms-linear-gradient(top, #edf3f9, #fff);
  background-image: -o-linear-gradient(top, #edf3f9, #fff);
  background-image: linear-gradient(top, #edf3f9, #fff);
  border: 1px solid;
  border-color: #abbce8 #c3cae0 #b9c8ef;
    border-radius:8px;
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.4);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.4);
  color: #7988a3;
  display: block;
  font-family: 'Helvetica Neue', Helvetica, Verdana, sans-serif;
  font-size: 1.4em;
  margin-bottom: 15px;
  padding: 6px 5px;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
  -moz-transition: all 0.25s linear;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  width: 100%;
}

.txtfield:focus {
  border-color: #84c0ee;
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), 0 0 7px #96c7ec;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), 0 0 7px #96c7ec;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), 0 0 7px #96c7ec;
  color: #525864;
  outline: none;
}