.env-card-container {
  display:flex;
  gap:15px;
  justify-content: center;
}

.env-card,.class-card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  background-clip: border-box;
  border: 1px solid;
  border-radius: 0.25rem;
  background-color: #fff;
  border-color: #d8dbe0;
  box-shadow: 0 1px 1px 0 rgba(60, 75, 100, .14), 0 2px 1px -1px rgba(60, 75, 100, .12), 0 1px 3px 0 rgba(60, 75, 100, .20);
  border: 0;
  cursor: pointer;
}
.env-card.tooltip .bottom {
  min-width: 200px;
  opacity: var(--environment-tooltip-opacity);
  top: unset;
  bottom: var(--environment-tooltip-bottom);
}
.env-card:hover, .class-card:hover {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.env-card.selected {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}
.env-card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}
.text-muted {
    color: #768192 !important;
}
.text-right {
    text-align: right !important;
}

.mb-4, .my-4 {
    margin-bottom: 1.5rem !important;
}
.text-value-lg {
    font-size: 1.3125rem;
}

[class^="text-value"] {
    font-weight: 600;
}

.text-muted {
    color: #768192 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}
.text-uppercase {
    text-transform: uppercase !important;
}
small, .small {
    font-size: .8rem;
    font-weight: 400;
}
.mt-3, .my-3 {
    margin-top: 0.3rem !important;
}

.mb-0, .my-0 {
    margin-bottom: 0 !important;
}

.progress {
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    line-height: 0;
    font-size: 0.65625rem;
    border-radius: 0.25rem;
    background-color: #ebedef;
}
.progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    transition: width 0.6s ease;
    color: #fff;
    background-color: #321fdb;
}
.progress-xs {
    height: 4px;
}
.bg-gradient-success {
    background: #1b9e3e !important;
    background: linear-gradient(45deg, #2eb85c 0%, #1b9e3e 100%) !important;
    border-color: #1b9e3e !important;
}
.bg-gradient-info {
    background: #2982cc !important;
    background: linear-gradient(45deg, #39f 0%, #2982cc 100%) !important;
    border-color: #2982cc !important;
}
.element {
  margin-bottom: 20px;
}
.underline {
  text-decoration: underline;
}
.text-center {
  text-align: center;
}

/* Styling the content overlay */
.env-card {
  position: relative;
}
.answer {
    width: 100%;
    height: 0%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), #2885fe);
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    color: #fff;
    padding: 0 30px;
    text-align: center;
    transition: height 0.5s;
}
.answer.wrong {
    width: 100%;
    height: 0%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), #FE382A);
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    color: #fff;
    padding: 0 30px;
    text-align: center;
    transition: height 0.5s;
}

/* Styling content text */
.answer p {
    letter-spacing: 1px;
    font-size: 14px;
}

.answer h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Hover effect */
.env-card.selected .answer {
    height: 100%;
}