@font-face {
  font-family: system;
  font-style: normal;
  font-weight: 300;
  src: local(".SFNSText-Light"), local(".HelveticaNeueDeskInterface-Light"),
    local("Roboto-Light"), local("DroidSans"), local("Tahoma"),
    local(".LucidaGrandeUI"), local("Ubuntu Light"), local("Segoe UI Light");
}

html,
body {
  width: 100%;
  height: 100%;
}

/* =========================
   TITLE BAR
   ========================= */

#title-bar {
  height: 31px;
  background-color: #d6dae0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  overflow: hidden;
  user-select: none;
}

#logo {
  padding-left: 5px;
  vertical-align: middle;
}

#logo-description {
  color: #000000;
  font-size: 12px;
  font-family: "system";
  vertical-align: middle;
}


/* =========================
   URL BAR
   ========================= */

#url-bar {
  height: 28px;
  background-color: #f1f3f4;
  width: 100%;

  display: flex;
  align-items: center;

  white-space: nowrap;
  overflow: scroll;
  text-overflow: ellipsis;

  -ms-overflow-style: none;
  scrollbar-width: none;

  border-bottom: 1px solid lightgray;
}

#url-bar::-webkit-scrollbar {
  display: none;
}

#ssl-padlock {
  user-select: none;
  padding-left: 8px;
  margin-right: 8px;
}

#domain-name {
  color: #000000;
  font-size: 14px;
  font-family: "system";
}

#domain-path {
  color: #7c7c7c;
  font-size: 14px;
  font-family: "system";
}


/* =========================
   WINDOW
   ========================= */

#title-bar-width {
  width: 100%;
}

#content {
  width: 100%;
  height: 700px;
  box-sizing: border-box;

  background-color: #ffffff;
  border: 1px solid lightgray;
}

#window {
  color: transparent;
  background-color: transparent;
  border-color: transparent;

  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;

  height: 759px;
  width: 40%;

  position: fixed;
  z-index: 99999;

  top: 10%;
  left: 30%;

  min-width: 600px;
  display: none;
}


/* =========================
   CLICK BUTTON
   ========================= */

#clickme {
  cursor: pointer;
}


/* =========================
   WINDOW CONTROLS
   ========================= */

#title-bar > div:last-child {
  height: 31px;
  margin-left: auto;

  display: flex;
  align-items: stretch;

  flex-shrink: 0;
}

#minimize,
#square,
#exit {
  position: relative;

  width: 46px;
  height: 31px;

  padding: 0 !important;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #000000;
  background-color: #d6dae0;

  font-size: 0;
  line-height: 0;

  cursor: default;
  user-select: none;
}


/* =========================
   MINIMIZE ICON
   ========================= */

#minimize::before {
  content: "";

  width: 10px;
  height: 1px;

  display: block;

  background-color: currentColor;
}


/* =========================
   MAXIMIZE ICON
   ========================= */

#square::before {
  content: "";

  width: 9px;
  height: 9px;

  display: block;

  border: 1px solid currentColor;
}


/* =========================
   CLOSE ICON
   ========================= */

#exit::before,
#exit::after {
  content: "";

  position: absolute;

  width: 12px;
  height: 1px;

  background-color: currentColor;
}

#exit::before {
  transform: rotate(45deg);
}

#exit::after {
  transform: rotate(-45deg);
}


/* =========================
   HOVER STATES
   ========================= */

#minimize:hover,
#square:hover {
  background-color: #c5c9ce;
}

#exit:hover {
  background-color: #c42b1c;
  color: #ffffff;
}