﻿/***Layout***/
.beta {
    position: absolute;
    width: 72px;
    height: 72px;
    left: -36px;
    top: -36px;
    overflow: hidden;
    background-color: #ff4e4e;
    color: #fff;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -moz-transition: all ease 0.1s;
    -o-transition: all ease 0.1s;
    -webkit-transition: all ease 0.1s;
    transition: all ease 0.1s;
    z-index: 3;
}

    .beta:hover {
        width: 350px;
        height: 350px;
        left: -175px;
        top: -175px;
    }

    .beta .att {
        display: block;
        margin-top: 56%;
        font-size: 14px;
        line-height: 1;
        font-weight: bold;
    }

    .beta .msg {
        display: none;
        margin-top: 75%;
        width: 50%;
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
        text-align: center;
        text-shadow: none;
    }

    .beta:hover .msg {
        display: block;
    }

    .beta:hover .att {
        display: none;
    }

    .beta .beta-lb {
        display: none;
        position: absolute;
        top: 55%;
        left: 0;
        width: 100%;
        padding: 10px;
        background: #fff;
        color: #ff4e4e;
        text-align: center;
        font-weight: bold;
        text-shadow: none !important;
    }

    .beta:hover .beta-lb {
        display: block;
    }

.header {
    background-position: center;
    background-size: cover;
}

.header-top {
    position: relative;
    min-height: 50px;
    padding: 9px 0;
    backgxround: #aaa;
    backxground: rgba(0, 0, 0, 0.45);
}

.header-top-share .link {
    background: #fff;
    color: #777;
    font-size: 16px;
}

.header-top-menu .link {
    display: block;
    float: left;
    line-height: 32px;
    margin-right: 15px;
}

.header-bottom {
    padding: 9px 0;
}

.header-bottom-xs {
    position: relative;
    height: 32px;
}

.header-bottom-share .link {
    margin-top: -1px;
    border-width: 1px;
    border-style: solid;
    font-size: 16px;
}

.main-menu {
    border-top: none !important;
    box-shadow: none !important;
}

    .main-menu .navbar-nav {
        text-align: center;
        float: none;
    }

        .main-menu .navbar-nav li {
            display: inline-block;
            float: none;
            border-left-width: 1px;
            border-left-style: solid;
        }

            .main-menu .navbar-nav li:first-child {
                border-left: none;
            }

            .main-menu .navbar-nav li a {
                padding: 0 15px;
                margin: 0;
                background: none;
                line-height: 32px;
                text-shadow: none !important;
            }

                .main-menu .navbar-nav li a:hover {
                    text-decoration: underline;
                }

    .main-menu .dropdown-menu li {
        border: none !important;
    }

        .main-menu .dropdown-menu li a, .main-menu .dropdown-menu li a:visited {
            color: #333 !important;
        }

.footer {
    background: #333;
}

.footer-links {
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer-link-group {
    margin-bottom: 50px;
}

.footer-links-title, .index .footer-links-title {
    display: block;
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    color: #aaa;
    text-align: left;
}

.footer-links-list a {
    display: block;
    margin-bottom: 10px;
}

    .footer-links-list a:link, .footer-links-list a:visited {
        color: #fff;
        text-decoration: none;
        outline: none;
    }

    .footer-links-list a:hover, .footer-links-list a:active {
        color: #fff;
        text-decoration: underline;
    }

    .footer-links-list a:last-child {
        margin-bottom: 0;
    }

.footer-socials {
    margin-bottom: 30px;
    font-size: 16px;
}

    .footer-socials a:link, .footer-socials a:visited {
        color: #fff;
    }

    .footer-socials a:hover, .footer-socials a:active {
        color: #333;
        background: #fff;
    }

.footer-copyright {
    padding: 15px 0;
}

    .footer-copyright img {
        padding: 7px;
    }

@media (max-width:991px) {
    .footer-link-group {
        margin-bottom: 50px;
    }
}

@media (max-width:767px) {
    .footer-copyright div {
        text-align: center !important;
    }

    .main-menu .navbar-nav li {
        display: block;
        float: none;
        border-left: none;
        text-align: right;
    }

        .main-menu .navbar-nav li a {
            background: none;
            padding-bottom: 10px;
            padding-top: 10px;
            text-transform: uppercase;
        }
}

/***End Layout***/

.content {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
}

.block {
    padding: 15px 20px;
    margin: 0 auto;
    background: #fff;
}

.block-400 {
    max-width: 400px;
}

.block-500 {
    max-width: 500px;
}

.block-600 {
    max-width: 600px;
}

.show-more {
    z-index: 2;
}

    .show-more div {
        position: relative;
        max-width: 250px;
        height: 90px;
        margin: 0 auto;
        font-size: 25px;
        text-align: center;
        text-transform: uppercase;
        cursor: pointer;
    }

        .show-more div span {
            display: block;
            position: relative;
            line-height: 49px;
            border-bottom: 1px dotted #999;
        }

        .show-more div em {
            display: block;
            position: relative;
            line-height: 40px;
        }

        .show-more div span:before {
            content: "";
            position: absolute;
            left: 50%;
            right: 50%;
            bottom: 0;
            height: 4px;
            -webkit-transition-property: left, right;
            -moz-transition-property: left, right;
            -o-transition-property: left, right;
            transition-property: left, right;
            -webkit-transition-duration: 0.3s;
            -moz-transition-duration: 0.3s;
            -o-transition-duration: 0.3s;
            transition-duration: 0.3s;
            -webkit-transition-timing-function: ease-out;
            -moz-transition-timing-function: ease-out;
            -o-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
        }

        .show-more div:hover span {
            border-bottom-style: solid;
        }

            .show-more div:hover span:before {
                left: 0;
                right: 0;
            }

.problem-tile {
    display: block;
    position: relative;
    height: 300px;
    margin-bottom: 15px;
    text-align: center;
    cursor: pointer;
}

    .problem-tile .img {
        display: block;
        position: relative;
        width: 80px;
        height: 80px;
        margin: 0 auto 10px auto;
        border-style: solid;
        border-width: 1px;
        border-radius: 100%;
        background-position: center;
        background-repeat: no-repeat;
        -webkit-transition: all ease 0.1s;
        -moz-transition: all ease 0.1s;
        -o-transition: all ease 0.1s;
        transition: all ease 0.1s;
    }

    .problem-tile:hover .img {
        border-width: 5px;
        -webkit-transition: all ease 0.1s;
        -moz-transition: all ease 0.1s;
        -o-transition: all ease 0.1s;
        transition: all ease 0.1s;
    }

    .problem-tile.active {
        font-weight: bold;
    }

        .problem-tile.active .img {
            border-width: 10px;
        }

@media (max-width: 767px) {
    .problem-tile {
        height: auto;
        margin-bottom: 15px;
        text-align: left;
        cursor: pointer;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

        .problem-tile .img {
            display: inline-block;
            max-width: 48px;
            height: 48px;
            flex: 0 0 48px;
            margin: 0 10px 0 0;
            vertical-align: middle;
            background-size: 28px 28px;
        }

        .problem-tile:hover .img {
            border-width: 3px;
        }

        .problem-tile .title {
            display: inline-block;
            vertical-align: middle;
            white-space: normal;
        }

        .problem-tile.active {
            font-weight: bold;
        }
}

.request-gallery {
    position: relative;
}

.request-gallery-link {
    display: block;
    position: relative;
    height: 100px;
    background-position: center;
    background-size: cover;
}

    .request-gallery-link span {
        display: block;
    }

.request-gallery-info {
    position: absolute;
    width: 100%;
    height: 40px;
    bottom: 0;
    left: 0;
    padding: 0 10px;
    font-size: 16px;
    line-height: 50px;
}

.request-result-tile {
    padding: 15px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 30px;
}

    .request-result-tile .before {
        margin-right: -7px;
    }

    .request-result-tile .after {
        margin-left: -7px;
    }

.request-result-row .img {
    display: block;
    width: 40px !important;
    height: 40px !important;
    margin-right: 10px;
    margin-top: 5px;
    float: left;
    font-size: 40px;
    text-align: center;
    line-height: 1;
    color: #bdbdbd;
}

.request-result-row .text {
    display: block;
    height: 24px;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden !important;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.news-tile {
    position: relative;
    height: 250px;
    margin: 0 -14px 2px -14px;
    padding: 15px;
    color: #fff;
    overflow: hidden;
}

    .news-tile .text {
        position: absolute;
        width: 100%;
        height: 150px;
        bottom: 0;
        left: 0;
        padding: 15px;
    }

        .news-tile .text div {
            position: relative;
            height: 100%;
            overflow: hidden;
        }

        .news-tile .text .title {
            text-transform: uppercase;
            font-weight: bold;
        }

.map-container {
    height: 100%;
}

.map-popover {
    display: block;
    max-width: 480px;
    min-width: 300px;
    padding: 0;
    border-width: 4px;
    border-radius: 0 !important;
}

    .map-popover .close {
        position: absolute;
        right: 5px;
        top: 0;
        color: #fff;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 20px;
        opacity: 1 !important;
        text-shadow: none;
    }

    .map-popover .popover-content {
        padding: 0 14px;
    }

    .map-popover .request-gallery {
        margin-bottom: 15px;
    }

.map-balloon {
    font-size: 14px;
    font-family: 'Open Sans Condensed', Arial;
}

.map-balloon-row {
    clear: both;
}

.map-balloon-col {
    float: left;
    width: 45%;
}

    .map-balloon-col:first-child {
        margin-right: 5%;
    }

    .map-balloon-col:last-child {
        margin-left: 5%;
    }

.map-balloon-title {
    padding: 5px 10px 9px 10px;
}

    .map-balloon-title .cell {
        vertical-align: middle;
    }

.map-balloon-img {
    width: 50px;
    height: 50px;
}

.map-balloon-address {
    margin-bottom: 10px;
    background: #eee;
    padding: 5px 14px;
    white-space: nowrap;
}

.map-balloon-info-row {
    margin-bottom: 10px;
    font-weight: bold;
}

    .map-balloon-info-row .name {
        font-weight: normal;
    }

.map-wrap {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    background: rgba(255,255,255,0.9);
    text-align: center;
    padding-top: 50px;
    font-size: 24px;
    color: #666;
    z-index: 100;
}

div[id^=map_canvas],
div[id^=map_canvas] div {
    overflow: auto;
}

.result {
    margin-bottom: 0;
}

    .result .fa {
        display: block;
        font-size: 100px;
    }

.modal-body {
    padding: 0;
}

.loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9998;
}

    .loading .progress {
        position: absolute;
        top: 50%;
        width: 70%;
        height: 28px;
        margin-top: -14px;
        margin-left: 15%;
        border: 1px solid #fff;
    }

.bootstrap-datetimepicker-widget {
    z-index: 9999 !important;
}

.survey {
}

.survey-filed {
    margin-bottom: 20px;
}

    .survey-filed > .title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .survey-filed > .variants > .variant {
        margin-bottom: 15px;
    }

        .survey-filed > .variants > .variant > .title {
            font-size: 16px;
            margin-bottom: 4px;
        }

        .survey-filed > .variants > .variant > .result .total {
            height: 15px;
            background: #eee;
            position: relative;
        }

        .survey-filed > .variants > .variant > .result .votes {
            position: absolute;
            top: 0;
            left: 0;
            height: 15px;
            height: 15px;
            background: #fbc02d;
        }

        .survey-filed > .variants > .variant:first-child > .result .votes {
            position: absolute;
            top: 0;
            left: 0;
            height: 15px;
            height: 15px;
            background: #388e3c;
        }
