.bg-lightgray {
    background-color: #F8F9FA;
}

.border-y {
    border-bottom: solid 1px #e6e6e6;
    border-top: solid 1px #e6e6e6;
}

.border-b {
    border-bottom: solid 1px #e6e6e6;
}

.radius10 {
    border-radius: 10px;
}

.text-green {
    color: #158137;
    font-weight: 700;
}

.text-gray500 {
    color: #7D7878;
}

.text-gray600 {
    color: #575252;
}

.text-gray700 {
    color: #403A3A;
}

.text-gray800 {
    color: #292525;
}

.fw700 {
    font-weight: 700;
}

.fw600 {
    font-weight: 600;
}

.fw500 {
    font-weight: 500;
}

.fw400 {
    font-weight: 400;
}

/*  */

.section-title {
    font-weight: 700;
    font-size: 25px;
    color: #292525;
    margin: 0;
}

.card-title {
    font-size: 17px;
    font-weight: 600;
    color: #403A3A;
}

.price {
    font-size: 17px;
    font-weight: 700;
    color: #198039;
}

.text-underline {
    text-decoration: underline;
    font-size: 15px;
    color: #575252;
}

.text-underline {
    text-decoration: underline;
    font-size: 15px;
    color: #575252;
}

.card-caption {
    font-size: 12px;
    color: #403A3A;
}

.font12 {
    font-size: 12px;
}

.font13 {
    font-size: 13px;
}

.font15 {
    font-size: 15px;
}

.font17 {
    font-size: 17px;
}

.font22 {
    font-size: 22px;
    font-weight: 700;
    color: #292525;
}

.font25 {
    font-size: 25px;
}

@media screen and (max-width:575px) {
    .section-title {
        font-size: 22px;
    }

    .flight-title {
        font-size: 13px;
    }

    .card-title {
        font-size: 15px;
    }

    .price {
        font-size: 13px;
    }

    .text-underline {
        font-size: 12px;
    }

    .card-caption {
        font-size: 10px;
    }

    .font12 {
        font-size: 10px;
    }

    .font15 {
        font-size: 13px;
    }

    .font17 {
        font-size: 15px;
    }

    .font22 {
        font-size: 17px;
    }

    .font25 {
        font-size: 22px;
    }
}


/*  */

body {
    background-color: #EFEFEF;
    /* color: #7D7878; */
    color: #575252;
}

body .content {
    min-height: calc(100vh - 230px);
}

a:hover {
    color: inherit;
}

@media screen and (max-width: 575px) {
    body {
        padding-bottom: 70px;
    }

    body.paymentCard,
    body.paymentBillet,
    body.paymentEntry {
        padding: 0;
    }
}

/*  */

header {
    background-color: #FFFFFF;
    padding: 17px 0;
}

@media screen and (max-width: 575px) {
    header .header-logo {
        width: 84px;
    }
}

/*  */

main {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #F8F9FA;
    margin-bottom: 120px;
}

@media screen and (max-width: 575px) {
    main {
        padding-bottom: 20px;
    }
}

/*  */

footer {
    background-color: #800000;
    color: #fff;
}

footer p {
    font-size: 13px;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-icons a:hover {
    text-decoration: none;

}

.social-icons a svg {
    transition: all 0.1s ease-in-out;
}

.social-icons a:hover svg {
    transform: scale(110%);
}

/*  */

.btn:not(.btn-sm):not(.btn-md) {
    font-size: 15px;
    font-weight: 700;
    min-height: 55px;
    border-radius: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0 !important;
    box-shadow: none !important;
    transition: all 0.1s ease-in-out;
}

.btn-sm {
    border-radius: 14px;
    border: 0 !important;
    box-shadow: none !important;
    transition: all 0.1s ease-in-out;
    font-size: 15px;
    font-weight: 700;
}

.btn-md {
    border-radius: 14px;
    border: 0 !important;
    box-shadow: none !important;
    transition: all 0.1s ease-in-out;
    font-size: 18px;
    font-weight: 700;
    padding: 6px 18px !important;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #800000 !important;
    color: #fff !important;
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: #ECD9D9 !important;
    color: #800000 !important;
}

.btn-wrapper {
    background-color: #fff;
    box-shadow: 0px 4px 19.1px 0px #6C757D40;
    padding: 11px 10px;
}

@media screen and (max-width: 575px) {
    .btn:not(.btn-sm) {
        min-height: 48px;
    }

    .btn-wrapper {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 50;
    }
}

/*  */

.card {
    border-radius: 10px;
    border: solid 1px #e6e6e6;
    background-color: #fff;
    overflow: hidden;
}

.card-header {
    background-color: #fff;
    padding: 12px 10px;
    font-size: 17px;
    font-weight: 700;
    color: #6F6C7D;
    border: 0;
    border-bottom: solid 1px #e6e6e6;
}

.card-body {
    padding: 16px 10px;
}

.card-image img {
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 575px) {
    .card-header {
        padding: 8px 10px;
    }
}

/*  */

.flight-card .airplane-icon {
    height: 18px;
    display: flex;
    align-items: center;
}

.flight-card .airplane-icon.return {
    transform: rotate(180deg);
}

.flight-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #6F6C7D;
    margin-bottom: 0;
    margin-left: 7px;
}

.flight-card .flight-card-header {
    display: flex;
    align-items: center;
    border-bottom: solid 1px #e6e6e6;
    padding: 8px 10px;
}

.flight-card .route p {
    font-size: 13px;
    color: #7D7878;
}

.flight-card .flight-time {
    font-size: 15px;
    color: #403A3A;
    font-weight: 700;
    margin: 0;
}

/*  */

#signature {
    border: 1px solid #EFEFEF;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    height: 200px;
    touch-action: none;
    background-color: #fff;
}

.bootstrap-dialog .modal-content {
    border-radius: 16px;
}

.bootstrap-dialog.type-info .modal-header {
    background-color: #FAFAFA;
    border: 0;
}

.bootstrap-dialog.type-info .modal-content {
    background-color: #FAFAFA;
}

.bootstrap-dialog .bootstrap-dialog-title {
    color: #292525;
    font-size: 22px;
    font-weight: 600;
}

.bootstrap-dialog.type-info .modal-footer {
    border: 0;
    padding: 0 10px 10px;
}

/*  */

.bg-green {
    background-color: #198039;
    padding: 7px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
}

.border-gray800 {
    border: solid 1px #403A3A;
    border-radius: 12px;
    padding: 13px 0;
}

.border-red {
    border: solid 1px #800000;
    border-left: solid 4px #800000;
    border-radius: 12px;
    padding: 40px 20px 32px;
    margin-top: 32px;
}

.pix-step {
    font-family: "Inter", sans-serif;
    border: solid 1px #575252;
    font-size: 10px;
    color: #575252;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 20px;
    margin-right: 10px;
    margin-top: 6px;
    width: 15px;
    height: 15px;
    min-width: 15px;
    border-radius: 50%;
}

.card-disabled {
    border-color: #E6E6E6;
}

.card-disabled * {
    color: #BDBDBD;
    fill: #BDBDBD;
    background: none;
}

#copyMsg {
    position: absolute;
    width: 100%;
    top: -25px;
    display: none;
}

.whitespace-nowrap {
    white-space: nowrap;
}

/*  */

.custom-readonly {
    border: 0;
    width: 100%;
}

/*  */
.custom-link {
    display: inline-block;
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.custom-link:hover {
    text-decoration: none;
}

.custom-link-primary {
    color: #800000;
}

/*  */
.custom-attachment {
    position: relative;
    display: block;
    width: 100%;
    border: 1px solid #adadbbff;
}

.custom-attachment::after {
    content: "";
    display: block;
    padding-top: 100%; 
}

.custom-attachment img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*  */
.custom-input,
.custom-input-file-wrapper {
    display: block;
    width: 100%;
    padding: 19px 16px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: #49454F;
    background-color: #ffffff;
    border: 1px solid #79747E;
    border-radius: 5px
}

.custom-input {
    height: 58px;
}

.custom-input::-moz-placeholder,
.custom-input-file-wrapper::-moz-placeholder {
    color: #6c6b75
}

.custom-input::placeholder,
.custom-input-file-wrapper::placeholder {
    color: #6c6b75
}

.custom-select {
    min-height: 58px;
    height: 58px;
    border: 1px solid #79747E;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='41' viewBox='0 0 40 41' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 0V41H1.5V0H0.5Z' fill='%23D8D8D8'/%3E%3Cpath d='M20.773 16.6866L30 26.4564L39.227 16.6866L37.773 15.3134L30 23.5436L22.227 15.3134L20.773 16.6866Z' fill='%236C6B75'/%3E%3C/svg%3E");
    background-position: calc(100% - 14px) 15px;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    -webkit-appearance: none;
    appearance: none;
}

input[type=file] {
    display: none
}

.custom-input-file-wrapper {
    position: relative;
    margin-bottom: 20px;
    font-weight: 400;
    color: #6c6b75;
    height: -moz-fit-content;
    height: fit-content;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: 12px;
    display: flex;
    justify-content: space-between
}

.custom-input-file-wrapper::after {
    content: "Selecionar arquivo";
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    text-align: center;
    white-space: nowrap;
    display: inline;
    padding: 7px 20px;
    min-height: 38px;
    height: -moz-fit-content;
    height: fit-content;
    top: calc(50% - 19px);
    right: 14px;
    color: #800000;
    border: solid 1px #800000;
    border-radius: 2px;
    transition: all .3s ease-in-out
}

.custom-input-file-wrapper:hover:after {
    background-color: #800000;
    color: #fff
}

.label-animation {
    position: relative
}

.label-animation input,
.label-animation textarea {
    color: rgba(0, 0, 0, 0)
}

.label-animation input::-moz-placeholder,
.label-animation textarea::-moz-placeholder {
    opacity: 0;
    font-size: 15px;
}

.label-animation input::placeholder,
.label-animation textarea::placeholder {
    opacity: 0;
    font-size: 15px;
}

.label-animation label {
    pointer-events: none;
    position: absolute;
    top: 16px;
    left: 10px;
    padding: 0 10px;
    color: #49454F;
    transition: all .2s;
    font-size: 15px;
    font-weight: 400;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

.label-animation.active label,
.label-animation.focus label,
.label-animation.select-active label {
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 400;
    background: #fff;
    top: -10px;
    font-size: 12px;
    color: #65558F
}

.label-animation:focus-visible {
    border: solid 1px #65558F;
    outline: solid 2px #65558F !important;
}

.label-animation.active input,
.label-animation.active textarea,
.label-animation.focus input,
.label-animation.focus textarea,
.label-animation.select-active input,
.label-animation.select-active textarea {
    color: #525252;
    border: solid 1px #65558F;
}

.label-animation.active .custom-input,
.label-animation.active .custom-select,
.label-animation.focus .custom-input,
.label-animation.focus .custom-select,
.label-animation.select-active .custom-input,
.label-animation.select-active .custom-select {
    background-color: #fff
}

.label-animation option {
    color: #6c6b75
}

.label-animation.hide:not(.select-active) .custom-select {
    color: rgba(0, 0, 0, 0)
}

.custom-input[readonly] {
    /* display: none; */
    border-color: #D7D6D9 !important;
    color: #C9C8CB !important;
}

/*  */

#billets-tab .nav-item {
    width: 50%;
    display: block;
}

#billets-tab .nav-item button {
    font-size: 15px;
    font-weight: bold;
    background-color: transparent;
    border: 0;
    color: #767676;
    border-bottom: solid 1px #767676;
    width: 100%;
}

#billets-tab .nav-item button.active {
    color: #800000;
}

/*  */

.checkout-steps {
    width: 100%;
    background-color: #fff;
    display: flex;
    padding: 0 10px;
}

.checkout-steps a {
    padding: 20px 2px;
    flex: 1;
    text-align: center;
    color: #BDBDBD;
    text-decoration: none;
}

.checkout-steps a::before {
    content: '';
    display: block;
    width: 100%;
    border-radius: 2px;
    height: 4px;
    background-color: #BDBDBD;
}

.checkout-steps a.previous-step {
    color: #7D7878;
}

.checkout-steps a.previous-step::before {
    background-color: #800000;
    opacity: 50%;
}

.checkout-steps a.current-step {
    color: #575252;
}

.checkout-steps a.current-step::before {
    background-color: #800000;
}

@media screen and (max-width:575px) {
    .checkout-steps a {
        font-size: 15px;
        padding: 10px 2px;
    }
}

.contract-item h3 button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    background-color: transparent;
    padding: 1rem 0;
    width: 100%;
    gap: 12px;
}

.contract-item h3 button i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: all 200ms ease-in-out;
}

.contract-item h3 button.collapsed i {
    transform: rotate(180deg);
}

.buttonTabReceivingPlan {
    display: block;
    border: none;
    box-shadow: 0;
    background: transparent;
    width: 100%;
}

.navTabsReceivingPlan {
    border: none;
}

.not-mb-text p:last-of-type {
    margin-bottom: 0 !important;
}

@media print {
    .btn-update,
    .next-step,
    .main-footer,
    .checkout-steps,
    .btn-print{
        display: none;
    }
}

.phone-by-ddi {
    display: flex !important;
    gap: 12px;
}

.phone-by-ddi > .label-animation {
    flex: 1;
}