/**
 SASS files that don't get compiled into CSS. Do not put element selectors in here.
 Every file not starting with '_' should import this file if you want to use functions and mixins.
 */
/**
 * SASS variables
 *
 These are only used in the properties and abstract SASS files.
 */
/**
 Breakpoints and columns
 */
/**
 Text
 */
/**
Fill in the header styles, only write the properties you want to override.
 */
/**
 Form
 */
/**
  Buttons
 */
/**
 Breakpoints

 @param {Keyword} $breakpoint - The breakpoint name of the minimum width. Can be any of the names in the $breakpoint variable
 */
/**
  Custom column size.
  Especially handy inside other columns.

  @param {Number|string} $size - the size in columns or 'expand'/'shrink'.
  @param {number} $total - the total size in columns. Ignored when size is 'expand'/'shrink'
 */
/**
  Custom offset size.
  Especially handy inside other columns.

  @param {Number|string} $size - the size of the offset.
  @param {number} $total - the total size in columns.
  @param {string} - the side from the offset.
 */
.storage-brand-footer {
  position: relative;
}
.storage-brand-footer .sendlink {
  position: absolute;
  width: 100%;
  height: 100%;
}
.storage-brand-footer .sendlink:hover + div path {
  opacity: 0.75;
}
.storage-brand-footer svg {
  transition: var(--transition);
}
.storage-brand-footer svg path {
  fill: white;
  transition: var(--transition);
  opacity: 1;
}

.storage-brand {
  --hover-color: var(--primary-color);
  padding: 20px;
  border: solid 1px var(--light-gray);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
@media (min-width: 992px) {
  .storage-brand {
    padding: 40px;
  }
}
.storage-brand:hover {
  background-color: var(--hover-color);
}
.storage-brand:hover .logo-wrapper .field--name-field-logo-hover {
  opacity: 1;
}
.storage-brand .sendlink {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  z-index: 100;
}
.storage-brand .logo-wrapper {
  position: relative;
}
.storage-brand .logo-wrapper .field--name-field-logo-hover {
  position: absolute;
  top: 0;
  left: 0;
  transition: var(--transition);
  opacity: 0;
}
.storage-brand .field--name-field-logo {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .storage-brand .field--name-field-logo {
    margin-bottom: 80px;
  }
}
.storage-brand .field--name-field-text {
  margin-top: auto;
}
