﻿ 
/* PLSBox.css */  
.plsbox {
    box-sizing: border-box;
    font-family: "NotoSans", sans-serif;
    max-width: 390px;
    width: 375px;
    min-height: 120px;
    background-color: white;
    border: 1px solid #d8d8d8;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    padding: 20px 22px 40px 32px;
}

.plsbox-highlighted {
    box-shadow: 0px 4px 5px 2px rgba(0, 0, 0, 0.15);
}

.plsbox-title {
    font-weight: bold;
    font-size: clamp(15px, 3vw, 17px);
    margin-bottom: 15px;
}

.plsbox-items-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.plsbox-text-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.plsbox-text {
    font-size: clamp(14px, 3.5vw, 16px);
    z-index: 1;
    word-break: break-word;
}

.plsbox-text[data-warning="true" i] {
    color: #FA0E0E
}

.plsbox-icon {
    width: 20px;
    height: 20px;
}

.plsbox-icon[data-warning="true" i] {
    filter: brightness(0) saturate(100%) invert(27%) sepia(58%) saturate(5895%) hue-rotate(351deg) brightness(93%) contrast(112%);
}

.plsbox-compatibility-text {
    box-sizing: border-box;
    font-size: 14px;
    display: inline-block;
    color: #000;
    background-color: #eeeeee;
    border-radius: 12px;
    padding: 3px 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 95%;
}

@media screen and (max-width:420px) {
    .plsbox {
        width: 100%;
        max-width: 90vw;
        padding-bottom: 30px;
    }
}

@media screen and (max-width:390px) {
    .plsbox {
        padding: 20px 15px 30px 20px;
    }

    .plsbox-icon {
        width: 18px;
        height: 18px;
    }
}
 
/* PLSBoxContainer.css */  
.plsboxcontainer {
    width: 100%;
    margin-bottom: clamp(40px, 7.5vw, 60px);
}

.plsboxcontainer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    column-gap: 20px;
    row-gap: 25px;
    width: 100%;
}
 
 
/* PLSBreadcrumb.css */  
.plsbreadcrumb {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    color: #A6A6A6;
    font-size: clamp(14px, 3vw, 15px);
}

.plsbreadcrumb-item {
    display: flex;
    justify-content: center;
}

.plsbreadcrumb-item + .plsbreadcrumb-item::before {
    display: block;
    width: 20px;
    margin-top: 2px;
    margin-right: 0.2rem;
    content: " ";
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.70711 4.29289C9.31658 3.90237 8.68342 3.90237 8.29289 4.29289C7.90237 4.68342 7.90237 5.31658 8.29289 5.70711L9.70711 4.29289ZM16 12L16.7071 12.7071C17.0976 12.3166 17.0976 11.6834 16.7071 11.2929L16 12ZM8.29289 18.2929C7.90237 18.6834 7.90237 19.3166 8.29289 19.7071C8.68342 20.0976 9.31658 20.0976 9.70711 19.7071L8.29289 18.2929ZM8.29289 5.70711L15.2929 12.7071L16.7071 11.2929L9.70711 4.29289L8.29289 5.70711ZM15.2929 11.2929L8.29289 18.2929L9.70711 19.7071L16.7071 12.7071L15.2929 11.2929Z' fill='%23A6A6A6'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
}

.plsbreadcrumb-link {
    outline: none;
    text-decoration: none;
    color: #A6A6A6;
}

.plsbreadcrumb-link:hover {
    color: #f58220;
}

.plsbreadcrumb-link:not([href]),
.plsbreadcrumb-link[href=""] {
    cursor: text;
    color: #686868;
}

.plsbreadcrumb-comma {
    margin-right: 5px;
}

 
/* 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-around;
    gap: 30px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 70px; 
}

@media screen and (max-width:1100px) {
    .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;
    margin-bottom: 36px;
}

.plscarousel-href {
    color: #1D1D1B;
    padding: 2px 10px;
    text-decoration: none;
    outline: none;
}

.plscarousel-href-has-link {
    cursor: pointer;
}

.plscarousel-href-has-link:hover {
    background-color: #eeeeee;
    border-radius: 15px;
}


.plscarousel-slider-section {
    position: relative;
}

.plscarousel-slider {
    overflow: hidden;
    display: grid;
    grid-auto-flow: column;
    padding: 3px 5px 8px 1px;
    gap: 50px;
    column-gap: 50px;
    justify-items: center;

    /*row-gap: 50px;
    column-gap: 35px;*/
    /*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;
    }
}
 
/* PLSDataPrivacy.css */  
.plsdataprivacy {
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
    font-family: "NotoSans", sans-serif;
    border: 1px solid #d8d8d8;
    border-radius: 18px;
    box-shadow: 0px 4px 5px 2px rgba(0, 0, 0, 0.15);
    background-color: white;
    padding: 33px 22px;
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.plsdataprivacy-table-container {
    border: 1px solid #d8d8d8;
    border-radius: 18px;
    box-sizing: border-box;
}

.plsdataprivacy-table {
    table-layout: fixed;
    box-sizing: border-box;
    width: 100%;
    min-height: 200px;
    border-collapse: collapse;
    border-spacing: 0;
}

.plsdataprivacy-table thead {
    background-color: #EAE9E9;
}

.plsdataprivacy-table tr {
    box-sizing: border-box;
    height: 50px;
    border-bottom: 1px solid #d8d8d8;
}

.plsdataprivacy-table tr:last-child {
    border-bottom: none;
}

.plsdataprivacy-table td,
.plsdataprivacy-table th {
    padding-left: 25px;
    overflow: hidden;
    text-overflow: ellipsis;

    font-size: 16px;
    font-weight: bold;
    vertical-align: middle;
}

.plsdataprivacy-table td {
    white-space: nowrap;
}

.plsdataprivacy-table td:first-child,
.plsdataprivacy-table th:first-child {
    padding-left: 20px;
}

.plsdataprivacy-table td:last-child,
.plsdataprivacy-table th:last-child {
    padding-right: 20px;
}

.plsdataprivacy-table th:first-child {
    border-radius: 18px 0 0 0;
}

.plsdataprivacy-table th:last-child {
    border-radius: 0 18px 0 0;
}

.plsdataprivacy-table-small-column {
    text-align: center;
    width: 70px;
}

.plsdataprivacy-table-data-icon {
    width: 15px;
    height: 15px;
    vertical-align: middle;
}

.plsdataprivacy-table-event-icon {
    width: 21px;
    height: 21px;
    vertical-align: middle;
    margin-right: 4px;
}

.plsdataprivacy-table-text {
    vertical-align: middle;
}



@media screen and (max-width:570px) {
    .plsdataprivacy-table td,
    .plsdataprivacy-table th {
        padding-left: 12px;
        font-size: 14px;
    }

    .plsdataprivacy-table td:first-child,
    .plsdataprivacy-table th:first-child {
        padding-left: 12px;
    }

    .plsdataprivacy-table td:last-child,
    .plsdataprivacy-table th:last-child {
        padding-right: 12px;
    }
}

@media screen and (max-width:440px) {
    .plsdataprivacy {
        margin: 20px 0;
        padding: 26px 22px;
    }

    .plsdataprivacy-table-event-icon {
        display: none;
    }

    .plsdataprivacy-table-data {
        width: 60px;
    }

    .plsdataprivacy-table td,
    .plsdataprivacy-table th {
        padding-left: 6px;
        font-size: 13px;
    }

    .plsdataprivacy-table td:first-child,
    .plsdataprivacy-table th:first-child {
        padding-left: 8px;
    }

    .plsdataprivacy-table td:last-child,
    .plsdataprivacy-table th:last-child {
        padding-right: 6px;
    }
}

@media screen and (max-width:370px) {
    .plsdataprivacy {
        padding: 22px 18px;
    }

    .plsdataprivacy-table td,
    .plsdataprivacy-table th {
        padding-left: 0;
        font-size: 12px;
    }
}
 
/* PLSDescription.css */  
.plsdescription {
    width: 100%;
    max-width: 98.7%;
    margin-left: auto;
    margin-top: 45px;
    position: relative;
}

.plsdescription-title-section {
    display: flex;
    align-items: center;
    margin-bottom: 13px;
    gap: 3px;
}

.plsdescription-icon {
    width: 13px;
    height: 13px;
}

.plsdescription-title {
    font-weight: bold;
    font-size: clamp(13px, 3.2vw, 17px);
}

.plsdescription-description-text {
    margin: 0 0 clamp(40px, 8.5vw, 50px) 16px;
    font-size: clamp(13px, 3.2vw, 17px);
}

 
/* PLSDetailLabel.css */  
/* Regular detaillabel part*/
.plsdetaillabel {
    box-sizing: border-box;
    font-family: "NotoSans", sans-serif;
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 15px;
    box-shadow: 0px 4px 5px 2px rgba(0, 0, 0, 0.15);
    padding: clamp(20px, 4vw, 25px) 15px;
    padding-bottom: clamp(21px, 4vw, 27px);
    margin-bottom: 60px;
    overflow: hidden;
    margin-top: 20px;
}

.plsdetaillabel-common-container {
    padding: 0 clamp(10px, 3vw, 28px);
}

.plsdetaillabel-columns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: clamp(30px, 5vw, 40px) 10px;
}

.plsdetaillabel-first-column {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(24px, 5.5vw, 34px);
}

.plsdetaillabel-second-column {
    box-sizing: border-box;
    max-width: 254px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.plsdetaillabel-plugin-header-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.plsdetaillabel-logo {
    display: block;
    max-height: 108px;
    height: 108px;
    max-width: 200px;
    object-fit: contain;
}

.plsdetaillabel-plugin-info-container {
    display: flex;
    flex-direction: column;
    min-height: 108px;
    justify-content: space-around;
}

.plsdetaillabel-line {
    height: 1px;
    width: 100%;
    margin-top: 1px;
}

.plsdetaillabel-line-wide {
    margin-top: 15px;
    background-color: #A1A1A1;
}

.plsdetaillabel-line-wide-taller {
    margin-top: 13px;
    background-color: #A1A1A1;
}

.plsdetaillabel-vertical-line {
    width: 1px;
}

.plsdetaillabel-line-visible {
    background-color: #A1A1A1;
}

.plsdetaillabel-device-container {
    margin-top: 15px;
    color: #686868;
}

.plsdetaillabel-warning-container {
    display: flex;
    align-items: center;
    gap: 6px;
}

.plsdetaillabel-warning-icon {
    height: 23px;
    width: 23px;
}

.plsdetaillabel-title-text {
    font-size: clamp(22px, 4vw, 35px);
    font-weight: bold;
}

.plsdetaillabel-device-text {
    font-weight: bold;
}

.plsdetaillabel-warning-text {
    color: red;
    font-size: clamp(12px, 2.5vw, 15px);
    font-weight: bold;
}

.plsdetaillabel-small-text {
    font-size: clamp(14px, 2vw, 15px)
}

.plsdetaillabel-secondary-info-container {
    gap: clamp(26px, 5.5vw, 34px);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
}

.plsdetaillabel-technology-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 3px;
    width: 100%;
}

.plsdetaillabel-technology-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.plsdetaillabel-technology-icon {
    width: 23px;
}

.plsdetaillabel-rating-container {
    display: flex;
    gap: 6px;
}

.plsdetaillabel-star-container {
  
}

.plsdetaillabel-star-icon {
    width: 15px;
}

.plsdetaillabel-star-icon[data-checked="true" i] {
    filter: brightness(0) saturate(100%) invert(52%) sepia(97%) saturate(1372%) hue-rotate(349deg) brightness(101%) contrast(91%);
}

.plsdetaillabel-rating-count {
    font-size: 15px;
}

.plsdetaillabel-rating-count::before {
    content: "(";
}

.plsdetaillabel-rating-count::after {
    content: ")";
}

.plsdetaillabel-small-info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    width: fit-content;
}

.plsdetaillabel-small-info-item {
    display: flex;
    align-items: center;
}

.plsdetaillabel-small-info-icon {
    margin-right: 7px;
    width: 19px;
    height: 19px;
}

.plsdetaillabel-small-info-text {
    font-size: 10px;
    white-space: pre;
}

.plsdetaillabel-download-button {
    font-family: "NotoSans", sans-serif;
    font-size: 20px;
    border-radius: 11px;
    background-color: rgba(245, 130, 32, 0.4);
    border: none;
    cursor: pointer;
    padding: 4px 30px;
    transition: background-color 0.2s ease, background-image 0.2s ease, box-shadow 0.3s ease;
    width: 100%;
}

.plsdetaillabel-download-button:hover {
    background-color: rgba(245, 130, 32, 1);
}

.plsdetaillabel-download-button:active {
    background-color: #f48220;
    box-shadow: 0 0 0 4px #f9e7d8;
}

.plsdetaillabel-certification-container {
    height: fit-content;
    max-width: 100%;
    font-size: 15px;
    text-align: center;
}

.plsdetaillabel-certification-icon-section {
    display: flex;
    gap: 15px;
    justify-content: center
}

.plsdetaillabel-certification-icon-box {
    text-align: center;
    color: #A1A1A1;
    width: 90px;
}

.plsdetaillabel-icon-container {
    height: 55px;
    margin-top: -9px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plsdetaillabel-certification-icon {
    width: 55px;
}

.plsdetaillabel-verification-icon {
    height: 44px;
    width: 39px;
}

.plsdetaillabel-icon-certified {
    filter: brightness(0) saturate(100%) invert(70%) sepia(39%) saturate(4786%) hue-rotate(343deg) brightness(96%) contrast(100%);
}

.plsdetaillabel-certification-text {
    display: block;
    color: #A1A1A1;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(14px, 3vw, 15px);
}

.plsdetaillabel-certification-text-certified {
    color: black;
}

.plsdetaillabel-compatibility-text {
    box-sizing: border-box;
    font-size: 15px;
    display: inline-block;
    color: black;
    background-color: white;
    border: 1px solid #A1A1A1;
    border-radius: 10px;
    padding: 3px 15px;
    margin-top: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}



/*Sticky header part*/
.plsdetaillabel-sticky-container {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 1px 5px 3px rgba(0, 0, 0, 0.15);
    z-index: 3;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.18s ease-in-out;
    padding: 0 10px;
}

.plsdetaillabel-sticky-hidden {
    visibility: hidden;
    opacity: 0;
    transition: none;
}

.plsdetaillabel-sticky-content-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 20px auto;
}

.plsdetaillabel-sticky-main-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.plsdetaillabel-sticky-title-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 5px;
}

.plsdetaillabel-sticky-title {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: bold;
}

.plsdetaillabel-sticky-download-button {
    font-family: "NotoSans", sans-serif;
    margin: 0;
    margin-left: 5px;
    font-size: clamp(14px, 1.8vw, 18px);
    padding: 8px clamp(20px, 2.2vw, 30px);
    max-width: 220px;
    width: auto;
}


.plsdetaillabel-sticky-certification-icon-box {
    text-align: center;
    color: #A1A1A1;
    width: clamp(75px, 9vw, 90px);
}

.plsdetaillabel-sticky-icon-container-ver {
    height: 55px;
    margin-top: 5px
}

.plsdetaillabel-sticky-certification-text {
    font-size: clamp(14px, 1.3vw, 15px);
}

.plsdetaillabel-sticky-warning-icon {
    height: 27px;
    width: 26px;
    vertical-align: bottom;
    margin-left: 3px;
}

.plsdetaillabel-sticky-certification-icon-box[data-certified="true" i] > span {
    color: black;
}



@media screen and (max-width: 860px) {
    .plsdetaillabel-sticky-content-wrapper {
        margin: 10px auto;
    }
}

@media screen and (max-width: 670px) {
    .plsdetaillabel-certification-icon {
    }

    .plsdetaillabel-verification-icon {
    }

    .plsdetaillabel-sticky-container {
        display: none;
    }
}


@media screen and (max-width: 400px) {
    .plsdetaillabel-technology-container {
        column-gap: 20px;
    }
}

 
/* PLSDetailSection.css */  
.plsdetailsection {
    width: 100%;
    max-width: 98.7%;
    margin-top: 35px;
    margin-left: auto;
}

.plsdetailsection-title-container {
    font-family: "NotoSans", sans-serif;
    width: fit-content;
    position: relative;
    margin-bottom: 25px;
}

.plsdetailsection-title {
    font-weight: bold;
    font-size: clamp(16px, 4vw, 22px);
}

.plsdetailsection-description {
    margin: 0;
    font-size: clamp(13px, 3.2vw, 17px);
}

.plsdetailsection-content-container {
    position: relative;
    display: flex;
    justify-content: center;
}


@media screen and (max-width:600px) {
    .plsdetailsection {
        max-width: 100%;
    }
}
 
/* PLSDownloader.css */  
.plsdownloader {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 20px;
    margin-bottom: 40px;
    overflow: hidden;
}

.plsdownloader-icon {
    width: 21px;
    height: 26px;
}

.plsdownloader-link {
    font-size: clamp(15px, 4vw, 20px);
    text-decoration: none;
    color: black;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
}

 
/* PLSEmptyResultText.css */  
.plsemptyresulttext {
    text-align: center;
    font-size: clamp(16px, 3vw, 22px);
    margin-bottom: 50px;
    margin-top: 10px;
}

 
/* PLSExpandableText.css */  
.plsexpandabletext {
    box-sizing: border-box;
    min-height: clamp(75px, 20vw, 125px);
    width: 100%;
}

.plsexpandabletext-text-content {
    width: 100%;
    margin: 0 0 60px 0;
    overflow: hidden;
    font-size: clamp(13px, 3.2vw, 17px);
    white-space: pre-line;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.plsexpandabletex-break-all {
    word-break: break-all;
}

.plsexpandabletext-input {
    display: none;
}

.plsexpandabletext-button-container {
    text-align: end;
}

.plsexpandabletext-button {
    display: inline-block;
    cursor: pointer;
    margin-bottom: 5px;
}

.plsexpandabletext-button-text {
    font-size: clamp(13px, 3vw, 16px);
}

.plsexpandabletext-show-less {
    display: none;
}

.plsexpandabletext-input:checked ~ .plsexpandabletext-text-content {
    -webkit-line-clamp: unset !important;
}

.plsexpandabletext-input:checked ~ .plsexpandabletext-button-container .plsexpandabletext-show-more {
    display: none;
}

.plsexpandabletext-input:checked ~ .plsexpandabletext-button-container .plsexpandabletext-show-less {
    display: block;
}
 
/* PLSInfiniteScrollContainer.css */  
.plsinfinitescroll-container {
    width: 100%;
    margin-bottom: 40px;
}

.plsinfinitescroll-container-title {
    font-size: 24px;
    margin-bottom: 36px;
    padding-left: 11px;
}

.plsinfinitescroll-container-content-wrapper {
    box-sizing: border-box;
    display: grid;
    width: 100%;
    margin: auto;
    padding: 5px 5px 10px;
    row-gap: 45px;
    column-gap: 50px;
    justify-items: center;
}

.plsinfinitescroll-container-observer-target {
    width: 100%;
    height: 2px;
}


@media screen and (max-width:550px) {
    .plsinfinitescroll-container-title {
        font-size: 18px;
        margin-bottom: 18px;
        padding-left: 0;
    }

    .plsinfinitescroll-container-content-wrapper {
        row-gap: 40px;
        padding: 0;
    }
}
 
/* 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;
    max-width: 475px;
}

.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 11px 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-wrapper {
    height: 70px;
    overflow: hidden;
}

.plslabel-logo {
    display: block;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: top left;
}

.plslabel-text-section-container {
    font-size: 14px;
    color: rgba(0 ,0 ,0, 0.75);
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.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-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 {
    position: relative;
    box-sizing: border-box;
}

.plslabel-certification-container {
    font-size: 13px;
    text-align: center;
    padding-right: 30px;
}

.plslabel-certification-icon-section {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.plslabel-certification-icon-box {
    text-align: center;
    color: #A1A1A1;
    width: 80px;
}

.plslabel-icon-wrapper {
    height: 40px;
}

.plslabel-certification-text {
    display: block;
    color: #A1A1A1;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.plslabel-certification-text-certified {
    color: black;
}

.plslabel-version-section-container {
    box-sizing: border-box;
    height: 80px;
    max-width: 195px;
}

.plslabel-version-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.plslabel-version-text {
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.plslabel-status-beta {
    color: #9E2F41;
}

.plslabel-compatibility-text {
    display: inline-block;
    color: #000;
    background-color: #eeeeee;
    border-radius: 8px;
    padding: 3px 12px;
    margin-top: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 170px;
    box-sizing: border-box;
}

.plslabel-warning-icon {
    position: absolute;
    top: -15px;
    right: 0;
    width: 26px;
    height: 26px;
}

@media screen and (max-width:510px) {
    .plslabel {
        min-width: 260px;
    }

    .plslabel-content-container {
        padding: 17px 13px 17px 17px;
    }

    .plslabel-warning-icon {
        top: -3px;
    }

    .plslabel-text-section-container {
        margin-top: 8px;
    }

    .plslabel-certification-container {
        display: none;
    }

    .plslabel-logo-wrapper {
        height: 65px;
    }

    .plslabel-logo {
        max-width: 94%;
    }
}

 
/* PLSLine.css */  
.plsline {
    height: 1px;
    background-color: black;
    width: 100%;
}

 
/* PLSNav.css */  
.plsnav {
    width: 100%;
}

.plsnav-hidden {
    visibility: hidden;
}

/* Main nav section */
.plsnav-main {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.plsnav-main-list {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    column-gap: 30px;
    margin: 0;
    padding: 0;
    padding-left: 5px;
    overflow: hidden;
}

.plsnav-main-list-right-aligned {
    justify-content: flex-end;
}

.plsnav-main-list-item {
    list-style-type: none;
}

.plsnav-main-list-item-regular {
    color: #1D1D1B;
}

.plsnav-main-list-link {
    color: inherit;
    font-size: 15px;
    text-decoration: none;
    outline: none;
    white-space: nowrap;
}

.plsnav-main-hamburger-container {
    cursor: pointer;
}

.plsnav-main-hamburger[data-isVisible="false" i] {
    visibility: hidden;
}

.plsnav-main-hamburger-img {
    display: block;
    width: 30px;
    height: 30px;
}

.plsnav-main-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;
}

.plsnav-main-options-tab {
    display: flex;
    flex-direction: column;
}

.plsnav-main-options-tab .plsnav-main-list-item {
    padding: 10px 15px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.plsnav-main-options-tab .plsnav-main-list-item-active {
    background-color: rgb(254, 250, 246);
}


/* Subnav section */

/* Default subnav layout */
.plsnav-sub {
    width: 100%;
    margin-bottom: 30px;
}

.plsnav-sub-inner-wrapper {
    width: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 23px;
    row-gap: 12px;
}

.plsnav-sub-item {
    box-sizing: border-box;
    font-family: "NotoSans", sans-serif;
    font-size: 15px;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    color: #1D1D1B;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 4px;
}

.plsnav-sub-item-icon {
    width: 23px;
    flex: 0 0 auto;
}

.plsnav-sub-item-text {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}


/* Subnav - Fixed column layout */
.plsnav-sub[data-isFixedColumn="true" i] {
    display: flex;
    justify-content: center;
}

.plsnav-sub-inner-wrapper[data-isFixedColumn="true" i] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 12px;
    row-gap: 8px;
}

.plsnav-sub-inner-wrapper[data-isFixedColumn="true" i] .plsnav-sub-item {
    font-size: 13px;
    justify-content: center;
}

.plsnav-sub-inner-wrapper[data-isFixedColumn="true" i] .plsnav-sub-item-icon {
    display: none;
}


/* Common parts */
.plsnav-main-list-item-active,
.plsnav-main-list-link:hover {
    color: #f58220;
}

.plsnav-sub-item-active,
.plsnav-sub-item:hover {
    border-bottom: 1px solid #f4821f;
}





@media only screen and (max-width: 550px) {
    .plsnav-main-options-container {
        width: 100%;
    }
}

 
/* PLSStateLayout.css */  
.plsstatelayout {
    width: 100%;
    display: flex;
    flex-direction: column;
}
 
/* PLSTabPanel.css */  
.plstabpanel {
    font-family: "NotoSans", sans-serif;
    display: none;
}


.plstabpanel[data-active="true" i],
.plstabpanel-initial {
    display: block;
}

 
/* PLSTabs.css */  
.plstabs {
    font-family: "NotoSans", sans-serif;
    margin-bottom: 30px;
    width: 100%;
}

.plstabs-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 13px
}

.plstabs-nav-item {
    font-family: "NotoSans", sans-serif;
    color: #1D1D1B;
    padding: 6px 10px;
    background-color: inherit;
    border: 1px solid transparent;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    font-size: clamp(13px, 2.2vw, 16px);
}

.plstabs-nav-item:hover,
.plstabs-nav-item[data-active="true" i] {
    border-bottom: 1px solid #f4821f;
}

.plstabs-panels-container {
    margin-top: 70px;
}
 
/* PLSVersionsTable.css */  
.plsversionstable {
    font-family: "NotoSans", sans-serif;
    box-sizing: border-box;
    width: 100%;
    background-color: white;
    margin-top: 20px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.plsversionstable-table {
    width: 100%;
    max-width: 790px;
    box-sizing: border-box;
    border-collapse: collapse;
    border-spacing: 0;
}

.plsversionstable-header-text {
    font-size: clamp(14px, 3.4vw, 20px);
    font-weight: bold;
    color: black;
    padding: 0;
    padding-left: 3px;
}

.plsversionstable-invisible-column {
    visibility: hidden;
}

.plsversionstable-column {
    font-size: clamp(12px,2.8vw, 15px);
    color: black;
    padding: 0;
    padding-bottom: 3px;
    padding-left: 3px;
    text-align: center;
}

.plsversionstable-center {
    text-align: center;
}

.plsversionstable-icon {
    width: 24px;
    vertical-align: bottom;
    cursor: pointer;
}

.plsversionstable tr {
    height: 36px;
    vertical-align: bottom;
}

.plsversionstable td,
.plsversionstable th {
    white-space: nowrap;
}

.plsversionstable tr > td:first-child,
.plsversionstable tr > th:first-child {
    text-align: left;
    padding-left: 25px;
}

.plsversionstable tr > td:last-child,
.plsversionstable tr > th:last-child {
    padding-right: 50px;
}


.plsversionstable thead tr {
    border-bottom: 2px solid #A1A1A1;
}

.plsversionstable tbody tr {
    border-bottom: 1px solid #A1A1A1;
}

.plsversionstable tbody tr:first-child {
    background-color: rgba(217, 217, 217, 0.27);
}


@media only screen and (max-width: 700px) {
    .plsversionstable tr > td:first-child,
    .plsversionstable tr > th:first-child {
        padding-left: 5px;
    }

    .plsversionstable tr > td:last-child,
    .plsversionstable tr > th:last-child {
        padding-right: 5px;
    }

}

 
/* PLSWarningText.css */  
.plswarningtext {
    width: 100%;
    color: rgba(255, 0, 0, 0.5);
    font-size: clamp(13px, 3.2vw, 17px);
    margin-top: 20px;
    margin-bottom: 15px;
}

 
