﻿ 
/* PLSCard.css */  
.plscard {
    max-width: 450px;
    width: 100%;
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 5px rgba(0,0,0,0.15);
    font-family: "NotoSans", sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s ease;
    border: 1px solid lightgray;
}

.plscard:hover {
    transition:  transform 0.2s ease;
    transform: translateY(-2px);
    border: 1px solid #f58220;
}

.plscard-link-container {
    text-decoration: none;
    outline: none;
}

.plscard-image {
    object-fit: cover;
    min-height: 200px;
}

.plscard-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 30px;
    text-align: center;
    background-color: white;
    color: rgb(29, 29, 27);
}

.plscard-title-wrapper {
    margin-bottom: 5px;
}

.plscard-title {
    text-transform: uppercase;
    font-weight: bold;
}


@media screen and (max-width:550px) {
    .plscard {
        max-width: 400px;
        font-size: 13px;
    }

    .plscard-image {
        width: 100%;
    }
}

@media screen and (max-width:400px) {
    .plscard {
        max-width: none;
        font-size: 12px;
    }
}

 
/* PLSCardSection.css */  
.plscardsection {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 70px; 
}

@media screen and (max-width:955px) {
    .plscardsection {
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;
    }
}
 
/* PLSCarousel.css */  
.plscarousel {
    width: 100%;
    margin-bottom: 80px;
}

.plscarousel-empty {
    display: none;
}

.plscarousel-hidden-element {
    visibility: hidden;
}

.plscarousel-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 36px;
    cursor: pointer;
}

.plscarousel-href {
    color: #1D1D1B;
    padding: 2px 10px;
    border: 1px solid transparent;
    text-decoration: none;
    outline: none;
    cursor: default;
}

.plscarousel-href-has-link {
    cursor: pointer;
}

.plscarousel-href-has-link:hover {
    background-color: #d8d8d8;
    border-radius: 15px;
    border: 1px solid #f4821f;
}


.plscarousel-slider-section {
    position: relative;
}

.plscarousel-slider {
    overflow: hidden;
    display: grid;
    grid-auto-flow: column;
    padding: 3px 5px 8px 1px;
    gap: 50px;
    scroll-snap-type: x mandatory;
}

.plscarousel-slider > * {
    width: 100%;
}

.plscarousel-arrow-button {
    position: absolute;
    font-size: 24px;
    cursor: pointer;
    background-color: inherit;
    border: 0;
    color: #000000;
    top: calc(50% - 14px);
}

.plscarousel-arrow-button-left {
    left: -40px;
}

.plscarousel-arrow-button-right {
    right: -40px;
}

.plscarousel-arrow-button-disabled {
    color: #d8d6d5;
}


@media screen and (max-width:510px) {
    .plscarousel {
        margin-bottom: 45px;
    }

    .plscarousel-title {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .plscarousel-arrow-button {
        font-size: 18px;
    }

    .plscarousel-arrow-button-left {
        left: -22px;
    }

    .plscarousel-arrow-button-right {
        right: -20px;
    }

    .plscarousel-slider {
        row-gap: 40px;
        padding: 3px 0 8px 0;
    }
}
 
/* PLSCategoriesNav.css */  
.plscategoriesnav {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.plscategoriesnav-hidden {
    visibility: hidden;
}

.plscategoriesnav-list {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    column-gap: 30px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.plscategoriesnav-list-item {
    list-style-type: none;
}

.plscategoriesnav-list-item-active {
    color: #f58220;
}

.plscategoriesnav-list-item-regular {
    color: #1D1D1B;
}

.plscategoriesnav-list-link {
    color: inherit;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    outline: none;
    white-space: nowrap;
}

.plscategoriesnav-list-link:hover {
    color: #f58220;
}

.plscategoriesnav-hamburger-hidden {
    visibility: hidden;
}

.plscategoriesnav-hamburger-container {
    cursor: pointer;
}

.plscategoriesnav-hamburger-img {
    display: block;
    width: 30px;
    height: 30px;
}

.plscategoriesnav-options-container {
    position: absolute;
    top: 35px;
    right: 0;
    padding: 8px 0;
    background-color: #FFFFFF;
    width: 240px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #EAE9E9;
    box-shadow: 0px 4px 10px -2px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.plscategoriesnav-options-tab {
    display: flex;
    flex-direction: column;
}

.plscategoriesnav-options-tab .plscategoriesnav-list-item {
    padding: 10px 15px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.plscategoriesnav-options-tab .plscategoriesnav-list-item-active {
    background-color: rgb(254, 250, 246);
}


@media only screen and (max-width: 550px) {
    .plscategoriesnav-options-container {
        width: 100%;
    }
}

 
/* PLSLabel.css */  
.plslabel {
    box-sizing: border-box;
    font-family: "NotoSans", sans-serif;
    scroll-snap-align: start;
    cursor: pointer;
    width: 100%;
    min-width: 390px;
    transition: transform 0.2s ease;
}

.plslabel:hover {
    transition: transform 0.2s ease;
    transform: translate(0, -2px);
}

.plslabel-content-container {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    background-color: white;
    border: 1px solid #BFBDBB;
    border-radius: 15px;
    box-shadow: 0px 4px 5px 2px rgba(0,0,0,0.15);
    padding: 26px 38px 36px 20px;
    overflow: hidden;
    text-decoration: none;
    outline: none;
}

.plslabel-content-container:hover {
    border: 1px solid #f58220;
}

.plslabel-main-section {
    position: relative;
    flex: 1 1 auto;
    min-width: 130px;
}

.plslabel-logo-section {
    display: flex;
    align-items: flex-end;
    height: 70px;
}

.plslabel-logo-wrapper {
    position: relative;
}

.plslabel-logo {
    display: block;
    max-width: 130px;
    max-height: 70px;
    height: 70px;
}

.plslabel-text-section-container {
    font-size: 14px;
    color: rgba(0 ,0 ,0, 0.75);
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
}

.plslabel-text-item-wrapper {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.plslabel-text-item-wrapper:not(:last-child) {
    margin-bottom: 2px;
}

.plslabel-text {
    white-space: nowrap;
}

.plslabel-plugin-name {
    color: #1D1D1B;
    font-weight: bold;
}

.plslabel-status-label {
    width: 72px;
    position: absolute;
    top: -10px;
    left: -13px;
}

.plslabel-rating-container {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-right: 7px;
}

.plslabel-rating-count::before {
    content: "(";
}

.plslabel-rating-count::after {
    content: ")";
}

.plslabel-rating-star {
    width: 19px;
}

.plslabel-rating-star-filled {
    filter: brightness(0) saturate(100%) invert(52%) sepia(97%) saturate(1372%) hue-rotate(349deg) brightness(101%) contrast(91%);
}

.plslabel-certification-section {
    display: flex;
    align-items: center;
    flex: 0 0 160px;
    box-sizing: border-box;
}

.plslabel-certification-container {
    height: fit-content;
    font-size: 13px;
    text-align: center;
    position: relative;
}

.plslabel-certification-container-warning {
    padding: 7px 10px 5px 10px;
    border: 2px solid rgba(255, 0, 0, 0.5);
}

.plslabel-certification-icon-section {
    display: flex;
    gap: 15px;
}

.plslabel-certification-icon-box {
    text-align: center;
    color: #A1A1A1;
    width: 80px;
}

.plslabel-icon-wrapper {
    height: 40px;
}

.plslabel-certification-text {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis
}

.plslabel-icon-certified {
    filter: brightness(0) saturate(100%) invert(70%) sepia(39%) saturate(4786%) hue-rotate(343deg) brightness(96%) contrast(100%);
}

.plslabel-certification-text {
    display: block;
    color: #A1A1A1;
}

.plslabel-certification-text-certified {
    color: rgb(245, 130, 32);
}

.plslabel-compatibility-text {
    display: inline-block;
    color: #000;
    background-color: #eeeeee;
    border-radius: 12px;
    padding: 3px 12px;
    margin-top: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.plslabel-warning-icon-wrapper {
    position: absolute;
    top: -17px;
    right: -18px;
    width: 34px;
    height: 34px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plslabel-warning-icon {
    width: 25px;
}

.plslabel-mobile-warning-icon {
    width: 23px;
    height: 23px;
    display: none;
}


@media screen and (max-width:510px) {
    .plslabel {
        min-width: 260px;
    }

    .plslabel-content-container {
        padding: 17px 10px 10px 17px;
    }

    .plslabel-text-section-container {
        margin-top: 5px;
    }

    .plslabel-certification-section {
        display: none;
    }

    .plslabel-mobile-warning-icon {
        display: block;
    }

    .plslabel-status-label {
        width: 52px;
        left: -6px;
        top: -7px;
    }

    .plslabel-logo-section {
        height: 65px;
    }

    .plslabel-logo {
        max-width: 121px;
        max-height: 65px;
    }
}
 
/* PLSLabelCollection.css */  
.plslabel-collection {
    width: 100%;
    margin-bottom: 40px;
}

.plslabel-collection-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 36px;
    padding-left: 11px;
}

.plslabel-collection-noresult-text {
    text-align: center;
    font-size: 22px;
}

.plsslabel-noresult-text-hidden {
    display: none;
}

.plslabel-collection-content-wrapper {
    box-sizing: border-box;
    display: grid;
    width: 100%;
    margin: auto;
    padding: 5px 5px 10px;
    row-gap: 45px;
    column-gap: 50px;
}

.plslabel-collection-observer-target {
    width: 100%;
    height: 2px;
}


@media screen and (max-width:550px) {
    .plslabel-collection-title {
        font-size: 18px;
        margin-bottom: 18px;
        padding-left: 0;
    }

    .plslabel-collection-noresult-text {
        font-size: 16px;
    }

    .plslabel-collection-content-wrapper {
        row-gap: 40px;
        padding: 0;
    }
}
 
/* PLSTechnologies.css */  
/* Default layout */
.plstechnologies {
    width: 100%;
    margin-bottom: 30px;
}

.plstechnologies-hidden {
    visibility: hidden;
}

.plstechnologies-inner-wrapper {
    width: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 20px;
    row-gap: 12px;
}


.plstechnologies-item {
    box-sizing: border-box;
    min-width: 60px;
    font-family: "NotoSans", sans-serif;
    font-size: 15px;
    border: 1px solid #a3a3a3;
    border-radius: 6px;
    padding: 5px;
    background-color: #eeeeee;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    color: #1D1D1B;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 6px;
}

.plstechnologies-item:hover span {
    color: #f58220;
}

.plstechnologies-item-icon {
    width: 23px;
    flex: 0 0 auto;
}

.plstechnologies-item-text-active {
    color: #f58220;
}

.plstechnologies-item-text {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}


/* Fixed column layout for when items would wrap to a third row  */
.plstechnologies[data-isFixedColumn="true" i] {
    display: flex;
    justify-content: center;
}

.plstechnologies-inner-wrapper[data-isFixedColumn="true" i] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 12px;
    row-gap: 8px;
}

.plstechnologies-inner-wrapper[data-isFixedColumn="true" i] .plstechnologies-item {
     font-size: 13px;
}

.plstechnologies-inner-wrapper[data-isFixedColumn="true" i] .plstechnologies-item-icon {
      display: none;
}


@media only screen and (max-width: 600px) {
    .plstechnologies {
        display: flex;
        justify-content: center;
    }

    .plstechnologies-inner-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 12px;
        row-gap: 8px;
    }

    .plstechnologies-item {
        font-size: 13px;
    }

    .plstechnologies-item-icon {
       display: none;
    }
}
 
