/*
 * Dashforge Auth Pages (Signin, Signup, etc.)
 *
 * This style is use in auth pages.
 *
 */
.content-auth {
  min-height: calc(100vh - 106px);
  display: flex;
  flex-direction: column;
  justify-content: center; }
  .content-auth > .container {
    padding: 0; }
    @media (max-width: 1139px) {
      .content-auth > .container {
        max-width: none;
        padding: 0 20px; } }
    .content-auth > .container:first-child {
      flex: 1; }

.content-auth-alt {
  min-height: calc(100vh - 106px);
  display: flex;
  flex-direction: column;
  justify-content: center; }
  .content-auth-alt .container {
    padding: 0; }
    @media (max-width: 1139px) {
      .content-auth-alt .container {
        max-width: none; } }

.sign-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 340px; }
  @media (min-width: 1200px) {
    .sign-wrapper {
      width: 340px; } }
  .sign-wrapper .form-group label {
    display: block;
    margin-bottom: 5px; }

.tickertxt {
    width: 90%;
}
.ticker {
    border-top: 2px solid #0168fa;
    font-size: 12px;
	width: 100% !important; 
	height:30px;
}
.tickerleft {
    padding: 8px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #0168fa;
    color: white;
    overflow: hidden;
    width: calc(8% - 0px);
    font-size: 13px;
    font-weight: bold;
}
.tickerleft, .tickertxt {
    float: left;
    line-height: 100%;
    display: flex;
    align-items: center;
}
.tickertxt {
 height: 30px;	
 overflow: hidden;
 position: relative;
}
.tickertxt marquee {
 font-size: 13px;
 color: #222;
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 text-transform:capitalize;
 line-height: 30px;
 text-align: center;
 
}
/* Move it (define the animation) */
@-moz-keyframes tickertxt {
 0%   { -moz-transform: translateX(100%); }
 100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes tickertxt {
 0%   { -webkit-transform: translateX(100%); }
 100% { -webkit-transform: translateX(-100%); }
}
@keyframes tickertxt {
 0%   { 
 -moz-transform: translateX(100%); /* Firefox bug fix */
 -webkit-transform: translateX(100%); /* Firefox bug fix */
 transform: translateX(100%); 		
 }
 100% { 
 -moz-transform: translateX(-100%); /* Firefox bug fix */
 -webkit-transform: translateX(-100%); /* Firefox bug fix */
 transform: translateX(-100%); 
 }
}
/*----scrollbar------*/
.scrollbar {
margin-left: 0px;
float: left;
height: 360px;
width: 100%;
overflow-y: scroll;
margin-bottom:0px; 
margin-top:0px;
}
.scrollbar-primary::-webkit-scrollbar {
width: 6px;
}
.scrollbar-primary::-webkit-scrollbar-thumb {
/*border-radius: 10px;*/
/*-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);*/
/*background-color: #4285F4;*/
background-image: linear-gradient(#666, #666); 
}

/*.tickertxtinner {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}
.newstxt {
    padding-right: 50px;
    text-decoration: none;
    color: black;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}*/