body {
    padding-bottom: 50px;
}

section, header, footer {
    padding-top: 50px;
}

/* Make h3 smaller on mobiles */
@media screen and (max-width: 768px) {
    h3 {
        font-size: 14px;
    }
}

.content-center {
    text-align: center;
}

.content-left {
    text-align: left;
}

/* Pre-loader icon with spinning animation */
.pre-loader {
    margin-left: auto;
    margin-right: auto;
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#tinyMCE {
    margin-left: auto;
    margin-right: auto;
}

#category {
    margin-top: 24px;
    margin-bottom: 12px;
}

.negative-margin-bottom-10 {
    margin-bottom: -10px;
}

#social {
    margin-top: 8px;
    margin-bottom: 8px;
}

/* Full screen modal */
.fullscreen .modal-dialog {
    margin: 0 0 0 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 0;
    color: #333;
}

.fullscreen .modal-content {
    height: 100%;
    min-height: 100%;
    border-radius: 0;
    color: #333;
    background: rgba(255, 255, 255, 1);
    overflow: auto;
}

.fullscreen .modal-body ul {
    padding: 100px 0 0 0;
}

.fullscreen .modal-body li {
    padding: 10px 0 10px 0;
}

@media (max-width: 480px) {
    .fullscreen .modal-body ul {
        padding: 30px 0 0 0;
        overflow: auto;
    }

    .fullscreen .modal-body li {
        padding: 4px 0 4px 0;
    }

    .fullscreen .modal-body a {
        text-transform: uppercase;
        font-weight: 700;
    }
}