
/*configurator-table*/
.configurator-table {
    display: flex;
    margin-top:1.5rem;
    width: 100%;
    gap: 1rem;
    text-align: center;
}

.configurator-table.configurator-table-disabled {
    opacity: 0.3;
    pointer-events: none;
}

.configurator-table__colfix {
    background: var(--color-sage-1);
    width: 5rem;
}

.configurator-table__qty {
    font-weight: var(--font-weight-bold);
}.configurator-table__th {
     min-height: 3rem;
     display: flex;
     padding: 0 0.5rem;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     margin-bottom: 1rem;
 }.configurator-table__td {
      display: flex;
    position: relative;
      height: 2.5rem;
      justify-content: center;
      align-items: center;
      border: 1px solid transparent;
       padding: 0 0.25rem;
       text-wrap: nowrap;
  }.configurator-table__processing {
       font-size: var(--text-size-XXS);
       line-height: var(--text-line-height-XXS);
       letter-spacing: var(--text-letter-spacing-XXS);
       font-weight: var(--font-weight-bold);
   }
.configurator-table__content {
    display: flex;
    gap: 1rem;
}
.configurator-table__form-control input[type=radio] {
    display: none;
}
label.configurator-table__form-control-label {
    cursor: pointer;
    display: inline-flex;
    margin: 0;
    justify-content: center;
    gap: 0.5rem;
    pointer-events: auto;
    width: 100%;
    padding: 0.5rem;
    border: 1px solid transparent;
    border-radius: var(--image-border-radius-mobile);
    transition: all 0.3s linear;
    align-items: center;
}
label.configurator-table__form-control-label:hover {
    border: 1px solid var(--color-black);
    box-shadow: var(--shadow-1);
}label.configurator-table__form-control-label div {
     text-wrap: nowrap;
 }
input:checked + label.configurator-table__form-control-label  {
    background: var(--color-green-1);
    border-color: var(--color-green-1);
    font-weight: var(--font-weight-bold);
}input:checked + label.configurator-table__form-control-label::after {
     min-width: 1rem;
     content: "";
     height: 1rem;
     display: inline-block;
     vertical-align: middle;
     transition: inherit;
     background-image: url(/Frontend/Client/Assets/Icons/check.svg);
     background-size: contain;
     background-repeat: no-repeat;
     background-position: center;
 }
.configurator-table__form-control {
    width: 100%;
}
.configurator-table__col {
    flex: 1;
    width: 100%;
}
.row-hover::before {
    border: solid;
    border-width: 1px 0;
    content: "";
    position: absolute;
    left: -0.5rem;
    right: -0.5rem;
    top: 0;
    bottom: 0;
}

.configurator-tabs .tab-pane{
    gap: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.configurator-tabs .tab-pane:not(.active){
    display: none;
}.configurator-tabs .tab-pane>.custom-radio-plain { margin-top:0}

.options-infobox-container .custom-radio-plain:first-child{
    margin-top: 0;}
.options-infobox-container{
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
gap: 1.5rem;
    /*flex-wrap: wrap;*/
}
@media(max-width: 575px){
    .configurator-table__th {
        font-size: var(--text-size-XXS);
        line-height: var(--text-line-height-XXS);
        letter-spacing: var(--text-letter-spacing-XXS);
    }
    .options-infobox-container{
    flex-wrap: wrap;
}
    .configurator-table__qty {
        font-size: var(--text-size-XXS);
        line-height: var(--text-line-height-XXS);
        letter-spacing: var(--text-letter-spacing-XXS);
    }
    .configurator-table__content {
        max-width: calc(100% - 5rem);
        overflow-x: auto;
        padding-bottom: 1rem;
    }

}
@media(min-width: 576px){
    .row-hover::before {
        left: -0.75rem;
        right: -0.75rem;
    }
    .configurator-table   {

        margin-top:5rem;
    }
    .configurator-table__content ,.configurator-table {
        gap: 1.5rem;
    }

    .configurator-table__colfix {
        width: 8.5rem;
    }
}