﻿html, body {
    background-color: #E1E1E1;
}

/* Fixes graphical shadow display for the google maps info window */
#map_canvas img {
    max-width: none;
}

#account-dropdown {
    color: white;
}

    #account-dropdown:hover {
        text-decoration: none;
        -webkit-stroke-width: 5.3px;
        -webkit-stroke-color: #FFFFFF;
        -webkit-fill-color: #FFFFFF;
        text-shadow: 1px 0px 20px yellow;
        -webkit-transition: width 0.3s; /*Safari & Chrome*/
        transition: width 0.3s;
        -moz-transition: width 0.3s; /* Firefox 4 */
        -o-transition: width 0.3s; /* Opera */
        font-size: medium;
    }

.center {
    text-align: center;
    margin: 0 auto;
}

/* this is for the honeypot field */
.input-imp-long {
    display: none !important;
}

/* The white background content wrapper */
.body-content {
    background-color: #fff;
    padding: 20px;
    margin: 0 -20px 18px; /* negative indent the amount of the padding to maintain the grid system */
    -webkit-border-radius: 0 0 6px 6px;
    -moz-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,.15);
    box-shadow: 0 1px 2px rgba(0,0,0,.15);
}

.page-header {
    background-color: #f5f5f5;
    padding: 20px 0 0 0;
    margin: 20px -20px 20px -20px;
}

.survey-question {
    cursor: move;
}

.inactive-survey-question {
    background-image: url('images/diag-striped.png');
    cursor: not-allowed;
}

.drag-handle-horizontal {
    background-image: url('images/draghandle_v0.png');
    margin-bottom: 12px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2px;
    height: 6px;
    width: 18px;
}

.drag-handle-vertical {
    background-image: url('images/draghandle_v1.png');
    margin-bottom: auto;
    margin-left: 2px;
    margin-right: 10px;
    margin-top: auto;
    height: 18px;
    width: 6px;
}

.survey-edit-radiobutton {
    background-image: url('images/unchecked.png');
    border-radius: 50%;
    background: rgba(255,255,255,0);
    border: 1px solid rgba(198,198,198,1);
    height: 15px;
    margin: 0;
    outline: none;
    position: absolute;
    left: 5px;
    top: 40px;
    width: 15px;
    padding: 5px;
}

.survey-edit-checkbox {
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    background-color: rgba(255,255,255,.05);
    border: 1px solid #c6c6c6;
    border: 1px solid rgba(155,155,155,.57);
    font-size: 1px;
    height: 11px;
    margin: 0 0 0 1px;
    outline: 0;
    vertical-align: text-bottom;
    width: 11px;
    position: absolute;
    display: inline-block;
    top: 42px;
    left: 6px;
}

.locked-question {
    padding: 5px;
}

.locked-question + .tooltip .tooltip-inner {
    max-width: 220px;
    width: 220px;
}

.glyphicon-refresh-animate {
    -animation: spin 1s infinite linear;
    -webkit-animation: spin2 1s infinite linear;
}

@keyframes spin {
    from {
        transform: scale(1) rotate(0);
    }

    to {
        transform: scale(1) rotate(360deg);
    }
}

@-webkit-keyframes spin2 {
    from {
        -webkit-transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.notification-template {
    text-align: center;
    font-size: 12pt;
}

div.stars {
    display: inline-block;
}

input.star {
    display: none;
}

label.star {
    float: right;
    padding: 10px;
    font-size: 30px;
    color: #444;
    transition: all .2s;
}

input.star:checked ~ label.star:before {
    content: '\f005';
    color: #FD4;
    transition: all .25s;
}

label.star:before {
    content: '\f006';
    font-family: FontAwesome;
}
