
body {
    font-family: 'Roboto Condensed', sans-serif;
    background: url('../images/bg.jpg') #051033 no-repeat center top;
    -webkit-background-size: cover;
    background-size: cover;
}
body.ingresso {
    background-image: none;
    background-color: #efefef;
}
.main-box {
    background-color: #ffffff;
    padding: 20px;
    margin-top: 30px;
    border-radius: 3px 3px 0 0;
}

.form-box {
    background-color: #eee;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 0 0 3px 3px;
}

.logo {
    width: 200px;
    text-align: center;
    margin: 10px auto;
    position: relative;
}

.title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 10px;
}
.subtitle {
    font-size: 19px;
    margin: 10px 0 20px;
    color: #555 !important;
}
.data-hora {
    font-weight: 700;
}
.icone {
    padding: 4px;
    background-color: #eee;
    color: #888;
    border-radius: 3px;
    font-size: 22px;
    min-width: 57px;
    height: 45px;
    margin-right: 10px;
    text-align: center;

}
.data {
    display: inherit;
    /* margin: 2px 20px; */
}

.btn {
    white-space: inherit;
}
.btn-info {
    background: #14a1d4;
    border: none !important;
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}
.btn-info:hover, .btn-info:active, .btn-info:focus {
    background: #1c59a1 !important;
    border-color: #1c59a1 !important;
}
.btn-ingresso {
    -webkit-animation: zoom-in-out 1s linear 0s infinite normal ;
    animation: zoom-in-out 1s linear 0s infinite normal ;
}

.social li a {
    padding: 10px;
    font-size: 30px;
    border-radius: 10px;
    background-color: #fff;
    width: 64px;
    display: inline-block;
}

.social *, .btn-warning {
    -webkit-transition: all .18s ease-in-out;
    -moz-transition: all .18s ease-in-out;
    -ms-transition: all .18s ease-in-out;
    -o-transition: all .18s ease-in-out;
    transition: all .18s ease-in-out;
}
.social li {margin: 0 20px;}
.social li.facebook a {color: #3b5999;}
.social li.youtube a {color: #cd201f;}
.social li.instagram a {color: #e4405f;}
.social li.linkedin a {color: #0077B5;}

.social li a:hover, .btn-warning:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.social li.facebook a:hover {background-color: #3b5999; color:#fff;}
.social li.linkedin a:hover {background-color: #0077B5; color:#fff;}
.social li.youtube a:hover {background-color: #cd201f; color:#fff;}
.social li.instagram a:hover {background-color: #e4405f; color:#fff;}

/* ingresso */
.ingresso-list  {
    background-color: #fff;
    padding: 20px;
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    margin: 0;
}
.ingresso-list img {
    width: 100%;
    max-width: 200px;
    padding: 20px;
}
.ingresso-list .time {
    display: inline-block;
    width: 100%;
    background-color: #fefefe;
    padding: 5px;
    text-align: center;
    text-transform: uppercase;
}
.ingresso-list .time .day {
    display: block;
    font-size: 56pt;
    font-weight: 300;
    line-height: 1;
}
.ingresso-list .time .month {
    display: block;
    font-size: 24pt;
    font-weight: 900;
    line-height: 1;
}
.ingresso-list .info {
    /* padding: 20px; */
    /* color: #fff; */
}
.ingresso-list  .info  .title {
    font-size: 1.4em;
    font-weight: 700;
    margin: 0px;
}
.ingresso-list  .info > .desc {
    font-weight: 300;
}
.no-gutters {padding: 0;}
.participante {
    /* padding: 20px; */
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    /* color: #fff; */
}
.participante h3 { text-transform: uppercase;}

.panel {

    background-color: #fff;
    margin: 40px 0;
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}
.panel-heading {
    padding: 20px;
    background: #f5f5f5;
    border-bottom: 1px solid #efefef;
}
/* .panel-body {
    padding: 40px;
} */

.text-warning { color: #FD8D08 !important }

@media only screen and (max-width : 600px) {
    .arrow {display: none;}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width : 1200px) {
    .btn-ingresso { font-size: 2em; }

}


@-webkit-keyframes zoom-in-out {
    0%{
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50%{
        -webkit-transform: scale(1.03);
        transform: scale(1.03);
    }
    100%{
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes zoom-in-out {
    0% {
        -ms-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -ms-transform: scale(1.03);
        transform: scale(1.03);
    }
    100% {
        -ms-transform: scale(1);
        transform: scale(1);
    }
}
