* {
  /*margin: 0;*/
  /*padding: 0;*/
  box-sizing: border-box;
}
/* Media Queries */
    /* Card sizing */
    /* Colors */
    /* Calculations */
    /* Placeholders */
    
    @media (min-width: 1000px) {
        #timeline .demo-card:nth-child(odd) .head::after,
        #timeline .demo-card:nth-child(even) .head::after {
            position: absolute;
            content: "";
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
        }
        #timeline .demo-card:nth-child(odd) .head::before,
        #timeline .demo-card:nth-child(even) .head::before {
            position: absolute;
            content: "";
            width: 9px;
            height: 9px;
            background-color: #bdbdbd;
            border-radius: 9px;
            box-shadow: 0px 0px 2px 8px #f7f7f7;
        }
    }
    /* Some Cool Stuff */
    
    .demo-card:nth-child(1) {
        order: 1;
    }
    
    .demo-card:nth-child(2) {
        order: 4;
    }
    
    .demo-card:nth-child(3) {
        order: 2;
    }
    
    .demo-card:nth-child(4) {
        order: 5;
    }
    
    .demo-card:nth-child(5) {
        order: 3;
    }
    
    .demo-card:nth-child(6) {
        order: 6;
    }
    /* Border Box */
    
    * {
        box-sizing: border-box;
    }
    /* Fonts */
    
    body {
        font-family: Roboto;
    }
    
    #timeline {
        padding: 100px 0;
        background: #f7f7f7;
        border-top: 1px solid rgba(191, 191, 191, 0.4);
        border-bottom: 1px solid rgba(191, 191, 191, 0.4);
    }
    
    #timeline h1 {
        text-align: center;
        font-size: 3rem;
        font-weight: 200;
        margin-bottom: 20px;
    }
    
    #timeline p.leader {
        text-align: center;
        max-width: 90%;
        margin: auto;
        margin-bottom: 45px;
    }
    
    #timeline .demo-card-wrapper {
        position: relative;
        margin: auto;
    }
    
    @media (min-width: 1000px) {
        #timeline .demo-card-wrapper {
            display: flex;
            flex-flow: column wrap;
            width: 1170px;
            height: 2500px;
            margin: 0 auto;
        }
    }
    
    #timeline .demo-card-wrapper::after {
        z-index: 1;
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        border-left: 1px solid rgba(191, 191, 191, 0.4);
    }
    
    @media (min-width: 1000px) {
        #timeline .demo-card-wrapper::after {
            border-left: 1px solid #bdbdbd;
        }
    }
    
    #timeline .demo-card {
        position: relative;
        display: block;
        margin: 10px auto 80px;
        max-width: 94%;
        z-index: 2;
    }
    
    @media (min-width: 480px) {
        #timeline .demo-card {
            max-width: 60%;
            box-shadow: 0px 1px 22px 4px rgba(0, 0, 0, 0.07);
        }
        .number-box{
            font-size:10px !important;
        }
        /*#timeline .demo-card{*/
        /*    min-width:100% !important;*/
        /*}*/
         #timeline h1{
            font-size:2rem !important;
        }
    }
    
     @media (min-width: 300px) {
        #timeline .demo-card {
            box-shadow: 0px 1px 22px 4px rgba(0, 0, 0, 0.07);
        }
        #timeline .demo-card .head .number-box{
            font-size:10px !important;
        }
        /*#timeline .demo-card{*/
        /*    min-width:100%;*/
        /*}*/
        #timeline h1{
            font-size:2rem !important;
        }
    }
    
    @media (min-width: 720px) {
        #timeline .demo-card {
            max-width: 40%;
        }
    }
    
    @media (min-width: 1000px) {
        #timeline .demo-card {
            max-width: 450px;
            height: 400px;
            margin: 90px;
            margin-top: 45px;
            margin-bottom: 45px;
        }
        #timeline .demo-card:nth-child(odd) {
            margin-right: 45px;
        }
        #timeline .demo-card:nth-child(odd) .head::after {
            border-left-width: 15px;
            border-left-style: solid;
            left: 100%;
        }
        #timeline .demo-card:nth-child(odd) .head::before {
            left: 491.5px;
        }
        #timeline .demo-card:nth-child(even) {
            margin-left: 45px;
        }
        #timeline .demo-card:nth-child(even) .head::after {
            border-right-width: 15px;
            border-right-style: solid;
            right: 100%;
        }
        #timeline .demo-card:nth-child(even) .head::before {
            right: 489.5px;
        }
        #timeline .demo-card:nth-child(2) {
            margin-top: 180px;
        }
    }
    
    #timeline .demo-card .head {
        position: relative;
        display: flex;
        align-items: center;
        color: #fff;
        font-weight: 400;
    }
    
    #timeline .demo-card .head .number-box {
        display: inline;
    float: left;
    margin: 15px;
    padding: 10px;
    font-size: 18px;
    line-height: 35px;
    font-weight: 600;
    background: #727475;
    width: 30%;
    text-align: -webkit-center;
    }
    
    #timeline .demo-card .head h2 {
        text-transform: uppercase;
        font-size: 1.3rem;
        font-weight: inherit;
        letter-spacing: 2px;
        margin: 0;
        padding-bottom: 6px;
        line-height: 1rem;
    }
    
    @media (min-width: 480px) {
        #timeline .demo-card .head h2 {
            font-size: 156%;
            line-height: 1.2rem;
        }
    }
    
    #timeline .demo-card .head h2 span {
        display: block;
        font-size: 0.6rem;
        margin: 0;
    }
    
    @media (min-width: 480px) {
        #timeline .demo-card .head h2 span {
            font-size: 0.8rem;
        }
    }
    
    #timeline .demo-card .body {
        background: #fff;
        border: 1px solid rgba(191, 191, 191, 0.4);
        border-top: 0;
        padding: 15px;
    }
    
    @media (min-width: 1000px) {
        #timeline .demo-card .body {
            height: 315px;
        }
    }
    
    #timeline .demo-card .body p {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 15px;
    }
    
    #timeline .demo-card .body img {
        display: block;
        width: 100%;
    }
    
    #timeline .demo-card--step1 {
        background-color: #f27202;
    }
    
    #timeline .demo-card--step1 .head::after {
        border-color: #666;
    }
    
    #timeline .demo-card--step2 {
        background-color: #3ee9d1;
    }
    
    #timeline .demo-card--step2 .head::after {
        border-color: #3ee9d1;
    }
    
    #timeline .demo-card--step3 {
        background-color: #ce43eb;
    }
    
    #timeline .demo-card--step3 .head::after {
        border-color: #ce43eb;
    }
    
    #timeline .demo-card--step4 {
        background-color: #4d92eb;
    }
    
    #timeline .demo-card--step4 .head::after {
        border-color: #4d92eb;
    }
    
    #timeline .demo-card--step5 {
        background-color: #46b8e9;
    }
    
    #timeline .demo-card--step5 .head::after {
        border-color: #46b8e9;
    }
    
    #new a {
    color:#ffffff !important;
    font-size: 75%;
    display: block;
}

/*#buttonn > a{*/
/*    padding: 10px !important;*/
/*    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2) !important;*/
/*    -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2) !important;*/
/*    display: inline-block !important;*/
/*    outline: none !important;*/
/*    cursor: pointer !important;*/
/*    text-align: center !important;*/
/*    text-decoration: none !important;*/
/*    font: 14px/100% Arial, Helvetica, sans-serif !important;*/
/*    text-shadow: 0 1px 1px rgba(0,0,0,.3) !important;*/
/*    -webkit-border-radius: .5em !important;*/
/*    -moz-border-radius: .5em !important;*/
/*    border-radius: .5em !important;*/
/*    color: #fef4e9 !important;*/
/*    border: solid 1px #da7c0c !important;*/
/*    background: #f78d1d !important;*/
/*    background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20)) !important;*/
/*    background: -moz-linear-gradient(top, #faa51a, #f47a20) !important;*/
/*    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20') !important;*/
/*    width: 30%;*/
/*}*/
/*#buttonn > .em-closed-button{*/
/*    padding: 10px !important;*/
/*    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2) !important;*/
/*    -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2) !important;*/
/*    display: inline-block !important;*/
/*    outline: none !important;*/
/*    cursor: pointer !important;*/
/*    text-align: center !important;*/
/*    text-decoration: none !important;*/
/*    font: 14px/100% Arial, Helvetica, sans-serif !important;*/
/*    text-shadow: 0 1px 1px rgba(0,0,0,.3) !important;*/
/*    -webkit-border-radius: .5em !important;*/
/*    -moz-border-radius: .5em !important;*/
/*    border-radius: .5em !important;*/
/*    color: #fef4e9 !important;*/
/*    border: solid 1px #da7c0c !important;*/
/*    background: #f78d1d !important;*/
/*    background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20)) !important;*/
/*    background: -moz-linear-gradient(top, #faa51a, #f47a20) !important;*/
/*    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20') !important;*/
/*    width: 35%;*/
/*}*/

/*.buttonnn {*/
/*    display: inline-block;*/
/*    text-align: center;*/
/*    vertical-align: middle;*/
/*    padding: 12px 24px;*/
/*    border: 1px solid #a12727;*/
/*    border-radius: 8px;*/
/*    background: #2a2a2a !important;*/
/*    background: -webkit-gradient(linear, left top, left bottom, from(#ff4a4a), to(#992727));*/
/*    background: -moz-linear-gradient(top, #ff4a4a, #992727);*/
/*    background: linear-gradient(to bottom, #f79468, #fe6c61cc) !important;*/
/*    text-shadow: #591717 1px 1px 1px;*/
/*    font: normal normal bold 20px arial;*/
/*    color: #ffffff;*/
/*    text-decoration: none;*/
/*}*/
/*.buttonnn:hover,*/
/*.buttonnn:focus {*/
/*    background: #ff5959;*/
/*    background: -webkit-gradient(linear, left top, left bottom, from(#ff5959), to(#b62f2f));*/
/*    background: -moz-linear-gradient(top, #ff5959, #b62f2f);*/
/*    background: linear-gradient(to bottom, #ff5959, #b62f2f);*/
/*    color: #ffffff;*/
/*    text-decoration: none;*/
/*}*/
/*.buttonnn:active {*/
/*    background: #982727;*/
/*    background: -webkit-gradient(linear, left top, left bottom, from(#982727), to(#982727));*/
/*    background: -moz-linear-gradient(top, #982727, #982727);*/
/*    background: linear-gradient(to bottom, #982727, #982727);*/
/*}*/
/*.buttonnn:before{*/
/*    content:  "\0000a0";*/
/*    display: inline-block;*/
/*    height: 24px;*/
/*    width: 24px;*/
/*    line-height: 24px;*/
/*    margin: 0 4px -6px -4px;*/
/*    position: relative;*/
/*    top: 0px;*/
/*    left: 0px;*/
/*    background-size: 100% 100%;*/
/*}*/
/*#em-booking-button_10_04decfcd2f{color: #f79468 !important;}*/
/*#em-booking-button_10_04decfcd2f:hover{color: #ffffff !important;}*/

/*.buttonnn > a{color: #666 !important;}*/
/*.buttonnn > a:hover{color: #ffffff !important;}*/

/*.em-closed-button{color: #666 !important;}*/
/*.em-closed-button:hover{color: #ffffff !important;}*/

.em-search-form{
    line-height:0 !important;
}
div.css-search div.em-search-text{
    background:none !important;
}
div.css-search div.em-search-main .em-search-submit{
    top: 0px !important;
    right: 0px !important;
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #2a2a2a), color-stop(1, #666) )!important;
    line-height: 5px!important;
    border-radius: 0px !important;
    border: 0px solid #dcdcdc !important;
    padding: 8px 50px;
}
div.css-search{
    background-color: #f27202;
    /*border: 18px solid #727475 !important;*/
    padding: 6px !important;
    /*border-radius: 20% 20% 20% !important;*/
}

@media only screen and (max-width: 479px) and (min-width: 320px){
.nd_options_container {
    width: 350px !important;
}
div.css-search div.em-search-main .em-search-submit{
    padding: 8px 16px !important;
}
/*.buttonnn {*/
/*    background-color: #fe6c61 !important;*/
/*}*/
/*.buttonnn > a{*/
/*    color: #2a2a2a !important;*/
/*    font-weight:600;*/
/*}*/
}

@media only screen and (max-width: 767px) and (min-width: 480px){
.nd_options_container {
    width: 460px;
    font-size: 12px !important;
}}

@media only screen and (max-width: 1199px) and (min-width: 960px){
.nd_options_container {
    width: 1140px !important;
}}

/*.buttonnn .em-booking-button{*/
/*    border:2px solid gray;*/
/*    width:100px;*/
/*    text-align: center;*/
/*    padding: 10px;*/
/*    background-color: #f79468;*/
/*    color: white;*/
/*    border-radius: 50% 58% 0% 0%;*/
/*    padding-left: 5%;*/
/*    padding-right: 5%;*/
/*}*/
/*.buttonnn .em-booking-button  > a{*/
/*    color: white !important;*/
/*    font-weight:600;*/
/*}*/

/*.button .em-booking-button{*/
/*    color: white !important;*/
/*    font-weight:600;*/
/*}*/

/*.buttonnn .em-cancel-button{*/
/*    border:2px solid gray;*/
/*    width:100px;*/
/*    text-align: center;*/
/*    padding: 10px;*/
/*    background-color: #f79468;*/
/*    color: white;*/
/*    border-radius: 50% 58% 0% 0%;*/
/*    padding-left: 5%;*/
/*    padding-right: 5%;*/
/*}*/

.show-advanced{
    padding-top:10px !important;
    color:white;
}
.hide-advanced{
    color:white;
}

div.css-search div.em-search-advanced label > span{
    margin-top:10px;
    color:white;
}

#button{
    width:25% !important;
    height:30px !important;
}


/*------------------------------------------------------------------search bar-------------------------------------------------------------*/