/*
	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
*/
/*
	Variables for legacy dc plugins
*/
.form-wpforms .form-wpforms__category {
  position: relative;
  margin: 0 0 1.5625rem 1rem;
  font-weight: 400;
}

.form-wpforms .form-wpforms__category::before {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  background-color: var(--color__dark-grey);
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: -14px;
}

.form-wpforms .form-wpforms-wrapper {
  display: flex;
  gap: var(--spacing-content);
}

@media screen and (max-width: 1000px) {
  .form-wpforms .form-wpforms-wrapper {
    flex-direction: column;
  }
}
.form-wpforms .form-wpforms-text {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1000px) {
  .form-wpforms .form-wpforms-text {
    flex: 1;
  }
}
.form-wpforms .form-wrapper {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1000px) {
  .form-wpforms .form-wrapper {
    flex: 1;
  }
}
.form-wpforms .form-wrapper .wpforms-container {
  margin: 0 !important;
}

.form-wpforms .form-wrapper .wpforms-container .wpforms-validate .wpforms-field-container .wpforms-field {
  width: 100%;
}

.form-wpforms h2 {
  color: var(--color__dark-grey);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.form-wpforms p {
  color: var(--color__dark-grey);
  margin-bottom: 1.875rem;
  font-weight: 300;
}
