@charset "UTF-8";
@-webkit-keyframes bump-in {
  from {
    -webkit-transform: scale(0);
            transform: scale(0); }
  to {
    -webkit-transform: scale(1);
            transform: scale(1); } }
@keyframes bump-in {
  from {
    -webkit-transform: scale(0);
            transform: scale(0); }
  to {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@-webkit-keyframes bump-out {
  from {
    -webkit-transform: scale(1);
            transform: scale(1); }
  to {
    -webkit-transform: scale(0);
            transform: scale(0); } }

@keyframes bump-out {
  from {
    -webkit-transform: scale(1);
            transform: scale(1); }
  to {
    -webkit-transform: scale(0);
            transform: scale(0); } }

@-webkit-keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes fade-out {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fade-out {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

/**
 * This file is for styling common elements used in multiple components.
 * Global layout-related styling should be in _layout.scss.
 */
/**
 * Used color vars
 */
/**
 * Used font-size vars
 */
/* Use for headers */
/* Use for action buttons, list items, sidebar navigation */
/* Use for list item buttons, breadcrumbs, gamification  */
/* Use for avatar, other capitalized items  */
/**
 * Used font-weights
 */
/**
 * z-indexes used in the app
 * IMPORTANT: modals uses z-index 1050, don't set elements' z-index above that value (except bubble information)
 */
/**
 * Common link tag
 */
a {
  text-decoration: none;
  font-weight: 400;
  color: #00a9e2;
  cursor: pointer;
  transition: 200ms color ease-out; }
  a:focus, a:active, a:hover {
    color: #0090d8 !important;
    text-decoration: none !important;
    outline: none !important; }
  a:not([href]):not([tabindex]) {
    color: #00a9e2; }
  a.button {
    display: inline-block;
    padding: 10px 15px;
    position: relative;
    border-radius: 4px;
    border: 0;
    background-color: #00a9e2;
    background-clip: padding-box;
    color: #fff;
    font-family: 'Graphik', 'Helvetica', Arial, sans-serif;
    font-size: 13px;
    height: auto;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
    font-weight: 400;
    opacity: 1;
    text-align: center;
    cursor: pointer; }
    a.button:hover {
      background: #0090d8; }
    a.button.action {
      height: 40px;
      font-size: 13px;
      line-height: 41px;
      padding: 0 15px;
      color: #00a9e2;
      margin-right: 10px;
      background-color: #fafafa;
      background: linear-gradient(#fafafa, #f9f9f9);
      box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.07); }
      a.button.action:hover {
        background-color: #f5f5f5;
        background: linear-gradient(#f7f7f7, #f2f2f2);
        box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.12); }

h1 {
  font-size: 32px;
  font-weight: 300;
  color: #444;
  margin: 0;
  padding: 0; }

h2,
h3,
h4,
h5,
h6,
p {
  font-weight: 400;
  margin: 0;
  padding: 0; }

ul {
  margin: 0;
  padding: 0;
  list-style-type: none; }
  ul.blue-disc {
    padding-left: 15px;
    margin-bottom: 15px; }
    ul.blue-disc:last-child {
      margin-bottom: 0; }
    ul.blue-disc li {
      padding-bottom: 3px;
      position: relative; }
      ul.blue-disc li::before {
        color: #00a9e2;
        content: '•';
        position: absolute;
        left: -7px;
        top: -7px;
        font-size: 22px;
        margin-left: -7px; }
      ul.blue-disc li:last-child {
        padding-bottom: 0; }

.link-style {
  text-decoration: none;
  font-weight: normal;
  color: #00a9e2;
  cursor: pointer;
  transition: 200ms color ease-out;
  background: transparent;
  padding: 0;
  border: none;
  outline: none; }
  .link-style:hover {
    background: transparent; }
  .link-style:focus {
    outline: none; }

/**
 * For texts
 */
.trim {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.no-select {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
  cursor: default; }

/**
 * Centered blocks
 */
ngb-tooltip-window {
  opacity: 1 !important;
  width: 225px;
  padding: 0 !important;
  transition: box-shadow 0.6s cubic-bezier(0.19, 0.96, 0.22, 1) 0.3s;
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1); }
  ngb-tooltip-window .tooltip-inner {
    background: #fff;
    color: #666;
    padding: 15px 17px;
    font-size: 13px;
    text-align: left;
    line-height: 18px;
    width: 100%;
    max-width: 225px;
    border: 1px solid #e7e7e7 !important;
    border-radius: 4px !important; }
  ngb-tooltip-window .arrow::before {
    width: 10px;
    height: 10px;
    background: #fff; }
  ngb-tooltip-window.bs-tooltip-right {
    margin-left: 8px; }
    ngb-tooltip-window.bs-tooltip-right .arrow::before {
      right: 0;
      border-left: 1px solid #e7e7e7;
      border-bottom: 1px solid #e7e7e7;
      border-right: none !important;
      border-top: none !important;
      border-top-right-radius: 100%;
      -webkit-transform: rotateZ(45deg);
              transform: rotateZ(45deg); }
  ngb-tooltip-window.bs-tooltip-top {
    margin-bottom: 8px; }
    ngb-tooltip-window.bs-tooltip-top .arrow::before {
      border-right: 1px solid #e7e7e7;
      border-top: none;
      border-left: none !important;
      border-bottom: 1px solid #e7e7e7;
      border-top-left-radius: 100%;
      -webkit-transform: rotateZ(45deg);
              transform: rotateZ(45deg); }
  ngb-tooltip-window.not-implemented-tooltip {
    width: 255px;
    height: 90px;
    min-height: 90px; }
    ngb-tooltip-window.not-implemented-tooltip .tooltip-inner {
      padding: 0;
      max-width: 255px;
      height: 90px;
      min-height: 90px; }
      ngb-tooltip-window.not-implemented-tooltip .tooltip-inner div {
        padding: 15px; }

@media (max-width: 600px) {
  ngb-tooltip-window {
    display: none !important; }
    ngb-tooltip-window.always-on {
      display: block !important; } }

email-display {
  overflow: hidden;
  display: inline-flex;
  max-width: 100%; }

/**
 * Used color vars
 */
/**
 * Used font-size vars
 */
/* Use for headers */
/* Use for action buttons, list items, sidebar navigation */
/* Use for list item buttons, breadcrumbs, gamification  */
/* Use for avatar, other capitalized items  */
/**
 * Used font-weights
 */
/* Graphik Light */
@font-face {
  font-family: 'Graphik';
  src: url("https://cdn.tresorit.com/201609071250ng/Graphik-Light-Web.woff2") format("woff2"), url("https://cdn.tresorit.com/201609071250ng/Graphik-Light-Web.woff") format("woff");
  font-weight: 300;
  font-style: normal; }

/* Graphik Regular */
@font-face {
  font-family: 'Graphik';
  src: url("https://cdn.tresorit.com/201609071250ng/Graphik-Regular-Web.woff2") format("woff2"), url("https://cdn.tresorit.com/201609071250ng/Graphik-Regular-Web.woff") format("woff");
  font-weight: 400;
  font-style: normal; }

/* Graphik Medium */
@font-face {
  font-family: 'Graphik';
  src: url("https://cdn.tresorit.com/201609071250ng/Graphik-Medium-Web.woff2") format("woff2"), url("https://cdn.tresorit.com/201609071250ng/Graphik-Medium-Web.woff") format("woff");
  font-weight: 500;
  font-style: normal; }

/* Graphik Semi Bold */
@font-face {
  font-family: 'Graphik';
  src: url("https://cdn.tresorit.com/201609071250ng/Graphik-Semibold-Web.woff2") format("woff2"), url("https://cdn.tresorit.com/201609071250ng/Graphik-Semibold-Web.woff") format("woff");
  font-weight: 600;
  font-style: normal; }

/**
 * Used font-size vars
 */
/* Use for headers */
/* Use for action buttons, list items, sidebar navigation */
/* Use for list item buttons, breadcrumbs, gamification  */
/* Use for avatar, other capitalized items  */
/**
 * Used font-weights
 */
/**
 * z-indexes used in the app
 * IMPORTANT: modals uses z-index 1050, don't set elements' z-index above that value (except bubble information)
 */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  color: #444;
  font-family: 'Graphik', 'Helvetica', Arial, sans-serif;
  font-size: 13px; }

.flex-container {
  display: flex;
  flex-direction: column; }
  .flex-container .flex-header {
    flex: 0 0 auto;
    padding: 0 20px; }
  .flex-container .flex-content {
    flex: 1 1 auto; }
  .flex-container .flex-footer {
    flex: 0 0 auto; }

@media (max-width: 500px) {
  body.app.chrome #main-container, body.app.safari #main-container {
    height: calc(100vh - 55px) !important; } }

@media (min-width: 501px) {
  .flex-container .flex-header {
    padding: 0 40px; } }

/**
 * Used color vars
 */
.pre-loader {
  padding: 40px; }

.spinner {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -12px 0 0 -12px;
  -webkit-animation: load 0.4s linear infinite;
          animation: load 0.4s linear infinite; }

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

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

.spinner .center {
  width: 20px;
  height: 20px;
  display: block;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 9; }

.spinner .left {
  width: 12px;
  height: 24px;
  overflow: hidden;
  float: left; }

.spinner .left:after {
  content: '';
  width: 24px;
  height: 24px;
  background-color: green;
  display: block;
  border-radius: 50%;
  background: linear-gradient(to bottom, #00b2db 0%, rgba(0, 178, 219, 0.5) 30%); }

.spinner .right {
  width: 12px;
  height: 24px;
  overflow: hidden;
  float: left; }

.spinner .right:after {
  content: '';
  width: 24px;
  height: 24px;
  background-color: green;
  display: block;
  margin-left: -100%;
  border-radius: 50%;
  background: linear-gradient(to bottom, rgba(0, 178, 219, 0) 0%, rgba(0, 178, 219, 0.5) 100%); }

.message {
  position: absolute;
  top: calc(50% + 30px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center; }

/**
 * Used color vars
 */
/**
 * Used font-size vars
 */
/* Use for headers */
/* Use for action buttons, list items, sidebar navigation */
/* Use for list item buttons, breadcrumbs, gamification  */
/* Use for avatar, other capitalized items  */
/**
 * Used font-weights
 */
@keyframes bump-in {
  from {
    -webkit-transform: scale(0);
            transform: scale(0); }
  to {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes bump-out {
  from {
    -webkit-transform: scale(1);
            transform: scale(1); }
  to {
    -webkit-transform: scale(0);
            transform: scale(0); } }

@keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fade-out {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

/**
 * z-indexes used in the app
 * IMPORTANT: modals uses z-index 1050, don't set elements' z-index above that value (except bubble information)
 */
@-webkit-keyframes backdropAnimate {
  0% {
    background-color: rgba(20, 20, 20, 0); }
  100.0% {
    background-color: rgba(255, 255, 255, 0.7); } }
@keyframes backdropAnimate {
  0% {
    background-color: rgba(20, 20, 20, 0); }
  100.0% {
    background-color: rgba(255, 255, 255, 0.7); } }

@-webkit-keyframes backdropAnimateTwo {
  0% {
    background-color: rgba(255, 255, 255, 0.7); }
  100.0% {
    background-color: rgba(20, 20, 20, 0); } }

@keyframes backdropAnimateTwo {
  0% {
    background-color: rgba(255, 255, 255, 0.7); }
  100.0% {
    background-color: rgba(20, 20, 20, 0); } }

.modal-open .modal {
  padding: 0 0.5rem; }

.modal-dialog {
  margin: 0.5rem auto;
  -webkit-animation: fade-in 1s cubic-bezier(0.19, 1, 0.22, 1);
          animation: fade-in 1s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1050; }
  .modal-dialog .modal-content {
    border: none;
    border-radius: 5px; }
    .modal-dialog .modal-content .modal-header {
      border-bottom: none; }
      .modal-dialog .modal-content .modal-header .modal-title {
        margin-left: 4px;
        padding-right: 25px;
        font-size: 15px;
        font-weight: 500; }
        @media (min-width: 576px) {
          .modal-dialog .modal-content .modal-header .modal-title {
            margin-top: 20px; } }
      .modal-dialog .modal-content .modal-header .close {
        position: absolute;
        top: 20px;
        right: 20px;
        margin: 0;
        width: 10px;
        height: 10px;
        background-image: url(https://webclient-cdn.azureedge.net/send/img/common/close.1bc3ddad.svg);
        background-size: 10px 10px;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 1; }
        .modal-dialog .modal-content .modal-header .close:hover {
          background-image: url(https://webclient-cdn.azureedge.net/send/img/common/close-hover.6a569e1c.svg);
          opacity: 1; }
        .modal-dialog .modal-content .modal-header .close span {
          font-size: 23px; }
    .modal-dialog .modal-content .modal-body {
      padding: 15px 20px; }
      .modal-dialog .modal-content .modal-body .content[hidden] {
        display: block !important;
        visibility: hidden; }
      .modal-dialog .modal-content .modal-body .content button:first-child {
        margin-left: 0; }
    @media (max-width: 575px) {
      .modal-dialog .modal-content hr.divider {
        margin: 0 20px; } }
    @media (min-width: 576px) {
      .modal-dialog .modal-content hr.divider {
        margin: 0 40px; } }
    .modal-dialog .modal-content .modal-footer {
      border-top: none;
      text-align: left;
      justify-content: flex-start; }
      @media (max-width: 575px) {
        .modal-dialog .modal-content .modal-footer {
          padding: 15px 20px 20px; } }
      @media (min-width: 576px) {
        .modal-dialog .modal-content .modal-footer {
          padding: 15px 40px 40px; } }
      .modal-dialog .modal-content .modal-footer[hidden] {
        display: block !important;
        visibility: hidden; }
      .modal-dialog .modal-content .modal-footer button {
        padding: 13px 15px 14px 16px; }
        .modal-dialog .modal-content .modal-footer button:first-child {
          margin-left: 0; }
        .modal-dialog .modal-content .modal-footer button.secondary {
          border: none;
          color: #00a9e2;
          padding: 13px 5px 14px 6px; }
          .modal-dialog .modal-content .modal-footer button.secondary:hover {
            background: none; }
  .modal-dialog.modal-lg {
    max-width: 800px; }

.modal-backdrop {
  z-index: 1050;
  background-color: #eaeaea; }
  .modal-backdrop.show {
    opacity: initial;
    background-color: rgba(238, 238, 238, 0.9); }

@media (min-width: 576px) {
  .modal-dialog {
    margin-top: 10%; }
    .modal-dialog .modal-content .modal-header .modal-title {
      margin-top: 20px;
      margin-left: 24px;
      padding-right: 25px; }
    .modal-dialog .modal-content .modal-body {
      padding: 15px 40px; } }

.upload-redirect-promo {
  padding: 0 !important;
  -webkit-animation: 1s cubic-bezier(0.19, 1, 0.22, 1) backdropAnimate;
          animation: 1s cubic-bezier(0.19, 1, 0.22, 1) backdropAnimate;
  background-color: rgba(255, 255, 255, 0.7); }
  .upload-redirect-promo .modal-dialog {
    width: calc(100% - 40px);
    height: 520px;
    max-width: 860px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) !important;
            transform: translate(-50%, -50%) !important;
    margin: 0;
    box-shadow: 0 30px 80px -10px rgba(0, 0, 0, 0.2); }
    .upload-redirect-promo .modal-dialog .modal-content {
      height: 100%; }
  .upload-redirect-promo.closing {
    -webkit-animation: backdropAnimateTwo 1s cubic-bezier(0.19, 1, 0.22, 1);
            animation: backdropAnimateTwo 1s cubic-bezier(0.19, 1, 0.22, 1);
    background-color: rgba(20, 20, 20, 0); }
    .upload-redirect-promo.closing .modal-dialog {
      box-shadow: none; }
  @media (max-width: 400px) {
    .upload-redirect-promo .modal-dialog {
      width: calc(100% - 20px); } }

.tutanotaCampaignModal {
  -webkit-animation: 1s cubic-bezier(0.19, 1, 0.22, 1) backdropAnimate;
          animation: 1s cubic-bezier(0.19, 1, 0.22, 1) backdropAnimate;
  background-color: rgba(255, 255, 255, 0.7); }
  .tutanotaCampaignModal .modal-dialog {
    box-shadow: 0 30px 80px -10px rgba(0, 0, 0, 0.2); }
    @media (min-width: 576px) {
      .tutanotaCampaignModal .modal-dialog {
        max-width: 420px; } }

.admin-link-container {
  padding: 0 !important;
  -webkit-animation: 1s cubic-bezier(0.19, 1, 0.22, 1) backdropAnimate;
          animation: 1s cubic-bezier(0.19, 1, 0.22, 1) backdropAnimate;
  background-color: rgba(255, 255, 255, 0.7); }
  .admin-link-container .modal-dialog {
    width: calc(100% - 40px);
    max-width: 720px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) !important;
            transform: translate(-50%, -50%) !important;
    margin: 0;
    box-shadow: 0 30px 80px -10px rgba(0, 0, 0, 0.2); }
    .admin-link-container .modal-dialog .modal-content {
      background: transparent; }
  .admin-link-container.removed .modal-dialog {
    max-width: 540px; }
  .admin-link-container.closing {
    -webkit-animation: backdropAnimateTwo 1s cubic-bezier(0.19, 1, 0.22, 1);
            animation: backdropAnimateTwo 1s cubic-bezier(0.19, 1, 0.22, 1);
    background-color: rgba(20, 20, 20, 0); }
    .admin-link-container.closing .modal-dialog {
      box-shadow: none; }
  @media (max-width: 500px) {
    .admin-link-container .modal-dialog {
      height: 100%;
      width: 100%; }
      .admin-link-container .modal-dialog .modal-content {
        height: 100%;
        min-height: 100vh; } }

.login-modal .modal-content {
  overflow: hidden; }

@media (min-width: 900px) {
  .login-modal .modal-dialog {
    max-width: 460px;
    min-height: 400px; } }

.image-viewer-modal .modal-dialog,
.pdf-viewer-modal .modal-dialog,
.docx-viewer-modal .modal-dialog {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  margin: 0;
  background: #444; }
  .image-viewer-modal .modal-dialog .modal-content,
  .pdf-viewer-modal .modal-dialog .modal-content,
  .docx-viewer-modal .modal-dialog .modal-content {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%; }
    .image-viewer-modal .modal-dialog .modal-content image-viewer-modal,
    .pdf-viewer-modal .modal-dialog .modal-content image-viewer-modal,
    .docx-viewer-modal .modal-dialog .modal-content image-viewer-modal {
      width: 100%;
      height: 100%;
      max-width: 100%;
      max-height: 100%; }

.legal-modal .modal-dialog {
  margin-bottom: 10%; }

/**
 * Used font-size vars
 */
/* Use for headers */
/* Use for action buttons, list items, sidebar navigation */
/* Use for list item buttons, breadcrumbs, gamification  */
/* Use for avatar, other capitalized items  */
/**
 * Used font-weights
 */
/* Graphik Light */
@font-face {
  font-family: 'Graphik';
  src: url("https://cdn.tresorit.com/201609071250ng/Graphik-Light-Web.woff2") format("woff2"), url("https://cdn.tresorit.com/201609071250ng/Graphik-Light-Web.woff") format("woff");
  font-weight: 300;
  font-style: normal; }

/* Graphik Regular */
@font-face {
  font-family: 'Graphik';
  src: url("https://cdn.tresorit.com/201609071250ng/Graphik-Regular-Web.woff2") format("woff2"), url("https://cdn.tresorit.com/201609071250ng/Graphik-Regular-Web.woff") format("woff");
  font-weight: 400;
  font-style: normal; }

/* Graphik Medium */
@font-face {
  font-family: 'Graphik';
  src: url("https://cdn.tresorit.com/201609071250ng/Graphik-Medium-Web.woff2") format("woff2"), url("https://cdn.tresorit.com/201609071250ng/Graphik-Medium-Web.woff") format("woff");
  font-weight: 500;
  font-style: normal; }

/* Graphik Semi Bold */
@font-face {
  font-family: 'Graphik';
  src: url("https://cdn.tresorit.com/201609071250ng/Graphik-Semibold-Web.woff2") format("woff2"), url("https://cdn.tresorit.com/201609071250ng/Graphik-Semibold-Web.woff") format("woff");
  font-weight: 600;
  font-style: normal; }

/**
 * Used font-size vars
 */
/* Use for headers */
/* Use for action buttons, list items, sidebar navigation */
/* Use for list item buttons, breadcrumbs, gamification  */
/* Use for avatar, other capitalized items  */
/**
 * Used font-weights
 */
/**
 * Used color vars
 */
/**
 * Used font-size vars
 */
/* Use for headers */
/* Use for action buttons, list items, sidebar navigation */
/* Use for list item buttons, breadcrumbs, gamification  */
/* Use for avatar, other capitalized items  */
/**
 * Used font-weights
 */
/**
 * Common style for all used elements
 */
input[type='color'],
input[type='date'],
input[type='datetime'],
input[type='datetime-local'],
input[type='email'],
input[type='month'],
input[type='number'],
input[type='range'],
input[type='search'],
input[type='tel'],
input[type='time'],
input[type='url'],
input[type='week'],
input[type='password'],
input[type='text'],
textarea,
select {
  font-size: 13px;
  color: #444;
  background-color: #fff;
  border: 0;
  box-shadow: inset 0 0 0 1px #ededed;
  border-radius: 4px;
  padding-left: 16px;
  padding-right: 4px;
  transition: box-shadow 0.3s ease;
  height: 40px;
  line-height: 40px;
  width: 100%;
  font-family: 'Graphik', 'Helvetica', Arial, sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  input[type='color']:focus,
  input[type='date']:focus,
  input[type='datetime']:focus,
  input[type='datetime-local']:focus,
  input[type='email']:focus,
  input[type='month']:focus,
  input[type='number']:focus,
  input[type='range']:focus,
  input[type='search']:focus,
  input[type='tel']:focus,
  input[type='time']:focus,
  input[type='url']:focus,
  input[type='week']:focus,
  input[type='password']:focus,
  input[type='text']:focus,
  textarea:focus,
  select:focus {
    outline: none;
    border: 0;
    box-shadow: inset 0 0 0 2px #00a9e2; }

input[type='color']::-ms-reveal, input[type='color']::-ms-clear,
input[type='date']::-ms-reveal,
input[type='date']::-ms-clear,
input[type='datetime']::-ms-reveal,
input[type='datetime']::-ms-clear,
input[type='datetime-local']::-ms-reveal,
input[type='datetime-local']::-ms-clear,
input[type='email']::-ms-reveal,
input[type='email']::-ms-clear,
input[type='month']::-ms-reveal,
input[type='month']::-ms-clear,
input[type='number']::-ms-reveal,
input[type='number']::-ms-clear,
input[type='range']::-ms-reveal,
input[type='range']::-ms-clear,
input[type='search']::-ms-reveal,
input[type='search']::-ms-clear,
input[type='tel']::-ms-reveal,
input[type='tel']::-ms-clear,
input[type='time']::-ms-reveal,
input[type='time']::-ms-clear,
input[type='url']::-ms-reveal,
input[type='url']::-ms-clear,
input[type='week']::-ms-reveal,
input[type='week']::-ms-clear,
input[type='password']::-ms-reveal,
input[type='password']::-ms-clear,
input[type='text']::-ms-reveal,
input[type='text']::-ms-clear {
  display: none; }

textarea {
  resize: vertical;
  padding: 0 0 0 16px; }

label {
  font-weight: 15px;
  color: #444; }

/**
 * Buttons
 */
button {
  padding: 13px 16px 14px 16px;
  font-size: 13px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 4px;
  font-family: 'Graphik', 'Helvetica', Arial, sans-serif !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.54, 0, 0.1, 1); }
  button:focus {
    outline: none; }
  button.primary {
    color: #fff;
    background: linear-gradient(to bottom, #00ade3 0%, #00a5e0 100%); }
    button.primary:hover {
      background: linear-gradient(to bottom, #00a4e0 0%, #009cdc 100%); }
  button.secondary {
    color: #444;
    background: linear-gradient(to bottom, #fcfcfc 0%, #f9f9f9 100%); }
    button.secondary:hover {
      background: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
      border: 1px solid rgba(0, 0, 0, 0.17); }
  button.disabled {
    pointer-events: none;
    opacity: 0.3; }
  button.icon-type {
    padding: 0;
    border: 0;
    outline: none; }

/**
  Platform and browser icons
 */
.icon {
  /* Recognized file types by extensions */ }
  .icon.file-type {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-icon.784d7572.svg) no-repeat 5px 5px;
    flex: none; }
    .icon.file-type.bat {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-exec-icon.d8eb9af7.svg); }
    .icon.file-type.dmg {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-exec-icon.d8eb9af7.svg); }
    .icon.file-type.exe {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-exec-icon.d8eb9af7.svg); }
    .icon.file-type.copy {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-copy-icon.9216b533.svg); }
    .icon.file-type.bmp {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-image-icon.ee86f6bd.svg); }
    .icon.file-type.jpg {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-image-icon.ee86f6bd.svg); }
    .icon.file-type.png {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-image-icon.ee86f6bd.svg); }
    .icon.file-type.img {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-image-icon.ee86f6bd.svg); }
    .icon.file-type.tif {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-image-icon.ee86f6bd.svg); }
    .icon.file-type.code {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-code-icon.60de1ab9.svg); }
    .icon.file-type.pdf {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-pdf-icon.03008709.svg); }
    .icon.file-type.doc {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-doc-icon.1bcda938.svg); }
    .icon.file-type.ppt {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-presentation-icon.6ef49595.svg); }
    .icon.file-type.audio {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-music-icon.601e54ce.svg); }
    .icon.file-type.txt {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-text-icon.bac8679e.svg); }
    .icon.file-type.video {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-video-icon.d5073313.svg); }
    .icon.file-type.xls {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-excel-icon.90130c0c.svg); }
    .icon.file-type.zip {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-compressed-icon.ca24a7f3.svg); }
    .icon.file-type.ppdf {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-ppdf-icon.fcb93f98.svg); }
    .icon.file-type.html {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/file-html-icon.7b0a2513.svg); }
    .icon.file-type.directory {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/icons/folder-icon.f042be7b.svg); }

.illustration {
  display: inline-block;
  vertical-align: middle;
  text-indent: -9999px; }
  .illustration.file-type {
    width: 160px;
    height: 160px;
    background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-illustration.d83264b5.svg); }
    .illustration.file-type.bat {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-exec-illustration.cbf6fc3a.svg); }
    .illustration.file-type.dmg {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-exec-illustration.cbf6fc3a.svg); }
    .illustration.file-type.exe {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-exec-illustration.cbf6fc3a.svg); }
    .illustration.file-type.bmp {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-image-illustration.9fa1ccb7.svg); }
    .illustration.file-type.jpg {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-image-illustration.9fa1ccb7.svg); }
    .illustration.file-type.png {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-image-illustration.9fa1ccb7.svg); }
    .illustration.file-type.img {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-image-illustration.9fa1ccb7.svg); }
    .illustration.file-type.tif {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-image-illustration.9fa1ccb7.svg); }
    .illustration.file-type.code {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-code-illustration.2f8e4b68.svg); }
    .illustration.file-type.pdf {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-pdf-illustration.8f84a40e.svg); }
    .illustration.file-type.doc {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-doc-illustration.aed807a0.svg); }
    .illustration.file-type.ppt {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-presentation-illustration.6af50a9f.svg); }
    .illustration.file-type.audio {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-music-illustration.ed8b9d0f.svg); }
    .illustration.file-type.txt {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-text-illustration.b8d18802.svg); }
    .illustration.file-type.video {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-video-illustration.1a0cbef0.svg); }
    .illustration.file-type.xls {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-excel-illustration.9eead0e5.svg); }
    .illustration.file-type.zip {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-zip-illustration.43edd7da.svg); }
    .illustration.file-type.ppdf {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-pdf-illustration.8f84a40e.svg); }
    .illustration.file-type.html {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/illustrations/file-html-illustration.8779c859.svg); }
    .illustration.file-type.directory {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/folder-icon.df4e23cf.svg); }
    .illustration.file-type.tresor {
      background-image: url(https://webclient-cdn.azureedge.net/send/img/common/file-types/tresor-icon.ef066d65.svg); }

/**
 * z-indexes used in the app
 * IMPORTANT: modals uses z-index 1050, don't set elements' z-index above that value (except bubble information)
 */
/**
 * Used color vars
 */
/**
 * Used font-size vars
 */
/* Use for headers */
/* Use for action buttons, list items, sidebar navigation */
/* Use for list item buttons, breadcrumbs, gamification  */
/* Use for avatar, other capitalized items  */
/**
 * Used font-weights
 */
/**
 * Browser is not supported
 */
#browser-isnt-supported {
  background: white;
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  text-align: center; }
  #browser-isnt-supported .container .logo {
    width: 138px;
    height: 160px;
    display: block;
    background: url(https://webclient-cdn.azureedge.net/send/img/not-supported-browser/grey_tresorit_logo.a206fee8.png);
    margin: 0 auto; }
  #browser-isnt-supported .container .content {
    margin-top: 60px; }
    #browser-isnt-supported .container .content h1 {
      font-size: 30px;
      text-align: center;
      text-transform: uppercase;
      font-weight: 300;
      color: #444;
      margin-top: 30px; }
    #browser-isnt-supported .container .content h2 {
      font-size: 20px;
      text-align: center;
      color: #444; }
    #browser-isnt-supported .container .content table {
      margin: 30px auto 0; }
      #browser-isnt-supported .container .content table td .box {
        float: left;
        margin: 0 20px 20px 0;
        border-radius: 3px;
        background: url(https://webclient-cdn.azureedge.net/send/img/not-supported-browser/bg_browser_box.5e2bf9f7.png) repeat-x;
        transition: all 0.3s ease;
        border: 1px solid #ccc;
        box-shadow: 0 0 0 3px #999; }
        #browser-isnt-supported .container .content table td .box a {
          display: block;
          padding: 10px; }
          #browser-isnt-supported .container .content table td .box a span {
            display: block;
            text-align: center;
            margin-top: 10px;
            color: #444;
            text-transform: uppercase;
            font-size: 12px;
            transition: all 0.3s ease; }
          #browser-isnt-supported .container .content table td .box a div.icon {
            /* Browser icons */ }
            #browser-isnt-supported .container .content table td .box a div.icon.browser {
              width: 60px;
              height: 63px;
              background-image: url(https://webclient-cdn.azureedge.net/send/img/not-supported-browser/icon-browsers.d07c8ae2.png); }
              #browser-isnt-supported .container .content table td .box a div.icon.browser.chrome {
                background-position: -5px -5px; }
              #browser-isnt-supported .container .content table td .box a div.icon.browser.firefox {
                background-position: -71px -5px; }
              #browser-isnt-supported .container .content table td .box a div.icon.browser.explorer {
                background-position: -137px -3px; }
              #browser-isnt-supported .container .content table td .box a div.icon.browser.opera {
                background-position: -199px -2px; }
              #browser-isnt-supported .container .content table td .box a div.icon.browser.safari {
                background-position: -263px -5px; }
              #browser-isnt-supported .container .content table td .box a div.icon.browser.edge {
                background: url(https://webclient-cdn.azureedge.net/send/img/not-supported-browser/microsoft-edge.a12e30b5.svg);
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center; }
        #browser-isnt-supported .container .content table td .box:hover {
          border: 1px solid #ccc;
          box-shadow: 0 0 0 3px #777; }

#tresoritFrame {
  display: none;
  overflow: hidden;
  width: 0;
  height: 0;
  border: none; }
