.spinner-container {
    position: relative;
    min-height: 150px;
}

.strong {
    font-weight: bold;
}

.content-action-button {
    margin-top: 7px;
    margin-right: 9px;
}

.stat-container {
    display: table;
    margin-bottom: 1.5em;
    width: 100%;
}

.stat-holder {
    display: table-cell;
    width: 25%;
}

.stat span {
    display: block;
    margin-bottom: .4em;
    font-size: 32px;
    font-weight: 600;
    font-style: normal;
    color: #4A515B;
}

.stat {
    height: 50px;
    padding: 15px;
    margin-right: 1em;
    font-size: 12px;
    font-style: italic;
    text-align: center;
    color: #888;
    background: #FFF;
    border: 1px solid #CCC;
    border-radius: 5px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, .5);
}

.stat-container .stat-holder:last-child .stat {
    margin: 0;
}

.drop-box {
    background: #F8F8F8;
    border: 5px dashed #DDD;
    width: 200px;
    height: 65px;
    text-align: center;
    padding-top: 25px;
    margin: 10px;
}

.dragover {
    border: 5px dashed blue;
}

@media (max-width: 767px) {
    .stat-container {
        float: left;
        display: block;
        margin-bottom: 1em;
    }
    .stat-holder {
        float: left;
        display: block;
        width: 50%;
        margin-bottom: 1em;
    }
    .stat {
        margin: 0 1em;
    }
    .stat-container .stat-holder:last-child .stat {
        margin: 0 1em;
    }
}

/*------------------------------------------------------------------

[Login Stylesheet]

    Project:        Adminia Admin
    Version:        1.0
    Last change:    05/11/2012
    Assigned to:    Rod Howard (rh)


[Table of contents]

    1. Container / #login-container
    2. Header / #login-header
    3. Content / #login-content
    4. Extra / #login-extra
    5. Max Width: 480px

-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[1. Container / #login-container]
*/

#login-container {
    width: 425px;
    margin: 120px auto 0;
    margin-top: 0px;
}

/*------------------------------------------------------------------
[2. Header / #login-header]
*/

#login-header {
    padding: 12px 20px;
    margin-bottom: 1em;
    background: #3C4049;
    background: -moz-linear-gradient(top, #4A515B 0%, #3C4049 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4A515B), color-stop(100%, #3C4049));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #4A515B 0%, #3C4049 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #4A515B 0%, #3C4049 100%);
    /* Opera11.10+ */
    background: -ms-linear-gradient(top, #4A515B 0%, #3C4049 100%);
    /* IE10+ */
    background: linear-gradient(top, #4A515B 0%, #3C4049 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4A515B', endColorstr='#3C4049');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#4A515B', endColorstr='#3C4049')";
    border-radius: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .5);
}

#login-header h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    color: #FFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .4);
}

/*------------------------------------------------------------------
[3. Content / #login-content]
*/

#login-content {
    padding: 20px;
    background: #FFF;
    border: 1px solid #DDD;
    border-radius: 5px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .10);
}

#login-content input {
    width: 96%;
    padding: 2% 2%;
}

#login-content #remember-me {
    margin-top: 3px;
}

#login-content #remember-me input {
    display: inline-block;
    width: auto;
    padding: 0;
}

#login-content #remember-me label {
    position: relative;
    top: 2px;
    display: inline-block;
    margin-left: .5em;
}

/*------------------------------------------------------------------
[4. Extra / #login-extra]
*/

#login-extra {
    margin-top: 1.5em;
    text-align: center;
}

#login-extra p {
    font-size: 12px;
    color: #888;
}

/*------------------------------------------------------------------
[5. Max Width: 480px]
*/

@media (max-width: 480px) {
    #login-container {
        width: 100%;
        margin: 40px auto 0;
    }
}

#edit-profile {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
    table.table, .table thead, .table tbody, .table th, .table td, .table tr {
        display: block;
    }
    .table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .table tr {
        border: 1px solid #ccc;
    }
    .table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }
    .table td:before {
        position: absolute;
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }
    /* List table */
    .item-list td:nth-of-type(1):before {
        content: "Name";
    }
    .item-list td:nth-of-type(2):before {
        content: "Slug";
    }
    .item-list td:nth-of-type(3):before {
        content: "Created Date";
    }
    .item-list td:nth-of-type(4):before {
        content: "Active";
        text-align: left;
    }
    .item-list td:nth-of-type(5):before {
        content: "Description";
    }
    .item-list td:nth-of-type(6):before {
        content: "";
    }
    /* Version table */
    .version-list td:nth-of-type(1):before {
        content: "Version";
    }
    .version-list td:nth-of-type(2):before {
        content: "Uploaded Date";
    }
    .version-list td:nth-of-type(3):before {
        content: "Downloads";
    }
    .version-list td:nth-of-type(4):before {
        content: "Update Checks";
    }
    .version-list td:nth-of-type(5):before {
        content: "";
    }
}

.oauth-status {
    padding-top: 11px !important;
}

.list-buttons {
    width: 90px;
    text-align: center !important;
}

.list-buttons .btn {
    margin-top: 5px;
}

.plan-actions .alert {
    margin-bottom: 14px;
    text-align: center;
}

.pricing-plans.plans-2.row-2 {
    margin-top: 20px;
}

.error-list {
    text-align: left;
}

.unsubscribe {
    text-align: center;
    margin-top: 17px;
}

.padded-top {
    margin-top: 15px !important;
}

.list-filter-med {
    margin-top: 7px;
    margin-left: 13px;
    height: 17px;
}

.widget-content.feature-flags {
    padding: 10px;
}

.switchery {
    background-color: #fff;
    border: 1px solid #dfdfdf;
    border-radius: 20px;
    cursor: pointer;
    display: inline-block;
    height: 30px;
    position: relative;
    vertical-align: middle;
    width: 50px;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-background-clip: content-box;
    background-clip: content-box;
}

.switchery>small {
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    height: 30px;
    position: absolute;
    top: 0;
    width: 30px;
}

.selectedUserContainer {
    max-height: 260px;
}

.selectedUserList {
    width: 300px;
    list-style: none;
}

.selectedUserList>li {
    text-align: left;
}

.selectedUserList>li>input {
    margin-top: 0px;
}

.selectedUserList>li>span {
    margin-left: 10px;
}

.app-logo {
    width: 100px;
}

.add-edit-container {
    margin: 10px;
}

.license-management .no-data {
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    text-align: center;
    padding-top: 15px;
}

.license-management form {
    padding: 25px;
}

.inline-add-customer {
    margin-top: 10px;
}

.filter-button {
    margin-left: 5px;
}

.modal-body.large {
    height: 500px;
}

.load-more {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}

.new-badge {
    height: 25px;
    margin-top: -2px;
    float: right;
}

.update-repos-container {
    max-width: 400px;
}

.pagination {
    float: right;
    margin-top: 0px;
    margin-left: 12px;
}

.search-pagination {
    float: right;
}

.field-selection {
    float: left;
}

.date-selector {
    width: 90px;
    margin-top: 7px;
}

.add-on {
    color: black;
    margin-top: 7px;
}

.domain-search-working {
    float: right;
    width: 25px;
    margin-top: 3px;
    margin-right: 5px;
}

.linegraph {
    height: 500px;
}

.bargraph {
    height: 300px;
}

.fetch-site-layout li {
    list-style: none;
}

.json-body-route {
    width: 100%;
    min-height: 130px;
}

.beta-warning {
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 20px;
}

.dark-link:link, .dark-link:visited, .dark-link:hover, .dark-link:active {
    color: black;
}

/* --- Plugin/Theme Tile --- */

.tile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    background-color: #fff;
    color: #444;
    justify-items: center;
}

@media only screen and (max-width: 1200px) {
    .tile-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 980px) {
    .tile-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.tile-grid.analytics {
    grid-template-columns: repeat(2, 1fr);
}

.analytics-tile {
    width: 100%;
    height: 250px;
}

.tile-grid .no-items {
    grid-column: 2 / span 3;
    height: 100%;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.plugin-theme-tile {
    background-color: #f7f7f7;
    width: 250px;
    height: 270px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    margin: 10px;
}

.plugin-theme-tile:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.plugin-theme-tile .name {
    width: 160px;
    height: 55px;
    padding: 7px;
    font-weight: bold;
    display: -webkit-flex;
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.plugin-theme-tile .thumbnail {
    max-width: 55px;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0px;
}

.plugin-theme-tile .separator {
    border-top: 1px solid #dedede;
    height: 1px;
    margin: 15px 10px 15px 10px;
}

.plugin-theme-tile .body {
    text-align: center;
}

.plugin-theme-tile .current-version h4 {
    margin-bottom: 0.5em;
}

.plugin-theme-tile .new-tile {
    height: 100%;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.plugin-theme-tile .new-tile i {
    color: #d0d0d0;
    font-size: 80px;
}

.installation-code-button {
    text-align: center;
    margin-bottom: 10px;
}

.pointer {
    cursor: pointer;
}

.text-center {
    text-align: center !important;
}

.modal-body.product-name {
    height: 400px;
}

.add-site button {
    margin-top: -11px;
    margin-left: 5px;
}

.verify-working {
    width: 25px;
}

.license-meta ul {
    list-style: none;
    margin-left: 0px;
}

.license-table .button-container {
    text-align: center;
}

.license-table .button-container button {
    margin-bottom: 8px;
}

.domain-count {
    text-align: center;
    margin-top: 83px;
    font-size: 77px;
}

.analytics-widget .no-analytics-plan {
    text-align: center;
}

.analytics-widget .no-analytics-plan img {
    width: 450px;
}

.analytics-widget .no-analytics-plan h5 {
    text-align: left;
}

.hand-select {
    cursor: pointer;
}

.cd-source-tile {
    background-color: #f7f7f7;
    width: 250px;
    height: 270px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    margin: 10px;
}

.cd-source-tile:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.cd-source-tile .cd-source-img {
    text-align: center;
    padding-top: 30px;
}

.cd-source-tile .cd-source-connect {
    text-align: center;
    margin-top: 15px;
}

.cd-source-tile.bitbucket img {
    width: 143px;
}

.cd-source-tile.gitlab img {
    width: 172px;
}

.repo-filter {
    width: 98%;
}

.cd-meta-data {
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 8px;
}

.cd-meta-data .spinner-container {
    min-height: 35px;
}

.cd-meta-data .meta-row img {
    width: 20px;
}

.cd-meta-data .meta-label {
    font-weight: bold;
}

.license-filter {
    text-align: center;
}

.license-filter .chosen-container {
    margin: 10px;
}

.license-filter .btn {
    margin-top: -10px;
}

.license-filter input {
    width: 300px;
    margin-right: 10px;
}

.clear-date {
    margin-top: 5px;
    margin-left: 5px;
}

.start-over {
    margin-top: 4px;
}

.analytics-widget.step2 .date-selector {
    width: 111px;
}

.widget-content-limit-size {
    max-height: 500px;
    overflow-y: scroll;
}

.plan-price.custom {
    font-size: 52px;
}

.power-analytics-saved {
    margin-top: 10px;
}

.breadcrumb-link {
    color: white;
    text-decoration: underline;
}

.breadcrumb-link:hover {
    color: white;
    text-decoration: none;
}

.widget-content.active-installs {
    font-size: 50px;
    text-align:center;
    height: 197px;
}

.widget-content.active-installs .wrapper {
    padding-top: 76px;
    height: 100%;
}

.active-install-label {
    position: relative;
    font-size: 17px;
    margin-top: 27px;
}

.modal-wide {
    width: 80% !important;
    max-width: 80% !important;
}