/* Minification failed. Returning unminified contents.
(24,1): run-time error CSS1030: Expected identifier, found '$'
(24,1): run-time error CSS1026: Expected open brace, found '$'
(35,1): run-time error CSS1019: Unexpected token, found '}'
(37,1): run-time error CSS1019: Unexpected token, found '@-moz-keyframes'
(39,1): run-time error CSS1019: Unexpected token, found '$'
(40,9): run-time error CSS1035: Expected colon, found ';'
(42,1): run-time error CSS1062: Expected semicolon or closing curly-brace, found '{'
(67,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(69,1): run-time error CSS1019: Unexpected token, found '$'
(70,9): run-time error CSS1035: Expected colon, found ';'
(72,1): run-time error CSS1062: Expected semicolon or closing curly-brace, found '{'
(82,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(84,1): run-time error CSS1019: Unexpected token, found '$'
(85,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(87,1): run-time error CSS1062: Expected semicolon or closing curly-brace, found '{'
(104,1): run-time error CSS1019: Unexpected token, found '@-moz-keyframes'
(106,1): run-time error CSS1019: Unexpected token, found '$'
(107,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(109,1): run-time error CSS1062: Expected semicolon or closing curly-brace, found '{'
(148,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(150,1): run-time error CSS1019: Unexpected token, found '$'
(151,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(153,1): run-time error CSS1062: Expected semicolon or closing curly-brace, found '{'
(170,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(172,1): run-time error CSS1019: Unexpected token, found '$'
(173,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(175,1): run-time error CSS1062: Expected semicolon or closing curly-brace, found '{'
(192,1): run-time error CSS1019: Unexpected token, found '@-moz-keyframes'
(194,1): run-time error CSS1019: Unexpected token, found '$'
(195,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(197,1): run-time error CSS1062: Expected semicolon or closing curly-brace, found '{'
(236,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(238,1): run-time error CSS1019: Unexpected token, found '$'
(239,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(241,1): run-time error CSS1062: Expected semicolon or closing curly-brace, found '{'
 */
@charset "UTF-8";
/**
  Generates @media queries for multiple breakpoints
  usage: @include desktop { <CONTENT> }
*/
/** 
  Generates text-color class
  Adds color: $color
  Adds color: darken(color, 10%) to :hover + :focus
  usage: @include text-emphasis-variant(.class-name, $color);
*/
/** 
  Generates bg color class
  Adds background-color: $color,
  Adds background-color: darken($color, 10%);
  usage: @include bg-variant('.parent-class', $az-primary);
*/
/**
  Multiple transform: xxx mixins
  usage: @include transform-prop-name(arguments)
*/
@-webkit-keyframes

$animation_name {
    from;

{
    transform: rotate(0);
}

to {
    transform: rotate(360deg);
}

}

@-moz-keyframes

$animation_name {
    from;

{
    transform: rotate(0);
}

to {
    transform: rotate(360deg);
}

}

@-o-keyframes

$animation_name {
    from;

{
    transform: rotate(0);
}

to {
    transform: rotate(360deg);
}

}

@keyframes

$animation_name {
    from;

{
    transform: rotate(0);
}

to {
    transform: rotate(360deg);
}

}

@-webkit-keyframes

$animation_name {
    0%;

{
    display: none;
    opacity: 0;
}

1% {
    display: block;
    opacity: 0;
}

100% {
    display: block;
    opacity: 1;
}

}

@-moz-keyframes

$animation_name {
    0%;

{
    display: none;
    opacity: 0;
}

1% {
    display: block;
    opacity: 0;
}

100% {
    display: block;
    opacity: 1;
}

}

@-o-keyframes

$animation_name {
    0%;

{
    display: none;
    opacity: 0;
}

1% {
    display: block;
    opacity: 0;
}

100% {
    display: block;
    opacity: 1;
}

}

@keyframes

$animation_name {
    0%;

{
    display: none;
    opacity: 0;
}

1% {
    display: block;
    opacity: 0;
}

100% {
    display: block;
    opacity: 1;
}

}

@-webkit-keyframes

$animation_name {
    0%;

{
    display: block;
    opacity: 0;
}

99% {
    display: block;
    opacity: 1;
}

100% {
    display: none;
    opacity: 1;
}

}

@-moz-keyframes

$animation_name {
    0%;

{
    display: block;
    opacity: 0;
}

99% {
    display: block;
    opacity: 1;
}

100% {
    display: none;
    opacity: 1;
}

}

@-o-keyframes

$animation_name {
    0%;

{
    display: block;
    opacity: 0;
}

99% {
    display: block;
    opacity: 1;
}

100% {
    display: none;
    opacity: 1;
}

}

@keyframes

$animation_name {
    0%;

{
    display: block;
    opacity: 0;
}

99% {
    display: block;
    opacity: 1;
}

100% {
    display: none;
    opacity: 1;
}

}

/* Dropdown used mixins */
/* Input Group used mixins */
/* Begin | Reset */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, .bootstrap-select.btn-group .dropdown-toggle .caret,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    font-size: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    vertical-align: baseline;
}

body {
    line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

    nav ul {
        list-style: none;
    }

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    background: transparent;
    vertical-align: baseline;
}

/* change colours to suit your needs */
ins {
    color: #000;
    background-color: #ff9;
    text-decoration: none;
}

/* change colours to suit your needs */
mark {
    font-weight: bold;
    font-style: italic;
    color: #000;
    background-color: #ff9;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    margin: 1em 0;
    padding: 0;
    border: 0;
    border-top: 1px solid #cccccc;
}

input, select {
    vertical-align: middle;
}

/* Begin | Zerar estilos das listas */
ul {
    list-style: none;
}

/* End | Zerar estilos das listas */
/* End | Zerar Largura na borda, padding e margin */
/* Begin | Zerar Largura na borda, padding e margin */
:after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* End | Zerar Largura na borda, padding e margin */
/* End | Reset */
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com) - GRID v4.0.0
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=e645dc9ed427926ddab0a8e7057724b2)
 * Config saved to config.json and https://gist.github.com/e645dc9ed427926ddab0a8e7057724b2
 */
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

    audio:not([controls]) {
        display: none;
        height: 0;
    }

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

    a:active,
    a:hover {
        outline: 0;
    }

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

    button[disabled],
    html input[disabled] {
        cursor: default;
    }

    button::-moz-focus-inner,
    input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

input {
    line-height: normal;
}

    input[type="checkbox"],
    input[type="radio"] {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0;
    }

    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        height: auto;
    }

    input[type="search"] {
        -webkit-appearance: textfield;
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

        input[type="search"]::-webkit-search-cancel-button,
        input[type="search"]::-webkit-search-decoration {
            -webkit-appearance: none;
        }

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    *:before,
    *:after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.42857143;
    color: #333333;
    background-color: #ffffff;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    text-decoration: none;
}

    a:hover,
    a:focus {
        text-decoration: underline;
    }

    a:focus {
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

figure {
    margin: 0;
}

img {
    vertical-align: middle;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.img-rounded {
    border-radius: 6px;
}

.img-thumbnail {
    padding: 4px;
    line-height: 1.42857143;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.img-circle {
    border-radius: 50%;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eeeeee;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

[role="button"] {
    cursor: pointer;
}

/*! Bootstrap GRID Alpha v4.0.0 */
@-ms-viewport {
    width: device-width;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

.container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 576px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 768px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 992px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 576px) {
    .container {
        width: 540px;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .container {
        width: 750px;
        /* Modifier Bootstrap v3 */
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
        /* Modifier Bootstrap v3 */
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
        /* Modifier Bootstrap v3 */
        max-width: 100%;
    }
}

.container-fluid {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 576px) {
    .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 768px) {
    .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 992px) {
    .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 1200px) {
    .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    /* SAFARI, CHROME IOS BOOTSTRAP V4 BUG */
    /* ----------------------------------- */
}

    .row:before {
        display: none !important;
    }

@media (min-width: 576px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}

@media (min-width: 768px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}

@media (min-width: 992px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}

@media (min-width: 1200px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

    .no-gutters > .col,
    .no-gutters > [class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 576px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 768px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 992px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 1200px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.col {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.pull-0 {
    right: auto;
}

.pull-1 {
    right: 8.333333%;
}

.pull-2 {
    right: 16.666667%;
}

.pull-3 {
    right: 25%;
}

.pull-4 {
    right: 33.333333%;
}

.pull-5 {
    right: 41.666667%;
}

.pull-6 {
    right: 50%;
}

.pull-7 {
    right: 58.333333%;
}

.pull-8 {
    right: 66.666667%;
}

.pull-9 {
    right: 75%;
}

.pull-10 {
    right: 83.333333%;
}

.pull-11 {
    right: 91.666667%;
}

.pull-12 {
    right: 100%;
}

.push-0 {
    left: auto;
}

.push-1 {
    left: 8.333333%;
}

.push-2 {
    left: 16.666667%;
}

.push-3 {
    left: 25%;
}

.push-4 {
    left: 33.333333%;
}

.push-5 {
    left: 41.666667%;
}

.push-6 {
    left: 50%;
}

.push-7 {
    left: 58.333333%;
}

.push-8 {
    left: 66.666667%;
}

.push-9 {
    left: 75%;
}

.push-10 {
    left: 83.333333%;
}

.push-11 {
    left: 91.666667%;
}

.push-12 {
    left: 100%;
}

.offset-1 {
    margin-left: 8.333333%;
}

.offset-2 {
    margin-left: 16.666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.333333%;
}

.offset-5 {
    margin-left: 41.666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.333333%;
}

.offset-8 {
    margin-left: 66.666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.333333%;
}

.offset-11 {
    margin-left: 91.666667%;
}

@media (min-width: 576px) {
    .col-sm {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-sm-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.333333%;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-sm-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.666667%;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-sm-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.333333%;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-sm-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.666667%;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-sm-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.333333%;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-sm-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.666667%;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-sm-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.333333%;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-sm-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.666667%;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-sm-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .pull-sm-0 {
        right: auto;
    }

    .pull-sm-1 {
        right: 8.333333%;
    }

    .pull-sm-2 {
        right: 16.666667%;
    }

    .pull-sm-3 {
        right: 25%;
    }

    .pull-sm-4 {
        right: 33.333333%;
    }

    .pull-sm-5 {
        right: 41.666667%;
    }

    .pull-sm-6 {
        right: 50%;
    }

    .pull-sm-7 {
        right: 58.333333%;
    }

    .pull-sm-8 {
        right: 66.666667%;
    }

    .pull-sm-9 {
        right: 75%;
    }

    .pull-sm-10 {
        right: 83.333333%;
    }

    .pull-sm-11 {
        right: 91.666667%;
    }

    .pull-sm-12 {
        right: 100%;
    }

    .push-sm-0 {
        left: auto;
    }

    .push-sm-1 {
        left: 8.333333%;
    }

    .push-sm-2 {
        left: 16.666667%;
    }

    .push-sm-3 {
        left: 25%;
    }

    .push-sm-4 {
        left: 33.333333%;
    }

    .push-sm-5 {
        left: 41.666667%;
    }

    .push-sm-6 {
        left: 50%;
    }

    .push-sm-7 {
        left: 58.333333%;
    }

    .push-sm-8 {
        left: 66.666667%;
    }

    .push-sm-9 {
        left: 75%;
    }

    .push-sm-10 {
        left: 83.333333%;
    }

    .push-sm-11 {
        left: 91.666667%;
    }

    .push-sm-12 {
        left: 100%;
    }

    .offset-sm-0 {
        margin-left: 0%;
    }

    .offset-sm-1 {
        margin-left: 8.333333%;
    }

    .offset-sm-2 {
        margin-left: 16.666667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.333333%;
    }

    .offset-sm-5 {
        margin-left: 41.666667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.333333%;
    }

    .offset-sm-8 {
        margin-left: 66.666667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.333333%;
    }

    .offset-sm-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 768px) {
    .col-md {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-md-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.333333%;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-md-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.666667%;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-md-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.333333%;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.666667%;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-md-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.333333%;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-md-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.666667%;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-md-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.333333%;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-md-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.666667%;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-md-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .pull-md-0 {
        right: auto;
    }

    .pull-md-1 {
        right: 8.333333%;
    }

    .pull-md-2 {
        right: 16.666667%;
    }

    .pull-md-3 {
        right: 25%;
    }

    .pull-md-4 {
        right: 33.333333%;
    }

    .pull-md-5 {
        right: 41.666667%;
    }

    .pull-md-6 {
        right: 50%;
    }

    .pull-md-7 {
        right: 58.333333%;
    }

    .pull-md-8 {
        right: 66.666667%;
    }

    .pull-md-9 {
        right: 75%;
    }

    .pull-md-10 {
        right: 83.333333%;
    }

    .pull-md-11 {
        right: 91.666667%;
    }

    .pull-md-12 {
        right: 100%;
    }

    .push-md-0 {
        left: auto;
    }

    .push-md-1 {
        left: 8.333333%;
    }

    .push-md-2 {
        left: 16.666667%;
    }

    .push-md-3 {
        left: 25%;
    }

    .push-md-4 {
        left: 33.333333%;
    }

    .push-md-5 {
        left: 41.666667%;
    }

    .push-md-6 {
        left: 50%;
    }

    .push-md-7 {
        left: 58.333333%;
    }

    .push-md-8 {
        left: 66.666667%;
    }

    .push-md-9 {
        left: 75%;
    }

    .push-md-10 {
        left: 83.333333%;
    }

    .push-md-11 {
        left: 91.666667%;
    }

    .push-md-12 {
        left: 100%;
    }

    .offset-md-0 {
        margin-left: 0%;
    }

    .offset-md-1 {
        margin-left: 8.333333%;
    }

    .offset-md-2 {
        margin-left: 16.666667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.333333%;
    }

    .offset-md-5 {
        margin-left: 41.666667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.333333%;
    }

    .offset-md-8 {
        margin-left: 66.666667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.333333%;
    }

    .offset-md-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-lg-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.333333%;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-lg-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.666667%;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-lg-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.333333%;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.666667%;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.333333%;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-lg-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.666667%;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-lg-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.333333%;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-lg-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.666667%;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-lg-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .pull-lg-0 {
        right: auto;
    }

    .pull-lg-1 {
        right: 8.333333%;
    }

    .pull-lg-2 {
        right: 16.666667%;
    }

    .pull-lg-3 {
        right: 25%;
    }

    .pull-lg-4 {
        right: 33.333333%;
    }

    .pull-lg-5 {
        right: 41.666667%;
    }

    .pull-lg-6 {
        right: 50%;
    }

    .pull-lg-7 {
        right: 58.333333%;
    }

    .pull-lg-8 {
        right: 66.666667%;
    }

    .pull-lg-9 {
        right: 75%;
    }

    .pull-lg-10 {
        right: 83.333333%;
    }

    .pull-lg-11 {
        right: 91.666667%;
    }

    .pull-lg-12 {
        right: 100%;
    }

    .push-lg-0 {
        left: auto;
    }

    .push-lg-1 {
        left: 8.333333%;
    }

    .push-lg-2 {
        left: 16.666667%;
    }

    .push-lg-3 {
        left: 25%;
    }

    .push-lg-4 {
        left: 33.333333%;
    }

    .push-lg-5 {
        left: 41.666667%;
    }

    .push-lg-6 {
        left: 50%;
    }

    .push-lg-7 {
        left: 58.333333%;
    }

    .push-lg-8 {
        left: 66.666667%;
    }

    .push-lg-9 {
        left: 75%;
    }

    .push-lg-10 {
        left: 83.333333%;
    }

    .push-lg-11 {
        left: 91.666667%;
    }

    .push-lg-12 {
        left: 100%;
    }

    .offset-lg-0 {
        margin-left: 0%;
    }

    .offset-lg-1 {
        margin-left: 8.333333%;
    }

    .offset-lg-2 {
        margin-left: 16.666667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.333333%;
    }

    .offset-lg-5 {
        margin-left: 41.666667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.333333%;
    }

    .offset-lg-8 {
        margin-left: 66.666667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.333333%;
    }

    .offset-lg-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xl-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .col-xl-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.333333%;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-xl-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.666667%;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-xl-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.333333%;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-xl-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.666667%;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-xl-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.333333%;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-xl-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.666667%;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-xl-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.333333%;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-xl-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.666667%;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-xl-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .pull-xl-0 {
        right: auto;
    }

    .pull-xl-1 {
        right: 8.333333%;
    }

    .pull-xl-2 {
        right: 16.666667%;
    }

    .pull-xl-3 {
        right: 25%;
    }

    .pull-xl-4 {
        right: 33.333333%;
    }

    .pull-xl-5 {
        right: 41.666667%;
    }

    .pull-xl-6 {
        right: 50%;
    }

    .pull-xl-7 {
        right: 58.333333%;
    }

    .pull-xl-8 {
        right: 66.666667%;
    }

    .pull-xl-9 {
        right: 75%;
    }

    .pull-xl-10 {
        right: 83.333333%;
    }

    .pull-xl-11 {
        right: 91.666667%;
    }

    .pull-xl-12 {
        right: 100%;
    }

    .push-xl-0 {
        left: auto;
    }

    .push-xl-1 {
        left: 8.333333%;
    }

    .push-xl-2 {
        left: 16.666667%;
    }

    .push-xl-3 {
        left: 25%;
    }

    .push-xl-4 {
        left: 33.333333%;
    }

    .push-xl-5 {
        left: 41.666667%;
    }

    .push-xl-6 {
        left: 50%;
    }

    .push-xl-7 {
        left: 58.333333%;
    }

    .push-xl-8 {
        left: 66.666667%;
    }

    .push-xl-9 {
        left: 75%;
    }

    .push-xl-10 {
        left: 83.333333%;
    }

    .push-xl-11 {
        left: 91.666667%;
    }

    .push-xl-12 {
        left: 100%;
    }

    .offset-xl-0 {
        margin-left: 0%;
    }

    .offset-xl-1 {
        margin-left: 8.333333%;
    }

    .offset-xl-2 {
        margin-left: 16.666667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.333333%;
    }

    .offset-xl-5 {
        margin-left: 41.666667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.333333%;
    }

    .offset-xl-8 {
        margin-left: 66.666667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.333333%;
    }

    .offset-xl-11 {
        margin-left: 91.666667%;
    }
}

/*# sourceMappingURL=bootstrap-grid.css.map */
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
    content: " ";
    display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
    clear: both;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.hidden {
    display: none !important;
}

.affix {
    position: fixed;
}

.hidden-xs-up {
    display: none !important;
}

@media (max-width: 575px) {
    .hidden-xs-down {
        display: none !important;
    }
}

@media (min-width: 576px) {
    .hidden-sm-up {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hidden-sm-down {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hidden-md-up {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .hidden-md-down {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .hidden-lg-up {
        display: none !important;
    }
}

@media (max-width: 1199px) {
    .hidden-lg-down {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-xl-up {
        display: none !important;
    }
}

.hidden-xl-down {
    display: none !important;
}

@font-face {
    font-family: 'AzulHelveticaNeue';
    font-weight: 200;
    font-style: normal;
    src: url("fonts/helvetica/HelveticaNeueLTStd-Th.woff?-epgbq0") format("woff");
}

@font-face {
    font-family: 'AzulHelveticaNeue';
    font-weight: 300;
    font-style: normal;
    src: url("fonts/helvetica/HelveticaNeueLTStd-Lt.woff?-epgbq0") format("woff");
}

@font-face {
    font-family: 'AzulHelveticaNeue';
    font-weight: 400;
    font-style: normal;
    src: url("fonts/helvetica/Helvetica.woff?-epgbq0") format("woff");
}

@font-face {
    font-family: 'AzulHelveticaNeue';
    font-weight: 500;
    font-style: normal;
    src: url("fonts/helvetica/HelveticaNeueLTStd-Bd.woff?-epgbq0") format("woff");
}

body {
    font-family: 'AzulHelveticaNeue', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1;
    color: #606060;
    letter-spacing: 0.25px;
}

a:active,
a:link,
a:visited {
    text-decoration: none;
}

strong {
    font-weight: 500;
}

.az-title {
    font-family: 'AzulHelveticaNeue';
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #026cb6;
}

@media all and (min-width: 576px) {
    .az-title {
        margin-bottom: 32px;
        font-weight: 300;
    }
}

@media all and (min-width: 768px) {
    .az-title {
        font-size: 1.75rem;
    }
}

.az-title.-with-subtitle {
    margin-bottom: 0px;
}

.az-subtitle {
    display: inline-block;
    font-size: 1em;
    line-height: 1.5;
    color: #808080;
    margin: 0 0 32px 0;
}

    .az-subtitle strong {
        line-height: 1.25;
    }

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

@font-face {
    font-family: 'Azul Icons';
    font-weight: normal;
    font-style: normal;
    src: url("fonts/azul-icons/azul-icons.eot?-epgbq0");
    src: url("fonts/azul-icons/azul-icons.eot?#iefix-epgbq0") format("embedded-opentype"), url("fonts/azul-icons/azul-icons.ttf?-epgbq0") format("truetype"), url("fonts/azul-icons/azul-icons.woff?-epgbq0") format("woff"), url("fonts/azul-icons/azul-icons.svg?-epgbq0#azul-icons") format("svg");
}

i, .bootstrap-select.btn-group .dropdown-toggle .caret {
    font-family: 'Azul Icons';
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-transform: none;
    speak: none;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-thin-right:before {
    content: "\e901";
}

.icon-arrow-up:before {
    content: "\e600";
}

.icon-azul-play:before {
    content: "\e90f";
}

.icon-booking-hold-24:before {
    content: "\e90d";
}

.icon-booking-hold-3:before {
    content: "\e90c";
}

.icon-booking-onhold:before {
    content: "\e90b";
}

.icon-calendar:before {
    content: "\e601";
}

.icon-cancel-circle:before {
    content: "\e205";
}

.icon-caret-down:before {
    content: "\e602";
}

.icon-caret-left:before {
    content: "\e60f";
}

.icon-caret-right:before {
    content: "\e603";
}

.icon-caret-up:before {
    content: "\e60e";
}

.icon-check:before {
    content: "\e206";
}

.icon-check-circle:before {
    content: "\e281";
}

.icon-check-selected:before {
    content: "\e801";
}

.icon-check-unselected:before {
    content: "\e91a";
}

.icon-checkbox-checked:before {
    content: "\e25c";
}

.icon-checkbox-unchecked:before {
    content: "\e25d";
}

.icon-close:before {
    font-family: "Azul Icons";
    content: "\e20a";
}

.icon-description:before {
    content: "\e288";
}

.icon-document-id:before {
    content: "\e907";
}

.icon-dotted-line:before {
    content: "\e604";
}

.icon-download:before {
    content: "\e90e";
}

.icon-edit:before {
    content: "\e0ee";
}

.icon-error-outline:before {
    content: "\e001";
}

.icon-hand-luggage:before {
    content: "\e30b";
}

.icon-help-outline:before {
    content: "\e30f";
}

.icon-history:before {
    content: "\e29d";
}

.icon-important:before {
    content: "\e016";
}

.icon-info:before {
    content: "\e605";
}

.icon-info-airport:before {
    content: "\e90a";
}

.icon-insurance-health:before {
    content: "\e802";
}

.icon-insurance-luggage:before {
    content: "\e803";
}

.icon-insurance-money:before {
    content: "\e805";
}

.icon-location:before {
    content: "\e1f6";
}

.icon-lock-outline:before {
    content: "\e2ad";
}

.icon-luggage:before {
    content: "\e912";
}

.icon-minus:before {
    content: "\e606";
}

.icon-payment-barcode:before {
    content: "\e807";
}

.icon-payment-card:before {
    content: "\e806";
}

.icon-payment-debit:before {
    content: "\e804";
}

.icon-payment-hold:before {
    content: "\e808";
}

.icon-payment-promo-code:before {
    content: "\e809";
}

.icon-payment-voucher:before {
    content: "\e1d7";
}

.icon-plane:before {
    content: "\e609";
}

.icon-plane-departure:before {
    content: "\e607";
}

.icon-plane-return:before {
    content: "\e608";
}

.icon-plus:before {
    content: "\e60a";
}

.icon-plus-outline:before {
    content: "\e911";
}

.icon-promo:before {
    content: "\e800";
}

.icon-radio-button-checked:before {
    content: "\e25f";
}

.icon-radio-button-unchecked:before {
    content: "\e25e";
}

.icon-search:before {
    content: "\e60b";
}

.icon-seat-business-side:before {
    content: "\e905";
}

.icon-seat-default:before {
    content: "\e914";
}

.icon-seat-disabled:before {
    content: "\e902";
}

.icon-seat-disabled-skysofa:before {
    content: "\e903";
}

.icon-snack:before {
    content: "\e60c";
}

.icon-star:before {
    content: "\e260";
}

.icon-timelapse:before {
    content: "\e1b4";
}

.icon-timer:before {
    content: "\e1b6";
}

.icon-tv:before {
    content: "\e60d";
}

.icon-user-ta:before {
    content: "\e919";
}

.icon-web-checkin:before {
    content: "\e908";
}

.icon-booking-hold-48:before {
    content: "\e91b";
}

.icon-booking-hold-72:before {
    content: "\e915";
}

.icon-direct:before {
    content: "\e918";
}

.icon-link:before {
    content: "\e917";
}

.icon-menu:before {
    content: "\e916";
}

.icon-power-cord:before {
    content: "\e910";
}

.icon-spinner:before {
    content: "\e610";
}

.icon-work:before {
    content: "\e913";
}

.icon-payment-paypal:before {
    content: "\e80a";
}

.icon-seat-skysofa:before {
    content: "\e904";
}

.icon-seat-business:before {
    content: "\e909";
}

.icon-seat-disabled-business:before {
    content: "\e906";
}

html, body {
    height: 100%;
    font-size: 16px;
}

body {
    overflow: hidden;
    overflow-y: auto;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.overflow-hidden {
    overflow: hidden;
}

.main-content {
    padding: 24px 0 48px 0;
    margin-top: 64px;
}

@media all and (min-width: 992px) {
    .main-content {
        padding: 48px 0 64px 0;
        margin-top: 0;
    }
}

.main-content.-home {
    margin-top: 16px;
}

@media all and (min-width: 992px) {
    .main-content.-home {
        margin-top: 16px;
    }
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.clearfix:after {
    display: block;
    visibility: hidden;
    clear: both;
    height: 0;
    font-size: 0;
    content: " ";
}

.clearfix {
    display: inline-block;
}

/* start commented backslash hack \*/
* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

small, .small {
    font-size: 85%;
}

th {
    background-clip: padding-box;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-nowrap {
    white-space: nowrap;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-header {
    margin-bottom: 40px;
    font-size: 2em;
    font-weight: 300;
}

.text-primary {
    color: #026cb6;
}

a.text-primary:hover,
a.text-primary:focus {
    color: #014e84;
}

.text-success {
    color: #3c763d;
}

a.text-success:hover,
a.text-success:focus {
    color: #2b542c;
}

.text-info {
    color: #31708f;
}

a.text-info:hover,
a.text-info:focus {
    color: #245269;
}

.text-warning {
    color: #8a6d3b;
}

a.text-warning:hover,
a.text-warning:focus {
    color: #66512c;
}

.text-danger {
    color: #a94442;
}

a.text-danger:hover,
a.text-danger:focus {
    color: #843534;
}

.text-danger-light {
    color: #E466A7;
}

a.text-danger-light:hover,
a.text-danger-light:focus {
    color: #dc3b8e;
}

.bg-primary {
    color: #fff;
}

.bg-primary {
    background-color: #026cb6;
}

a.bg-primary:hover,
a.bg-primary:focus {
    background-color: #014e84;
}

.bg-success {
    background-color: #dff0d8;
}

a.bg-success:hover,
a.bg-success:focus {
    background-color: #c1e2b3;
}

.bg-info {
    background-color: #d9edf7;
}

a.bg-info:hover,
a.bg-info:focus {
    background-color: #afd9ee;
}

.bg-warning {
    background-color: #fcf8e3;
}

a.bg-warning:hover,
a.bg-warning:focus {
    background-color: #f7ecb5;
}

.bg-danger {
    background-color: #f2dede;
}

a.bg-danger:hover,
a.bg-danger:focus {
    background-color: #e4b9b9;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.add-top {
    margin-top: 16px;
}

.add-right {
    margin-right: 20px;
}

.add-bottom {
    margin-bottom: 16px;
}

.add-left {
    margin-left: 20px;
}

.add-all {
    margin: 20px;
}

.remove-top {
    margin-top: 0;
}

.remove-right {
    margin-right: 0;
}

.remove-bottom {
    margin-bottom: 0;
}

.remove-left {
    margin-left: 0;
}

.remove-all {
    margin: 0;
}

.hidden {
    display: none !important;
}

.invisible {
    visibility: hidden;
}

.print-only {
    display: none;
}

header#azul-header {
    height: 64px;
    color: white;
    background-color: #041e42;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

@media all and (min-width: 992px) {
    header#azul-header {
        position: relative;
    }
}

header#azul-header > .container {
    height: 100%;
}

header#azul-header .header-menu-link {
    float: right;
    display: block;
    width: 32px;
    height: 32px;
    margin: 16px 0 0 8px;
    cursor: pointer;
}

    header#azul-header .header-menu-link.active i, header#azul-header .header-menu-link.active .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle header#azul-header .header-menu-link.active .caret {
        color: white;
    }

    header#azul-header .header-menu-link.active + #azul-nav {
        display: block;
    }

@media all and (min-width: 992px) {
    header#azul-header .header-menu-link {
        display: none;
    }
}

header#azul-header .header-menu-link:hover {
    text-decoration: none;
}

header#azul-header .header-menu-link i, header#azul-header .header-menu-link .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle header#azul-header .header-menu-link .caret {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.7);
}

header#azul-header .az-logged-box {
    position: relative;
    width: 100%;
    height: 48px;
    border: 1px solid #13b5ea;
    z-index: 99;
    -webkit-border-radius: 2px 2px 2px 2px;
    -moz-border-radius: 2px 2px 2px 2px;
    border-radius: 2px 2px 2px 2px;
    -ms-border-radius: 2px 2px 2px 2px;
    display: block;
}

@media all and (min-width: 992px) {
    header#azul-header .az-logged-box {
        width: 300px;
        position: relative;
        float: right;
        margin: 8px 0;
    }
}

header#azul-header .az-logged-box .az-greeting-txt {
    width: auto;
    max-width: 200px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    float: left;
    margin: 16px 0 0 16px;
    font-size: 1em;
}

@media all and (min-width: 992px) {
    header#azul-header .az-logged-box .az-greeting-txt {
        max-width: 160px;
    }
}

header#azul-header .az-logged-box .az-greeting-txt .az-diff-txt {
    color: #13b5ea;
}

header#azul-header .az-logged-box .ta-action {
    position: relative;
    float: right;
    width: 48px;
    height: 46px;
    border-left: 1px solid #13b5ea;
}

    header#azul-header .az-logged-box .ta-action .ta-btn-action {
        position: absolute;
        left: 8px;
        top: 7px;
        cursor: pointer;
    }

h1.header-logo {
    position: absolute;
    left: 16px;
    height: 100%;
    width: 120px;
    font-size: 1rem;
    margin: 0;
    padding: 0;
    color: transparent;
    text-indent: -9999px;
    z-index: 9999;
}

@media all and (min-width: 992px) {
    h1.header-logo {
        width: 177px;
    }
}

h1.header-logo > a {
    position: absolute;
    display: block;
    top: 12px;
    left: 0;
    width: 100%;
    height: 40px;
}

h1.header-logo span.logo {
    display: block;
    height: 100%;
    background-image: url("img-novo-layout/logo-azul-empresa.png");
    background-size: 120px auto;
    background-repeat: no-repeat;
    background-position: center center;
}

@media only screen and (-webkit-device-pixel-ratio: 1) {
    h1.header-logo span.logo {
        background-image: url("img-novo-layout/logo-azul-empresa.png");
    }
}

@media only screen and (-webkit-device-pixel-ratio: 2) {
    h1.header-logo span.logo {
        background-image: url("img-novo-layout/logo-azul-empresa@2x.png");
    }
}

@media all and (min-width: 992px) {
    h1.header-logo span.logo {
        background-size: 177px 40px;
    }
}

nav#azul-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    right: 0;
    top: 64px;
    background-color: #041e42;
    z-index: 99;
    display: none;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

    nav#azul-nav.-logged {
        padding-top: 0;
    }

@media all and (min-width: 992px) {
    nav#azul-nav.-logged {
        padding-top: 0;
    }
}

@media all and (min-width: 992px) {
    nav#azul-nav {
        display: block;
        float: left;
        top: auto;
        right: auto;
        padding-left: 198px;
        height: auto;
        position: relative;
        background-color: transparent;
        box-shadow: 0 2px 4px transparent;
    }
}

nav#azul-nav ul {
    margin: 0;
}

    nav#azul-nav ul > li {
        width: 100%;
        display: inline-block;
        background-color: rgba(19, 181, 234, 0.1);
        border-bottom: 1px solid #041e42;
    }

@media all and (min-width: 992px) {
    nav#azul-nav ul > li {
        width: auto;
        background-color: transparent;
        border-bottom: none;
    }
}

nav#azul-nav ul > li > a {
    display: block;
    font-size: 1.3em;
    font-weight: 300;
    color: white;
    padding: 24px 12px 22px 12px;
    text-align: center;
    -webkit-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}

@media all and (min-width: 768px) {
    nav#azul-nav ul > li > a {
        font-size: 1.125em;
        padding: 28px 12px 22px 12px;
    }
}

@media all and (min-width: 992px) {
    nav#azul-nav ul > li > a {
        text-align: left;
        padding: 28px 8px 22px 8px;
        font-size: .95em;
    }
}

@media all and (min-width: 1200px) {
    nav#azul-nav ul > li > a {
        font-size: 1.125em;
        padding: 24px 12px 22px 12px;
    }
}

nav#azul-nav ul > li.active a, nav#azul-nav ul > li:hover a {
    color: white;
    background-color: rgba(19, 181, 234, 0.3);
}

@media all and (min-width: 992px) {
    nav#azul-nav ul > li.active a, nav#azul-nav ul > li:hover a {
        background-color: transparent;
        color: #13b5ea;
    }
}

footer {
    height: auto;
    border-top: 4px solid #026cb6;
    background-color: #ebebeb;
}

    footer .container {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    footer .section {
        width: 100%;
    }

        footer .section .footer-sitemap-list ul {
            margin: 0;
        }

            footer .section .footer-sitemap-list ul li {
                display: inline-block;
                margin-right: 48px;
                width: 100%;
                text-align: center;
                margin-bottom: 24px;
            }

@media all and (min-width: 768px) {
    footer .section .footer-sitemap-list ul li {
        width: auto;
        text-align: left;
        margin-bottom: 0;
    }
}

footer .section .footer-sitemap-list ul li a {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #026cb6;
}

footer .section .payment-list {
    width: 100%;
    border-top: none;
    float: left;
    padding: 16px 0 0;
    margin: 24px 0;
    border-top: 1px solid #c0c0c0;
}

    footer .section .payment-list .sitemap-section-title {
        font-size: 1em;
        margin: 16px 0 8px 0;
        font-weight: 300;
    }

    footer .section .payment-list .payment-list-items {
        width: 100%;
        float: left;
        overflow: hidden;
    }

        footer .section .payment-list .payment-list-items .payment-list-item {
            margin: 0 24px 0 0;
            min-height: 0;
            max-width: 255px;
            width: auto;
            float: left;
        }

            footer .section .payment-list .payment-list-items .payment-list-item .footer-item-text {
                width: 100%;
                float: left;
                font-size: .725em;
                margin: 16px 0;
            }

            footer .section .payment-list .payment-list-items .payment-list-item:last-child:after {
                clear: both;
                min-height: auto;
            }

            footer .section .payment-list .payment-list-items .payment-list-item .footer-item-img {
                max-height: none;
                vertical-align: middle;
                margin-bottom: 16px;
            }

footer .section .footer-button-container {
    width: 260px;
    margin: 32px auto 0;
    clear: both;
}

    footer .section .footer-button-container .footer-button-top {
        color: #026cb6;
        padding: 8px;
        box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.25);
        line-height: 1.05rem;
        border-radius: 4px;
        font-weight: 300;
        font-size: 1rem;
        background: none;
        border: none;
        cursor: pointer;
        display: block;
        overflow: hidden;
        text-align: center;
        text-decoration: none;
        width: 100%;
        background-color: white;
        transition: all 0.15s ease-in-out;
    }

        footer .section .footer-button-container .footer-button-top i, footer .section .footer-button-container .footer-button-top .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle footer .section .footer-button-container .footer-button-top .caret {
            color: #026cb6;
        }

        footer .section .footer-button-container .footer-button-top:hover {
            box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.4);
            background-color: #ebebeb;
        }

footer .section.footer-section-inst {
    width: 100%;
    background-color: #041e42;
}

    footer .section.footer-section-inst .footer-social-box {
        padding: 8px 0 0 0;
    }

@media all and (min-width: 768px) {
    footer .section.footer-section-inst .footer-social-box {
        padding: 8px 0;
    }
}

footer .section.footer-section-inst .footer-social-box .footer-social-item {
    font-weight: 400;
    font-size: .75rem;
    line-height: 1rem;
    text-align: center;
}

@media all and (min-width: 576px) {
    footer .section.footer-section-inst .footer-social-box .footer-social-item {
        height: 100px;
        margin-bottom: 16px;
    }
}

@media all and (min-width: 768px) {
    footer .section.footer-section-inst .footer-social-box .footer-social-item {
        height: auto;
        margin-bottom: 0;
    }
}

footer .section.footer-section-inst .footer-social-box .footer-social-item a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 16px 0;
}

footer .section.footer-section-inst .footer-social-box .footer-social-icon {
    background-image: url("img-novo-layout/footer-social-sprite.png");
    display: inline-block;
    text-indent: -9999px;
    overflow: hidden;
    vertical-align: middle;
    margin-bottom: 15px;
    background-repeat: no-repeat;
}

    footer .section.footer-section-inst .footer-social-box .footer-social-icon.facebook {
        width: 33px;
        height: 32px;
        background-position: 0 0;
    }

    footer .section.footer-section-inst .footer-social-box .footer-social-icon.twitter {
        width: 32px;
        height: 32px;
        background-position: -37px 0;
    }

    footer .section.footer-section-inst .footer-social-box .footer-social-icon.youtube {
        width: 32px;
        height: 32px;
        background-position: -74px 0;
    }

    footer .section.footer-section-inst .footer-social-box .footer-social-icon.google-plus {
        width: 32px;
        height: 32px;
        background-position: -110px 0;
    }

footer .section.footer-section-inst .footer-text-inst {
    color: white;
    font-weight: 400;
    margin-bottom: 30px;
    font-size: .75rem;
    line-height: 1.125rem;
}

footer .section.footer-section-inst .show-more {
    display: block;
    font-size: 0.75rem;
    text-align: center;
    text-decoration: underline;
    color: white;
    margin-bottom: 16px;
}

footer .section.footer-section-inst .footer-col-9 {
    width: 100%;
}

@media all and (min-width: 768px) {
    footer .section.footer-section-inst .footer-col-9 {
        width: 70.8333%;
    }
}

footer .section.footer-section-inst .footer-col-3 {
    padding: 0;
    width: 100%;
    overflow: hidden;
}

@media all and (min-width: 768px) {
    footer .section.footer-section-inst .footer-col-3 {
        overflow: visible;
        padding-left: 30px;
        width: 29.1667%;
    }
}

footer .section.footer-section-inst .footer-padding-right {
    padding-right: 40px;
}

footer .section.footer-section-inst .col-md-6.footer-padding-right {
    width: 100%;
}

@media all and (min-width: 768px) {
    footer .section.footer-section-inst .col-md-6.footer-padding-right {
        width: 50%;
    }
}

footer .section.footer-section-inst .footer-row-inst {
    margin-top: 30px;
}

footer .section.footer-section-inst .footer-contact-box {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    font-size: .8125rem;
    display: block;
    margin: 0 auto;
    float: none;
}

@media all and (min-width: 768px) {
    footer .section.footer-section-inst .footer-contact-box {
        width: 100%;
        float: right;
        margin: 0;
    }
}

footer .section.footer-section-inst .footer-contact-box .footer-contact-title {
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.5rem;
    color: white;
}

footer .section.footer-section-inst .footer-contact-box .footer-contact-desc {
    font-weight: 400;
    font-size: .75rem;
    line-height: 1.5;
    margin-top: 15px;
    color: white;
}

footer .section.footer-section-inst .footer-contact-box .footer-contact-phones {
    color: white;
}

    footer .section.footer-section-inst .footer-contact-box .footer-contact-phones .footer-dt {
        font-weight: 300;
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 28.8px;
        line-height: 1.8rem;
        margin-top: 20px;
    }

    footer .section.footer-section-inst .footer-contact-box .footer-contact-phones .footer-dd {
        font-weight: 400;
        font-size: 12px;
        font-size: .75rem;
        line-height: 16.8px;
        line-height: 1.05rem;
    }

footer .section.footer-section-inst .footer-align-right {
    text-align: right !important;
    margin-top: 30px;
    color: white;
    font-size: .8125rem;
    margin-right: 0.625rem;
    padding-right: 0.625rem;
    float: none;
}

@media all and (min-width: 768px) {
    footer .section.footer-section-inst .footer-align-right {
        float: right;
        margin-right: 0;
        padding-right: 0;
    }
}

footer .section.footer-section-inst .footer-align-right .footer-item-right {
    vertical-align: middle !important;
    position: relative;
    top: 0;
    float: right;
    margin-bottom: 8px;
    margin-right: 0;
}

@media all and (min-width: 992px) {
    footer .section.footer-section-inst .footer-align-right .footer-item-right {
        top: 20px;
        float: none;
        margin-right: 20px;
    }
}

footer .section.footer-section-inst .footer-align-right .footer-item-logo {
    float: right;
    width: 75px;
    background-color: white;
    padding: 4px 8px;
    border-radius: 4px;
    clear: both;
}

    footer .section.footer-section-inst .footer-align-right .footer-item-logo.-nobg {
        background-color: transparent;
    }

    footer .section.footer-section-inst .footer-align-right .footer-item-logo img {
        width: auto;
    }

footer .section.-copyright {
    background-color: #026cb6;
    text-align: center;
    color: white;
}

    footer .section.-copyright .container {
        padding: 20px 30px;
    }

    footer .section.-copyright .footer-copy-text {
        float: left;
        display: block;
        font-size: .75rem;
        line-height: .9rem;
        font-weight: 400;
        width: 100%;
    }

@media all and (min-width: 1200px) {
    footer .section.-copyright .footer-copy-text {
        width: auto;
    }
}

footer .section.-copyright .footer-copy-address {
    float: right;
    font-size: .625rem;
    line-height: 1rem;
    width: 100%;
}

@media all and (min-width: 1200px) {
    footer .section.-copyright .footer-copy-address {
        width: auto;
    }
}

button {
    font-family: 'AzulHelveticaNeue', 'Helvetica Neue', Helvetica, sans-serif;
}

    button:focus {
        outline: none;
    }

.btn {
    display: inline-block;
    padding: 8px 16px;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    height: 40px;
    border: 0 none;
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease;
    text-align: center;
    border-radius: 2px;
}

    .btn:focus {
        outline: none;
    }

    .btn.btn-primary {
        color: white;
        background: #026cb6;
    }

        .btn.btn-primary:hover, .btn.btn-primary:focus {
            background: #014e84;
        }

        .btn.btn-primary:active {
            background: #026cb6;
        }

    .btn.btn-lighter {
        color: white;
        background: #13b5ea;
    }

        .btn.btn-lighter:hover, .btn.btn-lighter:focus {
            background: #0f91bb;
        }

        .btn.btn-lighter:active {
            background: #13b5ea;
        }

    .btn.btn-light {
        color: white;
        background: #0093D0;
    }

        .btn.btn-light:hover, .btn.btn-light:focus {
            background: #006f9d;
        }

        .btn.btn-light:active {
            background: #0093D0;
        }

    .btn.btn-default {
        color: white;
        background: #808080;
    }

        .btn.btn-default:hover, .btn.btn-default:focus {
            background: #666666;
        }

        .btn.btn-default:active {
            background: #808080;
        }

    .btn.btn-text {
        height: 32px;
        line-height: 12px;
        font-size: 14px;
        font-weight: 400;
        color: #13b5ea;
    }

        .btn.btn-text:hover, .btn.btn-text.active {
            background: #e6e6e6;
            color: #026cb6;
        }

        .btn.btn-text.active {
            background: #e6e6e6;
        }

            .btn.btn-text.active:hover {
                background: #d9d9d9;
            }

    .btn.btn-outline {
        background: transparent;
        color: #026cb6;
        border: 1px solid #026cb6;
    }

        .btn.btn-outline:hover, .btn.btn-outline:focus {
            color: white;
            background: #026cb6;
        }

        .btn.btn-outline:active {
            background: #014e84;
        }

        .btn.btn-outline.btn-outline-white {
            color: white;
            border: 1px solid white;
        }

            .btn.btn-outline.btn-outline-white:hover, .btn.btn-outline.btn-outline-white:focus {
                color: white;
                border-color: #13b5ea;
                background: #13b5ea;
            }

        .btn.btn-outline.btn-outline-lighter {
            color: #13b5ea;
            border: 1px solid #13b5ea;
        }

            .btn.btn-outline.btn-outline-lighter:hover, .btn.btn-outline.btn-outline-lighter:focus {
                color: white;
                border-color: #13b5ea;
                background: #13b5ea;
            }

        .btn.btn-outline.btn-outline-secondary {
            color: #041e42;
            border: 1px solid #041e42;
        }

            .btn.btn-outline.btn-outline-secondary:hover, .btn.btn-outline.btn-outline-secondary:focus {
                color: white;
                border-color: #041e42;
                background: #041e42;
            }

        .btn.btn-outline.btn-outline-default {
            color: #808080;
            border: 1px solid #808080;
        }

            .btn.btn-outline.btn-outline-default:hover, .btn.btn-outline.btn-outline-default:focus {
                color: white;
                border-color: #808080;
                background: #808080;
            }

        .btn.btn-outline.btn-outline-clube {
            background: transparent;
            color: #b29a5f;
            border: 1px solid #b29a5f;
        }

            .btn.btn-outline.btn-outline-clube:hover, .btn.btn-outline.btn-outline-clube:focus {
                color: white;
                border-color: #b29a5f;
                background: #b29a5f;
            }

    .btn.btn-action {
        height: 48px;
        font-size: 1.125rem;
        font-weight: 300;
        line-height: 36px;
    }

@media all and (min-width: 576px) {
    .btn.btn-action {
        font-weight: 200;
    }
}

@media all and (min-width: 768px) {
    .btn.btn-action {
        font-size: 1.25rem;
    }
}

.btn.btn-next {
    color: white;
    background: #53b847;
}

    .btn.btn-next:hover, .btn.btn-next:focus {
        background: #a0cf67;
    }

    .btn.btn-next:active {
        background: #53b847;
    }

.btn.btn-sm {
    height: auto;
    min-height: 28px;
    padding: 4px 10px;
    line-height: 12px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.25px;
}

.btn.btn-block {
    display: block;
    width: 100%;
}

.btn.btn-promo {
    width: 80%;
    height: 20px;
    padding: 0;
    font-size: 10px;
    font-weight: 400;
    line-height: 20px;
    color: white;
}

    .btn.btn-promo.btn-promo-azul {
        background-color: #026cb6;
    }

    .btn.btn-promo.btn-promo-lowest {
        background-color: #f7a01d;
    }

.btn:disabled {
    background: #9a9a9a;
    opacity: 0.4;
}

    .btn:disabled:hover {
        background: #9a9a9a;
    }

.btn.btn-clube {
    background: #b29a5f;
    color: white;
    line-height: 27px;
    font-size: 14px;
}

    .btn.btn-clube:hover, .btn.btn-clube:focus {
        background: #c6b488;
    }

    .btn.btn-clube:active {
        background: #b29a5f;
    }

a.btn {
    text-decoration: none;
}

    a.btn:hover, a.btn:focus {
        text-decoration: none;
    }

    a.btn.btn-sm {
        line-height: 18px;
    }

.btn-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0 none;
    border-radius: 2px;
    line-height: 24px;
    color: #026cb6;
    background: transparent;
}

    .btn-icon i, .btn-icon .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .btn-icon .caret {
        font-size: 24px;
        line-height: 24px;
    }

    .btn-icon:hover {
        background: #e6e6e6;
    }

    .btn-icon.btn-sm i, .btn-icon.btn-sm .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .btn-icon.btn-sm .caret {
        font-size: 16px;
    }

.btn-has-icon i:before, .btn-has-icon .bootstrap-select.btn-group .dropdown-toggle .caret:before, .bootstrap-select.btn-group .dropdown-toggle .btn-has-icon .caret:before {
    color: white;
}

.btn-group {
    display: inline-block;
}

    .btn-group .btn {
        float: left;
        padding: 2px 12px 0;
        font-size: 14px;
        font-weight: 300;
        line-height: 20px;
        height: 24px;
        color: #9a9a9a;
        border: 1px solid #9a9a9a;
        border-radius: 0;
        margin-bottom: 8px;
        margin-left: 0;
    }

@media all and (min-width: 576px) {
    .btn-group .btn {
        margin-bottom: 0;
    }
}

.btn-group .btn + .btn {
    margin-left: -1px;
}

.btn-group .btn:first-child {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.btn-group .btn:last-child {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.btn-group .btn:hover {
    color: #808080;
    background-color: #ebebeb;
}

.btn-group .btn.active {
    z-index: 10;
    color: white;
    border-color: #026cb6;
    background-color: #026cb6;
}

.area-radio .custom-radio {
    position: absolute;
    top: 6px;
    left: 0;
    height: 12px;
}

    .area-radio .custom-radio.-inline {
        display: inline;
    }

@media all and (min-width: 576px) {
    .area-radio .custom-radio {
        position: relative;
        top: 1px;
        margin: 8px 0 0;
    }
}

.area-radio .custom-radio .outer-circle {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: auto;
    padding: 2px;
    border: 1px solid #808080;
    border-radius: 6px;
}

    .area-radio .custom-radio .outer-circle .inner-circle {
        display: none;
        width: 6px;
        height: 6px;
        border-radius: 4px;
    }

.area-radio.active .custom-radio .outer-circle {
    border-color: #808080;
}

    .area-radio.active .custom-radio .outer-circle .inner-circle {
        display: block;
        background: #808080;
    }

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.dropup,
.dropdown {
    position: relative;
}

.dropdown-toggle:focus {
    outline: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 998;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: transparent;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

    .dropdown-menu.pull-right {
        right: 0;
        left: auto;
    }

    .dropdown-menu .divider {
        overflow: hidden;
        height: 1px;
        margin: 9px 0;
        background-color: #e5e5e5;
    }

    .dropdown-menu > li > a {
        display: block;
        padding: 3px 20px;
        clear: both;
        font-weight: normal;
        line-height: 1.42857;
        color: #808080;
        white-space: nowrap;
    }

        .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
            text-decoration: none;
            color: #737373;
            background-color: #f5f5f5;
        }

    .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
        color: #fff;
        text-decoration: none;
        outline: 0;
        background-color: #026cb6;
    }

    .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
        color: #e0e0e0;
    }

        .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
            text-decoration: none;
            background-color: transparent;
            background-image: none;
            filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
            cursor: not-allowed;
        }

.open > .dropdown-menu {
    display: block;
}

.open > a {
    outline: 0;
}

.dropdown-menu-right {
    left: auto;
    right: 0;
}

.dropdown-menu-left {
    left: 0;
    right: auto;
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857;
    color: #e0e0e0;
    white-space: nowrap;
}

.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1050;
}

.pull-right > .dropdown-menu {
    right: 0;
    left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid \9;
    content: "";
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px;
}

@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto;
    }

    .navbar-right .dropdown-menu-left {
        left: 0;
        right: auto;
    }
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 0;
}

legend {
    display: block;
    width: 100%;
    padding-top: 16px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 300;
    line-height: inherit;
    color: #808080;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 2px;
    color: #808080;
    font-size: 14px;
}

    label i, label .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle label .caret {
        position: relative;
        font-size: 14px;
        top: 1px;
        margin-right: 4px;
    }

input[type="search"] {
    box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}

input[type="file"] {
    display: block;
}

input[type="range"] {
    display: block;
    width: 100%;
}

select[multiple],
select[size] {
    height: auto;
}

output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857;
    color: #026cb6;
}

::-webkit-input-placeholder {
    color: #9a9a9a;
}

:-moz-placeholder {
    color: #9a9a9a;
}

::-moz-placeholder {
    color: #9a9a9a;
}

:-ms-input-placeholder {
    color: #9a9a9a;
}

.form-control {
    display: block;
    width: 100%;
    height: 40px;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 40px;
    color: #026cb6;
    background-color: transparent;
    background-image: none;
    border: 0 solid #9a9a9a;
    border-bottom-width: 1px;
    border-radius: 0;
    padding-left: 0;
    transition: border-color ease-in-out .25s, background-color ease-in-out .25s;
}

    .form-control[disabled], .form-control[readonly],
    fieldset[disabled] .form-control {
        background-color: transparent;
        opacity: 1;
    }

    .form-control[disabled],
    fieldset[disabled] .form-control {
        cursor: not-allowed;
    }

    .form-control:hover {
        background-color: #ebebeb;
        border-bottom-color: #026cb6;
    }

    .form-control:focus {
        outline: 0;
        background-color: #ebebeb;
        border-bottom-color: #026cb6;
    }

    .form-control[disabled] {
        background-color: #e6e6e6;
        color: #606060;
        opacity: 0.7;
    }

        .form-control[disabled]:hover {
            background-color: #e6e6e6;
            border-bottom-color: #9a9a9a;
        }

textarea.form-control {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type="date"].form-control,
    input[type="time"].form-control,
    input[type="datetime-local"].form-control,
    input[type="month"].form-control {
        line-height: 34px;
    }
}

.form-group {
    margin-bottom: 15px;
}

    .form-group.form-group-select {
        margin-bottom: 13px;
        max-height: 58px;
    }

.radio,
.checkbox {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

    .radio label,
    .checkbox label {
        min-height: 20px;
        margin-bottom: 0;
        font-weight: normal;
        cursor: pointer;
    }

    .radio a,
    .checkbox a {
        text-decoration: underline;
    }

        .radio a i, .radio a .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .radio a .caret,
        .checkbox a i,
        .checkbox a .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .checkbox a .caret {
            text-decoration: none;
        }

    .radio input[type="radio"],
    .radio-inline input[type="radio"],
    .checkbox input[type="checkbox"],
    .checkbox-inline input[type="checkbox"] {
        position: absolute;
    }

    .radio + .radio,
    .checkbox + .checkbox {
        margin-top: -5px;
    }

.radio-inline,
.checkbox-inline {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: normal;
    cursor: pointer;
}

    .radio-inline + .radio-inline,
    .checkbox-inline + .checkbox-inline {
        margin-top: 0;
        margin-left: 10px;
    }

input[type="radio"][disabled], input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled] input[type="checkbox"] {
    cursor: not-allowed;
}

.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled] .checkbox-inline {
    cursor: not-allowed;
}

.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled] .checkbox label {
    cursor: not-allowed;
}

.form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
    min-height: 34px;
}

.has-feedback {
    position: relative;
}

    .has-feedback .form-control {
        padding-right: 42.5px;
    }

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none;
}

.has-success {
    position: relative;
}

    .has-success .help-block,
    .has-success .control-label,
    .has-success .radio,
    .has-success .checkbox,
    .has-success .radio-inline,
    .has-success .checkbox-inline,
    .has-success .promocode-group,
    .has-success .form-label,
    .has-success.radio label,
    .has-success.checkbox label,
    .has-success.radio-inline label,
    .has-success.checkbox-inline label {
        color: #3c763d;
    }

    .has-success .form-control {
        color: #3c763d;
        border-color: #3c763d;
    }

        .has-success .form-control:focus {
            border-color: #2b542c;
        }

    .has-success input,
    .has-success .input-group input {
        padding-left: 25px;
    }

    .has-success.radio-button:before {
        background: white;
        top: -2px;
        left: 10px;
    }

    .has-success.radio-button.no-row:before {
        left: 0;
    }

    .has-success.radio-button.no-row:after {
        right: 0;
    }

    .has-success:before {
        position: absolute;
        top: 25px;
        font-family: 'Azul Icons';
        font-size: 22px;
        font-weight: normal;
        color: #3c763d;
        content: "";
        cursor: pointer;
    }

    .has-success:after {
        position: absolute;
        z-index: 10;
        top: 57px;
        right: 0;
        left: 0;
        padding: 2px;
        font-size: 11px;
        opacity: 1;
        color: #3c763d;
        border: 1px solid #3c763d;
        background: #fff;
        content: attr(data-title);
        border-radius: 2px;
    }

    .has-success.no-label:before {
        top: 10px;
    }

    .has-success.no-label:after {
        top: 39px;
    }

    .has-success.radio-button .radio,
    .has-success.checkbox-button .checkbox,
    .has-success .radio-inline {
        border: 1px solid #3c763d;
    }

        .has-success.radio-button .radio input, .has-success.radio-button .radio label,
        .has-success.checkbox-button .checkbox input,
        .has-success.checkbox-button .checkbox label,
        .has-success .radio-inline input,
        .has-success .radio-inline label {
            color: #3c763d;
        }

    .has-success.radio-button:after {
        right: 9px;
        left: initial;
        top: 0px;
    }

    .has-success.radio-inline-group:after {
        top: 78px;
        margin-bottom: 10px;
        right: initial;
    }

    .has-success.promocode-group:before {
        right: 95px;
    }

    .has-success.checkbox-button:before, .has-success.checkbox-button:after, .has-success.radio-inline-group:before {
        display: none;
    }

    .has-success.radio-button .form-label {
        margin-left: 30px;
    }

    .has-success .dropdown-toggle .filter-option {
        padding-left: 26px;
        color: #3c763d;
    }

    .has-success .dropdown-toggle .caret {
        right: 10px !important;
        margin-top: 2px !important;
    }

    .has-success .dropdown-toggle:hover .caret {
        color: #3c763d;
    }

    .has-success .bootstrap-select.btn-group .dropdown-menu {
        right: 0;
        left: 0;
        margin-top: -3px;
    }

    .has-success .input-group-addon {
        color: #3c763d;
        border-color: #3c763d;
        background-color: #dff0d8;
    }

    .has-success .form-control-feedback {
        color: #3c763d;
    }

.has-warning {
    position: relative;
}

    .has-warning .help-block,
    .has-warning .control-label,
    .has-warning .radio,
    .has-warning .checkbox,
    .has-warning .radio-inline,
    .has-warning .checkbox-inline,
    .has-warning .promocode-group,
    .has-warning .form-label,
    .has-warning.radio label,
    .has-warning.checkbox label,
    .has-warning.radio-inline label,
    .has-warning.checkbox-inline label {
        color: #8a6d3b;
    }

    .has-warning .form-control {
        color: #8a6d3b;
        border-color: #8a6d3b;
    }

        .has-warning .form-control:focus {
            border-color: #66512c;
        }

    .has-warning input,
    .has-warning .input-group input {
        padding-left: 25px;
    }

    .has-warning.radio-button:before {
        background: white;
        top: -2px;
        left: 10px;
    }

    .has-warning.radio-button.no-row:before {
        left: 0;
    }

    .has-warning.radio-button.no-row:after {
        right: 0;
    }

    .has-warning:before {
        position: absolute;
        top: 25px;
        font-family: 'Azul Icons';
        font-size: 22px;
        font-weight: normal;
        color: #8a6d3b;
        content: "";
        cursor: pointer;
    }

    .has-warning:after {
        position: absolute;
        z-index: 10;
        top: 57px;
        right: 0;
        left: 0;
        padding: 2px;
        font-size: 11px;
        opacity: 1;
        color: #8a6d3b;
        border: 1px solid #8a6d3b;
        background: #fff;
        content: attr(data-title);
        border-radius: 2px;
    }

    .has-warning.no-label:before {
        top: 10px;
    }

    .has-warning.no-label:after {
        top: 39px;
    }

    .has-warning.radio-button .radio,
    .has-warning.checkbox-button .checkbox,
    .has-warning .radio-inline {
        border: 1px solid #8a6d3b;
    }

        .has-warning.radio-button .radio input, .has-warning.radio-button .radio label,
        .has-warning.checkbox-button .checkbox input,
        .has-warning.checkbox-button .checkbox label,
        .has-warning .radio-inline input,
        .has-warning .radio-inline label {
            color: #8a6d3b;
        }

    .has-warning.radio-button:after {
        right: 9px;
        left: initial;
        top: 0px;
    }

    .has-warning.radio-inline-group:after {
        top: 78px;
        margin-bottom: 10px;
        right: initial;
    }

    .has-warning.promocode-group:before {
        right: 95px;
    }

    .has-warning.checkbox-button:before, .has-warning.checkbox-button:after, .has-warning.radio-inline-group:before {
        display: none;
    }

    .has-warning.radio-button .form-label {
        margin-left: 30px;
    }

    .has-warning .dropdown-toggle .filter-option {
        padding-left: 26px;
        color: #8a6d3b;
    }

    .has-warning .dropdown-toggle .caret {
        right: 10px !important;
        margin-top: 2px !important;
    }

    .has-warning .dropdown-toggle:hover .caret {
        color: #8a6d3b;
    }

    .has-warning .bootstrap-select.btn-group .dropdown-menu {
        right: 0;
        left: 0;
        margin-top: -3px;
    }

    .has-warning .input-group-addon {
        color: #8a6d3b;
        border-color: #8a6d3b;
        background-color: #fcf8e3;
    }

    .has-warning .form-control-feedback {
        color: #8a6d3b;
    }

.has-error {
    position: relative;
}

    .has-error .help-block,
    .has-error .control-label,
    .has-error .radio,
    .has-error .checkbox,
    .has-error .radio-inline,
    .has-error .checkbox-inline,
    .has-error .promocode-group,
    .has-error .form-label,
    .has-error.radio label,
    .has-error.checkbox label,
    .has-error.radio-inline label,
    .has-error.checkbox-inline label {
        color: #ED3423;
    }

    .has-error .form-control {
        color: #ED3423;
        border-color: #ED3423;
    }

        .has-error .form-control:focus {
            border-color: #cc2111;
        }

    .has-error input,
    .has-error .input-group input {
        padding-left: 25px;
    }

    .has-error.radio-button:before {
        background: white;
        top: -2px;
        left: 10px;
    }

    .has-error.radio-button.no-row:before {
        left: 0;
    }

    .has-error.radio-button.no-row:after {
        right: 0;
    }

    .has-error:before {
        position: absolute;
        top: 25px;
        font-family: 'Azul Icons';
        font-size: 22px;
        font-weight: normal;
        color: #ED3423;
        content: "";
        cursor: pointer;
    }

    .has-error:after {
        position: absolute;
        z-index: 10;
        top: 57px;
        right: 0;
        left: 0;
        padding: 2px;
        font-size: 11px;
        opacity: 1;
        color: #ED3423;
        border: 1px solid #ED3423;
        background: #fff;
        content: attr(data-title);
        border-radius: 2px;
    }

    .has-error.no-label:before {
        top: 10px;
    }

    .has-error.no-label:after {
        top: 39px;
    }

    .has-error.radio-button .radio,
    .has-error.checkbox-button .checkbox,
    .has-error .radio-inline {
        border: 1px solid #ED3423;
    }

        .has-error.radio-button .radio input, .has-error.radio-button .radio label,
        .has-error.checkbox-button .checkbox input,
        .has-error.checkbox-button .checkbox label,
        .has-error .radio-inline input,
        .has-error .radio-inline label {
            color: #ED3423;
        }

    .has-error.radio-button:after {
        right: 9px;
        left: initial;
        top: 0px;
    }

    .has-error.radio-inline-group:after {
        top: 78px;
        margin-bottom: 10px;
        right: initial;
    }

    .has-error.promocode-group:before {
        right: 95px;
    }

    .has-error.checkbox-button:before, .has-error.checkbox-button:after, .has-error.radio-inline-group:before {
        display: none;
    }

    .has-error.radio-button .form-label {
        margin-left: 30px;
    }

    .has-error .dropdown-toggle .filter-option {
        padding-left: 26px;
        color: #ED3423;
    }

    .has-error .dropdown-toggle .caret {
        right: 10px !important;
        margin-top: 2px !important;
    }

    .has-error .dropdown-toggle:hover .caret {
        color: #ED3423;
    }

    .has-error .bootstrap-select.btn-group .dropdown-menu {
        right: 0;
        left: 0;
        margin-top: -3px;
    }

    .has-error .input-group-addon {
        color: #ED3423;
        border-color: #ED3423;
        background-color: #fff;
    }

    .has-error .form-control-feedback {
        color: #ED3423;
    }

    .has-error input, .has-error textarea, .has-error select, .has-error button {
        background-color: rgba(237, 52, 35, 0.2) !important;
    }

    .has-error.form-group-select .bs-caret {
        position: absolute;
        top: 10px;
        right: 6px;
    }

.has-feedback label ~ .form-control-feedback {
    top: 25px;
}

.has-feedback label.sr-only ~ .form-control-feedback {
    top: 0;
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: silver;
}

@media (min-width: 768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .form-inline .form-control-static {
        display: inline-block;
    }

    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle;
    }

        .form-inline .input-group .input-group-addon,
        .form-inline .input-group .input-group-btn,
        .form-inline .input-group .form-control {
            width: auto;
        }

        .form-inline .input-group > .form-control {
            width: 100%;
        }

    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .radio,
    .form-inline .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }

        .form-inline .radio label,
        .form-inline .checkbox label {
            padding-left: 0;
        }

        .form-inline .radio input[type="radio"],
        .form-inline .checkbox input[type="checkbox"] {
            position: relative;
            margin-left: 0;
        }

    .form-inline .has-feedback .form-control-feedback {
        top: 0;
    }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px;
}

.form-horizontal .radio,
.form-horizontal .checkbox {
    min-height: 27px;
}

@media (min-width: 768px) {
    .form-horizontal .control-label {
        text-align: right;
        margin-bottom: 0;
        padding-top: 7px;
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    right: 0rem;
}

@media all and (min-width: 768px) {
    .form-left {
        padding-right: 1.5rem;
    }
}

@media all and (min-width: 768px) {
    .form-right {
        padding-left: 1.5rem;
    }
}

.checkbox,
.radio {
    min-height: 32px;
    padding: 4px;
    border: 1px solid #9a9a9a;
    transition: border-color 0.15s ease-in-out;
}

    .checkbox.radio-sm,
    .radio.radio-sm {
        height: 28px;
    }

        .checkbox.radio-sm label,
        .radio.radio-sm label {
            min-height: 16px;
            padding: 1px 0 0 20px;
            font-size: 14px;
            line-height: 16px;
        }

            .checkbox.radio-sm label::before,
            .radio.radio-sm label::before {
                position: absolute;
                top: -1px;
                left: 0;
                font-size: 16px;
            }

    .checkbox.sm label,
    .radio.sm label {
        font-size: 12px;
    }

    .checkbox.block,
    .radio.block {
        height: auto;
    }

    .checkbox label,
    .radio label {
        display: block;
        position: relative;
        padding-left: 24px;
        font-size: 0.875rem;
        font-weight: normal;
        line-height: 1.5;
        height: 100%;
        vertical-align: middle;
        color: #9a9a9a;
    }

        .checkbox label::before,
        .radio label::before {
            position: absolute;
            top: -3px;
            left: 0;
            max-height: 24px;
            font-family: "Azul Icons";
            font-size: 18px;
            transition: content 0.15s ease-in-out, color 0.15s ease-in-out;
        }

@media all and (min-width: 576px) {
    .checkbox label,
    .radio label {
        font-size: 1rem;
        font-weight: 300;
    }
}

.checkbox input[type="checkbox"],
.checkbox input[type="radio"],
.radio input[type="checkbox"],
.radio input[type="radio"] {
    z-index: 1;
    top: 4px;
    left: 3px;
    opacity: 0;
}

    .checkbox input[type="checkbox"]:disabled + label,
    .checkbox input[type="radio"]:disabled + label,
    .radio input[type="checkbox"]:disabled + label,
    .radio input[type="radio"]:disabled + label {
        opacity: 0.65;
        cursor: not-allowed;
    }

        .checkbox input[type="checkbox"]:disabled + label::before,
        .checkbox input[type="radio"]:disabled + label::before,
        .radio input[type="checkbox"]:disabled + label::before,
        .radio input[type="radio"]:disabled + label::before {
            color: #9a9a9a;
            cursor: not-allowed;
        }

.checkbox.checkbox-inline,
.radio.checkbox-inline {
    margin-top: 0;
}

.checkbox:hover,
.radio:hover {
    border-color: #808080;
}

    .checkbox:hover > label,
    .radio:hover > label {
        color: #808080;
    }

.checkbox.disabled:hover,
.radio.disabled:hover {
    border-color: #9a9a9a;
}

    .checkbox.disabled:hover label,
    .radio.disabled:hover label {
        color: #9a9a9a;
    }

.checkbox.checkbox-checked:hover, .checkbox.radio-checked:hover,
.radio.checkbox-checked:hover,
.radio.radio-checked:hover {
    border-color: #13b5ea;
}

    .checkbox.checkbox-checked:hover > label, .checkbox.radio-checked:hover > label,
    .radio.checkbox-checked:hover > label,
    .radio.radio-checked:hover > label {
        color: #13b5ea;
    }

.checkbox label::before {
    content: "\e25d";
}

.checkbox input:checked + label::before {
    content: "\e25c";
}

.radio label::before {
    content: "\e25e";
}

.radio input:checked + label::before {
    content: "\e25f";
}

.checkbox-checked {
    border-color: #026cb6;
}

    .checkbox-checked input[type="checkbox"]:checked + label,
    .checkbox-checked input[type="radio"]:checked + label {
        color: #026cb6;
    }

        .checkbox-checked input[type="checkbox"]:checked + label::before,
        .checkbox-checked input[type="radio"]:checked + label::before {
            color: #026cb6;
        }

.checkbox-danger {
    border-color: red;
}

    .checkbox-danger input[type="checkbox"]:checked + label,
    .checkbox-danger input[type="radio"]:checked + label {
        color: red;
    }

        .checkbox-danger input[type="checkbox"]:checked + label::before,
        .checkbox-danger input[type="radio"]:checked + label::before {
            color: red;
        }

.checkbox-info {
    border-color: blue;
}

    .checkbox-info input[type="checkbox"]:checked + label,
    .checkbox-info input[type="radio"]:checked + label {
        color: blue;
    }

        .checkbox-info input[type="checkbox"]:checked + label::before,
        .checkbox-info input[type="radio"]:checked + label::before {
            color: blue;
        }

.checkbox-warning {
    border-color: #E8B820;
}

    .checkbox-warning input[type="checkbox"]:checked + label,
    .checkbox-warning input[type="radio"]:checked + label {
        color: #E8B820;
    }

        .checkbox-warning input[type="checkbox"]:checked + label::before,
        .checkbox-warning input[type="radio"]:checked + label::before {
            color: #E8B820;
        }

.checkbox-success {
    border-color: #53b847;
}

    .checkbox-success input[type="checkbox"]:checked + label,
    .checkbox-success input[type="radio"]:checked + label {
        color: #53b847;
    }

        .checkbox-success input[type="checkbox"]:checked + label::before,
        .checkbox-success input[type="radio"]:checked + label::before {
            color: #53b847;
        }

.radio-checked {
    border-color: #026cb6;
}

    .radio-checked input[type="radio"]:checked + label {
        color: #026cb6;
    }

        .radio-checked input[type="radio"]:checked + label::after {
            color: #026cb6;
        }

    .radio-checked.disabled {
        border-color: #808080;
    }

        .radio-checked.disabled input[type="radio"]:checked + label {
            color: #808080;
        }

            .radio-checked.disabled input[type="radio"]:checked + label::after {
                color: #808080;
            }

.radio-danger {
    border-color: red;
}

    .radio-danger input[type="radio"]:checked + label {
        color: red;
    }

        .radio-danger input[type="radio"]:checked + label::after {
            color: red;
        }

.radio-info {
    border-color: blue;
}

    .radio-info input[type="radio"]:checked + label {
        color: blue;
    }

        .radio-info input[type="radio"]:checked + label::after {
            color: blue;
        }

.radio-warning {
    border-color: #E8B820;
}

    .radio-warning input[type="radio"]:checked + label {
        color: #E8B820;
    }

        .radio-warning input[type="radio"]:checked + label::after {
            color: #E8B820;
        }

.radio-success {
    border-color: #53b847;
}

    .radio-success input[type="radio"]:checked + label {
        color: #53b847;
    }

        .radio-success input[type="radio"]:checked + label::after {
            color: #53b847;
        }

input[type="checkbox"].styled:checked + label:after,
input[type="radio"].styled:checked + label:after {
    font-family: "Azul Icons";
    content: "\e25e";
}

input[type="checkbox"] .styled:checked + label::before,
input[type="radio"] .styled:checked + label::before {
    color: #fff;
}

input[type="checkbox"] .styled:checked + label::after,
input[type="radio"] .styled:checked + label::after {
    color: #fff;
}

.checkbox, .radio {
    border-radius: 2px;
}

.dp-numberPicker input.form-control {
    border: 1px solid #9a9a9a;
    border-left: none;
    border-right: none;
}

    .dp-numberPicker input.form-control:hover, .dp-numberPicker input.form-control:focus, .dp-numberPicker input.form-control:active {
        border-color: #026cb6;
    }

.dp-numberPicker.input-group > .input-group-addon {
    padding: 0 12px;
    font-size: 14px;
    border: 1px solid #9a9a9a;
}

    .dp-numberPicker.input-group > .input-group-addon:first-child {
        border-right: 1px solid #9a9a9a;
    }

    .dp-numberPicker.input-group > .input-group-addon:last-child {
        border-left: 1px solid #9a9a9a;
    }

.dp-numberPicker .input-group-addon.btn:hover {
    background-color: #ebebeb;
    border-color: #026cb6;
}

.dp-numberPicker .input-group-addon.btn.disabled {
    color: #9a9a9a;
}

    .dp-numberPicker .input-group-addon.btn.disabled:hover {
        border-color: #9a9a9a;
        cursor: not-allowed;
    }

.input-group > .form-control {
    padding: 0;
    border: 0;
    border-bottom: 1px solid;
    border-color: #9a9a9a;
}

    .input-group > .form-control:focus {
        border-color: #026cb6;
        background: #ebebeb;
    }

        .input-group > .form-control:focus + span {
            border-color: #026cb6;
            background: #ebebeb;
            color: #026cb6;
        }

.input-group > .input-group-addon {
    padding: 6px 0 6px 8px;
    font-size: 16px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid;
    border-color: #9a9a9a;
    cursor: pointer;
    color: #9a9a9a;
    border-radius: 0px;
    transition: background 0.25s ease-in-out, border-color 0.25s ease-in-out;
}

.input-group:hover > .form-control {
    border-color: #026cb6;
    background: #ebebeb;
}

.input-group:hover > .input-group-addon {
    color: #026cb6;
    background: #ebebeb;
    border-color: #026cb6;
}

.dropdown-menu.typeahead {
    box-sizing: border-box;
    margin-top: -2px;
    background-color: #fff;
    transition: all 0.5s ease;
}

    .dropdown-menu.typeahead.inner {
        float: none;
        position: static;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .dropdown-menu.typeahead.open {
        visibility: visible;
        opacity: 1;
    }

    .dropdown-menu.typeahead li {
        position: relative;
    }

        .dropdown-menu.typeahead li a {
            font-size: 14px;
            font-weight: 300;
            line-height: 32px;
            padding: 0 16px;
            cursor: pointer;
            user-select: none;
        }

            .dropdown-menu.typeahead li a.opt {
                position: relative;
                padding-left: 2.25em;
            }

            .dropdown-menu.typeahead li a span.check-mark {
                display: none;
            }

            .dropdown-menu.typeahead li a span.text {
                display: inline-block;
            }

            .dropdown-menu.typeahead li a:hover, .dropdown-menu.typeahead li a:focus {
                color: #808080;
                outline: 0;
                background-color: #e6e6e6;
                text-decoration: none;
            }

        .dropdown-menu.typeahead li small {
            padding-left: 0.5em;
        }

        .dropdown-menu.typeahead li.active small {
            color: #fff;
        }

        .dropdown-menu.typeahead li.active a {
            color: #026cb6;
            background-color: #e6e6e6;
        }

        .dropdown-menu.typeahead li.active.selected a {
            background-color: #fff;
        }

            .dropdown-menu.typeahead li.active.selected a:hover, .dropdown-menu.typeahead li.active.selected a:focus {
                background-color: #e6e6e6;
            }

        .dropdown-menu.typeahead li.selected {
            background-color: #DBF2F7;
        }

            .dropdown-menu.typeahead li.selected a {
                color: #026cb6;
            }

        .dropdown-menu.typeahead li.disabled a {
            cursor: not-allowed;
        }

    .dropdown-menu.typeahead .notify {
        position: absolute;
        bottom: 5px;
        box-sizing: border-box;
        width: 96%;
        min-height: 26px;
        margin: 0 2%;
        padding: 3px 5px;
        opacity: 0.9;
        border: 1px solid #e3e3e3;
        background: #f5f5f5;
        box-shadow: inset 0 1px 1px #333;
        pointer-events: none;
    }

.input-group {
    display: table;
    position: relative;
    border-collapse: separate;
}

    .input-group[class*="col-"] {
        float: none;
        padding-right: 0;
        padding-left: 0;
    }

    .input-group .form-control {
        float: left;
        position: relative;
        z-index: 2;
        width: 100%;
        margin-bottom: 0;
        padding-right: 5px;
        border: 1px solid #ccc;
    }

    .input-group-addon,
    .input-group-btn,
    .input-group .form-control {
        display: table-cell;
    }

        .input-group-addon:not(:first-child):not(:last-child),
        .input-group-btn:not(:first-child):not(:last-child),
        .input-group .form-control:not(:first-child):not(:last-child) {
            border-radius: 0;
        }

.input-group-addon,
.input-group-btn {
    width: 1%;
    vertical-align: middle;
    white-space: nowrap;
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #026cb6;
    border: 1px solid #9a9a9a;
    border-radius: 2px;
    background-color: transparent;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
}

    .input-group-addon.input-sm,
    .input-group-sm > .input-group-addon,
    .input-group-sm > .input-group-btn > .input-group-addon.btn {
        font-size: 12px;
    }

    .input-group-addon.input-lg,
    .input-group-lg > .input-group-addon,
    .input-group-lg > .input-group-btn > .input-group-addon.btn {
        font-size: 18px;
    }

    .input-group-addon.btn {
        cursor: pointer;
    }

        .input-group-addon.btn:hover {
            background-color: transparent;
        }

        .input-group-addon.btn:active {
            background-color: transparent;
        }

    .input-group-addon.disabled {
        cursor: default;
    }

    .input-group-addon input[type="radio"],
    .input-group-addon input[type="checkbox"] {
        margin-top: 0;
    }

    .input-group .form-control:first-child,
    .input-group-addon:first-child,
    .input-group-btn:first-child > .btn,
    .input-group-btn:first-child > .btn-group > .btn,
    .input-group-btn:first-child > .dropdown-toggle,
    .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
    .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .input-group-addon:first-child {
        border-right: 0;
    }

    .input-group .form-control:last-child,
    .input-group-addon:last-child,
    .input-group-btn:last-child > .btn,
    .input-group-btn:last-child > .btn-group > .btn,
    .input-group-btn:last-child > .dropdown-toggle,
    .input-group-btn:first-child > .btn:not(:first-child),
    .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .input-group-addon:last-child {
        border-left: 0;
    }

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
}

    .input-group-btn > .btn {
        position: relative;
    }

        .input-group-btn > .btn + .btn {
            margin-left: -1px;
        }

        .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
            z-index: 2;
        }

    .input-group-btn:first-child > .btn,
    .input-group-btn:first-child > .btn-group {
        margin-right: -1px;
    }

    .input-group-btn:last-child > .btn,
    .input-group-btn:last-child > .btn-group {
        z-index: 2;
        margin-left: -1px;
    }

.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

    .nav:before, .nav:after {
        display: table;
        content: " ";
    }

    .nav:after {
        clear: both;
    }

    .nav > li {
        display: block;
        position: relative;
    }

        .nav > li > a {
            display: block;
            position: relative;
            padding: 10px 15px;
        }

            .nav > li > a:hover, .nav > li > a:focus {
                background-color: #026cb6;
                text-decoration: none;
            }

        .nav > li.disabled > a {
            color: #e0e0e0;
        }

            .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
                color: #e0e0e0;
                background-color: transparent;
                cursor: not-allowed;
                text-decoration: none;
            }

    .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
        border-color: #026cb6;
        background-color: #026cb6;
    }

    .nav .nav-divider {
        overflow: hidden;
        height: 1px;
        margin: 9px 0;
        background-color: #e5e5e5;
    }

    .nav > li > a > img {
        max-width: none;
    }

.nav-tabs {
    border-bottom: 4px solid #026cb6;
}

    .nav-tabs > li {
        float: left;
        margin-bottom: -1px;
    }

        .nav-tabs > li > a {
            margin-right: 2px;
            line-height: 1.42857;
            border: 1px solid #ddd;
            border-radius: 2px 2px 0 0;
        }

            .nav-tabs > li > a:hover {
                border-color: #e6e6e6 #e6e6e6 #ddd;
            }

        .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
            color: #fff;
            border: 1px solid #026cb6;
            border-bottom-color: transparent;
            background-color: #026cb6;
            cursor: default;
        }

.nav-pills > li {
    float: left;
}

    .nav-pills > li > a {
        border-radius: 2px;
    }

    .nav-pills > li + li {
        margin-left: 2px;
    }

    .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
        color: #fff;
        background-color: #026cb6;
    }

.nav-stacked > li {
    float: none;
}

    .nav-stacked > li + li {
        margin-top: 2px;
        margin-left: 0;
    }

.nav-justified, .nav-tabs.nav-justified {
    width: 100%;
}

    .nav-justified > li, .nav-tabs.nav-justified > li {
        float: none;
    }

        .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
            margin-bottom: 5px;
            text-align: center;
        }

    .nav-justified > .dropdown .dropdown-menu {
        top: auto;
        left: auto;
    }

    .nav-justified > li, .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%;
    }

        .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
            margin-bottom: 0;
        }

        .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
            margin-right: 0;
            color: #868686;
            border-radius: 2px;
        }

    .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
    .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
        color: #fff;
        border: 1px solid #026cb6;
    }

@media (min-width: 768px) {
    .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 2px 2px 0 0;
        background-color: #F3F3F3;
    }

    .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
    .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
        border-bottom-color: #026cb6;
        background-color: #026cb6;
    }
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
}

.nav-tabs.nav-custom {
    border: 0;
}

    .nav-tabs.nav-custom > li > a {
        padding: 0;
        height: 32px;
        line-height: 34px;
        font-weight: 300;
        color: #13b5ea;
        border-color: #13b5ea;
        background: #e6e6e6;
        transition: background 0.15s ease-in-out;
    }

        .nav-tabs.nav-custom > li > a:hover {
            background-color: #e0e0e0;
        }

        .nav-tabs.nav-custom > li > a.active {
            color: white;
            background: #13b5ea;
        }

    .nav-tabs.nav-custom > li:first-child > a {
        border-radius: 2px 0 0 2px;
        margin-right: -1px;
    }

    .nav-tabs.nav-custom > li:last-child > a {
        border-radius: 0 2px 2px 0;
    }

.flight-status-nav {
    border: 0;
}

    .flight-status-nav > li {
        float: right;
        margin: 0;
    }

        .flight-status-nav > li > a {
            height: 56px;
            line-height: 40px;
            margin: 0;
            color: #9a9a9a;
            font-weight: 300;
            border: 0;
            border-radius: 2px 2px 0px 0px;
            transition: background 0.15s ease-in-out, color 0.15s ease-in-out;
        }

            .flight-status-nav > li > a.active {
                color: white;
                background: #13b5ea;
            }

                .flight-status-nav > li > a.active:hover, .flight-status-nav > li > a.active:focus {
                    color: white;
                    background: #0f91bb;
                }

            .flight-status-nav > li > a span.day-month-num {
                font-size: 24px;
                font-weight: 200;
            }

            .flight-status-nav > li > a:hover, .flight-status-nav > li > a:focus {
                background: #e0e0e0;
                color: #808080;
            }

.group-num-picker {
    padding: 0 1.25em;
}

.dp-numberPicker {
    margin-top: 7px;
}

    .dp-numberPicker > input, .dp-numberPicker > span {
        height: 32px;
        line-height: 32px;
    }

    .dp-numberPicker input {
        height: 34px;
    }

    .dp-numberPicker span {
        padding-top: 0;
        padding-bottom: 0;
    }

        .dp-numberPicker span i, .dp-numberPicker span .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .dp-numberPicker span .caret {
            font-weight: bold;
        }

.fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

    .fade.in {
        opacity: 1;
    }

    .fade.show {
        opacity: 1;
    }

.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    z-index: 1050;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    outline: 0;
    -webkit-overflow-scrolling: touch;
}

    .modal.fade .modal-dialog {
        transform: translate(0, -25%);
        transition: transform 0.3s ease-out;
    }

    .modal.in .modal-dialog {
        transform: translate(0, 0);
    }

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    outline: 0;
    background-color: #fff;
    background-clip: padding-box;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

.modal-backdrop {
    position: fixed;
    z-index: 1040;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
}

    .modal-backdrop.fade {
        opacity: 0;
    }

    .modal-backdrop.in {
        opacity: 0.5;
    }

.modal-header {
    min-height: 16.42857px;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

    .modal-header .close {
        margin-top: -2px;
    }

.modal-title {
    margin: 0;
    line-height: 1.42857;
}

.modal-body {
    position: relative;
    padding: 15px;
}

    .modal-body h4 {
        margin: 8px 0;
        font-size: 18px;
        font-weight: 300;
        color: #026cb6;
    }

.modal-footer {
    padding: 15px;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

    .modal-footer:before, .modal-footer:after {
        display: table;
        content: " ";
    }

    .modal-footer:after {
        clear: both;
    }

    .modal-footer .btn + .btn {
        margin-bottom: 0;
        margin-left: 5px;
    }

    .modal-footer .btn-group .btn + .btn {
        margin-left: -1px;
    }

    .modal-footer .btn-block + .btn-block {
        margin-left: 0;
    }

.modal-scrollbar-measure {
    overflow: scroll;
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
}

@media all and (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }

    .modal-content {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .modal-sm {
        width: 300px;
    }
}

@media all and (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }

    .modal-xl {
        width: 71.875rem;
    }
}

@media all and (min-width: 992px) and (min-width: 1200px) {
    .modal-xl {
        width: 71.875rem;
    }
}

.modal .modal-dialog .modal-content {
    border-radius: 2px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
    border: 0;
}

    .modal .modal-dialog .modal-content .modal-title {
        margin-bottom: -2px;
        font-size: 20px;
        font-weight: 300;
        color: #026cb6;
    }

    .modal .modal-dialog .modal-content .btn-close-modal {
        display: block;
        width: 24px;
        height: 24px;
        text-align: center;
        color: #9a9a9a;
    }

        .modal .modal-dialog .modal-content .btn-close-modal i, .modal .modal-dialog .modal-content .btn-close-modal .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .modal .modal-dialog .modal-content .btn-close-modal .caret {
            vertical-align: middle;
            font-size: 20px;
        }

        .modal .modal-dialog .modal-content .btn-close-modal :hover {
            color: #13b5ea;
        }

    .modal .modal-dialog .modal-content .modal-body {
        font-size: 14px;
        font-weight: 400;
        color: #808080;
    }

        .modal .modal-dialog .modal-content .modal-body .p-lg {
            margin-bottom: 4px;
            font-size: 24px;
            font-weight: 200;
        }

        .modal .modal-dialog .modal-content .modal-body .p-md {
            font-size: 14px;
            font-weight: 300;
        }

    .modal .modal-dialog .modal-content .modal-footer {
        border-top: 1px solid #e0e0e0;
        border-radius: 0 0 2px 2px;
    }

        .modal .modal-dialog .modal-content .modal-footer .btn {
            height: 32px;
            line-height: 23px;
            font-size: 16px;
            font-weight: 300;
        }

            .modal .modal-dialog .modal-content .modal-footer .btn.btn-outline {
                line-height: 23px;
            }

.modal .modal-dialog.modal-notitle .modal-content .btn-close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #9a9a9a;
}

.modal.modal-alert h2 {
    color: #808080;
    text-align: center;
}

    .modal.modal-alert h2 i, .modal.modal-alert h2 .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .modal.modal-alert h2 .caret {
        display: block;
        font-size: 40px;
    }

.modal.modal-alert .modal-msg {
    text-align: center;
    font-weight: 300;
    font-size: 1.25em;
    margin: 16px 0;
    font-size: 1.25em;
    line-height: 1.5;
}

.modal.modal-alert .p-msg {
    text-align: center;
    font-weight: 300;
    line-height: 18px;
    margin-bottom: 16px;
}

.modal.modal-alert .az-msg {
    font-size: 1em;
    line-height: 1.25;
    font-weight: 300;
}

    .modal.modal-alert .az-msg .value {
        color: #041e42;
        font-size: 1.2em;
        font-weight: 600;
    }

.modal.modal-alert#modal-alert-session i, .modal.modal-alert#modal-alert-session .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .modal.modal-alert#modal-alert-session .caret {
    font-size: 48px;
    color: #026cb6;
}

.modal.modal-alert .modal-body {
    padding: 20px;
}

.modal.modal-alert.modal-warning h2 i, .modal.modal-alert.modal-warning h2 .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .modal.modal-alert.modal-warning h2 .caret {
    color: #E8B820;
}

.modal.modal-alert.modal-warning .btn {
    background: #E8B820;
}

    .modal.modal-alert.modal-warning .btn:hover {
        background: #efce65;
    }

    .modal.modal-alert.modal-warning .btn:active {
        background: #f4dd94;
    }

.modal.modal-alert.modal-error h2 i, .modal.modal-alert.modal-error h2 .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .modal.modal-alert.modal-error h2 .caret {
    color: red;
}

.modal.modal-alert.modal-error .btn {
    background: red;
}

    .modal.modal-alert.modal-error .btn:hover {
        background: #ff4d4d;
    }

    .modal.modal-alert.modal-error .btn:active {
        background: #ff8080;
    }

.modal.modal-alert.modal-success h2 i, .modal.modal-alert.modal-success h2 .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .modal.modal-alert.modal-success h2 .caret {
    color: #53b847;
}

.modal.modal-alert.modal-success .btn {
    background: #53b847;
}

    .modal.modal-alert.modal-success .btn:hover {
        background: #87cd7e;
    }

    .modal.modal-alert.modal-success .btn:active {
        background: #a9dca3;
    }

.modal.modal-alert.modal-primary h2 i, .modal.modal-alert.modal-primary h2 .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .modal.modal-alert.modal-primary h2 .caret {
    color: #026cb6;
}

.modal.modal-alert.modal-primary .p-msg {
    color: #026cb6;
}

.modal .modal-header h4 {
    font-size: 20px;
    font-weight: 300;
}

.modal .modal-header .close {
    position: absolute;
    top: 14px;
    right: 10px;
    font-size: 1.6em;
    color: #9a9a9a;
    border-width: 0;
    background: none;
    cursor: pointer;
}

    .modal .modal-header .close:hover {
        color: #8d8d8d;
    }

    .modal .modal-header .close:active {
        color: gray;
    }

.modal .modal-header.modal-header-primary {
    padding: 0;
    color: #fff;
    background-color: #026cb6;
}

    .modal .modal-header.modal-header-primary .close {
        color: #13b5ea;
    }

        .modal .modal-header.modal-header-primary .close:hover {
            color: #11a3d2;
        }

        .modal .modal-header.modal-header-primary .close:active {
            color: #0f91bb;
        }

    .modal .modal-header.modal-header-primary .star-group {
        font-size: 16px;
        color: #FEC057;
        margin-right: 8px;
    }

    .modal .modal-header.modal-header-primary .modal-title {
        padding: 16px;
        font-size: 20px;
        font-weight: 200;
        color: #fff;
    }

        .modal .modal-header.modal-header-primary .modal-title small {
            font-size: 14px;
            font-weight: 300;
            opacity: .8;
        }

.modal .modal-header .nav-tabs {
    padding: 0 16px;
    border-bottom-width: 1px;
}

    .modal .modal-header .nav-tabs > li > a {
        margin-right: 32px;
        padding-right: 0;
        padding-left: 0;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.7);
        border-width: 0;
        border-bottom: 6px solid transparent;
    }

        .modal .modal-header .nav-tabs > li > a:hover {
            color: white;
        }

        .modal .modal-header .nav-tabs > li > a.active {
            color: white;
            border-bottom-color: #88D3E2;
        }

.modal .modal-body {
    padding: 24px 16px;
}

    .modal .modal-body #hotel-description p {
        font-size: 12px;
        line-height: 16px;
        color: #808080;
    }

    .modal .modal-body #hotel-description h4 {
        margin-bottom: 8px;
        font-size: 16px;
        font-weight: 300;
        color: #026cb6;
    }

#modal-terms .modal-body, #modal-booking-terms .modal-body {
    padding: 16px;
    overflow-y: auto;
    max-height: 400px;
    background-color: #e6e6e6;
}

    #modal-terms .modal-body p, #modal-booking-terms .modal-body p {
        font-size: 12px;
        line-height: 16px;
    }

#overview {
    color: white;
    background-color: #026cb6;
    min-height: 48px;
    height: auto;
}

    #overview.fixed {
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
        width: 100%;
    }

    #overview .bx-overview {
        height: 48px;
    }

        #overview .bx-overview:before, #overview .bx-overview:after {
            display: table;
            content: " ";
        }

        #overview .bx-overview:after {
            clear: both;
        }

@media all and (min-width: 992px) {
    #overview .bx-overview {
        height: 64px;
    }
}

#overview .bx-overview .flight-details {
    float: left;
    width: 44%;
    padding: 8px 8px 8px 0;
    height: 100%;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .flight-details {
        width: 50%;
    }

        #overview .bx-overview .flight-details > div {
            float: left;
        }
}

@media all and (min-width: 768px) {
    #overview .bx-overview .flight-details {
        width: 67%;
        padding-top: 6px;
    }

        #overview .bx-overview .flight-details > div {
            padding-right: 12px;
        }

            #overview .bx-overview .flight-details > div + div {
                padding-left: 12px;
                border-left: 1px solid rgba(255, 255, 255, 0.2);
            }

        #overview .bx-overview .flight-details .label {
            font-size: 0.625rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.7);
        }

        #overview .bx-overview .flight-details .t-big {
            display: block;
            margin-top: 4px;
            font-size: 0.75rem;
            font-weight: 300;
        }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .flight-details {
        width: 70%;
        padding: 12px 8px 12px 0;
    }

        #overview .bx-overview .flight-details > div {
            padding-right: 16px;
        }

            #overview .bx-overview .flight-details > div + div {
                padding-left: 16px;
            }

        #overview .bx-overview .flight-details .label {
            font-size: 0.75rem;
        }

        #overview .bx-overview .flight-details .t-big {
            margin-top: 8px;
            font-size: 1rem;
            font-weight: 300;
        }
}

@media all and (min-width: 1200px) {
    #overview .bx-overview .flight-details {
        width: 74%;
    }

        #overview .bx-overview .flight-details > div {
            padding-right: 24px;
        }

            #overview .bx-overview .flight-details > div + div {
                padding-left: 24px;
            }
}

#overview .bx-overview .flight-details .bx-flight {
    height: auto;
    padding-top: 6px;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .flight-details .bx-flight {
        padding-top: 4px;
    }
}

@media all and (min-width: 768px) {
    #overview .bx-overview .flight-details .bx-flight {
        padding-top: 12px;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .flight-details .bx-flight {
        padding-top: 14px;
    }
}

#overview .bx-overview .flight-details .bx-flight span {
    font-size: 1.25rem;
    line-height: 1.25;
    font-weight: 200;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .flight-details .bx-flight span {
        font-size: 1.5rem;
        font-weight: 300;
    }
}

@media all and (min-width: 768px) {
    #overview .bx-overview .flight-details .bx-flight span {
        font-size: 1.25rem;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .flight-details .bx-flight span {
        font-size: 1.5rem;
    }
}

#overview .bx-overview .flight-details .bx-flight i, #overview .bx-overview .flight-details .bx-flight .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .flight-details .bx-flight .caret {
    display: inline-block;
    margin: 0 2px;
    font-size: 1rem;
}

@media all and (min-width: 992px) {
    #overview .bx-overview .flight-details .bx-flight i, #overview .bx-overview .flight-details .bx-flight .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .flight-details .bx-flight .caret {
        font-size: 1.125rem;
    }
}

#overview .bx-overview .flight-details .bx-date {
    display: none;
}

@media all and (min-width: 768px) {
    #overview .bx-overview .flight-details .bx-date {
        display: block;
    }

        #overview .bx-overview .flight-details .bx-date .t-big {
            display: none;
        }

            #overview .bx-overview .flight-details .bx-date .t-big.short {
                display: block;
            }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .flight-details .bx-date .t-big {
        display: block;
    }

        #overview .bx-overview .flight-details .bx-date .t-big.short {
            display: none;
        }
}

#overview .bx-overview .flight-details .bx-date > div {
    float: left;
}

#overview .bx-overview .flight-details .bx-date div + div {
    margin-left: 16px;
}

@media all and (min-width: 1200px) {
    #overview .bx-overview .flight-details .bx-date div + div {
        margin-left: 24px;
    }
}

#overview .bx-overview .flight-details .bx-passengers {
    display: none;
}

    #overview .bx-overview .flight-details .bx-passengers .t-big.short {
        display: none;
    }

@media all and (min-width: 768px) {
    #overview .bx-overview .flight-details .bx-passengers {
        display: block;
    }

        #overview .bx-overview .flight-details .bx-passengers .t-big {
            display: none;
        }

            #overview .bx-overview .flight-details .bx-passengers .t-big.short {
                display: block;
            }
}

@media all and (min-width: 1200px) {
    #overview .bx-overview .flight-details .bx-passengers .t-big {
        display: block;
    }

        #overview .bx-overview .flight-details .bx-passengers .t-big.short {
            display: none;
        }
}

#overview .bx-overview .flight-details .bx-change-search {
    display: none;
    padding-right: 0;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .flight-details .bx-change-search {
        display: block;
        float: right;
        padding-top: 2px;
    }
}

@media all and (min-width: 768px) {
    #overview .bx-overview .flight-details .bx-change-search {
        padding-top: 4px;
        float: left;
    }

        #overview .bx-overview .flight-details .bx-change-search .btn {
            height: 24px;
            padding: 6px 8px 8px;
            font-size: 0.625rem;
        }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .flight-details .bx-change-search {
        padding-top: 8px;
    }

        #overview .bx-overview .flight-details .bx-change-search .btn {
            height: 32px;
            padding: 8px 16px;
            font-size: 0.75rem;
        }
}

#overview .bx-overview .price {
    float: left;
    position: relative;
    width: 56%;
    height: 100%;
    color: white;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .price {
        width: 50%;
    }
}

@media all and (min-width: 768px) {
    #overview .bx-overview .price {
        width: 33%;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .price {
        width: 30%;
    }
}

@media all and (min-width: 1200px) {
    #overview .bx-overview .price {
        width: 26%;
    }
}

#overview .bx-overview .price .bx-price {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    padding: 4px 28px 0 8px;
    border: 0 none;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
    background: #026cb6;
    transition: background-color, 0.15s ease-in-out;
}

    #overview .bx-overview .price .bx-price:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    #overview .bx-overview .price .bx-price.update {
        background-color: #13b5ea;
    }

@media all and (min-width: 576px) {
    #overview .bx-overview .price .bx-price {
        padding: 0 20px 0 8px;
    }
}

@media all and (min-width: 768px) {
    #overview .bx-overview .price .bx-price {
        padding: 4px 20px 4px 4px;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .price .bx-price {
        padding: 10px 24px 10px 8px;
    }
}

#overview .bx-overview .price .bx-price .value {
    display: block;
    font-size: 1.25em;
}

    #overview .bx-overview .price .bx-price .value small {
        font-size: 0.75rem;
        margin-right: -2px;
    }

#overview .bx-overview .price .bx-price i, #overview .bx-overview .price .bx-price .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .price .bx-price .caret {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    font-size: 1.25rem;
    text-align: center;
}

#overview .bx-overview .price .bx-price .overview-left {
    text-align: left;
    float: right;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .price .bx-price .overview-left {
        width: 50%;
        float: left;
    }
}

@media all and (min-width: 768px) {
    #overview .bx-overview .price .bx-price .overview-left {
        width: 48%;
    }
}

#overview .bx-overview .price .bx-price .overview-left .total {
    margin-top: 4px;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .price .bx-price .overview-left .value {
        margin-top: 8px;
        font-size: 1.125rem;
    }
}

@media all and (min-width: 768px) {
    #overview .bx-overview .price .bx-price .overview-left .value {
        font-size: 1rem;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .price .bx-price .overview-left .value {
        font-size: 1.125rem;
    }
}

#overview .bx-overview .price .bx-price .overview-left .installment {
    font-size: 1.25em;
}

    #overview .bx-overview .price .bx-price .overview-left .installment.total {
        display: none;
    }

@media all and (min-width: 576px) {
    #overview .bx-overview .price .bx-price .overview-left .installment.total {
        display: block;
        font-size: 0.625rem;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .price .bx-price .overview-left .installment.total {
        font-size: 0.75rem;
    }
}

#overview .bx-overview .price .bx-price .overview-right {
    display: none;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .price .bx-price .overview-right {
        display: block;
        float: right;
        width: 50%;
    }
}

@media all and (min-width: 768px) {
    #overview .bx-overview .price .bx-price .overview-right {
        width: 52%;
    }
}

#overview .bx-overview .price .bx-price .overview-right .desc-value {
    display: block;
    text-align: right;
    margin-top: 2px;
}

    #overview .bx-overview .price .bx-price .overview-right .desc-value .times {
        display: inline-block;
        font-size: 0.875rem;
    }

        #overview .bx-overview .price .bx-price .overview-right .desc-value .times small {
            font-size: 0.625rem;
        }

@media all and (min-width: 992px) {
    #overview .bx-overview .price .bx-price .overview-right .desc-value .times {
        font-size: 1rem;
    }

        #overview .bx-overview .price .bx-price .overview-right .desc-value .times small {
            font-size: 0.75rem;
        }
}

#overview .bx-overview .price .bx-price .overview-right .desc-value .more {
    display: block;
    float: right;
    max-width: 100%;
    font-size: 0.625rem;
}

@media all and (min-width: 992px) {
    #overview .bx-overview .price .bx-price .overview-right .desc-value .more {
        font-size: 0.625rem;
        max-width: calc(90% + 4px);
        line-height: 1.25;
    }
}

#overview .bx-overview .price .bx-points {
    display: none;
}

#overview .bx-overview.-points {
    height: 64px;
}

@media all and (min-width: 576px) {
    #overview .bx-overview.-points {
        height: 48px;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview.-points {
        height: 64px;
    }
}

#overview .bx-overview.-points .flight-details {
    width: 25%;
    padding-top: 4px;
}

@media all and (min-width: 576px) {
    #overview .bx-overview.-points .flight-details {
        width: 50%;
        padding-top: 8px;
    }
}

@media all and (min-width: 768px) {
    #overview .bx-overview.-points .flight-details {
        width: 67%;
        padding-top: 6px;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview.-points .flight-details {
        width: 70%;
        padding: 12px 8px 12px 0;
    }
}

@media all and (min-width: 1200px) {
    #overview .bx-overview.-points .flight-details {
        width: 74%;
    }
}

#overview .bx-overview.-points .flight-details .bx-flight span {
    line-height: 1.25;
}

#overview .bx-overview.-points .price {
    width: 75%;
}

@media all and (min-width: 576px) {
    #overview .bx-overview.-points .price {
        width: 50%;
    }
}

@media all and (min-width: 768px) {
    #overview .bx-overview.-points .price {
        width: 33%;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview.-points .price {
        width: 30%;
    }
}

@media all and (min-width: 1200px) {
    #overview .bx-overview.-points .price {
        width: 26%;
    }
}

#overview .bx-overview.-points .price .bx-price {
    display: none;
}

#overview .bx-overview.-points .price .bx-points {
    display: block;
    padding: 0 20px 0 8px;
    text-align: right;
}

@media all and (min-width: 576px) {
    #overview .bx-overview.-points .price .bx-points {
        padding: 0 24px 2px 8px;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview.-points .price .bx-points {
        font-size: 1em;
        padding: 0 28px 2px 8px;
        width: 100%;
    }
}

@media all and (min-width: 576px) {
    #overview .bx-overview.-points .price .bx-points .total-price {
        float: left;
        width: 50%;
    }
}

#overview .bx-overview.-points .price .bx-points .total-price span.total small {
    margin-right: 4px;
}

@media all and (min-width: 576px) {
    #overview .bx-overview.-points .price .bx-points .total-points {
        float: left;
        width: 50%;
        padding-right: 8px;
    }
}

#overview .bx-overview.-points .price .bx-points .total-points span.total small {
    margin-left: 4px;
}

#overview .bx-overview.-points .price .bx-points span {
    display: inline-block;
}

    #overview .bx-overview.-points .price .bx-points span.label {
        font-size: 0.75rem;
        font-weight: normal;
        line-height: 2;
    }

@media all and (min-width: 576px) {
    #overview .bx-overview.-points .price .bx-points span.label {
        font-size: 0.625rem;
        font-weight: 300;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview.-points .price .bx-points span.label {
        font-size: 0.75em;
        color: rgba(255, 255, 255, 0.7);
        letter-spacing: 0.25px;
    }
}

#overview .bx-overview.-points .price .bx-points span.total {
    margin: 0;
    font-size: 1rem;
}

    #overview .bx-overview.-points .price .bx-points span.total small {
        font-size: 0.75rem;
    }

@media all and (min-width: 992px) {
    #overview .bx-overview.-points .price .bx-points span.total {
        font-size: 1.25rem;
        font-weight: 200;
    }
}

#overview .fares {
    width: 100%;
    font-size: .75em;
    line-height: 1.25;
    float: left;
    padding-right: 4px;
    font-weight: 300;
    text-transform: uppercase;
}

    #overview .fares .flag-fares {
        font-weight: normal;
    }

        #overview .fares .flag-fares.-Azul {
            color: #026cb6;
        }

        #overview .fares .flag-fares.-maisAzul {
            color: #041e42;
        }

            #overview .fares .flag-fares.-maisAzul .-mais {
                color: #026cb6;
            }

        #overview .fares .flag-fares.-economy {
            color: #159ba7;
        }

        #overview .fares .flag-fares.-business {
            color: #00858f;
        }

#overview .bx-overview .trip-overview {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
    /* ------------------------------
  Trip overview animation
  ------------------------------ */
}

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview {
        position: absolute;
        bottom: auto;
    }
}

#overview .bx-overview .trip-overview .overview-title {
    position: fixed;
    top: 0;
    width: 100%;
    height: 48px;
    padding: 12px 24px 8px 16px;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    color: white;
    border: 0 none;
    background-color: #0092cf;
    text-align: left;
}

    #overview .bx-overview .trip-overview .overview-title .icon-caret-up {
        display: none;
    }

    #overview .bx-overview .trip-overview .overview-title .icon-close {
        display: block;
    }

    #overview .bx-overview .trip-overview .overview-title i, #overview .bx-overview .trip-overview .overview-title .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-title .caret {
        position: absolute;
        top: 50%;
        right: 8px;
        margin-top: -12px;
        font-size: 24px;
    }

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-title {
        position: relative;
        padding: 8px 24px 8px 12px;
        font-weight: 200;
        letter-spacing: 0.5px;
    }

        #overview .bx-overview .trip-overview .overview-title .icon-caret-up {
            display: block;
        }

        #overview .bx-overview .trip-overview .overview-title .icon-close {
            display: none;
        }

        #overview .bx-overview .trip-overview .overview-title i, #overview .bx-overview .trip-overview .overview-title .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-title .caret {
            font-size: 20px;
        }
}

@media all and (min-width: 768px) {
    #overview .bx-overview .trip-overview .overview-title {
        font-size: 1rem;
        font-weight: 300;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .trip-overview .overview-title {
        height: 64px;
        padding: 16px 24px 16px 16px;
        font-size: 1.125em;
        font-weight: 200;
    }

        #overview .bx-overview .trip-overview .overview-title i, #overview .bx-overview .trip-overview .overview-title .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-title .caret {
            font-size: 24px;
        }
}

#overview .bx-overview .trip-overview .overview-search {
    height: 48px;
    margin-top: 48px;
    padding: 10px 16px;
    background: #026cb6;
}

    #overview .bx-overview .trip-overview .overview-search:before, #overview .bx-overview .trip-overview .overview-search:after {
        display: table;
        content: " ";
    }

    #overview .bx-overview .trip-overview .overview-search:after {
        clear: both;
    }

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-search {
        display: none;
    }
}

#overview .bx-overview .trip-overview .overview-search .overview-search-flight {
    float: left;
    font-size: 1.25rem;
    font-weight: 200;
    margin-top: 6px;
}

    #overview .bx-overview .trip-overview .overview-search .overview-search-flight i, #overview .bx-overview .trip-overview .overview-search .overview-search-flight .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-search .overview-search-flight .caret {
        font-size: 16px;
    }

#overview .bx-overview .trip-overview .overview-search .overview-search-button {
    float: right;
}

#overview .bx-overview .trip-overview .overview-wrapper {
    position: relative;
    overflow-y: auto;
    transition: max-height 0.15s ease-in-out;
    background: white;
    font-weight: 300;
}

    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight {
        padding: 8px;
        color: #808080;
    }

        #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel {
            padding: 8px;
            font-size: 0.75em;
            font-weight: normal;
            border-radius: 2px;
            background-color: #e0e0e0;
        }

            #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel:before, #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel:after {
                display: table;
                content: " ";
            }

            #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel:after {
                clear: both;
            }

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel {
        padding: 8px 4px;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel {
        padding: 8px;
    }
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel .direction {
    float: left;
    margin-right: 8px;
    font-weight: 500;
    color: #041e42;
}

    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel .direction i, #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel .direction .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel .direction .caret {
        line-height: 8px;
        vertical-align: middle;
    }

        #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel .direction i.icon-plane-departure, #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel .direction .bootstrap-select.btn-group .dropdown-toggle .icon-plane-departure.caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel .direction .icon-plane-departure.caret {
            font-size: 12px;
        }

        #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel .direction i.icon-dotted-line, #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel .direction .bootstrap-select.btn-group .dropdown-toggle .icon-dotted-line.caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel .direction .icon-dotted-line.caret {
            font-size: 18px;
        }

@media all and (min-width: 768px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel .direction i.icon-dotted-line, #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel .direction .bootstrap-select.btn-group .dropdown-toggle .icon-dotted-line.caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel .direction .icon-dotted-line.caret {
        display: none;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel .direction i.icon-dotted-line, #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel .direction .bootstrap-select.btn-group .dropdown-toggle .icon-dotted-line.caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel .direction .icon-dotted-line.caret {
        display: inline;
    }
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-travel .date {
    float: right;
    white-space: nowrap;
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description {
    padding: 8px;
    font-size: 1rem;
    line-height: 1;
}

    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description:before, #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description:after {
        display: table;
        content: " ";
    }

    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description:after {
        clear: both;
    }

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description {
        padding: 8px 4px;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description {
        padding: 8px;
    }
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .flight {
    float: left;
    max-width: 45%;
}

    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .flight .code {
        font-size: 0.875rem;
        font-weight: 300;
    }

@media all and (min-width: 768px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .flight .code {
        font-size: 0.75rem;
        font-weight: normal;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .flight .code {
        font-size: 0.875rem;
        font-weight: 300;
    }
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .flight .type {
    font-size: 0.75rem;
    color: #041e42;
    text-transform: uppercase;
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .dep-arr-info {
    float: right;
    max-width: 55%;
    text-align: right;
}

    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .dep-arr-info div, #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .dep-arr-info i, #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .dep-arr-info .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .dep-arr-info .caret {
        display: inline-block;
        text-align: center;
        vertical-align: top;
    }

    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .dep-arr-info i, #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .dep-arr-info .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .dep-arr-info .caret {
        margin: -2px 0;
    }

@media all and (min-width: 768px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .dep-arr-info i, #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .dep-arr-info .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .dep-arr-info .caret {
        margin: -2px -4px;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .dep-arr-info i, #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .dep-arr-info .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .dep-arr-info .caret {
        margin: -2px 0;
    }
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .dep-arr-info .hour {
    font-size: 1rem;
}

@media all and (min-width: 768px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .dep-arr-info .hour {
        font-size: 0.875rem;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .dep-arr-info .hour {
        font-size: 1rem;
    }
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .dep-arr-info .airport {
    font-size: 0.75rem;
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .luggage-info {
    display: block;
    float: left;
    margin: 4px 0;
    font-size: 0.75rem;
    font-weight: normal;
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .operation .crossover {
    color: #808080;
    font-size: 0.6875em;
    font-weight: 400;
    display: block;
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .operation img {
    margin-left: 6px;
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-flight .bx-flight-description .operation .logo-united {
    margin-top: 2px;
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-flight .hr-flight-stop {
    margin: 0 8px 4px;
    border-top: 1px dashed #9a9a9a;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-flight .hr-flight-stop {
        margin: 0 8px 4px;
    }
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate,
#overview .bx-overview .trip-overview .overview-wrapper .overview-price-service,
#overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking,
#overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking {
    position: relative;
    padding: 16px;
    color: #808080;
    border-top: 1px solid #9a9a9a;
}

    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate > div:before, #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate > div:after,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service > div:before,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service > div:after,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking > div:before,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking > div:after,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking > div:before,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking > div:after {
        display: table;
        content: " ";
    }

    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate > div:after,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service > div:after,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking > div:after,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking > div:after {
        clear: both;
    }

    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate > div + div,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service > div + div,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking > div + div,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking > div + div {
        margin-top: 8px;
    }

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking {
        padding: 16px 12px;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking {
        padding: 16px;
    }
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .desc,
#overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .desc,
#overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking .desc,
#overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking .desc {
    float: left;
    max-width: 50%;
    padding-top: 4px;
    font-size: 0.75rem;
    line-height: 1.25;
}

    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .desc i, #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .desc .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .desc .caret,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .desc i,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .desc .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .desc .caret,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking .desc i,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking .desc .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking .desc .caret,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking .desc i,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking .desc .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking .desc .caret {
        font-size: 16px;
    }

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .desc,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .desc,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking .desc,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking .desc {
        padding-top: 1px;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .desc,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .desc,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking .desc,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking .desc {
        padding-top: 4px;
    }
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .value,
#overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .value,
#overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking .value,
#overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking .value {
    float: right;
    max-width: 50%;
    font-size: 1rem;
    text-align: right;
}

    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .value small,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .value small,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking .value small,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking .value small {
        font-size: 0.75rem;
    }

    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .value span,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .value span,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking .value span,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking .value span {
        font-size: 1.125rem;
    }

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .value,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .value,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking .value,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking .value {
        font-size: 0.875rem;
    }

        #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .value span,
        #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .value span,
        #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking .value span,
        #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking .value span {
            font-size: 1rem;
        }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .value,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .value,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking .value,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking .value {
        font-size: 1rem;
    }

        #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .value span,
        #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .value span,
        #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking .value span,
        #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking .value span {
            font-size: 1.125rem;
        }
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate i, #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .caret,
#overview .bx-overview .trip-overview .overview-wrapper .overview-price-service i,
#overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .caret,
#overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking i,
#overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking .caret,
#overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking i,
#overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking .caret {
    font-size: 16px;
    color: #9a9a9a;
    vertical-align: text-bottom;
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .tax .desc, #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .convenience-fee .desc {
    max-width: none;
    padding-top: 0;
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .tax .value, #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .convenience-fee .value {
    max-width: none;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .tax .value, #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .convenience-fee .value {
        padding-top: 2px;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .tax .value, #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .convenience-fee .value {
        padding-top: 0;
    }
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .convenience-fee a {
    color: inherit;
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .convenience-fee .convenience-info {
    display: none;
    position: relative;
    background: #e0e0e0;
    padding: 8px;
    font-size: 0.75rem;
    margin-top: 4px;
    cursor: pointer;
}

    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .convenience-fee .convenience-info label {
        line-height: 1.25;
        color: #808080;
        margin-bottom: 0;
        cursor: pointer;
    }

        #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .convenience-fee .convenience-info label a {
            text-decoration: underline;
        }

    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-rate .convenience-fee .convenience-info:after {
        bottom: 100%;
        left: 129px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(7, 9, 10, 0);
        border-bottom-color: #e0e0e0;
        border-width: 5px;
        margin-left: -5px;
    }

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-service {
    padding: 12px 16px 16px;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service {
        padding: 8px 12px;
    }
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra + .extra {
    border-top: 1px dashed #e0e0e0;
    padding-top: 8px;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra + .extra {
        padding-top: 4px;
        margin-top: 4px;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra + .extra {
        padding-top: 8px;
        margin-top: 8px;
    }
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra.baggage .desc {
    max-width: 60%;
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra.baggage .value {
    max-width: 40%;
}

    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra.baggage .value.points {
        display: none;
    }

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra.baggage.-points .value {
    display: none;
}

    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra.baggage.-points .value.points {
        display: block;
    }

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra .desc {
    position: relative;
    padding-top: 0;
    max-width: 60%;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra .desc {
        padding-top: 4px;
        max-width: 50%;
    }
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra .desc .icon-close {
    position: absolute;
    top: 50%;
    left: -4px;
    margin-top: -10px;
    display: block;
    width: 16px;
    height: 16px;
    font-size: 16px;
    cursor: pointer;
}

    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra .desc .icon-close:hover {
        color: #737373;
    }

    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra .desc .icon-close:active {
        color: #676767;
    }

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra .desc .icon-close {
        margin-top: -8px;
    }
}

@media all and (min-width: 768px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra .desc .icon-close {
        left: -8px;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra .desc .icon-close {
        left: -4px;
    }
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra .desc span {
    display: inline-block;
    padding-left: 20px;
    line-height: 1.5;
}

@media all and (min-width: 768px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra .desc span {
        padding-left: 12px;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra .desc span {
        padding-left: 20px;
    }
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra .value {
    max-width: 40%;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra .value {
        padding-top: 6px;
        max-width: 50%;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra .value {
        padding-top: 3px;
    }
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra.promocode .desc span, #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra.voucher .desc span, #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra.creditosazul .desc span, #overview .bx-overview .trip-overview .overview-wrapper .overview-price-service .extra.voucher-promo .desc span {
    margin-left: 20px;
    margin-top: 3px;
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking,
#overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking {
    background: #e6e6e6;
}

    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking .desc,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking .desc {
        max-width: 60%;
        padding-top: 2px;
    }

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking .desc,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking .desc {
        padding-top: 1px;
    }
}

@media all and (min-width: 768px) {
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking .desc,
    #overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking .desc {
        padding-top: 2px;
    }
}

#overview .bx-overview .trip-overview .overview-wrapper .overview-price-prevbooking .prev-value .value,
#overview .bx-overview .trip-overview .overview-wrapper .overview-price-cancelbooking .prev-value .value {
    color: #026cb6;
}

#overview .bx-overview .trip-overview .overview-price {
    background-color: #026cb6;
    position: fixed;
    bottom: 0;
    width: 100%;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-price {
        position: relative;
    }
}

#overview .bx-overview .trip-overview .overview-price .overview-price-rs {
    display: block;
}

#overview .bx-overview .trip-overview .overview-price .overview-price-points {
    display: none;
}

#overview .bx-overview .trip-overview .overview-price .total {
    padding: 8px 16px;
    height: 40px;
}

    #overview .bx-overview .trip-overview .overview-price .total:before, #overview .bx-overview .trip-overview .overview-price .total:after {
        display: table;
        content: " ";
    }

    #overview .bx-overview .trip-overview .overview-price .total:after {
        clear: both;
    }

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-price .total {
        padding: 12px;
        height: auto;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .trip-overview .overview-price .total {
        padding: 16px;
    }
}

#overview .bx-overview .trip-overview .overview-price .total .desc {
    float: left;
    padding-top: 8px;
    font-size: 0.875rem;
    font-weight: 300;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-price .total .desc {
        padding-top: 9px;
        font-size: 0.75rem;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .trip-overview .overview-price .total .desc {
        padding-top: 8px;
        font-size: 0.875rem;
    }
}

#overview .bx-overview .trip-overview .overview-price .total .value {
    float: right;
    padding-top: 4px;
    font-weight: 300;
    line-height: 1.25rem;
}

    #overview .bx-overview .trip-overview .overview-price .total .value small {
        font-size: 0.75rem;
    }

    #overview .bx-overview .trip-overview .overview-price .total .value span {
        font-size: 1.25rem;
    }

@media all and (min-width: 992px) {
    #overview .bx-overview .trip-overview .overview-price .total .value {
        padding-top: 4px;
        font-size: 1em;
        font-weight: 200;
        line-height: 1.125em;
    }

        #overview .bx-overview .trip-overview .overview-price .total .value small {
            font-size: 0.75em;
        }

        #overview .bx-overview .trip-overview .overview-price .total .value span {
            font-size: 1.5em;
        }
}

#overview .bx-overview .trip-overview .overview-price .total.total-saved-points {
    height: auto;
    padding: 0 16px 8px;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-price .total.total-saved-points {
        padding: 0 12px 12px;
    }
}

@media all and (min-width: 992px) {
    #overview .bx-overview .trip-overview .overview-price .total.total-saved-points {
        padding: 0 16px 16px;
    }
}

#overview .bx-overview .trip-overview .overview-price .total.total-saved-points .desc, #overview .bx-overview .trip-overview .overview-price .total.total-saved-points .value {
    color: rgba(255, 255, 255, 0.7);
}

#overview .bx-overview .trip-overview .overview-price .total.total-taxes {
    border-top: 1px solid #13b5ea;
    background-color: rgba(255, 255, 255, 0.1);
}

#overview .bx-overview .trip-overview .overview-price .installments {
    height: 56px;
    padding: 12px 16px 8px;
    font-weight: 300;
    color: white;
    border-top: 1px solid #13b5ea;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: right;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-price .installments {
        height: 64px;
        padding: 16px 16px 8px;
        font-size: 1em;
        font-weight: 300;
        line-height: 1em;
    }
}

#overview .bx-overview .trip-overview .overview-price .installments .installment {
    font-size: 1rem;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-price .installments .installment {
        font-size: 1.25em;
    }
}

#overview .bx-overview .trip-overview .overview-price .installments .value {
    font-size: 1rem;
}

    #overview .bx-overview .trip-overview .overview-price .installments .value small {
        font-size: 0.75rem;
    }

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-price .installments .value {
        font-size: 1.25em;
    }

        #overview .bx-overview .trip-overview .overview-price .installments .value small {
            font-size: 0.7em;
        }
}

#overview .bx-overview .trip-overview .overview-price .installments .desc, #overview .bx-overview .trip-overview .overview-price .installments .value-desc {
    font-size: 0.75rem;
}

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-price .installments .desc {
        font-size: 0.6875em;
    }

    #overview .bx-overview .trip-overview .overview-price .installments .value-desc {
        font-size: 0.6875em;
    }
}

#overview .bx-overview .trip-overview .overview-next .btn-next {
    position: relative;
    width: 100%;
    height: 40px;
    padding: 4px 16px 2px;
    font-size: 1em;
    font-weight: 300;
    line-height: 1;
    color: white;
    border: 0 none;
    cursor: pointer;
    text-align: left;
    letter-spacing: 0.25px;
}

    #overview .bx-overview .trip-overview .overview-next .btn-next i, #overview .bx-overview .trip-overview .overview-next .btn-next .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #overview .bx-overview .trip-overview .overview-next .btn-next .caret {
        display: block;
        position: absolute;
        top: 50%;
        right: 8px;
        width: 16px;
        height: 16px;
        margin-top: -8px;
        font-size: 16px;
    }

#overview .bx-overview .trip-overview {
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

    #overview .bx-overview .trip-overview .overview-price-service,
    #overview .bx-overview .trip-overview .overview-price-prevbooking,
    #overview .bx-overview .trip-overview .overview-price-cancelbooking,
    #overview .bx-overview .trip-overview .overview-price {
        position: fixed;
    }

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-price-service,
    #overview .bx-overview .trip-overview .overview-price-prevbooking,
    #overview .bx-overview .trip-overview .overview-price-cancelbooking,
    #overview .bx-overview .trip-overview .overview-price {
        position: relative;
        transition: top 0.5s ease;
    }
}

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-flight {
        top: -40px;
        position: relative;
        transition: top 0.5s ease;
    }
}

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-price-rate {
        top: -80px;
        position: relative;
        transition: top 0.5s ease;
    }
}

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-price-service,
    #overview .bx-overview .trip-overview .overview-price-prevbooking,
    #overview .bx-overview .trip-overview .overview-price-cancelbooking {
        top: -100px;
    }
}

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview .overview-price {
        top: -120px;
    }
}

#overview .bx-overview .trip-overview.active {
    visibility: visible;
    opacity: 1;
}

    #overview .bx-overview .trip-overview.active .overview-flight,
    #overview .bx-overview .trip-overview.active .overview-price-rate,
    #overview .bx-overview .trip-overview.active .overview-price-service,
    #overview .bx-overview .trip-overview.active .overview-price-prevbooking,
    #overview .bx-overview .trip-overview.active .overview-price-cancelbooking,
    #overview .bx-overview .trip-overview.active .overview-price {
        bottom: 0;
    }

@media all and (min-width: 576px) {
    #overview .bx-overview .trip-overview.active .overview-flight,
    #overview .bx-overview .trip-overview.active .overview-price-rate,
    #overview .bx-overview .trip-overview.active .overview-price-service,
    #overview .bx-overview .trip-overview.active .overview-price-prevbooking,
    #overview .bx-overview .trip-overview.active .overview-price-cancelbooking,
    #overview .bx-overview .trip-overview.active .overview-price {
        top: 0;
    }
}

#overview .bx-overview.-points .trip-overview .overview-price .overview-price-rs {
    display: none;
}

#overview .bx-overview.-points .trip-overview .overview-price .overview-price-points {
    display: block;
}

.modal-open #overview.fixed {
    padding-right: 15px;
}

    .modal-open #overview.fixed #steps {
        padding-right: 15px;
    }

#modal-convenience-info .modal-body small {
    line-height: 20px;
    display: block;
    margin-bottom: 10px;
}

#modal-convenience-info .modal-body .fee-table {
    display: block;
    margin: 10px 0;
    color: #026cb6;
}

#modal-convenience-info .modal-footer {
    text-align: left;
    color: #026cb6;
    font-size: 14px;
    line-height: 19px;
}

    #modal-convenience-info .modal-footer img {
        margin-top: 7px;
    }

    #modal-convenience-info .modal-footer label {
        color: #041e42;
        font-size: 14px;
        margin-bottom: 4px;
    }

    #modal-convenience-info .modal-footer .btn {
        margin-top: 4px;
    }

    #modal-convenience-info .modal-footer input {
        margin-top: -4px;
    }

#modal-fee-table {
    position: absolute;
    height: 130vh;
}

    #modal-fee-table .table-responsive {
        display: block;
        width: 100%;
        overflow-x: hidden;
    }

@media screen and (max-width: 991px) {
    #modal-fee-table .table-responsive {
        overflow-x: scroll;
    }
}

#modal-fee-table table {
    border: 1px solid silver;
    margin-bottom: 10px;
    width: 100%;
}

    #modal-fee-table table thead {
        background: #e6e6e6;
        text-align: center;
    }

        #modal-fee-table table thead th {
            padding: 15px 0px;
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 0.05em;
        }

    #modal-fee-table table tbody tr.subheading td {
        font-weight: bold;
        font-size: 11px;
        padding: 5px;
    }

    #modal-fee-table table tbody tr td {
        width: 6%;
        font-size: 12px;
        line-height: 14px;
        font-weight: 300;
        text-align: center;
        vertical-align: middle;
        padding: 10px;
        border: 1px solid silver;
    }

        #modal-fee-table table tbody tr td.gray {
            background: #e0e0e0;
        }

#modal-register-ta .form-group {
    width: 100%;
}

.panel {
    border-radius: 2px;
}

    .panel .panel-body {
        padding: 8px;
    }

        .panel .panel-body:before, .panel .panel-body:after {
            display: table;
            content: " ";
        }

        .panel .panel-body:after {
            clear: both;
        }

@media all and (min-width: 576px) {
    .panel .panel-body {
        padding: 15px;
    }
}

.panel .panel-body form {
    margin-top: 24px;
}

.panel .panel-heading, .panel .panel-footer {
    padding: 14px 8px 12px;
}

    .panel .panel-heading:before, .panel .panel-heading:after, .panel .panel-footer:before, .panel .panel-footer:after {
        display: table;
        content: " ";
    }

    .panel .panel-heading:after, .panel .panel-footer:after {
        clear: both;
    }

@media all and (min-width: 768px) {
    .panel .panel-heading, .panel .panel-footer {
        padding: 16px;
    }
}

.panel.panel-default {
    border: 1px solid #9a9a9a;
}

    .panel.panel-default .panel-heading, .panel.panel-default .panel-footer {
        background: #e0e0e0;
    }

    .panel.panel-default .panel-heading {
        border-bottom: 1px solid #9a9a9a;
    }

    .panel.panel-default .panel-footer {
        border-top: 1px solid #9a9a9a;
    }

        .panel.panel-default .panel-footer .form-group label {
            font-size: .875em;
        }

        .panel.panel-default .panel-footer .form-group .datepicker {
            padding: 0;
        }

        .panel.panel-default .panel-footer .row.form h3 {
            font-weight: 300;
            font-size: 24px;
            line-height: 48px;
            color: #026cb6;
        }

            .panel.panel-default .panel-footer .row.form h3 small {
                font-size: 16px;
            }

.panel.panel-no-flight {
    border: 1px dashed #9a9a9a;
    text-align: center;
}

    .panel.panel-no-flight p {
        font-size: 18px;
        font-weight: 300;
        color: #9a9a9a;
        line-height: 80px;
    }

.panel.panel-booking, .panel.panel-booking-details {
    border: 1px solid #9a9a9a;
    margin-bottom: 16px;
    background: white;
}

    .panel.panel-booking > .panel-heading, .panel.panel-booking-details > .panel-heading {
        padding: 4px 16px 0;
    }

        .panel.panel-booking > .panel-heading .booking-header, .panel.panel-booking-details > .panel-heading .booking-header {
            border-bottom: 1px solid #e0e0e0;
        }

            .panel.panel-booking > .panel-heading .booking-header h2, .panel.panel-booking-details > .panel-heading .booking-header h2 {
                font-size: 20px;
                line-height: 48px;
            }

            .panel.panel-booking > .panel-heading .booking-header .booking-actions, .panel.panel-booking-details > .panel-heading .booking-header .booking-actions {
                padding-top: 6px;
            }

                .panel.panel-booking > .panel-heading .booking-header .booking-actions .btn, .panel.panel-booking-details > .panel-heading .booking-header .booking-actions .btn {
                    height: 32px;
                    margin-left: 8px;
                }

@media screen and (max-width: 991px) {
    .panel.panel-booking > .panel-heading .booking-header .booking-actions, .panel.panel-booking-details > .panel-heading .booking-header .booking-actions {
        text-align: left;
        padding-top: 0;
    }

        .panel.panel-booking > .panel-heading .booking-header .booking-actions .btn, .panel.panel-booking-details > .panel-heading .booking-header .booking-actions .btn {
            margin: 0 8px 12px 0;
        }
}

.panel.panel-booking .panel-body .booking-summary, .panel.panel-booking-details .panel-body .booking-summary {
    margin-bottom: 0;
}

.panel.panel-booking .panel-body .booking-primary-actions, .panel.panel-booking-details .panel-body .booking-primary-actions {
    padding-top: 24px;
}

    .panel.panel-booking .panel-body .booking-primary-actions .btn, .panel.panel-booking-details .panel-body .booking-primary-actions .btn {
        height: 32px;
        margin-left: 8px;
        padding: 4px 24px;
        font-size: 14px;
        font-weight: 300;
        line-height: 26px;
    }

@media screen and (max-width: 991px) {
    .panel.panel-booking .panel-body .booking-primary-actions, .panel.panel-booking-details .panel-body .booking-primary-actions {
        padding-top: 8px;
        text-align: left;
    }

        .panel.panel-booking .panel-body .booking-primary-actions .btn, .panel.panel-booking-details .panel-body .booking-primary-actions .btn {
            margin-left: 0;
            margin-right: 8px;
        }
}

.panel.panel-booking .panel-body .booking-itinerary, .panel.panel-booking-details .panel-body .booking-itinerary {
    margin-top: 16px;
}

.panel.panel-booking .panel-footer, .panel.panel-booking-details .panel-footer {
    border-top: 1px solid #9a9a9a;
}

    .panel.panel-booking .panel-footer .form-group label, .panel.panel-booking-details .panel-footer .form-group label {
        font-size: .875em;
    }

    .panel.panel-booking .panel-footer .form-group .datepicker, .panel.panel-booking-details .panel-footer .form-group .datepicker {
        padding: 0;
    }

    .panel.panel-booking .panel-footer .row.form h3, .panel.panel-booking-details .panel-footer .row.form h3 {
        font-weight: 300;
        font-size: 24px;
        line-height: 48px;
        color: #026cb6;
    }

        .panel.panel-booking .panel-footer .row.form h3 small, .panel.panel-booking-details .panel-footer .row.form h3 small {
            font-size: 16px;
        }

.panel.panel-booking .booking-status, .panel.panel-booking-details .booking-status {
    margin: 8px 0;
    padding: 8px;
    border-radius: 4px;
}

    .panel.panel-booking .booking-status.status-onhold, .panel.panel-booking-details .booking-status.status-onhold, .panel.panel-booking .booking-status.status-declined, .panel.panel-booking-details .booking-status.status-declined {
        background: #FDE1DE;
        color: #AE2057;
    }

    .panel.panel-booking .booking-status.status-success, .panel.panel-booking-details .booking-status.status-success {
        background: #DEF1DB;
        color: #379105;
    }

        .panel.panel-booking .booking-status.status-success .btn#btn-print-confirmation, .panel.panel-booking-details .booking-status.status-success .btn#btn-print-confirmation {
            margin-left: 8px;
        }

    .panel.panel-booking .booking-status .message, .panel.panel-booking-details .booking-status .message {
        position: relative;
        padding-left: 40px;
    }

        .panel.panel-booking .booking-status .message.-no-padding, .panel.panel-booking-details .booking-status .message.-no-padding {
            padding-left: 0;
        }

        .panel.panel-booking .booking-status .message > .btn, .panel.panel-booking-details .booking-status .message > .btn {
            height: 32px;
            margin: 8px 0;
            padding: 4px 24px;
            font-size: 14px;
            font-weight: 300;
            line-height: 26px;
        }

    .panel.panel-booking .booking-status i, .panel.panel-booking-details .booking-status i, .panel.panel-booking .booking-status .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .panel.panel-booking .booking-status .caret, .panel.panel-booking-details .booking-status .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .panel.panel-booking-details .booking-status .caret {
        position: absolute;
        top: -2px;
        left: 0px;
        font-size: 28px;
    }

    .panel.panel-booking .booking-status.status-success .message, .panel.panel-booking-details .booking-status.status-success .message {
        padding: 2px 0 0 32px;
    }

    .panel.panel-booking .booking-status.status-success i, .panel.panel-booking-details .booking-status.status-success i, .panel.panel-booking .booking-status.status-success .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .panel.panel-booking .booking-status.status-success .caret, .panel.panel-booking-details .booking-status.status-success .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .panel.panel-booking-details .booking-status.status-success .caret {
        top: 2px;
        left: 0px;
        font-size: 24px;
    }

    .panel.panel-booking .booking-status p, .panel.panel-booking-details .booking-status p {
        font-size: 18px;
        font-weight: 300;
        line-height: 28px;
    }

        .panel.panel-booking .booking-status p.obs, .panel.panel-booking-details .booking-status p.obs {
            font-size: 12px;
            font-weight: 400;
            line-height: 16px;
        }

@media screen and (max-width: 991px) {
    .panel.panel-booking .booking-status, .panel.panel-booking-details .booking-status {
        margin: 0 -4px;
    }
}

.panel.panel-booking-details {
    border: 1px solid transparent;
    top: -52px;
}

    .panel.panel-booking-details .details-header {
        height: 48px;
        padding: 8px 16px;
        margin: -4px -16px 8px;
        border-radius: 2px 2px 0px 0px;
        background: #e6e6e6;
    }

        .panel.panel-booking-details .details-header p {
            font-size: 20px;
            font-weight: 300;
            line-height: 34px;
            color: #041e42;
        }

        .panel.panel-booking-details .details-header a.btn-close-modal {
            display: block;
            width: 32px;
            height: 32px;
            padding: 4px;
            margin-right: -8px;
        }

            .panel.panel-booking-details .details-header a.btn-close-modal i, .panel.panel-booking-details .details-header a.btn-close-modal .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .panel.panel-booking-details .details-header a.btn-close-modal .caret {
                font-size: 24px;
                color: #9a9a9a;
            }

            .panel.panel-booking-details .details-header a.btn-close-modal:hover i, .panel.panel-booking-details .details-header a.btn-close-modal:hover .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .panel.panel-booking-details .details-header a.btn-close-modal:hover .caret {
                color: gray;
            }

    .panel.panel-booking-details .booking-itinerary {
        display: none;
    }

.panel.panel-booking-history .panel-default {
    background: white;
}

.panel.panel-booking-history .panel-heading h2 {
    color: #606060;
}

.panel.panel-booking-history .panel-body .booking-summary p {
    color: #808080;
}

.panel.panel-booking-history .panel-body .booking-itinerary .flight-info .flight-details .flight-num {
    color: #808080;
}

.panel.panel-booking-history .panel.collapse-panel .collapse-heading p, .panel.panel-booking-history .panel.collapse-toggle-panel .collapse-heading p, .panel.panel-booking-history .panel.collapse-toggle-panel .collapse-heading p {
    color: #808080;
}

.panel.panel-booking-history.booking-disabled {
    background: #e6e6e6;
}

    .panel.panel-booking-history.booking-disabled .booking-actions h3 {
        line-height: 36px;
        text-transform: uppercase;
        color: #808080;
    }

.panel.radio-panel .panel-heading, .panel.checkbox-panel .panel-heading {
    padding: 0;
    font-weight: 300;
    line-height: 20px;
    color: #808080;
    background: white;
    cursor: pointer;
    transition: background 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

    .panel.radio-panel .panel-heading:hover, .panel.checkbox-panel .panel-heading:hover {
        background: #e6e6e6;
    }

        .panel.radio-panel .panel-heading:hover .radio label, .panel.radio-panel .panel-heading:hover .checkbox label, .panel.checkbox-panel .panel-heading:hover .radio label, .panel.checkbox-panel .panel-heading:hover .checkbox label {
            color: #808080;
        }

    .panel.radio-panel .panel-heading .radio, .panel.radio-panel .panel-heading .checkbox, .panel.checkbox-panel .panel-heading .radio, .panel.checkbox-panel .panel-heading .checkbox {
        height: auto;
        margin: 0;
        padding: 0;
        border: 0;
    }

        .panel.radio-panel .panel-heading .radio label, .panel.radio-panel .panel-heading .checkbox label, .panel.checkbox-panel .panel-heading .radio label, .panel.checkbox-panel .panel-heading .checkbox label {
            padding: 14px 16px 14px 40px;
        }

            .panel.radio-panel .panel-heading .radio label::before, .panel.radio-panel .panel-heading .checkbox label::before, .panel.checkbox-panel .panel-heading .radio label::before, .panel.checkbox-panel .panel-heading .checkbox label::before {
                top: 11px;
                left: 16px;
            }

        .panel.radio-panel .panel-heading .radio input, .panel.radio-panel .panel-heading .checkbox input, .panel.checkbox-panel .panel-heading .radio input, .panel.checkbox-panel .panel-heading .checkbox input {
            top: 12px;
            left: 20px;
        }

        .panel.radio-panel .panel-heading .checkbox label, .panel.checkbox-panel .panel-heading .checkbox label {
            color: #808080;
        }

.panel.radio-panel .panel-body p, .panel.checkbox-panel .panel-body p {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #808080;
}

.panel.radio-panel.active, .panel.checkbox-panel.active {
    border: 1px solid #9a9a9a;
}

    .panel.radio-panel.active .panel-heading, .panel.checkbox-panel.active .panel-heading {
        color: #026cb6;
        border-color: #026cb6;
        background: #e6e6e6;
    }

        .panel.radio-panel.active .panel-heading:hover .radio label, .panel.checkbox-panel.active .panel-heading:hover .radio label {
            color: #026cb6;
        }

.panel.checkbox-toggle-panel .panel-body .content {
    display: block;
    -webkit-animation-name: fadeOutFromBlock;
    -moz-animation-name: fadeOutFromBlock;
    animation-name: fadeOutFromBlock;
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-timing-function: ease;
    -moz-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-delay: 0;
    -moz-animation-delay: 0;
    animation-delay: 0;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    /* this prevents the animation from restarting! */
    -moz-animation-fill-mode: forwards;
    /* this prevents the animation from restarting! */
    animation-fill-mode: forwards;
    /* this prevents the animation from restarting! */
    -webkit-animation-name: fadeInFromNone;
    -moz-animation-name: fadeInFromNone;
    animation-name: fadeInFromNone;
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-timing-function: ease;
    -moz-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-delay: 0;
    -moz-animation-delay: 0;
    animation-delay: 0;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    /* this prevents the animation from restarting! */
    -moz-animation-fill-mode: forwards;
    /* this prevents the animation from restarting! */
    animation-fill-mode: forwards;
    /* this prevents the animation from restarting! */
}

.panel.checkbox-toggle-panel .panel-body .content-checked {
    display: none;
    -webkit-animation-name: fadeOutFromBlock;
    -moz-animation-name: fadeOutFromBlock;
    animation-name: fadeOutFromBlock;
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-timing-function: ease;
    -moz-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-delay: 0;
    -moz-animation-delay: 0;
    animation-delay: 0;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    /* this prevents the animation from restarting! */
    -moz-animation-fill-mode: forwards;
    /* this prevents the animation from restarting! */
    animation-fill-mode: forwards;
    /* this prevents the animation from restarting! */
    -webkit-animation-name: fadeInFromNone;
    -moz-animation-name: fadeInFromNone;
    animation-name: fadeInFromNone;
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-timing-function: ease;
    -moz-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-delay: 0;
    -moz-animation-delay: 0;
    animation-delay: 0;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    /* this prevents the animation from restarting! */
    -moz-animation-fill-mode: forwards;
    /* this prevents the animation from restarting! */
    animation-fill-mode: forwards;
    /* this prevents the animation from restarting! */
}

.panel.checkbox-panel.active .panel-heading .checkbox label {
    color: #026cb6;
}

.panel.checkbox-panel.active.checkbox-toggle-panel .panel-body .content {
    display: none;
}

.panel.checkbox-panel.active.checkbox-toggle-panel .panel-body .content-checked {
    display: block;
}

.panel.collapse-panel, .panel.collapse-toggle-panel {
    border: 1px solid #9a9a9a;
    cursor: pointer;
}

    .panel.collapse-panel.open .collapse-heading, .panel.open.collapse-toggle-panel .collapse-heading {
        border-bottom: 1px solid #9a9a9a;
    }

    .panel.collapse-panel .collapse-heading, .panel.collapse-toggle-panel .collapse-heading {
        min-height: 48px;
        height: auto;
        padding: 12px 15px 8px;
        transition: background 0.15s ease-in-out;
    }

        .panel.collapse-panel .collapse-heading i, .panel.collapse-toggle-panel .collapse-heading i, .panel.collapse-panel .collapse-heading .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .panel.collapse-panel .collapse-heading .caret, .panel.collapse-toggle-panel .collapse-heading .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .panel.collapse-toggle-panel .collapse-heading .caret {
            position: relative;
            top: 4px;
            font-size: 24px;
            margin: 0 4px 0 -4px;
            line-height: 14px;
            margin-left: -32px;
        }

        .panel.collapse-panel .collapse-heading p, .panel.collapse-toggle-panel .collapse-heading p {
            font-size: 16px;
            font-weight: 300;
            line-height: 28px;
            color: #026cb6;
            padding-left: 28px;
        }

        .panel.collapse-panel .collapse-heading:hover, .panel.collapse-toggle-panel .collapse-heading:hover {
            background: #e6e6e6;
        }

    .panel.collapse-panel .collapse-body, .panel.collapse-toggle-panel .collapse-body {
        display: none;
        cursor: default;
    }

.panel.collapse-toggle-panel {
    cursor: default;
}

    .panel.collapse-toggle-panel .collapse-toggle-heading {
        height: 48px;
        padding: 12px 15px 8px;
    }

        .panel.collapse-toggle-panel .collapse-toggle-heading p {
            margin-top: 8px;
            font-size: 16px;
            font-weight: 300;
            line-height: 1.25;
            color: #026cb6;
        }

        .panel.collapse-toggle-panel .collapse-toggle-heading:hover {
            background: white;
        }

        .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle {
            margin: -12px -16px -8px 0;
            height: 48px;
        }

            .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li {
                float: left;
                height: 100%;
                margin-left: -1px;
                padding: 0px;
                border: 1px solid #9a9a9a;
                border-top: none;
                border-bottom: none;
                cursor: pointer;
            }

                .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a {
                    display: block;
                    position: relative;
                    height: 100%;
                    padding: 8px 12px;
                    font-size: 14px;
                    font-weight: 300;
                    line-height: 1.5em;
                    color: #026cb6;
                    text-align: center;
                    transition: background 0.15s ease-in-out;
                }

@media all and (min-width: 576px) {
    .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a {
        line-height: 48px;
        padding: 0px 12px;
    }
}

.panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a i, .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a .caret {
    display: none;
}

.panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a:hover, .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a.active {
    background: #e6e6e6;
}

.panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a.selected {
    background: white;
    color: #026cb6;
}

@media all and (min-width: 1200px) {
    .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a.selected {
        line-height: 28px;
    }
}

.panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a.selected i, .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a.selected .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a.selected .caret {
    position: absolute;
    left: 16px;
    bottom: 16px;
    font-size: 16px;
    margin-left: -8px;
    color: #026cb6;
}

@media all and (min-width: 576px) {
    .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a.selected i, .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a.selected .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a.selected .caret {
        display: block;
    }
}

@media all and (min-width: 1200px) {
    .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a.selected i, .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a.selected .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a.selected .caret {
        left: 50%;
        bottom: 6px;
    }
}

.panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a.selected.active {
    background: #026cb6;
    color: white;
}

    .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a.selected.active i, .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a.selected.active .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a.selected.active .caret {
        color: white;
    }

    .panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a.selected.active:hover {
        background: #014e84;
    }

.panel.collapse-toggle-panel .collapse-toggle-heading .extras-toggle li > a.selected:hover {
    background: #e6e6e6;
}

.panel.collapse-toggle-panel .collapse-toggle-body {
    display: none;
    padding: 8px;
}

    .panel.collapse-toggle-panel .collapse-toggle-body #banner-club {
        margin-bottom: 0;
    }

.panel.collapse-toggle-panel.open .collapse-toggle-heading {
    border-bottom: 1px solid #9a9a9a;
    height: 49px;
}

.overview-steps {
    position: inherit;
    width: 100%;
    height: 32px;
    background-color: #e6e6e6;
    border-bottom: 1px solid #9a9a9a;
}

@media all and (min-width: 768px) {
    .overview-steps {
        height: 40px;
    }
}

.overview-steps ul {
    position: relative;
    font-size: 0.75rem;
}

    .overview-steps ul li.step {
        display: none;
        float: left;
        height: 32px;
        line-height: 31px;
        color: #9a9a9a;
    }

        .overview-steps ul li.step .mobile-step {
            font-weight: normal;
            padding-right: 8px;
            margin-right: 8px;
            border-right: 1px solid #808080;
        }

        .overview-steps ul li.step i, .overview-steps ul li.step .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .overview-steps ul li.step .caret {
            display: none;
        }

        .overview-steps ul li.step.visited {
            color: #606060;
        }

        .overview-steps ul li.step.active {
            display: block;
            font-weight: 500;
            line-height: 31px;
            color: #606060;
        }

@media all and (min-width: 768px) {
    .overview-steps ul li.step.active {
        line-height: 40px;
    }
}

@media all and (min-width: 768px) {
    .overview-steps ul li.step {
        display: block;
        height: 40px;
        line-height: 39px;
        padding: 0 8px 0 0;
    }

        .overview-steps ul li.step i, .overview-steps ul li.step .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle .overview-steps ul li.step .caret {
            display: inline-block;
            position: relative;
            top: 3px;
            font-size: 16px;
            margin-right: 8px;
        }

        .overview-steps ul li.step .mobile-step {
            display: none;
        }

        .overview-steps ul li.step.visited, .overview-steps ul li.step.active {
            border-bottom: 4px solid #00b8e6;
        }
}

.has-tooltip {
    cursor: default;
}

a.has-tooltip {
    cursor: pointer;
}

.az-tooltip {
    display: none;
    position: absolute;
    z-index: 998;
    padding: 12px 16px;
    font-size: 12px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 2px;
    box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.3);
}

#tip-taxes, #tip-fuel {
    color: #808080;
    background: #ebebeb;
    z-index: 999;
}

    #tip-taxes .title, #tip-fuel .title {
        margin: 12px 0 4px;
        padding-bottom: 4px;
        border-bottom: 1px solid #9a9a9a;
    }

        #tip-taxes .title:first-child, #tip-fuel .title:first-child {
            margin-top: 0;
        }

    #tip-taxes .tax, #tip-taxes .service, #tip-fuel .tax, #tip-fuel .service {
        line-height: 16px;
    }

        #tip-taxes .tax:before, #tip-taxes .tax:after, #tip-taxes .service:before, #tip-taxes .service:after, #tip-fuel .tax:before, #tip-fuel .tax:after, #tip-fuel .service:before, #tip-fuel .service:after {
            display: table;
            content: " ";
        }

        #tip-taxes .tax:after, #tip-taxes .service:after, #tip-fuel .tax:after, #tip-fuel .service:after {
            clear: both;
        }

        #tip-taxes .tax .desc, #tip-taxes .service .desc, #tip-fuel .tax .desc, #tip-fuel .service .desc {
            float: left;
            margin-right: 16px;
            font-size: 10px;
        }

        #tip-taxes .tax .value, #tip-taxes .service .value, #tip-fuel .tax .value, #tip-fuel .service .value {
            float: right;
        }

            #tip-taxes .tax .value small, #tip-taxes .service .value small, #tip-fuel .tax .value small, #tip-fuel .service .value small {
                font-size: 10px;
            }

#tip-skytv,
#tip-azul-play {
    width: 420px;
}

    #tip-skytv .spn,
    #tip-azul-play .spn {
        display: block;
        float: left;
        width: 114px;
        height: 44px;
        margin: -4px 16px 0 -12px;
        background-position: center;
        background-repeat: no-repeat;
    }

        #tip-skytv .spn.-azul-play,
        #tip-azul-play .spn.-azul-play {
            background-image: url("img/logo-azul-play.png");
        }

        #tip-skytv .spn.-skytv,
        #tip-azul-play .spn.-skytv {
            background-image: url("img/tv-ao-vivo-sky.png");
        }

    #tip-skytv .tv-content,
    #tip-azul-play .tv-content {
        float: left;
        width: 256px;
        font-size: 12px;
        font-weight: 400;
        line-height: 14px;
        color: #808080;
    }

        #tip-skytv .tv-content ul li,
        #tip-azul-play .tv-content ul li {
            font-size: 11px;
            list-style-type: disc;
            margin-top: 10px;
        }

        #tip-skytv .tv-content #equipment,
        #tip-azul-play .tv-content #equipment {
            font-size: 10px;
        }

#tip-upgrade-promo-plus {
    width: 163px;
}

#tip-promo-flex, #tip-azul-single, #tip-mais-azul-single {
    width: auto;
    padding: 4px 8px;
}

    #tip-promo-flex .tooltip-title, #tip-azul-single .tooltip-title, #tip-mais-azul-single .tooltip-title {
        width: 100%;
        margin: 4px 0 6px 0;
        font-size: 20px;
        font-weight: 300;
    }

        #tip-promo-flex .tooltip-title img, #tip-azul-single .tooltip-title img, #tip-mais-azul-single .tooltip-title img {
            position: relative;
            top: 1px;
        }

        #tip-promo-flex .tooltip-title.-azul, #tip-azul-single .tooltip-title.-azul, #tip-mais-azul-single .tooltip-title.-azul {
            color: #026cb6;
        }

        #tip-promo-flex .tooltip-title.-maisazul, #tip-azul-single .tooltip-title.-maisazul, #tip-mais-azul-single .tooltip-title.-maisazul {
            color: #041e42;
        }

    #tip-promo-flex .tbl-promo-flex, #tip-azul-single .tbl-promo-flex, #tip-mais-azul-single .tbl-promo-flex {
        background-color: transparent;
    }

        #tip-promo-flex .tbl-promo-flex td, #tip-azul-single .tbl-promo-flex td, #tip-mais-azul-single .tbl-promo-flex td {
            padding: 8px;
            line-height: 16px;
            color: #808080;
            border-bottom: 1px solid #e0e0e0;
            text-align: left;
            vertical-align: middle;
        }

        #tip-promo-flex .tbl-promo-flex .td-desc, #tip-azul-single .tbl-promo-flex .td-desc, #tip-mais-azul-single .tbl-promo-flex .td-desc {
            width: 200px;
            padding-left: 0;
            line-height: 14px;
        }

        #tip-promo-flex .tbl-promo-flex .td-promo, #tip-promo-flex .tbl-promo-flex .td-flex, #tip-azul-single .tbl-promo-flex .td-promo, #tip-azul-single .tbl-promo-flex .td-flex, #tip-mais-azul-single .tbl-promo-flex .td-promo, #tip-mais-azul-single .tbl-promo-flex .td-flex {
            width: 156px;
            padding-right: 16px;
            font-size: 20px;
            color: #026cb6;
            text-align: center;
        }

        #tip-promo-flex .tbl-promo-flex .td-flex, #tip-azul-single .tbl-promo-flex .td-flex, #tip-mais-azul-single .tbl-promo-flex .td-flex {
            width: 120px;
            padding-right: 8px;
            padding-left: 16px;
            color: #041e42;
        }

        #tip-promo-flex .tbl-promo-flex td.red, #tip-azul-single .tbl-promo-flex td.red, #tip-mais-azul-single .tbl-promo-flex td.red {
            color: red;
        }

        #tip-promo-flex .tbl-promo-flex td.green, #tip-azul-single .tbl-promo-flex td.green, #tip-mais-azul-single .tbl-promo-flex td.green {
            color: #53b847;
        }

        #tip-promo-flex .tbl-promo-flex tr:first-child td .value, #tip-azul-single .tbl-promo-flex tr:first-child td .value, #tip-mais-azul-single .tbl-promo-flex tr:first-child td .value {
            font-size: 20px;
        }

        #tip-promo-flex .tbl-promo-flex tr:last-child td, #tip-azul-single .tbl-promo-flex tr:last-child td, #tip-mais-azul-single .tbl-promo-flex tr:last-child td {
            border-bottom: none;
        }

        #tip-promo-flex .tbl-promo-flex .currency, #tip-azul-single .tbl-promo-flex .currency, #tip-mais-azul-single .tbl-promo-flex .currency {
            font-size: 12px;
        }

            #tip-promo-flex .tbl-promo-flex .currency .icon-luggage, #tip-promo-flex .tbl-promo-flex .currency .icon-hand-luggage, #tip-azul-single .tbl-promo-flex .currency .icon-luggage, #tip-azul-single .tbl-promo-flex .currency .icon-hand-luggage, #tip-mais-azul-single .tbl-promo-flex .currency .icon-luggage, #tip-mais-azul-single .tbl-promo-flex .currency .icon-hand-luggage {
                font-size: 18px;
            }

        #tip-promo-flex .tbl-promo-flex .value, #tip-azul-single .tbl-promo-flex .value, #tip-mais-azul-single .tbl-promo-flex .value {
            font-size: 16px;
            font-weight: 300;
        }

#tip-business-economy {
    width: auto;
    padding: 4px 8px;
}

    #tip-business-economy .tbl-bus-econ {
        background-color: transparent;
    }

        #tip-business-economy .tbl-bus-econ td {
            padding: 8px 0;
            line-height: 16px;
            color: #808080;
            border-bottom: 1px solid #e0e0e0;
            text-align: left;
            vertical-align: middle;
        }

        #tip-business-economy .tbl-bus-econ .td-desc {
            width: 160px;
            padding-left: 0;
            line-height: 14px;
        }

        #tip-business-economy .tbl-bus-econ .td-economy {
            width: 148px;
            padding-right: 16px;
            font-size: 20px;
            color: #159ba7;
            text-align: center;
        }

        #tip-business-economy .tbl-bus-econ .td-business {
            width: 132px;
            padding-right: 16px;
            font-size: 20px;
            color: #00858f;
            text-align: center;
        }

        #tip-business-economy .tbl-bus-econ tr:last-child td {
            border-bottom: none;
        }

        #tip-business-economy .tbl-bus-econ .desc {
            font-size: 0.7em;
            font-weight: 300;
            line-height: 4px;
        }

.tip-fare {
    width: 240px;
}

    .tip-fare .tooltip-title {
        margin: 4px 0 12px 0;
        padding-bottom: 8px;
        font-size: 20px;
        font-weight: 300;
        border-bottom: 1px solid;
    }

    .tip-fare ul {
        margin-left: 16px;
        list-style-type: circle;
    }

        .tip-fare ul li {
            margin: 8px 0;
            font-size: 12px;
            line-height: 16px;
        }

    .tip-fare span {
        margin-top: 4px;
        line-height: 16px;
        color: #808080;
    }

#tip-promo-fare .tooltip-title {
    color: #026cb6;
    border-bottom: 1px solid #026cb6;
}

#tip-flex-fare .tooltip-title {
    color: #041e42;
    border-bottom: 1px solid #041e42;
}

#tip-economy-fare .tooltip-title {
    color: #159ba7;
    border-bottom: 1px solid #159ba7;
}

#tip-business-fare .tooltip-title {
    color: #00858f;
    border-bottom: 1px solid #00858f;
}

#tip-lowest-fare, #tip-azul-fare, #tip-points, #tip-no-points {
    width: 280px;
}

    #tip-lowest-fare .tooltip-title, #tip-azul-fare .tooltip-title, #tip-points .tooltip-title, #tip-no-points .tooltip-title {
        margin: 4px 0 12px 0;
        padding-bottom: 8px;
        font-size: 20px;
        font-weight: 300;
        color: #f7a01d;
        border-bottom: 1px solid #f7a01d;
    }

    #tip-lowest-fare ul, #tip-azul-fare ul, #tip-points ul, #tip-no-points ul {
        margin-left: 16px;
        list-style-type: circle;
    }

        #tip-lowest-fare ul li, #tip-azul-fare ul li, #tip-points ul li, #tip-no-points ul li {
            margin: 8px 0;
            font-size: 12px;
            line-height: 16px;
        }

    #tip-lowest-fare span, #tip-azul-fare span, #tip-points span, #tip-no-points span {
        margin-top: 4px;
        line-height: 16px;
        color: #808080;
    }

    #tip-azul-fare .tooltip-title {
        color: #026cb6;
        border-bottom: none;
    }

    #tip-azul-fare .promo-text {
        margin: -12px -16px 16px;
        padding: 8px 16px 12px;
        color: white;
        background: #13b5ea;
    }

        #tip-azul-fare .promo-text .title {
            font-size: 20px;
            font-weight: 200;
            line-height: 32px;
        }

        #tip-azul-fare .promo-text p {
            font-size: 12px;
            font-weight: 300;
            line-height: 16px;
        }

#tip-points, #tip-no-points {
    width: 240px;
}

    #tip-points .tooltip-title, #tip-no-points .tooltip-title {
        color: #026cb6;
        border-color: #026cb6;
    }

    #tip-no-points .info {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 6px;
    }

#tip-new-plane {
    width: 380px;
}

    #tip-new-plane .tooltip-title {
        margin: 0 0 12px 0;
        padding-bottom: 8px;
        font-size: 20px;
        font-weight: 300;
        color: #00858f;
        border-bottom: 1px solid #00858f;
    }

    #tip-new-plane .tooltip-content .spn-xtra {
        display: block;
        float: left;
        width: 180px;
        height: 100px;
        background: url("img/azul-xtra.jpg") center no-repeat;
    }

    #tip-new-plane .tooltip-content .div-desc-xtra {
        float: left;
        width: 150px;
        margin-left: 16px;
        font-size: 12px;
        line-height: 16px;
    }

        #tip-new-plane .tooltip-content .div-desc-xtra ul {
            margin: 8px 0 0 16px;
            list-style-type: circle;
        }

            #tip-new-plane .tooltip-content .div-desc-xtra ul a {
                color: #00858f;
            }

                #tip-new-plane .tooltip-content .div-desc-xtra ul a:hover {
                    text-decoration: underline;
                }

@media screen and (max-width: 1199px) {
    #tip-promo-flex .tbl-promo-flex .td-desc, #tip-azul-single .tbl-promo-flex .td-desc, #tip-mais-azul-single .tbl-promo-flex .td-desc {
        width: 124px;
    }

    #tip-promo-flex .tbl-promo-flex .td-promo, #tip-promo-flex .tbl-promo-flex .td-flex, #tip-azul-single .tbl-promo-flex .td-promo, #tip-azul-single .tbl-promo-flex .td-flex, #tip-mais-azul-single .tbl-promo-flex .td-promo, #tip-mais-azul-single .tbl-promo-flex .td-flex {
        width: 132px;
        padding-right: 4px;
    }

    #tip-promo-flex .tbl-promo-flex .td-flex, #tip-azul-single .tbl-promo-flex .td-flex, #tip-mais-azul-single .tbl-promo-flex .td-flex {
        width: 112px;
        padding-right: 0px;
        padding-left: 0px;
    }

    #tip-business-economy .tbl-bus-econ .td-desc {
        width: 124px;
    }

    #tip-business-economy .tbl-bus-econ .td-business {
        width: 120px;
        padding-right: 4px;
    }

    #tip-business-economy .tbl-bus-econ .td-economy {
        width: 120px;
        padding-right: 0px;
        padding-left: 0px;
    }
}

@media screen and (max-width: 991px) {
    #tip-promo-flex .tbl-promo-flex .td-desc, #tip-azul-single .tbl-promo-flex .td-desc, #tip-mais-azul-single .tbl-promo-flex .td-desc {
        width: 240px;
    }

    #tip-promo-flex .tbl-promo-flex .td-promo, #tip-promo-flex .tbl-promo-flex .td-flex, #tip-azul-single .tbl-promo-flex .td-promo, #tip-azul-single .tbl-promo-flex .td-flex, #tip-mais-azul-single .tbl-promo-flex .td-promo, #tip-mais-azul-single .tbl-promo-flex .td-flex {
        width: 160px;
    }

    #tip-promo-flex .tbl-promo-flex .td-flex, #tip-azul-single .tbl-promo-flex .td-flex, #tip-mais-azul-single .tbl-promo-flex .td-flex {
        width: 160px;
    }

    #tip-business-economy .tbl-bus-econ .td-desc {
        width: 240px;
    }

    #tip-business-economy .tbl-bus-econ .td-business {
        width: 176px;
        padding-right: 4px;
    }

    #tip-business-economy .tbl-bus-econ .td-economy {
        width: 176px;
        padding-right: 0px;
        padding-left: 0px;
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-size: 0.875em;
    opacity: 0;
    z-index: 998;
}

    .tooltip.in {
        opacity: 0.8;
    }

    .tooltip.tooltip-top, .tooltip.bs-tether-element-attached-bottom {
        padding: 4px 0;
        margin-top: -3px;
    }

        .tooltip.tooltip-top .tooltip-arrow, .tooltip.bs-tether-element-attached-bottom .tooltip-arrow {
            bottom: 0;
            left: 50%;
            margin-left: -4px;
            border-width: 4px 4px 0;
            border-top-color: #026cb6;
        }

        .tooltip.tooltip-top.tooltip-info .tooltip-arrow, .tooltip.bs-tether-element-attached-bottom.tooltip-info .tooltip-arrow {
            border-top-color: #808080;
        }

    .tooltip.tooltip-right, .tooltip.bs-tether-element-attached-left {
        padding: 0 4px;
        margin-left: 3px;
    }

        .tooltip.tooltip-right .tooltip-arrow, .tooltip.bs-tether-element-attached-left .tooltip-arrow {
            top: 50%;
            left: 0;
            margin-top: -4px;
            border-width: 4px 4px 4px 0;
            border-right-color: #026cb6;
        }

        .tooltip.tooltip-right.tooltip-info .tooltip-arrow, .tooltip.bs-tether-element-attached-left.tooltip-info .tooltip-arrow {
            border-right-color: #808080;
        }

    .tooltip.tooltip-bottom, .tooltip.bs-tether-element-attached-top {
        padding: 4px 0;
        margin-top: 3px;
    }

        .tooltip.tooltip-bottom .tooltip-arrow, .tooltip.bs-tether-element-attached-top .tooltip-arrow {
            top: 0;
            left: 50%;
            margin-left: -4px;
            border-width: 0 4px 4px;
            border-bottom-color: #026cb6;
        }

        .tooltip.tooltip-bottom.tooltip-info .tooltip-arrow, .tooltip.bs-tether-element-attached-top.tooltip-info .tooltip-arrow {
            border-bottom-color: #808080;
        }

    .tooltip.tooltip-left, .tooltip.bs-tether-element-attached-right {
        padding: 0 4px;
        margin-left: -3px;
    }

        .tooltip.tooltip-left .tooltip-arrow, .tooltip.bs-tether-element-attached-right .tooltip-arrow {
            top: 50%;
            right: 0;
            margin-top: -4px;
            border-width: 4px 0 4px 4px;
            border-left-color: #026cb6;
        }

        .tooltip.tooltip-left.tooltip-info .tooltip-arrow, .tooltip.bs-tether-element-attached-right.tooltip-info .tooltip-arrow {
            border-left-color: #808080;
        }

.tooltip-inner {
    max-width: 240px;
    padding: 7px 8px;
    color: white;
    font-weight: bold;
    text-align: center;
    border: 1px solid white;
    border-radius: 2px;
    background-color: #026cb6;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
    opacity: .9;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    opacity: .9;
}

.tip-fare-banner {
    width: calc(100% - 1.25rem);
    z-index: 999;
}

@media all and (min-width: 576px) {
    .tip-fare-banner {
        width: 300px;
    }
}

@media all and (min-width: 768px) {
    .tip-fare-banner {
        width: 400px;
    }
}

.tip-fare-banner .tooltip-title {
    color: #026cb6;
    border-bottom: 1px solid #026cb6;
}

.tip-fare-banner .tooltip-content {
    padding-right: 24px;
    height: 150px;
    overflow-y: scroll;
    color: #808080;
}

@media all and (min-width: 576px) {
    .tip-fare-banner .tooltip-content {
        height: 90px;
    }
}

@media all and (min-width: 992px) {
    .tip-fare-banner .tooltip-content {
        height: 150px;
    }
}

@media all and (min-width: 1200px) {
    .tip-fare-banner .tooltip-content {
        height: 230px;
    }
}

.tip-fare-banner .tooltip-title {
    margin: 4px 0 12px 0;
    padding-bottom: 8px;
    font-size: 20px;
    font-weight: 300;
    border-bottom: 1px solid;
}

.tip-fare-banner ul {
    margin-left: 0;
    list-style-type: none;
}

    .tip-fare-banner ul li {
        margin: 8px 0;
        list-style: none;
        font-size: 12px;
        line-height: 16px;
    }

.tip-fare-banner span {
    margin-top: 4px;
    line-height: 16px;
    color: #808080;
}

.tip-fare-banner:after {
    content: '';
    display: block;
    position: absolute;
    right: calc(50% - 5px);
    bottom: -20px;
    width: 0;
    height: 0;
    border-top: 10px solid white;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

@media all and (min-width: 576px) {
    .tip-fare-banner:after {
        right: calc(50% - 2px);
    }
}

.tip-fare-banner:before {
    content: '';
    display: block;
    position: absolute;
    right: calc(50% - 5px);
    bottom: -22px;
    width: 0;
    height: 0;
    border-top: 10px solid rgba(0, 0, 0, 0.2);
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

@media all and (min-width: 576px) {
    .tip-fare-banner:before {
        right: calc(50% - 2px);
    }
}

.tooltip-price .tooltip-inner span.info {
    font-weight: 400;
    line-height: 1.25em;
    font-size: 0.875em;
    margin-bottom: 8px;
    display: block;
}

.tooltip-price.tooltip-skysofa .tooltip-inner {
    background-color: #88D3E2;
    color: white;
    border-color: white;
    opacity: 1;
}

.tooltip-price.tooltip-skysofa.tooltip-top .tooltip-arrow {
    border-top-color: #88D3E2 !important;
    opacity: 1;
}

.tooltip-info .tooltip-inner {
    background-color: #e6e6e6;
    color: #808080;
    border-color: #9a9a9a;
    font-weight: 400;
    line-height: 1.25em;
    font-size: 0.875em;
    opacity: 1;
}

.tooltip-info.tooltip-top .tooltip-arrow {
    border-top-color: #808080 !important;
    opacity: 1;
}

.tooltip-info.tooltip-right .tooltip-arrow {
    border-right-color: #808080 !important;
    opacity: 1;
}

.tooltip-info.tooltip-left .tooltip-arrow {
    border-left-color: #808080 !important;
    opacity: 1;
}

.tooltip-pax .tooltip-inner {
    background-color: #53b847;
    color: white;
    border-color: #a0cf67;
    font-weight: 400;
    line-height: 1.25em;
    font-size: 0.875em;
    opacity: 1;
}

.tooltip-pax.tooltip-top .tooltip-arrow {
    border-top-color: #a0cf67 !important;
    opacity: 1;
}

.ui-datepicker {
    background: white;
    border: 1px solid #e0e0e0;
    padding-top: 4px;
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.175);
}

@media all and (min-width: 576px) {
    .ui-datepicker.ui-datepicker-multi {
        position: fixed !important;
        width: calc(100% - 1.25rem) !important;
        overflow-x: auto;
        z-index: 6;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        flex-direction: row;
    }
}

@media all and (min-width: 768px) {
    .ui-datepicker.ui-datepicker-multi {
        z-index: 3;
        position: absolute !important;
        width: 590px !important;
    }
}

.ui-datepicker.ui-datepicker-multi .ui-datepicker-group {
    width: 290px;
    float: left;
    position: relative;
    margin-left: 2px;
}

    .ui-datepicker.ui-datepicker-multi .ui-datepicker-group:first-child {
        z-index: 9;
    }

    .ui-datepicker.ui-datepicker-multi .ui-datepicker-group + .ui-datepicker-row-break + .ui-datepicker-group {
        margin-left: 6px;
    }

.ui-datepicker.ui-datepicker-multi .ui-datepicker-header .ui-datepicker-next {
    right: calc(-100% + 8px);
}

    .ui-datepicker.ui-datepicker-multi .ui-datepicker-header .ui-datepicker-next.-hide {
        display: none;
    }

.ui-datepicker.ui-datepicker-multi td.highlight {
    background: #13b5ea;
    cursor: default;
}

    .ui-datepicker.ui-datepicker-multi td.highlight a {
        color: #fff;
    }

    .ui-datepicker.ui-datepicker-multi td.highlight.ui-datepicker-week-end a {
        color: #fff;
    }

.ui-datepicker .ui-datepicker-unselectable {
    opacity: .6;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
    position: absolute;
    top: 8px;
    left: 8px;
}

    .ui-datepicker .ui-datepicker-header .ui-datepicker-prev > span.ui-icon {
        left: 0;
    }

        .ui-datepicker .ui-datepicker-header .ui-datepicker-prev > span.ui-icon:before {
            content: "\e60f";
            right: 8px;
        }

.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
    position: absolute;
    top: 8px;
    right: 8px;
}

    .ui-datepicker .ui-datepicker-header .ui-datepicker-next > span.ui-icon {
        right: 0;
    }

        .ui-datepicker .ui-datepicker-header .ui-datepicker-next > span.ui-icon:before {
            content: "\e603";
            left: 8px;
        }

.ui-datepicker .ui-datepicker-header span.ui-icon {
    position: absolute;
    top: 0;
    width: 28px;
    height: 28px;
    cursor: pointer;
    background: transparent;
    color: #9a9a9a;
}

    .ui-datepicker .ui-datepicker-header span.ui-icon::before {
        position: absolute;
        top: 2px;
        font-family: "Azul Icons";
        font-size: 20px;
    }

    .ui-datepicker .ui-datepicker-header span.ui-icon:hover {
        color: #026cb6;
    }

.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
    text-align: center;
    line-height: 40px;
    font-weight: 300;
}

.ui-datepicker .ui-datepicker-calendar {
    color: #808080;
}

    .ui-datepicker .ui-datepicker-calendar > thead > tr > th {
        padding: 8px;
        font-size: 12px;
        font-weight: 400;
        background: #e6e6e6;
    }

    .ui-datepicker .ui-datepicker-calendar > tbody > tr > td {
        padding: 10px 4px 6px;
        font-size: 16px;
        font-weight: 300;
        text-align: center;
        border: 1px solid #e6e6e6;
    }

        .ui-datepicker .ui-datepicker-calendar > tbody > tr > td a {
            color: #808080;
        }

        .ui-datepicker .ui-datepicker-calendar > tbody > tr > td:hover {
            background: #13b5ea;
            cursor: pointer;
        }

            .ui-datepicker .ui-datepicker-calendar > tbody > tr > td:hover a {
                color: white;
            }

    .ui-datepicker .ui-datepicker-calendar td.ui-datepicker-week-end a {
        color: #13b5ea;
    }

    .ui-datepicker .ui-datepicker-calendar td.ui-datepicker-week-end.ui-datepicker-current-day a {
        color: white;
    }

    .ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable a {
        color: #9a9a9a;
    }

    .ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover {
        background: white;
        cursor: default;
    }

    .ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day {
        background: #13b5ea;
        cursor: default;
    }

        .ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day a {
            color: white;
        }

    .ui-datepicker .ui-datepicker-calendar .ui-datepicker-today {
        background: #e6e6e6;
    }

        .ui-datepicker .ui-datepicker-calendar .ui-datepicker-today a {
            color: #026cb6;
        }

.flex-price-calendar {
    position: relative;
    margin-bottom: 40px;
}

    .flex-price-calendar .ui-datepicker {
        border: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        border-radius: 0px;
        -ms-border-radius: 0px;
    }

    .flex-price-calendar .ui-datepicker-title {
        width: auto;
        float: right;
        margin-right: 80px;
        margin-bottom: 24px;
        font-family: 'AzulHelveticaNeue';
        font-size: 22px;
        font-weight: lighter;
        color: #026cb6;
    }

    .flex-price-calendar .ui-datepicker-header .ui-datepicker-prev {
        left: auto;
        top: 10px;
        right: 60px;
    }

    .flex-price-calendar .ui-datepicker-header .ui-datepicker-next {
        top: 10px;
        right: 10px;
    }

    .flex-price-calendar .ui-datepicker-calendar {
        width: 100%;
    }

        .flex-price-calendar .ui-datepicker-calendar > thead > tr > th {
            text-align: left;
            background: none;
        }

        .flex-price-calendar .ui-datepicker-calendar > tbody > tr > td {
            width: 90px;
            height: 80px;
            position: relative;
            border: none;
        }

            .flex-price-calendar .ui-datepicker-calendar > tbody > tr > td.ui-datepicker-current-day {
                background: none;
            }

                .flex-price-calendar .ui-datepicker-calendar > tbody > tr > td.ui-datepicker-current-day:before {
                    background: #13b5ea;
                }

            .flex-price-calendar .ui-datepicker-calendar > tbody > tr > td.empty:hover:before {
                background: none;
            }

            .flex-price-calendar .ui-datepicker-calendar > tbody > tr > td.empty:before {
                border: none;
            }

            .flex-price-calendar .ui-datepicker-calendar > tbody > tr > td.price-low span {
                color: #026cb6;
            }

            .flex-price-calendar .ui-datepicker-calendar > tbody > tr > td a {
                position: absolute;
                right: 15%;
                top: 20px;
                z-index: 1;
            }

            .flex-price-calendar .ui-datepicker-calendar > tbody > tr > td span {
                position: absolute;
                bottom: 10px;
                right: 15%;
                font-size: 16px;
                z-index: 1;
                color: #A0A0A0;
            }

                .flex-price-calendar .ui-datepicker-calendar > tbody > tr > td span small {
                    font-size: 12px;
                }

            .flex-price-calendar .ui-datepicker-calendar > tbody > tr > td:before {
                content: '';
                width: 90%;
                height: 90%;
                position: absolute;
                left: 0;
                top: 5%;
                border: 1px solid #ddd;
                z-index: 0;
            }

            .flex-price-calendar .ui-datepicker-calendar > tbody > tr > td:hover {
                background: none;
            }

                .flex-price-calendar .ui-datepicker-calendar > tbody > tr > td:hover span {
                    color: #fff;
                }

                .flex-price-calendar .ui-datepicker-calendar > tbody > tr > td:hover:before {
                    background: #13b5ea;
                }

        .flex-price-calendar .ui-datepicker-calendar .ui-datepicker-today {
            background: none;
        }

            .flex-price-calendar .ui-datepicker-calendar .ui-datepicker-today a.ui-state-highlight {
                color: #026cb6;
            }

                .flex-price-calendar .ui-datepicker-calendar .ui-datepicker-today a.ui-state-highlight.ui-state-active, .flex-price-calendar .ui-datepicker-calendar .ui-datepicker-today span {
                    color: #fff;
                }

            .flex-price-calendar .ui-datepicker-calendar .ui-datepicker-today:before {
                background: #e6e6e6;
            }

@media screen and (max-width: 1170px) {
    .flex-price-calendar .ui-datepicker-calendar > tbody > tr > td span {
        font-size: 12px;
    }
}

.form-control.datepicker {
    border: none;
    border-bottom: 1px solid #9a9a9a;
}

    .form-control.datepicker:hover {
        border-color: #026cb6;
    }

.bootstrap-select.btn-group:not(.input-group-btn), .bootstrap-select.btn-group[class*="col-"] {
    display: inline-block;
    float: none;
    margin-left: 0;
}

.bootstrap-select {
    width: 140px \0;
}

    .bootstrap-select.fit-width {
        width: auto !important;
    }

    .bootstrap-select.form-control {
        position: relative;
        margin-bottom: 0;
        padding: 0;
        border: none;
    }

        .bootstrap-select.form-control:not([class*="col-"]) {
            width: 100%;
        }

        .bootstrap-select.form-control.input-group-btn {
            z-index: auto;
        }

        .bootstrap-select.form-control.open > .dropdown-toggle {
            background-color: #ebebeb;
            border-bottom: 1px solid #026cb6;
        }

    .bootstrap-select.btn-group.dropdown-menu-right {
        float: right;
    }

    .bootstrap-select.btn-group.disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

        .bootstrap-select.btn-group.disabled:focus {
            outline: none !important;
        }

    .bootstrap-select.btn-group.bs-container {
        position: absolute;
        z-index: 2;
    }

        .bootstrap-select.btn-group.bs-container .dropdown-menu {
            z-index: 9999;
        }

    .bootstrap-select.btn-group.filled .dropdown-toggle .filter-option {
        color: #026cb6;
    }

    .bootstrap-select.btn-group.filled.disabled .filter-option {
        color: #606060;
    }

    .bootstrap-select.btn-group .dropdown-toggle {
        position: relative;
        height: 40px;
        padding-left: 0;
        padding-right: 24px;
        font-size: 1rem;
        font-weight: 300;
        line-height: 42px;
        overflow: hidden;
        border-radius: 0;
    }

        .bootstrap-select.btn-group .dropdown-toggle:hover, .bootstrap-select.btn-group .dropdown-toggle:focus, .bootstrap-select.btn-group .dropdown-toggle:active {
            background: #ebebeb;
            border-bottom-color: #026cb6;
        }

            .bootstrap-select.btn-group .dropdown-toggle:hover .caret, .bootstrap-select.btn-group .dropdown-toggle:focus .caret, .bootstrap-select.btn-group .dropdown-toggle:active .caret {
                color: #026cb6;
            }

        .bootstrap-select.btn-group .dropdown-toggle .filter-option {
            display: inline-block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            width: 100%;
            color: #9a9a9a;
            text-align: left;
        }

        .bootstrap-select.btn-group .dropdown-toggle .caret {
            position: absolute;
            top: 50%;
            right: 16px;
            margin-top: -8px;
            border-width: 0;
            vertical-align: middle;
        }

            .bootstrap-select.btn-group .dropdown-toggle .caret:before {
                content: "\e602";
            }

        .bootstrap-select.btn-group .dropdown-toggle.disabled {
            border-color: #9a9a9a;
            color: #9a9a9a;
            background-color: #e6e6e6;
        }

            .bootstrap-select.btn-group .dropdown-toggle.disabled:hover .caret {
                color: #9a9a9a;
            }

    .bootstrap-select.btn-group .dropdown-menu {
        box-sizing: border-box;
        min-width: 100%;
        margin-top: -22px;
        background-color: #fff;
        transition: all 0.5s ease;
    }

        .bootstrap-select.btn-group .dropdown-menu.inner {
            float: none;
            position: static;
            margin: 0;
            padding: 0;
            border: 0;
            border-radius: 0;
            box-shadow: none;
        }

        .bootstrap-select.btn-group .dropdown-menu.open {
            visibility: visible;
            margin-top: -1px;
            opacity: 1;
        }

        .bootstrap-select.btn-group .dropdown-menu li {
            position: relative;
        }

            .bootstrap-select.btn-group .dropdown-menu li a {
                font-size: 14px;
                font-weight: 300;
                line-height: 32px;
                padding: 0 16px;
                cursor: pointer;
                user-select: none;
            }

                .bootstrap-select.btn-group .dropdown-menu li a.opt {
                    position: relative;
                    padding-left: 2.25em;
                }

                .bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
                    display: none;
                }

                .bootstrap-select.btn-group .dropdown-menu li a span.text {
                    display: inline-block;
                }

                .bootstrap-select.btn-group .dropdown-menu li a:hover, .bootstrap-select.btn-group .dropdown-menu li a:focus {
                    color: #808080;
                    outline: 0;
                    background-color: #e6e6e6;
                    text-decoration: none;
                }

            .bootstrap-select.btn-group .dropdown-menu li small {
                padding-left: 0.5em;
            }

            .bootstrap-select.btn-group .dropdown-menu li.active small {
                color: #fff;
            }

            .bootstrap-select.btn-group .dropdown-menu li.active a {
                color: #026cb6;
                background-color: #e6e6e6;
            }

            .bootstrap-select.btn-group .dropdown-menu li.active.selected a {
                background-color: #fff;
            }

                .bootstrap-select.btn-group .dropdown-menu li.active.selected a:hover, .bootstrap-select.btn-group .dropdown-menu li.active.selected a:focus {
                    background-color: #e6e6e6;
                }

            .bootstrap-select.btn-group .dropdown-menu li.selected {
                background-color: #DBF2F7;
            }

                .bootstrap-select.btn-group .dropdown-menu li.selected a {
                    color: #026cb6;
                }

            .bootstrap-select.btn-group .dropdown-menu li.disabled a {
                cursor: not-allowed;
            }

        .bootstrap-select.btn-group .dropdown-menu .notify {
            position: absolute;
            bottom: 5px;
            box-sizing: border-box;
            width: 96%;
            min-height: 26px;
            margin: 0 2%;
            padding: 3px 5px;
            opacity: 0.9;
            border: 1px solid #e3e3e3;
            background: #f5f5f5;
            box-shadow: inset 0 1px 1px #333;
            pointer-events: none;
        }

    .bootstrap-select.btn-group .no-results {
        margin: 2px 8px;
        padding: 0 4px;
        background: #f5f5f5;
        white-space: nowrap;
    }

    .bootstrap-select.btn-group > .disabled {
        cursor: not-allowed;
    }

        .bootstrap-select.btn-group > .disabled:focus {
            outline: none !important;
        }

    .bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
        position: static;
    }

    .bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
        position: static;
        top: auto;
        margin-top: -1px;
    }

    .bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
        display: inline-block;
        position: absolute;
        right: 15px;
        margin-top: 5px;
    }

    .bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
        margin-right: 34px;
    }

    .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
        float: right;
    }

    .bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
        width: 100%;
    }

    .bootstrap-select.show-menu-arrow .dropdown-toggle:before {
        display: none;
        position: absolute;
        bottom: -4px;
        left: 9px;
        border-right: 7px solid transparent;
        border-bottom: 7px solid rgba(204, 204, 204, 0.2);
        border-left: 7px solid transparent;
        content: '';
    }

    .bootstrap-select.show-menu-arrow .dropdown-toggle:after {
        display: none;
        position: absolute;
        bottom: -4px;
        left: 10px;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #fff;
        border-left: 6px solid transparent;
        content: '';
    }

    .bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
        z-index: 1061;
    }

        .bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before {
            display: block;
        }

        .bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
            display: block;
        }

    .bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
        top: -3px;
        bottom: auto;
        border-top: 7px solid rgba(204, 204, 204, 0.2);
        border-bottom: 0;
    }

    .bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
        top: -3px;
        bottom: auto;
        border-top: 6px solid #fff;
        border-bottom: 0;
    }

    .bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
        right: 12px;
        left: auto;
    }

    .bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
        right: 13px;
        left: auto;
    }

    .bootstrap-select > .dropdown-toggle {
        width: 100%;
        padding-right: 25px;
        border-width: 0 0 1px 0;
        background-color: transparent;
    }

    .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
        width: 140px;
    }

    .bootstrap-select .dropdown-toggle:focus {
        outline: none !important;
        outline-offset: -2px;
    }

    .bootstrap-select .opt-placeholder {
        background: white;
        color: #9a9a9a !important;
    }

.bs-searchbox {
    padding: 4px 8px;
}

    .bs-searchbox .form-control {
        float: none;
        width: 100%;
        margin-bottom: 0;
    }

    .bs-searchbox + .bs-actionsbox {
        padding: 0 8px 4px;
    }

    .bs-searchbox + .dropdown-menu.inner li:first-child {
        opacity: 1;
    }

        .bs-searchbox + .dropdown-menu.inner li:first-child.selected {
            background-color: #DBF2F7;
        }

            .bs-searchbox + .dropdown-menu.inner li:first-child.selected a {
                background-color: #DBF2F7;
                color: #026cb6;
            }

    .bs-searchbox:after {
        position: absolute;
        top: 16px;
        right: 16px;
        font-family: 'Azul Icons';
        font-size: 20px;
        font-weight: normal;
        font-style: normal;
        font-variant: normal;
        line-height: 1;
        content: "\e60b";
        text-transform: none;
        speak: none;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

.bs-actionsbox {
    box-sizing: border-box;
    width: 100%;
    padding: 4px 8px;
}

    .bs-actionsbox .btn-group button {
        width: 50%;
    }

.bs-donebutton {
    float: left;
    box-sizing: border-box;
    width: 100%;
    padding: 4px 8px;
}

    .bs-donebutton .btn-group button {
        width: 100%;
    }

select.bs-select-hidden {
    display: none !important;
}

select.selectpicker {
    display: none !important;
}

select.mobile-device {
    display: block !important;
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    opacity: 0;
}

.has-error .bootstrap-select .dropdown-toggle {
    border-color: red;
}

    .has-error .bootstrap-select .dropdown-toggle .caret:before {
        border-color: red;
    }

.error .bootstrap-select .dropdown-toggle {
    border-color: red;
}

.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
    float: right;
}

.form-inline .bootstrap-select.btn-group {
    margin-bottom: 0;
}

    .form-inline .bootstrap-select.btn-group .form-control {
        width: 100%;
    }

.form-horizontal .bootstrap-select.btn-group {
    margin-bottom: 0;
}

.form-group .bootstrap-select.btn-group {
    margin-bottom: 0;
}

.form-group-lg .bootstrap-select.btn-group.form-control {
    padding: 0;
}

.form-group-sm .bootstrap-select.btn-group.form-control {
    padding: 0;
}

#home .btn {
    width: 100%;
    margin: 8px 0 32px 0;
}

@media all and (min-width: 768px) {
    #home .btn {
        width: auto;
    }
}

#home .az-forgot-link {
    width: 100%;
    float: right;
    text-align: center;
    font-size: 1em;
    color: #026cb6;
    font-weight: 300;
    margin: 0;
}

    #home .az-forgot-link:hover {
        text-decoration: underline;
    }

@media all and (min-width: 768px) {
    #home .az-forgot-link {
        width: auto;
        text-align: left;
        margin: 26px 24px 0 0;
    }
}

#banner-home {
    width: 100%;
    margin-top: 64px;
}

@media all and (min-width: 992px) {
    #banner-home {
        margin-top: 0;
    }
}

#banner-home .az-banner-wrapper {
    width: 100%;
    min-height: 200px;
    background-image: url("img-novo-layout/banner-home.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}

@media only screen and (-webkit-device-pixel-ratio: 1) {
    #banner-home .az-banner-wrapper {
        background-image: url("img-novo-layout/banner-home.jpg");
    }
}

@media only screen and (-webkit-device-pixel-ratio: 2) {
    #banner-home .az-banner-wrapper {
        background-image: url("img-novo-layout/banner-home@2x.jpg");
    }
}

@media all and (min-width: 992px) {
    #banner-home .az-banner-wrapper {
        min-height: 380px;
    }
}

#about .az-about-text {
    line-height: 1.25;
}

@media all and (min-width: 768px) {
    #about .az-about-text {
        -webkit-column-count: 2;
        /* Chrome, Safari, Opera */
        -moz-column-count: 2;
        /* Firefox */
        column-count: 2;
    }
}

#about .az-section-icons {
    margin: 48px 0;
    padding: 24px 0;
    background-color: rgba(235, 235, 235, 0.7);
}

    #about .az-section-icons .az-group-image {
        width: auto;
        height: 64px;
        margin: 24px auto 16px auto;
        display: block;
    }

    #about .az-section-icons .az-group-info {
        width: 100%;
        display: block;
        text-align: center;
        font-size: 1em;
        color: #026cb6;
        line-height: 1.25;
        margin-bottom: 16px;
    }

        #about .az-section-icons .az-group-info.-title {
            font-size: 1em;
            color: #026cb6;
            font-weight: 400;
            margin-bottom: 8px;
        }

        #about .az-section-icons .az-group-info.-subtitle {
            font-size: .875em;
            color: #808080;
        }

#faq .ta-box-questions {
    width: 100%;
}

    #faq .ta-box-questions .panel.collapse-panel .collapse-heading, #faq .ta-box-questions .panel.collapse-toggle-panel .collapse-heading {
        padding: 12px 16px;
    }

        #faq .ta-box-questions .panel.collapse-panel .collapse-heading p, #faq .ta-box-questions .panel.collapse-toggle-panel .collapse-heading p {
            color: #026cb6;
            padding-left: 0;
            padding-right: 24px;
            font-weight: 400;
        }

            #faq .ta-box-questions .panel.collapse-panel .collapse-heading p .item-number, #faq .ta-box-questions .panel.collapse-toggle-panel .collapse-heading p .item-number {
                color: #026cb6;
                font-weight: 400;
                text-align: right;
                display: block;
                float: left;
                margin-right: 8px;
                width: 24px;
            }

            #faq .ta-box-questions .panel.collapse-panel .collapse-heading p i, #faq .ta-box-questions .panel.collapse-toggle-panel .collapse-heading p i, #faq .ta-box-questions .panel.collapse-panel .collapse-heading p .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #faq .ta-box-questions .panel.collapse-panel .collapse-heading p .caret, #faq .ta-box-questions .panel.collapse-toggle-panel .collapse-heading p .bootstrap-select.btn-group .dropdown-toggle .caret, .bootstrap-select.btn-group .dropdown-toggle #faq .ta-box-questions .panel.collapse-toggle-panel .collapse-heading p .caret {
                top: 0;
                left: 24px;
                line-height: 1;
                color: #026cb6;
            }

    #faq .ta-box-questions .panel.collapse-panel, #faq .ta-box-questions .panel.collapse-toggle-panel {
        border: none;
    }

        #faq .ta-box-questions .panel.collapse-panel.open .collapse-heading, #faq .ta-box-questions .panel.open.collapse-toggle-panel .collapse-heading {
            background: #ebebeb;
            border-bottom: 1px solid white;
        }

            #faq .ta-box-questions .panel.collapse-panel.open .collapse-heading p, #faq .ta-box-questions .panel.open.collapse-toggle-panel .collapse-heading p {
                color: #026cb6;
            }

        #faq .ta-box-questions .panel.collapse-panel .collapse-heading:hover, #faq .ta-box-questions .panel.collapse-toggle-panel .collapse-heading:hover {
            background: #ebebeb;
        }

        #faq .ta-box-questions .panel.collapse-panel .collapse-heading, #faq .ta-box-questions .panel.collapse-toggle-panel .collapse-heading {
            padding-left: 8px;
            border-bottom: 1px solid #e0e0e0;
        }

    #faq .ta-box-questions .collapse-body {
        background: #ebebeb;
        padding: 16px;
        color: #808080;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
    }

/* --- MODAL --- */
/*.modal-open { overflow: hidden }*/
.modal {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    width: 100%;
    height: 100%;
    min-width: 960px;
    background: rgba(0,0,0,0.5);
}

.no-rgba .modal {
    background: url('img/00000050.png') repeat
}

.modal .container {
    padding: 2em 1em;
    margin: 3em auto;
    background: #f0f0f0;
    box-shadow: 0 3px 12px rgba(0,0,0,0.3);
}

.modal.full .container {
    width: 95%;
    max-width: none;
}

.modal .modal-header {
    padding-bottom: 1em;
    border-bottom: 1px solid #c0c0c0;
    margin: 0 1em 1em;
}

.modal .modal-close {
    float: right
}

.modal .modal-header .title {
    font-size: 1.5em;
    color: #026cb6;
}

.modal .modal-body {
}

.modal {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0s linear 0.5s, opacity 0.5s linear;
    -moz-transition: visibility 0s linear 0.5s, opacity 0.5s linear;
    -ms-transition: visibility 0s linear 0.5s, opacity 0.5s linear;
    transition: visibility 0s linear 0.5s, opacity 0.5s linear;
}

    .modal.active {
        visibility: visible;
        opacity: 1;
    }

.modal-erro .container {
    max-width: 580px !important;
    margin-top: 18%
}

.modal.compact .container {
    width: 640px
}

.modal.alert .container {
    width: 400px
}


.modal.load .container {
    width: 280px !important;
    margin-top: 20%;
    text-align: center;
}

    .modal.load .container .message {
        color: #2B97D6;
    }

    .modal.load .container .loader {
        text-align: center;
        width: 45px;
        height: 45px;
    }

.modalovermodal.compact .container {
    width: 640px
}


.pagination {
    border: 1px solid #dee2e6;
    margin-left: -1px;
}

    .pagination:hover {
        color: #0056b3;
        text-decoration: none;
        background-color: #e9ecef;
        border-color: #dee2e6;
    }

.pgactive {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    border: 1px solid #007bff !important;
    margin-left: -1px;
    padding: 8px 16px;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    height: 40px;
}

.spnpagination {
    border: 1px solid #dee2e6;
    display: inline-block;
    padding: 8px 16px;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    height: 40px;
    cursor: default;
    transition: background-color .15s ease, color .15s ease;
    text-align: center;
}

.divpagination {
    margin-right: 12px;
    width: auto;
    margin-top: 20px;
    margin-bottom: 30px;
    right: 0;
    float: right;
}

.mgb40 {
    margin-bottom: 40px !important;
}

