.login-with-wallet-choices{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0
}
.login-with-wallet-choices.vertical{
  flex-direction: column;
  align-items: flex-start;
}
.login-with-wallet-choices a{
  width: 50%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #000;
  text-decoration: none;
  transition: background-color .5s
}
.login-with-wallet-choices.vertical a{
  justify-content: flex-start;
  width: 100%;
}
.login-with-wallet-choices a:hover{
  background-color: #ebeced;
}
.login-with-wallet-choices a i{
  margin-right: 20px;
}
.login-with-wallet-choices a img{
  width: 50px;
  margin-right: 20px;
  height: auto;
}
.login-with-wallet-choices a.lww-loading{
  pointer-events: none;
}
.login-with-wallet-choices a.lww-loading::after{
  position:absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: #ebeced;
  display: flex;
  align-items: center;
  font-size: 15px;
  padding: 0 30px;
  z-index: 999;
  opacity: .9
}
.login-with-wallet-choices a.lww-loading::after{
  content:'';
}
.login-with-wallet-choices a:active,
.login-with-wallet-choices a:focus{
  outline: none;
}
.login-with-wallet-choices a:last-child{
  border-bottom: 0;
}
.login-with-wallet-choices a i.logo svg{
  width: 150px;
  height: auto;
}
.login-with-wallet-choices a i.angle svg{
  width: 20px;
  height: auto;
}
.login-with-wallet-choices small{
  color: #555;
  border-left: 1px dashed #ebeced;
  width: calc( 100% - 200px );
  padding: 0px 15px;
}
.login-with-wallet-connect{
  position: relative;
  cursor: pointer;
  transition: color .5s
}
.login-with-wallet-connect.connected{
  cursor:inherit;
}
.login-with-wallet-connect.switch{
  margin-top: 20px
}
.login-with-wallet-connect:hover{
  color: #135e96;
}
.login-with-wallet-connect.lww-loading{
  opacity: .7
}
.login-with-wallet-info-wrapper{
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  position: relative;
  flex-direction: column;
}
.login-with-wallet-info-wrapper .disconnect{
  color: #135e96;
  width: 100%;
  padding: 0;
  transition: transform .5s;
  cursor: pointer;
}
.login-with-wallet-info-wrapper .disconnect:hover{
  transform: scale(1.05);
  color: red;
}
.login-with-wallet-connect .account{
  position: relative;
  display: flex;
  overflow: hidden;
  white-space:nowrap;
  max-width: 100px;
}
.login-with-wallet-connect .account:after{
  content: '...';
  background-image: linear-gradient(to left, #fff,rgb(0 0 0 / 0%));
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  width: 3rem;
  justify-content: end;
  padding: 15px 0;
  font-size: .5rem;
}
.login-with-wallet-connect .balance{
  display: flex;
  padding: 0px 10px;
  font-size: 1.1rem;
  background: #eee;
  border-radius: 30px;
}
.login-with-wallet-connect .balance small{
  padding: 5px;
}
.login-with-wallet-connect.button.wp-login{
  width: 100%;
  margin-top: 38px;
  margin-bottom: 0;
}

.login-with-wallet-connect.button.wp-login:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #c3c4c7;
    position: absolute;
    top: -22px;
    left: 0;
}

.login-with-wallet-connect.button.wp-login:after {
    content: 'OR';
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translate(-50%,0);
    background: #fff;
    height: 40px;
    padding: 0 10px;
    color: #8c8f94;
}

#login-with-wallet-choices-notification{
  display: none;
  padding: 1rem;
  border: 1px solid #ebeced;
  margin: 20px 0;
}
#login-with-wallet-choices-notification.show{
  display: block;
}
#login-with-wallet-choices-notification.error{
  border: 1px solid red;
  color: red;
}
#login-with-wallet-choices-notification.success{
  border: 1px solid #0b8937;
  color: #0b8937;
}
#login-with-wallet-choices-notification.info{
  border: 1px solid #03958e;
  color: #03958e;
}
#login-with-wallet-choices-notification.pending{
  border: 1px solid #007abe;
  color: #007abe;
}
.login-with-wallet-choices-terms{
  border: 1px solid #ebeced;
  padding: 20px;
  margin-bottom: 20px
}
.login-with-wallet-terms-link{
  color: #135e96;
  border-radius: 0;
  width: 100%;
  display: flex;
  text-decoration: none;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login-with-wallet-terms-link svg{
  width: 20px;
}
/* MODAL */
.login-with-wallet-modal * {
  box-sizing: border-box;
}
.login-with-wallet-modal{
  font-family: Helvetica, Arial, sans-serif;
  position: fixed;
  left: 0;
  top:0;
  background: rgba(0,0,0,.3);
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.login-with-wallet-modal-inner{
  position: fixed;
  left: 50%;
  top:50%;
  transform: translate(-50%,-50%);
  background: #fff;
  max-width: 40%;
  min-width: 300px;
  max-height: 80vh;
  min-height: 150px;
  z-index: 99999;
  overflow-y: auto;
}
.login-with-wallet-modal-body{
  background: #fff;
  padding: 1rem
}
.login-with-wallet-modal-body h2,
.login-with-wallet-modal-body h3{
  margin: 1rem 0
}
.login-with-wallet-modal-close{
  background: #fff;
  border: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 25px;
  height: 25px;
  opacity: .6;
  padding: 0;
  transition: opacity .5s;
  cursor: pointer;
}
.login-with-wallet-modal-close svg{
  width: 25px;
  height: 25px;
}
.login-with-wallet-modal-close:hover{
  opacity: 1;
  background: #fff;
  border: 0
}
.login-with-wallet-modal-body .modal-inline{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.login-with-wallet-modal-body .modal-inline h2,
.login-with-wallet-modal-body .modal-inline h3{
  margin-bottom: 2rem
}
.login-with-wallet-modal-inner.lww-loading:before,
.login-with-wallet-connect.lww-loading:before,
.login-with-wallet-choices a.lww-loading:before{
  content:'';
  position: absolute;
  left: 50%;
  top:50%;
  transform: translate(-50%,-50%) rotate(0deg);
  width: 50px;
  height: 50px;
  z-index: 99999;
  border: 2px solid #ebeced;
  border-right-color: #135e96;
  border-bottom-color: #135e96;
  border-radius: 50px;
  transform-origin: 0 0;
  animation: llwloading 1s infinite linear
}
.login-with-wallet-modal-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 0 2em
}

@keyframes llwloading {
  0%{transform: rotate(0deg) translate(-50%,-50%)}
  100%{transform: rotate(-360deg) translate(-50%,-50%)}
}

#login-with-wallet-modal-notification{
  padding: 1rem;
  border:1px solid #ddd;
  display: none;
  margin-top: 1rem;
  background: #eee;
}
#login-with-wallet-modal-notification.show{
  display: flex;
}
.login-with-wallet-download-metamask{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%
}
.login-with-wallet-modal-body{
  padding: 20px;
}
.login-with-wallet-modal-body h3{
  font-size: 18px;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #ebeced;
  margin: 0;
  text-align: left
}
/* MODAL - END */

form.edit-account[optional_email="yes"] label[for="account_email"] .required{
  display: none;
}

@media (max-width: 1024px) {
  .login-with-wallet-choices{
    flex-direction: column;
    align-items: flex-start;
  }
  .login-with-wallet-choices a{
    justify-content: flex-start;
    width: 100%;
  }
}
