/*
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i');
*/

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #333;
    background-color: #F0F0F0;
}

.container {
    background: #FFF;
    max-width: 1000px;
}

@media (min-width: 1000px) {
    .container {
        padding-left: 0px;
        padding-right: 0px;
    }
}

#page {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}


/* #main {
    padding: 60px 60px 0 60px;
} */

#registration {
    padding: 0px 50px 0 50px;
    color: #000;
    background: #fff;
}

#page .main,
#page .side {
    padding: 80px 60px;
}

#page img {
    max-width: 100%;
}

.side {
    /* background: #F9F9F9; */
    padding: 20px;
}

#event-info {
    padding: 30px 60px;
    background: #F9F9F9;
    border-bottom: 1px solid #F0F0F0;
}

#event-info p {
    margin-bottom: 0;
}

#event-info .info-label {
    font-weight: bold;
}


/**
* Header
*/

#header {
    padding: 10px 30px;
    position: relative;
    margin: 0 auto;
    float: none;
    min-height: 112px;
    overflow: hidden;
    display: flex;
}

#logo {
    float: left;
    position: relative;
    top: 0px;
    max-height: 250px;
    max-width: 250px;
    margin: auto;
    margin-left: initial;
}

#logo img {
    width: auto;
}


/**
* Navigation
*/

#navigation {
    font-weight: normal;
    display: block;
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
}

#navigation ul {
    list-style: none;
    margin: 0;
    padding-top: 0px;
    padding-right: 10px;
    display: flex;
    flex-wrap: wrap;
}

#navigation ul li {
    display: inline;
    margin: 2px 15px;
}

#navigation ul li a {
    font-weight: bold;
}

#navigation ul li.active a {
    color: #4bafe8;
}

@media screen and (min-width:1000px) {
    #mobile-menu-toggle {
        display: none;
    }
}

@media screen and (max-width: 1000px) {
    #navigation {
        display: block;
        height: 0px;
        width: 0px;
        position: fixed;
        z-index: 101;
        left: -9999px;
        top: 0;
        opacity: 0;
        background: rgba(0, 0, 0, 0.8);
        transition: opacity .2s;
    }
    .menu-open #navigation {
        opacity: 1;
        left: 0;
        height: 100%;
        width: 100%;
    }
    #navigation ul {
        position: relative;
        top: 20%;
        display: block;
    }
    #navigation ul li {
        display: block;
        margin: 20px auto;
        text-align: center;
    }
    #navigation ul li a {
        font-size: 18px;
        font-weight: bold;
        color: #FFF;
    }
    #mobile-menu-toggle {
        z-index: 102;
        font-size: 32px;
        margin-top: auto;
        margin-bottom: auto;
        margin-left: auto;
        padding-left: 15px;
        display: visible;
    }
    .open-toggle {
        display: block;
    }
    .menu-open .open-toggle {
        display: none;
    }
    .close-toggle {
        display: none;
        color: #FFF;
    }
    .menu-open .close-toggle {
        display: block;
    }
    #main {
        padding: 40px 0px 0px 15px;
    }
    #registration {
        padding: 0px 0px 20px 0px;
    }
    #page,
    .container {
        padding-right: 0px;
        padding-left: 0px;
    }
}


/**
* Hero
*/

#hero {
    height: 100%;
    width: 100%;
    float: left;
    overflow: hidden;
}

#hero img {
    display: block;
}

#hero img {
    width: 100%;
}

#hero img {
    height: 100%;
}

#hero .title {
    color: #FFF;
    font-size: 42px;
    margin-bottom: 30px;
}

#hero p {
    color: #FFF;
    font-weight: normal;
    font-size: 18px;
}

#hero span:first-child {
    margin-right: 20px;
    padding-right: 30px;
    border-right: 1px solid #FFF;
}

#hero .btn {
    font-size: 18px;
}

@media screen and (max-width: 800px) {
    #hero .title {
        font-size: 32px;
    }
    #hero span {
        border-right: none !important;
        margin-right: 0 !important;
        padding-right: 0 !important;
        display: block;
    }
}


/**
* Headings & titles
*/

.title-prefix {
    font-size: 16px;
    color: rgb(206, 206, 206);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 30px;
}

h1,
h2,
h3,
h4 {
    margin-top: auto;
    margin-bottom: 30px;
    line-height: 1.2;
    display: block;
    width: 100%;
    font-weight: bold;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

.title.underlined::after {
    content: "";
    display: block;
    margin: 40px 0;
    width: 80px;
    height: 2px;
    background: #4bafe8;
}

@media screen and (max-width: 800px) {
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 18px;
    }
    h4 {
        font-size: 16px;
    }
}


/**
* Footer
*/

#footer {
    font-size: 16px;
    padding: 60px;
}

#footer p {
    font-size: 14px;
}

#footer .title {
    color: #4bafe8;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
}


/**
* Buttons
*/

.btn {
    margin-top: 30px;
    margin-right: 10px;
    padding: 15px 30px;
    font-weight: bold;
    font-size: 18px;
    transition: all .1s;
}

.btn.btn-primary {
    background: #4bafe8;
    border: 2px solid #4bafe8;
}

.btn.btn-primary.btn-bordered {
    border-color: #4bafe8;
    color: #4bafe8;
}

.btn.btn-primary.btn-bordered:hover {
    border-color: #4bafe8;
    background-color: #4bafe8;
    color: #FFF;
}

.btn.btn-bordered {
    border: 2px solid #4bafe8;
    background: none;
}

.btn.btn-white {
    color: #FFF;
}

.btn.btn-white.btn-bordered {
    border-color: #FFF;
}

.btn.btn-white.btn-bordered:hover {
    background-color: #FFF;
    border-color: #FFF;
    color: #111;
}


/**
* Introduction
*/

#introduction {}

.register #introduction {}

@media screen and (max-width: 700px) {
    #introduction {}
}


/**
* Blocks
*/

.block.no-width-class {
    padding: 40px;
}

@media (max-width: 600px) {
    .block {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.form-block.col-md-6 .preview-label,
.form-block.col-md-6 .preview-value,
.form-block.col-md-4 .preview-label,
.form-block.col-md-4 .preview-value,
.form-block.col-md-2 .preview-label,
.form-block.col-md-2 .preview-value {
    display: block !important;
    width: 100% !important;
    min-width: none !important;
    max-width: none !important;
    flex: 100% !important;
}


/**
* Forms
*/

form {
    margin-top: 40px;
}
.form-block #EventosFormWidget form {
    margin-top: 0px;
}

.form-preview #eventos2-widget {
    padding-top: 40px;
    padding-bottom: 40px;
}

label {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.required > label::after {
    content: "*";
    color: red;
    position: relative;
    right: -10px;
    float: right;
}

.form-control {
    box-shadow: none;
    height: auto;
    padding: 12px 15px;
    margin-bottom: 25px;
    border-radius: 0;
}

.form-control:focus {
    box-shadow: none;
}

.form-control.parsley-error {
    border-color: red;
}

ul.parsley-errors-list {
    margin: 0;
    padding: 0;
    color: red;
    font-size: 14px;
    list-style: none;
}

.breadcrumb {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    display: inline-block;
    border-radius: 30px;
    padding: 5px;
}

.breadcrumb li {
    display: inline-block;
    margin: 0 auto;
    padding: 12px 35px;
    width: auto;
    color: #999;
    text-align: center;
    border-radius: 30px;
}

.breadcrumb li a {
    display: block;
}

.breadcrumb li.active {
    background: #4bafe8;
    color: #FFF;
}

.breadcrumb li.active span {
    background: #FFF;
    border-radius: 100%;
    color: #111;
    height: 24px;
    width: 24px;
    text-align: center;
    display: inline-block;
    margin-right: 6px;
}

.breadcrumb li.active a {
    color: #FFF;
}

.breadcrumb li:first-child {}

.breadcrumb li.breadcrumb-item::before {
    display: none;
}

.form button span {
    margin-left: 15px;
}


/**
* Helper classes
*/

strong {
    font-weight: bold;
}

.blue {
    color: #4bafe8;
}

.white {
    color: #FFF;
}


/**
* Cancel registration
*/

.registration-cancel {
    font-size: 18px;
}

.registration-cancel .container {
    background: none;
}

.registration-cancel #page {
    max-width: 1000px;
    width: 100%;
    margin: 50px auto 0 auto;
    box-shadow: none;
    border: 1px solid #DDD;
    padding: 50px;
    background: #FFF;
}

.registration-cancel h2 {
    margin-bottom: 30px;
    font-weight: bold;
}

#eventos-widget-main-content h3,
#eventos-widget-main-content .h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

/**
* Disable marketing
*/
#page > .form-check {
    margin-left: 35px;
}

