@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 {
  height: 31px;
  background-color: black;
  width: 100%;
  display: flex;
  justify-content: space-between;
  user-select: none;
}

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

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

#minimize {
  color: white;
  font-size: 12px;
  padding: 9px 15px 7px 15px;
}

#square {
  color: white;
  font-size: 22px;
  padding: 0px 15px 5px 15px;
}

#exit {
  color: white;
  font-size: 15px;
  padding: 7px 17px 7px 17px;
}

#url-bar {
  height: 28px;
  background-color: #1b1a1a;
  width: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: scroll;
  text-overflow: ellipsis;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

#ssl-padlock {
  user-select: none;
  padding: 4px 8px;
  margin-right: 2px;
  border-radius: 25px;
}

#ssl-padlock:hover {
  background-color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

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

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

#title-bar-width {
  width: calc(100% + 2px);
  overflow: hidden;
}

#content {
  width: calc(100% + 2px);
  height: 700px;
  border: 1px solid gray;
}

#window {
  color: transparent;
  background-color: transparent;
  border-color: transparent;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  height: 759px; /* title bar height + content height */
  width: 40%;
  position: relative;
  top: 0;
  display: none;
  animation: scale 0.2s ease-in-out;
}

@keyframes scale {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

#load {
  background: #111;
  width: calc(100% + 2px);
  overflow: hidden;
}

#content {
  visibility: hidden;
  margin-left: -1px;
  margin-bottom: -5px;
}

#ssl-certificate {
  position: absolute;
  z-index: 100;
  background: #222;
  border-radius: 5px;
  box-shadow: 0 2px 5px #ccc;
  margin-left: 2px;
  width: 320px;
  height: 180px;
  display: none;
}

.ssl-close {
  font-size: 14px;
  cursor: pointer;
}

.domain-verify {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  padding: 14px 15px;
  color: #f1f1f1;
}

.cert-info {
  padding-left: 0;
  list-style: none;
  margin: 0;
  color: #a1a1a1;
}

.cert-info-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 12px;
}

.cert-info-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cert-info-icon {
  margin: 0 5px;
  font-size: 12px;
}

.cert-info-icon:hover {
  cursor: pointer;
}

.cert-info-name {
  color: #ddd;
}