/** Shopify CDN: Minification failed

Line 174:19 Expected identifier but found whitespace
Line 174:21 Unexpected "{"
Line 174:31 Expected ":"
Line 193:18 Expected identifier but found whitespace
Line 193:20 Unexpected "{"
Line 193:33 Expected ":"
Line 198:15 Expected identifier but found whitespace
Line 198:17 Unexpected "{"
Line 198:31 Expected ":"
Line 212:16 Expected identifier but found whitespace
... and 11 more hidden warnings

**/
@media (max-width: 479px) {
  .show-on-desktop, .show-on-tablets, .hide-on-mobile { display: none; }
}
@media (min-width: 480px) and (max-width: 979px) {
  .show-on-desktop, .hide-on-tablets, .show-on-mobile { display: none; }
}
@media (min-width: 980px) {
  .hide-on-desktop, .show-on-tablets, .show-on-mobile { display: none; }
}

@media (min-width: 980px) {
  .mobile-friendly-video { padding: 30px; }
}
@media (max-width: 880px) {
  .sfd-video { width: 100%; }
}
@media (min-width: 480px) {
  .video_position {
    padding: 10px; 
  }
}

@media (min-width: 990px) {
  .downloads--login {
      margin-top: 5rem;
  }
}

.downloads-items {
  position: relative;
  padding-bottom: 3rem;
  /*border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);*/
}

.downloads-items a {
  cursor: pointer;
}

@media (min-width: 990px) {
  .downloads-items {
    display: flex;
    margin-top: 5rem;
  }
}

@media (min-width: 990px) {
  .downloads-items > div:first-of-type {
    flex-grow: 1;
  }
}

.downloads--login--invitation p {
  text-align: center;
}

.downloads-item {
    position: relative;
    display: flex;
    padding: .9375rem;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: all .2s cubic-bezier(0, 0, .2, 1);
    border: 1px solid rgba(128,128,128,.16);
    box-shadow: 0 1px 4px rgba(128,128,128,.11);
    /*opacity: 0.5;*/
}




.downloads-item--image-wrapper {
  width: 75px;
  margin: 0;
}

.downloads-item--inner {
  width: calc(100% - 75px);
  padding:10px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: space-between;
}

@media (min-width: 480px) {
  .downloads-item--image-wrapper {
    width: 120px;
  }

  .downloads-item--inner {
    width: calc(100% - 120px);
  }
}


@media (min-width: 1080px) {
  .downloads-item--inner {
    flex-direction: unset;
  }
}


.downloads-item--image-wrapper svg,
.downloads-item--image-wrapper img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.downloads-item--content {
    padding-left: 1.25rem;
}

.downloads-item--content svg {
  height: 0.625rem;
  width: 0.625rem;
}

.downloads-item--content-title {
  font-size: var(--font-size-heading-5);
  margin-top: 0;
  align-items: top;
  color: currentColor;
}

.downloads-item--content-title a {
  color: currentColor;
  text-decoration: none;
}

.downloads-item--info {
    position: relative;
    padding-right: 0;
    padding-left: 1.25rem;
    margin-top: 1rem;
}

@media (min-width: 560px) {
  .downloads-item--info {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
}

@media (min-width: 720px) {
  .downloads-item--info {
    margin-top: 0;
  }
}

.downloads-item--remove-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: {{ settings.color_text | color_modify: 'alpha', 0.2 }};
  border-radius: 100%;
  transition: transform 125ms cubic-bezier(0.4, 0, 0.2, 1);
}

.downloads-item--remove-link:hover:before {
  transform: scale(1.1);
}

.downloads-item--remove-link svg {
  position: relative;
  display: block;
  fill: currentColor;
}



@media (max-width: 1023px) and (min-width: 860px) {
  .downloads-item--content {
    margin-bottom: {{ space_large | divided_by: 16.0 | append: 'rem' }};
  }
}

.downloads-item--content {
  padding-left: {{ space_medium | divided_by: 16.0 | append: 'rem' }};
}


.downloads-item--content svg {
  height: 0.625rem;
  width: 0.625rem;
}

.downloads-item--content--title {
  font-size: 16px !important;
  color: var(--color-base);
  cursor: pointer;
  margin-top: 0;
  margin-bottom: {{ space_xx_small | divided_by: 16.0 | append: 'rem' }};
  color: {{ settings.color_headings }};
}

.downloads-item--content--title a {
  color: currentColor;
  text-decoration: none;
}

.downloads-item--content--part-name
{
  line-height: 1.5;
  font-size: var(--font-size-body-smaller);
  color: {{ settings.color_text | color_modify: 'alpha', 0.8 }};
}

.downloads-item--content--part-name a {
  @extend .animation-underline
  color: currentColor;
  text-decoration: none;
}
  
.downloads-item--content--part-dl
{
  line-height: 1.5;
  font-size: var(--font-size-body-smaller);
  color: {{ settings.color_text | color_modify: 'alpha', 0.8 }};
}

.downloads-item--content--part-dl a {
  color: currentColor;
  text-decoration: none;
}