.modal{
    --bs-modal-zindex:1055;
    --bs-modal-width:500px;
    --bs-modal-padding:1rem;
    --bs-modal-margin:0.5rem;
    --bs-modal-color: ;
    --bs-modal-bg:#fff;
    --bs-modal-border-color:var(--bs-border-color-translucent);
    --bs-modal-border-width:1px;
    --bs-modal-border-radius:0.5rem;
    --bs-modal-box-shadow:0 0.125rem 0.25rem rgba(0,0,0,.075);
    --bs-modal-inner-border-radius:calc(0.5rem - 1px);
    --bs-modal-header-padding-x:1rem;
    --bs-modal-header-padding-y:1rem;
    --bs-modal-header-padding:1rem 1rem;
    --bs-modal-header-border-color:var(--bs-border-color);
    --bs-modal-header-border-width:1px;
    --bs-modal-title-line-height:1.5;
    --bs-modal-footer-gap:0.5rem;
    --bs-modal-footer-bg: ;
    --bs-modal-footer-border-color:var(--bs-border-color);
    --bs-modal-footer-border-width:1px;
    display:none;
    height:100%;
    left:0;
    outline:0;
    overflow-x:hidden;
    overflow-y:auto;
    position:fixed;
    top:0;
    width:100%;
    z-index:var(--bs-modal-zindex)
}
.modal-dialog{
    margin:var(--bs-modal-margin);
    pointer-events:none;
    position:relative;
    width:auto
}
.modal.fade .modal-dialog{
    transform:translateY(-50px);
    transition:transform .3s ease-out
}
@media (prefers-reduced-motion:reduce){
    .modal.fade .modal-dialog{
        transition:none
    }
}
.modal.show .modal-dialog{
    transform:none
}
.modal.modal-static .modal-dialog{
    transform:scale(1.02)
}
.modal-dialog-scrollable{
    height:calc(100% - var(--bs-modal-margin)*2)
}
.modal-dialog-scrollable .modal-content{
    max-height:100%;
    overflow:hidden
}
.modal-dialog-scrollable .modal-body{
    overflow-y:auto
}
.modal-dialog-centered{
    align-items:center;
    display:flex;
    min-height:calc(100% - var(--bs-modal-margin)*2)
}
.modal-content{
    background-clip:padding-box;
    background-color:var(--bs-modal-bg);
    border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius:var(--bs-modal-border-radius);
    color:var(--bs-modal-color);
    display:flex;
    flex-direction:column;
    outline:0;
    pointer-events:auto;
    position:relative;
    width:100%
}
.modal-backdrop{
    --bs-backdrop-zindex:1050;
    --bs-backdrop-bg:#000;
    --bs-backdrop-opacity:0.5;
    background-color:var(--bs-backdrop-bg);
    height:100vh;
    left:0;
    position:fixed;
    top:0;
    width:100vw;
    z-index:var(--bs-backdrop-zindex)
}
.modal-backdrop.fade{
    opacity:0
}
.modal-backdrop.show{
    opacity:var(--bs-backdrop-opacity)
}
.modal-header{
    align-items:center;
    border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius:var(--bs-modal-inner-border-radius);
    border-top-right-radius:var(--bs-modal-inner-border-radius);
    display:flex;
    flex-shrink:0;
    justify-content:space-between;
    padding:var(--bs-modal-header-padding)
}
.modal-header .btn-close{
    margin:calc(var(--bs-modal-header-padding-y)*-.5) calc(var(--bs-modal-header-padding-x)*-.5) calc(var(--bs-modal-header-padding-y)*-.5) auto;
    padding:calc(var(--bs-modal-header-padding-y)*.5) calc(var(--bs-modal-header-padding-x)*.5)
}
.modal-title{
    line-height:var(--bs-modal-title-line-height);
    margin-bottom:0
}
.modal-body{
    flex:1 1 auto;
    padding:var(--bs-modal-padding);
    position:relative
}
.modal-footer{
    align-items:center;
    background-color:var(--bs-modal-footer-bg);
    border-bottom-left-radius:var(--bs-modal-inner-border-radius);
    border-bottom-right-radius:var(--bs-modal-inner-border-radius);
    border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    display:flex;
    flex-shrink:0;
    flex-wrap:wrap;
    justify-content:flex-end;
    padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap)*.5)
}
.modal-footer>*{
    margin:calc(var(--bs-modal-footer-gap)*.5)
}
@media (min-width:576px){
    .modal{
        --bs-modal-margin:1.75rem;
        --bs-modal-box-shadow:0 0.5rem 1rem rgba(0,0,0,.15)
    }
    .modal-dialog{
        margin-left:auto;
        margin-right:auto;
        max-width:var(--bs-modal-width)
    }
    .modal-sm{
        --bs-modal-width:300px
    }
}
@media (min-width:992px){
    .modal-lg,.modal-xl{
        --bs-modal-width:800px
    }
}
@media (min-width:1200px){
    .modal-xl{
        --bs-modal-width:1140px
    }
}
.modal-fullscreen{
    height:100%;
    margin:0;
    max-width:none;
    width:100vw
}
.modal-fullscreen .modal-content{
    border:0;
    border-radius:0;
    height:100%
}
.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{
    border-radius:0
}
.modal-fullscreen .modal-body{
    overflow-y:auto
}
@media (max-width:575.98px){
    .modal-fullscreen-sm-down{
        height:100%;
        margin:0;
        max-width:none;
        width:100vw
    }
    .modal-fullscreen-sm-down .modal-content{
        border:0;
        border-radius:0;
        height:100%
    }
    .modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header{
        border-radius:0
    }
    .modal-fullscreen-sm-down .modal-body{
        overflow-y:auto
    }
}
@media (max-width:767.98px){
    .modal-fullscreen-md-down{
        height:100%;
        margin:0;
        max-width:none;
        width:100vw
    }
    .modal-fullscreen-md-down .modal-content{
        border:0;
        border-radius:0;
        height:100%
    }
    .modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header{
        border-radius:0
    }
    .modal-fullscreen-md-down .modal-body{
        overflow-y:auto
    }
}
@media (max-width:991.98px){
    .modal-fullscreen-lg-down{
        height:100%;
        margin:0;
        max-width:none;
        width:100vw
    }
    .modal-fullscreen-lg-down .modal-content{
        border:0;
        border-radius:0;
        height:100%
    }
    .modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header{
        border-radius:0
    }
    .modal-fullscreen-lg-down .modal-body{
        overflow-y:auto
    }
}
@media (max-width:1199.98px){
    .modal-fullscreen-xl-down{
        height:100%;
        margin:0;
        max-width:none;
        width:100vw
    }
    .modal-fullscreen-xl-down .modal-content{
        border:0;
        border-radius:0;
        height:100%
    }
    .modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header{
        border-radius:0
    }
    .modal-fullscreen-xl-down .modal-body{
        overflow-y:auto
    }
}
@media (max-width:1399.98px){
    .modal-fullscreen-xxl-down{
        height:100%;
        margin:0;
        max-width:none;
        width:100vw
    }
    .modal-fullscreen-xxl-down .modal-content{
        border:0;
        border-radius:0;
        height:100%
    }
    .modal-fullscreen-xxl-down .modal-footer,.modal-fullscreen-xxl-down .modal-header{
        border-radius:0
    }
    .modal-fullscreen-xxl-down .modal-body{
        overflow-y:auto
    }
}
.alert{
    --bs-alert-bg:transparent;
    --bs-alert-padding-x:1rem;
    --bs-alert-padding-y:1rem;
    --bs-alert-margin-bottom:1rem;
    --bs-alert-color:inherit;
    --bs-alert-border-color:transparent;
    --bs-alert-border:1px solid var(--bs-alert-border-color);
    --bs-alert-border-radius:0.375rem;
    background-color:var(--bs-alert-bg);
    border:var(--bs-alert-border);
    border-radius:var(--bs-alert-border-radius);
    color:var(--bs-alert-color);
    margin-bottom:var(--bs-alert-margin-bottom);
    padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);
    position:relative
}
.alert-heading{
    color:inherit
}
.alert-link{
    font-weight:700
}
.alert-dismissible{
    padding-right:3rem
}
.alert-dismissible .btn-close{
    padding:1.25rem 1rem;
    position:absolute;
    right:0;
    top:0;
    z-index:2
}
.alert-primary{
    --bs-alert-color:#084298;
    --bs-alert-bg:#cfe2ff;
    --bs-alert-border-color:#b6d4fe
}
.alert-primary .alert-link{
    color:#06357a
}
.alert-secondary{
    --bs-alert-color:#41464b;
    --bs-alert-bg:#e2e3e5;
    --bs-alert-border-color:#d3d6d8
}
.alert-secondary .alert-link{
    color:#34383c
}
.alert-success{
    --bs-alert-color:#0f5132;
    --bs-alert-bg:#d1e7dd;
    --bs-alert-border-color:#badbcc
}
.alert-success .alert-link{
    color:#0c4128
}
.alert-info{
    --bs-alert-color:#055160;
    --bs-alert-bg:#cff4fc;
    --bs-alert-border-color:#b6effb
}
.alert-info .alert-link{
    color:#04414d
}
.alert-warning{
    --bs-alert-color:#664d03;
    --bs-alert-bg:#fff3cd;
    --bs-alert-border-color:#ffecb5
}
.alert-warning .alert-link{
    color:#523e02
}
.alert-danger{
    --bs-alert-color:#842029;
    --bs-alert-bg:#f8d7da;
    --bs-alert-border-color:#f5c2c7
}
.alert-danger .alert-link{
    color:#6a1a21
}
.alert-light{
    --bs-alert-color:#636464;
    --bs-alert-bg:#fefefe;
    --bs-alert-border-color:#fdfdfe
}
.alert-light .alert-link{
    color:#4f5050
}
.alert-dark{
    --bs-alert-color:#141619;
    --bs-alert-bg:#d3d3d4;
    --bs-alert-border-color:#bcbebf
}
.alert-dark .alert-link{
    color:#101214
}
.dropdown,.dropdown-center,.dropend,.dropstart,.dropup,.dropup-center{
    position:relative
}
.dropdown-toggle{
    white-space:nowrap
}
.dropdown-toggle:after{
    border-bottom:0;
    border-left:.3em solid transparent;
    border-right:.3em solid transparent;
    border-top:.3em solid;
    content:"";
    display:inline-block;
    margin-left:.255em;
    vertical-align:.255em
}
.dropdown-toggle:empty:after{
    margin-left:0
}
.dropdown-menu{
    --bs-dropdown-zindex:1000;
    --bs-dropdown-min-width:10rem;
    --bs-dropdown-padding-x:0;
    --bs-dropdown-padding-y:0.5rem;
    --bs-dropdown-spacer:0.125rem;
    --bs-dropdown-font-size:1rem;
    --bs-dropdown-color:#212529;
    --bs-dropdown-bg:#fff;
    --bs-dropdown-border-color:var(--bs-border-color-translucent);
    --bs-dropdown-border-radius:0.375rem;
    --bs-dropdown-border-width:1px;
    --bs-dropdown-inner-border-radius:calc(0.375rem - 1px);
    --bs-dropdown-divider-bg:var(--bs-border-color-translucent);
    --bs-dropdown-divider-margin-y:0.5rem;
    --bs-dropdown-box-shadow:0 0.5rem 1rem rgba(0,0,0,.15);
    --bs-dropdown-link-color:#212529;
    --bs-dropdown-link-hover-color:#1e2125;
    --bs-dropdown-link-hover-bg:#e9ecef;
    --bs-dropdown-link-active-color:#fff;
    --bs-dropdown-link-active-bg:#0d6efd;
    --bs-dropdown-link-disabled-color:#adb5bd;
    --bs-dropdown-item-padding-x:1rem;
    --bs-dropdown-item-padding-y:0.25rem;
    --bs-dropdown-header-color:#6c757d;
    --bs-dropdown-header-padding-x:1rem;
    --bs-dropdown-header-padding-y:0.5rem;
    background-clip:padding-box;
    background-color:var(--bs-dropdown-bg);
    border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
    border-radius:var(--bs-dropdown-border-radius);
    color:var(--bs-dropdown-color);
    display:none;
    font-size:var(--bs-dropdown-font-size);
    list-style:none;
    margin:0;
    min-width:var(--bs-dropdown-min-width);
    padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    position:absolute;
    text-align:left;
    z-index:var(--bs-dropdown-zindex)
}
.dropdown-menu[data-bs-popper]{
    left:0;
    margin-top:var(--bs-dropdown-spacer);
    top:100%
}
.dropdown-menu-start{
    --bs-position:start
}
.dropdown-menu-start[data-bs-popper]{
    left:0;
    right:auto
}
.dropdown-menu-end{
    --bs-position:end
}
.dropdown-menu-end[data-bs-popper]{
    left:auto;
    right:0
}
@media (min-width:576px){
    .dropdown-menu-sm-start{
        --bs-position:start
    }
    .dropdown-menu-sm-start[data-bs-popper]{
        left:0;
        right:auto
    }
    .dropdown-menu-sm-end{
        --bs-position:end
    }
    .dropdown-menu-sm-end[data-bs-popper]{
        left:auto;
        right:0
    }
}
@media (min-width:768px){
    .dropdown-menu-md-start{
        --bs-position:start
    }
    .dropdown-menu-md-start[data-bs-popper]{
        left:0;
        right:auto
    }
    .dropdown-menu-md-end{
        --bs-position:end
    }
    .dropdown-menu-md-end[data-bs-popper]{
        left:auto;
        right:0
    }
}
@media (min-width:992px){
    .dropdown-menu-lg-start{
        --bs-position:start
    }
    .dropdown-menu-lg-start[data-bs-popper]{
        left:0;
        right:auto
    }
    .dropdown-menu-lg-end{
        --bs-position:end
    }
    .dropdown-menu-lg-end[data-bs-popper]{
        left:auto;
        right:0
    }
}
@media (min-width:1200px){
    .dropdown-menu-xl-start{
        --bs-position:start
    }
    .dropdown-menu-xl-start[data-bs-popper]{
        left:0;
        right:auto
    }
    .dropdown-menu-xl-end{
        --bs-position:end
    }
    .dropdown-menu-xl-end[data-bs-popper]{
        left:auto;
        right:0
    }
}
@media (min-width:1400px){
    .dropdown-menu-xxl-start{
        --bs-position:start
    }
    .dropdown-menu-xxl-start[data-bs-popper]{
        left:0;
        right:auto
    }
    .dropdown-menu-xxl-end{
        --bs-position:end
    }
    .dropdown-menu-xxl-end[data-bs-popper]{
        left:auto;
        right:0
    }
}
.dropup .dropdown-menu[data-bs-popper]{
    bottom:100%;
    margin-bottom:var(--bs-dropdown-spacer);
    margin-top:0;
    top:auto
}
.dropup .dropdown-toggle:after{
    border-bottom:.3em solid;
    border-left:.3em solid transparent;
    border-right:.3em solid transparent;
    border-top:0;
    content:"";
    display:inline-block;
    margin-left:.255em;
    vertical-align:.255em
}
.dropup .dropdown-toggle:empty:after{
    margin-left:0
}
.dropend .dropdown-menu[data-bs-popper]{
    left:100%;
    margin-left:var(--bs-dropdown-spacer);
    margin-top:0;
    right:auto;
    top:0
}
.dropend .dropdown-toggle:after{
    border-bottom:.3em solid transparent;
    border-left:.3em solid;
    border-right:0;
    border-top:.3em solid transparent;
    content:"";
    display:inline-block;
    margin-left:.255em;
    vertical-align:.255em
}
.dropend .dropdown-toggle:empty:after{
    margin-left:0
}
.dropend .dropdown-toggle:after{
    vertical-align:0
}
.dropstart .dropdown-menu[data-bs-popper]{
    left:auto;
    margin-right:var(--bs-dropdown-spacer);
    margin-top:0;
    right:100%;
    top:0
}
.dropstart .dropdown-toggle:after{
    content:"";
    display:inline-block;
    display:none;
    margin-left:.255em;
    vertical-align:.255em
}
.dropstart .dropdown-toggle:before{
    border-bottom:.3em solid transparent;
    border-right:.3em solid;
    border-top:.3em solid transparent;
    content:"";
    display:inline-block;
    margin-right:.255em;
    vertical-align:.255em
}
.dropstart .dropdown-toggle:empty:after{
    margin-left:0
}
.dropstart .dropdown-toggle:before{
    vertical-align:0
}
.dropdown-divider{
    border-top:1px solid var(--bs-dropdown-divider-bg);
    height:0;
    margin:var(--bs-dropdown-divider-margin-y) 0;
    opacity:1;
    overflow:hidden
}
.dropdown-item{
    background-color:transparent;
    border:0;
    clear:both;
    color:var(--bs-dropdown-link-color);
    display:block;
    font-weight:400;
    padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    text-align:inherit;
    text-decoration:none;
    white-space:nowrap;
    width:100%
}
.dropdown-item:focus,.dropdown-item:hover{
    background-color:var(--bs-dropdown-link-hover-bg);
    color:var(--bs-dropdown-link-hover-color)
}
.dropdown-item.active,.dropdown-item:active{
    background-color:var(--bs-dropdown-link-active-bg);
    color:var(--bs-dropdown-link-active-color);
    text-decoration:none
}
.dropdown-item.disabled,.dropdown-item:disabled{
    background-color:transparent;
    color:var(--bs-dropdown-link-disabled-color);
    pointer-events:none
}
.dropdown-menu.show{
    display:block
}
.dropdown-header{
    color:var(--bs-dropdown-header-color);
    display:block;
    font-size:.875rem;
    margin-bottom:0;
    padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
    white-space:nowrap
}
.dropdown-item-text{
    color:var(--bs-dropdown-link-color);
    display:block;
    padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x)
}
.dropdown-menu-dark{
    --bs-dropdown-color:#dee2e6;
    --bs-dropdown-bg:#343a40;
    --bs-dropdown-border-color:var(--bs-border-color-translucent);
    --bs-dropdown-box-shadow: ;
    --bs-dropdown-link-color:#dee2e6;
    --bs-dropdown-link-hover-color:#fff;
    --bs-dropdown-divider-bg:var(--bs-border-color-translucent);
    --bs-dropdown-link-hover-bg:hsla(0,0%,100%,.15);
    --bs-dropdown-link-active-color:#fff;
    --bs-dropdown-link-active-bg:#0d6efd;
    --bs-dropdown-link-disabled-color:#adb5bd;
    --bs-dropdown-header-color:#adb5bd
}
.input-group{
    align-items:stretch;
    display:flex;
    flex-wrap:wrap;
    position:relative;
    width:100%
}
.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select{
    flex:1 1 auto;
    min-width:0;
    position:relative;
    width:1%
}
.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus{
    z-index:5
}
.input-group .btn{
    position:relative;
    z-index:2
}
.input-group .btn:focus{
    z-index:5
}
.input-group-text{
    align-items:center;
    background-color:#e9ecef;
    border:1px solid #ced4da;
    border-radius:.375rem;
    color:#212529;
    display:flex;
    font-size:1rem;
    font-weight:400;
    line-height:1.5;
    padding:.375rem .75rem;
    text-align:center;
    white-space:nowrap
}
.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{
    border-radius:.5rem;
    font-size:1.25rem;
    padding:.5rem 1rem
}
.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{
    border-radius:.25rem;
    font-size:.875rem;
    padding:.25rem .5rem
}
.input-group-lg>.form-select,.input-group-sm>.form-select{
    padding-right:3rem
}
.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){
    border-bottom-right-radius:0;
    border-top-right-radius:0
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){
    border-bottom-left-radius:0;
    border-top-left-radius:0;
    margin-left:-1px
}
.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{
    border-bottom-left-radius:0;
    border-top-left-radius:0
}
.form-control{
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    background-clip:padding-box;
    border-radius:.375rem;
    color:#212529;
    display:block;
    font-size:1rem;
    font-weight:400;
    line-height:1.5;
    padding:.375rem .75rem;
    transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    width:100%
}
@media (prefers-reduced-motion:reduce){
    .form-control{
        transition:none
    }
}
.form-control[type=file]{
    overflow:hidden
}
.form-control[type=file]:not(:disabled):not([readonly]){
    cursor:pointer
}
.form-control:focus{
    background-color:#fff;
    border-color:#86b7fe;
    box-shadow:0 0 0 .25rem rgba(13,110,253,.25);
    color:#212529;
    outline:0
}
.form-control::-webkit-date-and-time-value{
    height:1.5em
}
.form-control::-moz-placeholder{
    color:#6c757d;
    opacity:1
}
.form-control:-ms-input-placeholder{
    color:#6c757d;
    opacity:1
}
.form-control::placeholder{
    color:#6c757d;
    opacity:1
}
.form-control:disabled{
    background-color:#e9ecef;
    opacity:1
}
.form-control::-webkit-file-upload-button{
    -webkit-margin-end:.75rem;
    background-color:#e9ecef;
    border:0 solid;
    border-color:inherit;
    border-inline-end-width:1px;
    border-radius:0;
    color:#212529;
    margin:-.375rem -.75rem;
    margin-inline-end:.75rem;
    padding:.375rem .75rem;
    pointer-events:none;
    -webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}
.form-control::file-selector-button{
    -webkit-margin-end:.75rem;
    background-color:#e9ecef;
    border:0 solid;
    border-color:inherit;
    border-inline-end-width:1px;
    border-radius:0;
    color:#212529;
    margin:-.375rem -.75rem;
    margin-inline-end:.75rem;
    padding:.375rem .75rem;
    pointer-events:none;
    transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}
@media (prefers-reduced-motion:reduce){
    .form-control::-webkit-file-upload-button{
        -webkit-transition:none;
        transition:none
    }
    .form-control::file-selector-button{
        transition:none
    }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{
    background-color:#dde0e3
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button{
    background-color:#dde0e3
}
.form-control-plaintext{
    background-color:transparent;
    border:solid transparent;
    border-width:1px 0;
    color:#212529;
    display:block;
    line-height:1.5;
    margin-bottom:0;
    padding:.375rem 0;
    width:100%
}
.form-control-plaintext:focus{
    outline:0
}
.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{
    padding-left:0;
    padding-right:0
}
.form-control-sm{
    border-radius:.25rem;
    font-size:.875rem;
    min-height:calc(1.5em + .5rem + 2px);
    padding:.25rem .5rem
}
.form-control-sm::-webkit-file-upload-button{
    -webkit-margin-end:.5rem;
    margin:-.25rem -.5rem;
    margin-inline-end:.5rem;
    padding:.25rem .5rem
}
.form-control-sm::file-selector-button{
    -webkit-margin-end:.5rem;
    margin:-.25rem -.5rem;
    margin-inline-end:.5rem;
    padding:.25rem .5rem
}
.form-control-lg{
    border-radius:.5rem;
    font-size:1.25rem;
    min-height:calc(1.5em + 1rem + 2px);
    padding:.5rem 1rem
}
.form-control-lg::-webkit-file-upload-button{
    -webkit-margin-end:1rem;
    margin:-.5rem -1rem;
    margin-inline-end:1rem;
    padding:.5rem 1rem
}
.form-control-lg::file-selector-button{
    -webkit-margin-end:1rem;
    margin:-.5rem -1rem;
    margin-inline-end:1rem;
    padding:.5rem 1rem
}
textarea.form-control{
    min-height:calc(1.5em + .75rem + 2px)
}
textarea.form-control-sm{
    min-height:calc(1.5em + .5rem + 2px)
}
textarea.form-control-lg{
    min-height:calc(1.5em + 1rem + 2px)
}
.form-control-color{
    height:calc(1.5em + .75rem + 2px);
    padding:.375rem;
    width:3rem
}
.form-control-color:not(:disabled):not([readonly]){
    cursor:pointer
}
.form-control-color::-moz-color-swatch{
    border:0!important;
    border-radius:.375rem
}
.form-control-color::-webkit-color-swatch{
    border-radius:.375rem
}
.form-control-color.form-control-sm{
    height:calc(1.5em + .5rem + 2px)
}
.form-control-color.form-control-lg{
    height:calc(1.5em + 1rem + 2px)
}
.valid-feedback{
    color:#198754;
    display:none;
    font-size:.875em;
    margin-top:.25rem;
    width:100%
}
.valid-tooltip{
    background-color:rgba(25,135,84,.9);
    border-radius:.375rem;
    color:#fff;
    display:none;
    font-size:.875rem;
    margin-top:.1rem;
    max-width:100%;
    padding:.25rem .5rem;
    position:absolute;
    top:100%;
    z-index:5
}
.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{
    display:block
}
/* .form-control.is-valid,.was-validated .form-control:valid{
    background-image:url("data:image/svg+xml;
    charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
    background-position:right calc(.375em + .1875rem) center;
    background-repeat:no-repeat;
    background-size:calc(.75em + .375rem) calc(.75em + .375rem);
    border-color:#198754;
    padding-right:calc(1.5em + .75rem)
} */
.form-control.is-valid:focus,.was-validated .form-control:valid:focus{
    border-color:#198754;
    box-shadow:0 0 0 .25rem rgba(25,135,84,.25)
}
.was-validated textarea.form-control:valid,textarea.form-control.is-valid{
    background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);
    padding-right:calc(1.5em + .75rem)
}
.form-select.is-valid,.was-validated .form-select:valid{
    border-color:#198754
}
/* .form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{
    background-image:url("data:image/svg+xml;
    charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E"),url("data:image/svg+xml;
    charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
    background-position:right .75rem center,center right 2.25rem;
    background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem);
    padding-right:4.125rem
} */
.form-select.is-valid:focus,.was-validated .form-select:valid:focus{
    border-color:#198754;
    box-shadow:0 0 0 .25rem rgba(25,135,84,.25)
}
.form-control-color.is-valid,.was-validated .form-control-color:valid{
    width:calc(3.75rem + 1.5em)
}
.form-check-input.is-valid,.was-validated .form-check-input:valid{
    border-color:#198754
}
.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{
    background-color:#198754
}
.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{
    box-shadow:0 0 0 .25rem rgba(25,135,84,.25)
}
.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{
    color:#198754
}
.form-check-inline .form-check-input~.valid-feedback{
    margin-left:.5em
}
.input-group>.form-control:not(:focus).is-valid,.input-group>.form-floating:not(:focus-within).is-valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.was-validated .input-group>.form-select:not(:focus):valid{
    z-index:3
}
.invalid-feedback{
    color:#dc3545;
    display:none;
    font-size:.875em;
    margin-top:.25rem;
    width:100%
}
.invalid-tooltip{
    background-color:rgba(220,53,69,.9);
    border-radius:.375rem;
    color:#fff;
    display:none;
    font-size:.875rem;
    margin-top:.1rem;
    max-width:100%;
    padding:.25rem .5rem;
    position:absolute;
    top:100%;
    z-index:5
}
.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{
    display:block
}
/* .form-control.is-invalid,.was-validated .form-control:invalid{
    background-image:url("data:image/svg+xml;
    charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
    background-position:right calc(.375em + .1875rem) center;
    background-repeat:no-repeat;
    background-size:calc(.75em + .375rem) calc(.75em + .375rem);
    border-color:#dc3545;
    padding-right:calc(1.5em + .75rem)
} */
.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{
    border-color:#dc3545;
    box-shadow:0 0 0 .25rem rgba(220,53,69,.25)
}
.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{
    background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);
    padding-right:calc(1.5em + .75rem)
}
.form-select.is-invalid,.was-validated .form-select:invalid{
    border-color:#dc3545
}
/* .form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{
    background-image:url("data:image/svg+xml;
    charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E"),url("data:image/svg+xml;
    charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
    background-position:right .75rem center,center right 2.25rem;
    background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem);
    padding-right:4.125rem
} */
.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{
    border-color:#dc3545;
    box-shadow:0 0 0 .25rem rgba(220,53,69,.25)
}
.form-control-color.is-invalid,.was-validated .form-control-color:invalid{
    width:calc(3.75rem + 1.5em)
}
.form-check-input.is-invalid,.was-validated .form-check-input:invalid{
    border-color:#dc3545
}
.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{
    background-color:#dc3545
}
.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{
    box-shadow:0 0 0 .25rem rgba(220,53,69,.25)
}
.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{
    color:#dc3545
}
.form-check-inline .form-check-input~.invalid-feedback{
    margin-left:.5em
}
.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.was-validated .input-group>.form-select:not(:focus):invalid{
    z-index:4
}
.nav{
    --bs-nav-link-padding-x:1rem;
    --bs-nav-link-padding-y:0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color:var(--bs-link-color);
    --bs-nav-link-hover-color:var(--bs-link-hover-color);
    --bs-nav-link-disabled-color:#6c757d;
    display:flex;
    flex-wrap:wrap;
    list-style:none;
    margin-bottom:0;
    padding-left:0
}
.nav-link{
    color:var(--bs-nav-link-color);
    display:block;
    font-size:var(--bs-nav-link-font-size);
    font-weight:var(--bs-nav-link-font-weight);
    padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    text-decoration:none;
    transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out
}
@media (prefers-reduced-motion:reduce){
    .nav-link{
        transition:none
    }
}
.nav-link:focus,.nav-link:hover{
    color:var(--bs-nav-link-hover-color)
}
.nav-link.disabled{
    color:var(--bs-nav-link-disabled-color);
    cursor:default;
    pointer-events:none
}
.nav-tabs{
    --bs-nav-tabs-border-width:1px;
    --bs-nav-tabs-border-color:#dee2e6;
    --bs-nav-tabs-border-radius:0.375rem;
    --bs-nav-tabs-link-hover-border-color:#e9ecef #e9ecef #dee2e6;
    --bs-nav-tabs-link-active-color:#495057;
    --bs-nav-tabs-link-active-bg:#fff;
    --bs-nav-tabs-link-active-border-color:#dee2e6 #dee2e6 #fff;
    border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)
}
.nav-tabs .nav-link{
    background:none;
    border:var(--bs-nav-tabs-border-width) solid transparent;
    border-top-left-radius:var(--bs-nav-tabs-border-radius);
    border-top-right-radius:var(--bs-nav-tabs-border-radius);
    margin-bottom:calc(var(--bs-nav-tabs-border-width)*-1)
}
.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{
    border-color:var(--bs-nav-tabs-link-hover-border-color);
    isolation:isolate
}
.nav-tabs .nav-link.disabled,.nav-tabs .nav-link:disabled{
    background-color:transparent;
    border-color:transparent;
    color:var(--bs-nav-link-disabled-color)
}
.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{
    background-color:var(--bs-nav-tabs-link-active-bg);
    border-color:var(--bs-nav-tabs-link-active-border-color);
    color:var(--bs-nav-tabs-link-active-color)
}
.nav-tabs .dropdown-menu{
    border-top-left-radius:0;
    border-top-right-radius:0;
    margin-top:calc(var(--bs-nav-tabs-border-width)*-1)
}
.nav-pills{
    --bs-nav-pills-border-radius:0.375rem;
    --bs-nav-pills-link-active-color:#fff;
    --bs-nav-pills-link-active-bg:#0d6efd
}
.nav-pills .nav-link{
    background:none;
    border:0;
    border-radius:var(--bs-nav-pills-border-radius)
}
.nav-pills .nav-link:disabled{
    background-color:transparent;
    border-color:transparent;
    color:var(--bs-nav-link-disabled-color)
}
.nav-pills .nav-link.active,.nav-pills .show>.nav-link{
    background-color:var(--bs-nav-pills-link-active-bg);
    color:var(--bs-nav-pills-link-active-color)
}
.nav-fill .nav-item,.nav-fill>.nav-link{
    flex:1 1 auto;
    text-align:center
}
.nav-justified .nav-item,.nav-justified>.nav-link{
    flex-basis:0;
    flex-grow:1;
    text-align:center
}
.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{
    width:100%
}
.tab-content>.tab-pane{
    display:none
}
.tab-content>.active{
    display:block
}
.badge{
    --bs-badge-padding-x:0.65em;
    --bs-badge-padding-y:0.35em;
    --bs-badge-font-size:0.75em;
    --bs-badge-font-weight:700;
    --bs-badge-color:#fff;
    --bs-badge-border-radius:0.375rem;
    border-radius:var(--bs-badge-border-radius);
    color:var(--bs-badge-color);
    display:inline-block;
    font-size:var(--bs-badge-font-size);
    font-weight:var(--bs-badge-font-weight);
    line-height:1;
    padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);
    text-align:center;
    vertical-align:baseline;
    white-space:nowrap
}
.badge:empty{
    display:none
}
.btn .badge{
    position:relative;
    top:-1px
}
.badge-primary{
    background-color:#0d6efd;
    color:color-yiq(#0d6efd)
}
.badge-secondary{
    background-color:#6c757d;
    color:color-yiq(#6c757d)
}
.badge-success{
    background-color:#198754;
    color:color-yiq(#198754)
}
.badge-info{
    background-color:#0dcaf0;
    color:color-yiq(#0dcaf0)
}
.badge-warning{
    background-color:#ffc107;
    color:color-yiq(#ffc107)
}
.badge-danger{
    background-color:#dc3545;
    color:color-yiq(#dc3545)
}
.badge-light{
    background-color:#f8f9fa;
    color:color-yiq(#f8f9fa)
}
.badge-dark{
    background-color:#212529;
    color:color-yiq(#212529)
}
.card{
    --bs-card-spacer-y:1rem;
    --bs-card-spacer-x:1rem;
    --bs-card-title-spacer-y:0.5rem;
    --bs-card-border-width:1px;
    --bs-card-border-color:var(--bs-border-color-translucent);
    --bs-card-border-radius:0.375rem;
    --bs-card-box-shadow: ;
    --bs-card-inner-border-radius:calc(0.375rem - 1px);
    --bs-card-cap-padding-y:0.5rem;
    --bs-card-cap-padding-x:1rem;
    --bs-card-cap-bg:rgba(0,0,0,.03);
    --bs-card-cap-color: ;
    --bs-card-height: ;
    --bs-card-color: ;
    --bs-card-bg:#fff;
    --bs-card-img-overlay-padding:1rem;
    --bs-card-group-margin:0.75rem;
    word-wrap:break-word;
    background-clip:border-box;
    background-color:var(--bs-card-bg);
    border:1px solid rgba(0,0,0,.125);
    border-radius:var(--bs-card-border-radius);
    display:flex;
    flex-direction:column;
    height:var(--bs-card-height);
    min-width:0;
    position:relative
}
.card>hr{
    margin-left:0;
    margin-right:0
}
.card>.list-group{
    border-bottom:inherit;
    border-top:inherit
}
.card>.list-group:first-child{
    border-top-left-radius:var(--bs-card-inner-border-radius);
    border-top-right-radius:var(--bs-card-inner-border-radius);
    border-top-width:0
}
.card>.list-group:last-child{
    border-bottom-left-radius:var(--bs-card-inner-border-radius);
    border-bottom-right-radius:var(--bs-card-inner-border-radius);
    border-bottom-width:0
}
.card>.card-header+.list-group,.card>.list-group+.card-footer{
    border-top:0
}
.card-body{
    color:var(--bs-card-color);
    flex:1 1 auto;
    padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x)
}
.card-title{
    margin-bottom:var(--bs-card-title-spacer-y)
}
.card-subtitle{
    margin-top:calc(var(--bs-card-title-spacer-y)*-.5)
}
.card-subtitle,.card-text:last-child{
    margin-bottom:0
}
.card-link+.card-link{
    margin-left:var(--bs-card-spacer-x)
}
.card-header{
    background-color:var(--bs-card-cap-bg);
    border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color);
    color:var(--bs-card-cap-color);
    margin-bottom:0;
    padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x)
}
.card-header:first-child{
    border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0
}
.card-footer{
    background-color:var(--bs-card-cap-bg);
    border-top:var(--bs-card-border-width) solid var(--bs-card-border-color);
    color:var(--bs-card-cap-color);
    padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x)
}
.card-footer:last-child{
    border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)
}
.card-header-tabs{
    border-bottom:0;
    margin-bottom:calc(var(--bs-card-cap-padding-y)*-1);
    margin-left:calc(var(--bs-card-cap-padding-x)*-.5);
    margin-right:calc(var(--bs-card-cap-padding-x)*-.5)
}
.card-header-tabs .nav-link.active{
    background-color:var(--bs-card-bg);
    border-bottom-color:var(--bs-card-bg)
}
.card-header-pills{
    margin-left:calc(var(--bs-card-cap-padding-x)*-.5);
    margin-right:calc(var(--bs-card-cap-padding-x)*-.5)
}
.card-img-overlay{
    border-radius:var(--bs-card-inner-border-radius);
    bottom:0;
    left:0;
    padding:var(--bs-card-img-overlay-padding);
    position:absolute;
    right:0;
    top:0
}
.card-img,.card-img-bottom,.card-img-top{
    width:100%
}
.card-img,.card-img-top{
    border-top-left-radius:var(--bs-card-inner-border-radius);
    border-top-right-radius:var(--bs-card-inner-border-radius)
}
.card-img,.card-img-bottom{
    border-bottom-left-radius:var(--bs-card-inner-border-radius);
    border-bottom-right-radius:var(--bs-card-inner-border-radius)
}
.card-group>.card{
    margin-bottom:var(--bs-card-group-margin)
}
@media (min-width:576px){
    .card-group{
        display:flex;
        flex-flow:row wrap
    }
    .card-group>.card{
        flex:1 0 0%;
        margin-bottom:0
    }
    .card-group>.card+.card{
        border-left:0;
        margin-left:0
    }
    .card-group>.card:not(:last-child){
        border-bottom-right-radius:0;
        border-top-right-radius:0
    }
    .card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{
        border-top-right-radius:0
    }
    .card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{
        border-bottom-right-radius:0
    }
    .card-group>.card:not(:first-child){
        border-bottom-left-radius:0;
        border-top-left-radius:0
    }
    .card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{
        border-top-left-radius:0
    }
    .card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{
        border-bottom-left-radius:0
    }
}
body .daterangepicker{
    border-radius:4px;
    box-shadow:0 10px 35px 0 rgba(5,16,54,.102);
    font-family:inherit;
    margin-top:0;
    max-width:100vw;
    padding:30px;
    transition:all .2s cubic-bezier(.165,.84,.44,1);
    width:900px
}
@media (max-width:767px){
    body .daterangepicker{
        max-width:-webkit-max-content;
        max-width:-moz-max-content;
        max-width:max-content;
        width:100%
    }
}
body .daterangepicker:after,body .daterangepicker:before{
    display:none
}
body .daterangepicker .drp-calendar{
    max-width:48%;
    overflow:hidden;
    padding:0!important;
    width:100%
}
body .daterangepicker .drp-calendar .next,body .daterangepicker .drp-calendar .prev{
    speak:never;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    font-family:icomoon!important;
    font-size:var(--text-24)!important;
    font-style:normal;
    font-variant:normal;
    font-weight:400;
    line-height:1;
    text-transform:none
}
body .daterangepicker .drp-calendar .next:before,body .daterangepicker .drp-calendar .prev:before{
    content:"\e930"
}
body .daterangepicker .drp-calendar .next span,body .daterangepicker .drp-calendar .prev span{
    display:none
}
body .daterangepicker .drp-calendar .prev:before{
    content:"\e92b"
}
body .daterangepicker .drp-calendar.left{
    margin-right:33px!important
}
@media (max-width:991px){
    body .daterangepicker .drp-calendar.left{
        margin-right:28px!important
    }
}
body .daterangepicker .drp-calendar.left .calendar-table{
    padding:0
}
@media (min-width:768px){
    body .daterangepicker .drp-calendar.left .next{
        display:none
    }
}
body .daterangepicker .drp-calendar .calendar-table{
    background:transparent;
    padding:0!important
}
body .daterangepicker .drp-calendar .calendar-table table,body .daterangepicker .drp-calendar .calendar-table tbody,body .daterangepicker .drp-calendar .calendar-table td,body .daterangepicker .drp-calendar .calendar-table tfoot,body .daterangepicker .drp-calendar .calendar-table th,body .daterangepicker .drp-calendar .calendar-table thead,body .daterangepicker .drp-calendar .calendar-table tr{
    display:block
}
body .daterangepicker .drp-calendar .calendar-table table.table-condensed thead tr:first-child{
    display:flex;
    position:relative
}
body .daterangepicker .drp-calendar .calendar-table table.table-condensed thead tr:first-child th:not(.month){
    position:absolute
}
body .daterangepicker .drp-calendar .calendar-table table.table-condensed thead tr:first-child .next{
    right:0
}
body .daterangepicker .drp-calendar .calendar-table table.table-condensed thead tr:last-child{
    display:grid;
    font-size:14px;
    font-weight:600;
    gap:8px;
    grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    justify-content:center
}
@media (max-width:991px){
    body .daterangepicker .drp-calendar .calendar-table table.table-condensed thead tr:last-child{
        gap:5px
    }
}
body .daterangepicker .drp-calendar .calendar-table table.table-condensed thead tr:last-child>*{
    align-items:center;
    border-radius:100%;
    display:flex;
    flex-direction:column;
    height:48px;
    justify-content:center;
    width:48px
}
@media (max-width:991px){
    body .daterangepicker .drp-calendar .calendar-table table.table-condensed thead tr:last-child>*{
        height:45px;
        width:45px
    }
}
body .daterangepicker .drp-calendar .calendar-table table.table-condensed tbody tr{
    display:grid;
    gap:8px;
    grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    justify-content:center
}
@media (max-width:991px){
    body .daterangepicker .drp-calendar .calendar-table table.table-condensed tbody tr{
        gap:5px
    }
}
body .daterangepicker .drp-calendar .calendar-table table.table-condensed tbody tr td{
    align-items:center;
    border-radius:100%;
    display:flex;
    flex-direction:column;
    font-size:15px;
    height:48px;
    justify-content:center;
    width:48px
}
@media (max-width:991px){
    body .daterangepicker .drp-calendar .calendar-table table.table-condensed tbody tr td{
        height:45px;
        width:45px
    }
}
body .daterangepicker .drp-calendar .calendar-table table.table-condensed tbody tr td.today{
    border:1px solid var(--color-dark-3)
}
body .daterangepicker .drp-calendar .calendar-table table.table-condensed tbody tr td.active,body .daterangepicker .drp-calendar .calendar-table table.table-condensed tbody tr td.active:hover{
    background:var(--color-dark-3);
    color:#fff
}
body .daterangepicker .drp-calendar .calendar-table table.table-condensed tbody tr td:not(.off).in-range{
    position:relative
}
body .daterangepicker .drp-calendar .calendar-table table.table-condensed tbody tr td:not(.off).in-range:not(.active){
    background-color:#f5f5f5
}
body .daterangepicker .drp-calendar .calendar-table table.table-condensed tbody tr td:not(.off).in-range:not(.start-date):before{
    background-color:#f5f5f5;
    content:"";
    height:100%;
    left:-36px;
    position:absolute;
    right:16px;
    top:0;
    z-index:-2
}
body .daterangepicker .drp-calendar .calendar-table .month{
    font-size:16px;
    font-weight:500;
    margin-bottom:10px;
    width:100%
}
body .daterangepicker .drp-calendar .calendar-table .tooltip{
    display:none
}
@media (max-width:767px){
    body .daterangepicker .drp-calendar{
        max-width:100%
    }
    body .daterangepicker .drp-calendar.right{
        display:none
    }
}
body .daterangepicker.single{
    width:auto
}
body .daterangepicker.single .drp-calendar{
    margin-right:0!important;
    max-width:100%
}
body .daterangepicker.single .drp-calendar.left .next{
    display:block
}
.bravo-pagination .custom-pagination a,.goTrip-bravo-pagination .custom-pagination a{
    color:initial
}
.bravo-pagination .custom-pagination .p-item.active .p-link,.goTrip-bravo-pagination .custom-pagination .p-item.active .p-link{
    background-color:var(--color-dark-1)!important;
    color:var(--color-white)
}
.bravo-pagination .custom-pagination .p-item:hover .p-link,.goTrip-bravo-pagination .custom-pagination .p-item:hover .p-link{
    background-color:var(--color-light-2)
}
.form-input input.has-value~label,.form-input select.has-value~label,.form-input textarea.has-value~label{
    transform:translateY(-10px)
}
.form-input input:focus,.form-input select:focus,.form-input textarea:focus{
    border-width:1px!important;
    outline:1px solid #051036
}
.form-input select{
    border:1px solid var(--color-border);
    border-radius:4px;
    min-height:70px;
    padding:25px 15px 0;
    transition:all .2s cubic-bezier(.165,.84,.44,1)
}
.form-input select:focus{
    border:1px solid #051036;
    outline:1px solid #051036
}
.form-input select~label{
    transform:translateY(-10px)
}
.form-control{
    border:1px solid #ced4da
}
.bravo_wrap .form-search-all-service .form-date-search-hotel .check-in-out{
    opacity:0;
    position:absolute;
    z-index:-1
}
.bravo_wrap .form-search-all-service .searchMenu-guests .count-display input{
    text-align:center
}
.bravo_wrap .form-search-all-service .searchMenu-guests .count-display input::-webkit-inner-spin-button,.bravo_wrap .form-search-all-service .searchMenu-guests .count-display input::-webkit-outer-spin-button{
    display:none
}
@media (min-width:992px){
    .bravo_wrap .form-search-all-service .tabs__pane .mainSearch .button-grid.button-column-4{
        grid-template-columns:auto auto auto 177px
    }
    .bravo_wrap .form-search-all-service .tabs__pane .mainSearch .button-grid.button-column-3{
        grid-template-columns:auto auto 177px
    }
    .bravo_wrap .form-search-all-service .tabs__pane .mainSearch .button-grid.button-column-5{
        grid-template-columns:150px 150px 241px 192px 177px
    }
}
@media (min-width:1200px){
    .bravo_wrap .form-search-all-service .tabs__pane .mainSearch .button-grid.button-column-5{
        grid-template-columns:auto auto auto auto 177px
    }
}
.bravo_wrap .form-search-all-service .tabs__pane.-tab-item-flight .bravo_form{
    max-width:1110px;
    width:100%
}
.bravo_wrap .form-search-all-service .tabs__pane.-tab-item-flight .bravo_form .searchMenu-date .text-light-1{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap
}
.bravo_wrap .form-search-all-service .tabs__pane.-tab-item-flight .form-select-seat-type .seat-input{
    max-width:235px;
    overflow:hidden;
    width:100%
}
.bravo_wrap .form-search-all-service .tabs__pane.-tab-item-flight .form-select-seat-type .render{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap
}
.bravo_wrap .form-search-all-service.home4-form-search-hotel .masthead-slider .swiper-slide .masthead__content .content-wrap{
    margin-bottom:188px
}
@media (max-width:991px){
    .bravo_wrap .form-search-all-service.home4-form-search-hotel .masthead-slider .swiper-slide .masthead__content .content-wrap{
        margin-bottom:434px
    }
}
.bravo_wrap .form-search-all-service.home4-form-search-hotel .bravo_form{
    border-radius:4px;
    bottom:140px;
    box-shadow:0 20px 40px 0 rgba(5,16,54,.071);
    left:50%;
    max-width:960px;
    padding:0!important;
    position:absolute;
    transform:translateX(-50%);
    width:100%
}
@media (max-width:991px){
    .bravo_wrap .form-search-all-service.home4-form-search-hotel .bravo_form{
        max-width:690px
    }
}
@media (max-width:767px){
    .bravo_wrap .form-search-all-service.home4-form-search-hotel .bravo_form{
        left:0;
        margin:0 15px;
        transform:none;
        width:auto
    }
}
@media (min-width:992px){
    .bravo_wrap .form-search-all-service.home4-form-search-hotel .bravo_form .button-grid{
        grid-template-columns:1fr 250px 290px auto
    }
}
.bravo_wrap .form-search-all-service.home4-form-search-hotel .bravo_form .button-grid>div:not(.button-item){
    padding:24px
}
@media (max-width:991px){
    .bravo_wrap .form-search-all-service.home4-form-search-hotel .bravo_form .button-grid>div:not(.button-item){
        padding:24px 30px!important
    }
}
.bravo_wrap .form-search-all-service.home4-form-search-hotel .bravo_form .button-grid .button-item{
    height:100%
}
.bravo_wrap .form-search-all-service.home4-form-search-hotel .bravo_form .button-grid .button-item .button{
    border-radius:0!important;
    height:100%!important
}
@media (max-width:991px){
    .bravo_wrap .form-search-all-service.home4-form-search-hotel .bravo_form .button-grid .button-item .button{
        padding:15px 40px
    }
}
.bravo_wrap .bravo-tour-service .subtitle{
    max-width:84%
}
.bravo_wrap .bravo-tour-service .form-search-service-tour .bravo_form{
    border-radius:4px;
    padding:20px 20px 20px 0!important;
    width:100%
}
@media (max-width:767px){
    .bravo_wrap .bravo-tour-service .form-search-service-tour .bravo_form{
        padding:5px 20px 20px!important
    }
}
.bravo_wrap .bravo-tour-service .form-search-service-tour .bravo_form .button-item .button{
    border-radius:4px
}
.bravo_wrap .bravo-list-locations.style_8 .item{
    max-height:300px
}
.bravo_wrap .download-app.style_3 .col-left{
    order:1
}
.bravo_wrap .download-app.style_3 .col-right{
    order:0
}
@media (max-width:767px){
    .bravo_wrap .news-list-block .size-mb-100{
        height:auto;
        width:100%
    }
}
.bravo_wrap .bravo-featured-item{
    margin:30px 0;
    padding-bottom:15px
}
.bravo_wrap .bravo-featured-item .featured-item{
    margin-bottom:20px
}
.bravo_wrap .bravo-featured-item .featured-item .image{
    float:left;
    margin-top:15px
}
.bravo_wrap .bravo-featured-item .featured-item .content{
    margin-left:85px;
    padding:15px
}
@media (max-width:990px){
    .bravo_wrap .bravo-featured-item .featured-item .content{
        margin-left:60px
    }
}
.bravo_wrap .bravo-featured-item .featured-item .content .title{
    font-size:18px
}
.bravo_wrap .bravo-featured-item .featured-item .content .desc{
    font-size:13px
}
@media (max-width:990px){
    .bravo_wrap .bravo-featured-item .col-md-4{
        flex:0 0 100%;
        max-width:100%
    }
}
.bravo_wrap .bravo-featured-item.style2{
    border-bottom:0
}
.bravo_wrap .bravo-featured-item.style2 .number-circle{
    border:2px solid #5191fa;
    border-radius:50%;
    color:#5191fa;
    display:inline-block;
    font-size:40px;
    height:70px;
    line-height:69px;
    text-align:center;
    transition:all .3s;
    width:70px
}
.bravo_wrap .bravo-featured-item.style3 .featured-item{
    border:1px solid #dfdfdf;
    border-radius:8px;
    margin-bottom:30px;
    padding:20px;
    transition:all .3s
}
.bravo_wrap .bravo-featured-item.style3 .featured-item .image{
    float:none;
    margin-bottom:25px;
    margin-top:0;
    text-align:center
}
.bravo_wrap .bravo-featured-item.style3 .featured-item .content{
    margin-left:0;
    padding:0;
    text-align:center
}
.bravo_wrap .bravo-featured-item.style3 .featured-item:hover{
    border-color:#121313
}
.bravo_wrap .bravo-featured-item.style4{
    background-color:#f6f9ff;
    border-bottom:none;
    margin-top:0;
    padding:40px 0 20px
}
.bravo_wrap .bravo-featured-item.style5{
    background-color:#225d83;
    border-bottom:none;
    color:#fff;
    margin-top:0;
    padding:40px 0 10px
}
.bravo-vendor-form-register .form-group,.bravo_gallery .form-group{
    margin-bottom:10px
}
.bravo-vendor-form-register .form-control,.bravo_gallery .form-control{
    border:1px solid #ced4da;
    border-radius:5px
}
.bravo-vendor-form-register input[type=checkbox],.bravo_gallery input[type=checkbox]{
    width:auto
}
.bravo-vendor-form-register .embed-responsive,.bravo_gallery .embed-responsive{
    display:block;
    overflow:hidden;
    padding:0;
    position:relative;
    width:100%
}
.bravo-vendor-form-register .embed-responsive-16by9:before,.bravo_gallery .embed-responsive-16by9:before{
    content:"";
    display:block;
    padding-top:56.25%
}
.bravo-vendor-form-register .embed-responsive .embed-responsive-item,.bravo-vendor-form-register .embed-responsive embed,.bravo-vendor-form-register .embed-responsive iframe,.bravo-vendor-form-register .embed-responsive object,.bravo-vendor-form-register .embed-responsive video,.bravo_gallery .embed-responsive .embed-responsive-item,.bravo_gallery .embed-responsive embed,.bravo_gallery .embed-responsive iframe,.bravo_gallery .embed-responsive object,.bravo_gallery .embed-responsive video{
    border:0;
    bottom:0;
    height:100%;
    left:0;
    position:absolute;
    top:0;
    width:100%
}
.bravo_wrap .bravo-video-popup{
    display:inline-block;
    position:relative
}
.bravo_wrap .bravo-video-popup .play-icon{
    cursor:pointer;
    left:50%;
    opacity:.7;
    position:absolute;
    top:50%;
    transform:translate(-50%,-50%)
}
.bravo_wrap .bravo-video-popup:hover .play-icon{
    opacity:1
}
@media (min-width:1023px){
    .masthead.-type-2 .masthead__images{
        min-height:500px
    }
}
.dashboard__sidebar a{
    color:inherit
}
.dashboard__sidebar .sidebar__item .children{
    display:none
}
.dashboard__sidebar .sidebar__item .children.opened{
    display:block
}
.footer.-dashboard a,.footer.-dashboard p{
    color:inherit;
    font-size:inherit
}
.footer.-dashboard a:hover{
    color:#0a58ca
}
.footer.-dashboard .dropdown>a{
    color:inherit;
    font-size:var(--text-14);
    font-weight:500;
    text-decoration:underline
}
.sidebar__user .logo{
    text-align:center
}
.sidebar__user .logo .avatar{
    border-radius:50%;
    height:120px;
    margin:0 auto 10px;
    -o-object-fit:cover;
    object-fit:cover;
    width:120px
}
.sidebar__user .logo .avatar-text{
    align-items:center;
    background-color:#f2f5f9;
    border-radius:50%;
    display:flex;
    font-size:40px;
    font-weight:400;
    height:100px;
    justify-content:center;
    margin:0 auto 10px;
    width:100px
}
.sidebar__user .become-vendor{
    border-radius:20px;
    display:inline-flex
}
.button.-sm{
    padding:9px 24px
}
.dashboard__sidebar{
    padding-top:40px
}
.booking__history table tbody td a.btn,.booking__history table tbody td a:not([href]):not([tabindex]){
    color:#fff
}
table.table-3 td,table.table-3 th{
    padding-left:10px;
    padding-right:10px
}
.gotrip-bravo-pagination a{
    color:#1a2b48
}
.gotrip-bravo-pagination .active>*{
    background-color:#1a2b48;
    color:#fff
}
.pending span,.processing span,.unpaid span{
    background-color:#fff8dd;
    color:#ffc700
}
.partial_payment span{
    background-color:#e5f0fd;
    color:#3554d1
}
.completed span,.confirmed span,.paid span{
    background-color:#ebfcea;
    color:#008009
}
.cancel span,.cancelled span{
    background-color:#ddd;
    color:#000
}
.fail span{
    background-color:#fff5f8;
    color:#f1416c
}
.draft span{
    background-color:#f5f5f5;
    color:#697488
}
@media (max-width:1199px){
    .bravo_wrap .bravo_header .currency-dropdown,.bravo_wrap .bravo_header .language-dropdown,.bravo_wrap .bravo_header .login-item{
        display:none
    }
}
.bravo_wrap .bravo_header .login-item .subnav a{
    justify-content:flex-start
}
.bravo_wrap .bravo_header .login-mobile-item .dropdown-menu{
    min-width:auto;
    width:-webkit-max-content;
    width:-moz-max-content;
    width:max-content
}
.bravo_wrap .bravo_header .login-mobile-item .dropdown-menu li:first-child{
    border-bottom:1px solid silver;
    padding-bottom:6px
}
@media (max-width:1199px){
    .bravo_wrap .bravo_header .header-menu .header-menu__content .mobile-footer{
        display:flex;
        justify-content:flex-end
    }
    .bravo_wrap .bravo_header .header-menu .header-menu__content .mobile-footer .currency-dropdown,.bravo_wrap .bravo_header .header-menu .header-menu__content .mobile-footer .language-dropdown{
        color:initial;
        display:block;
        margin-left:15px
    }
    .bravo_wrap .bravo_header .header-menu .header-menu__content .mobile-footer .currency-dropdown a,.bravo_wrap .bravo_header .header-menu .header-menu__content .mobile-footer .language-dropdown a{
        align-items:center;
        display:inline-flex
    }
    .bravo_wrap .bravo_header .header-menu .header-menu__content .mobile-footer .currency-dropdown a i,.bravo_wrap .bravo_header .header-menu .header-menu__content .mobile-footer .language-dropdown a i{
        font-size:10px
    }
}
.bravo_wrap .bravo_header .header-menu.menu-right .menu__nav li.login-item .subnav{
    left:auto;
    right:0
}
.bravo_wrap .bravo_header .header-menu.menu-right .menu__nav li.login-item .subnav:before{
    left:75px
}
.bravo_wrap .bravo_header .header-logo .logo-dark{
    display:none
}
@media (max-width:1023px){
    .bravo_wrap .bravo_header.style-normal .header-menu{
        position:absolute;
        top:100%
    }
}
.header-transparent_v4 .bravo_wrap .bravo_header .currency-dropdown,.header-transparent_v4 .bravo_wrap .bravo_header .language-dropdown,.header-transparent_v4 .bravo_wrap .bravo_header .login-item{
    color:var(--color-white)
}
.header-transparent_v4 .bravo_wrap .bravo_header.is-sticky .menu-right .menu__nav .button{
    color:var(--color-white)!important
}
.header-transparent_v4 .bravo_wrap .bravo_header.is-sticky .menu-right .menu__nav li{
    color:var(--color-white)
}
.header-transparent_v4 .bravo_wrap .bravo_header .header-logo .logo-light{
    display:none
}
.header-transparent_v4 .bravo_wrap .bravo_header .header-logo .logo-light{
    display:block;
    opacity:1;
    position:static
}
.header-transparent_v5 .bravo_wrap .header-logo .logo-light{
    display:none
}
.header-transparent_v5 .bravo_wrap .header-logo .logo-dark{
    display:block;
    opacity:1;
    position:static
}
.bravo_wrap .bravo_header.is-menu-opened .header-logo .logo-dark{
    display:block
}
.bravo_header.is-menu-opened .icon-menu,.bravo_header.is-menu-opened .icon-user{
    color:#000
}
.login-item .is_login img{
    border-radius:50%;
    -o-object-fit:cover;
    object-fit:cover
}
.bravo_wrap .bravo_header .text-dark-1 .currency-dropdown,.bravo_wrap .bravo_header .text-dark-1 .language-dropdown,.bravo_wrap .bravo_header .text-dark-1 .login-item{
    color:#051036
}
.header-transparent_v6 .header .header-logo .logo-light{
    display:none
}
.header-transparent_v6 .header .header-logo .logo-dark{
    display:block;
    opacity:1;
    position:relative
}
.header-transparent_v7 .bravo_header .header__container .col-left{
    flex:1
}
.header-transparent_v7 .bravo_header .header__container .col-left .d-flex{
    justify-content:space-between
}
@media (max-width:1199px){
    .header .header-menu .mobile-footer .menu-item-has-children{
        position:relative
    }
    .header .header-menu .mobile-footer ul.subnav{
        background-color:#fff;
        border-radius:5px;
        bottom:100%;
        box-shadow:0 0 5px rgba(0,0,0,.16);
        display:none;
        padding:15px;
        position:absolute;
        right:0
    }
    .header .header-menu .mobile-footer ul.subnav.active{
        display:block
    }
    .header-transparent_v2 .header.is-menu-opened .header-logo img.logo-light{
        display:none
    }
    .header-transparent_v2 .header.is-menu-opened .header-logo img.logo-dark{
        opacity:1;
        position:relative
    }
    .header .header-menu .menu{
        overflow-y:auto
    }
}
.header .header-menu .menu .mega{
    display:flex;
    flex-wrap:wrap;
    width:700px
}
.header .header-menu .menu .mega.--has-mega-image{
    width:900px
}
.header .header-menu .menu .mega .mega-image{
    width:30%
}
.header .header-menu .menu .mega .mega-image img{
    border-radius:5px;
    height:90%;
    -o-object-fit:cover;
    object-fit:cover
}
.header .header-menu .menu .mega .subnav{
    background-color:transparent;
    box-shadow:none;
    display:flex;
    flex:1;
    flex-wrap:wrap;
    left:0;
    min-width:0;
    opacity:1;
    padding:0;
    position:relative;
    top:0
}
.header .header-menu .menu .mega .subnav>li{
    margin-bottom:15px;
    width:25%
}
.header .header-menu .menu .mega .subnav>li>a{
    font-weight:700
}
.header .header-menu .menu .mega .subnav>li>a:hover{
    background-color:transparent
}
.header .header-menu .menu .mega .subnav .subnav{
    display:block
}
.header .header-menu .menu .mega .subnav .subnav>li{
    margin-bottom:0;
    width:100%!important
}
.header .header-menu .menu .mega .subnav .subnav>li>a{
    font-weight:400;
    padding-bottom:2px;
    padding-top:2px
}
.header .header-menu .menu .mega .subnav .subnav>li>a:hover{
    background-color:transparent
}
.header .header-menu .menu .mega .subnav a i.icon{
    display:none
}
.header .header-menu .menu .mega.column-3{
    width:500px
}
.header .header-menu .menu .mega.column-3.--has-mega-image{
    width:700px
}
.header .header-menu .menu .mega.column-3 .mega-image{
    width:35%
}
.header .header-menu .menu .mega.column-3 .subnav>li{
    width:33.33%
}
.header .header-menu .menu .mega.column-2{
    width:400px
}
.header .header-menu .menu .mega.column-2.--has-mega-image{
    width:550px
}
.header .header-menu .menu .mega.column-2 .mega-image{
    width:45%
}
.header .header-menu .menu .mega.column-2 .subnav>li{
    width:50%
}
.header .gotrip-header-transparent_v7 .header-menu .menu .mega,.header .gotrip-header-transparent_v8 .header-menu .menu .mega{
    left:auto;
    right:-300px
}
@media (min-width:1200px){
    .header .header-menu .menu li.-has-mega-menu:hover>.mega .subnav{
        pointer-events:auto
    }
    .pc-menu-none{
        display:none!important
    }
}
@media (max-width:1199px){
    .mb-menu-none{
        display:none!important
    }
}
.gotrip-topbar{
    z-index:9999
}
.gotrip-topbar a:hover{
    color:#fff
}
.gotrip-dropdown .subnav{
    background:#fff;
    border-radius:3px;
    box-shadow:0 0 10px rgba(0,0,0,.1);
    display:none;
    left:-15px;
    position:absolute;
    top:100%;
    width:120px
}
.gotrip-dropdown .subnav:before{
    background-color:#fff;
    content:"";
    height:8px;
    left:20px;
    position:absolute;
    top:-4px;
    transform:rotate(45deg);
    width:8px
}
.gotrip-dropdown .subnav li a{
    display:block;
    font-size:14px;
    padding:2px 15px
}
.gotrip-dropdown .subnav li a:hover{
    color:#000
}
.gotrip-dropdown>li{
    position:relative
}
.gotrip-dropdown>li>a{
    color:#fff;
    font-size:14px
}
.gotrip-dropdown>li>a i{
    font-size:10px
}
.gotrip-dropdown>li.show .subnav{
    display:block
}
.bravo_wrap .mailchimp .bravo-subscribe-form{
    position:relative
}
.bravo_wrap .mailchimp .bravo-subscribe-form .form-mess{
    bottom:-40px;
    position:absolute
}
.bravo_wrap .mailchimp .bravo-subscribe-form .button .fa-spinner{
    display:none;
    margin-left:5px
}
.bravo_wrap .mailchimp .bravo-subscribe-form.loading .button .fa-spinner{
    display:inline
}
.bravo_wrap .footer.style_4 .footer_middle_area p{
    color:var(--color-white)
}
.bravo_wrap .footer .menu-footer .menu__nav{
    display:flex
}
.bravo_wrap .footer .menu-footer .menu__nav li{
    position:relative
}
.bravo_wrap .footer .menu-footer .menu__nav li a{
    cursor:pointer;
    padding:0 10px
}
.bravo_wrap .footer .menu-footer .menu__nav li>a .icon{
    font-size:7px
}
.bravo_wrap .footer .menu-footer .menu__nav li:hover>.subnav{
    opacity:1;
    pointer-events:auto
}
.bravo_wrap .footer .menu-footer .menu__nav li .subnav{
    background-color:#fff;
    border-radius:4px;
    bottom:100%;
    box-shadow:0 10px 60px 0 rgba(5,16,54,.051);
    color:var(--color-dark-1)!important;
    min-width:240px;
    opacity:0;
    padding:20px;
    pointer-events:none;
    position:absolute;
    transition:all .2s cubic-bezier(.165,.84,.44,1)
}
.bravo_wrap .footer .menu-footer .menu__nav li .subnav>li>a:hover{
    background-color:rgba(53,84,209,.05);
    color:var(--color-blue-1)
}
.footer.style_6 .text-blue-1{
    color:#fff
}
.footer.style_6 a{
    transition:all .3s
}
.footer.style_6 a:hover{
    color:#fff;
    opacity:.7
}
.footer.style_6 .text-light-1{
    color:#fff
}
.tabs-box{
    position:relative
}
.tabs-box .tab{
    display:none
}
.tabs-box .active-tab{
    display:block
}
.tabs-box .tab-btn{
    cursor:pointer
}
.pricing-section{
    padding:100px 0 70px
}
.pricing-section,.pricing-tabs{
    position:relative
}
.pricing-tabs .tab-buttons{
    margin-bottom:30px;
    position:relative;
    text-align:center
}
.pricing-tabs .tab-buttons h4{
    color:#202124;
    display:block;
    font-size:16px;
    font-weight:500;
    line-height:22px;
    margin-bottom:15px
}
.pricing-tabs .tab-btns{
    align-items:center;
    display:flex;
    justify-content:center;
    position:relative
}
.pricing-tabs .tab-btns:before{
    background:#1967d2;
    border:1px solid #e7e7ec;
    border-radius:30px;
    box-shadow:0 8px 15px rgba(140,152,164,.1);
    box-sizing:border-box;
    content:"";
    height:30px;
    left:50%;
    position:absolute;
    top:0;
    transform:translateX(-50%);
    transition:all .3s linear;
    width:60px
}
.pricing-tabs .tab-btns li{
    color:#696969;
    cursor:pointer;
    font-size:14px;
    line-height:30px;
    list-style:none;
    min-width:196px;
    padding:0 48px;
    position:relative;
    transition:all .3s ease;
    z-index:8
}
.pricing-tabs .tab-btns li:before{
    background:#fff;
    border-radius:50%;
    content:"";
    height:20px;
    position:absolute;
    right:-26px;
    top:5px;
    transition:all .3s ease;
    width:20px
}
.pricing-tabs .tab-btns li.active-btn:before{
    right:6px
}
.pricing-tabs .tab-btns li:last-child:before{
    display:none
}
.pricing-table{
    margin-bottom:30px;
    position:relative
}
.pricing-table .inner-box{
    background:#fff;
    border:1px solid #ecedf2;
    border-radius:8px;
    box-sizing:border-box;
    overflow:hidden;
    padding:40px;
    position:relative;
    transition:all .3s ease
}
.pricing-table .inner-box:hover,.pricing-table.tagged .inner-box{
    border:1px solid #1967d2;
    box-shadow:0 6px 15px rgba(64,79,104,.05)
}
.pricing-table .tag{
    border-radius:30px;
    color:#34a853;
    font-size:13px;
    line-height:20px;
    overflow:hidden;
    padding:5px 25px;
    position:absolute;
    right:30px;
    top:30px
}
.pricing-table .tag:before{
    background:#34a853;
    border-radius:30px;
    content:"";
    height:100%;
    left:0;
    opacity:.15;
    position:absolute;
    top:0;
    width:100%
}
.pricing-table .title{
    color:#1967d2;
    display:block;
    font-size:18px;
    font-weight:500;
    line-height:24px;
    margin-bottom:10px
}
.pricing-table .price{
    align-items:flex-end;
    color:#202124;
    display:flex;
    font-size:30px;
    font-weight:500;
    line-height:41px;
    margin-bottom:40px;
    position:relative;
    transition:all .3s ease
}
.pricing-table .duration{
    bottom:7px;
    color:#202124;
    font-size:18px;
    font-weight:400;
    line-height:1em;
    margin-left:7px;
    position:relative
}
.pricing-table .table-content{
    margin-bottom:50px;
    position:relative
}
.pricing-table .table-content ul{
    list-style:none;
    position:relative
}
.pricing-table .table-content ul li{
    color:#696969;
    font-size:14px;
    font-weight:400;
    line-height:25px;
    margin-bottom:20px;
    padding-left:30px;
    position:relative
}
.pricing-table .table-content ul li:before{
    color:#202124;
    content:"\f00c";
    font-family:FontAwesome;
    font-size:16px;
    left:0;
    position:absolute;
    top:0
}
.pricing-table .table-footer{
    position:relative
}
.pricing-table .table-footer a{
    display:block;
    position:relative;
    width:100%
}
.skeleton-loading .g-info>*,.skeleton-loading .g-rate-price>*,.skeleton-loading .has-skeleton,.skeleton-loading .thumb-image,.skeleton-loading .thumb-image .price-wrapper,.skeleton-loading.item-loop-wrap:not(.inner-loop-wrap)>*{
    background-color:#dddbdd;
    overflow:hidden;
    position:relative
}
.skeleton-loading .g-info>:before,.skeleton-loading .g-rate-price>:before,.skeleton-loading .has-skeleton:before,.skeleton-loading .thumb-image .price-wrapper:before,.skeleton-loading .thumb-image:before,.skeleton-loading.item-loop-wrap:not(.inner-loop-wrap)>:before{
    background-color:#dddbdd;
    bottom:0;
    content:"";
    left:0;
    position:absolute;
    right:0;
    top:0;
    z-index:3
}
.skeleton-loading .g-info>:after,.skeleton-loading .g-rate-price>:after,.skeleton-loading .has-skeleton:after,.skeleton-loading .thumb-image .price-wrapper:after,.skeleton-loading .thumb-image:after,.skeleton-loading.item-loop-wrap:not(.inner-loop-wrap)>:after{
    -webkit-animation:shimmer 3s infinite;
    animation:shimmer 3s infinite;
    background-image:linear-gradient(90deg,hsla(0,0%,100%,0),hsla(0,0%,100%,.2) 20%,hsla(0,0%,100%,.5) 60%,hsla(0,0%,100%,0));
    bottom:0;
    content:"";
    left:0;
    position:absolute;
    right:0;
    top:0;
    transform:translateX(-100%);
    z-index:3
}
.skeleton-loading .g-rate-price:before{
    display:none
}
.skeleton-loading .sale_info{
    display:none!important
}
@-webkit-keyframes shimmer{
    to{
        transform:translateX(100%)
    }
}
@keyframes shimmer{
    to{
        transform:translateX(100%)
    }
}
.masthead__content .check-in-out{
    bottom:1px;
    left:-15px;
    opacity:0;
    position:absolute;
    z-index:-1
}
.cardImage__leftBadge{
    height:auto;
    width:auto
}
.align-baseline{
    align-items:baseline
}
.header_2 .dropdown>a{
    color:#fff
}
.list-star{
    display:flex;
    position:relative
}
.list-star .booking-item-rating-stars{
    margin:0;
    padding:0
}
.list-star .booking-item-rating-stars li{
    align-items:center;
    display:flex;
    height:14px;
    list-style:none
}
.list-star .booking-item-rating-stars li .fa{
    font-size:11px
}
.list-star .booking-item-rating-stars-active{
    left:0;
    overflow:hidden;
    position:absolute;
    top:0;
    width:0
}
.shrink-0{
    flex-shrink:0
}
.w-100{
    width:100%!important
}
.position-relative{
    position:relative
}
.bravo-list-item .topbar-search{
    border-bottom:30px
}
.bravo-list-item .topbar-search .control .item:not(:first-child){
    border-left:1px solid #a7a7a7;
    margin-left:5px;
    padding-left:5px
}
.bravo-list-item .topbar-search .control .item .dropdown .dropdown-toggle{
    border:1px solid #ccc;
    margin-left:5px;
    padding:3px 15px
}
.bravo-list-item .list-service-item .cardImage__content img{
    height:100%;
    width:100%
}
.has-search-map .bravo_form_search_map .bravo_form{
    background:var(--color-light-2)!important;
    border-radius:4px;
    width:auto
}
@media (min-width:992px){
    .has-search-map .bravo_form_search_map .bravo_form{
        padding-left:0!important
    }
}
.has-search-map .bravo_form_search_map .bravo_form .button-item .button{
    border-radius:4px;
    width:60px
}
@media (max-width:992px){
    .has-search-map .bravo_form_search_map .bravo_form .button-item .button{
        width:100%
    }
}
.has-search-map .bravo_form_search_map .bravo_form .button-item .button .icon-search{
    margin:0!important
}
.has-search-map .bravo_form_search_map .bravo_form .button-item .button .text-search{
    display:none
}
.has-search-map .halfMap__map #bravo_results_map{
    bottom:0;
    left:0;
    position:absolute;
    right:0;
    top:0
}
.has-search-map .halfMap__map #bravo_results_map .infobox-item{
    border-radius:4px;
    overflow:hidden
}
.has-search-map .halfMap__map #bravo_results_map .infobox-item .hotelsCard__image{
    border-radius:0
}
.has-search-map .halfMap__map #bravo_results_map .infobox-item .hotelsCard__content{
    padding:0 10px 10px
}
.bravo_detail .bravo_content .g-attributes .list-attributes{
    margin:0 -15px
}
.bravo_detail .bravo_content .g-attributes .list-attributes .item{
    flex:0 0 25%;
    max-width:25%;
    padding:7.5px 15px
}
@media (max-width:1023px){
    .bravo_detail .bravo_content .g-attributes .list-attributes .item{
        flex:0 0 33.3333333333%;
        max-width:33.3333333333%
    }
}
@media (max-width:655px){
    .bravo_detail .bravo_content .g-attributes .list-attributes .item{
        flex:0 0 50%;
        max-width:50%
    }
}
.bravo_detail .bravo_content .g-attributes .list-attributes .item .img-responsive{
    height:20px;
    width:20px
}
.bravo_detail .review-list .review-item .avatar{
    border-radius:50%;
    height:60px;
    width:60px
}
.bravo_detail .review-form .review-items .item .rates .fa.hovered,.bravo_detail .review-form .review-items .item .rates .fa.selected{
    color:var(--color-yellow-1)
}
.bravo_detail .review-form .review-items .item .rates .fa.hovered:before,.bravo_detail .review-form .review-items .item .rates .fa.selected:before{
    content:"\f005"
}
.bravo_detail .review-form .form-input .invalid-feedback{
    bottom:-24px;
    position:absolute
}
.bravo_detail .bravo_single_book_wrap .searchMenu-guests .form-guest-search .input input{
    max-width:50px;
    text-align:center
}
.bravo_detail .bravo_single_book_wrap .searchMenu-guests .form-guest-search .input input::-webkit-inner-spin-button,.bravo_detail .bravo_single_book_wrap .searchMenu-guests .form-guest-search .input input::-webkit-outer-spin-button{
    display:none
}
.sale-price{
    color:#c03!important;
    font-size:14px;
    font-weight:400;
    margin-right:3px;
    text-decoration:line-through
}
.bravo_wrap .bravo_user_profile .bravo-list-item .list-item .item-list{
    background:#fff
}
.bravo_wrap .bravo_user_profile .bravo-list-item .list-item .item-list .location,.bravo_wrap .bravo_user_profile .bravo-list-item .list-item .item-list .rate{
    padding-bottom:5px!important
}
.bravo_wrap .bravo_user_profile .language-navigation{
    margin-bottom:20px
}
.bravo_wrap .bravo_user_profile .language-navigation ul{
    border:none
}
.bravo_wrap .bravo_user_profile .language-navigation ul li{
    margin:0
}
.bravo_wrap .bravo_user_profile .language-navigation ul li a{
    background:#fff;
    border:1px solid #ccc;
    border-radius:0;
    color:hsla(0,0%,6%,.8);
    margin-right:10px
}
.bravo_wrap .bravo_user_profile .language-navigation ul li a.active{
    background:#fa5636;
    border:1px solid #fa5636;
    color:#fff
}
.bravo_wrap .bravo_user_profile .form-add-service .nav-tabs{
    background:#4452cf!important
}
.bravo_wrap .bravo_user_profile .form-control{
    border:1px solid #ced4da!important
}
.bravo_wrap .bravo_user_profile input[type=checkbox],.bravo_wrap .bravo_user_profile input[type=radio]{
    border:1px solid #b4b9be!important;
    width:auto!important
}
.bravo_wrap .bravo_user_profile .term-item{
    margin-right:10px
}
.bravo_wrap .bravo_user_profile .bravo-pagination .count-string{
    float:none!important;
    text-align:left
}
.bravo_wrap .bravo_user_profile .bravo-pagination .custom-pagination{
    margin-top:0!important
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-title{
    display:none
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .review-section{
    border-bottom:1px solid #eaeef3;
    padding:0
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .review-section:last-child{
    border-bottom:0
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .review-section .service-info{
    display:none!important
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .service-info .service-name a{
    color:#1a2b48;
    font-size:16px;
    font-weight:500;
    line-height:25px
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .service-info .service-name a:hover{
    text-decoration:none
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .service-info .address{
    color:#5e6d77;
    margin-bottom:0
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .review-list{
    list-style:none;
    margin:0;
    padding:0
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .review-list li{
    display:flex;
    justify-content:space-between;
    margin-bottom:13px
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .review-list li .val{
    color:#5e6d77
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .review-list li:last-child{
    margin-bottom:0
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .review-list li.no-flex{
    display:block
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .review-list li ul{
    padding-left:15px
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .review-list li.final-total{
    border-top:1px solid #eaeef3;
    font-size:19px;
    padding-top:10px
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .review-list li.final-total .label{
    font-weight:500
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .review-list li.final-total .val{
    color:#709338;
    font-weight:500
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .review-section ul{
    list-style:none;
    margin:0;
    padding:0
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .review-section ul li{
    border-bottom:1px solid #dae1e7;
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
    padding-bottom:10px
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .review-section ul li .val{
    color:#5e6d77
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .review-section ul li:last-child{
    margin-bottom:0
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .review-section ul li.no-flex{
    display:block
}
.bravo_wrap .bravo_user_profile .booking-review .booking-review-content .review-section ul li ul{
    padding-left:15px
}
.bravo_single_book .nav-enquiry{
    background:#f7f7f7;
    border-radius:5px;
    display:flex;
    margin-top:15px;
    padding:10px
}
.bravo_single_book .nav-enquiry .enquiry-item{
    flex:0 0 50%;
    text-align:center
}
.bravo_single_book .nav-enquiry .enquiry-item span{
    border-bottom:1px solid transparent;
    color:#1a2b4e;
    cursor:pointer;
    display:inline-block;
    font-weight:500;
    text-transform:uppercase
}
.bravo_single_book .nav-enquiry .enquiry-item.active span{
    border-bottom:1px solid var(--color-blue-1);
    color:var(--color-blue-1)
}
.bravo-booking-page .form-control{
    border:1px solid #ced4da
}
.bravo-booking-page .input-group-text{
    border-radius:0
}
.owner-info{
    background:#fff;
    border:1px solid #d7dce3;
    border-radius:3px;
    padding:15px
}
.owner-info .media-left{
    padding-right:10px
}
.owner-info .media-left a{
    align-items:center;
    border-radius:50%;
    display:flex;
    height:50px;
    justify-content:center;
    overflow:hidden;
    width:50px
}
.owner-info .avatar-text{
    background:#1a2b47;
    border-radius:50%;
    color:#fff;
    display:block;
    font-size:29px;
    height:50px;
    padding-top:4px;
    position:relative;
    text-align:center;
    text-decoration:none;
    top:0;
    width:50px
}
.owner-info .media-heading{
    color:#1a2b48;
    font-size:14px;
    font-weight:500;
    margin-bottom:5px;
    margin-top:5px
}
.owner-info .media-heading a{
    color:inherit
}
.owner-info p{
    color:#5e6d77;
    font-size:12px;
    margin-bottom:5px
}
.service-wishlist.active .button{
    background-color:var(--color-blue-1)!important;
    border-color:var(--color-blue-1);
    color:#fff!important
}
.bravo-list-car .item-loop-gird-2 .cardImage__content,.bravo-list-car-related .item-loop-gird-2 .cardImage__content{
    display:flex;
    padding:25px
}
.bravo-list-car .item-loop-gird-2 .cardImage__content img,.bravo-list-car-related .item-loop-gird-2 .cardImage__content img{
    eight:auto!important;
    -o-object-fit:contain;
    object-fit:contain
}
.visible{
    visibility:visible
}
.invisible{
    visibility:hidden
}
.bravo_search_boat .bravo_form_search_map .bravo_form,.bravo_search_car .bravo_form_search_map .bravo_form,.bravo_search_event .bravo_form_search_map .bravo_form,.bravo_search_tour .bravo_form_search_map .bravo_form{
    background:none!important
}
.bravo_search_boat .bravo_form_search_map .bravo_form .button-item,.bravo_search_car .bravo_form_search_map .bravo_form .button-item,.bravo_search_event .bravo_form_search_map .bravo_form .button-item,.bravo_search_tour .bravo_form_search_map .bravo_form .button-item{
    display:flex;
    justify-content:end
}
.bravo_search_space .bravo_form_search_map .bravo_form{
    margin-top:0!important
}
.bravo_search_space .bravo_form_search_map .bravo_form .searchMenu-guests__field{
    left:auto;
    right:0
}
.boat-map-form-search .button-grid{
    grid-template-columns:1fr 290px auto
}
.bravo-location-service-list .loop-type-car .item-loop-gird-2 .cardImage__content{
    display:flex;
    padding:25px
}
.bravo-location-service-list .loop-type-car .item-loop-gird-2 .cardImage__content img{
    height:auto!important;
    -o-object-fit:contain;
    object-fit:contain
}
.text-dark-1-i{
    color:var(--color-dark-1)!important
}
.gotrip-overview p{
    color:var(--color-dark-1)
}
.gotrip-overview h4{
    font-size:var(--text-16);
    font-weight:500;
    margin-bottom:15px;
    margin-top:30px
}
.gotrip-overview ul{
    list-style:none
}
.gotrip-overview ul li{
    list-style-position:inside;
    list-style-type:disc
}
.bravo-news .sidebar-widget .sidebar-title h2,.bravo-news .sidebar-widget .sidebar-title h4{
    font-weight:600!important
}
.halfMap.bravo_search_car{
    margin-top:0
}
.bravo_wrap .bravo_search.halfMap .halfMap__content .gotrip_form_search .button-item{
    flex:0 0 60px;
    max-width:60px
}
@media (max-width:991px){
    .bravo_wrap .bravo_search.halfMap .halfMap__content .gotrip_form_search .button-item{
        flex:0 0 100%;
        max-width:100%
    }
}
.bravo_wrap .bravo_search .gotrip_form_search{
    border-radius:4px;
    margin-top:30px;
    width:100%
}
.bravo_wrap .bravo_search .gotrip_form_search .button-item .button{
    border-radius:4px
}
.bravo_wrap .gotrip_form_search{
    display:flex
}
.bravo_wrap .gotrip_form_search .field-items{
    display:flex;
    flex:1
}
.bravo_wrap .gotrip_form_search .field-items>.row>div:not(:last-child){
    border-right:1px solid var(--color-border)
}
@media (max-width:991px){
    .bravo_wrap .gotrip_form_search .field-items>.row>div:not(:last-child){
        border-bottom:1px solid var(--color-border);
        border-right:0
    }
}
.bravo_wrap .gotrip_form_search .button-item{
    display:flex;
    flex:0 0 150px;
    justify-content:end;
    max-width:150px;
    width:100%
}
.bravo_wrap .gotrip_form_search .button-item .button{
    max-width:150px
}
@media (max-width:991px){
    .bravo_wrap .gotrip_form_search .button-item,.bravo_wrap .gotrip_form_search .button-item .button{
        max-width:100%
    }
}
.bravo_wrap .gotrip_form_search.form-search-service-hotel .field-items>.row>div{
    padding:24px 30px!important
}
.bravo_wrap .gotrip_form_search.form-search-service-hotel .button-item .mainSearch__submit{
    border-radius:0;
    height:100%!important
}
.bravo_wrap .gotrip_form_search.form-search-sidebar{
    background:transparent!important;
    flex-direction:column
}
.bravo_wrap .gotrip_form_search.form-search-sidebar .field-items>.row>div{
    align-self:normal!important;
    background:#fff;
    border-radius:4px;
    border-right:none;
    margin-bottom:20px;
    padding:10px 20px!important;
    width:100%
}
.bravo_wrap .gotrip_form_search.form-search-sidebar .button-item{
    flex:0 0 100%;
    max-width:100%
}
.bravo_wrap .gotrip_form_search.form-search-sidebar .button-item .button{
    max-width:100%
}
@media (max-width:991px){
    .bravo_wrap .gotrip_form_search{
        flex-wrap:wrap
    }
    .bravo_wrap .gotrip_form_search .button-item,.bravo_wrap .gotrip_form_search .field-items{
        flex:unset;
        width:100%
    }
}
.bravo_wrap .gotrip_form_search .searchMenu-loc .js-results{
    max-height:400px;
    overflow:auto
}
@media (max-width:991px){
    .bravo_wrap .halfMap__map{
        height:300px
    }
}
.bravo-review-score a.checked{
    color:#fff!important
}
.cardImage__discounttBadge{
    bottom:20px;
    left:0;
    position:absolute;
    width:auto
}
.is_desktop{
    display:block
}
@media (max-width:1023px){
    .is_desktop{
        display:none
    }
}
.is_mobile{
    display:none
}
@media (max-width:1023px){
    .is_mobile{
        display:block
    }
}
.gotrip-form-search-grid{
    background:var(--color-light-2)!important
}
.gotrip-form-search-grid .gotrip_form_search{
    background:none!important;
    flex-wrap:wrap;
    padding:20px!important
}
.gotrip-form-search-grid .gotrip_form_search .button-item{
    max-width:none
}
.gotrip-form-search-grid .gotrip_form_search .button-item button{
    max-width:none;
    width:100%
}
.gotrip-form-search-grid .gotrip_form_search .button-item,.gotrip-form-search-grid .gotrip_form_search .field-items{
    flex:0 0 100%
}
.gotrip-form-search-grid .gotrip_form_search .row>div{
    border:none!important;
    flex:0 0 100%;
    padding:0 0 15px!important
}
.bravo_form_filter.-is-active{
    background:#fff;
    display:block!important;
    height:100%;
    left:0;
    opacity:1;
    overflow-y:scroll;
    pointer-events:auto;
    position:fixed;
    top:0;
    transition:all .3s cubic-bezier(.165,.84,.44,1);
    width:80%;
    z-index:1100
}
.halfMap__content{
    height:calc(100vh - 100px);
    overflow:auto
}
.btn-apply-advances,.btn-apply-price-range{
    width:auto
}
.toggle-element.-dropdown{
    min-width:180px
}
.c-pointer{
    cursor:pointer
}
.invalid-feedback.show{
    display:block
}
.bravo-subscribe-form .form-mess .text-success{
    color:#008009
}
.sidebar-checkbox .hide{
    display:none
}
.halfMap__content{
    overflow-x:hidden
}
.clear-loc{
    cursor:pointer;
    display:none;
    right:0;
    z-index:99
}
.has-val .clear-loc{
    display:inline-block
}
.searchMenu-loc.has-val .js-search{
    padding-right:20px
}
.min-height-300{
    min-height:300px
}
.text-success{
    color:#28a745!important
}
.text-danger{
    color:#dc3545!important
}
.dropdown-notifications button{
    position:relative
}
.dropdown-notifications button .notification-icon{
    left:auto;
    right:8px;
    top:2px
}
.dropdown-notifications .dropdown-menu{
    background-color:#fff;
    box-shadow:0 0 10px rgba(0,0,0,.16)
}
.dropdown-notifications .dropdown-menu.-is-active{
    display:block
}
@media (max-width:767px){
    .dropdown-notifications .dropdown-menu-right{
        right:-60px
    }
}
@media (min-width:576px){
    #flightFormBookModal .modal-dialog{
        max-width:1000px
    }
}
.bravo_wrap #flightFormBookModal .modal-dialog .modal-body .icon-loading{
    align-items:center;
    justify-content:center
}
#bravo_notify .media{
    align-items:flex-start;
    display:flex
}
#bravo_notify .panel{
    background-color:#fff;
    border-radius:3px;
    box-shadow:0 0 0 1px rgba(63,63,68,.05),0 1px 3px 0 rgba(63,63,68,.15);
    margin-bottom:20px
}
@media (max-width:767px){
    #bravo_notify .col-3,#bravo_notify .col-9{
        width:100%
    }
}
.gotrip-login-modal .modal-header,.gotrip-register-modal .modal-header{
    border-bottom:1px dashed #ccc
}
@media (max-width:1023px){
    .bravo_detail_boat .cruiseSlider-slider .cruiseSlider__nav{
        display:none
    }
}
.bravo_detail_location .location_banner .effect{
    background:#000;
    height:100%;
    left:0;
    opacity:.3;
    position:absolute;
    top:0;
    width:100%
}
@media (max-width:766px){
    .bravo_detail_location .location_banner .effect{
        background:#20347a;
        opacity:1
    }
    .bravo_detail_location .location_banner img{
        display:none
    }
    .bravo_detail_location .location_banner .text-banner{
        padding:30px!important;
        position:relative!important
    }
    .bravo_detail_location .location_banner .text-banner .text-50{
        font-size:32px!important
    }
}
@media (max-width:767px){
    .bravo_hotel_detail .hotel_list_rooms .room-item .roomGrid .roomGrid__header{
        display:none
    }
    .bravo_hotel_detail .hotel_list_rooms .room-item .roomGrid .roomGrid__grid{
        display:block
    }
    .hotel_rooms_form .form-search-rooms .form-search-row .g-button-submit{
        padding:20px
    }
}
.gotrip-banner .btn-group{
    bottom:20px;
    display:inline-flex;
    left:10px;
    position:absolute;
    vertical-align:middle;
    z-index:1
}
.gotrip-banner .btn-group .btn{
    background:rgba(52,52,52,.8);
    color:#fff;
    font-size:12px;
    margin-left:10px;
    padding:10px 10px
}
.gotrip-banner .btn-group .has-icon{
    align-items:center;
    display:flex
}
.gotrip-banner .btn-group .btn .fa{
    margin-right:10px
}
.video_popup_modal .modal .modal-dialog{
    margin:-10px auto 0;
    position:relative;
    top:50%;
    transform:translateY(-50%);
    width:100%
}
.video_popup_modal .modal .modal-content{
    background:transparent;
    border:none;
    padding:0
}
.video_popup_modal .close{
    float:right
}
.video_popup_modal .embed-responsive{
    display:block;
    overflow:hidden;
    padding:0;
    position:relative;
    width:100%
}
.video_popup_modal .embed-responsive-16by9:before{
    content:"";
    display:block;
    padding-top:56.25%
}
.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video,.video_popup_modal .embed-responsive .embed-responsive-item{
    border:0;
    bottom:0;
    height:100%;
    left:0;
    position:absolute;
    top:0;
    width:100%
}
.review_upload_btn{
    position:relative
}
.helpText:after{
    align-items:center;
    border:3px dashed gray;
    color:gray;
    content:"\f067";
    display:flex;
    font-family:FontAwesome;
    font-size:150%;
    height:10vh;
    justify-content:center;
    width:10vh
}
.review_upload_file{
    cursor:pointer;
    height:100%;
    left:0;
    opacity:0;
    position:absolute;
    top:0;
    width:100%;
    z-index:10
}
.review_upload_item{
    background-position:50%;
    background-repeat:no-repeat;
    background-size:cover;
    cursor:pointer;
    height:10vh
}
.alert-text{
    border:1px solid transparent;
    border-radius:.25rem;
    margin-bottom:1rem;
    padding:.75rem 1.25rem;
    position:relative
}
.alert-text.danger{
    background-color:#f8d7da;
    border-color:#f5c6cb;
    color:#721c24
}
.item-loop-gird-2 .cardImage__content{
    padding:25px
}
.item-loop-gird-2 .cardImage__content img{
    -o-object-fit:contain;
    object-fit:contain
}
.js-results .-link{
    cursor:pointer
}
.tabs.-pills-2 .tabs__controls .tabs__button.is-tab-el-active:hover{
    color:#fff!important
}
.masthead.-type-9{
    z-index:1
}
.count-display input[type=number],.searchMenu-guests__field input[type=number]{
    -moz-appearance:textfield
}
.button{
    cursor:pointer
}
.bc-two-tactor-authentication{
    padding:100px 0
}
.bc-two-tactor-authentication .mb-4{
    margin-bottom:20px!important
}
.bc-two-tactor-authentication .form-group{
    margin-bottom:15px
}
.bc-two-tactor-authentication .form-control{
    border:1px solid #ced4da
}
.bc-two-tactor-authentication .btn-primary{
    background-color:#3554d1;
    border-radius:5px;
    color:#fff;
    padding:5px 25px
}
.bc-two-tactor-authentication .text-md-right{
    text-align:right
}
.bc-two-tactor-authentication .card-header{
    background-color:#20347a;
    color:#fff
}
.bravo-form-search-all.carousel_v2 .effect{
    bottom:0;
    left:0;
    position:absolute;
    right:0;
    top:0;
    z-index:0
}
.bravo-form-search-all.carousel_v2 .effect .item{
    align-content:center;
    align-items:center;
    background-position:50%!important;
    background-repeat:no-repeat!important;
    display:flex;
    flex-wrap:wrap;
    height:100%!important;
    width:100%
}
@media (max-width:768px){
    .bravo-form-search-all.carousel_v2 .effect .item{
        display:block
    }
    .bravo-form-search-all.carousel_v2 .effect .item .text-heading{
        margin:0;
        padding-top:80px
    }
}
.bravo-form-search-all.carousel_v2 .effect .owl-carousel,.bravo-form-search-all.carousel_v2 .effect .owl-item,.bravo-form-search-all.carousel_v2 .effect .owl-stage,.bravo-form-search-all.carousel_v2 .effect .owl-stage-outer{
    background-position:50%;
    background-size:cover;
    height:100%
}
.bravo-form-search-all.carousel_v2 .owl-dots,.bravo-form-search-all.carousel_v2 .owl-nav{
    display:none!important
}
.tooltip{
    word-wrap:break-word;
    display:block;
    font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-size:.875rem;
    font-style:normal;
    font-weight:400;
    letter-spacing:normal;
    line-break:auto;
    line-height:1.5;
    margin:0;
    opacity:0;
    position:absolute;
    text-align:left;
    text-align:start;
    text-decoration:none;
    text-shadow:none;
    text-transform:none;
    white-space:normal;
    word-break:normal;
    word-spacing:normal;
    z-index:1070
}
.tooltip.show{
    opacity:.9
}
.tooltip .arrow{
    display:block;
    height:.4rem;
    position:absolute;
    width:.8rem
}
.tooltip .arrow:before{
    border-color:transparent;
    border-style:solid;
    content:"";
    position:absolute
}
.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{
    padding:.4rem 0
}
.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{
    bottom:0
}
.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{
    border-top-color:#000;
    border-width:.4rem .4rem 0;
    top:0
}
.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{
    padding:0 .4rem
}
.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{
    height:.8rem;
    left:0;
    width:.4rem
}
.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{
    border-right-color:#000;
    border-width:.4rem .4rem .4rem 0;
    right:0
}
.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{
    padding:.4rem 0
}
.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{
    top:0
}
.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{
    border-bottom-color:#000;
    border-width:0 .4rem .4rem;
    bottom:0
}
.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{
    padding:0 .4rem
}
.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{
    height:.8rem;
    right:0;
    width:.4rem
}
.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{
    border-left-color:#000;
    border-width:.4rem 0 .4rem .4rem;
    left:0
}
.tooltip-inner{
    background-color:#000;
    border-radius:.25rem;
    color:#fff;
    max-width:200px;
    padding:.25rem .5rem;
    text-align:center
}
.profile-summary{
    border-radius:5px
}
.profile-summary .meta-info.style2 li i{
    font-size:16px!important
}
.profile-summary .meta-info.style1 li:before{
    top:6px!important
}
.bravo-news .blog-breadcrumb{
    border-bottom:1px solid #eaeef3;
    padding:20px 0
}
.bravo-news .blog-breadcrumb .ul,.bravo-news .blog-breadcrumb ol,.bravo-news .blog-breadcrumb ul{
    display:block;
    list-style:none;
    margin-bottom:0;
    padding-left:0;
    width:100%
}
.bravo-news .blog-breadcrumb .ul li,.bravo-news .blog-breadcrumb ol li,.bravo-news .blog-breadcrumb ul li{
    display:inline-block;
    padding-left:20px;
    padding-right:20px;
    position:relative;
    z-index:0
}
.bravo-news .blog-breadcrumb .ul li a,.bravo-news .blog-breadcrumb ol li a,.bravo-news .blog-breadcrumb ul li a{
    color:#151515;
    display:block;
    font-weight:500;
    line-height:21px;
    text-decoration:none
}
.bravo-news .blog-breadcrumb .ul li.active,.bravo-news .blog-breadcrumb ol li.active,.bravo-news .blog-breadcrumb ul li.active{
    color:#5e6d77
}
.bravo-news .blog-breadcrumb .ul li:first-child,.bravo-news .blog-breadcrumb ol li:first-child,.bravo-news .blog-breadcrumb ul li:first-child{
    padding-left:0
}
.bravo-news .blog-breadcrumb .ul li:not(:last-child):after,.bravo-news .blog-breadcrumb ol li:not(:last-child):after,.bravo-news .blog-breadcrumb ul li:not(:last-child):after{
    background:#eaeef3;
    content:"";
    height:4px;
    margin-top:-2px;
    position:absolute;
    right:-2px;
    top:50%;
    width:4px;
    z-index:1
}
.bravo-pagination .count-string{
    color:#768090;
    display:block;
    font-size:14px;
    margin-top:5px;
    text-align:center
}
.bravo-more-book-mobile{
    background:#fff;
    border-top:1px solid #ddd;
    bottom:0;
    display:none;
    left:0;
    line-height:20px;
    position:fixed;
    right:0;
    z-index:11
}
@media (max-width:990px){
    .bravo-more-book-mobile{
        display:block
    }
}
.bravo-more-book-mobile .container{
    align-items:center;
    display:flex;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    height:65px
}
.bravo-more-book-mobile .left,.bravo-more-book-mobile .right{
    flex:0 0 50%;
    max-width:50%
}
.bravo-more-book-mobile .left .g-price .prefix{
    color:#5e6d77;
    display:inline-block
}
.bravo-more-book-mobile .left .g-price .prefix i{
    color:#ffc107;
    font-size:16px
}
.bravo-more-book-mobile .left .g-price .fr_text{
    font-size:12px
}
.bravo-more-book-mobile .left .g-price .price{
    display:inline-block;
    position:relative
}
.bravo-more-book-mobile .left .g-price .price .text-price{
    color:#1a2b48;
    font-size:20px;
    font-weight:500
}
.bravo-more-book-mobile .left .g-price .price .onsale{
    color:#c03!important;
    font-size:16px;
    font-weight:400;
    text-decoration:line-through
}
.bravo-more-book-mobile .left .g-price i{
    font-size:18px
}
.bravo-more-book-mobile .left .service-review .list-star{
    display:inline-block;
    line-height:13px;
    position:relative
}
.bravo-more-book-mobile .left .service-review .list-star .booking-item-rating-stars{
    margin:0;
    padding:0;
    width:90px
}
.bravo-more-book-mobile .left .service-review .list-star .booking-item-rating-stars:after,.bravo-more-book-mobile .left .service-review .list-star .booking-item-rating-stars:before{
    clear:both;
    content:"";
    display:table
}
.bravo-more-book-mobile .left .service-review .list-star .booking-item-rating-stars li{
    float:left;
    list-style:none;
    margin-right:5px
}
.bravo-more-book-mobile .left .service-review .list-star .booking-item-rating-stars li:last-child{
    margin-right:0
}
.bravo-more-book-mobile .left .service-review .list-star .booking-item-rating-stars li .fa{
    color:#ffdc00;
    font-size:15px
}
.bravo-more-book-mobile .left .service-review .list-star .booking-item-rating-stars-active{
    left:0;
    overflow:hidden;
    position:absolute;
    top:0;
    width:0
}
.bravo-more-book-mobile .left .service-review .review{
    color:#768092;
    font-size:13px;
    margin-left:10px;
    position:relative;
    top:-2px
}
@media (max-width:340px){
    .bravo-more-book-mobile .left .service-review .review{
        display:none
    }
}
.bravo-more-book-mobile .right{
    text-align:right
}
.bravo-more-book-mobile .btn-primary{
    color:#fff;
    padding:8px 20px 6px
}
.booking_cookie_agreement{
    align-items:baseline;
    background-color:#02071a;
    bottom:0;
    color:#fff;
    display:flex;
    font-family:var(--title-font-family);
    left:0;
    position:fixed;
    right:0;
    z-index:999999!important
}
.booking_cookie_agreement p{
    color:#fff
}
.booking_cookie_agreement a{
    color:#eb6753
}
.booking_cookie_agreement .content-cookie{
    flex:1 1
}
.booking_cookie_agreement .save-cookie{
    background-color:#eb6753;
    border:1px solid var(--headings-color);
    border-radius:.5rem;
    color:#fff;
    cursor:pointer;
    padding:.5rem
}
.bravo-news ol,.bravo-news ul{
    list-style:revert;
    margin:revert;
    padding-left:revert
}
.bravo-news ol li,.bravo-news ul li{
    list-style:revert
}
.input-search,.smart-search{
    position:relative
}
.input-search:not(.normal-control) .form-control,.input-search:not(.normal-control) .parent_text,.smart-search:not(.normal-control) .form-control,.smart-search:not(.normal-control) .parent_text{
    background:transparent;
    border:none;
    box-shadow:none;
    font-size:16px;
    height:25px;
    left:0!important;
    padding:0!important;
    position:relative
}
.input-search:not(.normal-control) .form-control[readonly],.input-search:not(.normal-control) .parent_text[readonly],.smart-search:not(.normal-control) .form-control[readonly],.smart-search:not(.normal-control) .parent_text[readonly]{
    cursor:pointer
}
.input-search .bravo-autocomplete,.smart-search .bravo-autocomplete{
    background:#fff;
    border:1px solid #dee2e6;
    border-radius:5px;
    left:0;
    margin-top:35px;
    max-height:500px;
    min-width:500px;
    opacity:0;
    overflow-y:auto;
    padding:0;
    position:absolute;
    right:-15px;
    top:100%;
    transition:all .3s;
    visibility:hidden;
    z-index:20
}
.input-search .bravo-autocomplete.show,.smart-search .bravo-autocomplete.show{
    opacity:1;
    visibility:visible
}
@media (max-width:1023px){
    .input-search .bravo-autocomplete,.smart-search .bravo-autocomplete{
        background:#f1f1f1;
        border-radius:0;
        left:-55px;
        margin-top:10px;
        right:0
    }
}
.input-search .bravo-autocomplete .item,.smart-search .bravo-autocomplete .item{
    color:var(--color-dark-1);
    cursor:pointer;
    padding:10px 15px
}
.input-search .bravo-autocomplete .item:nth-child(2n),.smart-search .bravo-autocomplete .item:nth-child(2n){
    background:#fff
}
.input-search .bravo-autocomplete .item:last-child,.smart-search .bravo-autocomplete .item:last-child{
    margin-bottom:0
}
.input-search .bravo-autocomplete .item .h-line,.smart-search .bravo-autocomplete .item .h-line{
    font-weight:500
}
.input-search .bravo-autocomplete .item i,.smart-search .bravo-autocomplete .item i{
    color:#828282;
    font-size:16px;
    margin-right:5px;
    position:relative;
    top:1px
}
.input-search .bravo-autocomplete .item:hover,.smart-search .bravo-autocomplete .item:hover{
    background:#f5f4f7
}
.input-search .bravo-autocomplete .message,.smart-search .bravo-autocomplete .message{
    color:#424242;
    display:none;
    font-size:14px;
    padding:10px 15px
}
.input-search .bravo-autocomplete.on-message .list-item,.smart-search .bravo-autocomplete.on-message .list-item{
    display:none
}
.input-search .bravo-autocomplete.on-message .message,.smart-search .bravo-autocomplete.on-message .message{
    display:block
}
.input-search.normal-control .form-control,.smart-search.normal-control .form-control{
    padding-right:25px
}
.input-search.normal-control .bravo-autocomplete,.smart-search.normal-control .bravo-autocomplete{
    margin-top:0
}
.input-search.normal-control:after,.smart-search.normal-control:after{
    color:#4b4b4b;
    right:15px;
    top:23px
}
 .float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 24px;
    background-color: #25d366 !important;
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #333;
    z-index: 100;
}

.header.-type-5.-header-5-sticky {
    /* background: transparent !important; */
    background: rgb(34 34 34 / 90%) !important;
    transition: background 0.3s 
ease;
}