@import url(../../samcanet/apps/spec/spec.css?20250514);@import url(normalize.css);
@import url(sm5-icon-font.css);

/***************************************/
/*
/*      FONTS
/*
/***************************************/

@font-face {
  font-family: 'Roboto-Light';
  src: url('../fonts/Roboto-Light-Latin.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans-Regular-Latin.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans Bold';
  src: url('../fonts/OpenSans-Bold-Latin.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
/***************************************/
/*      VARIABLES
/***************************************/

:root {

  /*  ------------ Font --------------------  */
  --special-font: 'Open Sans';
  --special-bold-font: 'Open Sans Bold';
  --normal-font: 'Roboto-Light';

  /* ----------   SM5-Portal Login Colors ----------- */

  /*   Color (c- brand  font color)   */
  --c-brand-color: #777777;
  --c-secondary-color: rgb(40, 40, 40);
  --c-tertiary-color: rgb(128, 128, 128);

  /*   Color (bg- brand background color)   */
  --bg-brand-color: #CF3337;
  --bg-secondary-color: rgb(40, 40, 40);
  --bg-tertiary-color: rgb(128, 128, 128);

  /*   Color (b- brand border color)   */
  --b-brand-color: rgb(250, 95, 26);
  --b-secondary-color: rgb(40, 40, 40);
  --b-tertiary-color: rgb(128, 128, 128);

  /* -------------  Login Colors ----------------- */

  /*   Color (c- color)   */
  --c-grey-0: rgb(90, 90, 90);
  --c-grey-1: rgb(128, 128, 128);
  --c-grey-2: rgb(180, 180, 180);
  --c-grey-3: rgb(240, 240, 240);
  --c-white: rgb(255, 255, 255);
  --c-black: rgb(0, 0, 0);
  --c-login-up: rgba(255,255,255,.3);

  /*   Color (bg- background)   */
  --bg-grey-0: rgb(90, 90, 90);
  --bg-grey-1: rgb(128, 128, 128);
  --bg-grey-2: rgb(180, 180, 180);
  --bg-grey-3: rgb(240, 240, 240);
  --bg-white: rgb(255, 255, 255);

  /*   Color (b- border)   */
  --b-grey-0: rgb(90, 90, 90);
  --b-grey-1: rgb(128, 128, 128);
  --b-grey-2: rgb(180, 180, 180);
  --b-white: rgb(255, 255, 255);
  --b-black: rgb(0, 0, 0);

  /*   Login buttons  */
  --c-disabled-btn: rgb(192, 192, 192);
  --bg-disabled-btn: rgb(192, 192, 192);
  --b-disabled-btn: rgb(192, 192, 192);

  /* Popup colors */
  --c-red: rgb(200, 51, 39);
  --c-yellow: rgb(255, 235, 70);
  --c-orange: rgb(250, 95, 26);
  --c-green: rgb(0, 153, 51);
  --c-blue: rgb(51, 153, 255);

  /* original brand colors */
  --original-brand-color: rgb(250, 95, 26);
  --original-secondary-color: rgb(40, 40, 40);
  --original-tertiary-color: rgb(87, 87 ,87);

}



/***************************************/
/*      BASE
/***************************************/

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body {
  line-height: 1;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;}

body {
  -webkit-text-size-adjust: none; }

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

input, select, textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none; }


/***************************************/
/*      BASIC
/***************************************/

@-ms-viewport {
  width: device-width; }

body {
  -ms-overflow-style: scrollbar;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0.45px rgba(0, 0, 0, 0.1);}

@media screen and (max-width: 480px) {
  html, body { min-width: 320px; }
}

html {box-sizing: border-box; }

*, *::before, *::after {
  box-sizing: inherit; }

body {
  background: var(--bg-white); }
body.is-preload *, body.is-preload *::before,
body.is-preload *::after, body.is-resizing *,
body.is-resizing *::before, body.is-resizing *::after {
  -moz-animation: none !important;
  -webkit-animation: none !important;
  -ms-animation: none !important;
  animation: none !important;
  -moz-transition: none !important;
  -webkit-transition: none !important;
  -ms-transition: none !important;
  transition: none !important;
}

body {
  font-family: var(--normal-font);
  margin: 0;
  padding: 20px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/***************************************/
/*      TYPE
/***************************************/

body, input, select, textarea {
  color: var(--c-secondary-color);
  font-family: var(--normal-font);
  font-size: 10pt;  /* Attention: Needed to disable browser font size.*/
  font-weight: normal;
  line-height: 1.65; }

@media screen and (max-width: 360px) {
  body, input, select, textarea {font-size: 9pt; } }

p {
  margin: 0 0 1em 0; }

h1, h2, h3, h4, h5, h6 {
  color: var(--c-white);
  font-family: var(--special-bold-font);
  font-weight: normal;
  line-height: 1.5;
  margin: 0 0 .2em 0; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  text-decoration: none;
  border-bottom: 0; }

h1 {
  font-size: 4em;
  margin: 0 0 0.5em 0;
  line-height: 1.3; }

h2 {
  font-size: 1.75em; }

h3 {
  color: var(--c-brand-color);
  font-size: 1.25em; }

h4 {
  font-size: 1.1em; }

h5 {
  font-size: 0.9em; }

h6 {
  color: var(--c-white);
  font-size: 0.7em;}

/* Text Align */
.align-left {text-align: left; }
.align-center {text-align: center; }
.align-right {text-align: right; }



/***************************************/
/*      FORM - components
/***************************************/

form label {
  color: var(--c-secondary-color);
  display: block;
  font-size: .9em;
  font-family: var(--special-font);
  text-transform: uppercase;
  margin: 0 0 0 0;
  text-align: left;
}

/* form inputs */
form input[type="text"],
form input[type="email"],
form input[type="password"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background: var(--c-white);
  font-family: var(--normal-font);
  font-size: 1em;
  border-radius: 0;
  border: none;
  border-bottom:1px solid var(--b-grey-1);
  color: inherit;
  display: block;
  outline: 0;
  padding: 0 .75em;
  text-decoration: none;
  width: 100%; }
form input[type="text"]:invalid,
form input[type="email"]:invalid,
form input[type="password"]:invalid {
  box-shadow: none; }
form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus {
  border-color: var(--b-brand-color); }

form input[type="text"],
form input[type="email"],
form input[type="password"]{
  height: 2em; }

/* form checkbox */
form input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  display: block;
  float: left;
  margin-right: -2em;
  opacity: 0;
  width: 1em;
  z-index: 50;
}
form input[type="checkbox"] + label {
  text-decoration: none;
  font-family: var(--special-font);
  color: var(--c-secondary-color);
  cursor: pointer;
  display: inline-block;
  font-size: .9em;
  line-height: 1.5;
  font-weight: normal;
  padding-left: 2.1em;
  position: relative;
  text-align: center;}
form input[type="checkbox"] + label:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: var(--icon-font);
  font-weight: bolder; }
form input[type="checkbox"] + label:before{
  background: var(--c-white);
  border-radius: 0;
  border: solid 1px var(--b-secondary-color);
  content: '';
  display: inline-block;
  font-size: 0.8em;
  height: 2.0625em;
  left: 0;
  line-height: 2.0625em;
  position: absolute;
  text-align: center;
  top: 0;
  width: 2.0625em; }
form input[type="checkbox"]:checked + label:before {
  background: var(--bg-brand-color);
  border-color: var(--b-brand-color);
  color: var(--c-white);
  content: ''; }
form input[type="checkbox"]:focus + label:before,
form input[type="checkbox"]:hover + label:before {
  border-color: var(--b-brand-color);
  box-shadow: 0 0 0 1px var(--b-brand-color) }

form input[type="checkbox"] + label:before {
  border-radius: 0 }

/* form buttons */
button,
.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  background-color: transparent;
  border-radius: 0.2em;
  border: 0;
  color: var(--c-white)!important;
  cursor: pointer;
  display: inline-block;
  font-family: var(--special-font);
  font-size: 0.8em;
  font-weight: normal;
  height: 3em;
  letter-spacing: 0.075em;
  line-height: 3em;
  padding: 0 1.25em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;}

button:last-child, .button:last-child {
  margin-right: 0;
}

button:hover, .button:hover {
  cursor: pointer;
  box-shadow: inset 0 0 3em 3em rgba(0, 0, 0, .4);}

button.medium,
.button.medium {
  font-size: 1em;
  height: 2.5em;
  line-height: 2.5em;
  width: 70%;
}

button.btn-brand-color,
.button.btn-brand-color {
  background-color: var(--bg-brand-color);
  box-shadow: none;
  cursor: pointer;
  color: var(--c-white)!important; }

button.btn-brand-color:hover,
.button.btn-brand-color:hover {
  cursor: pointer;
  box-shadow: inset 0 0 3em 3em rgba(0, 0, 0, .4);}

button.btn-brand-color:active,
.button.btn-brand-color:active {
  background-color: var(--bg-brand-color) }

button:disabled,
.button:disabled {
  pointer-events: none;
  opacity: 0.25; }


/* form SELECT lang */

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  position: absolute;
  width: 12em;
  right: 3vw;
  top: 3vh;
  background-color: var(--bg-white);
  border-radius: 0;
  border: 2px solid var(--b-tertiary-color);
  display: inline-block;
  padding: 10px 25px;
  outline: 0;
  text-decoration: none;
  font-family: var(--special-font);
  color: var(--c-tertiary-color);
  font-size: 1em;
  text-transform: uppercase;
  -webkit-transition: .2s all;
  transition: .2s all;
}

select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='rgb(128, 128, 128)' /%3E%3C/svg%3E");
  background-size: 1.25em;
  background-repeat: no-repeat;
  background-position: calc(100% - 1em) center;
  padding-right: 2em;
  text-overflow: ellipsis; }
select option {
  font-family: var(--special-font);
  font-size: 1em;
  color: var(--c-tertiary-color);
  background: var(--bg-white); }
select:focus::-ms-value {
  background-color: transparent; }
select::-ms-expand {
  display: none; }
select:focus {
  color:  var(--c-brand-color);
  border-color: var(--b-brand-color);}
select:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='rgba(210, 215, 217, 0.75)' /%3E%3C/svg%3E");
  color:  var(--c-brand-color);
  border-color: var(--b-brand-color);
  cursor: pointer;}

select:disabled:hover {
  cursor: not-allowed;
  border-color: var(--b-disabled-btn);
  background-color: var(--bg-grey-3);
  color: var(--c-grey-3);}


.simpleCombo {
  position: sticky;
  line-height: 1
}

/***************************************/
/*      LOGIN
/***************************************/

.container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: var(--bg-white);
  height: 360px;
  width: 70%;
  text-align: center;
}

.left {
  overflow: visible;
  width: 40%;
  height: 100%;
  display: flex;
  align-items: baseline;
}

.left-content {
  display: flex;
  flex-direction: column;
  /*justify-content: center;  JDS -> JUST FOR KEEPING ALIGNED SSO and LOGIN  */
  flex-wrap: nowrap;
  align-items: center;
  margin: -.5em -6em 0 0;
  color: var(--c-grey-3);
  position: relative;
  width: 120%;
  height: 104%;
  background-size: cover;
  background-position: center center;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.left-content::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: -1; /*Si NO NO FUNCIONA*/
}

.right {
  width: 60%;
}

.right-content {
  background: var(--bg-white);
  position: relative;
  margin: 0 0 0 0;
  width: 100%;
  height: 100%;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, .2);
}

.header-up {
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, .2);
  width: 100%;
  height: 15%;
  display: flex;
  align-items: end;
  text-align: center;
  margin-top: .5em;
}

@media screen and (min-width: 768px) {
  .left  {display: inherit!important;}
  .right-content  {display: inherit!important;}
  .right-content > .header-up {display: none!important;}
}
@media screen and (max-width: 767.98px) {
  .left  {display: none!important;}
  .right-content  {display: inherit!important;}
  .right-content > .header-up {display: flex!important;}
}

/* BRAND */
.login {
  font-family: var(--special-font);
  font-size: 3em;
  text-align: center;
}

.marca {
  align-items: end;
  text-align: center;
  display: inline-flex;
  margin-top: 2em;
}

.marca > .sm5-marca > .sm5-logo {
  display: inline;
  background-color: var(--bg-brand-color);
  color: var(--c-white);
  font-family: var(--special-font);
  width: 1.75em;
  height: 1.75em;
  font-size: 2em;
  padding: .1em;}

.marca > .sm5-marca > h2 {
  font-family: var(--special-font);
  display: inline;
  padding: 0;
  margin: 0 0 0 .2em;
  font-size: 2em;}

/* HEADER-UP content */

.header-up{ }

.header-up .marca {
  margin: 1em;
}

@media screen and (max-width: 767.98px) {
  .header-up {min-height: 75px}
  .header-up .marca {margin: .5em}
}

/***************************************/
/*      FORMULARIO LOGIN
/***************************************/
.login-form-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 2em 2em 1em 7em;
}

@media screen and (max-width: 768px) {
  body  {padding: 0;}
  .right  {width: 100%;height: auto;}
  .container {width: 80%; height: 75%; min-height: 455px; max-height: 505px;}
  .login-form-container {position: relative; width: 100%; height: 80%; overflow: hidden; margin: 0; padding: .5em;}
}
@media screen and (min-width: 769px) {
  .container { width: 715px; height: 400px;}
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  justify-items: center;
  padding: 1em;
  margin: 0;
  width: 70%;
  height: 100%; /*JDS icon-list*/
  position: absolute;
  top: 50%;
  left: 57%;
  transform: translate(-50%, -50%);
}

.trans-op {
  animation-name: opacityTransition;
  animation-duration: 1000ms;
  animation-fill-mode: forwards;
}

@keyframes opacityTransition{
  0%{opacity: 0;}

  100%{opacity: 1;}
}

/*form*/
.form-group {
  position: relative;
  text-align: left;
  margin-bottom: 1em;
  display: block;
}

/* Title and actions, flex 1 ... all space for them */
.form-group.title {
  flex:1;
  margin-bottom: 1em;
  white-space: nowrap;
  text-align: center;
}

.form-group.check-group {
  margin-top: 1em;
}

.form-title {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--c-brand-color);
  font-family: var(--special-font);
  font-size: 1.5em;
  letter-spacing: 0.075em;
  margin: .25em 0 1em 0;
}

@media screen and (max-width: 768px) {
  .form-title {font-size: 1.2em;}
}

.actions {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  justify-items: center;
  margin-top: 2em;
  text-align: center;
  flex:1;
}

@media screen and (max-width: 768px) {
  .actions { margin-top: 1em;}
}

.actions > .form-group  {
  position: relative;
  text-align: center;
  margin-bottom: 1.5em;
}

.actions:last-child {
  margin-bottom: 0;
}

.actions > .form-group > a.link-login {
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  color: var(--c-brand-color);
  font-family: var(--special-font);
  font-size: .85em;
  border-bottom: 1px dotted var(--b-brand-color);
}

.actions > .form-group > a.link-login:hover {
  text-decoration: none;
  color: var(--c-secondary-color);
  cursor: pointer;
  border-bottom: 1px dotted var(--b-secondary-color);
}

/* Keep remaining space @ bottom right */
.actions.alt {
  flex: 1;
  flex-direction: row;
  justify-content:  space-around;
  align-items: flex-end;
  width: 100%;
}

.actions.alt .form-group {
  margin-left: .5em;
  margin-bottom: 0;
  width: 100%;
  text-align: center;
}

.actions.alt .form-group a {
  display: inline-block;
  white-space: nowrap;
}

@media screen and (max-width: 991.98px) {
  .actions > .form-group > a.link-login {font-size: .85em; }
}
@media screen and (max-width: 768px) {
  .login-form-container > form { width: 90%;  left: 50%; }
  form .form-group {margin-bottom: 2em;}
  .login-up {display: none!important;}
  .actions > .form-group > a.link-login {font-size: .85em; }
}

/*
 *  Spinner Styles
 */

@keyframes fadeWrap {
  from {
    background-color: transparent;
  }
  to {
    background-color: rgba(0, 0, 0, .75);
  }
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4)
  }
  20% {
    -webkit-transform: scaleY(1.0)
  }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

#spinner-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 700;
  animation: fadeWrap 3s forwards;
}

.spinner {
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.spinner > div {
  background-color: var(--bg-brand-color);
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}


/*
 *  Popup dialog Styles
 */

.overlay {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 500;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}

.overlay.enabled {
  visibility: visible;
  opacity: 1;
}

.popup {
  display: none;
  padding: 20px;
  background-color: var(--bg-white);
  border-radius: 5px;
  min-width: 300px;
  max-width: 550px;
  position: relative;
  transition: all 5s ease-in-out;
}

.overlay.enabled .popup {
  display: block;
}

.popup h2 {
  margin-top: 0;
  color: var(--c-secondary-color);
  font-family: var(--special-font);
}

.popup.info h2 {
  color: var(--c-green);
}

.popup.info .popup-footer button {
  background-color: var(--bg-green);
}

.popup.error h2 {
  color: var(--c-red);
}

.popup.error .popup-footer button  {
  background-color: var(--bg-red);
}

.popup.warn h2 {
  color: var(--c-orange);
}

.popup.warn .popup-footer button   {
  background-color: var(--bg-orange);
}

.popup .close {
  position: absolute;
  top: 0;
  right: 20px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: var(--c-secondary-color);
}

.popup-footer button {
  display: inline-block;
  margin-left: .5em;
}

.popup #popup-copy-btn.hidden {
  display: none;
}

.popup .close:hover {
  color: var(--c-brand-color);
}
.popup.info .close:hover {
  color: var(--c-green);
}
.popup.error .close:hover {
  color: var(--c-red);
}
.popup.warn .close:hover {
  color: var(--c-orange);
}

.popup .content {
  max-height: 30%;
  overflow: auto;
  margin: 1.5em 0;
  font-size: 1.2em;
  font-family: var(--special-font);
}

.popup .popup-footer {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  max-height: 10%;
  margin-top: 1em;
}

.popup .content pre {
  white-space: pre-line;
}


@media screen and (max-width: 700px){
  .popup{
    width: 70%;
  }
}


/*
 *  OAuth Form Styles
 */
.oauth-form {
  align-items: center;
  justify-content: center;
}

.btn-oauth {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  color: white;
  max-width: 150px;
  max-height: 150px;
  border: var(--b-brand-color) 2px solid;
}

.btn-oauth i {
  color: var(--c-brand-color);
  font-size: 7em;
}

.btn-oauth i:before {
  content: "\e9f1";
}

.btn-oauth:hover {
  background-color: var(--bg-brand-color);
}

.btn-oauth:hover i {
  color: white !important;
}

.btn-oauth:hover i:before {
  content: "\ea4b";
}


/*
 *  Logo
 */
.login img,
.login div {
  margin-top: 1em;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login div span {
  font-size: 3em;
  color: var(--original-secondary-color);
}

.login div span[class*='icon-']::before {
  text-shadow: 3px 3px 10px rgba(0, 0, 0, .5);
}


/*
 *  Footer Copyright
 */

.footer {
  position: absolute;
  bottom: 0;
  right: 10px;
}

.footer .copyright {
  color: var(--c-tertiary-color);
  font-size: 0.8em;
}

@media screen and (max-width: 731px) {
  .footer .copyright {font-size: 0.7em;}
}