/*//////////////////////////////////////////////////////////////////
[ FONT ]*/
@import url('//fonts.googleapis.com/css?family=Roboto:100,300,400,500,700');

@font-face {
  font-family: "Ionicons";
  src: url("../../fonts/ionicons.woff?v=2.0.0") format("woff");
  font-weight: normal;
  font-style: normal;
}

.icon {
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ion-close:before {
  content: "\f2d7";
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  overflow: hidden;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #363636;
}

/*---------------------------------------------*/
a {
  display: flex;
  align-items: center;
  font-family: Roboto;
  font-size: 14px;
  line-height: 1.7;
  color: #e9e9f0;;
  margin: 0;
  text-decoration: none;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;

}

/*---------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  margin: 0px;
}

p {
  font-family: Roboto;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
}

ul, li {
  margin: 0px;
  list-style-type: none;
}


/*---------------------------------------------*/
input {
  outline: none;
  border: none;
  font-size: 16px !important;
  border: 2px solid transparent;
}

textarea {
  outline: none;
  border: none;
  border: 2px solid transparent;
}

textarea:focus, input:focus {
  background-color: #fff;
  border-color: #7ba9ff;
}

textarea:hover, input:hover {
  border: 2px solid #d4d9e0;
}

input::-webkit-input-placeholder {
  opacity: 0.8;
  color: #415058;
}

input:-moz-placeholder {
  opacity: 0.8;
  color: #415058;
}

input::-moz-placeholder {
  opacity: 0.8;
  color: #415058;
}

input:-ms-input-placeholder {
  opacity: 0.8;
  color: #415058;
}

textarea::-webkit-input-placeholder {
  opacity: 0.8;
  color: #415058;
}

textarea:-moz-placeholder {
  opacity: 0.8;
  color: #415058;
}

textarea::-moz-placeholder {
  opacity: 0.8;
  color: #415058;
}

textarea:-ms-input-placeholder {
  opacity: 0.8;
  color: #415058;
}

label {
  display: block;
  margin: 0;
}

/*---------------------------------------------*/
button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Chrome auto-fill]*/

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-size-adjust: none;
  -webkit-font-size: 16px;
  -webkit-box-shadow: 0 0 0px 1000px #fffde1 inset;
  transition: background-color 5000s ease-in-out 0s;
}

/*//////////////////////////////////////////////////////////////////
[ Main-image ]*/

.main-img-wrapper {
  width: 480px;
  height: 100vh;
  display: none;
}

.main-img {
  position: relative;
  width: 100%;
  height: 100vh;
  opacity: 0;
  object-fit: cover;
  transition: opacity .5s ease-in-out;
}

.main-img.image-loaded {
  opacity: 1;
}

/*==================================================================
[ Text ]*/
.txt1 {
  font-family: Roboto;
  font-size: 13px;
  line-height: 1.4;
  color: #555555;
}

.txt2 {
  font-family: Roboto;
  font-size: 13px;
  line-height: 1.4;
  color: #999999;
}

/*==================================================================
[ Size ]*/
.size1 {
  width: 355px;
  max-width: 100%;
}

.size2 {
  width: calc(100% - 43px);
}

/*==================================================================
[ Background ]*/
.bg1 {
  background: #3b5998;
}

.bg2 {
  background: #1da1f2;
}

.bg3 {
  background: #cd201f;
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/
.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-image: linear-gradient(to top, rgba(0, 88, 255, 0) 76%, rgba(0, 88, 255, 0.36) 100%);
}

/*==================================================================
[ login more ]*/
.login100-more {
  width: calc(100% - 480px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.login100-more::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
}

/*==================================================================
[ Form ]*/

.login100-form {
  position: relative;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}

.login100-form::-webkit-scrollbar { width: 0 !important }

.login100-form { overflow: -moz-scrollbars-none; }

.login100-form { -ms-overflow-style: none; }

#signinPanel {
  display: block;
  position: relative;
  direction: ltr;
}

#signinPanel.hide {
  display: none;
}

.login100-inner_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.login100-form-title {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.login100-form-title img {
  width: 100%;
  max-width: 208px;
}

#redirectLoader {
   width: 100%;
   display: none;
   text-align: center;
   justify-content: center;
   margin-top: 125px;
 }

#redirectLoader span{
  color: #ffffff;
  margin-top: 35px;
}

#redirectLoader.show{
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  max-width: 390px;
  position: relative;
  margin: auto;
  margin-bottom: 36px;
}

.wrap-labels100 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 7px;
}

.field-header {
  margin-bottom: 16px;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;

}

.label-input100 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Roboto;
  font-weight: 900;
  font-size: 20px;
  color: #1f2c9c;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

.label-input100.hint {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #8995a0;
}

.label-input100.hint:hover {
  opacity: 1;
}

.label-input100 img {
  margin-right: 4px;
}
a.label-input100.hint:hover {
  color: #2671ff;
}

.label-input100.hint.forgot-hint {
  cursor: default;
  margin-top: 8px;
  margin-bottom: 72px;
}

.label-input100.alignLeft {
  justify-content: flex-start;
}

.input100 {
  display: block;
  width: 100%;
  border-radius: 10px;
  background: #e9e9f0;
  font-size: 16px;
  font-family: Roboto;
  color: #1f2c9c;
  line-height: 1.2;
  padding: 0 12px;
}

input.input100 {
  height: 44px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.info-links {
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 15px;
  height: 18px;
  left: 0;
  right: 0;
}

.info-links li {
  margin-right: 16px;
}

.info-links li:last-child {
  margin-right: 0;
}

.info-links li a {
  font-size: 14px;
  font-weight: 500;
  color: #8995a0;
}

#newPasswordConfirmInputWrapper {
  margin-bottom: 20px;
}

#fieldHeaderType {
 margin-bottom: 32px;
}

/*==================================================================
[ Restyle Checkbox ]*/

.input-checkbox100 {
  display: none;
}

.label-checkbox100 {
  font-family: Roboto;
  font-size: 13px;
  color: #999999;
  line-height: 1.4;
  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.label-checkbox100::before {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 13px;
  color: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #6675df;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input-checkbox100:checked + .label-checkbox100::before {
  color: #6675df;
}

/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  position: relative;
  width: 85%;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.login100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  width: 100%;
  max-width: 300px;
  height: 50px;
  border-radius: 10px;
  background: #2671ff;
  margin: 22px auto 0;
  font-family: Roboto;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn:disabled {
  pointer-events: none;
  cursor: default;
  opacity: .4;
}

.login100-form-btn:focus {
  box-shadow: inset 0 0 0 2px rgba(201, 219, 255, .7);
}

.login100-form-btn:hover {
  background-image: linear-gradient(to bottom, #4eaaff, #2671ff);
}

#signinWithGoogleBtn {
  justify-content: space-between;
  background-color: #fff;
  color: #2671ff;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
}

#signinWithGoogleBtn:hover {
  background-color: #e9f0ff;
  box-shadow: 0 3px 8px 0 #a2c1ff;
  background-image: none;
}

#signinWithGoogleBtn:focus {
  background-color: #fff;
  box-shadow: 0 3px 8px 0 #c9dbff;
  border: 2px solid #c9dbff;
}

#sendBtn, #saveBtn {
  margin-top: 0;
}

.google-logo-wrapper {
  display: flex;
  align-items: center;
}

.google-logo {
  width: 32px;
}

.reset-success-img {
  width: 112px;
  height: 112px;
  margin-bottom: 18px;
}

/*==================================================================
[ Loader ]*/
.loader-wrapper {
  position: absolute;
  top: 37px;
  left: 39px;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.loader {
  box-sizing: border-box;
  height: 35px;
  width: 35px;
  margin: -25px 0px 0px -25px;
  border-radius: 50%;
  border-top: solid 5px rgba(255, 255, 255, 1);
  border-right: solid 5px rgba(255, 255, 255, 0.5);
  border-bottom: solid 5px rgba(255, 255, 255, 0.5);
  border-left: solid 5px rgba(255, 255, 255, 0.5);
  animation: spin 0.5s infinite linear;
  -webkit-animation: spin 0.5s infinite linear;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

.hide {
  display: none;
}

/*=================================================================
[ Tooltip ]*/
.tooltip-wrapper {
  position: relative;
}

.tooltip-wrapper .tooltip {
  background: #1f2c9c;
  bottom: 100%;
  color: #fff;
  display: block;
  left: -52px;
  margin-bottom: 8px;
  opacity: 0;
  padding: 5px;
  pointer-events: none;
  position: absolute;
  width: 200px;
  border-radius: 4px;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -ms-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  -webkit-box-shadow: 0 2px 7px 0 rgba(31, 44, 156, 0.4);
  -moz-box-shadow: 0 2px 7px 0 rgba(31, 44, 156, 0.4);
  -ms-box-shadow: 0 2px 7px 0 rgba(31, 44, 156, 0.4);
  -o-box-shadow: 0 2px 7px 0 rgba(31, 44, 156, 0.4);
  box-shadow: 0 2px 7px 0 rgba(31, 44, 156, 0.4);
}

.tooltip-wrapper .tooltip:before {
  bottom: -15px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%;
}

.tooltip-wrapper .tooltip:after {
  border-left: solid transparent 8px;
  border-right: solid transparent 8px;
  border-top: solid #1f2c9c 8px;
  bottom: -8px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -13px;
  position: absolute;
  width: 0;
}

.tooltip-wrapper:hover .tooltip {
  opacity: .9;
  pointer-events: auto;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

/* IE can just show/hide with no transition */
.lte8 .tooltip-wrapper .tooltip {
  display: none;
}

.lte8 .tooltip-wrapper:hover .tooltip {
  display: block;
}

/*==================================================================
[ Validation ]*/
.error .input100 {
  border: #f75173 solid 2px;
}

.help-block {
  position: relative;
  bottom: -8px;
  font-size: 14px;
  font-weight: 500;
  color: #f75173;
  visibility: hidden;
  opacity: 0;
  text-align: left;
}

.error .help-block {
  visibility: visible;
  opacity: 1;
}

.server-errors {
  position: relative;
  width: 100%;
  bottom: 22px;
  font-size: 14px;
  font-weight: 500;
  color: #f75173;
}

.server-errors > div {
  margin-top: 5px;
}

.axios-error div,
.server-errors div {
  min-height: 16px;
}

.disabled {
  pointer-events: none;
  cursor: default;
  opacity: .4;
}
/*==================================================================
[ Terms ]*/
.terms {
  max-width: 390px;
  color: #3d4c59;
  font-weight: 500;
  display: none;
  margin: 0 auto 56px;
}

.terms > div {
  position: absolute;
  margin-top: 12px;
}

.terms span, .terms label {
  margin-left: 8px;
}

.terms a {
  color: #2671ff;
  font-size: 16px;
  line-height: 1;
}

.terms .and {
  color: #3d4c59;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  margin-left: 21px;
}

/*==================================================================
[ ReCaptcha ]*/
.terms > div {
  position: absolute;
}

.terms span {
  margin-left: 8px;
}

.recaptcha {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 74px;
  margin-top: -8px;
}

.g-recaptcha {
  /*transform:scale(1.05);*/
  /*transform-origin:50% 50%;*/
}

/*------------------------------------------------------------------
[ Responsive ]*/

@media screen and (min-width: 768px) {
  .login100-form-title {
    margin-bottom: 52px;
  }

  .login100-form-title img {
    max-width: 292px;
  }

  .timeline {
    position: fixed;
    top: -75px;
    width: 460px;
    height: 340px;
    background: url('../images/opt_main_graph.png') no-repeat;
    background-size: contain;
  }

  .cube {
    position: fixed;
    top: 570px;
    left: -30px;
  }

  .cube:before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 84px;
    height: 34px;
    background-color: #0f3c93;
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: .26;
    transform: translateX(-50%);
    left: 50%;
  }

  .cube img {
    width: 190px;
    height: 190px;
    object-fit: contain;
    animation-name: shake-vertical;
    animation-duration: 20s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
  }

  .terms {
    display: flex;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 1100px) {
  .main-img-wrapper {
    display: block;
    width: 480px;
    background-image: linear-gradient(to bottom, #e9f0ff, #e9f0ff 66%, #b3cdff);
  }

  .main-img-wrapper:before {
    content: '';
    width: 480px;
    height: 45vh;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url('../images/opt_dot_grid.png') no-repeat;
    background-size: cover;
  }

  .container-login100 {
    background-image: none;
  }

  .timeline {
    top: 65px;
    width: 668px;
    height: 489px;
    background: url('../images/opt_main_graph.png') no-repeat;
    background-size: contain;
  }

  .cube {
    top: 590px;
    left: 50px;
  }

  .cube img {
    width: 237px;
    height: 183px;
  }

  .login100-form {
    background: none;
  }
}

/*--------------------- DO NOT DELETE! ----------------------------/*
[ for webkit autofill ]*/
@keyframes onAutoFillStart {
  from { /**/
  }
  to { /**/
  }
}

@keyframes onAutoFillCancel {
  from { /**/
  }
  to { /**/
  }
}


input:-webkit-autofill {
  animation-name: onAutoFillStart;
  transition: background-color 50000s ease-in-out 0s;
}

input:not(:-webkit-autofill) {
  animation-name: onAutoFillCancel;
}

@keyframes shake-vertical {
  0%{
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  10%{
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  20%{
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  30%{
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  40%{
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  50%{
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  60%{
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  70%{
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  80%{
    -webkit-transform: translateY(2.4px);
    transform: translateY(2.4px);
  }
  90%{
    -webkit-transform: translateY(-2.4px);
    transform: translateY(-2.4px);
  }
  100%{
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/*------------------------------------------------------------------*/
