/* ========================================================================= */
/* THEME VARIABLES --------------------------------------------------------- */
/* ========================================================================= */

:root {
  /* COLORS ================================================================ */
  /* • PRIMARY / PRIMARY ACCENT -------------------------  */
  /*
    --primary: #2590D8;
    --primary-accent: #2181C2;
  */
  --p-red: 37;
  --p-green: 144;
  --p-blue: 216;
  --primary: rgb(var(--p-red), var(--p-green), var(--p-blue));
  --primary-blue: #2590d8;

  --alt-p-1: rgb(
    calc(var(--p-red) + 80),
    calc(var(--p-green) + 80),
    calc(var(--p-blue) + 80)
  );
  --alt-p-2: rgb(
    calc(var(--p-red) + 60),
    calc(var(--p-green) + 60),
    calc(var(--p-blue) + 60)
  );
  --alt-p-3: rgb(
    calc(var(--p-red) + 40),
    calc(var(--p-green) + 40),
    calc(var(--p-blue) + 40)
  );
  --alt-p-4: rgb(
    calc(var(--p-red) + 20),
    calc(var(--p-green) + 20),
    calc(var(--p-blue) + 20)
  );
  --alt-p-5: var(--primary);
  --alt-p-6: rgb(
    calc(var(--p-red) - 20),
    calc(var(--p-green) - 20),
    calc(var(--p-blue) - 20)
  );
  --alt-p-7: rgb(
    calc(var(--p-red) - 40),
    calc(var(--p-green) - 40),
    calc(var(--p-blue) - 40)
  );
  --alt-p-8: rgb(
    calc(var(--p-red) - 60),
    calc(var(--p-green) - 60),
    calc(var(--p-blue) - 60)
  );
  --alt-p-9: rgb(
    calc(var(--p-red) - 80),
    calc(var(--p-green) - 80),
    calc(var(--p-blue) - 80)
  );

  --primary-accent: var(--alt-p-6);

  /* • SECONDARY / SECONDARY ACCENT -------------------  */
  /*
    --secondary: #E38415;
    --secondary-accent: #CC7713;
  */
  --s-red: 227;
  --s-green: 132;
  --s-blue: 21;
  --secondary: rgb(var(--s-red), var(--s-green), var(--s-blue));

  --alt-s-1: rgb(
    calc(var(--s-red) + 80),
    calc(var(--s-green) + 80),
    calc(var(--s-blue) + 80)
  );
  --alt-s-2: rgb(
    calc(var(--s-red) + 60),
    calc(var(--s-green) + 60),
    calc(var(--s-blue) + 60)
  );
  --alt-s-3: rgb(
    calc(var(--s-red) + 40),
    calc(var(--s-green) + 40),
    calc(var(--s-blue) + 40)
  );
  --alt-s-4: rgb(
    calc(var(--s-red) + 20),
    calc(var(--s-green) + 20),
    calc(var(--s-blue) + 20)
  );
  --alt-s-5: var(--secondary);
  --alt-s-6: rgb(
    calc(var(--s-red) - 20),
    calc(var(--s-green) - 20),
    calc(var(--s-blue) - 20)
  );
  --alt-s-7: rgb(
    calc(var(--s-red) - 40),
    calc(var(--s-green) - 40),
    calc(var(--s-blue) - 40)
  );
  --alt-s-8: rgb(
    calc(var(--s-red) - 60),
    calc(var(--s-green) - 60),
    calc(var(--s-blue) - 60)
  );
  --alt-s-9: rgb(
    calc(var(--s-red) - 80),
    calc(var(--s-green) - 80),
    calc(var(--s-blue) - 80)
  );

  --secondary-accent: var(--alt-s-6);

  /* • STATUS COLORS ----------------------------------  */
  --status-complete: #eaeaea;
  --status-good: #37c87d;
  --status-warn: #f2c331;
  --status-pending: #dbcf3f;
  --status-error: #e64d43;

  /* UI BODY AND BACKGROUND ================================================ */
  /* • BACKGROUND / BACKGROUND ACCENT -----------------  */
  --background: #282828;
  --background-accent: #333333;

  /* • FOREGROUND / FOREGROUND ACCENT -----------------  */
  --foreground: #3d3d3d;
  --foreground-accent: #474747;

  /* • COMPONENT / COMPONENT ACCENT -------------------  */
  --component: #535353;
  --component-accent: #686868;

  /* • TEXT / TEXT ACCENT -----------------------------  */
  --text: #ffffff;
  --text-accent: #7e7e7e;

  /* OTHER SHARED UI ELEMENTS STYLES ======================================= */
  --common-font-size: 14px; /* --------------------------------- GENERAL FONT SIZE FOR THE SYSTEM */
  --small-title-font-size: 16px; /* ---------------------------- GENERAL SMALL TITLE FONT SIZE FOR THE SYSTEM */
  --medium-title-font-size: 26px; /* --------------------------- GENERAL MEDIUM TITLE FONT SIZE FOR THE SYSTEM */
  --large-title-font-size: 28px; /* ---------------------------- GENERAL LARGE TITLE FONT SIZE FOR THE SYSTEM */
  --common-font-weight: 400; /* --------------------------------- GENERAL FONT WEIGHT FOR THE SYSTEM */
  --border-radius: 5px; /* ------------------------------------- BORDER RADIUS OF ELEMENTS */
  --bar-height: 48px; /* --------------------------------------- HEIGHT OF BAR ITEMS LIKE PAGINATION, TABS & RESULT ROWS */
  --general-space: 16px; /* ------------------------------------ GENERAL PADDING/MARGIN TO USE */
  --general-space-neg: calc(
    var(--general-space) * -1
  ); /* ----- GENERAL SPACE * -1 */
  --general-space-2x: calc(
    var(--general-space) * 2
  ); /* -------- GENERAL SPACE x 2 */
  --general-space-half: calc(
    var(--general-space) / 2
  ); /* ----- GENERAL SPACE x .5 */
  --inactive-opacity: 0.3; /* ----------------------------------- OPACITY OF BUTTONS FLAGGED TO BE INACTIVE */
  --selected-opacity: 0.3; /* ----------------------------------- OPACITY OF SELECTED ITEM OVERLAYS */
  --item-icon-opacity: 0.1; /* ----------------------------------- OPACITY OF ITEM ACTIONS WHILE NOT IN ::hover */
  --hover-brightness: brightness(
    135%
  ); /* ---------------------- BRIGHTNESS FILTER FOR ITEM HOVER STATES ( filter: brightness(110%) ) */
  --display-field-brightness: brightness(
    115%
  ); /* -------------- BRIGHTNESS FILTER FOR FORM DISPLAY ITEMS ( filter: brightness(115%) ) */
  --hover-brightness-opacity: 0.1; /* ----------------------------- OPACITY FOR A HOVER EFFET ON SOMETHING WITHOUT : SHOULD MATCH --hover-brightness (110% === .1 >> 100% + 10%) */
}

/* ========================================================================= */
/* BOILER PLATE CSS RESET/NORMALIZATION ------------------------------------ */
/* ========================================================================= */

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

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%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after {
  content: "";
  content: none;
}

q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  color: white;
  font-size: 87.5%;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

h2 {
  background-color: rgba(0, 0, 0, 0.05);
  font-size: 1.3em;
  margin: 0;
  padding: 0 0.7em;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

a:hover {
  color: var(--primary-accent);
}

body,
html {
  height: 100%;
  max-width: 100%;
  overflow: hidden;
}

body {
  background: var(--background);
}

img {
  height: auto;
  max-width: 100%;
}

.clear::after {
  content: "";
  clear: both;
  display: table;
}

:focus {
  outline: none;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 1em 0 1em 1em;
}
nav li {
  list-style: none;
}
nav a {
  display: block;
}

.hidden {
  display: none !important;
}

/* ========================================================================= */
/* FONT STYLES ------------------------------------------------------------- */
/* ========================================================================= */

/* LOAD SYSTEM FONT - OPEN SANS ============================================ */
@font-face {
  font-family: "Open Sans";
  src: url(../fonts/09ac169f599cbe0fb8dff462db4a487c.woff) format("woff"),
    url(../fonts/207d517ace5f34c8df8786c8801df8d3.woff2) format("woff2"),
    url(../fonts/20fa9eb16e07cd58fc2737990fc0bade.ttf) format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Open Sans";
  src: url(../fonts/cbd0a0ff6bb87d073db2df5fdbca66cc.woff) format("woff"),
    url(../fonts/1c8871afb95e0392c974cc963b854660.ttf) format("truetype");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Open Sans";
  src: url(../fonts/a562f221250bf1267172cc6bbab29199.woff) format("woff"),
    url(../fonts/c7c8df2d8386fab80d86129ab8b4dc31.woff2) format("woff2"),
    url(../fonts/dd830a9d829a6e89a5fd9c49d04d9c42.ttf) format("truetype");
  font-style: normal;
  font-weight: 700;
}

/* LOAD ICON FONT ========================================================== */
@font-face {
  font-family: "login-icons";
  src: url(../fonts/b3a8a642a26e8d0f5e55acb17815feee.eot);
  src: url(../fonts/b3a8a642a26e8d0f5e55acb17815feee.eot#iefix) format("embedded-opentype"),
    url(../fonts/a7943bc6dff8b386615cfe231577dd95.woff2) format("woff2"),
    url(../fonts/ca3ff4f93fad9de48b47faf8f93def21.ttf) format("truetype"),
    url(../fonts/8768bf3b3c22e62d9324d49c80e6ed07.woff) format("woff"),
    url(../fonts/deb86e82d4d7849fddf53fba0f2ec841.svg#login-icons) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

/* ========================================================================= */
/* GENERAL STYLES ---------------------------------------------------------- */
/* ========================================================================= */

/* GENERAL ================================================================= */
.testing-text {
  background: var(--foreground-accent);
  border-radius: var(--border-radius);
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
  color: var(--primary);
  font-weight: 600;
  left: 20px;
  padding: var(--general-space-half);
  position: absolute;
  top: 20px;
  z-index: 1000;
}

#source-password iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 300;
}

.inactive {
  cursor: default;
  opacity: var(--inactive-opacity);
}

.hide {
  display: none !important;
}

/* FONTS =================================================================== */
* {
  color: var(--text);
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.show-icon::before {
  font-family: "login-icons" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ICON DECLARATIONS ======================================================= */
.icon-close::before {
  content: "\e902";
}

.icon-more::before {
  content: "\e900";
}

.icon-plus::before {
  content: "\e901";
}

/* BUTTONS ================================================================= */
.btn,
.btn-base {
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  height: 32px;
  letter-spacing: initial;
  padding: 8px 10px;
  text-transform: capitalize;
  transition: all 0.2s;
}

.btn.btn-primary,
.btn.btn-active,
.btn-base.btn-primary,
.btn-base.btn-active {
  background-color: var(--primary);
  border: none;
}

.btn.btn-primary:hover,
.btn-base.btn-primary:hover {
  background-color: var(--alt-p-4);
}

.btn.btn-active:hover,
.btn-base.btn-active:hover {
  background-color: var(--alt-p-4);
}

.btn.btn-secondary,
.btn-base.btn-secondary {
  background-color: var(--secondary);
  border: none;
  color: var(--text);
}

.btn.btn-secondary:hover,
.btn-base.btn-secondary:hover,
.btn.bg-secondary:hover {
  background-color: var(--alt-s-4);
}
.btn-base.btn-active.bg-secondary:hover {
  background-color: var(--alt-s-4);
}
.btn-text {
  cursor: pointer;
  margin: 8px 10px;
}

/* FORM ELEMENTS =========================================================== */
/* • FORM GENERAL -------------------------------------  */
.field-wrap {
  margin: var(--general-space) 0;
  position: relative;
}

/* • TEXT & TEXT AREA ---------------------------------  */
input,
textarea {
  background: var(--background);
  border: none;
  border-radius: var(--border-radius);
  color: var(--text);
  font-size: 14px;
  font-family: "Open Sans";
  font-weight: 400;
  margin: 0;
  padding: 0 var(--general-space);
  width: 100%;
}

input {
  height: 32px;
}
input:focus,
textarea:focus {
  background: var(--background);
  box-shadow: 0 0 0 1px var(--primary) inset;
  color: var(--text);
  font-weight: 400;
}
input.error,
input.error:focus,
textarea.error,
textarea.error:focus {
  box-shadow: 0 0 0 1px var(--status-error) inset;
}

textarea {
  min-height: 180px;
  padding: var(--general-space);
}

/* • PLACEHOLDER --------------------------------------  */
input::-webkit-input-placeholder {
  color: var(--text-accent);
  opacity: 1;
  text-transform: capitalize;
}
input::-moz-placeholder {
  color: var(--text-accent);
  opacity: 1;
  text-transform: capitalize;
}
input:-ms-input-placeholder {
  color: var(--text-accent);
  opacity: 1;
  text-transform: capitalize;
}
input:-moz-placeholder {
  color: var(--text-accent);
  opacity: 1;
  text-transform: capitalize;
}
input:-moz-placeholder {
  color: var(--text-accent);
  opacity: 1;
  text-transform: capitalize;
}
input:placeholder {
  color: var(--text-accent);
  opacity: 1;
  text-transform: capitalize;
}

/* • FOCUS --------------------------------------------  */
input:focus::-webkit-input-placeholder {
  color: var(--text-accent);
}
input:focus::-moz-placeholder {
  color: var(--text-accent);
}
input:focus:-ms-input-placeholder {
  color: var(--text-accent);
}
input:focus:-moz-placeholder {
  color: var(--text-accent);
}
input:focus:-moz-placeholder {
  color: var(--text-accent);
}
input:focus:placeholder {
  color: var(--text-accent);
}

/* • CHECKBOX -----------------------------------------  */
input[type="checkbox"] + label {
  padding-left: 26px;
}
input[type="checkbox"] + label:before {
  background: var(--background);
  border: none;
  border-radius: var(--border-radius);
  content: "";
  height: 19px;
  left: 0px;
  position: absolute;
  top: 0;
  width: 19px;
}
input[type="checkbox"]:checked + label:after {
  content: "d";
  color: var(--primary);
  font-family: "IconFont";
  font-weight: normal;
  font-variant: normal;
  left: 4px;
  position: absolute;
  top: 3px;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
input[type="checkbox"]:checked + label:before {
  background: var(--background);
  border: none;
  border-radius: var(--border-radius);
  content: "";
}

/* • RADIO BUTTON -------------------------------------  */
input[type="radio"] + label {
  padding-left: 26px;
}
input[type="radio"] + label:before {
  background: var(--background);
  border: none;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 0;
  width: 16px;
}
input[type="radio"]:checked + label:before {
  background: var(--background);
  border: none;
}
input[type="radio"]:checked + label:after {
  background: var(--primary);
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 4px;
  position: absolute;
  top: 4px;
  width: 8px;
}

/* ITEM LIST =============================================================== */
/* • ITEM LIST GENERAL --------------------------------  */
.item-list .list-item {
  background: var(--foreground-accent);
  margin-bottom: 2px;
  padding: var(--general-space);
  position: relative;
  z-index: 10;
}
.item-list .list-item:hover {
  background: var(--component);
  z-index: 15;
}

.item-list .list-item.menu-open {
  z-index: 20;
}

.item-list .list-item .item-content {
  position: relative;
  z-index: 20;
}

.item-list .list-item .highlight-bar {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.item-list .list-item.selected {
  box-shadow: 0px 1px 0px 0px var(--primary) inset,
    0px -1px 0px 0px var(--primary) inset;
}
.item-list .list-item.selected .highlight-bar {
  background: var(--primary);
  opacity: var(--inactive-opacity);
}

.item-list .list-item .item-name {
}

.item-list .list-item .item-actions {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
}

/* ACTION MENU - 3-DOT ===================================================== */
.action-button {
  border-radius: var(--border-radius);
  height: 32px;
  position: relative;
  width: 32px;
  z-index: 30;
}
.menu-open .action-button,
.action-button:hover {
  background: var(--component-accent);
}
.selected.menu-open .action-button,
.selected .action-button:hover {
  background: var(--primary);
}
.action-button::before {
  font-size: 20px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.action-button .action-menu {
  background: var(--component-accent);
  border-radius: var(--border-radius) 0 var(--border-radius)
    var(--border-radius);
  display: none;
  padding: var(--general-space-half) 0;
  position: absolute;
  right: 0;
  top: 100%;
  width: 150px;
}

.selected .action-button .action-menu {
  background: var(--primary);
}

.menu-open .action-button .action-menu {
  display: block;
}

.action-button .action-menu .menu-list .menu-item {
  font-size: 12px;
  padding: 4px var(--general-space-half) 4px 26px;
  position: relative;
}

.action-button .action-menu .menu-list .menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.action-button .action-menu .menu-list .menu-item::before {
  left: var(--general-space-half);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

/* PROCESSING UI =========================================================== */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes movingStripes {
  100% {
    background-position: 204px 0px;
  }
}

.processing,
.processing:hover {
  animation: movingStripes 8s linear infinite !important;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(0, 0, 0, 0.1) 8px,
    rgba(0, 0, 0, 0.1) 16px
  ) !important;
  background-size: 204px 204px !important;
  cursor: default !important;
}

/* ========================================================================= */
/* PASSWORD RESET STYLES --------------------------------------------------- */
/* ========================================================================= */
#password-reset .view-forgot-password {
  display: block;
}

#password-reset .active-email-wrap .current-email {
  color: var(--status-warn);
}

#password-reset .error-wrap {
  display: none;
  font-size: 12px;
  padding-top: var(--general-space-half);
}

#password-reset .error-wrap p,
#password-reset .error-wrap b,
#password-reset .error-wrap i {
  color: var(--status-warn);
  padding-right: 4px;
}

#password-reset .confirmed-text {
  color: var(--primary);
  display: none;
  font-size: 12px;
  position: absolute;
  right: var(--general-space-half);
  top: 7px;
}

/* PASSWORD REQUIREMENTS - INFO TEXT ----------------------------- */
#password-reset .requirement-info {
  color: var(--text-accent);
  cursor: default;
  font-size: 12px;
  margin-top: 10px;
  position: relative;
  text-align: left;
}

#password-reset .requirement-info:hover,
#password-reset .requirement-info:hover span {
  color: var(--text);
}

#password-reset .requirement-info span {
  color: var(--text-accent);
  font-weight: bold;
}

/* PASSWORD REQUIREMENTS - TOOLTIP ------------------------------- */
#password-reset .password-requirements-tooltip {
  background: var(--foreground);
  border-radius: var(--border-radius);
  bottom: 24px;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.4);
  display: none;
  left: -48px;
  padding: var(--general-space);
  position: absolute;
  z-index: 10;
}

#password-reset .requirement-info:hover .password-requirements-tooltip {
  /* display: block; */
}

#password-reset .password-requirements-tooltip ul {
  list-style: unset;
  padding-left: var(--general-space);
}

#password-reset .password-requirements-tooltip .special-char-list {
  color: var(--text);
  display: block;
  padding-left: var(--general-space);
}

/* ========================================================================= */
/* LOGIN UI STYLES --------------------------------------------------------- */
/* ========================================================================= */

/* BACKGROUND ============================================================== */
#background {
  background: var(--background);
  height: 100%;
  left: 0;
  overflow: hidden;
  top: 0;
  width: 100%;
  z-index: 1;
  background-image: url("https://360-ui.ses-360.com/public/ses-bg-swirl-1.png");
  background-size: cover;
}

/* LOGO ==================================================================== */
#logo {
  height: 60px;
  left: 50%;
  position: absolute;
  top: 80px;
  transform: translateX(-50%);
  width: 240px;
  z-index: 200;
}
#logo .logo-content {
  height: 110px;
  bottom: var(--general-space);
  position: relative;
  width: 100%;
  background-image: url(https://360-ui.ses-360.com/public/ses-logo-color.svg);
  background-repeat: no-repeat;
}
#main-content {
  height: calc(100% - 1720px);
  left: 50%;
  position: absolute;
  top: 172px;
  transform: translateX(-50%);
  z-index: 100;
}

/* GENERAL VIEW ITEM STYLES ================================================ */
.view-item {
  background: var(--foreground);
  border-radius: var(--border-radius);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  display: none;
  padding: var(--general-space-2x);
  width: 400px;
}

.view-item.show {
  display: block;
}

.view-item a {
  display: table;
  margin-bottom: 4px;
}

.view-item .view-title {
  font-size: 24px;
  font-weight: 600;
}

.view-item .view-subtitle {
  font-size: 14px;
}

.view-item .view-message {
  display: none;
}

.view-item .view-message {
  padding-top: var(--general-space);
}
.view-item .view-message.account-message {
  padding-top: 0;
}

.view-item .view-message.show {
  display: block;
}

.view-item .view-message.warning {
  color: var(--status-warn);
}

.view-item .view-message.error {
  color: var(--status-error);
}

.view-item .view-actions {
  display: flex;
  justify-content: flex-end;
  padding: var(--general-space) 0 0 0;
}

.view-item .view-actions button {
  min-width: 80px;
}

/* VIEW : EMAIL INPUT ====================================================== */

/* VIEW : EMAIL ACCOUNT ==================================================== */
.view-email-accounts .account-list {
  left: calc(var(--general-space-2x) * -1);
  margin: var(--general-space) 0;
  position: relative;
  width: calc(100% + (var(--general-space-2x) * 2));
}

.view-email-accounts .list-item {
  cursor: pointer;
  padding: var(--general-space) var(--general-space-2x);
}

.view-email-accounts .list-item .action-button {
  border-radius: 0;
  height: 100%;
  opacity: var(--inactive-opacity);
  position: relative;
  width: 100%;
}

.view-email-accounts .list-item:hover .action-button {
  opacity: 1;
}

.view-email-accounts .add-account .item-icon {
  font-size: 20px;
  left: -2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.view-email-accounts .add-account .item-name {
  padding-left: 22px;
}

/* VIEW : LEGACY PASSWORD ================================================== */
.view-legacy-password .field-wrap.email-wrap {
  display: none;
}

/* VIEW : FORGOT PASSWORD ================================================== */
.view-forgot-password .field-message {
  display: none;
  font-size: 11px;
  left: var(--general-space-half);
  position: absolute;
  top: 34px;
}

.view-forgot-password .field-message.error {
  color: var(--status-error);
}

.view-forgot-password .field-message.show {
  display: block;
}

.view-forgot-password .subtitle-email-sent {
  display: none;
}

/* ADDING THE sent CLASS TO THE UI */
.view-forgot-password .sent .subtitle-email-sent {
  display: block;
}

.view-forgot-password .sent .view-subtitle.subtitle-enter-email {
  display: none;
}

.view-forgot-password .sent .view-subtitle.subtitle-email-sent {
  display: block;
}

.view-forgot-password .sent .request-email-wrap {
  display: none;
}

.view-forgot-password .sent .view-actions {
  display: none;
}

