﻿/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 100%;
}

.ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: gray;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

    .ui-autocomplete > li > div {
        display: block;
        padding: 3px 20px;
        clear: both;
        font-weight: normal;
        line-height: 1.42857143;
        color: #1f1e1e;
        white-space: nowrap;
    }

.ui-state-hover,
.ui-state-active,
.ui-state-focus {
    text-decoration: none;
    color: red;
    background-color: white;
    cursor: pointer;
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}


.field-validation-error {
    /*color: #e80c4d;
    font-weight: bold;*/
    color: #f70a2e;
    font-size: medium;
    font-weight: bold;
    text-align: center;
}

.field-validation-notice {
    /*color: #e80c4d;
    font-weight: bold;*/
    color: #4cff00;
    font-size: medium;
    font-weight: bold;
    text-align: center;
}

.field-persona {
    /*color: #e80c4d;
    font-weight: bold;*/
    color: #1eeade;
    font-size: medium;
    font-weight: bold;
    text-align: center;
}

.field-rise {
    /*color: #e80c4d;
    font-weight: bold;*/
    color: #fc03c2;
    font-size: medium;
    font-weight: bold;
    text-align: center;
}

.field-easternblue {
    /*color: #e80c4d;
    font-weight: bold;*/
    color: #2596be;
    font-size: medium;
    font-weight: bold;
    text-align: center;
}

.field-piper {
    /*color: #e80c4d;
    font-weight: bold;*/
    color: #be4f25;
    font-size: medium;
    font-weight: bold;
    text-align: center;
}

.field-aviso-gris {
    /*color: #e80c4d;
    font-weight: bold;*/
    color: #f79f23;
    font-size: medium;
    font-weight: 400;
    text-align: center;
}

@keyframes glowing {
    0% {
        background-color: #B20000;
        box-shadow: 0 0 3px #B20000;
    }

    50% {
        background-color: #FF0000;
        box-shadow: 0 0 40px #FF0000;
    }

    100% {
        background-color: #B20000;
        box-shadow: 0 0 3px #B20000;
    }
}

.buttonGlowing {
    -webkit-animation: glowing 2500ms infinite;
    -moz-animation: glowing 2500ms infinite;
    -o-animation: glowing 2500ms infinite;
    animation: glowing 2500ms infinite;
}

input[type="radio"] {
    -ms-transform: scale(1.2); /* IE 9 */
    -webkit-transform: scale(1.2); /* Chrome, Safari, Opera */
    transform: scale(1.2);
    margin-left: 0.5em;
    margin-right: 0.5em;
}

input[type="checkbox"] {
    -ms-transform: scale(1.2); /* IE 9 */
    -webkit-transform: scale(1.2); /* Chrome, Safari, Opera */
    transform: scale(1.2);
    margin-left: 0.5em;
    margin-right: 0.5em;
}

.inline-rb input[type="radio"] {
    width: auto;
}

.inline-rb label {
    padding: 0px 0px 0px 10px;
    display: inline;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
}
