.btn-add-temp {
  height: 46px;
  width: 215px;
  background-color: var(--color-ti-white);
  border: 1px solid var(--color-ti-primary-blue);
  border-radius: 25px;
  justify-content: space-evenly;
  font-size: 15px;
  font-family: Roboto;
  font-weight: 500;
  margin: auto;
  padding: 10px;
  color: var(--color-ti-primary-blue);
  cursor: pointer;
  outline: none;
  transition: box-shadow 0.3s linear;
}

.btn-add-temp.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn-add-temp:hover {
  border: 1px solid var(--color-ti-primary-blue);
  box-shadow: 0 0 6px 2px var(--color-ti-shadow-blue);
}

.flex-center {
  display: flex;
  align-items: center;
}

.large-icon {
  height: 22px;
  width: 22px;
}

.header-content {
  height: 125px;
  font-size: 16px;
  font-weight: bold;
}

.small-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-ti-text-grey-03);
}

.temp-list-holder {
  width: 95%;
  height: 80%;
  padding: 10px;
  overflow: auto;
}

.template {
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  border: 1px solid var(--color-ti-text-grey);
  background-color: var(--color-ti-white);
  padding: 0px 15px;
  margin: 10px 0px 5px 0px;
  cursor: pointer;
  transition: box-shadow 0.4s linear;
}

.template.selected,
.template:hover {
  border: 1px solid var(--color-ti-alt-blue);
  box-shadow: 0 0px 3px 1px var(--color-ti-alt-blue);
  background-color: var(--color-ti-alt-blue-light-01);
}

.temp-name {
  color: var(--color-ti-text-grey-03);
  font-size: 14px;
  font-weight: 500;
}

.temp-desc {
  font-size: 14px;
  color: var(--color-ti-text-grey-dark);
}

.temp-desc.overflow {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.tem-list-cnt {
  height: 100%;
  flex-direction: column;
}

.temp-add-btn-cnt {
  display: flex;
  justify-content: space-around;
  height: 15%;
  width: 80%;
  margin-top: 20px;
}
