@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700&family=Roboto:ital,wght@0,100;1,100&display=swap');
body {
  margin: 0px;
}
* {
  font-family: 'Poppins';
}
*,
::after,
::before {
  box-sizing: border-box;
}
.container-fluid {
  background-color: #111b2d;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  flex-flow: initial;
}

.colorW {
  background-color: #ffffff;
  color: #111b2d !important;
}
.colorB {
  background-color: #60667252;
  color: #111b2d !important;
}

.text-center {
  text-align: center;
}

.h2 {
  font-size: 1.4rem;
  font-weight: bold;
}

.pt-0 {
  padding-top: 0px !important;
}

.logIn {
  background-color: #afafaf;
  padding: 5px 15px;
  border-radius: 5px;
  color: #ffffff;
  max-width: 150px;
  padding: 13px;
  margin: 0 auto;
}
.grid__login {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-column-gap: 0.3rem;
  grid-row-gap: 0.3rem;
  width: 100%;
  border: solid 1px #afafaf;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 5px;
  background-color: #60667231;
  padding: 20px;
}
.grid__login__item {
  height: 100%;
  width: 100%;
  color: #ffffff;
  padding: 15px;
  /* border: solid 1px #dedede; */
}
.grid__login__item input {
  height: 100%;
  width: 100%;
  padding: 10px;
}
.grid__login .grid__login__divider {
  color: #ffffff;
  text-align: start;
  border-bottom: solid 1px #afafaf;
  padding: 10px;
  margin-bottom: 4px;
}

.rowInfo {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  align-items: center;

  grid-column-start: 1;
  grid-column-end: 3;
  width: 100%;
  border-bottom: 1px solid #ffffff;
}
.welcomeInfo {
  color: #ffffff;
  padding: 10px;
}
.welcomeInfo .name {
  font-size: 20px;
  font-weight: bold;
  margin-top: 4px;
}

.logOut {
  background-color: #ffffff;
  padding: 5px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.grid__box {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: auto;
  grid-column-gap: 0.3rem;
  grid-row-gap: 0.3rem;
  width: 100%;
  padding: 20px;
  border: solid 1px #afafaf;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 5px;
}
.grid__box__item {
  height: 100%;
  width: 100%;
  /* padding: 10px; */
  text-align: center;
  /* border: solid 1px #dedede; */
}
.grid__letters {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-column-gap: 0.8rem;
  grid-row-gap: 0.8rem;
  width: 100%;
  text-align: center;
}
.grid__letters__item {
  height: 100%;
  width: 100%;
  padding: 3px;
  text-align: center;
  /* 		border: solid 1px #dedede; */
  color: #ffffff;
  font-weight: bold;
}

.active {
  background-color: #99b4e8;
  border-radius: 100%;
  margin: 0 auto;
  width: 32px;
  padding: 6px;
}

.grid__clients {
  display: grid;
  grid-template-columns: 1;
  grid-template-rows: auto;
  grid-column-gap: 0.8rem;
  grid-row-gap: 0.8rem;
  width: 100%;
  padding: 20px;
  overflow-y: scroll;
  max-height: 920px;
}
.grid__clients .grid__clients__divider {
  color: #ffffff;
  text-align: start;
  border-bottom: solid 1px #afafaf;
  padding: 10px;
  margin-bottom: 4px;
}

.bigLetter {
  font-size: 35px;
  font-weight: bold;
}

.grid__clients__item {
  height: 100%;
  width: 100%;
  padding: 20px;
  color: #ffffff;
  background-color: #60667252;
  border-radius: 5px;
  text-align: start;
  position: relative;
}
.client {
  font-size: 25px;
  font-weight: bold;
}

.grid__clients__item i {
  position: absolute;
  right: 18px;
  top: 36px;
}

.fa-solid.fa-star {
  color: #f1d630;
}

.error-message {
  color: red;
}

.scroll {
  &::-webkit-scrollbar {
    width: 2px;
  }
  &::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0px 2px;
  }
  &::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    outline: 0px solid #ffffff;
  }
}
