@import url("./header.css");
@import url("./footer.css");

body {
    overflow-x: hidden;
}

.allContainer {
    background-color: #E9EEF6;
}

.breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    text-wrap: nowrap;
    overflow-x: scroll;
    list-style: none;
    padding: 0;
    margin: 0;
    scrollbar-width: none; /* Hide scrollbar in Firefox */

    /* display: inline-block; */
}

.breadcrumb-item {
    display: inline-block;
    margin-right: 0px;
}

.breadcrumb-item::after {
    content: " >";
    color: #333;
}

.breadcrumb-item::before {
    content: "" !important;
}

.breadcrumb-item:last-child::after {
    content: "";
}

.sidePadding {
    padding: 0px 7%;
}

.bgColor {
    background-color: #011A45;
}

.supplierName {
    font-size: 26px;
    font-weight: 500;
    color: #1c1212;
}

.supplierLocation {
    font-size: 18px;
    color: #686464;
}

.supplierViewProfile a {
    font-size: 16px;
    color: #1c1212;
    text-decoration: none;
}

.premiumSuppliers {
    padding: 10px 20px;
    position: relative;
    border-radius: 20px;
    border-top: 8px solid #ffd402;
    /* overflow: hidden; */
    background-color: #FFFFFF;
}

.imageContainer {
    /* width: 159.7px; */
    height: 89.7px;
    border-color: #edf2fb;
    border-width: 2px;
    border-style: solid;
    border-radius: 10px;
    background: #ffffff
}

.titleSupplier{
    height: 138px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.titleSupplier p {
    font-size: 36px;
}


.planGroupSection {
    margin-bottom: 30px;
}

.planGroupHeader {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0 15px 0;
}

.planGroupTitle {
    font-size: 22px;
    font-weight: 700;
    color: #1c1212;
    margin: 0;
    text-transform: uppercase;
}

.planBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 14px;
    background-color: #ffd402;
    color: #5a3e00;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.planGroupCount {
    font-size: 14px;
    color: #686464;
    font-weight: 400;
}

.planGroupDivider {
    border: none;
    border-top: 4px solid #011A45;
    margin: 30px 0 10px 0;
}

.planGroupSection:last-child .planGroupDivider {
    display: none;
}

.premiumFlag {
    display: none !important;
}

.premiumBadgeText {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #ffd402;
    color: #5a3e00;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.blueTick {
    width: 21px;
    height: 21px;
}

.breadcrumb::-webkit-scrollbar {
    display: none !important;
}

@media screen and (min-width: 320px) and (max-width: 540px) {
    .premiumSuppliers {
        height: 100% !important;
        border: none !important;
        padding: 45px 20px 0px 20px;
    }
    /* .titleSupplier{
        height: 15vh;
    } */

    .titleSupplier p {
        font-size: 18px;
    }

    .blueTick {
        width: 12px;
        height: 12px;
    }

    .imageContainer {
        width: 100% !important;
        height: 77px !important;
    }

    .supplierName {
        font-size: 14px;
    }

    .supplierLocation {
        font-size: 12px;
    }

    .supplierViewProfile a {
        font-size: 14px;
    }

    .premiumFlag {
        display: block !important;
        position: absolute;
        top: calc(0% - 8px);
        right: 50px;
        width: 128px;
        height: 35px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1439px) {
    .supplierName {
        font-size: 24px !important;
    }

    .supplierLocation {
        font-size: 16px !important;
    }
}

/* media till min laptop screen size */
@media (min-width: 768px) and (max-width: 1199px) {
    .sidePadding {
        padding: 0px 5%;
    }
}

/* media form min tablet to max tablet screen size */
@media (min-width: 481px) and (max-width: 767px) {
    .sidePadding {
        padding: 0px 5%;
    }
}


/* media for  less than max mobile screen size */
@media screen and (max-width: 480px) {

    .sidePadding {
        padding: 0px 15px;
    }

}