/* Drawer */
/*.drawer {
  display: none;
  max-width: 500px;
  position: absolute;
  width: 95%;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 0.2s ease;
  background: $white;
  z-index: 9;
  box-shadow: 0 0 5px 1px $gray;

  &.show {
    transform: translateX(0);
  }

  &.hide {
    transform: translateX(100%);
  }

  .drawer-header {
    background-color: $black;
    padding: 1.875rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .drawer-heading {
    font-weight: 700;
    text-transform: uppercase;
    color: $white;
    padding: 0;
    margin: 0;
  }

  .drawer-content {
    padding: 1.25rem;
  }

  .close-button {
    appearance: none;
    border: 0;
    background-color: transparent;
    padding: 0.5rem;
    cursor: pointer;
  }

  &#demo-request-wrap {
    .drawer-content {
      #field_9_1 {
        .gsection_title {
          display: none;
        }
      }
    }
  }
}*/
/* Toggle */
.toggle-wrap {
  position: relative;
}

.toggle-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.toggle-button .icon-drop-down {
  display: flex;
}
.toggle-button.is-active .icon-drop-down {
  transform: rotate(180deg);
}

.toggle-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 1rem;
  border: 2px solid #2caa1c;
  border-top: 0;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  background-color: #ffffff;
}
@media screen and (min-width: 981px) {
  .toggle-content {
    width: 120%;
    border: 2px solid #2caa1c;
  }
}
.toggle-content.is-open {
  display: block;
}
.toggle-content ul {
  list-style-type: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.toggle-content .contact-form-button {
  color: #000000;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  background-color: transparent;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}
.toggle-content .contact-form-button svg path {
  fill: #000000;
}
.toggle-content .phone-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  pointer-events: auto;
  cursor: pointer;
  color: #000000;
  font-weight: 700;
}
@media (min-width: 768px) {
  .toggle-content .phone-link {
    pointer-events: none;
    cursor: default;
    color: #000000;
    text-decoration: none;
  }
}
.toggle-content .phone-link svg path {
  fill: #000000;
}

.single-equipment .cta-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
@media screen and (min-width: 981px) {
  .single-equipment .cta-list {
    width: auto;
    flex-direction: row;
  }
}
.single-equipment .additional-cta-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin: 0;
}
