body {
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    background-color: transparent;
    font-size: 16px;
}

.bold{
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.uppercase {
    text-transform: uppercase;
}

h3{
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 0;
}

h4{
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 0;
}

h5{
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 0;
    font-size: 100%;
}

.btn {
    border-radius: 50px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.25);
    font-weight: 500;
    color: #FFFFFF;
    transition: .5s;
    margin-top: 8px;
}

.btn:hover, .btn:focus {
    color: #FFFFFF;
    outline: none;
}

.btn-blue{
    background-color: #3498DB;
}

.btn-blue:hover, .btn-blue:focus{
    background-color: #3aadf7;
}

.btn-purple{
    background-color: #9B51E0;
}

.btn-purple:hover, .btn-purple:focus{
    background-color: #BB6BD9;
}

.btn-orange{
    background-color: #ed9549;
}

.btn-orange:hover, .btn-orange:focus{
    background-color: #eda869;
}

.btn-grey{
    background-color: #BDBDBD;
}

.btn-grey:hover, .btn-grey:focus{
    background-color: #E0E0E0;
}

.btn-red{
    background-color: #e05555;
}

.btn-red:hover, .btn-red:focus{
    background-color: #f56a6f;
}

.btn-green{
    background-color: #2ECC71;
}

.btn-green:hover, .btn-green:focus{
    background-color: #32e37e;
}

.btn-black{
    background-color: #333333;
}

.btn-black:hover, .btn-black:focus{
    background-color: #4F4F4F;
}

.btn-white{
    background-color: #FFFFFF;
    color: #4f4f4f;
}

.btn-white:hover, .btn-white:focus{
    background-color: #E0E0E0;
    color: #4f4f4f;
}

.btn-yellow{
    background-color: #F1C40F;
}

.btn-yellow:hover, .btn-begin:focus{
    background: #ffcb55;
}

.btn-destaque {
    font-size: 18px;
    margin: 1em 1em;

    padding: 1em 3em;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.41);
    border-radius: 50px;
    -webkit-transition: background-color 0.5s ease, color 0.3s;
    transition: background-color 0.5s ease, color 0.3s;
}

.btn-destaque:hover, .btn-destaque:focus {
    font-size: 18px;
}

.btn-active {
    background: #56CCF2;
    color: #FFFFFF;
}

.btn-active:hover, .btn-active:focus{
    background: #4fb9da;
    color: #FFFFFF;
}

.nav-tabs {
    border-bottom: 0px !important;
}

.nav-tabs .btn {
    padding: 15px;
}

@media (min-width: 330px) {
    .nav-tabs [aria-controls="pagamentoCartao"]:before {
        content: "";
        background: url("../img/credit-card.svg");
        position: absolute;
        left: 2.5em;
        background-size: 2em;
        width: 2em;
        height: 2em;
    }

    .nav-tabs [aria-controls="pagamentoBoleto"]:before {
        content: "";
        background: url("../img/barcode.svg");
        position: absolute;
        left: 2.5em;
        background-size: 2em;
        width: 2em;
        height: 2em;
    }

    .nav-tabs [aria-controls="pagamentoPix"]:before {
        content: "";
        background: url("../img/qrcode.png");
        position: absolute;
        left: 2.5em;
        background-size: 1.5em;
        width: 1.5em;
        height: 1.5em;
    }
}

.font-black, .font-black:focus, .font-black:hover {
    color: black;
}

.banner-evento{
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}

.info-evento p {
    text-transform: uppercase;
    margin: .1em;
}

.info-evento {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

@media (min-width: 1200px) {
    .info-evento h2 {
        padding-top: 1.8em;
    }
    .container-fluid {
        max-width: 1300px;
    }
}

.table-ingressos {
    color: #333333;
    display: table;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    height: 84px;
    line-height: 25px;
    width: 100%;
    max-width: 100%;

    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    margin-top: 2em;
    /*margin-bottom: 20px;*/
}

.block-ingressos {
    color: #333333;
    display: table;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    height: 84px;
    line-height: 25px;
    width: 100%;
    max-width: 100%;

    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    margin-top: 2em;
}

.table-ingressos td {
    padding: .8em .5em;
}

.table-ingressos tr:first-child td:first-child{
    border-top-left-radius: 5px;
}

.table-ingressos tr:first-child td:last-child{
    border-top-right-radius: 5px;
}

.table-ingressos tr:last-child td:first-child{
    border-bottom-left-radius: 5px;
}

.table-ingressos tr:last-child td:last-child{
    border-bottom-right-radius: 5px;
}

.table-ingressos tr:nth-child(2n+1) {
    background-color: rgba(255, 255, 255, 0.5);
}

.block-ingressos .block-event:first-child td:first-child{
    border-top-left-radius: 5px;
}

.block-ingressos .block-event:first-child td:last-child{
    border-top-right-radius: 5px;
}

.block-ingressos .block-event:last-child td:first-child{
    border-bottom-left-radius: 5px;
}

.block-ingressos .block-event:last-child td:last-child{
    border-bottom-right-radius: 5px;
}

.block-ingressos .block-event:nth-child(2n+1) {
    background-color: rgba(255, 255, 255, 0.5);
}

.block-ingressos .block-event:nth-child(2n) {
    background-color: #EFEFEF;
}

/*.table-ingressos tr td:nth-child(3n){
    width: 18%;
}*/

.table-ingressos tr td:last-child{
    width: 18%;
}

.table-ingressos .lote {
    font-weight: 300;
    text-align: center;
}

.table-ingressos .ingresso{
    width: 40%;
    font-weight: bold;
    font-style: italic;
}

.table-ingressos .ingresso a{
    text-decoration: none;
    color: black;
}

.table-ingressos .ingresso li{
    font-size: 55%;
}

.table-ingressos .quantidade {
    min-width: 100px;
    /*display: flex;
    align-items: baseline;*/
}

.table-ingressos .btn-amount {
    background: rgba(255,255,255,0.3);
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50px;
    background-color: rgba(255,255,255,0.3);
    border: 0px;
    font-weight: bold;
    outline: none;
}

.table-ingressos .quantidade span {
    padding: .1em .5em;
}

.popover-descricao {
    font-style: normal !important;
    background-color: rgba(255,255,255,0.3);;
    padding: 2px 10px;
    border-radius: 100px;
}

.popover-content{
    font-size: 80%;
}

.popover {
    max-width: 376px;
    color: #202020;
}

@media (max-width: 768px) {
    .table-ingressos tr:first-child{
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .block-ingressos .block-row:first-child{
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
    .table-ingressos td {
        padding: .0em;
        display: flex;
        justify-content: center;
    }
    .table-ingressos tr td:nth-child(3n){
        width: 100%;
    }
    .block-ingressos .block-row td:nth-child(3n){
        width: 100%;
    }
    .table-ingressos tr {
        padding: .8em ;
        display: flex;
        flex-direction: column;

    }
    .block-ingressos .block-row {
        padding: .8em ;
    }
    .table-ingressos tr td:last-child{
        width: 100%;
    }
    .block-ingressos .block-row td:last-child{
        width: 100%;
    }
    .table-ingressos .ingresso{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .block-ingressos .ingresso{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .summary-table {
        margin-top: 20px;
    }
}

/* Start Margens  */
.margin-top-5 {
    margin-top: 5px;
}
.margin-top-10 {
    margin-top: 10px;
}
.margin-top-15 {
    margin-top: 15px;
}
.margin-top-20 {
    margin-top: 20px;
}
.margin-top-25 {
    margin-top: 25px;
}
.margin-top-30 {
    margin-top: 30px;
}
.margin-top-35 {
    margin-top: 35px;
}
.margin-top-40 {
    margin-top: 40px;
}

.no-margin{
    margin: 0 !important;
}
/* End Margens */

.panel-lucid {
    width: 100%;
    background-color: rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: .7em;
}

.panel-lucid.active {
    background-color: rgba(255,255,255,0.8);
}

.panel-lucid input, .panel-lucid select {
    height: 36px;
    line-height: 36px;
    border: 0;
    border-radius: 20px;
    padding: 6px 22px;
    margin-top: 8px;
    font-style: italic;
    font-size: 90%;
    font-weight: normal;
    -webkit-appearance: none;
    appearance: none
}

.panel-lucid .form-group{
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .panel-lucid .form-group-celular{
        padding-left: 0;
    }
}

.form-login input:first-child {
    margin-top: 0px;
}

.form-login{
    min-height: 325px;
}

.panel-lucid label {
    font-weight: 400;
}

.panel-lucid form {
    margin-bottom: 0;
}

.panel-lucid a {
    text-transform: none;
    text-decoration: none;
    font-size: 90%;
}

.icones-redes {
    padding-left: 0;
    margin-bottom: 0;
}

.icones-redes li {
    display: inline-block;
}

.icones-redes a {
    width: 40px;
    height: 40px;
    display: block;
    position: relative;
    text-indent: -99999px;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-size: 40px;
}

.facebook {
    background-image: url(../img/facebook.png);
}

.google {
    margin-left: 10px;
    background-image: url(../img/google.jpg);
}

#pagamentoBoleto p {
    text-transform: none;
    text-align: left;
    padding: 1em;
}

#iconSuccess{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 10px;
}

#iconSuccess span{
    width: 150px;
    height: 150px;
    background: url("../img/checked.svg");
    background-size: 150px;
}

.icon-finalizacao {
    width: 150px;
    margin: 10px;
    transition: all .2s ease-in-out;
}

.icon-finalizacao-xs {
    width: 50px;
}

#iconCartExpired{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 10px;
}

#iconCartExpired span{
    width: 200px;
    height: 150.45px;
    background: url("../img/cartExpired.svg");
    background-size: 200px;
}

.thumbnail-evento{
    padding: 0;
    border: 0;
    border-radius: 5px ;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.20);
    text-align: center;
    background: rgba(255,255,255,0.7);
}

.thumbnail-evento img{
    border-radius: 5px 5px 0 0;
}

.caption-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.5em;
}

.data-evento {
    display: flex;
    flex-direction: column;
    margin: 0 10px;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.data-evento .day {
    font-size: 200%;
    font-weight: 800;
}

.data-evento .month {
    font-size: 80%;
    font-weight: 500;
    text-transform: uppercase;
}

.thumbnail-evento h5{
    margin-bottom: 3px;
}

.thumbnail-evento p{
    font-size: 75%;
    margin-bottom: 0px;
}

.thumbnail-evento .info-evento{
    justify-content: center;
    flex-grow: 2;
    margin-right: 5px;
}

.local-evento {
    display: flex;
    border-bottom: 2px solid #FFFFFF;
    margin-bottom: 2em;
}

.local-evento img {
    width: 6em;
    height: 100%;
    margin: 1em;
}

.local-evento p {
    margin: 0;
}

.local-info {
    align-self: flex-end;
    margin: 1em;
}

.modal-dialog{
    color: #333333;
    border-radius: 10px;
    background: rgb(255, 255, 255);
}

.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    display: block;
    max-width: none;
    width: 100%;
    height: auto;
}

.font-white{
    text-decoration: none;
    color: #fff;
}

.ajaxLoader{
    position:fixed;
    top:50%;
    margin-top: -50px;
    left:50%;
    margin-left: -50px;
    text-align: center;
    z-index: 9999999;
}

.ajaxLoader img{
    width: 100px;
}

.transition, .icon-entrega {
    transition: all .3s ease-in-out;
}

.margin-top-0{
    margin-top: 0;
}

.icon-entrega {
    width: 85px;
}
.icon-entrega-xs {
    width: 50px;
}

.font-danger{
    color: #EB5757;
    text-transform: none;
}

/* width */
::-webkit-scrollbar {
    width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #bebebe;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #8b8b8b;
}

.form-error{
    text-align: left;
    color: #8b130f;
    font-size: 12px;
}

.form-error ul{
    list-style: none;
    padding: 0px;
}

.textarea-pgto {
    width: 100%;
    font-size: 14px;
    line-height: 15px;
    padding: 5px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}