﻿.asteriskField {
    color: red;
}

.jumbotron-billboard .img {
    margin-bottom: 0px;
    opacity: 0.3;
    color: #fff;
    background: #000 url("../Images/background.png") top center no-repeat;
    width: 100%;
    height: 100%;
    background-size: cover;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.jumbotron h2 {
    margin-top: 0;
}

.jumbotron {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.jumbotron .container {
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .jumbotron {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/*Negrita en los titulos small*/
.Bold {
    font-weight: bold;
}

textarea {
    resize: none;
    overflow: hidden;
    text-align: justify;
}

select {
    resize: none;
    overflow: hidden;
}

.radioRequired {
    border: 2px solid white;
    box-shadow: 0 0 0 1px red;
    appearance: none;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background-color: #fff;
    transition: all ease-in 0.2s;
}

.radioRequired:checked {
    background-color: #392;
    box-shadow: 0 0 0 1px #392;
}

ol {
    counter-reset: item;
    list-style: none;
}

ol  li {
    display: block;
    list-style: none;
}

ol  li:before {
    content: counters(item, ".") ". ";
    counter-increment: item
}

ol[style*="list-style-type: lower-alpha;"] li:before {
    content: counters(item, ".", lower-alpha) ". ";
    counter-increment: item
}





