/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

.sasu-showable {
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, max-height 0.4s ease-in-out, margin 0.4s ease-in-out, padding 0.4s ease-in-out;
    max-height: 2000px;
    overflow: hidden;
}

.sasu-hidden:not(.sasu-showable) {
    display: none;
}
.sasu-hidden.sasu-showable {
    transform: scale(0);
    opacity: 0;
    max-height: 0;
    margin: 0 !important;
    padding: 0 !important;
}

.sasu .notice p {
    margin: 0;
    padding-top: .5em;
    padding-bottom: .5em;
}
.sasu-lighter {
    opacity: .54;
}
.sasu-large {
    font-size: 2.5em;
}
.sasu-domains {
    max-width: 90%;
}
.sasu-domains a.button {
    /*display: inline-block;
    border: 1px solid;
    padding: 8px;*/
    margin-bottom: 16px;
    margin-right: 16px;
}
.sasu-loader {
    font: 0/0 a;
    display: inline-block;
    border-left: 7px solid;
    border-right: 7px solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    width: 32px;
    height: 32px;
    border-radius: 50%;

    -webkit-animation-name: spin;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 1.5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 1.5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-transition: rotate(3600deg);
}
.sasu-loader:before {
}

.sasu-loader-container {
    padding: 16px;
    text-align: center;
}



@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}
@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
