﻿* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    font-family: 'Lato', sans-serif;
}

body {
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
}

@media only screen and (min-width: 2000px) {
    body {
        background-size: 1400px 500px;
    }
}

.row {
    display: block;
}

.clear {
    clear: both;
}

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    float: left;
}

.col-center {
    float: none;
    margin-left: auto;
    margin-right: auto;
}

.padding-5 {
    padding: 5px;
}

.padding-10 {
    padding: 10px;
}

.padding-15 {
    padding: 15px;
}

.padding-20 {
    padding: 20px;
}

.min-height-50 {
    min-height: 50px;
}

.min-height-100 {
    min-height: 100px;
}

.min-height-150 {
    min-height: 150px;
}

.min-height-200 {
    min-height: 200px;
}

.min-height-250 {
    min-height: 250px;
}

.min-height-300 {
    min-height: 300px;
}

.min-height-350 {
    min-height: 350px;
}

.min-height-400 {
    min-height: 400px;
}


.color-blue {
    color: rgb(0, 82, 199);
}

.color-green {
    color: rgb(16,183,89);
}

.color-red {
    color: rgb(220,53,69);
}

.color-orange {
    color: rgb(238,100,36);
}

.color-yellow {
    color: rgb(208, 176, 0);
}

.color-gray {
    color: rgb(110,110,110);
}

.color-dark {
    color: rgb(70,70,70);
}

.color-black {
    color: rgb(0,0,0);
}

.color-white {
    color: #FFFFFF;
}

.full-width, a.full-width, input[type=button].full-width, input[type=submit].full-width {
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: 0;
}

.align-right {
    text-align: right;
}

.align-center {
    text-align: center;
}

.align-left {
    text-align: left;
}

.align-justify {
    text-align: justify;
}

.strong {
    font-weight: 700;
}

.big {
    font-size: 1.5em;
}

.heavy {
    font-size: 1.2em;
}

.light {
    font-size: 0.9em;
}

h1 {
    font-size: 1.3em;
    color: rgb(245,100,20);
    margin-top: 40px;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

h2 {
    font-weight: 300;
    font-size: 1.4em;
}

h3 {
    font-weight: 300;
    font-size: 1.2em;
}

.regular-link {
    color: rgb(0,140,240);
    text-decoration: none;
}

    .regular-link:hover {
        text-decoration: underline;
    }

input[type=text],
input[type=password],
input[type=tel],
input[type=number],
input[type=email],
select,
textarea {
    display: block;
    outline: none;
    border: 1px solid rgb(200,200,200);
    border-radius: 2px;
    width: 100%;
    padding: 8px;
    margin-top: 6px;
    margin-bottom: 6px;
    font-size: 0.9em;
    color: rgb(30,30,30);
    resize: none;
}

    input[type=text].input-with-image,
    input[type=password].input-with-image,
    input[type=tel].input-with-image,
    input[type=number].input-with-image,
    input[type=email].input-with-image,
    select.input-with-image {
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 18px 18px;
        background-position-x: 6px;
        padding-left: 30px;
    }

    input[type=text]:disabled,
    input[type=password]:disabled,
    input[type=tel]:disabled,
    input[type=number]:disabled,
    input[type=email]:disabled,
    select:disabled,
    textarea:disabled {
        cursor: not-allowed;
        background-color: rgb(240,240,240);
    }

    input[type=text]:focus,
    input[type=password]:focus,
    input[type=tel]:focus,
    input[type=number]:focus,
    input[type=email]:focus,
    select:focus,
    textarea:focus {
        border: 1px solid rgb(0, 150, 200);
    }

    select.select-list, div.select-list {
        border: 0;
        outline: 0;
        cursor: pointer;
        width: unset;
        padding: 0;
        color: rgb(0,140,240);
        display: inline-block;
        margin-right: 10px;
        font-size: 0.9em;
    }

.input-label {
    font-size: 0.85em;
    color: rgb(30,30,30);
}


select {
    cursor: pointer;
}


.button-default, .button-green, .button-red, .button-yellow, .button-blue, .button-load {
    display: inline-block;
    margin: 2px;
    margin-top: 6px;
    font-size: 1em;
    padding: 8px;
    padding-right: 20px;
    padding-left: 20px;
    min-width: 120px;
    cursor: pointer;
    font-size: 0.9em;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    user-select: none;
}

.button-load {
    cursor: wait;
    background-image: url('/images/core/loader-mini.gif');
    background-color: rgb(240,240,240);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
}

.button-default i, .button-green i, .button-red i, .button-yellow i, .button-blue i {
    margin-right: 6px;
}


.button-default:disabled, .button-green:disabled, .button-red:disabled, .button-yellow:disabled, .button-blue:disabled {
    cursor: not-allowed;
    background: unset;
    background-color: rgb(240,240,240);
    border: 1px solid rgb(220,220,220);
    color: rgb(200,200,200);
}

.button-default {
    background: linear-gradient(to bottom, rgb(240,240,240), rgb(220,220,220));
    background-color: rgb(240,240,240);
    border: 1px solid rgb(200,200,200);
    color: rgb(50,50,50);
}

.button-green {
    background: linear-gradient(to bottom, rgb(13, 148, 72), rgb(8, 98, 47));
    background-color: rgb(13, 148, 72);
    border: 1px solid rgb(11, 131, 64);
    color: #FFFFFF;
}

.button-red {
    background: linear-gradient(to bottom, rgb(220,53,69), rgb(160, 32, 45));
    background-color: rgb(220,53,69);
    border: 1px solid rgb(194, 47, 61);
    color: #FFFFFF;
}

.button-yellow {
    background: linear-gradient(to bottom, rgb(208, 176, 0), rgb(147, 124, 0));
    background-color: rgb(208, 176, 0);
    border: 1px solid rgb(189, 160, 1);
    color: #FFFFFF;
}

.button-blue {
    background: linear-gradient(to bottom, rgb(0, 82, 199), rgb(0, 58, 141));
    background-color: rgb(0, 82, 199);
    border: 1px solid rgb(0, 69, 168);
    color: #FFFFFF;
}

.button-default:enabled:hover,
a.button-default:hover {
    background: unset;
    background-color: rgb(220,220,220);
}

.button-green:enabled:hover,
a.button-green:hover {
    background: unset;
    background-color: rgb(9, 101, 49);
}

.button-red:enabled:hover,
a.button-red:hover {
    background: unset;
    background-color: rgb(164, 41, 52);
}

.button-yellow:enabled:hover,
a.button-yellow:hover {
    background: unset;
    background-color: rgb(160, 136, 1);
}

.button-blue:enabled:hover,
a.button-blue:hover {
    background: unset;
    background-color: rgb(0, 69, 168);
}

.button-default:enabled:active,
a.button-default:active {
    background-color: rgb(255,255,255);
}

.button-green:enabled:active,
a.button-green:active {
    background-color: rgb(16, 181, 88);
    border: 1px solid rgb(16, 181, 88);
}

.button-red:enabled:active,
a.button-red:active {
    background-color: rgb(255, 58, 77);
    border: 1px solid rgb(255, 58, 77);
}

.button-yellow:enabled:active,
a.button-yellow:active {
    background-color: rgb(239, 203, 0);
    border: 1px solid rgb(239, 203, 0);
}

.button-blue:enabled:active,
a.button-blue:active {
    background-color: rgb(0, 94, 228);
    border: 1px solid rgb(0, 94, 228);
}


.content-area {
    margin-left: auto;
    margin-right: auto;
    width: 1200px;
}

.page {
    width: 100%;
    min-width: 1250px;
}

#MobileMenu {
    display: none;
}

#CloseMenu {
    display: none;
}

.nav {
    height: 60px;
    color: rgb(50,50,50);
    background-color: #FFFFFF;
    border-bottom: 1px solid rgb(240,240,240);
    box-shadow: 0px 0px 5px 5px rgba(220,220,220, 0.25);
}

    .nav .logo {
        width: 120px;
        height: 60px;
        margin-right: 30px;
        float: left;
        overflow: hidden;
        border-bottom: 1px solid rgb(240,240,240);
    }

        .nav .logo img {
            width: 120px;
            height: 60px;
        }

    .nav .menu {
        width: 1050px;
        float: left;
    }

        .nav .menu .menu-item {
            float: left;
            position: relative;
        }

            .nav .menu .menu-item p {
                height: 60px;
                padding-top: 22px;
                cursor: pointer;
                user-select: none;
                text-transform: uppercase;
                font-size: 0.9em;
                letter-spacing: 0.02em;
                font-weight: 700;
                padding-left: 10px;
                padding-right: 10px;
                margin-right: 5px;
            }

                .nav .menu .menu-item p:hover {
                    background-color: rgb(245,245,245);
                }

                .nav .menu .menu-item p i {
                    margin-right: 5px;
                }

            .nav .menu .menu-item div {
                position: absolute;
                top: 60px;
                left: 0px;
                background-color: #FFFFFF;
                min-width: 250px;
                border-left: 1px solid rgb(230,230,230);
                border-right: 1px solid rgb(230,230,230);
                border-bottom: 1px solid rgb(230,230,230);
                padding: 10px;
                border-bottom-left-radius: 5px;
                border-bottom-right-radius: 5px;
                box-shadow: 0px 3px 3px 0px rgba(200,200,200, 0.2);
                display: none;
                z-index: 1000;
            }

                .nav .menu .menu-item div a {
                    padding: 8px;
                    text-decoration: none;
                    display: block;
                    font-size: 0.8em;
                    letter-spacing: 0.05em;
                    color: rgb(70,70,70);
                    border-bottom: 1px solid rgb(248,248,248);
                    user-select: none;
                }

                    .nav .menu .menu-item div a i {
                        margin-right: 8px;
                    }

                    .nav .menu .menu-item div a:last-child {
                        border-bottom: none;
                    }

                    .nav .menu .menu-item div a:hover {
                        color: #FFFFFF;
                        background-color: rgb(15,50,125);
                    }

        .nav .menu .menu-item-right {
            float: right;
            position: relative;
            height: 60px;
            padding-top: 20px;
        }

            .nav .menu .menu-item-right a {
                font-size: 0.8em;
                letter-spacing: 0.1em;
                text-decoration: none;
                user-select: none;
                margin-left: 5px;
                padding: 6px;
                border-radius: 4px;
                color: rgb(70,70,70);
            }

                .nav .menu .menu-item-right a:hover {
                    background-color: rgb(245,100,20);
                    color: #FFFFFF;
                }

                .nav .menu .menu-item-right a i {
                    margin-right: 5px;
                }

.hero {
    width: 100%;
    max-width: 1950px;
    margin-left: auto;
    margin-right: auto;
    position: relative
}

    .hero .hero-image {
        width: 100%;
        height: auto;
        min-height: 400px;
        z-index: 0;
        display: block
    }

    .hero .hero-content {
        position: absolute;
        width: 100%;
        max-width: 1200px;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        padding: 20px;
        z-index: 2
    }

        .hero .hero-content .hero-title {
            margin: 0;
            margin-bottom: 15px;
            font-size: 1.6em;
            font-family: Lato, sans-serif;
            font-weight: 400;
            text-align: center;
            color: #ffffff;
            text-shadow: 1px 1px 1px rgb(50,50,50);
        }

        .hero .hero-content .hero-text {
            margin-bottom: 25px;
            text-align: center;
            color: #ffffff;
            text-shadow: 1px 1px 1px rgb(50,50,50);
            letter-spacing: 0.05em;
            font-size: 0.9em;
        }


.booking-box {
    border: 1px solid rgb(240,240,240);
    margin-top: 30px;
    margin-bottom: 50px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px rgba(220,220,220,0.2);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

    .booking-box .booking-box-tabs {
        background-color: rgba(240,240,240, 0.7);
    }

        .booking-box .booking-box-tabs a {
            text-decoration: none;
            cursor: pointer;
            font-size: 0.9em;
            letter-spacing: 0.02em;
            display: inline-block;
            font-weight: 700;
            color: rgb(90,90,90);
            padding: 15px;
        }

            .booking-box .booking-box-tabs a.selected {
                color: rgb(0, 82, 199);
                background-color: #FFFFFF;
            }


    .booking-box .booking-box-page {
        padding: 15px;
        display: none;
        background-color: #FFFFFF;
    }


.visual-box {
    font-size: 1em;
    background-color: #FFFFFF;
    border: 1px solid rgb(240,240,240);
    border-radius: 4px;
    overflow: auto;
    margin: 10px;
    box-shadow: 0px 0px 4px 2px #ffffff;
    position: relative;
    user-select: none;
}

    .visual-box:hover {
        box-shadow: 0px 0px 4px 2px rgb(240,240,240);
    }

    .visual-box img {
        display: block;
        width: 100%;
        height: auto;
    }

    .visual-box div {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        text-align: left;
        user-select: none;
        padding: 15px;
        padding-top: 20px;
        text-align: center;
    }

        .visual-box div p {
            font-weight: 400;
            color: #000000;
            font-size: 1.3em;
            user-select: none;
            margin-bottom: 5px;
            display: block;
        }

    .visual-box hr {
        width: 20%;
        display: block;
        margin-left: auto;
        margin-right: auto;
        border: 1px solid rgb(0,150,200);
        margin-bottom: 5px;
    }

    .visual-box div span {
        font-size: 0.8em;
        color: rgb(150,150,150);
    }


.option-box {
    margin: 10px;
    padding: 10px;
    overflow: auto;
    border: 1px solid #FFFFFF;
}


    .option-box i {
        text-align: center;
        font-size: 3em;
        display: block;
        width: 64px;
        height: 64px;
        float: left;
        padding-top: 5px;
        margin-right: 15px;
        overflow: hidden;
        color: rgb(200,200,200);
    }

    .option-box p {
        display: block;
        font-size: 1em;
        font-weight: 700;
        margin-bottom: 4px;
        color: #000000;
    }

    .option-box span {
        clear: both;
        font-size: 0.8em;
        color: rgb(150,150,150);
    }

    .option-box a {
        text-decoration: none;
    }

.image-box {
    display: block;
    padding: 10px;
    text-align: center;
    position: relative;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

    .image-box:hover {
        border: 1px solid rgb(245,245,245);
    }

    .image-box a {
        text-decoration: none;
    }

    .image-box img {
        display: block;
        width: 100%;
        height: auto;
        margin-bottom: 15px;
        border: 2px solid rgb(240,240,240);
    }

    .image-box span {
        display: block;
        color: #000000;
        font-size: 0.9em;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .image-box p {
        display: block;
        color: rgb(150,150,150);
        font-size: 0.8em;
        margin-top: 4px;
        margin-bottom: 4px;
        font-weight: 400;
    }

    .image-box div {
        display: inline-block;
        background-color: rgba(0,0,0,0.8);
        color: #FFFFFF;
        position: absolute;
        top: 25px;
        left: 25px;
        font-size: 0.8em;
        padding: 6px;
        border-radius: 2px;
    }

.image-banner {
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 400px;
    border: 1px solid rgb(220,220,220);
    padding: 50px;
}

    .image-banner h2 {
        color: rgb(100,100,100);
    }

    .image-banner p {
        color: rgb(100,100,100);
        font-size: 0.9em;
        font-weight: 300;
        line-height: 150%;
    }

    .image-banner .outline-button {
        padding: 10px;
        color: rgb(100,100,100);
        border: 1px solid rgb(100,100,100);
        border-radius: 6px;
        text-decoration: none;
        user-select: none;
    }

        .image-banner .outline-button:hover {
            background-color: #3cb4fa;
            color: #FFFFFF;
            border: 1px solid #3cb4fa;
        }


.support-bar {
    margin-top: 30px;
    text-align: center;
    background-color: rgb(20,20,20);
    padding: 30px;
    font-size: 1.2em;
    font-weight: 300;
    color: #FFFFFF;
}

    .support-bar .support-bar-button {
        margin: 10px;
        padding: 10px;
        border: 2px solid #FFFFFF;
        border-radius: 6px;
        cursor: pointer;
        color: #FFFFFF;
        text-decoration: none;
        user-select: none;
        font-weight: 400;
    }

        .support-bar .support-bar-button:hover {
            background-color: #ffffff;
            color: rgb(20,20,20);
        }

footer {
    background-color: rgb(51,51,51);
    padding-top: 40px;
    padding-bottom: 40px;
}

    footer .footer-links {
        color: #FFFFFF;
        padding: 10px;
    }


        footer .footer-links p {
            font-size: 1em;
            margin-bottom: 10px;
        }

        footer .footer-links a {
            color: rgb(169,169,169);
            text-decoration: none;
            display: block;
            font-size: 0.9em;
            margin-top: 5px;
            margin-bottom: 5px;
            font-weight: 300;
        }

            footer .footer-links a:hover {
                text-decoration: underline;
            }

    footer hr {
        width: 100%;
        border: 0;
        height: 0.5px;
        background-color: rgb(69,69,69);
    }

    footer .footer-icon {
        width: 100px;
        height: 60px;
    }

    footer .footer-note {
        color: #FFFFFF;
        text-align: center;
        font-size: 0.9em;
        font-weight: 300;
    }


.dialog {
    display: block;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
    display: none;
}

    .dialog .dialog-box {
        display: block;
        position: fixed;
        z-index: 2001;
        width: 500px;
        max-width: 90%;
        top: 100px;
        left: calc(50vw - 250px);
        background-color: #FFFFFF;
        border-radius: 2px;
        padding: 20px;
        border: 1px solid rgb(150,150,150);
    }

    .dialog .dialog-big {
        display: block;
        position: fixed;
        z-index: 2001;
        width: 700px;
        max-width: 90%;
        top: 100px;
        left: calc(50vw - 350px);
        background-color: #FFFFFF;
        border-radius: 2px;
        padding: 20px;
        border: 1px solid rgb(150,150,150);
    }

.bubble-blue, .bubble-green, .bubble-red, .bubble-orange, .bubble-yellow, .bubble-white {
    padding: 2px;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 6px;
    background-color: #FFFFFF;
    display: inline-block;
    margin: 2px;
    user-select: none;
}

    .bubble-blue i, .bubble-green i, .bubble-red i, .bubble-orange i, .bubble-yellow i, .bubble-white i {
        margin-left: 3px;
        margin-right: 3px;
    }

    .bubble-blue a, .bubble-green a, .bubble-red a, .bubble-orange a, .bubble-yellow a, .bubble-white a {
        color: inherit;
    }

        .bubble-blue a:hover, .bubble-green a:hover, .bubble-red a:hover, .bubble-orange a:hover, .bubble-yellow a:hover, .bubble-white a:hover {
            color: rgb(0,0,0);
        }

.bubble-blue {
    border: 1px solid rgb(0, 82, 199);
    color: rgb(0, 82, 199);
}

.bubble-green {
    border: 1px solid rgb(16,183,89);
    color: rgb(16,183,89);
}

.bubble-red {
    border: 1px solid rgb(220,53,69);
    color: rgb(220,53,69);
}

.bubble-orange {
    border: 1px solid rgb(238,100,36);
    color: rgb(238,100,36);
}

.bubble-yellow {
    border: 1px solid rgb(208, 176, 0);
    color: rgb(208, 176, 0);
}

.bubble-white {
    border: 1px solid rgb(150,150,150);
    color: rgb(110,110,110);
}


.cms-enclosure {
    color: rgb(30,30,30);
    font-size: 1em;
    padding-right: 20px;
    letter-spacing: 0.01em;
}

    .cms-enclosure h2 {
        margin-bottom: 20px;
        margin-top: 0px;
        font-size: 1.2em;
        font-weight: 400;
        color: #000000;
    }

    .cms-enclosure p {
        margin-top: 10px;
        margin-bottom: 10px;
        text-align: justify;
        line-height: 1.7em;
        color: rgb(100,100,100);
    }

    .cms-enclosure img {
        max-width: 100%;
        height: auto;
    }

    .cms-enclosure ul {
        line-height: 1.7em;
        color: rgb(100,100,100);
        margin-left: 30px;
    }

    .cms-enclosure a {
        text-decoration: none;
        color: rgb(0, 82, 199);
    }

        .cms-enclosure a:hover {
            text-decoration: underline;
        }

    .cms-enclosure strong {
        color: #000000;
        font-weight: 700;
    }

    .cms-enclosure .button-green,
    .cms-enclosure .button-red,
    .cms-enclosure .button-yellow,
    .cms-enclosure .button-blue {
        color: #FFFFFF;

    }

    .cms-enclosure .button-default {
        color: rgb(50,50,50);
    }

    .cms-enclosure .button-default,
    .cms-enclosure .button-green,
    .cms-enclosure .button-red,
    .cms-enclosure .button-yellow,
    .cms-enclosure .button-blue {
        text-decoration: none;
        font-size: 1em;
    }

        .cms-enclosure .button-default:hover,
        .cms-enclosure .button-green:hover,
        .cms-enclosure .button-red:hover,
        .cms-enclosure .button-yellow:hover,
        .cms-enclosure .button-blue:hover {
            text-decoration: none;
        }


    .cms-enclosure .table-wrap{
        width: 100%;
        overflow-x: auto;
    }

    .cms-enclosure table.DataTable {
        font-size: 0.9em;
    }

        .cms-enclosure table.DataTable th, .cms-enclosure table.DataTable td {
            padding: 10px;
        }

        .cms-enclosure table.DataTable td {
            color: rgb(70,70,70);
        }

        .cms-enclosure table.DataTable th {
            background-color: #FFFFFF;
            color: #000000;
        }

    .cms-enclosure table.GridTable {
        font-size: 0.9em;
        letter-spacing: 0.05em;
    }

    .cms-enclosure table.GridTable th, .cms-enclosure table.GridTable td {
        padding: 10px;
        border-bottom: 1px solid rgb(245,245,245);
    }

    .cms-enclosure table.GridTable td {
        color: rgb(70,70,70);
    }

    .cms-enclosure table.GridTable th {
        background-color: #FFFFFF;
        color: #000000;
    }

ol.breadcrumbs {
    margin-top: 30px;
    list-style: none;
    color: rgb(200, 200, 200);
}

    ol.breadcrumbs li {
        float: left;
    }

        ol.breadcrumbs li::after {
            content: ' \00BB ';
            margin-left: 5px;
            margin-right: 5px;
        }

        ol.breadcrumbs li:last-child::after {
            content: '';
        }

    ol.breadcrumbs a {
        font-size: 0.9em;
        color: rgb(150, 150, 150);
        text-decoration: none;
    }

        ol.breadcrumbs a:hover {
            color: #000000;
            text-decoration: underline;
        }

table.DataTable {
    width: 100%;
    border-collapse: collapse;
    background-color: #FFFFFF;
    font-weight: 400;
    text-align: left;
    font-size: 0.9em;
}


    table.DataTable tr:hover {
        background-color: rgb(252,252,252);
    }

    table.DataTable th {
        padding: 10px;
        color: #FFFF;
        font-weight: 700;
        background-color: rgb(60,180,250);
        border-bottom: 1px solid rgb(245,245,245);
        white-space: nowrap;
    }

    table.DataTable td {
        padding: 8px;
        border-bottom: 1px solid rgb(245,245,245);
        color: rgb(30,30,30);
        white-space: nowrap;
    }

    table.DataTable a {
        color: rgb(0,125,200);
        text-decoration: none;
    }

        table.DataTable a:hover {
            color: rgb(25,35,65);
            text-decoration: underline;
        }

    table.DataTable tr.highlight-row-yellow {
        background-color: rgb(255, 255, 200);
    }

    table.DataTable tr.highlight-row-red {
        background-color: rgb(255, 243, 243);
    }

    table.DataTable tr.highlight-row-green {
        background-color: rgb(229, 255, 229);
    }

@keyframes RowBlink {
    from {
        background-color: rgb(255, 203, 166);
    }

    to {
        background-color: rgb(255, 255, 188);
    }
}

table.DataTable tr.blink {
    animation: RowBlink 1s infinite;
}

table.ShrinkTable {
    width: auto;
}

    table.ShrinkTable th, table.ShrinkTable td {
        padding-left: 20px;
        padding-right: 20px;
    }

.pagination {
    display: block;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 5px;
}

    .pagination a {
        display: inline-block;
        color: rgb(55,55,55);
        background-color: rgb(240,240,240);
        border: 1px solid rgb(200,200,200);
        padding: 6px;
        min-width: 30px;
        border-radius: 2px;
        font-size: 0.9em;
        cursor: pointer;
        margin-right: 2px;
        text-decoration: none;
        color: rgb(50,50,50);
    }

        .pagination a:hover {
            color: rgb(55,55,55);
            background-color: rgb(222,222,222);
            border: 1px solid rgb(150,150,150);
            text-decoration: none;
        }

table.GridTable {
    border-collapse: collapse;
    border: 0;
    font-size: 0.9em;
}

    table.GridTable th, table.GridTable td {
        padding: 4px;
        text-align: left;
        white-space: nowrap;
        vertical-align: middle;
    }

    table.GridTable th {
        text-align: left;
        padding-right: 20px;
        font-weight: 700;
        color: #000000;
    }

    table.GridTable td {
        color: rgb(30,30,30);
    }

    table.GridTable a {
        color: rgb(0,125,200);
    }

.captcha {
    text-align: center;
    width: 100%;
    margin-top: 8px;
    background-color: rgb(249,249,249);
    border: 1px solid rgb(211,211,211);
    border-radius: 4px;
    overflow: hidden;
}

    .captcha .captcha-box {
        width: 200px;
        height: 70px;
        overflow: hidden;
        position: relative;
        left: -2px;
        top: -2px;
    }

.alert {
    display: block;
    margin-right: 8px;
    margin-bottom: 8px;
    background-color: rgb(0, 125, 200);
    padding: 10px;
    font-size: 0.9em;
    color: #FFFFFF;
}

    .alert i {
        margin-right: 8px;
        margin-left: 4px;
    }

    .alert a {
        color: #FFFFFF;
        text-decoration: underline;
    }

        .alert a:hover {
            color: rgb(222,222,222);
        }

.alert-green {
    background-color: rgb(16,183,89);
}

.alert-red {
    background-color: rgb(220,53,69);
}

.alert-orange {
    background-color: rgb(255, 106, 0);
}

.ui-autocomplete-loading {
    background-image: url('/images/core/loader.gif');
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position-x: right;
    background-position-y: center;
}

.ui-autocomplete {
    max-height: 200px;
    min-width: 200px;
    font-size: 0.9em !important;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 2200 !important;
}

    .ui-autocomplete .ui-menu-item {
        font-size: 0.9em;
        padding: 2px;
    }

.mobile-only, a.mobile-only {
    display: none;
}

.ui-datepicker-month, .ui-datepicker-year {
    display: inline-block;
    font-size: 0.9em !important;
    padding: 2px;
    width: 70px !important;
    margin-left: 2px !important;
    margin-right: 2px !important;
}
