/*------------------------------------*\
  #Root
\*------------------------------------*/

:root {
  --Primary-color: #052F66;
  --Primary-hover-color: #04295a;
  --Secondary-color: #f4b334;
  --Secondary-hover-color: #f3ae28;
  --Tertiary-color: #00a1e1;

  --Text-color: #333333;

  --Button-color: var(--Secondary-color);
  --Button-hover-color:
    /* Button hover colors */
  ;

  /* Neutral Colors */
  --White-color: #fff;
  --Black-color: #333;
  --Grey-color: #E6E5ED;

  --Danger-color: #C91D2B;
  --Danger-hover-color: #be1b29;

  --Border-default: 1px solid #e6e5edb0;
  --Box-background: #e6f6fc;
  --Box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
  --Box-shadow-default: 0 10px 30px 0 rgba(5, 47, 102, .1);
}

/*------------------------------------*\
  #BASE
\*------------------------------------*/
/* Base */

/* Buttons */
.catfish-button,
.button,
a {
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}

.catfish-button,
.button {
  font-weight: 600;
  border: var(--Border-default);
}

div:not(.headermenu) .button {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

p.back-link a {
  background-color: transparent;
  border: 1px solid var(--Primary-color);
  color: var(--Primary-color);

  &:hover {
    background-color: var(--Primary-color);
    color: var(--White-color) !important;
  }
}

#deleteall {
  background-color: var(--Danger-color);
  color: var(--White-color);

  &:hover {
    background-color: var(--Danger-hover-color);
  }
}

#continueshoppingDummy,
.is-outlined,
.catfish-button.is-outlined {
  background-color: transparent;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  border-color: var(--Primary-color);
  color: var(--Primary-color);

  &:focus,
  &:hover,
  &:active {
    border: 2px solid var(--Primary-hover-color);
    background-color: var(--Primary-hover-color);
    color: #fff;
  }
}

/* List */
.forgot-password a,
p:not(.back-link) a,
section:not(.breadcrumb-section) li a {
  color: var(--White-color);
  position: relative;
  display: inline;
  line-height: 20px;
}

.forgot-password a::after,
p:not(.back-link) a::after,
section:not(.breadcrumb-section) li a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  transition: transform 0.25s ease-out;
  background-color: var(--Tertiary-color);
  -webkit-transition: transform 0.25s ease-out;
  -moz-transition: transform 0.25s ease-out;
  -ms-transition: transform 0.25s ease-out;
  -o-transition: transform 0.25s ease-out;

}

.forgot-password a:hover,
p:not(.back-link) a:hover,
section:not(.breadcrumb-section) li a:hover {
  color: var(--Tertiary-color) !important;
  text-decoration: none;
}

.forgot-password a:hover::after,
p:not(.back-link) a:hover::after,
section:not(.breadcrumb-section) li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom center;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
}

.section.has-background-custom-1:not(.breadcrumb-section) {

  p:not(.back-link) a::after,
  li a::after {
    background-color: var(--White-color);
  }

  p:not(.back-link) a:hover,
  li a:hover {
    color: var(--White-color) !important;
  }
}

.section .style-custom-2 {

  p:not(.back-link) a,
  li a {
    color: var(--Primary-color);
  }

  p:not(.back-link) a::after,
  li a::after {
    background-color: var(--Tertiary-color);
  }

  p:not(.back-link) a:hover,
  li a:hover {
    color: var(--Tertiary-color) !important;
  }
}

/* Typography */
h1.title.is-1,
.hero-body h1.title{
  font-size: 3.125rem;
}

h3.title{
  font-size: 2.5rem;
  color: var(--Primary-color);
}

/*------------------------------------*\
  #UTILITIES
\*------------------------------------*/
.has-background-custom-1 {
  background-color: var(--Tertiary-color) !important;
}

.has-background-custom-2 {
  background-color: #fdf0d6 !important;
}

.style-custom-2 {
  background-color: var(--Box-background);
}

/* General */
.has-box-shadow {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px,
    rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px,
    rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

.has-border-radius {
  border-top-left-radius: 32px;
  border-bottom-right-radius: 32px;
}

/* Font list */
.ict-list.icon-list {
  list-style: none;
  padding-left: 0;
}

.ict-list.icon-list li {
  position: relative;
  margin-bottom: .75rem;
  padding-left: .5rem;
}

.ict-list.icon-list li::before {
  font-family: "FontAwesome";
  content: "\f058";
  position: absolute;
  color: var(--Primary-color);
  font-weight: 400;
  left: 0;
  top: 0;
  margin-left: -1rem;
}

/* Background */
.primary-background-square .columns,
.tertiary-square-bottom .columns {
  position: relative;
}

.primary-background-square .column::after,
.tertiary-square-bottom .column::before{
  content: '';
  position: absolute;
  width: 97%;
  height: 115%;
  max-height: 500px;
  border-top-left-radius: 32px;
  border-bottom-right-radius: 32px;
  z-index: -5;
}

.primary-background-square .column::after {
  background-color: var(--Secondary-color);
  left: .8rem;
  top: -2rem;
}

.tertiary-square-bottom .column::before {
  background-color: var(--Tertiary-color);
  left: 1.5rem;
  top: -1rem;
}

@media screen and (max-width:1087px) {
  .primary-background-square .column::after {
    top: -1rem;
  }

  .tertiary-square-bottom .column::before {
    top: 0rem;
  }

  .tertiary-square-bottom .column::before,
  .primary-background-square .column::after{
    height: 105%;
  }
}

@media screen and (max-width:767px){
  section.section.is-large.primary-background-square{
    padding-bottom: 6rem !important;
  }

  .tertiary-square-bottom .column::before,
  .primary-background-square .column::after{
    width: 100%;
    left: 0;
  }

  .primary-background-square .columns.is-variable.is-4>.column{
     padding: 2rem;
  }
}

/*------------------------------------*\
  #COMPONENTS
\*------------------------------------*/

/* Sections */
.section.has-container-fullwidth .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0;
  max-width: 100%;
}

/* Trust Indicator */
.trust-indicator-template {

  .block.is-content-width {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .block:first-of-type {
      width: 128px;
      height: 128px;
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      background: var(--Primary-color);
      border-radius: 100%;
    }

    .ict-image.image {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 96px;
      width: 96px;
    }


    h3 {
      margin-bottom: .75rem;
    }
  }
}

/* Video Banner */
section.video-banner {
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;

  .columns{
    justify-content: center;
  }
}

section.video-banner>.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 2;
}


.video-container-fill {
  min-width: 100%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  z-index: 0;
  height: 100%;
}

.video-container-fill video {
  object-fit: cover;
  display: inline-block;
  max-width: 100%;
  height: 50vh;
}

@media screen and (min-width: 1441px) {
  .video-container-fill video {
    height: 50vh;
  }
}

@media screen and (max-width: 750px) and (min-width: 426px) {
  .video-banner {
    background-image: none !important;
  }

  .video-container-fill {
    height: 50vh;
  }

  .video-container-fill video {
    height: 100%;
  }
}


.overlay {
  position: relative;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
}

/* Dynamic table */
.bespoke-table {

  thead th.col-header,
  td.col-item{
    border: 1px solid var(--Primary-color);
  }

  tbody{
    border-bottom: 1px solid var(--Primary-color);
  }

  thead th.col-header:first-child{
    border-right-color: var(--Grey-color);
  }

  thead th.col-header:not(:first-child, :last-child){
    border-left-color: var(--Grey-color);
    border-right-color: var(--Grey-color);
  }

  thead th.col-header:last-child{
    border-left-color: var(--Grey-color);
  }

  /* Link */

  a.link span:last-child{
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;

    &:hover,
    &:focus,
    &:active{
      text-decoration: underline;
    }
  }
}

/* Admin Components */

/* Accordion */
.accordion-columns {

  .button.accordion-title {
    background: var(--Primary-color);
    color: var(--Secondary-color);

    i {
      color: var(--White-color) !important;
    }
  }
}

#delivery-countdown-banner{
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

/* Product Cards */
.product-grid,
.category-product-section,
.homeFeaturedProductsWrapper {

  .listWrapper {
    gap: 1rem;
  }

  @media screen and (min-width: 1088px) {
    .listItem.column {
      width: 23%;
    }
  }

  @media screen and (max-width: 1087px) and (min-width: 601px) {
    .listWrapper {
      justify-content: center;
    }

    .listItem.column {
      width: 48%;
    }
  }

  @media screen and (max-width: 600px) {
    .listWrapper {
      justify-content: center;
    }

    .listItem.column {
      width: 90%;
    }
  }

  .listWrapper .listItem {
    border-top-left-radius: 32px;
    border-bottom-right-radius: 32px;
    padding: 0;

    .catfish-default-product-box {
      transition: .3s;
      -webkit-transition: .3s;
      -moz-transition: .3s;
      -ms-transition: .3s;
      -o-transition: .3s;
      border-top-left-radius: 32px;
      border-bottom-right-radius: 32px;
      transform: translateY(0);
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);

      &:hover {
        box-shadow: var(--Box-shadow);
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
      }
    }

    .catfish-default-product-box .product-item--info {
      background-color: var(--Primary-color);
      padding: 1.5rem;
      padding-top: 1.5rem !important;
    }

    .catfish-default-product-box:hover .add-info {
      border-top-left-radius: 32px;
    }

    .catfish-default-product-box img {
      opacity: 1;
    }

    .catfish-default-product-box:hover img {
      opacity: .7;
    }

    a {
      color: var(--White-color);
    }

    img {
      border-top-left-radius: 32px;
    }

    .product-item--info {
      border-bottom-right-radius: 32px;
    }

    .add-info .pricerow .catfish-button:last-of-type {
      background-color: transparent;
      border: 1px solid var(--White-color);
      color: var(--White-color);

      &:hover {
        background-color: var(--Tertiary-color);
        color: var(--White-color);
        border-color: var(--Tertiary-color);
      }
    }

    .product-item--content {
      color: var(--White-color);
    }

    .productlistaddtocartbutton {
      border-color: var(--Secondary-color);
    }
  }
}

/* Pager */
.pager{
  margin-top: 3rem;

  span{
    background-color: var(--Primary-color);
    color: var(--Secondary-color);
    border-color: var(--Primary-color);

    &:hover{
      color: var(--Secondary-hover-color);
    }
  }

  a{
    border-color: var(--Primary-color);
    color: var(--Primary-color);

    &:hover{
      border-color: var(--Tertiary-color);
      color: var(--Tertiary-color);
    }
  }
}


/* Breadcrumbs */
.breadcrumb-section {

  li a:hover {
    color: var(--Tertiary-color);
  }

  li:last-of-type a {
    text-decoration: underline;
    color: var(--Primary-color);
  }
}

/* Category Cards */
.sub-category-grid .listWrapper .listItem,
.homePageCategories .listWrapper .listItem {
  /* width: 33.333333%;

  @media screen and (max-width: 1087px) and (min-width: 601px) {
    width: 50%;
  } */

  @media screen and (max-width: 600px) {
    width: 100%;
  }

  .item-box,
  .small-product-item {
    border-top: none;
    max-height: 350px;
    height: 100%;
    position: relative;
    transition: all .3s;
    border-top-left-radius: 32px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 32px;
    border-bottom-left-radius: 0px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    cursor: pointer;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);

    &:hover {
      transform: translateY(-5px);
      -webkit-transform: translateY(-5px);
      -moz-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
      -o-transform: translateY(-5px);
    }
  }

  .item-box:hover .sub-category-item,
  .small-product-item:hover {
    box-shadow: var(--Box-shadow);
  }

  .item-box .sub-category-item .category-title,
  .small-product-item .category-item .product-title {
    padding: 1rem;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    background-color: var(--Primary-color);
    text-align: center;

    a {
      color: var(--Secondary-color) !important;
      text-align: center;
      font-weight: 600;
      font-size: 1.2rem;
    }
  }

  .small-product-item .category-item:hover .product-title {
    background-color: var(--Primary-color);
  }


  .item-box .sub-category-item .picture::after,
  .small-product-item .category-item .picture::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
  }

  .item-box:hover .sub-category-item .picture::after,
  .small-product-item:hover .category-item .picture::after {
    background-color: rgba(255, 255, 255, 0.3);
    opacity: .7;
    scale: 1;
  }

  @media screen and (min-width: 1088px) {
    .small-product-item .category-item .homepage-category-details-button {
      opacity: 0;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      display: block !important;
      visibility: hidden;
      -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
      -moz-transition: opacity 0.3s ease, visibility 0.3s ease;
      -ms-transition: opacity 0.3s ease, visibility 0.3s ease;
      -o-transition: opacity 0.3s ease, visibility 0.3s ease;
      position: absolute;
      top: 45%;
      left: 50%;
      transform: translate(-50%, -45%);
      color: var(--White-color);
      background-color: var(--Primary-color);
      font-size: 0.9375rem;
      padding: 0.625rem 0.625rem;
      width: 50%;
      text-align: center;
      border-radius: 5px;
      -webkit-transform: translate(-50%, -45%);
      -moz-transform: translate(-50%, -45%);
      -ms-transform: translate(-50%, -45%);
      -o-transform: translate(-50%, -45%);
    }
  }
}

.ui-dialog {
  .ui-dialog-titlebar {
    border-bottom: 2px solid var(--Tertiary-color);
    background-color: var(--Primary-color);

    .ui-dialog-title {
      font-weight: 700;
      color: var(--Secondary-color);
    }

    .ui-button-icon-primary{
      background-color: var(--Secondary-color);

      &:hover{
        background-color: var(--Secondary-hover-color);
      }
    }
  }

  .ui-button {
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
  }

  .ui-dialog-buttonpane {
    background-color: var(--White-color);
    border-top: none;

    .ui-button.ui-widget:nth-child(2) {
      background-color: transparent;
      border: 2px solid var(--Danger-color);
      color: var(--Danger-color);

      &:hover,
      &:focus,
      &:active {
        background-color: var(--Danger-hover-color);
        color: var(--White-color);
      }
    }
  }
}

.dialog {
  .modal-card-head {
    border-bottom: 2px solid var(--Tertiary-color);
    background-color: var(--Primary-color);

    .modal-card-title {
      color: var(--Secondary-color);
    }

    .delete{
      background-color: var(--Secondary-color);

      &:hover{
        background-color: var(--Secondary-hover-color);
      }
    }
  }

  .modal-card-foot {
    background-color: var(--White-color);
    border-top: none;

    .button.is-light {
      background-color: transparent;
      border: 2px solid var(--Danger-color);
      color: var(--Danger-color);

      &:hover,
      &:focus,
      &:active {
        background-color: var(--Danger-hover-color);
        color: var(--White-color);
      }
    }

    .button.is-primary{
      background-color: var(--Secondary-color);
      color: var(--Text-color);

      &:hover,
      &:focus,
      &:active {
        background-color: var(--Secondary-hover-color);
      }
    }
  }
}

/*------------------------------------*\
  #LAYOUTS
\*------------------------------------*/
/* Header */
.navbar {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;

  a.navbar-item,
  a.navbar-link {
    color: var(--Primary-color);

    &:hover,
    &:focus,
    &.active {
      color: var(--Tertiary-color);
    }
  }

  @media screen and (min-width: 1087px) {
    .navbar-dropdown {
      box-shadow: var(--Box-shadow-default);
      background: var(--Primary-color);
      border-top: 0;
      border-radius: 12px;
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
      -webkit-transition: opacity 0.3s ease, transform 0.3s;
      -moz-transition: opacity 0.3s ease, transform 0.3s;
      -ms-transition: opacity 0.3s ease, transform 0.3s;
      -o-transition: opacity 0.3s ease, transform 0.3s;
      display: block;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-21px);

      a.navbar-item {
        color: var(--White-color);

        &:focus,
        &:hover,
        &.active {
          background-color: var(--Primary-color-hover);
          color: var(--Secondary-color);
        }
      }
    }

    .navbar-item.has-dropdown:hover {
      .navbar-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: var(--Box-shadow);
      }
    }
  }

  .navbar-group{

    a i{
      font-weight: 700;
      color: var(--Primary-color);
    }

    .navbar-burger span{
      background-color: var(--Primary-color);
    }
  }

  @media screen and (min-width: 1088px) {
    .navbar-link:not(.is-arrowless)::after{
      border-color: var(--Primary-color);
    }

    .navbar-item:hover .navbar-link:not(.is-arrowless)::after{
      border-color: var(--Tertiary-color);
    }

    /* Icons */

    .navbar-item .button.is-small {
      font-size: 1.1em;
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .navbar-item .button:first-child {
      padding-left: 1rem;
      padding-right: 1.25rem;
    }

    .navbar-item .button {
      padding-left: 1rem;
      padding-right: 1rem;
      border-radius: 100%;
      background: var(--Secondary-color);
      transition: all .3s;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -ms-transition: all .3s;
      -o-transition: all .3s;

      &:hover {
        background: var(--Primary-color);

        i {
          color: var(--White-color);
        }
      }
    }

    .navbar-item i {
      font-size: 1em;
      font-weight: 700;
      color: var(--Primary-color);
    }

    .badge {
      background-color: var(--Primary-color);
    }
  }

  @media screen and (max-width: 1087px) {
    .navbar-menu{
      background-color: var(--Primary-color);
      box-shadow: var(--Box-shadow);

      a.navbar-item, .navbar-link{
        color: var(--White-color);
      }

      .navbar-link:not(.is-arrowless)::after {
        border-color: var(--White-color);
      }
    }
  }

  @media screen and (max-width: 400px) {
    .is-header-logo {
      height: 2.5rem;
    }
  }
}

.nav-search-container {
  background-color: var(--Primary-color);
}

/* Footer */
.ict-dedicated-footer {
  padding-top: 3rem;
  padding-bottom: 1.5rem;

  .columns.is-variable.is-4>.column {
    padding: 2rem;
  }

  p a,
  .ict-list li a {
    color: var(--White-color);
    position: relative;
    display: inline;
    line-height: 20px;
  }

  p a::after,
  .ict-list li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    transition: transform 0.25s ease-out;
    background-color: var(--Tertiary-color);
    -webkit-transition: transform 0.25s ease-out;
    -moz-transition: transform 0.25s ease-out;
    -ms-transition: transform 0.25s ease-out;
    -o-transition: transform 0.25s ease-out;

  }

  p a:hover,
  .ict-list li a:hover {
    color: var(--Tertiary-color) !important;
    text-decoration: none;
  }

  p a:hover::after,
  .ict-list li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom center;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
  }

  .image.dedicated-footer-logo img {
    height: 6rem;
  }

  .ict-dedicated-footer-column-4 {
    width: 100%;
    border-top: 1px solid var(--Tertiary-color);
    display: flex;
    justify-content: center;

    .ict-social-links {
      gap: .75rem;
    }

    .icon.is-medium {
      height: 3rem;
      width: 3rem;
    }

    .ict-social-links li {
      transition: .2s;
      -webkit-transition: .2s;
      -moz-transition: .2s;
      -ms-transition: .2s;
      -o-transition: .2s;
      background-color: var(--Secondary-color);
      border-radius: 100%;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      -ms-border-radius: 100%;
      -o-border-radius: 100%;
      color: var(--Primary-color);

      &:hover {
        background-color: var(--White-color);
      }
    }

    .ict-list {
      display: flex !important;
      gap: 1rem;
      margin-top: 1.5rem;
      flex-direction: column;

      @media screen and (min-width: 1088px) {
        flex-direction: row;
      }
    }

    .ict-list li {
      position: relative;
      padding-left: .5rem;
      padding-right: .5rem;

      &:not(:last-of-type)::before {
        content: '';
        width: 100%;
        height: 1px;
        background-color: #e6e5ed80;
        position: absolute;
        left: 0;
        bottom: -0.5rem;
      }

      @media screen and (min-width: 1088px) {
        &:not(:last-of-type)::before {
          width: 1px;
          height: 50%;
          right: -0.5rem;
          top: .5rem;
          left: unset;
          bottom: unset;
        }
      }

      a {
        font-size: 1.2rem;
      }
    }
  }

  .footer-copyright {
    margin-top: 2rem;
  }

  @media screen and (min-width: 768px) {
    .columns.is-variable.is-4>.column {
      width: 33.333333%;
    }

    .columns.is-variable.is-4>.column:nth-child(2) .footer-column-content {
      display: flex;
      justify-content: center;
    }

    .columns.is-variable.is-4>.column:nth-child(3) .footer-column-content {
      display: flex;
      justify-content: flex-end;
    }

    .columns.is-variable.is-4>.column:last-child {
      width: 100%;
    }
  }

  @media screen and (max-width: 1087px) {
    .columns.is-variable.is-4>.column:nth-child(4) .footer-column-content li {
      text-align: center;
    }
  }

  @media screen and (max-width: 767px) {
    .columns.is-variable.is-4>.column:not(:nth-last-child(2)) {
      padding-bottom: 0rem;
    }

    .dedicated-footer-logo,
    .colummn:not(:last-child) .footer-column-content {
      display: flex;
      justify-content: center;
    }

    .footer-column-content,
    .footer-column-content li {
      text-align: center;
    }

    .footer-copyright {
      text-align: center;
    }
  }
}

/* Sections */
@media screen and (max-width: 1087px){
    section.additional-description-section,
    section.related-products-section,
    .block.block-account-navigation,
    .account-page{
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

@media screen and (max-width: 767px){
    section.section.is-large,
    .homeFeaturedProductsWrapper,
    .ict-dedicated-footer{
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    section.additional-description-section,
    section.related-products-section,
    .block.block-account-navigation,
    .account-page{
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
}

/*------------------------------------*\
  #ADMIN PAGES
\*------------------------------------*/

/* Category pages */
.hero.category-hero-section {
  background-color: transparent;

  .hero-body {
    padding: 1.5rem 0;
  }

  h1.title {
    color: var(--Primary-color);
  }

  .homeFeaturedProductsWrapper {
    padding: 3rem;
  }
}

.arone-category-page.has-product-title {

  .category-product-section .product-grid .listWrapper {
    margin-top: 3rem;
    position: relative;

    &::after {
      content: 'Featured Products';
      font-family: FedraSansPro-Bold;
      font-size: 2.074em;
      font-weight: 600;
      color: var(--Primary-color);
      text-align: center;
      position: absolute;
      top: -6rem;
      left: 0;
      width: 100%;
    }
  }

}

/* Product Pages */
.arone-product-landing-page {

  .breadcrumb-section+.product-info-section{
    padding-top: 1.5rem;
  }

  @media screen and (min-width: 1088px) {
    .columns.is-variable.is-8-desktop>.details-wrapper{
      padding-top: 1rem;
    }
  }
  
  h1.title {
    font-size: 3.125rem;
    color: var(--Primary-color);
    margin-bottom: 0.75rem;
  }

  .short-description-wrapper {
    font-family: KhmerUI;
    padding-bottom: 1.5rem;
  }

  .short-description-wrapper,
  .add-to-cart-wrapper:has(#multiProductCustomProduct){
    border-bottom: 2px solid hsl(248 30% 95% / 1);
  }

  .product-variant-line > .block{
    margin-bottom: 1.5rem;
  }

  .custom-product-form{

    @media screen and (min-width: 600px ) {
      display: flex;
      align-items: center;

      .field.level{
        flex: 1;
        margin-bottom: 0;
      }
    }
  
    .control label{
      font-weight: 600;
    }

  }

  .productPrice.title {
    font-size: 2.5rem;
    color: var(--Primary-color);
  }

  #multiProductCustomProduct {
    margin-bottom: 0;

    input{
      margin-bottom: 0;
    }

    .button.dynamic_product_start {
      background-color: var(--Primary-color);
      color: var(--White-color);

      &:hover {
        background-color: var(--Primary-color-hover) !;
      }
    }
  }

  .ict-accordion.block{
    
    a.link{
      display: flex;
      align-items: center;
      padding: 1rem;
      max-width: 200px;
      justify-content: center;
      background: var(--White-color);
      box-shadow: var(--Box-shadow-default);
      border-radius: 12px;
      border: 1px solid transparent;

      &:hover{
        border-color: var(--Primary-color)
      }
      
      span{
        font-weight: 700;
        color: var(--Primary-color);
        margin-left: .5rem;
      }
    }

    a.link:not(:last-child){
      margin-bottom: .5rem;
    }
  }
}

/* Global Attribute */
.strap-label-warning .product-variant-list .product-variant-line{

  .attribute.name_Laminating{
    position: relative;
    margin-bottom: 1.5rem !important;

    &::before{
      content: 'Laminate reduces the ability to tear strap labels';
      position: absolute;
      bottom: -1.5rem;
      left: 0;
      height: auto;
      width: 100%;
      color: var(--Primary-color);
      font-size: .75rem;
      text-align: right;
    }
  }
}

/* Multipart */
.multipartUi-V2-wrapper {

  .back-button a {
    background-color: var(--Secondary-color);
  }

  .product-title {
    color: var(--Primary-color) !important;
  }

  .product-attributes-box {
    background-color: var(--Primary-color);
    color: var(--White-color);

    i {
      color: var(--White-color);
    }

    .is-spacer-line {
      background-color: var(--Tertiary-color);
    }
  }

  .multipartUi-V2-UploadsArea .box {
    background: var(--Box-background);
    box-shadow: var(--Box-shadow-default) !important;

    h2 {
      margin-bottom: .75rem;
    }

    .mb-2 {
      margin-bottom: 1.5rem !important;
    }

    .file.is-boxed .file-cta {
      border: dashed 2px var(--Primary-color);
    }
  }

  .upload-status-container {

    .button {
      background-color: var(--Primary-color);
    }

    i {
      color: var(--Secondary-color);
    }
  }

  .section {

    .button {
      background-color: var(--Secondary-color);
      color: var(--Text-color);
    }

    #multipart-new-preview {
      background-color: var(--Box-background);
      box-shadow: var(--Box-shadow-default) !important;
    }

    .completed-list {
      .button {
        background-color: var(--Primary-color);
      }

      i {
        color: var(--Secondary-color);
      }
    }
  }
}

/* Mega Edit */
.addtoBasketScreenContainer h1::before,
.loadingScreen .loadingLogo::before {
  content: "";
  /* Change the mega edit image here using the same naming structure on CSS  override */
  background: url("/00000000-0000-0000-0000-000000000000/Handler/CSSOverride/GetImage/3/ME_Logo.png");
  width: 14rem;
  height: 50%;
  position: absolute;
  top: -4rem;
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.loadingScreen .fa-cog,
.addtoBasketScreen .fa-spinner {
  border-right-color: var(--Secondary-color);
}

.loadingScreen .ME_loading_hints ul li {
  border-color: var(--Tertiary-color);
}

#addToBasketScreenMsg,
.loadingScreen .ME_loading_hints ul li,
.ME_loading_hints ul li::before,
.loadScreenStepIndicator {
  color: var(--White-color) !important;
}

.addtoBasketScreen .addtoBasketScreenContainer>h1::before {
  top: -2rem;
  width: 14rem;
  transform: translateX(25%);
  -webkit-transform: translateX(25%);
  -moz-transform: translateX(25%);
  -ms-transform: translateX(25%);
  -o-transform: translateX(25%);
}

.loadingScreen .loadingSpinner,
.addtoBasketScreen .loadingSpinner {
  position: relative;
  top: 5rem;
}

.loadingScreen .loadingLogo .loadScreenStepIndicator,
.addtoBasketScreen .loadingArea__loadScreenStepIndicator {
  font-size: 1.5rem;
  margin-top: 2rem;
}

/* Basket Page */
.shoppingcart__wrapper {

  h1.title {
    font-size: 3.125rem;
    color: var(--Primary-color);
  }

  .cartform .cartTableWrapper .cart tr.cart-item-row {
    border: var(--Border-default);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background-color: transparent;
  }

  .cart-footer .cart-footer__container {
    border-color: var(--Primary-color);
  }
}

/* Checkout Complete */
.checkout__complete{

  h1.title {
    font-size: 2.5rem;
    color: var(--Primary-color);
  }
}

/* Search */
.search-panel {

  h1.title {
    font-size: 3.125rem;
    color: var(--Primary-color);
  }

  .advanced-search {
    background-color: transparent;
    box-shadow: var(--Box-shadow-default);
    border: var(--Border-default);
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
  }
}

/* Login pages */
.login__wrapper {
  padding-top: 3rem;

  h1.title {
    font-size: 3.125rem;
    color: var(--Primary-color);
    margin-bottom: 3rem;
  }

  .returning-wrapper .returning-wrapper__inner {
    background-color: var(--Primary-color);
    color: var(--White-color);

    .forgot-password a {
      color: var(--Tertiary-color);
    }
  }

  .register-customer-wrapper {
    outline: var(--Border-default);
    border-radius: 12px;

    .table-container--register {
      margin-bottom: 0;
    }
  }

  .new-wrapper{

    .table-container--register tr label,
    .table-container--register tr a,
    .table-container tr .item-name label{
      font-weight: 600;
    }

    .table-container--register tr label,
    .table-container--register tr a{
      color: #717171;
    }

    .table-container--register tr a{
      text-decoration: underline;

      &:hover{
        color: var(--Tertiary-color);
      }
    }
  }
}

/*------------------------------------*\
 #CHECKOUT STEPS
\*------------------------------------*/
.one-page-checkout {

  .step-title h2 {
    font-family: FedraSansPro-Bold;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--Primary-color);
  }
}

.advanced-select {
  .item {
    border-bottom: 1px solid var(--Tertiary-color);
  }

  .footer-controls {
    background-color: var(--Primary-color);
    box-shadow: var(--Box-shadow);

    .action-button-wrapper .button {
      background-color: var(--Secondary-color);
      color: var(--Text-color);

      &:hover {
        background-color: var(--Secondary-hover-color);
      }
    }
  }
}

.advanced-select.is-extended .item-list {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  background-color: var(--Primary-color);

  button.button.is-outlined {
    border: none;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;

    &:hover {
      background-color: var(--Secondary-color) !important;
      border: none !important;

      span.text {
        color: var(--Text-color);
      }
    }
  }

  span.text {
    color: var(--White-color);
  }
}

/* Shipping Method */
.one-page-checkout #opc-shipping_method .shipping-options {
  background-color: transparent;

  .shipping-options__list .shipping-option-item label {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border: var(--Border-default);
  }

  .shipping-option-item input:checked+label {
    background-color: var(--Primary-color);

    .ui-button-text {
      color: var(--White-color);
    }
  }

  .shipping-options__list .shipping-option-item input:checked+label:before {
    color: var(--Secondary-color);
  }

  .shipping-options__list .shipping-option-item input:checked+label:after {
    color: var(--Primary-color);
    border: 2px solid var(--Secondary-color);
    background: var(--Secondary-color);
  }
}

/* Order Summary */
.one-page-checkout .cartTableWrapper .cart tr.cart-item-row {
  border: var(--Border-default);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background-color: transparent;
}

/*------------------------------------*\
 #MY ACCOUNT PAGES
\*------------------------------------*/
.layout--accountPage {

  .account-page {

    .orders_v2_title.title,
    h1.title {
      font-size: 2.5rem;
      color: var(--Primary-color)
    }

    .savecustomerinfobutton {
      background-color: var(--Secondary-color);
      color: var(--Text-color);
    }
  }

  .address-item table tr.address-item-row,
  .account-page--myorders .order_page_filters,
  .account-page--customerinfo .customer__section,
  .account-page--changepassword .section-body {
    padding: 2rem;
    border: var(--Border-default);
    border-radius: 12px;
  }

  .address-item table tr.address-item-row {
    background-color: var(--White-color);
  }

  .account-page--orderline .section-body {
    .t-grid {
      border-radius: 12px;
      background-color: transparent;
    }

    .t-grid-toolbar {
      padding: 1.25rem .75rem;
      background-color: transparent;
    }
  }

  .account-page--orderline tbody tr.order-line-items-row{
    background-color: var(--Primary-color);
    color: var(--Secondary-color);

    .t-last a:hover{
      color: var(--Grey-color);
    }
  }

  .block-account-navigation {
    border: 1px solid var(--Primary-color);
    margin-top: 6rem;
    margin-bottom: 6rem;
    padding: 1.5rem;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;

    @media screen and (max-width: 1087px) {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    

    ul a.active {
      color: var(--Secondary-color);
    }

    ul a:hover {
      background-color: var(--Box-background);
      color: var(--Text-color);
    }
  }

  .account-page--order-details{

    .od_row--title .od_title.title{
      font-size: 2.5rem;
      color: var(--Primary-color);
    }

    #order_details_v2 .od_row--title .buttons{

      a{
        background-color: transparent;
      }

      a.od_print_button{
        border: 1px solid var(--Tertiary-color);
        color: var(--Tertiary-color);

        &:hover{
          background-color: var(--Tertiary-color);
          color: var(--White-color);
        }
      }

      a:last-child{
        border: 1px solid var(--Danger-color);
        color: var(--Danger-color);

        &:hover{
          background-color: var(--Danger-hover-color);
          color: var(--White-color);
        }
      }
    }

    #order_details_v2 .od_row.od_row--billing .od_half_row,
    #order_details_v2 .od_row.od_row--payment,
    #order_details_v2 .od_row.od_row--products,
    #order_details_v2 .od_row.od_row--price{
      border: var(--Border-default);
      border-radius: 12px;
      -webkit-border-radius: 12px;
      -moz-border-radius: 12px;
      -ms-border-radius: 12px;
      -o-border-radius: 12px;
    }

    #order_details_v2  .od_status{
      border: var(--Border-default);
      font-family: 'FedraSansPro-Bold';
    }

    #order_details_v2  .od_status.order_Canceled{
      background: hsl(359deg 100% 60% / 8%);
    }

    #order_details_v2  .od_status.order_Processing{
      background-color: hsl(59deg 100% 60% / 8%);
    }

    #order_details_v2 .od_status.order_Complete{
      background-color: hsl(148deg 100% 60% / 8%);
    }
  }

  .account-page--myorders .orders_v2 #filtered_orders .orders_row>.order_container,
  .account-page--myorders .orders_v2 #filtered_orders .order_products_list ul{
    box-shadow: none;
    border: var(--Border-default);
  }
}


/*------------------------------------*\
    #TOPIC PAGES
\*------------------------------------*/


/* Megaedit */

.page-dynamicproduct-editor .catfish-button.is-small,
.page-dynamicproduct-editor .button.is-small {
  padding: 0.5rem;
}

.page-dynamicproduct-editor .MEUIFormField .control .meuiNonLayout,
.page-dynamicproduct-editor .MEUIFormField .control .zoom-button {
  height: 100%;
}

.page-dynamicproduct-editor .AddImageToField span.no-image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
}

.Script_DynamicUiGeneration_New .fb-background-color-select .colorSelector {
  min-width: 100%;
}

/* --- CSS Mobile UX ---*/
.Script_DynamicUiGeneration_New .ItemsListBody .itemDetails {
  padding-left: 1rem;
  padding-right: 1rem;
}

.Script_DynamicUiGeneration_New_MobileUX .DynamicUiGeneration-mobile-ui-global {
  position: fixed;
  bottom: 4.5rem;
  z-index: 5;
  max-height: 0px;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0px;
  -webkit-transition: max-height 0.15s linear;
  -moz-transition: max-height 0.15s linear;
  -o-transition: max-height 0.15s linear;
  transition: max-height 0.15s linear;
  box-shadow: inset 0px -7px 19px -10px rgba(0, 0, 0, .2);
}

.Script_DynamicUiGeneration_New_MobileUX .DynamicUiGeneration-mobile-ui-global>.columns {
  padding: 1rem;
  padding-bottom: 2rem;
  margin: 0 !important;
}

.Script_DynamicUiGeneration_New_MobileUX .DynamicUiGeneration-mobile-ui-global.is-active {
  max-height: 70vh;
}

.Script_DynamicUiGeneration_New_MobileUX .eds-mobile-ux {
  position: fixed;
  bottom: 0px;
  width: 100%;
  z-index: 5;
  background: #fff;
  text-align: center;
  padding: 0rem;
  box-shadow: rgba(0, 0, 0, .3) 0px 0px 10px;
}

.Script_DynamicUiGeneration_New_MobileUX .eds-mobile-ux>.columns {
  padding: 0px;
  margin: 0px;
}

.Script_DynamicUiGeneration_New_MobileUX .eds-mobile-ux>.columns>.column {
  padding: 1rem;
  margin: 0px;
  border-bottom: solid 1px #eee;
}

.Script_DynamicUiGeneration_New_MobileUX .eds-mobile-ux-footer .toggle-fieldlist-button {
  border: none;
  background: transparent !important;
}

.Script_DynamicUiGeneration_New_MobileUX .eds-mobile-ux-footer .progress-bar-container {
  display: block;
}

.Script_DynamicUiGeneration_New_MobileUX .eds-mobile-ux-footer .progress-bar {
  position: relative;
  width: 100%;
  height: 1.5rem;
  border-radius: 0.75rem;
}

.Script_DynamicUiGeneration_New_MobileUX .eds-mobile-ux-footer .progress-bar .progress {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  display: block;
  height: 1.5rem;
}

.Script_DynamicUiGeneration_New_MobileUX .select-step-button .field-name {
  max-width: calc(100vw - 10rem) !important;
  overflow: hidden;
  text-overflow: ellipsis;
}

.Script_DynamicUiGeneration_New_MobileUX .select-step-button {
  padding: 1rem;
  margin-bottom: -0.5rem;
}

.Script_DynamicUiGeneration_New_MobileUX .column.actions-list {
  overflow: hidden;
  overflow-x: auto;
  border-right: solid 1px #eee;
  box-shadow: inset -7px 0px 26px -13px rgba(0, 0, 0, .2);
  min-height: 100%;
}

.Script_DynamicUiGeneration_New_MobileUX .column.actions-list.Variable-Input-Container {
  overflow: visible;
  overflow-x: visible;
  text-align: left;
}

.Script_DynamicUiGeneration_New .large-icon-vertical-button {
  padding: 0.5rem;
  height: 4rem;
  width: 4rem !important;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.Script_DynamicUiGeneration_New .large-icon-vertical-button span.fill_button {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.Script_DynamicUiGeneration_New .large-icon-vertical-button span.fill_button .check {}

.Script_DynamicUiGeneration_New .large-icon-vertical-button span.icon {
  display: block;
  margin: 0px !important;
  height: 1.8rem;
  line-height: 2rem;
  width: 100%;
}

.Script_DynamicUiGeneration_New .large-icon-vertical-button span.icon+.text {
  font-size: 0.75em;
  font-weight: bold;
  padding-top: 0.3rem;
}

.Script_DynamicUiGeneration_New .large-icon-vertical-button span.icon .fa-edit {
  margin-left: 0.2em;
}

.Script_DynamicUiGeneration_New .edit-mode-done-button {
  position: fixed;
  top: calc(50vh - 4rem);
  right: 1rem;
}

.Script_DynamicUiGeneration_New_MobileUX .column.eds-mobile-ux-header {
  position: fixed;
  top: 4rem;
  left: 0px;
  width: 100%;
  z-index: 9;
  padding: 0.5rem;
}

.Script_DynamicUiGeneration_New_MobileUX.EditingMode .column.eds-mobile-ux-header {
  top: 0px;
}

.Script_DynamicUiGeneration_New_MobileUX .column.eds-mobile-ux-header span {
  padding: 0rem 1rem;
  display: inline-block;
}

.Script_DynamicUiGeneration_New_MobileUX .column.eds-mobile-ux-header span.orderNR {
  border-right: solid 1px #fff;
}

.Script_DynamicUiGeneration_New_MobileUX .additionalTargetContainer {
  display: none !important;
}

@media screen and (max-width: 600px) {

  .Script_DynamicUiGeneration_New_MobileUX .meuiDateTimePicker+.dropdown-menu button,
  .Script_DynamicUiGeneration_New_MobileUX .meuiDateTimePicker+[uib-datepicker-popup-wrap] .uib-datepicker-popup.dropdown-menu button,
  .Script_DynamicUiGeneration_New_MobileUX [uib-datepicker-popup-wrap] .uib-datepicker-popup.dropdown-menu button {
    border: solid 1px #fff;
    padding: 0.7rem;
    font-size: 1rem;
    min-width: 100%;
    height: 3rem;
    border-radius: 5px;
  }
}

.Script_DynamicUiGeneration_New_MobileUX .input.is-danger,
.Script_DynamicUiGeneration_New_MobileUX .catfish-input.is-danger,
.Script_DynamicUiGeneration_New_MobileUX .catfish-select.is-danger,
.Script_DynamicUiGeneration_New_MobileUX .textarea.is-danger,
.catfish-textarea.is-danger {
  border-color: #CF4646 !important;
  background: #f9dcdc !important;
}

.megaedit-preview #addToBasketButton {
  top: 1rem;
  right: 5rem;
}


/* Product Image Attribute */
.attribute.contains-image-attribute .columns {
  margin: -2px;
}

.attribute.contains-image-attribute .attribute-item .attribute-value-item {
  max-width: 25% !important;
  width: 100%;
  flex: none;
  overflow: hidden;
}

.attribute.contains-image-attribute .columns .column {
  padding: .25rem;
}

.arone-product-landing-page .attribute.contains-image-attribute input:checked+label.button {
  background: #eee;
  border-radius: 0px !important;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  -ms-border-radius: 0px !important;
  -o-border-radius: 0px !important;
  border-width: 2px
}

.arone-product-landing-page .attribute.contains-image-attribute input:checked ~ label.button  img{
  border: 2px solid var(--Secondary-color);
}

.attribute.contains-image-attribute label.button {
  height: auto !important;
  padding: 0px;
  border: unset;
  padding: 0% !important;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  width: 100%;
}

.arone-product-landing-page .attribute label.button:hover{
  background-color: transparent;
}

.arone-product-landing-page .attribute label.button img{
  transition: .2s;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -ms-transition: .2s;
  -o-transition: .2s;
}

.arone-product-landing-page .attribute label.button:hover img{
  border: 2px solid var(--Secondary-hover-color);
}

.attribute.contains-image-attribute span.text {
  position: absolute;
  bottom: 1.5rem;
  left: 3%;
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  z-index: 10;
  background-color: transparent;
  color: var(--Primary-color);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  font-size: 1em;
  font-weight: 600;
  padding: .5rem 0;
  width: 94%;
  white-space: normal;
}

.attribute.contains-image-attribute .attributeValueInfo {
  width: 90%;
  margin: 0px;
}

.arone-product-landing-page .attribute.contains-image-attribute input:checked+label.button {
  background-color: transparent;
}

.arone-product-landing-page .attribute.contains-image-attribute input:checked + label.button{
  border-width: 0px;
  border: unset;
}

.attribute.contains-image-attribute .attributeValueInfo .attribute_image_template {
  margin-bottom: 2.5rem;
}

.attribute.contains-image-attribute .attributeValueInfo .attribute_image_template img {
  object-fit: contain;
  border: 2px solid transparent;
}

.arone-product-landing-page .attribute input:checked+label.button:focus{
  outline: 1px solid var(--Grey-color);
  outline-offset: 4px;
}

@media only screen and (min-width: 1088px) {
  .attribute.contains-image-attribute .attribute-value-item.column {
      max-width: 20% !important;
      width: 20%;
  }
}

@media screen and (max-width: 767px) {
  .attribute.contains-image-attribute .columns {
      display: flex;
  }
}

@media screen and (max-width: 475px) {
  .attribute.contains-image-attribute .attribute-item .attribute-value-item {
      max-width: 50% !important;
  }
}
