/*region Body*/
.moseley-notification
{
    background-color: #d33829A0;
    padding: 10px 10px 10px 10px;
    animation: disappear 400ms forwards;
    animation-delay: 8s;
    overflow: hidden;
}

.horizontal
{
    background-color: red;
    border: 0;
    height: 1px;
}

.moseley-title
{
    color: #d33829;
}

.moseley-subtitle
{
    color: #7d7d7d;
}

a, a:visited, a:hover, a:active
{
    color: #d33829;
}

a.self-link
{
    color: #7d7d7d;
}

/*endregion*/

/*region Form*/

.moseley-caption
{
    text-align: left;
    background: #0000;
}


.moseley-form .short
{
    max-width: 30em;
}

.moseley-form input:not([type="submit"]):not([type="radio"]), .moseley-form textarea
{
    background: #3a3a3a24;
    transition: background 0.5s;
    box-shadow: 1px 1px 3px #888 inset;
}

.moseley-form input:focus:not([type="submit"]):not([type="radio"]), .moseley-form textarea:focus
{
    background-color: #fff !important;
    background: #3a3a3a24;
    transition: background-color 0.5s;
    box-shadow: 1px 1px 3px #888 inset;
}

.moseley-form input[type="submit"]
{
    background-color: #cc4a33;
    min-width: 140px;
}


@keyframes disappear
{
    90%
    {
        padding: 0px;
    }
    100%
    {
        height: 0px;
        padding: 0px;
        transform: scale(0);
    }
}


/*region Spinner*/
.spinner
{
    margin: 20px auto 0;
    width: 70px;
    text-align: center;
}

.spinner > div
{
    width: 18px;
    height: 18px;
    background-color: #333;

    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1
{
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2
{
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay
{
    0%, 80%, 100%
    {
        -webkit-transform: scale(0)
    }
    40%
    {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay
{
    0%, 80%, 100%
    {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40%
    {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

/*endregion*/

/*endregion*/

/*region Table*/

.moseley-table
{
    border-collapse: collapse !important;
    box-shadow: 0 0 0 2px rgba(70, 70, 70, 0.5);
    transition-duration: 2s !important;
}

::selection
{
    background: rgba(211, 56, 41, 0.5);
    color: #000000;
}

.moseley-table hr
{
    margin-top: .5em !important;
    margin-bottom: .5em !important;
}

/*.moseley-table a,*/
.moseley-table p
{
    margin-top: .2em !important;
    margin-bottom: .2em !important;
}


.moseley-table td, .moseley-table th
{
    max-width: 450px !important;
    min-width: 100px !important;
    padding: 10px !important;
}

.moseley-table tr:hover
{
    background-color: #dfdfdf
}

/*region Small Table*/
@media screen and (max-width: 1000px)
{
    .moseley-table
    {
        border: 0;
        empty-cells: hide;
    }

    .moseley-table p
    {
        text-align: left !important;
    }

    .moseley-table caption
    {
        font-size: 1.3em;
    }

    .moseley-table thead
    {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .moseley-table tr
    {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }

    .moseley-table td
    {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: 1em;
        text-align: left;
        max-width: 10000px !important;

    }

    .moseley-table td::before
    {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    .moseley-table td:last-child
    {
        border-bottom: 0;
    }

    .moseley-table-title
    {
        font-size: 1em !important;
    }

    .moseley-table-subtitle
    {
        font-size: 0.75em !important;
    }

}

/*endregion*/

.moseley-table-title, .moseley-table-title:visited
{
    text-align: left;
    font-size: 1.5em;
}

.moseley-table-subtitle, .moseley-table-subtitle:visited
{
    float: right;
    font-size: 1.2em;
}

/*endregion*/
