/*
	Abstracts are helpers, variables and functions
	for scss compliation.
*/
/*
	@TODO: Add to theme: new division fix for updated sass package.
*/
/**==================================================================================================================================
BREAKPOINT
@TODO: remove? What is use case?? either use simple global points or write custom line. why does first breakpoint have to be 0?
 ==================================================================================================================================*/
/**==================================================================================================================================
BREAKPOINT ENDS
==================================================================================================================================*/
span.edit-link {
  display: inline-block;
  background-color: yellow;
  font-weight: 700;
  position: fixed;
  left: 0;
  bottom: 3.125rem;
  transform: translateX(-45px);
  transition: all 0.2s;
}

span.edit-link a {
  display: block;
  padding: 0.9375rem;
}

span.edit-link:hover {
  transform: translateX(0);
}

/*
	Variables for compliation
	NB! Colors should be added to base/config file as css root variable.
*/
/**
 * Block section background colors.
 * Include the background options ACF fields group to use these.
 */
/*
 * makes ul/ol as a dropdown select (normaly in mobile)
 * Structure: div > title > list > li > a
*/
.step-guide .guide_grid {
  position: relative;
}

.step-guide .guide-step-item {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  z-index: 2;
  position: relative;
}

.step-guide .guide-step-item:nth-child(2n) .guide-step__content {
  order: 3;
}

.step-guide .guide-step-item:nth-child(2n) .guide-step__middle {
  order: 2;
}

.step-guide .guide-step-item .guide-step__title {
  font-weight: bold;
}

.step-guide .guide-step-item .guide-step__content,
.step-guide .guide-step-item .guide-step__graphic {
  flex: 1;
  padding: 2rem 0;
}

.step-guide .guide-step-item .guide-step__content img,
.step-guide .guide-step-item .guide-step__graphic img {
  width: 100%;
  height: auto;
}

.step-guide .guide-step-item .guide-step__number {
  width: 65px;
  height: 65px;
  background: var(--color__black);
  color: var(--color__white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-size: 22px;
  font-weight: 500;
}

.step-guide .guide-progress {
  background-color: #F1F3F3;
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 3px;
  transform: translateX(-50%);
  z-index: 1;
  padding-top: 65px;
}

.step-guide .guide-progress__indicator {
  background-color: var(--color__black);
  height: 90px;
}

.step-guide button {
  margin: 0 auto;
}
