 /* =========================================================
       INTRO
    ========================================================= */

    .size-guide-intro {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .size-guide-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .size-guide-description p {
        margin-bottom: 0;
    }


    /* =========================================================
       ACCORDION
    ========================================================= */

    .size-guide-accordion {
        width: 100%;
    }

    .size-guide-item {
        border-bottom: 1px solid #e5e5e5;
    }

    .size-guide-header {
        margin: 0;
    }

    .size-guide-button {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 20px 5px;

        border: 0;
        outline: 0;

        background: transparent;

        color: #222;

        font-size: 17px;
        font-weight: 600;

        text-align: left;

        cursor: pointer;

        box-shadow: none !important;
    }

    .size-guide-button:hover {
        color: #28878b;
    }

    .size-guide-arrow {
        width: 32px;
        height: 32px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;

        background: #f5f5f5;

        color: #555;

        flex-shrink: 0;

        transition: all 0.3s ease;
    }

    .size-guide-button:hover .size-guide-arrow {
        background: rgba(40, 135, 139, 0.1);
        color: #28878b;
    }

    .size-guide-button:not(.collapsed) {
        color: #28878b;
    }

    .size-guide-button:not(.collapsed) .size-guide-arrow {
        background: #28878b;
        color: #fff;

        transform: rotate(180deg);
    }


    /* =========================================================
       ACCORDION BODY
    ========================================================= */

    .size-guide-body {
        padding: 0 5px 25px;
    }

    .size-guide-body > p {
        margin: 0 0 20px;

        color: #666;

        font-size: 14px;
        line-height: 1.7;
    }


    /* =========================================================
       TABLE
    ========================================================= */

    .size-guide-table {
        width: 100%;

        margin: 0;

        border: 1px solid #e5e5e5;
    }

    .size-guide-table th {
        padding: 13px 12px;

        background: #f7f7f7;

        border: 1px solid #e2e2e2;

        color: #333;

        font-size: 14px;
        font-weight: 600;

        vertical-align: middle;
    }

    .size-guide-table td {
        padding: 12px;

        border: 1px solid #e8e8e8;

        color: #555;

        font-size: 14px;

        vertical-align: middle;
    }

    .size-guide-table tbody tr:hover td {
        background: rgba(40, 135, 139, 0.035);
    }


    /* =========================================================
       TIPS
    ========================================================= */

    .size-tips-list {
        padding-left: 20px;

        color: #555;

        font-size: 14px;
        line-height: 1.8;
    }

    .size-tips-list li {
        margin-bottom: 8px;
        padding-left: 4px;
    }

    .size-tips-list li:last-child {
        margin-bottom: 0;
    }


    /* =========================================================
       MOBILE
    ========================================================= */

    @media (max-width: 767px) {

        .category-main-block .card-body {
            padding: 25px 20px !important;
        }

        .size-guide-description {
            font-size: 14px;
        }

        .size-guide-button {
            padding: 17px 2px;

            font-size: 15px;
        }

        .size-guide-body {
            padding: 0 2px 22px;
        }

        .size-guide-table {
            min-width: 480px;
        }

        .size-guide-table th,
        .size-guide-table td {
            padding: 10px 8px;

            font-size: 13px;
        }

        .size-guide-arrow {
            width: 29px;
            height: 29px;
        }

    }
