﻿#licence_update_form_container {
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    position: relative;
}

#licence_type_selection_panel {
    width: 15%;
    background-color: #111;
    border-radius: 10px;
    text-align: center;
    float: left;
}

    #licence_type_selection_panel ul {
        display: block;
        padding: 0;
        margin: 0;
    }

    #licence_type_selection_panel a {
        color: #bbb;
        text-decoration: none;
    }

    #licence_type_selection_panel li {
        display: block;
    }

    #licence_type_selection_panel i {
        display: block;
        text-align: center;
        color: #B3B3B3;
        font-size: 20px;
        margin-bottom: 8px;
    }

    #licence_type_selection_panel ul a {
        color: #B3B3B3;
        text-decoration: none;
        box-sizing: border-box;
        display: block;
        text-transform: capitalize;
        padding: 20px;
        font-size: 15px;
    }

    #licence_type_selection_panel li:hover a, li#active {
        background-color: #313131;
    }

        #licence_type_selection_panel li:hover i, li#active i {
            color: #17BCE8;
        }

    #licence_type_selection_panel li:focus i {
        color: #17BCE8;
    }

#licence_update_form {
    float: left;
    width: 85%;
    background-color: rgb(255,255,255);
    position: relative;
    padding: 0px 20px;
}

    #licence_update_form .form_header {
        border-bottom: 1px solid #bbb;
        padding: 0px 0px 20px 0px;
    }

    #licence_update_form .form_content {
        margin: 20px 0px;
    }

@media screen and (max-width: 768px) {
    #add_licence_forms_container {
        display: block;
    }

    #licence_type_selection_panel {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 0;
        float: none;
    }

        #licence_type_selection_panel::-webkit-scrollbar {
            height: 6px;
        }

        #licence_type_selection_panel::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 3px;
        }

        #licence_type_selection_panel ul {
            display: flex;
            flex-direction: row;
            padding: 0;
            margin: 0;
        }

        #licence_type_selection_panel li {
            display: inline-block;
            flex: 0 0 auto;
            text-align: center;
            white-space: nowrap;
        }

    #licence_update_form {
        width: 100%;
        float: none;
        padding: 10px;
    }
}