﻿* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

/* --------------------------- BASE FORMAT --------------------------- */

.monospace {
    font-family: 'Roboto Mono', monospace !important;
}

a {
    cursor: pointer;
}

    a.regular-link {
        color: rgb(0,150,200);
        text-decoration: none;
    }

        a.regular-link:hover {
            text-decoration: underline;
        }

.align-right {
    text-align: right;
}

.align-center {
    text-align: center;
}

.align-left {
    text-align: left;
}

.align-justify {
    text-align: justify;
}

.strong {
    font-weight: 700;
}

b {
    font-weight: 700;
}

.big {
    font-size: 1.5em;
}

.heavy {
    font-size: 1.2em;
}

.light {
    font-size: 0.9em;
}

.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);
}


.full-width {
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

h1 {
    font-weight: 400;
    font-size: 1.5em;
    margin-top: 35px;
    margin-bottom: 25px;
    color: rgb(50,50,50);
    display: block;
}

h2 {
    font-size: 1.5em;
    color: rgb(25,35,65);
    padding-left: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    display: block;
}

h3 {
    display: block;
    margin-top: 5px;
    margin-bottom: 20px;
    font-size: 1.2em;
}

a {
    outline: 0;
    text-decoration: none;
    color: rgb(25,35,65);
}

/* --------------------------- BASE FORMAT --------------------------- */


/* --------------------------- INPUT FORMAT --------------------------- */

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: 4px;
    width: 100%;
    padding: 8px;
    margin-top: 6px;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: rgb(30,30,30);
}

    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 {
    cursor: pointer;
}

textarea{
    resize: none;
    min-height: 150px;
}


.input-box {
    display: block;
    outline: none;
    border: 1px solid rgb(220,220,220);
    width: 100%;
    background-color: #FFFFFF;
    padding: 8px;
    cursor: text;
    margin: 0;
}

    .input-box span {
        font-size: 0.8em;
        color: rgb(0,125,200);
        user-select: none;
    }

        .input-box span i {
            margin-right: 2px;
        }

    .input-box input[type=text],
    .input-box input[type=password],
    .input-box input[type=tel],
    .input-box input[type=number],
    .input-box input[type=email],
    .input-box select,
    .input-box textarea {
        margin: 0px;
        border: 0px;
        padding: 0;
        padding-top: 5px;
        height: 25px;
    }

        .input-box input[type=text]:focus,
        .input-box input[type=password]:focus,
        .input-box input[type=tel]:focus,
        .input-box input[type=number]:focus,
        .input-box input[type=email]:focus,
        .input-box select:focus,
        .input-box textarea:focus {
            border: 0;
            outline: 0;
        }

        .input-box input[type=text]:disabled,
        .input-box input[type=password]:disabled,
        .input-box input[type=tel]:disabled,
        .input-box input[type=number]:disabled,
        .input-box input[type=email]:disabled,
        .input-box select:disabled,
        .input-box textarea:disabled {
            background-color: #FFFFFF;
        }

.button-default, .button-green, .button-red, .button-yellow, .button-blue, .button-load {
    display: inline-block;
    margin: 2px;
    font-size: 1em;
    padding: 10px;
    padding-right: 20px;
    padding-left: 20px;
    min-width: 140px;
    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);
}


.outline-button {
    display: inline-block;
    border: 1px solid rgb(40,40,40);
    color: rgb(40,40,40);
    font-weight: 700;
    font-size: 1em;
    border-radius: 20px;
    padding: 10px;
    padding-right: 20px;
    padding-left: 20px;
    margin: 5px;
    cursor: pointer;
}

    .outline-button:hover {
        border: 1px solid rgb(0,150,200);
        color: rgb(0,150,200);
    }


table.DataTable {
    width: 100%;
    border-collapse: collapse;
    background-color: #FFFFFF;
    font-weight: 400;
    text-align: left;
}


    table.DataTable tr:hover {
        background-color: rgb(252,252,252);
    }

    table.DataTable th {
        padding: 12px;
        color: #000000;
        font-weight: 700;
        background-color: #FFFFFF;
        border-bottom: 1px solid rgb(245,245,245);
        font-size: 0.8em;
        white-space: nowrap;
    }

    table.DataTable td {
        padding: 8px;
        border-bottom: 1px solid rgb(245,245,245);
        color: rgb(30,30,30);
        font-size: 0.8em;
        white-space: nowrap;
    }

    table.DataTable a {
        color: rgb(0,125,200);
    }

        table.DataTable a:hover {
            color: rgb(25,35,65);
        }

    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);
    }


table.GridTable tr.blink {
    animation: RowBlink 1s infinite;
}

table.InputTable {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
}

    table.InputTable th, table.InputTable td {
        font-size: 0.9em;
        color: rgb(20,20,20);
        white-space: nowrap;
        font-weight: 400;
        text-align: center;
        padding: 4px;
        min-width: 80px;
    }

    table.InputTable th {
        padding-bottom: 0;
    }

    table.InputTable td {
        padding-bottom: 10px;
    }

    table.InputTable input[type=text],
    table.InputTable input[type=password],
    table.InputTable input[type=tel],
    table.InputTable input[type=number],
    table.InputTable input[type=email],
    table.InputTable select {
        margin: 0;
        padding: 6px;
        color: #000000;
        border-radius: 0;
    }

/* --------------------------- INPUT FORMAT --------------------------- */
body {
    background-color: rgb(252,252,252);
}

.page {
    width: 100%;
    max-width: 1650px;
    min-width: 1100px;
    display: block;
}

.content-area {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    min-width: 1120px;
    max-width: 1220px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.row {
    display: block;
}

    .row div:last-child {
        clear: both;
    }

.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;
}

.box {
    font-size: 1em;
    background-color: #FFFFFF;
    border: 1px solid rgb(226,239,237);
    border-radius: 4px;
    overflow: auto;
    margin: 10px;
    box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.1);
}

    .box .box-title {
        padding: 15px;
        font-size: 1em;
        border-bottom: 1px solid rgb(226,239,237);
        margin-bottom: 5px;
        box-shadow: 0px 3px 3px 0px rgba(200,200,200,0.1);
        background-color: #FFFFFF;
        font-weight: 700;
    }

.box-title i {
    margin-right: 5px;
}

.box a {
    cursor: pointer;
}

.box .box-title a {
    float: right;
    color: rgb(0,150,200);
    text-decoration: none;
    font-size: 0.8em;
    margin-left: 8px;
}

    .box .box-title a:hover {
        text-decoration: underline;
    }


.nav {
    display: block;
    background-color: #FFFFFF;
    height: 70px;
    padding-top: 5px;
    padding-bottom: 5px;
    box-shadow: 0px 10px 10px 0px rgb(240,240,240);
    border-bottom: 1px solid rgb(230,230,230);
}

#CloseMenu {
    display: none;
}

.nav .mobile-menu {
    display: none;
}

.nav img.nav-logo {
    border: 0;
    outline: 0;
    width: 160px;
    height: 60px;
    float: left;
    margin-right: 20px;
}

.nav .nav-menu {
    height: 60px;
    float: left;
}

    .nav .nav-menu .nav-menu-item {
        float: left;
        position: relative;
        margin-left: 10px;
    }


        .nav .nav-menu .nav-menu-item p {
            float: left;
            cursor: pointer;
            padding-right: 6px;
            padding-left: 6px;
            padding-top: 20px;
            font-size: 1em;
            height: 60px;
            vertical-align: middle;
            color: rgb(10, 30, 90);
            font-weight: 700;
            user-select: none;
        }

            .nav .nav-menu .nav-menu-item p i {
                margin-right: 8px;
            }

            .nav .nav-menu .nav-menu-item p:hover {
                color: rgb(0,150,200);
            }

        .nav .nav-menu .nav-menu-item div {
            position: absolute;
            top: 65px;
            left: 0px;
            background-color: #FFFFFF;
            padding: 10px;
            z-index: 1000;
            min-width: 200px;
            border-right: 1px solid rgb(230,230,230);
            border-left: 1px solid rgb(230,230,230);
            border-bottom: 1px solid rgb(230,230,230);
            display: none;
        }

            .nav .nav-menu .nav-menu-item div a {
                display: block;
                padding: 10px;
                border-bottom: 1px solid rgb(240, 240, 240);
                font-size: 0.8em;
                user-select: none;
            }

                .nav .nav-menu .nav-menu-item div a i {
                    margin-right: 6px;
                }

                .nav .nav-menu .nav-menu-item div a:hover {
                    background-color: rgb(0,150,200);
                    color: #FFFFFF;
                }

                .nav .nav-menu .nav-menu-item div a:last-child {
                    border-bottom: none;
                }

.nav a.nav-right-icon {
    float: right;
    border: 1px solid rgb(240,240,240);
    border-radius: 10px;
    height: auto;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    color: rgb(25,35,65);
    margin-left: 8px;
}

    .nav a.nav-right-icon:hover {
        background-color: rgb(0,150,200);
        color: #FFFFFF;
        border: 1px solid #FFFFFF;
    }

    .nav a.nav-right-icon span {
        font-size: 0.9em;
    }

    .nav a.nav-right-icon i {
        margin-right: 6px;
        margin-left: 6px;
    }



.slider {
    width: 100%;
    height: auto;
}

.slide {
    width: 100%;
    position: relative;
}

    .slide img {
        width: 100%;
        height: auto;
    }

    .slide .slide-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }



.shortcut {
    display: inline-block;
    width: auto;
    min-width: 65px;
    height: 65px;
    overflow: hidden;
    background-color: #FFFFFF;
    border-radius: 4px;
    text-align: center;
    user-select: none;
    padding: 10px;
    margin: 4px;
    border: 1px solid #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgb(230,230,230);
}

    .shortcut:hover {
        background-color: rgb(245,245,245);
        border: 1px solid rgb(200,200,200);
        box-shadow: 0px 0px 10px 0px rgb(210,210,210);
    }

    .shortcut i {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.5em;
        display: block;
    }

    .shortcut span {
        font-size: 0.9em;
        text-align: center;
    }



.promo-box {
    position: relative;
    background-color: #FFFFFF;
    margin: 10px;
    border: 1px solid rgb(245,245,245);
    cursor: pointer;
}

    .promo-box:hover img {
        filter: contrast(125%);
        filter: brightness(75%);
    }

    .promo-box img {
        width: 100%;
        height: auto;
        display: block;
    }

    .promo-box span {
        font-size: 0.8em;
        color: rgb(160,160,160);
    }

    .promo-box p {
        font-size: 0.9em;
        color: rgb(50,50,50);
    }

    .promo-box strong {
        width: 100%;
        color: #FFFFFF;
        padding: 10px;
        font-size: 0.9em;
        font-weight: 400;
        display: block;
        background-color: rgb(30,30,30);
        color: #ffffff;
        text-align: center;
    }



.accordion {
    width: 100%;
    border-bottom: 1px solid rgb(230,230,230);
    border-right: 1px solid rgb(230,230,230);
    border-left: 1px solid rgb(230,230,230);
}

    .accordion .accordion-section span {
        display: block;
        background-color: #FFFFFF;
        border-top: 1px solid rgb(220,220,220);
        padding: 10px;
        color: rgb(50,50,50);
        font-weight: 700;
        user-select: none;
        cursor: pointer;
    }

        .accordion .accordion-section span i {
            margin-right: 5px;
        }

        .accordion .accordion-section span a {
            float: right;
        }

    .accordion .accordion-section div {
        background-color: #FFFFFF;
        padding: 15px;
        border-bottom: 1px solid rgb(230,230,230);
        color: rgb(80,80,80);
        font-size: 0.9em;
        display: none;
    }


.visual-box {
    font-size: 1em;
    background-color: #FFFFFF;
    border: 1px solid rgb(226,239,237);
    border-radius: 4px;
    overflow: auto;
    margin: 10px;
    box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.1);
    position: relative;
    user-select: none;
}

    .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: 700;
            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);
    }


.image-box {
    font-size: 1em;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    overflow: auto;
    margin: 2px;
    position: relative;
    font-size: 1em;
}

    .image-box img {
        display: block;
        width: 100%;
        height: auto;
    }

    .image-box:hover > img {
        filter: contrast(125%);
        filter: brightness(75%);
    }

    .image-box div {
        position: absolute;
        bottom: 0px;
        left: 0px;
        padding: 15px;
        padding-right: 30px;
        color: #FFFFFF;
        display: inline-block;
        background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.5), rgba(0,0,0,0.5), rgba(0,0,0,0) );
    }

        .image-box div p {
            font-size: 1.2em;
            letter-spacing: 0.05em;
        }

    .image-box a span {
        font-size: 0.9em;
    }


.option-box {
    margin: 10px;
    padding: 15px;
    overflow: auto;
    cursor: pointer;
}

    .option-box:hover {
        background-color: #FFFFFF;
        box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.1);
    }

    .option-box img {
        display: block;
        width: 64px;
        height: 64px;
        float: left;
        margin-right: 25px;
        margin-left: 15px;
    }

    .option-box a {
        display: block;
        font-size: 1em;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .option-box span {
        clear: both;
        font-size: 0.9em;
        color: 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);
}



footer {
    width: 100%;
    background-color: #ffffff;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgb(240,240,240);
}

    footer .footer-links {
        margin: 15px;
        margin-bottom: 40px;
        text-align: center;
    }

        footer .footer-links p {
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9em;
            letter-spacing: 0.05em;
            color: rgb(30,30,30);
            margin-bottom: 12px;
        }

        footer .footer-links a {
            display: block;
            color: rgb(150,150,150);
            font-size: 0.9em;
            margin-bottom: 6px;
        }

            footer .footer-links a:hover {
                text-decoration: underline;
                color: rgb(80,80,80);
            }

        footer .footer-links .social {
            display: inline-block;
            margin-right: 6px;
        }

            footer .footer-links .social img {
                width: 24px;
                height: 24px;
            }

    footer .about {
        border-top: 1px solid rgb(245,245,245);
        text-align: center;
        font-size: 0.8em;
        color: rgb(110,110,110);
        padding: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

        footer .about span {
            color: rgb(180,180,180);
            font-size: 0.9em;
            display: block;
            margin-top: 5px;
            line-height: 1.3em;
        }


.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: 4px;
        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: 4px;
        padding: 20px;
        border: 1px solid rgb(150,150,150);
    }

.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);
}


.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;
    }

a.link-bar {
    display: block;
    padding: 8px;
    border-bottom: 1px solid rgb(245,245,245);
    cursor: pointer;
    font-size: 0.9em;
}

    a.link-bar:hover {
        color: #FFFFFF;
        background-color: rgb(0,125,200);
        text-decoration: none;
    }

    a.link-bar i {
        margin-right: 5px;
    }

    a.link-bar:last-child {
        border-bottom: none;
    }


.ui-autocomplete-loading {
    background-image: url('/images/core/loader-mini.gif');
    background-repeat: no-repeat;
    background-size: 30px 30px;
    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-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;
}