@font-face {
  font-family: 'fontello';
  src: url('fonts/fontello.eot?83579081');
  src: url('fonts/fontello.eot?83579081#iefix') format('embedded-opentype'),
       url('fonts/fontello.woff?83579081') format('woff'),
       url('fonts/fontello.ttf?83579081') format('truetype'),
       url('fonts/fontello.svg?83579081#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* Form input style */
.plugins_entry form {
    margin: 1em;
}

.plugins_entry form label {
    cursor: pointer;
    float: left;
    clear: both;
    overflow: hidden;
    margin-bottom: 20px;
}

.plugins_entry form button {
    float: left;
    clear: both;
}

.plugins_entry input[type="checkbox"] , input[type="radio"] {
    display: none;
}

.plugins_entry input[type="checkbox"] + .forcheckbox , input[type="radio"] + .forcheckbox {
    color: #555;
}

    /* Check Boxe */

    .plugins_entry input[type="checkbox"] + .forcheckbox:before {
        content: "\e807";
        font-family: fontello;
        display: inline-block;
        speak: none;
        line-height: 1;
        text-transform: none;
        font-variant: normal;
        -webkit-font-smothing: antialiased;
        width: 1em;
        margin-left: .3125em;
        color: #777;
    }

    .plugins_entry input[type="checkbox"]:checked + .forcheckbox:before {
        content: "\e800";
        animation: fr-animation 200ms ease-in;
        -webkit-animation: fr-animation 200ms ease-in;
    }

    .plugins_entry button {
        width: 100px;
        height: 30px;
        border: 1px solid #ccc;
        background: #ddd;
        text-align: center;
        font: bold 11px Tahoma;
        color: #777;
        margin-top: 20px;
    }

    @keyframes fr-animation {
        0% {
            transform: scale(0);
        }

        50% {
            transform: scale(1.3)
        }

        100% {
            transform: scale(1)
        }
    }

    @-webkit-keyframes fr-animation {
        0% {
            -webkit-transform: scale(0);
        }

        50% {
            -webkit-transform: scale(1.3);
        }

        100% {
            -webkit-transform: scale(1);
        }
    }

/* Container */

#plugins_container {
    width: 40%;
    min-height: 400px;
    margin: 50px auto;
    border-radius: 7px;
    background: #ededed;
    border: 1px solid #ddd;
    padding: 15px;
    direction: ltr;
    text-align: left;
    overflow: hidden;
}

#plugins_container h2 {
    border-bottom: 1px dashed #ddd;
    padding-bottom: 20px;
    color: #444;
}

.plugins_entry {
    margin-top: 20px;
}
#plugins_container li:first-of-type{
    list-style: none !important;    
    font-weight: bold;
    border-bottom: dotted 1px #ccc;
    line-height: 3;
    margin: 0 0 20px 0;
}

#plugins_container li {
    list-style: square;
    line-height: 2;
    margin-left: 25px;
    color: #555;
}
