.flex_row, .C_svg {
  display: flex;
  flex-flow: row nowrap;
}

.flex_col, .C_svg_holder, .C_main {
  display: flex;
  flex-flow: column nowrap;
}

.fill, .C_main {
  width: 100%;
  height: 100%;
}

.C_main {
  background-color: var(--color_4);
  height: 20rem;
  position: relative;
  padding: 0.5rem;
}

.C_img_main {
  height: 100%;
  background-color: var(--color_3);
  border-radius: 1rem;
}

.C_svg {
  fill: var(--color_4);
  width: 2rem;
  align-items: center;
  justify-items: center;
  cursor: pointer;
}
.C_svg_holder {
  position: absolute;
  left: 24rem;
  bottom: 1.5rem;
  justify-content: center;
  justify-items: center;
  align-items: center;
  border-radius: 2rem;
  width: 4rem;
  height: 4rem;
  background-color: var(--color_2);
  box-shadow: var(--box_shadow);
}