
body {
    direction: rtl;
    margin: 0;
    text-align: right
}

    body a {
        transition: all .35s cubic-bezier(.2,1,.3,1)
    }

    body * {
        box-sizing: border-box
    }

    body ::selection {
        background-color: hsla(0,0%,40%,.05);
        color: #666
    }

    body ::-moz-selection {
        background-color: hsla(0,0%,40%,.05);
        color: #666
    }

    body.maintenance {
        align-items: center;
        background-color: #fff;
        color: #a3a3a3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100vh;
        width: 100%
    }

        body.maintenance .mt-container {
            box-sizing: border-box;
            display: block
        }

        body.maintenance .mt-container--boxed {
            max-width: 1200px;
            padding: 0 15px;
            width: 100%
        }

        body.maintenance .mt-panel {
            height: auto;
            width: 100%
        }

        body.maintenance .mt-panel--row {
            align-items: center;
            display: flex;
            flex-direction: row;
            justify-content: space-between
        }

@media only screen and (max-width:1024px) {
    body.maintenance .mt-panel--row {
        flex-direction: column
    }
}

body.maintenance .mt-message {
    -webkit-animation: revealMtBlock 1.5s forwards;
    animation: revealMtBlock 1.5s forwards;
    opacity: 0;
    padding-left: 80px;
    visibility: hidden;
    width: 100%
}

    body.maintenance .mt-message .mt-title {
        align-items: center;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        margin: 0 0 20px
    }

        body.maintenance .mt-message .mt-title .mt-logo {
            border-radius: 20%;
            box-shadow: 0 0 5px rgba(0,0,0,.1);
            display: block;
            flex-shrink: 0;
            height: 90px;
            margin-left: 20px;
            overflow: hidden;
            position: relative;
            width: 90px
        }

            body.maintenance .mt-message .mt-title .mt-logo img {
                display: block;
                position: absolute;
                right: 50%;
                top: 50%;
                transform: translate(50%,-50%);
                width: 90%
            }

            body.maintenance .mt-message .mt-title .mt-logo.circular {
                background-color: #fff;
                border-radius: 50%;
                padding: 10px
            }

                body.maintenance .mt-message .mt-title .mt-logo.circular img {
                    width: 80%
                }

        body.maintenance .mt-message .mt-title h1 {
            color: #666;
            font-size: 3.125rem;
            line-height: 1;
            margin: 0
        }

    body.maintenance .mt-message .mt-content p {
        margin: 0
    }

@media only screen and (max-width:1024px) {
    body.maintenance .mt-message {
        margin: 50px 0 0;
        order: 2;
        padding: 0;
        text-align: center
    }

        body.maintenance .mt-message .mt-title {
            flex-direction: column;
            margin-bottom: 30px
        }

            body.maintenance .mt-message .mt-title .mt-logo {
                margin: 0 0 10px
            }

            body.maintenance .mt-message .mt-title h1 {
                font-size: 1.5625rem
            }
}

body.maintenance .thumb {
    -webkit-animation: revealMtBlock 1.5s forwards;
    animation: revealMtBlock 1.5s forwards;
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
    opacity: 0;
    position: relative;
    visibility: hidden;
    width: 100%
}

    body.maintenance .thumb img {
        display: block;
        margin: 0 auto;
        max-width: 450px;
        width: 100%
    }

@media only screen and (max-width:767px) {
    body.maintenance .thumb img {
        width: 80%
    }
}

body.maintenance .mt-contact-list {
    border-top: 1px solid #f0f0f0;
    display: inline-block;
    list-style: none;
    margin: 2px 0 0;
    max-width: 500px;
    padding: 2px 0 0;
    width: 100%
}

    body.maintenance .mt-contact-list li {
        display: inline-block;
        margin-left: 10px
    }

        body.maintenance .mt-contact-list li a {
            align-items: center;
            color: hsla(0,0%,40%,.8);
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            padding: 5px;
            text-decoration: none
        }

            body.maintenance .mt-contact-list li a i {
                font-size: 1.125rem;
                margin-top: 5px
            }

            body.maintenance .mt-contact-list li a.mt-contact--btn {
                background-color: hsla(0,0%,40%,.8);
                border-radius: 20px;
                color: #fff;
                padding: 3px 20px 5px
            }

                body.maintenance .mt-contact-list li a.mt-contact--btn i {
                    margin-left: 10px
                }

                body.maintenance .mt-contact-list li a.mt-contact--btn:hover {
                    background-color: #666;
                    color: #fff
                }

            body.maintenance .mt-contact-list li a:hover {
                color: #666
            }

body.maintenance:after {
    background: url(404--bg-left.png) 0 0 no-repeat;
    content: "";
    display: block;
    height: 100vh;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1
}

@media only screen and (max-width:1024px) {
    body.maintenance {
        padding: 40px 0 10px
    }
}

@-webkit-keyframes revealMtBlock {
    0% {
        opacity: 0;
        transform: translateY(50%);
        visibility: hidden
    }

    to {
        opacity: 1;
        transform: translateY(0);
        visibility: visible
    }
}

@keyframes revealMtBlock {
    0% {
        opacity: 0;
        transform: translateY(50%);
        visibility: hidden
    }

    to {
        opacity: 1;
        transform: translateY(0);
        visibility: visible
    }
}
