/*------------------------*/
:root {
    --skyBlue: #69d6f3;
    --brownOld: #733439;
    --turquoise: #39f0de;
    --orange: #ff8726;
    --white: #ffffff;
    --EerieBlack: #191d20;
}
input:focus,
button:focus,
.form-control:focus{
    outline: none;
    box-shadow: none;
}
.form-control:disabled, .form-control[readonly]{
    background-color: #fff;
}
/*----------step-wizard------------*/
.d-flex{
    display: flex;
}
.justify-content-center{
    justify-content: center;
}
.align-items-center{
    align-items: center;
}
/*---------signup-step-------------*/
.bg-color{
    background-color: #333;
}
.signup-step-container{
    padding: 150px 0px;
    padding-bottom: 60px;
}
.wizard .nav-tabs {
    position: relative;
    margin-bottom: 0;
    border-bottom-color: transparent;
}
.wizard > div.wizard-inner {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}
.connecting-line {
    height: 2px;
    background: #000000;
    position: absolute;
    width: calc(100% - 40px);
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 15px;
    z-index: 1;
}
.wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
    color: #555555;
    cursor: default;
    border: 0;
    border-bottom-color: transparent;
}
span.round-tab {
    width: 35px;
    height: 35px;
    line-height: 30px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    z-index: 2;
    position: absolute;
    left: 0;
    text-align: center;
    font-size: 16px;
    color: #0e214b;
    font-weight: 500;
    border: 1px solid #ddd;
}
span.round-tab i{
    color:#555555;
}
.wizard li.active span.round-tab {
    background: var(--turquoise);
    color: #fff;
    border-color: var(--turquoise);
}
.wizard li.active span.round-tab i{
    color: #5bc0de;
}
.wizard .nav-tabs > li.active > a i{
    color: var(--turquoise);
}
.wizard .nav-tabs > li {
    width: 20%;
}
.wizard li:after {
    content: " ";
    position: absolute;
    left: 46%;
    opacity: 0;
    margin: 0 auto;
    bottom: 0px;
    border: 5px solid transparent;
    border-bottom-color: red;
    transition: 0.1s ease-in-out;
}
.wizard .nav-tabs > li a {
    width: 30px;
    height: 30px;
    margin: 20px auto;
    border-radius: 100%;
    padding: 0;
    background-color: transparent;
    position: relative;
    top: 0;
}
.wizard .nav-tabs > li a i{
    position: absolute;
    top: -15px;
    font-style: normal;
    font-weight: 400;
    white-space: nowrap;
    left: 50%;
    transform: translate(-14%, -50%);
    font-size: 12px;
    font-weight: 700;
    color: #000;
}
.wizard .nav-tabs > li a:hover {
    background: transparent;
}
.wizard .tab-pane {
    position: relative;
    padding-top: 20px;
}
.wizard h3 {
    margin-top: 0;
}
.prev-step,
.next-step{
    font-size: 13px;
    padding: 8px 24px;
    border: none;
    border-radius: 4px;
    margin-top: 30px;
}
.prev-step{
    padding: 9px 20px 9px 20px !important;
    font-size: 18px;
    color: var(--bd-black);
    font-weight: 600;
    background: var(--turquoise);
}
.next-step{
    background-color: var(--turquoise);
    font-size: 18px;
    font-weight: 700;
    padding: 9px 20px 9px 20px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 10px;
}
.list-content{
    margin-bottom: 10px;
}
.list-content a{
    padding: 10px 15px;
    width: 100%;
    display: inline-block;
    background-color: #f5f5f5;
    position: relative;
    color: #565656;
    font-weight: 400;
    border-radius: 4px;
}
.list-content a[aria-expanded="true"] i{
    transform: rotate(180deg);
}
.list-content a i{
    text-align: right;
    position: absolute;
    top: 15px;
    right: 10px;
    transition: 0.5s;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #fdfdfd;
}
.list-box{
    padding: 10px;
}
.list-inline li{
    display: inline-block;
}
.pull-right{
    float: right;
}
.checkbox >  input[type="checkbox"]{
    position: relative;
    display: inline-block;
    margin-right: 5px;
}
.checkbox > input[type="checkbox"]::before,
.checkbox >  input[type="checkbox"]::after {
    position: absolute;
    content: "";
    display: inline-block;
}
.checkbox > input[type="checkbox"]::before{
    height: 16px;
    width: 16px;
    border: 1px solid #999;
    left: 0px;
    top: 0px;
    background-color: #fff;
    border-radius: 2px;
}
.checkbox > input[type="checkbox"]::after{
    height: 5px;
    width: 9px;
    left: 4px;
    top: 4px;
}
.checkbox > input[type="checkbox"]:checked::after{
    content: "";
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
}
.checkbox > input[type="checkbox"]:checked::before{
    background-color: var(--turquoise);
    border-color: var(--turquoise);
}

@media (max-width: 767px){
    .sign-content h3{
        font-size: 40px;
    }
    .wizard .nav-tabs > li a i{
        display: none;
    }
    .signup-logo-header .navbar-toggle{
        margin: 0;
        margin-top: 8px;
    }
    .signup-logo-header .logo_area{
        margin-top: 0;
    }
    .signup-logo-header .header-flex{
        display: block;
    }
}
.style_wizard{
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
    padding: 10px 10px 10px 10px;
    color: #666;
    line-height: 24px;
    font-weight: 700;
    margin-top: 20px;
}
.style-hidden-div-0, .style-hidden-div-2, .style-hidden-div-3, .style-hidden-div-4,.style-hidden-div-5,.style-hidden-div-6,.style-hidden-div-7,.style-hidden-div-8 ,.style-hidden-div-9{
    display: none;
}
.style-hidden-div-1{
    display: none;
}
.style_all_div{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px!important;
    padding: 20px;
    border-radius: 10px;
}
@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.fade-in-out {
    animation: fadeInOut 0.5s ease-in-out;
    transition: opacity 0.25s ease-in-out; /* Add transition for opacity */
}
@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.fade-in-out-2 {
    animation: fadeInOut 0.20s ease-in-out;
    transition: opacity 0.75s ease-in-out; /* Add transition for opacity */
}
.travel_companions{
    display: flex!important;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.rdio {
    position: relative;
}
.rdio input[type="radio"] {
    opacity: 0;
}
.rdio label {
    padding-left: 10px;
    cursor: pointer;
    margin-bottom: 7px !important;
}
.rdio label:before {
    width: 23px;
    height: 23px;
    position: absolute;
    top: 0px;
    left: -1px;
    content: '';
    display: inline-block;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border: 1px solid var(--turquoise);
    background: #fff;
}
.rdio input[type="radio"] {
    margin: 0px;
}
.rdio input[type="radio"]:disabled + label {
    color: #999;
}
.rdio input[type="radio"]:disabled + label:before {
    background-color: var(--turquoise);
}
.rdio input[type="radio"]:checked + label::after {
    content: '';
    position: absolute;
    display: inline-block;
    line-height: 25px;
    background-color: var(--turquoise);
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    top: 7px;
    left: 0.4rem !important;
    width: 12px;
    height: 12px;
    transition: all 0.3s;
    transform: none;
}
.custom-checkbox > [type="checkbox"], .custom-checkbox label {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.custom-checkbox > [type="checkbox"]:not(:checked), .custom-checkbox > [type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}
.custom-checkbox > [type="checkbox"]:not(:checked) + label, .custom-checkbox > [type="checkbox"]:checked + label {
    position: relative;
    padding-left: 22px;
    cursor: pointer;
}
.custom-checkbox > [type="checkbox"]:not(:checked) + label:before, .custom-checkbox > [type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -9px;
    width: 17px;
    height: 17px;
    border: 1px solid var(--turquoise);
    background: #fff;
    border-radius: 2px;
}
.custom-checkbox > [type="checkbox"]:not(:checked) + label:after, .custom-checkbox > [type="checkbox"]:checked + label:after {
    font: normal normal normal 12px/1 'Glyphicons Halflings';
    content: '\e013';
    position: absolute;
    top: 50%;
    margin-top: -7px;
    left: 2px;
    color: var(--turquoise);
    xtransition: all 0.2s;
}
.custom-checkbox > [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}
.custom-checkbox > [type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: scale(1);
}
.custom-checkbox > [type="checkbox"][data-indeterminate] + label:after {
    content: '\2212';
    left: 2px;
    opacity: 1;
    transform: scale(1);
}
.custom-checkbox > [type="checkbox"]:disabled:not(:checked) + label:before {
    box-shadow: none;
    background-color: #eee;
    border-color: #eee;
    cursor: not-allowed;
    opacity: 1;
    color: #dadada;
}
.custom-checkbox > [type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    background-color: #eee;
    border-color: #eee;
    cursor: not-allowed;
    opacity: 1;
    color: var(--turquoise);
}
.custom-checkbox > [type="checkbox"]:disabled:checked + label:after {
    color: var(--turquoise);
    cursor: not-allowed;
}
.custom-checkbox > [type="checkbox"]:disabled + label {
    color: #aaa;
    cursor: not-allowed;
}
.custom-checkbox > [type="checkbox"]:checked:focus + label:before, .custom-checkbox > [type="checkbox"]:not(:checked):focus + label:before {
    border: 1px solid var(--turquoise);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.custom-checkbox label:hover:before {
    border: 1px solid var(--skyBlue) !important;
}
.custom-checkbox [type="checkbox"]:disabled:not(:checked) + label:hover:before, .custom-checkbox [type="checkbox"]:disabled:checked + label:hover:before {
    border: 1px solid var(--skyBlue) !important;
}
.custom-checkbox {
    margin: 0 0 0 0!important;
}
.style_submit{
    background-color: var(--skyBlue)!important;
    border-radius: 5px!important;
    margin-top: 29px!important;
}
.display-none{
    display: none!important;
}
.display-block{
    display: block!important;
}
.multi-wizard-step p {
    margin-left: 50px;
    text-align: center;
    margin-top: 40px;
    color: var(--orange);
    font-weight: 600;
}
.stepwizard-row {
    display: table-row;
}
.stepwizard {
    display: table;
    position: relative;
    width: 100%;
    margin-top: 25px;
}
.multi-wizard-step button[disabled] {
    filter: alpha(opacity=100) !important;
    opacity: 1 !important;
}
.stepwizard-row:before {
    top: 14px;
    bottom: 0;
    content: " ";
    width: 100%;
    height: 1px;
    z-order: 0;
    position: absolute;
    background-color: #fefefe;
}
.multi-wizard-step {
    text-align: center;
    position: relative;
    display: table-cell;    
}
.connecting-line{
    background: #e0e0e0!important;
}
.style-btn-default{
    top: -4px;
    width: 40px;
    height: 40px;
    line-height: 30px !important;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    z-index: 2;
    position: absolute;
    left: 85px;
    text-align: center;
    font-size: 16px !important;
    color: #0e214b;
    font-weight: 600 !important;
    border: 1px solid #ddd;
}
.stepwizard .active{
    background-color: var(--turquoise);
    color: white;
}
.btn:hover{
    background-color: var(--turquoise);
    color: white;
}
.setup-content{
    box-shadow: rgba(1, 1, 1, 0.25)0px 1px 1px 1px!important;
    padding: 5px 15px 18px 10px;
}
.text-danger{
    color: red!important;
    font-weight: bold!important;
}
.destination_name{
display: inline-block;
}
.destination_name_icon{
    border: 2px solid green;
    background-color: green;
    color: white;
    border-radius: 3px;
    margin: 10px 0.5rem;
}
.style_ul_summary{
    margin: -3px 0!important;
    padding: 5px 5px 0px 5px!important;
}
.styles_header__1GWpq{
    font-weight: 900;
    font-size: 20px;
    height: 70px;
    color: white;
    padding: 5px 0px 0px 10px;
    margin: 0 0px 10px;
}
.current_step_style{
    padding: 0px 30px 0 30px!important;
    margin-top: 20px !important;
}
.current_step_style label{
font-size: 16px;
letter-spacing: 0.5px;
margin-top: 20px;
}
.text-left{
text-transform: capitalize;
}
.checkbox{
    cursor: pointer !important;
}
input[type="checkbox"],
input[type="checkbox"] + label,
input[type="radio"],
input[type="radio"] + label,
select,
option,
option:checked {
    cursor: pointer;
    font-size: 18px !important;
}
.style-hidden-div-6 p{
    font-size: 18px;
    font-weight: 600;
    color: var(--bd-black);
}
@media (max-width: 575px) {
    .multi-wizard-step{
        max-width: 150px;	
        }
        .multi-wizard-step p{
        margin-left: 0;
        }
        
        .style-btn-default{
        left: 1rem;
        }
}