﻿/* Base */
* {
    box-sizing: border-box;
}

body {
    font-size: 1rem;
    height: 100vh;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background: #616485;
}

h1 {
    font-size: 1.2rem;
}

h2 {
    font-size: inherit;
}

a {
    color: #00AFED;
    text-decoration: none;
    font-weight: 600;
}

.fa {
    color: #00AFED;
}

header > h1 {
    font-size: 1.4rem;
    text-align: center;
}

/* Site wrap*/
.site-wrap {
    width: 100%;
    height: 100vh;
}

/* Site Nav*/
.site-nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: fixed;
    z-index: 9;
    width: 100%;
    height: 68px;
    background-color: #3A3A3C;
}

    .site-nav img {
        height: 30px;
        width: auto;
        position: relative;
        top: 20px;
        left: 30px;
    }

main {
    background: #616485;
    position: relative;
    top: 68px;
}

/* Content column component */
.content-columns {
    padding: 1.2rem 2rem 2rem 2rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 68px);
}

    .content-columns .header {
        padding: 1.5rem 0;
        font-size: 1.6rem !important;
        color: #fff;
    }

    .content-columns h2 {
        font-weight: 500;
    }

    .content-columns .org {
        color: #00AFED;
        display: none;
        margin-left: 10px;
    }

    .content-columns .col {
        width: 100%;
        margin-right: 1rem;
        border-radius: 5px;
    }

/* Card component */
.content-card {
    background: #fff;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    min-height: 300px;
    border-radius: 4px;
}

.content-card__submit {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 20px 0;
    margin-top: 10px;
}

    .content-card__submit .button {
        margin-right: 10px;
    }

.content-card__title {
    margin-bottom: 45px;
    margin-top: 5px;
}

.content-card__body {
    padding: 30px 40px 10px 40px;
}

.current-list {
    padding: 0 40px 40px 40px;
}

.current-list__header {
    display: none;
}

.current-list__content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    margin-top: 20px;
    padding-bottom: 20px;
    padding: 0;
}

.current-list__content__row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.current-list__content > input {
    height: 40px;
}

.current-list__content .details {
    display: flex;
    justify-content: space-between;
    width: unset;
}
/* Form */
form label {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Button */
button, .button {
    padding: 10px;
    font-size: 1rem;
    background: #00AFED;
    cursor: pointer;
    border-radius: 4px;
    color: #fff;
    border: none;
}

.button__cancel {
    background-color: #FF4C61;
}

.button__cancel--link {
    background: #FF4C61 !important;
    color: #fff;
    margin-top: 20px;
}

    .button__cancel--link:hover {
        background-color: #e02f44 !important;
        color: #fff;
    }

button:hover, .button:hover {
    background-color: #009BD3;
}

.card-alert {
    margin: 0 auto;
    text-align: center;
    padding: 60px;
}

.card-footer {
    background: #eee;
    padding: 20px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    text-align: center;
}

.card-alert .card-icon {
    border-radius: 50%;
    border: 4px solid gray;
    box-sizing: content-box;
    height: 80px;
    margin: 30px auto;
    padding: 0;
    position: relative;
    width: 80px;
}

    .card-alert .card-icon.card-success, .card-alert .card-icon.card-error {
        border-color: #A5DC86;
    }

        .card-alert .card-icon.card-success:after, .card-alert .card-icon.card-success:before, .card-alert .card-icon.card-error:after, .card-alert .card-icon.card-error:before {
            background: #fff;
            content: "";
            height: 120px;
            position: absolute;
            transform: rotate(45deg);
            width: 60px;
        }

        .card-alert .card-icon.card-success:before, .card-alert .card-icon.card-error:before {
            border-radius: 120px 0 0 120px;
            left: -33px;
            top: -7px;
            transform-origin: 60px 60px;
            transform: rotate(-45deg);
        }

        .card-alert .card-icon.card-success:after, .card-alert .card-icon.card-error:after {
            border-radius: 0 120px 120px 0;
            left: 30px;
            top: -11px;
            transform-origin: 0 60px;
            transform: rotate(-45deg);
        }

        .card-alert .card-icon.card-success .card-placeholder, .card-alert .card-icon.card-error .card-placeholder {
            border-radius: 50%;
            border: 4px solid rgba(165, 220, 134, 0.8);
            box-sizing: content-box;
            height: 80px;
            left: -4px;
            position: absolute;
            top: -4px;
            width: 80px;
            z-index: 2;
        }

        .card-alert .card-icon.card-success .card-fix, .card-alert .card-icon.card-error .card-fix {
            background-color: #fff;
            height: 90px;
            left: 28px;
            position: absolute;
            top: 8px;
            transform: rotate(-45deg);
            width: 5px;
            z-index: 1;
        }

        .card-alert .card-icon.card-success .card-line, .card-alert .card-icon.card-error .card-line {
            background-color: #A5DC86;
            border-radius: 2px;
            display: block;
            height: 5px;
            position: absolute;
            z-index: 2;
        }

            .card-alert .card-icon.card-success .card-line.card-tip, .card-alert .card-icon.card-error .card-line.card-tip {
                left: 14px;
                top: 46px;
                transform: rotate(45deg);
                width: 25px;
            }

            .card-alert .card-icon.card-success .card-line.card-long, .card-alert .card-icon.card-error .card-line.card-long {
                right: 8px;
                top: 38px;
                transform: rotate(-45deg);
                width: 47px;
            }

    .card-alert .card-icon.card-error {
        border-color: #F27474;
    }

        .card-alert .card-icon.card-error .card-x-mark {
            display: block;
            position: relative;
            z-index: 2;
        }

        .card-alert .card-icon.card-error .card-placeholder {
            border: 4px solid rgba(200, 0, 0, 0.4);
        }

        .card-alert .card-icon.card-error .card-line {
            background-color: #F27474;
            top: 37px;
            width: 47px;
        }

            .card-alert .card-icon.card-error .card-line.card-left {
                left: 17px;
                transform: rotate(45deg);
            }

            .card-alert .card-icon.card-error .card-line.card-right {
                right: 16px;
                transform: rotate(-45deg);
            }

.animateSuccessTip {
    animation: animateSuccessTip 0.75s;
}

.animateSuccessLong {
    animation: animateSuccessLong 0.75s;
}

.card-icon.card-success.animate:after {
    animation: rotatePlaceholder 4.25s ease-in;
}

.card-icon.card-error.animate:after {
    animation: rotatePlaceholder 4.25s ease-in;
}

.animateErrorIcon {
    animation: animateErrorIcon 0.5s;
}

.animateXLeft {
    animation: animateXLeft 0.75s;
}

.animateXRight {
    animation: animateXRight 0.75s;
}

@keyframes animateSuccessTip {
    0%, 54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes animateSuccessLong {
    0%, 65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

@keyframes rotatePlaceholder {
    0%, 5% {
        transform: rotate(-45deg);
    }

    100%, 12% {
        transform: rotate(-405deg);
    }
}

@keyframes animateErrorIcon {
    0% {
        transform: rotateX(100deg);
        opacity: 0;
    }

    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@keyframes animateXLeft {
    0%, 65% {
        left: 82px;
        top: 95px;
        width: 0;
    }

    84% {
        left: 14px;
        top: 33px;
        width: 47px;
    }

    100% {
        left: 17px;
        top: 37px;
        width: 47px;
    }
}

@keyframes animateXRight {
    0%, 65% {
        right: 82px;
        top: 95px;
        width: 0;
    }

    84% {
        right: 14px;
        top: 33px;
        width: 47px;
    }

    100% {
        right: 16px;
        top: 37px;
        width: 47px;
    }
}
/* Loading spinner */
.button {
    display: inline-block;
    border: 0;
    outline: 0;
    border-radius: 5px;
    color: #fff !important;
    cursor: pointer;
    position: relative;
    transition: padding-left .3s ease-out;
}

    .button.loading {
        background-color: #009BD3;
        padding-left: 40px;
    }

        .button.loading:before {
            content: "";
            position: absolute;
            border-radius: 100%;
            left: 12px;
            top: 50%;
            width: 0px;
            height: 0px;
            margin-top: -2px;
            border: 2px solid rgba(255,255,255,0.5);
            border-left-color: #FFF;
            border-top-color: #FFF;
            animation: spin .6s infinite linear, grow .3s forwards ease-out;
        }

@keyframes spin {
    to {
        transform: rotate(359deg);
    }
}

@keyframes grow {
    to {
        width: 14px;
        height: 14px;
        margin-top: -8px;
        right: 13px;
    }
}

/* Media queries */
@media (min-width: 424px) and (max-width: 768px) {
    .current-list__content__row {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .content-columns .col, .content-columns .header {
        max-width: 50%;
        margin: 0 auto;
    }

    .content-columns .org {
        display: inline-block;
        width: 28%;
        padding: 0 10px;
        text-align: left;
    }

    /* Card component */
    .content-card {
        background: #fff;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
        min-height: 300px;
        border-radius: 4px;
    }

    .content-card__submit {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        padding: 20px 0;
        margin-top: 10px;
    }

        .content-card__submit .button {
            margin-right: 10px;
        }

    .content-card__title {
        margin-bottom: 45px;
        margin-top: 5px;
    }

    .content-card__body {
        padding: 30px 40px 10px 40px;
    }

    .current-list {
        padding: 0 40px 40px 40px;
    }

    .current-list__header {
        display: flex;
        width: 76%;
    }

        .current-list__header > .name {
            width: 72%;
            margin-bottom: -5px;
            padding: 0;
        }

        .current-list__header > .type {
            width: 28%;
            padding: 0 10px;
            margin-bottom: -5px;
        }

    .current-list__content {
        flex-direction: column;
        padding-bottom: 0;
    }

    .current-list__content__row {
        display: flex;
        flex-direction: row;
        padding-bottom: 0;
    }

    .current-list__content .details {
        width: 76%;
    }

    .current-list__content .btn {
        width: 24%;
        display: flex;
        justify-content: flex-end;
    }
}

@media (min-width: 768px) and (max-width: 978px) {
    .content-columns .col, .content-columns .header {
        max-width: 75%;
    }
}

@media (min-width: 978px) {
    .content-columns .col, .content-columns .header {
        max-width: 60%;
    }
}
/*# sourceMappingURL=xero.css.map */
