#fixed-nav, .navbar-top-fixed {
    z-index: 99;
}

.pt10 {
    background: #fafafa;
}

.book-page {
    margin: 0 auto !important;
    padding-bottom: 5%;
}

.b {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: #282828;
    font-size: 16px;
    font-weight: 700;
}

.top {
    margin: 30px 0;
}

.fullWidth {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: initial;
}

.options-select {
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    padding: 0;
}

.book-page .container ul {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: auto;
}

.book-page ul li:last-child {
    margin-bottom: 10px;
}

.book-page ul li {
    color: #AAAAAA;
    display: block;
    position: relative;
    float: left;
    width: 100%;
    height: 45px;
}

.book-page ul li input[type=radio] {
    position: absolute;
    visibility: hidden;
}

.book-page ul li label {
    display: block;
    position: relative;
    font-weight: 300;
    font-size: 1.35em;
    padding: 0px 10px 10px 0px;
    margin: 10px auto;
    height: 30px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
}

.book-page ul li:hover label {
    color: #FFFFFF;
}

.book-page ul li .check {
    display: block;
    position: absolute;
    border: 1px solid #707070;
    border-radius: 100%;
    height: 25px;
    width: 25px;
    top: 10px;
    right: 20px;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}

.book-page ul li:hover .check {
    border: 5px solid #d3334a;
}

.book-page ul li .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 15px;
    width: 15px;
    top: 5px;
    left: 5px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}

.book-page input[type=radio]:checked ~ .check {
    border: 5px solid #d3334a;
    background-color: #d3334a;
}

.book-page input[type=radio]:checked ~ .check::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-size: 1em;
    right: 0px;
    position: absolute;
    color: white;
    top: -10px;
    left: 0;
    width: 20px;
    height: 20px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.book-page input[type=radio]:checked ~ label {
}

.type {
    padding: 10px 20px;
}

.options-select .price {
    background-color: #d3334a;
    color: #ffffff;
    font-size: 20px;
    padding: 7.5px 0;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Luckiest Guy', Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.mia {
    color: #282828;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.ms {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: #282828;
    font-size: 12px;
    font-style: italic;
}

#hurry .book-page {
    padding-bottom: 0;
}

.pw {
    color: #d3334a;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.payment-details input, .payment-details input:focus {
    border: 1px solid #b9b9b9;
    background-color: #ffffff;
}

/*      Select Box      */
.sel {
    font-size: 1rem;
    display: inline-block;
    width: 350px;
    background-color: transparent;
    position: relative;
    cursor: pointer;
    border: 1px solid #c0c0c0;
    background: #fff;
}

.sel::before {
    position: absolute;
    content: '\f067';
    font-family: 'FontAwesome';
    color: #b9b9b9;
    right: 20px;
    top: calc(50% - 0.75em);
}

.sel.active::before {
    /*  transform: rotateX(-180deg);*/
}

.sel__placeholder {
    display: block;
    color: #282828;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 700;
    padding: 15px 10px;
    text-align: left;
    pointer-events: none;
    user-select: none;
    visibility: visible;
}

}
.sel.active .sel__placeholder {
    visibility: hidden;
}


.sel__placeholder::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.2em 0.5em;
    content: attr(data-placeholder);
    visibility: hidden;
}

.sel.active .sel__placeholder::before {
    visibility: visible;
}

.sel__box {
    position: absolute;
    top: calc(100% + 4px);
    left: -4px;
    display: none;
    list-style-type: none;
    text-align: left;
    font-size: 1em;
    background-color: #FFF;
    width: calc(100% + 8px);
    box-sizing: border-box;
}

.sel.active .sel__box {
    display: block;
    animation: fadeInDown 500ms;
}

.sel__box__options {
    display: list-item;
    padding: 0.5em 1em;
    user-select: none;
    color: #282828;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
}

.sel__box__options::after {
    content: '\f00c';
    font-family: 'FontAwesome';
    margin-left: 0;
    display: none;
    font-size: .7rem;
    right: 15px;
    position: absolute;
    background: #db4750;
    color: white;
    width: 20px;
    height: 20px;
    padding-left: 5px;
    padding-top: 2px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.sel__box__options.selected::after {
    display: inline;
}

.sel__box__options:hover, .sel__box .selected {
    border: 2px solid #db4750;
    background-color: #db4750;
}

/* ----- Select Box Black Panther ----- */
.sel {
    border: 1px solid #c0c0c0;
}

.sel--ect {
    z-index: 3;
}

/* ----- Select Box Superman ----- */
.sel--superman {
    /*   display: none; */
    z-index: 2;
}

/* ===== Keyframes ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.w100 {
    width: calc(100% + 1px);
}
.w100.nationality{width:100%;}
.ui-datepicker-calendar {
    box-shadow: 0 1px 3px rgba(10, 10, 10, 0.15);
}

tbody tr:nth-child(even) {
    background: #fff;
}

.ui-datepicker-header, thead {
    background-color: #d3334a;
    color: #fff;
    position: relative;
}

.ui-datepicker-title {
    text-align: center;
    font-family: 'Luckiest Guy', Arial, Helvetica, sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #e9f0f4;
}

.ui-datepicker-prev:after {
    content: '\f104';
    font-family: 'FontAwesome';
    position: absolute;
    left: 15px;
    font-size: 25px;
    top: 5px;
}

.ui-datepicker-next:after {
    content: '\f105';
    font-family: 'FontAwesome';
    position: absolute;
    right: 15px;
    font-size: 25px;
    top: 5px;
}

.ui-datepicker-prev span,
.ui-datepicker-next span {
    display: none;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-highlight a {
    background: #d3334a;
}

.yro, .yro h2 {
    background-color: #002a7b;
    font-size: 20px;
    padding: 5px 20px !important;
    margin-bottom: 0;
    color: #fff;
}

.info-yro {
    font-size: 12px;
    font-family: "Open Sans";
    color: #282828;
    line-height: 19px;
    margin-bottom: 10px;
}

.row.row-social.text-center {
    padding: 20px 0 0 0;
}

.ff {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: none;
    padding: 10px;
}

.separate {
    height: 20px;
    background-repeat: no-repeat;
}

.move-s .separate {
    width: auto;
}

.bl {
    display: block;
}

.options-select li:last-child {

}

.options-select.row {
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
}

.btn-aco {
    background-color: #f62646;

    color: white !important;
    font-family: 'Luckiest Guy', Arial, Helvetica, sans-serif;
    font-size: 20px;
    padding: 15px 35px;
}

.btn-aco:hover {
    box-shadow: 1px 8px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
    color: white !important;
}

.ss {
    height: 2.4375rem !important;
    padding: 0.5rem !important;
    margin: 0 0 1rem !important;
    box-shadow: none;
    border: 1px solid #b9b9b9;
}

.ss .ss {
    height: 2.4375rem !important;
    padding: 0 !important;
    border: none !important;
    margin: 0 !important;
    box-shadow: none;
    font-size: 1rem;
    font-weight: normal;
    color: #696969;
}
.s14{
    font-size: 14px!important;
}
.sel--ect {
}

.sel__box {
    background: white !important;
}

/*DEFAULT input*/
[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'], textarea {
    border: 1px solid #b9b9b9;
    background-color: #ffffff !important;
    box-shadow: none;
}

.sel__box__options--black-panther {
    background: #fff !important;
}

.sel--ect {
    z-index: 9
}

.sel--ect .sel__box--black-panther {
    z-index: 10;
}

.sel__box__options {
    background: #fff !important;
}

.resetcal1 {
    display: none;
}

.Student, .Un-employed, .Self-employed, .Employed {
    display: none;
}

.discal {
    background-color: #f9f9f9;
    opacity: 0.6;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#cal1, #cal2 {
    position: relative;
}

#mcal1, #mcal2 {
    margin: 0;
    padding: 0;
    padding: 10px 0px;
}

#mcal1.active, #mcal2.active {
    background-color: #eaeaea;
    color: #282828;
    font-family: "Open Sans";
    font-size: 16px;
    padding: 10px 0px;
    margin-bottom: 10px;
    font-weight: bold;
}

.details-ord b {
    color: #282828;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 700;
}

.details-ord p, .details-cost p, .details-total p {
    line-height: 1em;
    margin-bottom: 0;
    font-family: "Open Sans";
    font-size: 14px;
    color: #282828;
}

.details-cost p, .details-total p {
    line-height: 7px;
    margin-bottom: 14px;
}

.row.row-social.text-center {
    padding: 20px 0 0 0;
    margin-top: 40px;
    margin-bottom: 40px;
}

.yroomoption {
    width: 27.4%;
}

.yroomoption .row {
    width: 100%;
    padding: 15px 20px;
    padding-top: 10px;
}

.yroomoption .separate {
    margin: 0 !important;
}

.tick {
    content: '\f00c';
    font-family: 'FontAwesome';
    margin-left: 0;
    display: none;
    font-size: 1em;
    right: 15px;
    position: absolute;
    background: #fb434b;
    color: white;
    width: 20px;
    height: 20px;
    padding-left: 3px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.yroomoption #mca1, .yroomoption #mcal2 {
    padding: 0;
    margin: 0;
}

.yroomoption #mcal2 {
    padding: 10px 0px;
}

.date-mcal {
    line-height: 7px;
    margin-bottom: 14px;
    color: #d3334a;
}

.move-s {
    padding: 0;
    margin-bottom: 25px;
    margin-top: 25px;
}

.row-info {
    padding-left: 0 !important;
}

.row-social h2 {
    font-family: "Luckiest Guy";
    font-size: 18px;
    font-weight: 400;
}

.yro {
    padding: initial;
}

.sel--ect.active {
    z-index: 99;
}

.sel__box--ect .sel__box__options {
    padding-left: 15px !important;
}

.sel__box--ect .sel__box__options {
    padding-top: 7.5px !important;
}

.sel__box--ect .sel__box__options:hover {
    padding-left: 15px !important;
    border: 1px solid #f62646!important;
    background: #f9f9f9!important;
}

.sel.active.nationality .sel__box {
    display: block;
    animation: fadeInDown 500ms;
    overflow-y: auto !important;
    overflow-x: hidden;
    height: 22vh !important;
    border-bottom: 1px solid #b9b9b9!important;
    border-right: 1px solid #b9b9b9 !important;
}

.row.row-info {
    padding: 0;
}

#hurry {
    background: #fff !important;
    margin-top: 220px !important;
    padding-bottom: 60px;
}

#hurry p {
    color: #282828;
    font-family: "Open Sans";
    font-size: 14px;
}

#hurry strong, #hurry b {
    color: #282828;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 700;
}

#hurry h1 {
    color: #d3334a;
    font-family: "Luckiest Guy";
    font-size: 29px;
    line-height: 36px;
    margin-bottom: 10px;
}

.book-page img {
    width: 100%;
}

@media screen and (max-width: 39.9375em) {
    .ml10 {
        margin-left: 0 !important;
    }

    .book-page ul li {
        height: auto !important;
    }

    #hurry {
        margin-top: 40% !important;
    }

    #hurry h1 {
        font-size: 24px;
    }

    .yroomoption {
        width: 100% !important;
        margin-left: 30px !important;
        position: static !important;
        top: 0 !important;
        left: 30px !important;
        margin-left: 30px !important;
        padding-left: 30px !important;
        margin-top: 30px !important;
    }
}

.ui-datepicker-unselectable {
    color: #ababab;
    cursor: not-allowed;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-highlight a {
    background: #d3334a;
    border-radius: 100%;
    padding: 5px;
}

.clk {
    color: #d3334a;
}
.choices{
    margin-bottom:0;
}

.step {
    color: #b9b9b9;
    font-size: 17px;
    font-family: 'Luckiest Guy', Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    margin-top:3em;
}

.step b {
    color: #d3334a;
    font-size: 20px;
}

.sml {
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
}

.freesh img {
    width: 20px;
}

.freesh {
    margin-top: 30px;
}

.cb-x {
    margin-top: 10px;
    margin-bottom: 10px;
}

.ui-datepicker-title {
    font-size: 24px;
    padding-top: 10px;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-highlight a {
    background: url(../img/circle.png);
}

.ccvicon:before {
    content: url(../img/cardeico.png);
}

#resetcal1 {
    text-align: center;
    color: red;
}

.carde h2 {
    font-size: 20px;
    padding: 20px 0 !important;
    margin-bottom: 0;
    color: #d3334a;
    text-transform: uppercase;
}

.carde h3 {
    color: #282828;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 700;
}

.carde p {
    color: #282828;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
}

.pointsp img {
    width: 16px;
    height: 16px;
}

.pointsp {
    margin-bottom: 15px;
}

.cards-img {
    margin-bottom: 30px;
}

.qstion {
    clear: left;
    margin: 0;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 30px;
}

.err_msg, #err_msg {
    color: red;
    margin-top: 15px;
    margin-bottom: 15px;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-highlight a {
    background: #d3334a;
    border-radius: 50%;
    padding: 4px 1px 0 0;
    text-align: center;
    margin-left: 0;
    width: 27px;
    height: 27px;
    display: inline-block;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-default {
    text-align: center;
    margin-left: 0;
    width: 27px;
    height: 27px;
    display: inline-block;
    padding: 5px;
}

#resetcal1 {
    text-align: center;
    color: #d4334a;
    font-size: 13px;
    font-weight: bold;
}

.err_msg {
    color: #d3334a;
}

/* Fixed CSS*/
.ui-datepicker-calendar thead tr th span {
    visibility: hidden;
    display: block;
}

.ui-datepicker-calendar thead tr th span:first-letter {
    visibility: visible;
}

.payment-details {
}

.epd {
}

.eepd {
    padding-bottom: 0;
    margin-bottom: 0;
}

.p0 {
    padding: 0 !important;
}

#fixed-nav, .navbar-top-fixed {
    z-index: 99999;
}

[type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus, textarea:focus {
    border: 1px solid #b9b9b9;
    background-color: #fff !important;
    outline: none;
    box-shadow: none;
    transition: none;
}

tbody th, tbody td {
    padding: 0;
    margin: 0;
}

.book-page .cards-img {
    width: 200px;
    height: auto;
}

.ui-datepicker-calendar td {
    text-align: center;
}

thead th, thead td {
    text-align: right;
}

.with-calendar {
    margin-top: 30px;
}

#mcal2 {
    margin-left: -60px;
    display: block;
    float: left;
}

.book-page .separate img {
    width: 40%;
}

.book-page .move-s .separate img {
    width: 80%;
}

thead th, thead td, tfoot th, tfoot td {
    padding: 0.5rem 0.45rem;
    font-weight: bold;
    text-align: center;
}

.ml10 {
    margin-left: 20px;
}

.ui-datepicker-calendar td {
    text-align: center;
    font-size: 13px;
    padding: 1px 0;
}

.options-select {
    margin-left: 0;
}

#type_room,#type_property {
    font-size: 16px;
}

.row-social img {
    width: 32px;
}

.btm-sh {
    background: url('../img/btm.png') !important;
    background-repeat-x: repeat !important;
    background-repeat-y: no-repeat !important;
    border-bottom: 0 !important;
    padding: 0 !important;
    height: 20px !important;
    border-top: 0 !important;
}

.nbb {
    border-bottom: 0;
}

.date-mcal {
    font-size: 14px;
}

.details-ord, .details-cost, .details-total {
    padding-top: 20px !important;
}

.row-social img {
    width: 22px;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
}

.bx {
    width: 15px !important;
    margin-right: 15px;
    margin-top: -5px;
}

.typer b {
    color: #002a7b;
    font-size: 20px;
    padding: 5px 20px !important;
    margin-bottom: 0;
    font-family: 'Luckiest Guy', Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    display: block;
}

.typer img {
    width: 150px;
}

.typer, .typer b, .typer img, .typer p {
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
}

.typer .pricer {
    background: #fff;
}

.selected-active .typer .pricer {
    background-color: #e61445;
}

.typer {
    padding-top: 2em;
    padding-bottom: 3em;
}

.pricer {
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    padding: 20px;
}

.pricer b {
    font-weight: 700;
}

.selected-active .tpimg,
.selected-active b,
.selected-active p {
    background: #fff;
    padding: 0;
    margin: 0 !important;
    width: 100%;
}

.typer p {
    min-height: 100px;
    font-size: 14px;
    margin: 0 10%;
}

.options-select .container {
    padding: 0;
}

.active-optionsX {
    border: 1px solid #f62646;
    background: #f9f9f9;
}

.selected-active .pricer {
    color: #ffffff;
    background: #e61445;
}

/* CARD */
.cc-selector input {
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.cc-selector-2 input {
    position: absolute;
    z-index: 999;
}

.cc-selector-2 input:active + .drinkcard-cc, .cc-selector input:active + .drinkcard-cc {
    opacity: .9;
}

.cc-selector-2 input:checked + .drinkcard-cc, .cc-selector input:checked + .drinkcard-cc {
    -webkit-filter: none;
    -moz-filter: none;
    filter: none;
}

.drinkcard-cc {
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 60px;
    height: 70px;
    -webkit-transition: all 100ms ease-in;
    -moz-transition: all 100ms ease-in;
    transition: all 100ms ease-in;
    -webkit-filter: opacity(.5);
    -moz-filter: opacity(.5);
    filter: opacity(.5);
}

.drinkcard-cc:hover {
    -webkit-filter: opacity(1);
    -moz-filter: opacity(1);
    filter: opacity(1);
}

.s15 {
    font-size: 15px;
}
.s16 {
    font-size: 15px;
}

.adrcard p {
    color: #282828;
    font-size: 11px;
    font-style: italic;
}

.ahref {
    color: #d3334a;
    font-weight: bold;
}

#dropin-wrapper {
    padding-top: 5em;
}

.yroomoption tbody {
    border: 0;
}

#move_in, #move_out {
    color: #d3334a;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
}

.typer p {
    min-height: 100px;
}

.tselect {
    display: none;
    content: '';
    margin-left: 40%;
    width: 0;
    border-top: solid 30px #e61445;
    border-left: solid 30px transparent;
    border-right: solid 30px transparent;
}

.selected-active .tselect {
    display: block;
}

#hmp {
    margin-top: 30px !important;
}

#address_f {
    height: 15vh;
}

.cc-selector input {
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    width: 0;
    display: none;
    height: 0;
}

#min_d {
    float: right !important;
}

.ui-datepicker-title {
    font-size: 22px;
    padding-top: 11px;
    color: #fff;
}

#ama_text p {
    font-family: 'Luckiest Guy', Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    color: #f62646;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    line-height: 20px;
}

#ama_text {
    margin: 20px 0;
}

p.cost_total {
    margin-top: 10px;
    padding-left: 8px;
    font-size:14px
}

#cost_total {
    padding-left: 8px;
    font-size:16px;
}

/* sidebar slider*/
td.tdtr {
    padding-top: 12.5px;

}

td.tdmi {
    padding-top: 15px;
}

td.tdmo {
    padding-bottom: 15px;
}

.choices td {
    padding-left: 8px;
}

td.w-25 {
    width: 25% !important;
}

.typer p {
    line-height: 1rem;
}

.img-hurry{
    max-width:300px;
}


/*
style for typer
*/
.typer {
    padding-left: 0.45rem;
    padding-right: 0.45rem;
}

.typer .tpimg {
    border: 1px solid #d9d9d9;
    border-bottom: 0;
}

.typer .pricer {
    border: 1px solid #d9d9d9;
}

.typer b, .typer p {
    margin: 0;
    border: 1px solid #d9d9d9;
    border-bottom: 0;
    border-top: 0;
}

.selected-active.typer .tpimg {
    border: 1px solid #e61445 !important;
    border-bottom: 0 !important;
}

.selected-active.typer .pricer {
    border: 1px solid #e61445 !important;
}

.selected-active.typer b, .selected-active.typer p {
    margin: 0 !important;
    border: 1px solid #e61445 !important;
    border-bottom: 0 !important;
    border-top: 0 !important;
}

.typer p {
    padding: 0 5%;
    min-height: 3.5rem;
}

.tpimg img {
    padding: 10%;
}

.s14 {
    font-size:14px;
}
.step b { letter-spacing: 1px;}

.yro h2{text-align:center;}

/*
Awesome Checkbox
 */

.checkbox {
    padding-left: 10px;
    margin-top: -10px;
}
.checkbox label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px;
}
.checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 1px;
    font-size: 11px;
    color: #555555;
    line-height: 1.4;
}
.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}
.checkbox input[type="checkbox"]:focus + label::before,
.checkbox input[type="radio"]:focus + label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
.checkbox input[type="checkbox"]:checked + label::after,
.checkbox input[type="radio"]:checked + label::after {
    font-family: "FontAwesome";
    content: "\f00c";
}
.checkbox input[type="checkbox"]:indeterminate + label::after,
.checkbox input[type="radio"]:indeterminate + label::after {
    display: block;
    content: "";
    width: 10px;
    height: 3px;
    background-color: #555555;
    border-radius: 2px;
    margin-left: -16.5px;
    margin-top: 7px;
}
.checkbox input[type="checkbox"]:disabled,
.checkbox input[type="radio"]:disabled {
    cursor: not-allowed;
}
.checkbox input[type="checkbox"]:disabled + label,
.checkbox input[type="radio"]:disabled + label {
    opacity: 0.65;
}
.checkbox input[type="checkbox"]:disabled + label::before,
.checkbox input[type="radio"]:disabled + label::before {
    background-color: #eeeeee;
    cursor: not-allowed;
}
.checkbox.checkbox-circle label::before {
    border-radius: 50%;
}
.checkbox.checkbox-inline {
    margin-top: 0;
}

.checkbox-primary input[type="checkbox"]:checked + label::before,
.checkbox-primary input[type="radio"]:checked + label::before {
    background-color: #337ab7;
    border-color: #337ab7;
}
.checkbox-primary input[type="checkbox"]:checked + label::after,
.checkbox-primary input[type="radio"]:checked + label::after {
    color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked + label::before,
.checkbox-danger input[type="radio"]:checked + label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}
.checkbox-danger input[type="checkbox"]:checked + label::after,
.checkbox-danger input[type="radio"]:checked + label::after {
    color: #fff;
}

.checkbox-al input[type="checkbox"]:checked + label::before,
.checkbox-al input[type="radio"]:checked + label::before {
    background-color: #d3334a;
    border-color: #d3334a;
}
.checkbox-info input[type="checkbox"]:checked + label::before,
.checkbox-info input[type="radio"]:checked + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}
.checkbox-info input[type="checkbox"]:checked + label::after,
.checkbox-info input[type="radio"]:checked + label::after {
    color: #fff;
}
.checkbox-al input[type="checkbox"]:checked + label::after,
.checkbox-al input[type="radio"]:checked + label::after {
    color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked + label::before,
.checkbox-warning input[type="radio"]:checked + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}
.checkbox-warning input[type="checkbox"]:checked + label::after,
.checkbox-warning input[type="radio"]:checked + label::after {
    color: #fff;
}

.checkbox-success input[type="checkbox"]:checked + label::before,
.checkbox-success input[type="radio"]:checked + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}
.checkbox-success input[type="checkbox"]:checked + label::after,
.checkbox-success input[type="radio"]:checked + label::after {
    color: #fff;
}

.checkbox-primary input[type="checkbox"]:indeterminate + label::before,
.checkbox-primary input[type="radio"]:indeterminate + label::before {
    background-color: #337ab7;
    border-color: #337ab7;
}

.checkbox-primary input[type="checkbox"]:indeterminate + label::after,
.checkbox-primary input[type="radio"]:indeterminate + label::after {
    background-color: #fff;
}

.checkbox-danger input[type="checkbox"]:indeterminate + label::before,
.checkbox-danger input[type="radio"]:indeterminate + label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:indeterminate + label::after,
.checkbox-danger input[type="radio"]:indeterminate + label::after {
    background-color: #fff;
}

.checkbox-info input[type="checkbox"]:indeterminate + label::before,
.checkbox-info input[type="radio"]:indeterminate + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:indeterminate + label::after,
.checkbox-info input[type="radio"]:indeterminate + label::after {
    background-color: #fff;
}

.checkbox-warning input[type="checkbox"]:indeterminate + label::before,
.checkbox-warning input[type="radio"]:indeterminate + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:indeterminate + label::after,
.checkbox-warning input[type="radio"]:indeterminate + label::after {
    background-color: #fff;
}

.checkbox-success input[type="checkbox"]:indeterminate + label::before,
.checkbox-success input[type="radio"]:indeterminate + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:indeterminate + label::after,
.checkbox-success input[type="radio"]:indeterminate + label::after {
    background-color: #fff;
}

.radio {
    padding-left: 20px;
}
.radio label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px;
}
.radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out;
    transition: border 0.15s ease-in-out;
}
.radio label::after {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 11px;
    height: 11px;
    left: 3px;
    top: 3px;
    margin-left: -20px;
    border-radius: 50%;
    background-color: #555555;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.radio input[type="radio"] {
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}
.radio input[type="radio"]:focus + label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
.radio input[type="radio"]:checked + label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}
.radio input[type="radio"]:disabled {
    cursor: not-allowed;
}
.radio input[type="radio"]:disabled + label {
    opacity: 0.65;
}
.radio input[type="radio"]:disabled + label::before {
    cursor: not-allowed;
}
.radio.radio-inline {
    margin-top: 0;
}

.radio-primary input[type="radio"] + label::after {
    background-color: #337ab7;
}
.radio-primary input[type="radio"]:checked + label::before {
    border-color: #337ab7;
}
.radio-primary input[type="radio"]:checked + label::after {
    background-color: #337ab7;
}

.radio-danger input[type="radio"] + label::after {
    background-color: #d9534f;
}
.radio-danger input[type="radio"]:checked + label::before {
    border-color: #d9534f;
}
.radio-danger input[type="radio"]:checked + label::after {
    background-color: #d9534f;
}

.radio-info input[type="radio"] + label::after {
    background-color: #5bc0de;
}
.radio-info input[type="radio"]:checked + label::before {
    border-color: #5bc0de;
}
.radio-info input[type="radio"]:checked + label::after {
    background-color: #5bc0de;
}

.radio-warning input[type="radio"] + label::after {
    background-color: #f0ad4e;
}
.radio-warning input[type="radio"]:checked + label::before {
    border-color: #f0ad4e;
}
.radio-warning input[type="radio"]:checked + label::after {
    background-color: #f0ad4e;
}

.radio-success input[type="radio"] + label::after {
    background-color: #5cb85c;
}
.radio-success input[type="radio"]:checked + label::before {
    border-color: #5cb85c;
}
.radio-success input[type="radio"]:checked + label::after {
    background-color: #5cb85c;
}

input[type="checkbox"].styled:checked + label:after,
input[type="radio"].styled:checked + label:after {
    font-family: 'FontAwesome';
    content: "\f00c";
}
input[type="checkbox"] .styled:checked + label::before,
input[type="radio"] .styled:checked + label::before {
    color: #fff;
}
input[type="checkbox"] .styled:checked + label::after,
input[type="radio"] .styled:checked + label::after {
    color: #fff;
}
.d-none{
    display:none;
}

/*
Style fix
 */

#fixed-nav{
    z-index: 9999!important;
}
.navbar-top-fixed {
    z-index: 99999!important;
}

#hurry h1{
    padding-bottom: 32px;
    font-size: 2.5em;
    line-height: 1;
    color: #002a7b;
}
#hurry h1 span{
    color: #f62646;
    line-height: 1;
}

.sel.active.nationality .sel__box {
    margin-left: 3px!important;
    margin-top: -4px!important;
}
.sel.active .sel__box {
    margin-left: 3px!important;
    margin-top: -4px!important;
}
.sel .sel__box__options:last-of-type {
    border-right: 1px solid #b9b9b9 !important;
    border-left: 1px solid #b9b9b9 !important;
    border-bottom: 1px solid #b9b9b9 !important;
}
.sel .sel__box__options {
    border-right: 1px solid #b9b9b9 !important;
    border-left: 1px solid #b9b9b9 !important;
}
.sel__box__options.sel__box__options--ect.w100.ss.nationality{
    border-right:0!important;
}
.w100.nationality {
    width: calc(100% + 2px);
}