/*============================================================
--------------------------- IMPORTS --------------------------
============================================================*/
/*============================================================
--------------------------- COLORS --------------------------
============================================================*/
/*============================================================
--------------------------- CONSTANTS ------------------------
============================================================*/
/*============================================================
--------------------------- MAIN STYLES ----------------------
============================================================*/
.cardStyle {
  background-color: #ffffff;
  box-shadow: 0px 0px 0px 1px #d8d8d8;
  overflow: visible !important;
}

::selection {
  background: #b0d9f6;
}

::-moz-selection {
  background: #b0d9f6;
}

.normal, .normalFocused {
  color: black;
  font-family: "Open Sans", Helvetica, Arial, Verdana, sans-serif;
  font-size: 11px;
}

/*============================================================
----------------------------- MISC --------------------------
============================================================*/
.red_border {
  box-shadow: inset 0px 0px 0px 1px red;
}

/*============================================================
------------------------- STATES MIXIN -----------------------
============================================================*/
/*
Returns all selectors obtainable by combining a $mainClass with a list of $stateClasses and a list of $states.
Expects at least 1 stateClass and 1 state
 */
/*============================================================
---------------------------- EASING --------------------------
============================================================*/
/*============================================================
------------------------ ANIMATIONS --------------------------
============================================================*/
@keyframes slide-down {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes slide-up {
  0% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes slide-right {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes slide-left {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoom-in {
  0% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoom-out {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tooltip-pop {
  0% {
    opacity: 0;
    transform: translate(0px, -20px) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px) scale(1);
  }
}
/*============================================================
--------------------------- PAGE ----------------------
============================================================*/
html {
  min-width: 960px;
  background-color: #ffffff;
}

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow: hidden;
}

:focus {
  outline: none;
}

::-moz-focus-inner {
  border: 0;
}

input:-webkit-autofill {
  background-color: transparent;
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}

/*============================================================
--------------------------- LOGIN ----------------------
============================================================*/
body #content {
  position: relative;
  top: calc(50% - 270px);
  width: 460px;
  margin: 0px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Open Sans", Helvetica, Arial, Verdana, sans-serif;
  z-index: 10;
}
body #content:after {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 0px;
  z-index: -1;
}
body .separation {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #c5c5c5;
  line-height: 0.1em;
  margin: 70px 0 30px 0;
  color: #232323;
}
body .separation span {
  background: #fff;
  padding: 0 10px;
}
body #login, body #oauth_options {
  margin: 0 -296px 20px 0;
  width: 100%;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 10px;
}
body #login a, body #oauth_options a {
  text-decoration: none;
}
body #login #logo, body #oauth_options #logo {
  padding: 0px 0px;
  margin: 0px 50px;
}
body #login #logo img, body #oauth_options #logo img {
  width: 100%;
}
body #login #instanceName, body #oauth_options #instanceName {
  width: 100%;
  font-family: "Open Sans", Helvetica, Arial, Verdana, sans-serif;
  font-weight: 300;
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
body #login .input_container, body #oauth_options .input_container {
  position: relative;
}
body #login .input_container label, body #oauth_options .input_container label {
  position: absolute;
  top: 38px;
  left: 50%;
  width: 100px;
  margin-left: -50px;
  color: #999999;
  text-align: center;
  cursor: text;
  font-size: 12px;
  font-family: "Open Sans", Helvetica, Arial, Verdana, sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  z-index: 50;
  font-size: 13px;
  -webkit-transition: -webkit-transform 200ms ease-in-out, color 200ms ease-in-out;
  -moz-transition: -moz-transform 200ms ease-in-out, color 200ms ease-in-out;
  transition: transform 200ms ease-in-out, color 200ms ease-in-out;
}
body #login .input_container label.down, body #oauth_options .input_container label.down {
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}
body #login .input_container label.up, body #oauth_options .input_container label.up {
  -webkit-transform: translate(0px, -30px) scale(0.8);
  -moz-transform: translate(0px, -30px) scale(0.8);
  -ms-transform: translate(0px, -30px) scale(0.8);
  -o-transform: translate(0px, -30px) scale(0.8);
  transform: translate(0px, -30px) scale(0.8);
}
body #login input, body #oauth_options input {
  width: 300px;
  margin: 0px 80px;
  font-family: "Open Sans", Helvetica, Arial, Verdana, sans-serif;
  padding: 3px;
  font-size: 14px;
  text-align: center;
  color: #232323;
  letter-spacing: 1px;
}
body #login input[type=text], body #login input[type=password], body #oauth_options input[type=text], body #oauth_options input[type=password] {
  margin-top: 25px;
  height: 40px;
  background-color: #f8f8f8 !important;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #c5c5c5;
  border-radius: 5px;
  -webkit-transition: background-color 200ms ease-in-out, box-shadow 200ms ease-in-out, border 200ms ease-in-out;
  -moz-transition: background-color 200ms ease-in-out, box-shadow 200ms ease-in-out, border 200ms ease-in-out;
  transition: background-color 200ms ease-in-out, box-shadow 200ms ease-in-out, border 200ms ease-in-out;
}
body #login input[type=text]:hover, body #login input[type=text]:focus, body #login input[type=text]:active, body #login input[type=password]:hover, body #login input[type=password]:focus, body #login input[type=password]:active, body #oauth_options input[type=text]:hover, body #oauth_options input[type=text]:focus, body #oauth_options input[type=text]:active, body #oauth_options input[type=password]:hover, body #oauth_options input[type=password]:focus, body #oauth_options input[type=password]:active {
  border-color: #29a3b3;
}
body #login input[type=text]:active, body #login input[type=text]:focus, body #login input[type=password]:active, body #login input[type=password]:focus, body #oauth_options input[type=text]:active, body #oauth_options input[type=text]:focus, body #oauth_options input[type=password]:active, body #oauth_options input[type=password]:focus {
  background-color: #dcf5f8 !important;
}
body #login .buttonSubmit, body #login .oauthButton, body #oauth_options .buttonSubmit, body #oauth_options .oauthButton {
  margin-top: 30px;
  height: 38px;
  line-height: 36px;
  font-family: "Open Sans", Helvetica, Arial, Verdana, sans-serif;
  font-size: 13px;
  color: #ffffff;
  background-color: #27ABBA;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: background-color 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), box-shadow 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: background-color 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), box-shadow 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), -moz-transform 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: background-color 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), box-shadow 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), transform 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  box-shadow: inset 0px 0px 0px 0px rgba(255, 255, 255, 0), 0px 1px 0px 0.5px rgba(0, 0, 0, 0);
}
body #login .buttonSubmit:hover, body #login .buttonSubmit:focus, body #login .oauthButton:hover, body #login .oauthButton:focus, body #oauth_options .buttonSubmit:hover, body #oauth_options .buttonSubmit:focus, body #oauth_options .oauthButton:hover, body #oauth_options .oauthButton:focus {
  background-color: #25b6c5;
  box-shadow: inset 0px 0px 0px 0px rgba(255, 255, 255, 0), 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
}
body #login .buttonSubmit:active, body #login .oauthButton:active, body #oauth_options .buttonSubmit:active, body #oauth_options .oauthButton:active {
  background-color: #238392;
  box-shadow: inset 0px 1px 1px 0px rgba(0, 0, 0, 0.5), 0px 1px 1px 0.5px rgba(0, 0, 0, 0);
}
body #login .oauthButton, body #oauth_options .oauthButton {
  width: 300px;
  margin: 10px auto;
}
body #login .oauthButton.Google, body #oauth_options .oauthButton.Google {
  height: 41.25px;
  width: 198px;
  background-color: #4285f4;
  border: 1px solid transparent;
  color: #fff;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background-color 0.218s, border-color 0.218s, box-shadow 0.218s;
  transition: background-color 0.218s, border-color 0.218s, box-shadow 0.218s;
  -webkit-user-select: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  position: relative;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
body #login .oauthButton.Google:hover, body #oauth_options .oauthButton.Google:hover {
  -webkit-box-shadow: 0 0 3px 3px rgba(66, 133, 244, 0.3);
  box-shadow: 0 0 3px 3px rgba(66, 133, 244, 0.3);
}
body #login .oauthButton.Google:active, body #oauth_options .oauthButton.Google:active {
  background-color: #3367d6;
}
body #login .oauthButton.Google .Google-iconWrap, body #oauth_options .oauthButton.Google .Google-iconWrap {
  float: left;
  background-color: #fff;
  padding: 12.37px;
}
body #login .oauthButton.Google .Google-iconWrap .Google-icon, body #oauth_options .oauthButton.Google .Google-iconWrap .Google-icon {
  width: 16.5px;
  height: 16.5px;
  background: url(../images/google-logo.png) no-repeat;
  background-size: 16.5px 16.5px;
}
body #login .oauthButton.Google .Google-contents, body #oauth_options .oauthButton.Google .Google-contents {
  font-family: Roboto, arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  vertical-align: middle;
}
body #login .oauthButton.Okta, body #oauth_options .oauthButton.Okta {
  text-align: center;
}
body #login .oauthButton.Okta .Okta-iconWrap, body #oauth_options .oauthButton.Okta .Okta-iconWrap {
  float: left;
  margin: 4px 0 4px 10px;
  border-right: 1px solid #fff;
}
body #login .oauthButton.Okta .Okta-iconWrap .Okta-icon, body #oauth_options .oauthButton.Okta .Okta-iconWrap .Okta-icon {
  width: 70px;
  height: 30px;
  background: url(../images/okta-logo.png) no-repeat 2% 50%;
}
body #login .oauthButton.Okta .Okta-contents, body #oauth_options .oauthButton.Okta .Okta-contents {
  font-family: Roboto, arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-left: 6px;
  margin-right: 6px;
  vertical-align: top;
}
body #login .oauthButton.OIDC, body #oauth_options .oauthButton.OIDC {
  text-align: center;
}
body #login .oauthButton.OIDC .OIDC-iconWrap, body #oauth_options .oauthButton.OIDC .OIDC-iconWrap {
  float: left;
  margin: 4px 0 4px 10px;
  border-right: 1px solid #fff;
}
body #login .oauthButton.OIDC .OIDC-iconWrap .OIDC-icon, body #oauth_options .oauthButton.OIDC .OIDC-iconWrap .OIDC-icon {
  width: 70px;
  height: 30px;
  background: url(../images/openid-logo.png) no-repeat;
  background-size: 60px;
  background-position-y: 3px;
}
body #login .oauthButton.OIDC .OIDC-contents, body #oauth_options .oauthButton.OIDC .OIDC-contents {
  font-family: Roboto, arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-left: 6px;
  margin-right: 6px;
  vertical-align: middle;
}
body #login .oauthButton.SAML, body #oauth_options .oauthButton.SAML {
  text-align: center;
}
body #login .oauthButton.SAML .SAML-iconWrap, body #oauth_options .oauthButton.SAML .SAML-iconWrap {
  float: left;
  margin: 4px 0 4px 10px;
  border-right: 1px solid #fff;
}
body #login .oauthButton.SAML .SAML-iconWrap .SAML-icon, body #oauth_options .oauthButton.SAML .SAML-iconWrap .SAML-icon {
  width: 80px;
  height: 30px;
  background: url(../images/saml-logo.png) no-repeat;
  background-size: 80px;
  background-position-y: 3px;
}
body #login .oauthButton.SAML .SAML-contents, body #oauth_options .oauthButton.SAML .SAML-contents {
  font-family: Roboto, arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-left: 6px;
  margin-right: 6px;
  vertical-align: middle;
}
body .infos {
  z-index: 3000;
  letter-spacing: 1px;
  margin-top: 70px;
  text-align: center;
  color: #232323;
  font-size: 10px;
  font-family: "Open Sans", Helvetica, Arial, Verdana, sans-serif;
}
body .infos .row {
  width: 310px;
  position: relative;
  left: 50%;
  margin-left: -155px;
  margin-top: 4px;
}
body .infos #version {
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 15px;
  border-bottom: 1px solid #c5c5c5;
}
body .infos #version #buildDate {
  letter-spacing: 1px;
  font-weight: normal;
}
body .infos #license {
  font-size: 12px;
}

/*============================================================
---------------------------- MESSAGES -----------------------
============================================================*/
.error {
  z-index: 4000;
  display: block;
  position: absolute;
  margin-top: 13px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px 15px 15px 80px;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
  background-position: 50% 50%;
  background: #ffd8d7 url(../images/error.png) no-repeat 20px 50%;
  border: 1px solid #ca2027;
  color: #ca2027;
  border-radius: 10px;
  -webkit-transform-origin: 50% 0%;
  -moz-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -o-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transform: translate(0px, -30px) scale(0.8);
  -moz-transform: translate(0px, -30px) scale(0.8);
  -ms-transform: translate(0px, -30px) scale(0.8);
  -o-transform: translate(0px, -30px) scale(0.8);
  transform: translate(0px, -30px) scale(0.8);
  -webkit-transition: -webkit-transform 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55), color 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: -moz-transform 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55), color 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55), color 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.error::before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #ffd8d7;
  top: 4px;
  left: 50%;
  margin-left: -10px;
  margin-top: -13px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 1px solid #ca2027;
  border-left: 1px solid #ca2027;
}
