:root {
  --toolkit-bg: #f3f4f6;
  --toolkit-card-border: #d9dbe0;
  --toolkit-text: #6d747d;
  --toolkit-title: #1a1f24;
  --toolkit-purple: #6f63ff;
   --toolkit-purple-secondary: #5647fa;
  --toolkit-green: #10b58d;
  --toolkit-blue: #1970e9;
}

body {
  font-family: "Roboto", "HPEGraphik-regular", sans-serif;
  color: var(--toolkit-text);
  background: var(--toolkit-bg);
}

.toolkit-shell {
  min-height: 100vh;
}

.toolkit-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
 /*  background:
    linear-gradient(rgba(243, 244, 246, 0.82), rgba(243, 244, 246, 0.82)), */
    /* url("../imgs/files/bg.jpg") center center / cover no-repeat; */
}

.toolkit-login__wrap {
  width: 100%;
  max-width: 540px;
  text-align: center;
}

.toolkit-login__logo {
  max-width: 120px;
  margin-bottom: 1.25rem;
}

.toolkit-login__title {
  margin: 0;
  font-size: clamp(5rem, 4vw, 4.4rem);
  line-height: 1;
  color: #000;
  font-family: "HPEGraphikCondensed-Bold", "Roboto Condensed", sans-serif;
  text-transform: uppercase;
}

.toolkit-login__subtitle {
  margin: 0.35rem 0 2rem;
  font-size: clamp(.8rem, 2.2vw, 2rem);
  color: #232a32;
  font-weight: 300;
}

.toolkit-panel {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 2rem;
}

.toolkit-panel__label {
  display: block;
  margin-bottom: 1.25rem;
  font-size: clamp(1.2rem, 1vw, 2rem);
  font-weight: 300;
  text-align: center;
  color: #5f6771;
}

.toolkit-input-group {
  margin-bottom: 1rem;

  border: 1px solid #e4e4e4;
  border-radius: 5px;

}

.toolkit-input-group .input-group-text {
  border-color: transparent;
  background: #fff;
  /* border-color: transparent;
    border-right-color: transparent; */
  background-clip: padding-box;
  /* border-right: 0px; */

}

.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0px;
}


.toolkit-input-group .form-control {
  border-color: transparent;
  min-height: 56px;
  /* font-size: 1.15rem; */
}

.toolkit-input-group  .form-control::placeholder {
  color: #b0b1b1;
}

.toolkit-btn {
  border: 0;
  border-radius: 6px;
  background: var(--toolkit-purple);
  color: #fff;
  width: 100%;
  letter-spacing: 0.3px;
}
.toolkit-btn:hover {
  background: var(--toolkit-purple-secondary);
  color: #fff;
}

.toolkit-login__copy {
  margin-top: 2rem;
  color: #2b3239;
  font-size: 1.5rem;
}

.toolkit-topbar {
  background: var(--toolkit-purple);
  min-height: 82px;
  display: flex;
  align-items: center;
}

.toolkit-topbar__logo {
  max-width: 188px;
}

.toolkit-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #f6f7fa;
  font-size: 1.1rem;
  font-weight: 300;
}

.toolkit-user__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: #5c6167;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  line-height: 1;
  position: relative;
}

.toolkit-user__avatar::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1bd3ae;
  position: absolute;
  bottom: 3px;
  right: 3px;
}

.toolkit-page {
  padding: 3rem 0;
}

.toolkit-page__title {
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-weight: 300;
  color: #7b838c;
  margin: 0 0 0.6rem;
}

.toolkit-title-line {
  width: 95px;
  height: 10px;
  background: #b6bcc4;
  margin-bottom: 2rem;
}

.toolkit-section-card {
  border: 1px solid var(--toolkit-card-border);
  border-radius: 12px;
  background: #f8f9fb;
  padding: 2.25rem 2.25rem 1.6rem;
  height: 100%;
}

.toolkit-section-card__meta {
  text-transform: uppercase;
  color: #8c929a;
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
}

.toolkit-section-card__title {
  font-size: clamp(1.65rem, 3vw, 3rem);
  font-family: "HPEGraphikCondensed-Bold", "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
position: relative;
color: var(--toolkit-purple);
 
}
.toolkit-section-card__title::after {
  content: "";
  width: 7px;
  height: 40px;
  background: var(--toolkit-purple);
  position: absolute;
  left: -1rem;
  top: 50%;
  margin-top: -20px;
}

/* .toolkit-section-card__title.bg-green {
  color: var(--toolkit-green);
}  */
.toolkit-section-card__title.bg-green::after {
  background-color: var(--toolkit-green);
}

.bg-blue-line::after {
  background-color: var(--toolkit-blue);
}


.toolkit-section-card__desc {
  min-height: 94px;
  font-size: 1.03rem;
  line-height: 1.25;
}

.toolkit-section-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.toolkit-action {
  color: #fff;
  border: 0;
  border-radius: 0;
  min-width: 230px;
  /* min-height: 56px;
  font-size: 2rem;
  font-family: "HPEGraphikCondensed-Bold", "Roboto Condensed", sans-serif; */
  text-transform: uppercase;
}

.toolkit-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #737a82;
  font-size: 2.25rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.toolkit-back span {
  border-bottom: 1px solid #cfd3d8;
  line-height: 1.2;
}

.toolkit-downloads {
  border: 1px solid var(--toolkit-card-border);
  border-radius: 12px;
  padding: 2rem;
  background: #f8f9fb;
}

.toolkit-downloads__line {
  width: 250px;
  height: 15px;
  background: var(--toolkit-purple);
}

.toolkit-downloads h2 {
  margin: 0 0 1.3rem;
  color: var(--toolkit-title);
  font-size: 2.85rem;
}

.material-card {
  border: 1px solid var(--toolkit-card-border);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
  height: 100%;
}

.material-card__preview {
  
  aspect-ratio: 3 / 4;
  object-fit: cover;
 
  max-height: 300px;
  width: auto;
}

.material-card__type {
  display: inline-flex;
  align-items: center;
  /* gap: 0.5rem; */
  font-size: 0.95rem;
  color: #9299a1;
  position: absolute;
  top: -40px;
  left: -10px;
}

.material-card__type .mdi {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #fff;
  background: #20c997;
}

.material-card__title {
  /* color: #159f84; */

  line-height: 1.1;
}

.material-card__desc {
 
  line-height: 1.25;


}

.material-card__download {
  color: #6f7680;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
 
}

@media (max-width: 991.98px) {
  .toolkit-topbar {
    padding: 0.8rem 0;
    min-height: auto;
  }

  .toolkit-user {
    font-size: 0.95rem;
    gap: 0.65rem;
  }

  .toolkit-page {
    padding: 2rem 0;
  }

  .toolkit-section-card__desc {
    min-height: 0;
  }

  .toolkit-section-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .toolkit-action {
    width: 100%;
    min-width: 0;
  }

  .toolkit-downloads__line {
    width: 180px;
  }
}
