.sign-in-text {
    font-size: 14px;
    display:inline;
}
@media (min-width: 1200px) and (max-width: 1400px) {
    .sign-in-text {
        display:none;
    }
    #portal-auth-widget {
        top: 5px;
    }
}
@media (max-width: 1180px) {
    .sign-in-text {
        display:none;
    }
    #portal-auth-widget {
        top: 58px;
    }
}
#portal-user-bar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  background: rgb(51, 51, 51);
  color: #fff;
  font-size: 14px;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  height:30px;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
#portal-user-bar a {
  color: #4ec1e0;
  text-decoration: none;
  margin-left: 8px;
}
#portal-user-bar a:hover {
  text-decoration: underline;
}
/* Top-right auth button */
#portal-auth-widget {
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 999999;
  font-size:16px;
}
#portal-auth-widget button {
  background: #000;
  color: #fff;
  border: solid;
  border-color: #fff;
  border-width: 1px;
  padding: 2px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}
#portal-auth-widget button:hover {
  background: rgb(255, 255, 0);
  color: #000;
}

/* Modal overlay */
#portal-auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  z-index: 9999999;
}
#portal-auth-modal.hidden {
  display: none;
}

/* Modal content */
.modal-content {
  background: #fff;
  color: rgb(77, 77, 77);
  padding: 25px 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 530px;
  position: relative;
  padding-top:0px;
}
#portal-close {
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
  font-size: 22px;
}
.auth-tabs {
  margin: 15px 0;
  text-align: center;
}
.auth-tabs .tab {
  background: #eee;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  margin: 0 4px;
  border-radius: 5px;
}
.auth-tabs .tab.active {
  background: #4ec1e0;
  color: #000;
}
.tab-pane {
	border:none!Important;
}
.modal-links {
text-decoration:underline!important;
}
.modal-links:hover {
text-decoration:none!important;
cursor:pointer;
}
.modal-labels {
	margin-left:0px;
	padding-left:0px;
	white-space: nowrap;
}
.flash-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  z-index: 9999999;
}
.portal-flash {
	background: #fff;
	color: rgb(77, 77, 77);
	padding: 25px 30px;
	border-radius: 10px;
	width: 90%;
	max-width: 530px;
	position: relative;
	padding-top:20px;
}
.modal-remove {
	float:right;
	font-size:20px;
}