#isi-expand-toggle {
  background-color: #037c38;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 14px;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  gap: 5px;
  align-items: center;
  border: none;
  margin: 0;
  cursor: pointer;
}

.isi-block-container {
  position: fixed;
  bottom: 0;
  z-index: 1;
  left: 0;
  height: 165px;
  background-color: #fff;
  transition: 0.3s linear;
  padding: 0.25rem 3rem 3rem 3rem;
  width: 100%;
}

.isi--is-docked {
  position: relative;
  background-color: #fff;
  height: auto;
  transition: 0.3s linear;
  z-index: unset !important;
}

.isi--is-expanded {
  overflow: hidden;
  z-index: 99;
  height: 100%;
  transition: 0.3s linear;
}

.isi--is-expanded #plusIcon {
  display: none;
}

.isi--scrollable {
  overflow: auto;
  max-height: 95vh;
}

.isi--is-docked #isi-expand-toggle {
  display: none;
}

.isi--lock {
  overflow: hidden;
}

#isi-expand-toggle svg path {
  fill: #fff;
}

#isi-content > *:first-child {
  margin-bottom: 0;
}

.isi-content-main {
  padding: 1rem 0;
}

#isi-content {
  max-width: 1024px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .isi-block-container {
    padding: 0.25rem 1rem 1rem 1rem;
  }
}

@media screen and (max-width: 767px) {
  .isi-block-container {
    padding: 0;
  }

  .isi-content-main {
    padding: 1rem !important;
  }

  #isi-content > *:first-child {
    padding: 0 1rem;
  }
}

@media screen and (max-width: 767px) {
  .isi-block-container #isi-expand-toggle-text {
    display: none;
  }
}
