.brand-logo img {
    width: 200px;
    max-width: 100%;
}

.v2-feature {
    font-size: 12px;
    color: #EA5455 !important;
    border: 1px solid #EA5455 !important;
    border-radius: 100%;
    padding:1px 3px;
}
.logo-wrapper img.logo {
    max-width: 100%;
    width: 100px;
    margin-bottom: 10px;
}

 .cursor-pointer{
    cursor: pointer;
}



.loader {
  animation:spin 1s infinite linear;
  border:solid 2vmin transparent;
  border-radius:50%;
  font-size: 0.5rem;
  border-right-color:#1E93B0;
  border-top-color:#1E93B0;
  box-sizing:border-box;
  height:20vmin;
  left:calc(50% - 10vmin);
  position:absolute;
  top:calc(50% - 10vmin);
  width:20vmin;
  z-index:1;
}

@keyframes spin {
  100% {
    transform:rotate(360deg);
  }
}