HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers95/rentman.io/resources/assets/sass/kms/attributes/_componentsArea.scss
.c-components-area {
  padding: 60px;
  background: linear-gradient($backgroundGradient);
  box-shadow: inset 0px 15px 15px -15px rgba(0, 0, 0, 0.15)
}

.c-components-area__main{
  width: 100%;
  max-width: 1000px;
  margin: auto;

  &.hide-background-options{
    .entity-attribute.is-background-option{
      display: none;
    }
  }
}

.c-components-area__buttons {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

//TODO: Test this on IE
.c-components-area__grid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
}

.c-components-area__label {
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.4px;
  color: $gray;
  font-weight: bold;
}

.c-components-area-button {
  position: relative;
  z-index: 2;
  @include flex(space-between, center);
  padding: 15px 10px 15px 15px;
  background: white;
  cursor: pointer;

  > * {
    pointer-events: none;
    user-select: none;
  }

  &:before {
    content: '';
    position: absolute;
    left: 80px;
    top: 5px;
    display: block;
    width: 1px;
    height: calc(100% - 10px);
    background-color: $lightGray;
    opacity: 0.75;
  }

  &:after{
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15);
    opacity: 1;
    transition: opacity 0.4s;
  }

  &:hover{
    &:after{
      opacity: 0.2;
    }
  }
}

.c-components-area-button__icon {
  width: 50px;

  img {
    width: 100%;
  }
}

.c-components-area-button__label {
  margin-top: 2px;
  width: calc(100% - 80px);
  font-size: 14px;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.4px;
  color: mix($iconColor, $gray);

}