.single-stocks__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: max( 30 / 19.2 * 1vw, 20px);
}
.single-stocks__head .stock__tag-wrap {
  max-width: 40%;
  margin-bottom: 0;
  height: 100%;
}
.single-stocks__head .page-title {
  flex: 1;
  margin-bottom: 0;
}
.single-stocks__wrap {
  display: grid;
  grid-template-columns: 31.6% 1fr;
  gap: max( 30 / 19.2 * 1vw, 20px);
}
.single-stocks__left > *:not(:last-child) {
  margin-bottom: max( 10 / 19.2 * 1vw, 10px);
}
.single-stocks__image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.single-stocks__image:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.single-stocks__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-stocks__terms {
  opacity: 0.5;
}
.single-stocks__terms-title {
  font-weight: 500;
  line-height: 150%;
  color: var(--color3E);
  margin-bottom: max( 5 / 19.2 * 1vw, 5px);
}
.single-stocks__terms-text * {
  font-weight: 400;
  font-size: max( 12 / 19.2 * 1vw, 12px);
  line-height: 150%;
  color: var(--color, var(--color6E));
  color: var(--color3E);
}
.single-stocks__text {
  margin-bottom: max( 22 / 19.2 * 1vw, 22px);
}
.single-stocks__text * {
  font-weight: 400;
  font-size: max( 12 / 19.2 * 1vw, 12px) !important;
  line-height: 150%;
  color: var(--color3E) !important;
}
.single-stocks__btn-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.single-stocks__btn-back {
  display: flex;
  align-items: center;
}
.single-stocks__btn-back svg {
  transform: rotate(180deg);
  margin-right: max( 5 / 19.2 * 1vw, 5px);
  width: max( 24 / 19.2 * 1vw, 20px);
  height: max( 24 / 19.2 * 1vw, 20px);
}

@media (max-width: 575px) {
  .single-stocks__wrap {
    grid-template-columns: 1fr;
  }
  .single-stocks__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .single-stocks__head > *:not(:last-child) {
    margin-bottom: 10px;
  }
  .single-stocks__head .stock__tag-wrap {
    max-width: 100%;
  }
}/*# sourceMappingURL=single-stocks.css.map */