﻿
/*  testimonial  */
ul#tlc-list-0 {
    /*max-width: var(--max-width-container);*/
    margin: 0 auto;
    padding: 0;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    row-gap: 0;
    column-gap: 30px;
    align-items: start;
    justify-items: center;
    justify-content: center;
}

#tlc-wrapper li {
    height: initial;
    margin-bottom: 20px;
    margin-top: 20px;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    background-color: var(--text-white);
    -webkit-border-radius: var(--radius-box);
    -moz-border-radius: var(--radius-box);
    border-radius: var(--radius-box);
    -webkit-box-shadow: 0 1px 10px rgba(0,0,0,.11);
    -moz-box-shadow: 0 1px 10px rgba(0,0,0,.11);
    box-shadow: 0px 1px 10px 0px rgba(0,0,0,.11);
    /*max-width: 450px;*/ 
    height: calc(100% - 30px);
}

    #tlc-wrapper li .single-wrapping {
        display: grid;
        grid-template-columns: 0.6fr 1fr;
        grid-template-rows: auto auto auto;
        justify-content: center;
        align-items: center;
        align-content: center;
        column-gap: 15px;
        min-height: 260px;
        padding: 50px 40px;
        color: var(--p-main);
        font-weight: 400;
        -webkit-transition: none;
        transition: none;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        height: calc(100% - 100px);
    }

        #tlc-wrapper li .icon {
            width: 45px;
            height: 45px;
            -webkit-border-radius: var(--radius-circle);
            -moz-border-radius: var(--radius-circle);
            border-radius: var(--radius-circle);
            background-color: #d6d6d6;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            align-content: center;
            grid-row-start: span 2;
            margin-left: auto;
            margin-right: 0;
        }

            #tlc-wrapper li .icon img {
                max-width: 30px;
            }

        #tlc-wrapper li .author {
            padding-top: 0;
            font-weight: 400;
        }

        #tlc-wrapper li .author-company {
            color: var(--bright-pink);
        }


        #tlc-wrapper li .testimonial {
            text-align: center;
            font-size: 16px;
            font-size: 1.6rem;
            line-height: 26px;
            line-height: 2.6rem;
            font-weight: 300;
            color: var(--p-main);
            margin-top: 20px;
            grid-column-start: span 2;
        }



        /*  hover */

  /*  #tlc-wrapper li .single-wrapping:hover {
        background-image: linear-gradient(var(--footer-bg-red), var(--red));
        color: var(--text-white);
    }

        #tlc-wrapper li .single-wrapping:hover .testimonial {
            color: var(--text-white);
        }

        #tlc-wrapper li .single-wrapping:hover .author-company {
            color: #cdc9ca !important;
        }*/

/* Deactivate links - temporary measure */
.tlc-link {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: black;
}