/* [THE LOADING SPINNER] */
#spinner-front, #spinner-back {
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    transition: all 1s;
}
#spinner-front {
    z-index: 999;
    margin-top: 45vh;
    color: #fff;
    text-align: center;
}
#spinner-back {
    z-index: 998;
    height: 100vh;
    background: #000;
}
#spinner-front.show {
    visibility: visible;
    opacity: 1;
}
#spinner-back.show {
    visibility: visible;
    opacity: 0.7;
}

/* Shared */
.loginBtn {
    box-sizing: border-box;
    position: relative;
    /* width: 13em;  - apply for fixed size */
    margin: 0.2em;
    padding: 0 15px 0 46px;
    border: none;
    text-align: left;
    line-height: 34px;
    white-space: nowrap;
    border-radius: 0.2em;
    font-size: 16px;
    color: #FFF;
    text-decoration: none;
}
.loginBtn:before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 34px;
    height: 100%;
}
.loginBtn:focus {
    outline: none;
}
.loginBtn:active {
    box-shadow: inset 0 0 0 32px rgba(0,0,0,0.1);
}

/* Facebook */
.loginBtn--facebook {
    background-color: #4C69BA;
    background-image: linear-gradient(#4C69BA, #3B55A0);
    /*font-family: "Helvetica neue", Helvetica Neue, Helvetica, Arial, sans-serif;*/
    text-shadow: 0 -1px 0 #354C8C;
    padding: 10px 10px 10px 40px;
}
.loginBtn--facebook:before {
    border-right: #364e92 1px solid;
    background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/14082/icon_facebook.png') 6px 6px no-repeat;
}
.loginBtn--facebook:hover,
.loginBtn--facebook:focus {
    background-color: #5B7BD5;
    background-image: linear-gradient(#5B7BD5, #4864B1);
}

.btn {
    border: none;
    padding: 5px 10px;
}

.tbl-pages, .tbl-pages thead tr th, .tbl-pages tbody tr td {
    border-collapse: collapse;
    padding: 5px 10px;
}

.tbl-pages thead tr th.page-name {
    text-align: left;
}

.tbl-pages tbody tr td {
    border-bottom: 1px dashed #ccc;
    border-top: 1px dashed #ccc;
}

.tbl-pages tbody tr td.page-name {
    min-width: 300px;
}
