html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.4;
}

svg {
  width: 30px;
  height: 30px;
  fill: #f6f6f6;
}

a {
  text-decoration: none;
  color: #000;
  font-size: 1.5em;
}

.phone-screen {
  width: 100%;
  max-width: 450px;
  height: 100vh;
  border: 0px;
  margin: 5vh auto;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  color: #f6f6f6;
  background-color: #121212;
}

.header,
.content,
.footer {
  padding: 15px;
}

.header {
  background-color: #222327;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 65px;
}

.header h1 {
  font-size: 24px;
}

.content {
  overflow-y: auto;
}

.categories {
  padding-left: 20px;
  list-style-type: none;
  font-size: 20px;
  margin-bottom: 40px;
}

.categories li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.notReady {
  fill: gray;
}
.notAvailable {
  fill: gray;
}
.ready {
  fill: yellowgreen !important;
}
.available {
  fill: yellowgreen !important;
}

.icon-agentLogout {
  fill: yellowgreen;
  cursor: pointer;
}
.categories svg {
  margin-right: 20px;
  fill: #7c7d81;
}

.recent h2 {
  width: 92%;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;
}

.playlist svg {
  fill: #7c7d81;
}

.info h1 {
  font-size: 20px;
}

.info p {
  color: #7c7d81;
  font-size: 16px;
}

.taskList {
  display: none;
}

.enableDevice {
  font-size: 1.2rem;
  color: #000;
  width: 60%;
  margin-left: 16%;
  align-items: center;
  border-radius: 7px;
  border: none;
  background: greenyellow;
  padding: 3%;
  text-align: center;
  cursor: pointer;
}
.auth {
  width: 95%;
  border-radius: 7px;
  border: none;
  background: greenyellow;
  padding: 3%;
  text-align: center;
  cursor: pointer;
}
input {
  font-size: 1rem;
  padding: 2px;
  outline: none;
  margin-left: 3%;
  display: flex;
  width: 60%;
  border-radius: 5px;
}

select {
  font-size: 1rem;
  color: #bbbbbd;
  padding: 2px;
  text-align: center;
  margin-left: 3%;
  display: flex;
  border-radius: 5px;
  width: 60%;
  outline: none;
}

#element1 {
  margin-left: 5%;
  float: left;
}
#element2 {
  margin-left: 20%;
  float: left;
}
#element3 {
  margin-left: 11%;
  float: left;
}

.wrapUpCall:hover {
  color: rgb(215, 210, 210);
  transition: 1s;
  transform: scale(1.3);
}
.endCall:hover {
  color: tomato;
  transition: 1s;
  transform: scale(1.3);
}
.resumeCall:hover {
  color: yellow;
  transition: 1s;
  transform: scale(1.3);
}

.holdCall:hover {
  color: orange;
  transition: 1s;
  transform: scale(1.3);
}

.fs {
  font-size: 30px;
}

li {
  cursor: pointer;
}

.dialNumber {
  text-align: center;
}

::placeholder {
  color: #bbbbbd;
  opacity: 1; /* Firefox */
}

.callInfo {
  margin-left: 15%;
  background: lightsalmon;
  /* color: #000; */
  border-top-left-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 60%;
  text-align: center;
}
.icon-cog {
  cursor: pointer;
}

.removed {
  transform: translateX(110vw);
}

.second {
  transition: transform 4s 0s;
}
