
    .NK_service_list_container_v2{
        
    }
    
    .NK_service_list_container_v2 > h2{
        text-align: center;
    }
    
    .NK_service_list_wrapper_v2{
        display: flex;
        flex-direction: row;  
        padding: 20px 0;
        border-top: 2px solid var(--service-grey);
    }
    
    .NK_service_list_v2{
        list-style: none;
        padding: 0;
        width: 50%;
    }
    
    .NK_list_gap{
        background-image: radial-gradient(var(--service-grey) 65%, transparent 10%);
        width: 2px;
    }
    
    .NK_service_list_element_v2{
        margin: auto;
        padding: 10px;
    }
    /*
    .NK_service_list_element_v2 > input{
        display: none;
    }
    */
    .NK_service_list_element_v2 > div{
        display: inline-block;
        padding: 15px;
        border-radius: 10px;
        width: 100%;
    }
    
    .NK_service_list_element_v2 > div > .NK_service_list_open_content{
        display: flex;
        justify-content: space-between;
        cursor: pointer;    
    }
    
    .NK_service_list_element_v2 > div > .NK_service_list_open_content::before{
        content: url("data:image/svg+xml,%3Csvg class='svg-icon svg-arrow-icon svg-arrow-right' xmlns='http://www.w3.org/2000/svg' aria-hidden='true' viewBox='0 0 24 24' fill='rgb(0,101,128)'%3E%3Cpath d='M8.14238 4C8.4106 4 8.67881 4.1001 8.88742 4.3103L15.6623 11.1768C15.8808 11.397 16 11.6773 16 11.9876C16 12.2979 15.8808 12.5782 15.6623 12.7984L14.9669 13.499L9.03642 19.6349C8.63907 20.0352 7.84437 20.1554 7.43709 19.745L7.35762 19.6649C7.15894 19.4647 7.04967 19.2045 7.04967 18.9142C7.04967 18.6239 7.10927 18.3637 7.35762 18.1134L13.1788 12.2178C13.2384 12.1578 13.2682 12.0777 13.2682 11.9876C13.2682 11.9075 13.2384 11.8274 13.1788 11.7674L7.30795 5.88179C7.10927 5.6816 7 5.42135 7 5.13108C7 4.85081 7.10927 4.58055 7.30795 4.38036L7.38742 4.30029C7.59603 4.10009 7.86424 4 8.14238 4Z'%3E%3C/path%3E%3C/svg%3E");
        color: rgba(0,101,128,1);
        width: 1.5em;
        height: 1.5em;
        text-align: center;
        transition: all .35s;
        transform: rotate(90deg);
    }
    
    .NK_service_list_element_v2 > div > .NK_service_list_open_content > p{
        width: 75%;
        display: flex;
        justify-content: space-between;
        color: grey;
        font-weight: 600;
    }
    
    .NK_service_list_close_content{
        width: 45%;
        height: 35px;
        position: absolute;
        z-index: -1;
        cursor: pointer;
    }
    
    .NK_service_list_close_content::before{
        
    }
    
    .NK_service_list_element_v2 > div > .NK_service_list_open_content{
        display: flex;
        justify-content: space-between;
        cursor: pointer;    
    }
    
    .NK_service_list_element_content_v2{
        display: none;
    }
    
    
    /* Media */
    
    
    @media screen and (max-width: 768px){
         
        .NK_service_list_wrapper_v2{
            flex-direction: column;
        }
        
        .NK_service_list_v2{
            width: 100%;
        }
         
        .NK_list_gap{
            display: none;
        }   
        
        .NK_service_list_close_content{
            width: 95%;
            height: 40px;
        }
    }
    
    
    /* Inputs */
    input[name="NKsvli_v2"]{
        display: none;
    }
    
    input[name="NKsvli_v2"]:checked ~ div{
        background-color: var(--service-grey);
    }
    
    input[name="NKsvli_v2"]:checked ~ div > .NK_service_list_open_content{
        
    }
    
    input[name="NKsvli_v2"]:checked ~ div > .NK_service_list_close_content{
        display: initial;
        z-index: 2;
    }
    
    input[name="NKsvli_v2"]:checked ~ div > .NK_service_list_open_content::before{
        transform: rotate(-90deg);
    }
    
    input[name="NKsvli_v2"]:checked ~ div > .NK_service_list_open_content > p{
        color: black;
    }
    
    input[name="NKsvli_v2"]:checked ~ div > .NK_service_list_element_content_v2{
        display: initial;
    }
    