body {
    margin: 0;
    padding: 0;
    background: rgb(242, 242, 242);
    font-family: 'ArialMT', 'Helvetica', 'sans-serif';
}

h1 {
    font-weight: 500;
    font-size: 18px;
}

.container {
    padding: 0 17px;
    max-height: 100%;
    overflow: scroll;
    font-size: 12px;
}

.empty-state {
    list-style: none;
    padding: 15px;
    margin-bottom: 6px;
    background: white;
    border-radius: 3px;
    border: 1px solid rgb(224, 227, 229);
}

.info {
    background: #D1E8F9;
}

.header {
    text-align: center;
}

.logo {
    width: 220px;
    margin: 20px;
}

input {
    display: block;
    margin-bottom: 10px;
}

.button {
    background: #fbfbfb;
    border: 1px solid rgb(190, 190, 190);
    color: #848484;
    line-height: 32px;
    height: 32px;
    font-size: 13px;
    padding: 0 10px;
    box-shadow: none;
    border-radius: 2px;
    display: inline-block;
    vertical-align: top;
    line-height: 20px;
    outline: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

    .button:focus {
        outline: none !important;
        -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 2px 0px !important;
        -moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 2px 0px !important;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 2px 0px !important;
    }

.generate-secret-button {
    margin-bottom: 10px;
}

.button-action {
    padding: 0 20px;
    background: rgb(45, 46, 131);
    color: white;
    border-color: rgb(45, 46, 131);
}

.form-group {
    width: 250px;
    margin: 25px 0;
}

.append-button input {
    width: 75%;
    float: left;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
}

.append-button button {
    width: 25%;
    float: left;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

select,
input {
    margin: 0;
    margin-bottom: 5px;
    padding: 0 5px;
    border-radius: 2px;
    border: 1px solid rgb(190, 190, 190);
    background: white;
    line-height: 32px;
    height: 32px;
    outline: none;
    box-shadow: none;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

    select:focus,
    input:focus {
        outline: none !important;
        -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 2px 0px !important;
        -moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 2px 0px !important;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 2px 0px !important;
    }



label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    color: #8C8C8C;
    font-size: 12px;
    text-transform: capitalize;
    background: none;
    padding: 0;
}

.hidden {
    display: none;
}

ul {
    margin: 0;
    padding-left: 20px;
}

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.popover-wrapper {
    position: relative;
    font-size: 10px;
    font-weight: normal;
    text-transform: none;
    line-height: 1.2;
}

    .popover-wrapper .popover-trigger {
        display: inline-block;
        width: 12px;
        height: 12px;
        line-height: 13px;
        text-align: center;
        border: 1px solid #9c9c9c;
        border-radius: 100%;
    }

    .popover-wrapper .popover-content {
        position: absolute;
        left: 100%;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 6px;
        width: 280px;
        background-color: #434343;
        color: #888888;
        padding: 5px;
        display: none;
    }

        .popover-wrapper .popover-content:before {
            display: block;
            position: absolute;
            right: 100%;
            top: 50%;
            transform: translate(50%, -50%) rotate(45deg);
            content: '';
            width: 5px;
            height: 5px;
            background: #434343;
        }

    .popover-wrapper:hover .popover-content {
        display: block;
    }
