.component.quick-access.section {
  padding-top: 16px;
  padding-bottom: 16px;
}

.component.quick-access::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(#317FCB), to(#00529F));
  background: -webkit-linear-gradient(top, #317FCB 0%, #00529F 100%);
  background: linear-gradient(180deg, #317FCB 0%, #00529F 100%);
  width: 80%;
  height: 100%;
  z-index: -1;
}

@media screen and (max-width: 767.98px) {
  .component.quick-access::before {
    width: 100vw;
    left: -12px;
    height: 30%;
  }
}

.component.quick-access .component-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767.98px) {
  .component.quick-access .component-content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.component.quick-access .component-content .title-container {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767.98px) {
  .component.quick-access .component-content .title-container {
    width: 100%;
  }
}

.component.quick-access .component-content .title-container h2 {
  margin-left: 24px;
  font-size: 36px;
  line-height: 40px;
  color: white;
  margin-top: 8px;
  margin-bottom: 8px;
}

@media screen and (max-width: 991.98px) {
  .component.quick-access .component-content .title-container h2 {
    font-size: 36px;
    line-height: 40px;
    margin-left: 0px;
  }
}

@media screen and (max-width: 767.98px) {
  .component.quick-access .component-content .title-container h2 {
    font-size: 24px;
    line-height: 30px;
  }
}

.component.quick-access .component-content .list-container {
  width: 75%;
}

@media screen and (max-width: 767.98px) {
  .component.quick-access .component-content .list-container {
    width: 100%;
  }
}

.component.quick-access .component-content .list-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.component.quick-access .component-content .list-container ul li {
  width: 50%;
  padding: 8px;
}

@media screen and (max-width: 991.98px) {
  .component.quick-access .component-content .list-container ul li {
    width: 100%;
  }
}

.component.quick-access .component-content .list-container ul li .scLooseFrameZone {
  overflow: visible;
}

.component.quick-access .component-content .list-container ul li .item-content {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 5px 10px 0 rgba(51, 59, 69, 0.25);
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: visible;
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.component.quick-access .component-content .list-container ul li .item-content::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 0px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: #9BCF10;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.component.quick-access .component-content .list-container ul li .item-content .link-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 1;
}

.component.quick-access .component-content .list-container ul li .item-content .link-container a {
  position: absolute;
  font-size: 0px;
  width: 100%;
  height: 100%;
}

.component.quick-access .component-content .list-container ul li .item-content .image-container {
  width: 80px;
  height: 80px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 8px;
  position: relative;
}

.component.quick-access .component-content .list-container ul li .item-content .image-container .field-image {
  width: 100%;
  height: 100%;
  padding: 16px;
  opacity: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.component.quick-access .component-content .list-container ul li .item-content .image-container .field-image img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}

.component.quick-access .component-content .list-container ul li .item-content .image-container .field-imagehover {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 16px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.component.quick-access .component-content .list-container ul li .item-content .image-container .field-imagehover img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}

.component.quick-access .component-content .list-container ul li .item-content .description-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-column-align: center;
  justify-items: center;
  padding: 16px;
  position: relative;
  padding-left: -webkit-calc(16px + 8px);
  padding-left: calc(16px + 8px);
}

.component.quick-access .component-content .list-container ul li .item-content .description-container .description-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.component.quick-access .component-content .list-container ul li .item-content .description-container .description-text span:not(.scChromeData) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.component.quick-access .component-content .list-container ul li .item-content .description-container .description-text br {
  display: none;
}

.component.quick-access .component-content .list-container ul li .item-content .description-container::before {
  content: "";
  position: absolute;
  height: -webkit-calc(100% + 16px);
  height: calc(100% + 16px);
  top: -8px;
  left: 0px;
  width: 1px;
  background-color: #C8CBCD;
  opacity: 0.6;
}

body.on-page-editor .component.quick-access .component-content .list-container ul li .item-content .link-container {
  visibility: hidden;
}

body.on-page-editor .component.quick-access .component-content .list-container ul li .item-content .image-container .field-imagehover {
  visibility: hidden;
}

body:not(.on-page-editor) .component.quick-access .component-content .list-container ul li .item-content:hover {
  box-shadow: 0 8px 15px 0 rgba(51, 59, 69, 0.4);
}

body:not(.on-page-editor) .component.quick-access .component-content .list-container ul li .item-content:hover::before {
  opacity: 1;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 6px;
}

body:not(.on-page-editor) .component.quick-access .component-content .list-container ul li .item-content:hover .description-container .description-text {
  color: #9BCF10;
}

body:not(.on-page-editor) .component.quick-access .component-content .list-container ul li .item-content:hover .image-container .field-image {
  opacity: 0;
}

body:not(.on-page-editor) .component.quick-access .component-content .list-container ul li .item-content:hover .image-container .field-imagehover {
  opacity: 1;
}
