@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(../webfonts/Roboto-Regular.ttf) format("truetype")
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Roboto;
}

html {
  height: -webkit-fill-available;
}

.logo {
  line-height: normal;
}

.application-container-window {
  width: 100%;
  height: 100%;
}

.header-container {
  display: flex;
  width: 100vw;
  height: 100vh;
  flex-direction: column;

  overflow: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.animated {
  animation: fadeIn 2s ease-in;
}

.fadeout {
  animation: fadeOut 2s ease-out;
}

.second-row {
  flex-grow: 1;
  border: none;
  margin: 0;
  padding: 0;
}

.header-logo {
  width: 3em;
}

.taskbar {
  background-color: #F3F3F3;
  max-height: 3.2em;
  min-height: 3.2em;
}

.taskbar-button-icon {
  border: none;
  outline: none;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border-radius: 10px;
}

.taskbar-button-icon:active {
  background-color: #15aeae;
  -webkit-transition: background-color 1000ms linear;
  -ms-transition: background-color 1000ms linear;
  transition: background-color 1000ms linear;
}

.pin-unpin-header {
  height: 20px;
  width: 20px;
  border-radius: 5px;
  font-family: none;
  font-size: unset;
  line-height: normal;
}

.header-pinned {
  background-color: #DDD;
}

.header-unpinned {
  background-color: transparent;
}

.pin-unpin-header img {
  height: 10px;
}

.notification-profile-holder {
  display: inline-flex;
}

.profile-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.profile-name-button {
  border: none;
  outline: none;
  max-width: 150px;
  height: 40px;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border-radius: 10px;
  font-size: 0.8em;
}

.profile-name-button p {
  margin: 0;
  padding: 0;
}

.privacy-policy-button {
  background: transparent;
  border: solid transparent 1px;
  color: #444;
}

.privacy-policy-button:focus,
.privacy-policy-button:hover {
  border: solid #15aeae 1px;
}

.settings-button {
  background: transparent;
  border: solid transparent 1px;
  color: #444;
}

.settings-button:focus,
.settings-button:hover {
  border: solid #15aeae 1px;
}

.logout-button {
  background: transparent;
  border: solid transparent 1px;
  color: #FF0000;
}

.logout-button:focus,
.logout-button:hover {
  border: solid #15aeae 1px;
}

.header-popover {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 10px #999999;
  box-shadow: 0 0 10px #999999;
  border-radius: 10px;
}

.app-icon {
  background-color: transparent;
  font-size: unset;
  line-height: normal;
  font-family: none;
}

.app-icon.active {
  background-color: #DDD;
}

.application {
  border-radius: 5px;
  background-color: #F3F3F3;
  margin: 0;
  border: solid transparent 1px;
}

.application:hover,
.application:focus {
  border: solid #15aeae 1px;
}

.application p {
  margin: 0;
  padding: 0;
}

.application-name-text {
  font-size: 0.8em;
  max-width: 75px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.application:active {
  background-color: #15aeae;
  -webkit-transition: background-color 1000ms linear;
  -ms-transition: background-color 1000ms linear;
  transition: background-color 1000ms linear;
}

.password-visibility-toggler {
  border: solid transparent 1px;
}

.password-visibility-toggler:hover,
.password-visibility-toggler:focus {
  border: solid #15aeae 1px;
}

.all-application-container {
  max-width: 50%;
}

.application-continer {
  display: inline-flex;
  margin-right: 5px;
  margin-bottom: 5px;
}

.application {
  max-width: 80px !important;
  min-width: 50px !important;
  height: 52px !important;
}

.close-application {
  -moz-box-sizing: border-box;
  align-items: center;
  font-size: 10px;
  padding: 0;
  border: solid 1px red;
  color: red;
  position: absolute;
  background: rgba(255, 0, 0, 0.1);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  right: -3px;
  top: -3px;
  text-align: center;
  display: flex;
  justify-content: center;
  cursor: pointer;
}


.alerts-container {
  top: 50px;
  right: 10px;
  list-style: none;
  z-index: 9999;
}

.alert-li-info {
  background-color: #bfecf5;
}

.alert-li-warn {
  background-color: #f3edd8;
}

.alert-li-pass {
  background-color: #aaf1ad;
}

.alert-li-fail {
  background-color: #fac4bb;
}

.alert-message-type {
  width: 20px;
  height: 20px;
}

.alert-message-action-loader,
.alert-message-action-closer {
  width: 20px;
  height: 20px;
}

.alert-message-container {
  border-radius: 10px;
  padding: 5px;
}

.alert-message-content-container {
  line-height: 0.9em;
}

.alert-message-content {
  font-size: 0.8em;
}


@media only screen and (max-width:767px) {
  .opened-applications-holder {
    overflow-x: auto;
    width: 50vw;
    margin: 0 !important;
  }

  .alert-message-container {
    width: 75vw !important;
  }
}

@media only screen and (min-width: 768px) {
  .alert-message-container {
    width: 50vw !important;
  }
}

@media only screen and (min-width: 1200px) {
  .alert-message-container {
    width: 25vw !important;
  }
}