h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}
.reveal h2{
    font-variant: normal!important;
    font-weight: 700;
}

.timeline {
    border-left: 0.25em solid rgba(0,31,61,0.5);
}

.fase {
    width: 100%;
    vertical-align: middle;
    box-sizing: border-box;
    position: relative;
    padding:1rem;
}

.fase h4{
    cursor:pointer;
    position:relative
}

.fase h4:after {
    content: '';
    display: inline-block;
    position: relative;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #000;
    vertical-align: middle;
    margin-left: 10px;
}

.timeline .fase:after {
    position: absolute;
    display: block;
    top: 1.6rem;
}
.timeline .fase:after {
    left: -18px;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 26px solid #68C13E;
    content: "";
}

.period{
    list-style: none;
    padding:0;
    margin:0 0 2rem 0;
}

.period li{
    padding-left: 24px;
    position: relative;
}

.period li:after {
    content: '';
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 12px;
    background: #000;
    vertical-align: baseline;
    left: 0px;
}
.period li.ongoing:after {
    background: #68C13E;
}

.period li.claims:after {
    background: #001f3d;
}

.period li.closed:after {
    background: #CB4335;
}

.period li.ongoing {
    color: #68C13E;
}

.period li.claims{
    color: #001f3d;
}

.period li.closed{
    color:#CB4335;
}

.period li.grey{
    color:#8a8a8a;
}
.period li.grey:after {
    background: #8a8a8a;
}



ul.contenido-sunrise-plantilla{
    margin:0;
    padding:0;
    list-style: none;
}
ul.contenido-sunrise-plantilla li{
    display:inline-block;
    margin-right: 6px;
}
ul.contenido-sunrise-plantilla li .button{
    border-radius: 6px;
}

button.awaiting{
    background: #8A8A8A;
    color:#fff;
}

input.text, input.title, input[type=email], input[type=password], input[type=tel], input[type=text], select, textarea {
    padding: 20px;
}

.button, button.ongoing{
    background: #68C13E;
    color:#fff;
}

button.claims{
    background: #001f3d;
    color:#fff;
}

button.closed {
    background: #CB4335;
    color:#fff;
}

button.grey {
    background: #8a8a8a;
    color:#fff;
}

option{
    padding:6px!important;
    min-height: 1rem;
}

.flex{
    display: flex;
    justify-content: center!important;
    align-items: center!important;
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    border-radius: 10px;
}

#loader{
    width:180px;
    height:19px;
    overflow:hidden;
    background-color:#1468A0;
    margin:auto;
    border-radius:10px;
    -o-border-radius:10px;
    -ms-border-radius:10px;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
}

.loader{
    background-color:rgb(255,255,255);
    margin-top:0;
    margin-left:-180px;
    animation-name:bounce_loader;
    -o-animation-name:bounce_loader;
    -ms-animation-name:bounce_loader;
    -webkit-animation-name:bounce_loader;
    -moz-animation-name:bounce_loader;
    animation-duration:1s;
    -o-animation-duration:1s;
    -ms-animation-duration:1s;
    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-iteration-count:infinite;
    -o-animation-iteration-count:infinite;
    -ms-animation-iteration-count:infinite;
    -webkit-animation-iteration-count:infinite;
    -moz-animation-iteration-count:infinite;
    animation-timing-function:linear;
    -o-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
    -webkit-animation-timing-function:linear;
    -moz-animation-timing-function:linear;
    width:180px;
    height:19px;
}

.grupo-botones{
    text-align: center;
}
.boton.status{
    display: inline-block;
    padding: 0.2rem 0.35rem;
    background:#001f3d;
    color:#fff;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
}
.boton.status:hover{
    background:#fff;
    color:#001f3d;
}
.boton.status.active{
    background:#68C13E;
}


@keyframes bounce_loader{
    0%{
        margin-left:-180px;
    }

    100%{
        margin-left:180px;
    }
}

@-o-keyframes bounce_loader{
    0%{
        margin-left:-180px;
    }

    100%{
        margin-left:180px;
    }
}

@-ms-keyframes bounce_loader{
    0%{
        margin-left:-180px;
    }

    100%{
        margin-left:180px;
    }
}

@-webkit-keyframes bounce_loader{
    0%{
        margin-left:-180px;
    }

    100%{
        margin-left:180px;
    }
}

@-moz-keyframes bounce_loader{
    0%{
        margin-left:-180px;
    }

    100%{
        margin-left:180px;
    }
}

.boton {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
}
.grupo-botones {
    text-align: center;
}

.reveal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1005;
    display: none;
    background-color: rgba(10, 10, 10, 0.45);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    align-items: center;
    justify-content:center;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity:1 ;
    }
}