
.entry-content p {
font-size:12px;
}

    details {
        cursor: pointer !important;
        color: #518251 !important;
        font-weight: normal !important;
        text-decoration: none !important;
        letter-spacing: normal !important;
    }

    details:hover {
        color: orange !important;
        font-weight: normal !important;
        text-decoration: none !important;
        letter-spacing: normal !important;
    }

    details p,
    details p:hover,
    details a:hover {
        color: #333 !important;
        font-weight: normal !important;
        text-decoration: none !important;
        letter-spacing: normal !important;
        font-size: 12px !important;
        font-family: sans-serif !important;
    }


    .text-rectangle {
        padding: 14px;
        text-align: justify;
        line-height: 1.6em;
    }

    .rectangles-container {
        width: 94%;
        margin-left: auto;
        margin-right: auto;
        display: grid;
        grid-template-columns: 25% 25% 25% 25%;
        grid-column-gap: 16px;
        grid-row-gap: 16px;
        position: relative;
        left: -25px;
    }


    .rectangle {
        background-color: #fff;
        color: #000;
        font-size: 12px;
        font-family: sans-serif;
        /* border: 1px solid #fff;*/
        box-shadow: 1px 1px 3px 3px #a5a5a5;
        outline: 3px solid #fff;
    }



    .rectangle-top-background {
        width: 100%;
        background: #4d4b4b;
        background: linear-gradient(160deg, rgb(187, 187, 187) 0%, rgb(64, 64, 64) 100%);
        color: white;
        font-size: 12px;
        padding-bottom: 6px;
    }



    .logo-rectangle {
        text-align: center;
        padding-top: 14px;
        filter: invert(90%);
        /*  margin-left: auto;
  margin-right: auto;*/
    }

    .logo-rectangle img {
        width: 100%;
    }

    .logo-rectangle::before {
        content: "";
        position: absolute;
        left: 5%;
        width: 90%;
        height: 73px;
        background-color: black;
        z-index: -1;
        filter: invert(100%);
    }



    .quantity-emphasis {
        font-size: 16px;
        padding: 5px;
        font-weight: 600;
        background: #dff2ff;
        color: #4183bd;
    }


    .price-emphasis {
        font-size: 16px;
        padding: 3px;
        font-weight: 600;
        color: #e17c0f;
    }

    .store-button {
        display: inline-block;
        height: auto;
        background: #37593d;
        background: linear-gradient(178deg, rgb(79 103 91) 0%, rgb(48 107 42) 100%);
        box-shadow: 1px 2px 3px 1px #474646;
        padding: 4px;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 12px;
        color: white !important;
        text-decoration: none !important;
    }

    .store-button:hover {
        background: linear-gradient(179deg, rgb(127 77 3) 0%, rgb(167 107 29) 100%);
    }


    @media screen and (max-width: 1024px) {
        .rectangles-container {
            grid-template-columns: 33% 33% 33%;
            grid-column-gap: 12px;
            grid-row-gap: 12px;
            left: -10px;
        }
    }

    @media screen and (max-width: 640px) {
        .rectangles-container {
            grid-template-columns: 50% 50%;
            grid-column-gap: 12px;
            grid-row-gap: 12px;
            left: -6px;
        }


    .rectangle-top-background {
        font-size: 11px!important;
        letter-spacing:-0.03em;
    }

        .logo-rectangle img {
            width: 80%;
        }

        .logo-rectangle::before {
            left: 5%;
            width: calc(80% + 10%);
            height: 80%;
        }

        .store-button:hover {
            background: linear-gradient(179deg, rgb(201 183 147) 0%, rgb(149 102 53) 100%);
        }
    }

