html {
  
  scroll-behavior: smooth;
}

*:focus {
  outline: none;
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

/* popup */
#backdrop {
  display: flex;
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff80;
  z-index: 100000;
  justify-content: center;
  align-items: center;
}

#backdrop #popup {
  background: #fff;
  border-radius: 1em;
  border: 1px solid #d9d9d9;
  box-shadow: 0 0 10px 5px #00000010;
  height: fit-content;
  transform: scale(0.5);
  transition-delay: 250ms;
  transition: all 5s;
}

#popup .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #d9d9d9;
  border-radius: 1em 1em 0 0;
  
}

#popup pre {
  background-color: #131212c9;
  padding: 10px;
  overflow: auto;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#popup code {
  background-color: white;
  display: block;
  white-space: pre-wrap;
}

.header #popupTitle {
  font-size: 14px;
  font-weight: bold;
  height: 30px;
  background: url("../images/filter.svg");
  background-size: 30px 30px;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 0 0 0 40px;
}

.header img {
  cursor: pointer;
}

.header img:hover {
  transform: scale(1.2);
  -webkit-transition: transform 0.2s ease-in-out;
}

#popup #popupMessage {
  font-size: 13px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  min-width: 400px;
  max-width: 450px;
  max-height: 600px;
  overflow-y: auto;
}

#popupMessage button {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 0 0 1em 1em;
  background-color: #f9f9fb;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  margin : 5px 0px;
}

#popupMessage input:not([type='radio']) {
  width: 100%;
  height: 50px;
  border: none;
  background-color: #f9f9fb;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  margin : 10px 0px;
}
/* popup ends */

/* navigation */

#canvas #navigation {
  min-width: 72px;
  height: 100%;
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#navigation span {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em 0;
  cursor: pointer;
}

#navigation .active {
  background-image: url("../images/navIconShim.svg");
  background-repeat: no-repeat;
  background-position: left center;
}

#navigation .active > img {
  transform: scale(1.5);
  -webkit-transition: transform 0.2s ease-in-out;
}

#navigation img {
  width: 20px;
}

#navigation span:hover > img {
  transform: scale(1.5);
  -webkit-transition: transform 0.2s ease-in-out;
}
/* navigation ends */

#canvas {
  width: 100vw;
  height: 100vh;
  background-color: #f9f9fb;
  /*      filter: blur(8px);
    -webkit-filter: blur(8px);*/
}

#canvas header {
  display: flex;
  height: 65px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d9d9d9;
  background-color: #fff;
}

header .logo {
  display: flex;
}

.logo img {
  padding: 0 21px;
  width: 30px;
  height: 30px;
}

header .logo #pageName {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 23px 0;
  font-size: 1.2em;
  text-transform: uppercase;
}

header #dialer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .controlIcons {
  width: 275px;
  display: flex;
  justify-content: flex-end;
  column-gap: 1em;
  padding: 0 1em;
}

header .controlIcons img:hover {
  transform: scale(1.2);
  -webkit-transition: transform 0.2s ease-in-out;
}


header img {
  cursor: pointer;
  width: 24px;
  height: 24px;
}

#workArea {
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
}

/*  COMMON CODE END  */
