
@font-face {
    font-family: "Roboto";
    src: url('fonts/Roboto-Regular.ttf');
	font-weight: 400;
}

@font-face {
    font-family: "Roboto";
    src: url('fonts/Roboto-Light.ttf');
	font-weight: 100;
}


/* Archer Medium */
@font-face {
  font-family: "Archer";
  src: url("/fonts/Archer-Medium.otf") format("opentype");
  font-weight: 500; /* Use 500 for medium weight or adjust to your preference */
  font-style: normal;
}

/* Archer Semibold */
@font-face {
  font-family: "Archer";
  src: url("/fonts/Archer-Semibold.otf") format("opentype");
  font-weight: 600; /* Use 600 for semibold */
  font-style: normal;
}

/* Archer Bold */
@font-face {
  font-family: "Archer";
  src: url("/fonts/Archer-Bold.otf") format("opentype");
  font-weight: 700; /* Use 700 for bold */
  font-style: normal;
}


/* global settings */
:root{

    /* default input elem margin bottom */
    --input-margin-bottom: 20px;

    /* default text color used in BODY */
    --app-bg-color: #c5e1a5;
    --app-text-color: #4f4d4d;
    --app-menu-bg-color: inherit;
    --app-menu-text-color: #5f6368;
    --app-container-bg-color: #c5e1a5;
    --app-container-text-color: #4f4d4d;

    /* default image button font size */
    --img-btn-font-size0: 22pt;

    /* for menu item image */
    --img-menu-font-size: 20pt;


    /* app header & footer setting */
    --app-h-height: 55px;
    --app-f-height: 30px;

    /* header/group text */
    --h0-text-color: #000;
    --h0-font-size: 1.8em;

    --h1-text-color: #036d1c;
    --h1-font-size: 1.2em;

    --h2-text-color: #036d1c;
    --h2-font-size: 1em;

    --h3-text-color: #036d1c;
    --h3-font-size: .9em;

    /* the label/static text */
    --t0-text-color: #4f4d4d;
	--t0-text-white: #ffffff;
    --t0-font-size: 1em;

    --t1-text-color: #4f4d4d;
    --t1-font-size: .9em;

    /* tips, notes, for not important but long text */
    --t2-text-color: #4f4d4d;
    --t2-font-size: .8em;

    /* the section on a screen */
    --sect-bg-color: #ffffff;
    --sect-border-radius: 8px;
	--sect-border-radius-big: 15px;
    --sect-padding: 20px;
    --sect-margin: 10px;

    /* item/popup item - hover color */
    --hover-text-color: #221e1e;
    --hover-bg-color: #ada2a0;
    --hover-transform: scale(1.05);
    --hover-padding: 20px;

    /* popup item - selected color */
    --sel-item-bg-color: hsl(45, 70%, 55%);
    --sel-item-text-color: inherit;

    /* for item-div in the item list (il) */
    --item-padding: 20px;
    --item-bg-color: #f5e6c9;
    --item-border-color: hsl(57,17%,85%);
    --item-border-radius: 8px;
    --item-icon-font-size: 10pt;
    --item-margin: 10px;

    --inactive-item-opacity: 0.5;


    /* the column-gap and row-gap - for grid */
    --item-gap: 10px;

    /* for item list (il) */
    --item-list-margin: 10px;

    /* record counter for item list (il) */
    --rec-cnt-lbl-font-size: .9em;
    --rec-cnt-val-font-size: 1.2em;
    --rec-cnt-val-margin-left: 10px;
    --rec-cnt-val-margin-right: 10px;
    --rec-cnt-val-color: hsl(332, 80%, 57%);

    /* for search bar */
    --search-bar-bg-color: hsl(60, 2%, 88%);
    --search-bar-border-color: hsl(60, 3%, 65%);

    /* for checkbox & radio button */

    /* dark blue */
    /* --chk-input-color: hsl(219, 38%, 49%); */
    --chk-input-color: hsl(23, 97%, 54%);
	
	
	/* --title-font */
	 --title-font: "Archer";
}

body {
    font-family: "Roboto";
    font-size: 10pt;
    color: var(--app-text-color);
    background-color: #f4f4f4;
    margin: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body.white {
	background-color: #ffffff;;
}
::-webkit-input-placeholder {
    color: #afafaf;
}

.txt-input {
    color: #000000;
    margin-bottom: var(--input-margin-bottom);
    width: 100%;
    padding: 15px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #fff;
}

input,
select {
    outline: none;
}

select {
    color: #0066cc;
    margin-bottom: var(--input-margin-bottom);
    width: 100%;
    font-size: 10pt;
    padding: 8px 10px;
    /* border: 1px solid #69a3d5; */
    border: 0;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: #fff;
}

input:disabled,
select:disabled {
    background-color: gainsboro;
}

/* display the elements in a row */

/* flex layout */
.flx-nw {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.flx-w {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.flx-nw-rr {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    margin-right: 2px;
}


/* grid layout */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--item-gap);
    row-gap: var(--item-gap);
}

.grid-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: var(--item-gap);
    row-gap: var(--item-gap);
}

.grid-4col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: var(--item-gap);
    row-gap: var(--item-gap);
}

/* scrollbar */
.v-scroll0 {
    overflow: hidden;
    /* 'auto' will cause difficult in calculating the width on Windows browser. */
    overflow-y: auto;

    -webkit-overflow-scrolling: touch;
    /* scrollbar-width: thin; */
    /* scrollbar-color: #6a6a6a #aaa; */

}

.v-scroll {
    overflow: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
	padding-right: 20px;
    /* scrollbar-width: thin; */
    /* scrollbar-color: #6a6a6a #aaa; */
}

    .v-scroll::-webkit-scrollbar,
    .v-scroll0::-webkit-scrollbar
    {
        width: 5px;
        height: 8px;
        background-color: #aaa;
    }

    .v-scroll::-webkit-scrollbar-thumb,
    .v-scroll0::-webkit-scrollbar-thumb
    {
        background: #000;
    }

/* screen blocking elem */
#blk,
.blk {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    /* background-color: rgba(0,0,0,0.5); */
    background-color: rgba(172, 166, 166, 0.5);
    z-index: 200;
}



/* message box */
#msgbox {
    z-index: 30000;
    position: fixed;
    padding: 20px;
    border-radius: 10px;
    top: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    outline: none;
    border: 1px solid #fff;
}

    #msgbox .msgbox-title0 {
        position: relative;
    }

        #msgbox .msgbox-title1 {
            font-size: 1.2em;
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            padding: 20px;
            box-sizing: border-box;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
        }

        #msgbox .msgbox-ico {
            font-size: 16pt;
            margin-right: 20px;
        }

    #msgbox .msgbox-msg0 {
        max-width: 500px;
    }


    #msgbox .remarks0 {
        margin-top: 10px;
    }

    #msgbox .remarks {
        display: none;
    }

    #msgbox .remarks2 {}

    #msgbox .remarks2 > input {
        color: #0066cc;
        height: 35px;
        margin-bottom: var(--input-margin-bottom);
        width: 100%;
        font-size: 10pt;
        padding: 10px;
        border: 0;
        border-radius: 8px;
        box-sizing: border-box;
        background-color: #fff;
    }

    #msgbox .button {
        margin-left: 20px;
        cursor: pointer;
        padding: 8px 20px 8px 12px;
        box-sizing: border-box;
        border-radius: 2px 10px 25px 5px;
    }

        #msgbox .button:hover {
            background-color: hsl(60, 7%, 67%);
        }

    #msgbox .opt0 {
        margin-right: 0;
    }

    #msgbox .opt {
        display: none;
    }

    #msgbox .opt2 {
        display: flex;
        flex-direction: row-reverse;
        margin-top: 20px;
    }

.msgbox-info {
    background-color: hsl(129, 36%, 66%);
    color: #000;
}

    .msgbox-info .msgbox-ico:after {
        content: 'info';
    }

    .msgbox-info .msgbox-title1 {
        background-color:hsl(129, 36%, 56%);
        color: #fff;
    }

    .msgbox-info .msgbox-msg {
        color: #000;
    }

    .msgbox-info  .button {
        border: 1px solid hsl(0, 0%, 45%);
    }

.msgbox-err {
    background-color: hsl(12, 94%, 74%);
    color: #000;
}

    .msgbox-err .msgbox-ico:after {
        content: 'report';
    }

    .msgbox-err .msgbox-title1 {
        background-color: hsl(12, 94%, 64%);
        color: #fff;
    }

    .msgbox-err .msgbox-msg {
        color: #000;
    }

    .msgbox-err  .button {
        border: 1px solid hsl(0, 0%, 45%);
    }

.msgbox-warn {
    background-color: hsl(33, 73%, 69%);
    color: #000;
}

    .msgbox-warn .msgbox-ico:after {
        content: 'warning';
    }

    .msgbox-warn .msgbox-title1 {
        background-color: hsl(33, 73%, 59%);
        color: #fff;
    }

    .msgbox-warn .msgbox-msg {
        color: #000;
    }

    .msgbox-warn  .button {
        border: 1px solid hsl(0, 0%, 45%);
    }

.msgbox-cfm {
    background-color: hsl(53, 90%, 75%);
    color: #000;
}

    .msgbox-cfm .msgbox-ico:after {
        content: 'help';
    }

    .msgbox-cfm .msgbox-title1 {
        background-color:hsl(53, 90%, 65%);
        color: #000;
    }

    .msgbox-cfm .msgbox-msg {
        color: #000;
    }

    .msgbox-cfm  .button {
        border: 1px solid hsl(0, 0%, 45%);
    }


.msgbox-prompt {
    background-color: hsl(233, 77%, 77%);
    color: #000;
}

    .msgbox-prompt .msgbox-ico:after {
        content: 'help';
    }

    .msgbox-prompt .msgbox-title1 {
        background-color:hsl(233, 77%, 67%);
        color: #fff;
    }

    .msgbox-prompt .msgbox-msg {
        color: #000;
    }

    .msgbox-prompt  .button {
        border: 1px solid hsl(0, 0%, 45%);
    }



/* popup dialog */
.pp-dlg {
    position: absolute;
    z-index: 100;

}

    .pp-dlg .arrow {
        height: 20px;
        position: relative;
    }

    .pp-dlg .arrow .arrow-up {
        position: absolute;
        top: 5px;
        left: 15px;
        width: 0;
        height: 0;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 15px solid #e1e1e0;
    }




/*************/
/* standard popup*/
/*************/
.std-pp {
    position: absolute;
    position: fixed;
    width: 300px;
    top: 0;
    height: 100%;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 3000;
    overflow: hidden;
}

    .std-pp > div {
        padding: var(--sect-padding);
        box-sizing: border-box;
        /* height: 98%; */
        height: 100%;
        background-color: var(--sect-bg-color);
    }


    .std-pp .pp-item-div {
        width: 100%;
        padding: 10px 12px;
        box-sizing: border-box;
        border-bottom: 1px solid hsl(54, 12%, 66%);;
        cursor: pointer;
    }



    .std-pp .pp-item-div .ico {
        color: hsl(49, 75%, 39%);
        margin-right: 10px;
    }

    .std-pp .pp-item-div .ico:after {
        content: 'slow_motion_video';
    }

    .std-pp .pp-item-div .text {
        margin-top: 2px;
    }

    /* old style */
/*
    .std-pp .pp-item-div:hover {
        background-color: var(--hover-bg-color);
        color: var(--hover-text-color);
    } */

    .std-pp .pp-item-div:hover {
        background-color: var(--hover-bg-color);
        color: var(--hover-text-color);
        transform: var(--hover-transform);
        padding: var(--hover-padding);
        box-sizing: border-box;
    }

    .std-pp .sel-item {
        background-color: var(--sel-item-bg-color);
        color: var(--sel-item-text-color);
    }




/***************/
/**update progress**/
/***************/
.u-progress-pp {
    position: absolute;
    width: 300px;
    min-height: 100px;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 3000;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 30px;
    box-shadow: 0 1px 4px hsla(0, 0%, 0%, 0.2);
}
    .u-progress-pp .ico0 {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .u-progress-pp .spinner {
        width: 40px;
        height: 40px;
        background-size: 40px 40px;
    }

    .u-progress-pp .u1 {
        font-size: 1em;
        margin-top: 10px;
        width: 100%;
    }

    .u-progress-pp .progress-item-t1 {
        line-height: 40px;
        margin-left: 10px;
    }


    .u-progress-pp .ico-progress-done,
    .u-progress-pp .progress-ico {
        font-size: 24pt;
        line-height: 40px;
        height: 40px;
        width: 40px;
        color: hsl(120, 100%, 25%);
    }

        .u-progress-pp .ico-progress-done:after {
            content: 'task_alt';
        }


.spinner {
    background-image: url('images/spinner.gif');
    background-size: 30px 30px;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
}

.compulsory {
    background-color: #ffffff;
    border: 1px solid #ff9090;
}

.compulsory-mark {}

.compulsory-mark:after {
    content: '*';
    color: red;
    margin-left: 5px;
}

.compulsory-mark2:after {
    content: '**';
    color: red;
    margin-left: 5px;
}


/* the selected tab */
.sel-tab {
    color: hsl(214, 22%, 26%);
}


.no-data {
    font-size: 20pt;
    text-align: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}


/*******************/
/* buttons */
/*******************/

.btn-back {
    font-size: 28pt;
    cursor: pointer;
}

    .btn-back:after {
        content: 'chevron_left';
    }

.btn-more-opt {
    font-size: var(--img-btn-font-size0);
    cursor: pointer;
    margin-right: 10px;
}

    .btn-more-opt:after {
        content: 'more_vert';
    }


.btn-dt {
    font-size: var(--img-btn-font-size0);
    line-height: 50px;
    cursor: pointer;
    margin-top: -10px;
	margin-left: -40px;
    padding-top: 5px;
}

    .btn-dt:after {
        content: 'date_range';
    }

.btn-search {
    font-size: var(--img-btn-font-size0);
    cursor: pointer;
}

    .btn-search:after {
        content: 'search';
    }

.btn-save {
    font-size: var(--img-btn-font-size0);
    cursor: pointer;
    margin-right: 10px;
}

    .btn-save:after {
        content: 'done_all';
    }

.btn-add {
    font-size: var(--img-btn-font-size0);
    cursor: pointer;
}

    .btn-add:after {
        content: 'add';
    }

.btn-delete {
    font-size: var(--img-btn-font-size0);
    cursor: pointer;
    margin-right: 10px;
}

    .btn-delete:after {
        content: 'delete';
    }

.btn-delete2 {
    font-size: 20pt;
    cursor: pointer;
    color: #f26b6b;
    padding-right: 10px;
}

    .btn-delete2:after {
        content: 'remove_circle_outline';
    }

.btn-edit {
    font-size: var(--img-btn-font-size0);
    cursor: pointer;
}

    .btn-edit:after {
        content: 'drive_file_rename_outline';
    }

.btn-cancel {
    font-size: var(--img-btn-font-size0);
    cursor: pointer;
}

    .btn-cancel:after {
        content: 'highlight_off';
    }


.btn-edit-amt {
    font-size: var(--img-btn-font-size0);
    cursor: pointer;
}

    .btn-edit-amt:after {
        content: 'calculate';
    }



.btn-menu {
    font-size: 26pt;
    padding-top: 10px;
    box-sizing: border-box;
    cursor: pointer;
    margin-right: 10px;
}

    .btn-menu:after {
        content: 'menu';
    }

.btn-return {
    font-size: 26pt;
    padding-top: 10px;
    box-sizing: border-box;
    cursor: pointer;
}

    .btn-return:after {
        content: 'chevron_left';
    }


.btn-amend-bk0 {
   
    color: hsl(0, 0%, 100%);
    padding: 8px 12px;
    text-align: center;
    width: max-content;
    height: max-content;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 2px;
    margin-right: 25px;
    font-size: 1em;
}

    .btn-amend-bk0 .btn-t0 {
        margin-top: 5px;
        margin-left: 5px;
    }

    .btn-amend-bk {
        font-size: 18pt;
        cursor: pointer;
    }

    .btn-amend-bk:after {
        content: 'edit';
    }


.btn-sign-up0 {
    
    color: hsl(0, 0%, 100%);
    padding: 8px 12px;
    text-align: center;
    width: max-content;
    height: max-content;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 2px;
    margin-right: 25px;
    font-size: 1em;
}

    .btn-sign-up0 .btn-t0 {
        margin-top: 5px;
        margin-left: 5px;
    }

    .btn-sign-up {
        font-size: 18pt;
        cursor: pointer;
    }

   

.btn-login0 {
	background-color:#ffffff;
    color: #010101;
    padding: 8px 35px 12px 35px;
    text-align: center;
    width: max-content;
    height: max-content;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 2px;
    margin-right: 0px;
    font-size: 1em;
}

    .btn-login0 .btn-t0 {
        margin-top: 5px;
        margin-left: 5px;
    }

    .btn-login {
        font-size: 18pt;
        cursor: pointer;
    }

    .btn-login:after {
        content: 'login';
    }


.btn-bk-hist0 {
  
    color: hsl(0, 0%, 100%);
    padding: 8px 12px;
    text-align: center;
    width: max-content;
    height: max-content;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 2px;
    margin-right: 5px;
    font-size: 1em;
}

    .btn-bk-hist0 .btn-t0 {
        margin-top: 5px;
        margin-left: 5px;
    }

    .btn-bk-hist {
        font-size: 18pt;
        cursor: pointer;
    }

    .btn-bk-hist:after {
        content: 'drive_file_rename_outline';
    }


.btn-bk-msg0 {
    color: hsl(0, 0%, 100%);
    padding: 8px 12px;
    text-align: center;
    width: max-content;
    height: max-content;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 2px;
    margin-right: 5px;
    font-size: 1em;
}

    .btn-bk-msg0 .btn-t0 {
        margin-top: 5px;
        margin-left: 5px;
    }

    .btn-bk-msg {
        font-size: 18pt;
        cursor: pointer;
    }

    .btn-bk-msg:after {
        content: 'sms';
    }


.btn-bk-profile0 {
    color: hsl(0, 0%, 100%);
    padding: 8px 12px;
    text-align: center;
    width: max-content;
    height: max-content;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 2px;
    margin-right: 5px;
    font-size: 1em;
}

    .btn-bk-profile0 .btn-t0 {
        margin-top: 5px;
        margin-left: 5px;
    }

    .btn-bk-profile {
        font-size: 18pt;
        cursor: pointer;
    }

    .btn-bk-profile:after {
        content: 'drive_file_rename_outline';
    }



/*******************/
/*btn background*/
/*******************/
.btn-bg1 {
    border-radius: 50%;
    padding: 6px;
    box-sizing: border-box;
    margin-right: 14px;
    margin-bottom: 2px;
    box-shadow: 2px 2px 5px hsl(22,11%,15%);
    height: 40px;
    width: 40px;
    cursor: pointer;
}

.btn-bg2 {
    border-radius: 50%;
    padding: 6px;
    box-sizing: border-box;
    margin-right: 14px;
    margin-bottom: 2px;
    box-shadow: 2px 2px 5px hsl(22,11%,15%);
    height: 40px;
    width: 40px;
    cursor: pointer;
}

.btn-bg3 {
    border-radius: 50%;
    padding: 6px;
    box-sizing: border-box;
    margin-right: 14px;
    margin-bottom: 2px;
    box-shadow: 2px 2px 5px hsl(22,11%,15%);
    height: 40px;
    width: 40px;
    cursor: pointer;
}


/* ------------------------- */
/* global syles to be merged into 'ui-shared.css' */
/* ------------------------- */

* {
    box-sizing: border-box;
}

.btn1 {
    background-color: #3a3e3e;
    color: #ffffff;
    padding: 8px 35px 12px 35px;
    text-align: center;
    width: max-content;
    height: max-content;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 2px;
    margin-right: 8px;
}

    .btn1 .btn-t0 {
        margin-top: 3px;
        font-size: 15pt;
    }

	.btn-validate-promo-code0 .btn-t0 {
    
        font-size: 13pt;
    }


.btn-list {
    font-size: 22pt;
    line-height: 50px;
    cursor: pointer;
    margin-top: -10px;
}

    .btn-list:after {
        content: 'fact_check';
    }

.lbl1 {
    font-size: 11pt;
    color: hsl(0, 4.1%, 29%);
}

.txt-memo {
    color: #0066cc;
    height: 80px;
    margin-bottom: var(--input-margin-bottom);
    width: 100%;
    padding: 10px;
    border: 1px solid var(--sect-bg-color);
    border-radius: 8px;
    box-sizing: border-box;
    background-color: #fff;
}

/* ------------------------- */
/* flex grid */
/* ------------------------- */


/* col width for desktop */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

@media (max-width: 768px) { 
	.col-1, .col-2 , .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11 , .col-12 {
		width: 100%;
	}
}


/* elem group */
/* .g1 {
    background-color: var(--sect-bg-color);
    margin-bottom: var(--sect-margin);
    border-radius: var(--sect-border-radius);
    padding: var(--sect-padding);
    box-sizing: border-box;
} */



/*******************/
/* hotel site - global setting */
/*******************/

.hotel-name {
    color: var(--t1-text-color);
    font-size: 3em;
    padding:10px 20px;
	
}



.axn-title{
    font-size: 1.6em;
    padding: 10px 0px 0px 0px;
    color: var(--t0-text-color);
	text-align: center;
}

.axn-title h2, .axn-title-1 h2 {
	margin-bottom:0px;
}


.axn-title-1 {
    font-size: 1.6em;
    padding: 0px 10px 20px 20px;
    color: var(--t0-text-color);
}

.hide-ico .material-icons{
    display: none;
}


/*******************/
/* fast-obe-enq */
/*******************/

.fast-obe-enq {

}
    .fast-obe-enq .avail-t1 {
        font-size: 1.2em;
        padding: 4px 10px 4px 20px;
        color: var(--t0-text-color);
    }

	.fast-obe-enq h1 {
        font-size: 5em;
        padding: 380px 10px 20px 0px;
        color: var(--t0-text-white);
		margin: 0px;
    }

    .fast-obe-enq .ime3 {
        margin: 12px 10px 10px 20px;
        color: var(--t0-text-white);
        font-size: 1em;
        text-align: right;
	
    }

    .fast-obe-enq .search-g1 {
        background-color: #ffffff;
        margin: var(--sect-margin);
        border-radius: var(--sect-border-radius-big);
        padding: 30px 40px;
        box-sizing: border-box;
    }

    .fast-obe-enq .search-g1-2{
        margin-right: 0px;
    }

    .fast-obe-enq .search-g1 .txt-input {
        width: 90%;
    }

    .fast-obe-enq .t3 {
        margin:7px 10px 5px 0;
        color: var(--t0-text-color);
		font-size:1.2em;
		
    }

    .fast-obe-enq .avail-rate-t1 {
        font-size: 1.2em;
        padding: 20px 10px 4px 20px;
        color: var(--t0-text-color);
    }

    .fast-obe-enq .rate-item {
        margin: 10px;
        border-radius: var(--sect-border-radius-big);
        background-color: #fff;
    }

    .fast-obe-enq .rate-item img{
        height: 400px;
		width: 100%;
		border-radius: 15px 0px 0px 0px;
    }
	
    /* [UPDATE] 2025-01-09, AL - ui-app.css: - */
    .fast-obe-enq .rate-item .btn-room-gallery{  
        text-align: center;
        text-decoration: underline;
        cursor: pointer;
    }

    .fast-obe-enq .rate-item .amt{
        font-size: 2.2em;
		font-weight: bold;
    }

    .fast-obe-enq .rate-item .rt-desc0{
        margin-top: 10px;
        margin-right: 10px;
        font-size: .9em;
    }
    .fast-obe-enq .rate-item .rt-desc{
        margin-top: 10px;
    }

    .fast-obe-enq .rate-item .rf,
    .fast-obe-enq .rate-item .rtf {
        display: flex;
        flex-direction: row;
        font-size: .9em;
        color: var(--t0-text-color);
    }

        .fast-obe-enq .rate-item .rf > div,
        .fast-obe-enq .rate-item .rtf > div {
            padding: 5px 10px;
            margin-right: 4px;
            margin-bottom: 4px;
            background-color: #f4f4f4;
			border-radius: 50px;
        }

    .fast-obe-enq .rate-item .rate-t0{
        margin-top: 10px;
    }

        .fast-obe-enq .rate-item .rate-t0 > div{
            font-size: .8em;
            margin-right: 4px;
            color: #a7852e;
            padding: 5px;
        }
    .fast-obe-enq .rate-item .rate-t3{
        margin-top: 20px;
        font-size: 1.2em;
		margin-bottom: 5px;
    }


	.fast-obe-enq .rate-info {
 		padding: 30px 40px;
	}
	
	.fast-obe-enq .price-bk > div {
 		justify-content: flex-end;
	}

	.fast-obe-enq .btn-bk0{
    	float: right;
		margin-right: 0px;
	}
	
    .fast-obe-enq .btn-bk0 {
        margin-top: 20px;
    }

    .fast-obe-enq .curr-code {
        font-size: 1.2em;
		margin-top:4px;
        margin-right: 3px;
    }

    .fast-obe-enq .enq-no-data {
        font-size: 1.1em;
        text-align: center;
    }

    .fast-obe-enq .btn-bk {
        font-size: 20pt;
        cursor: pointer;
    }

     
.fast-obe-enq .search-g1.search-rs-container {
	background: none;
	padding: 0px;

}


.long-desc { color:#6c6c6c; }


#roomsGuestPanel { 
	display: none;
	position: absolute;
	top: 82px;
	left: 0;
	width: 250px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 6px;
	padding: 20px;
	z-index: 999;
	font-size: 1.1em;
}

#roomCount, #adultCount, #kidCount {
	padding: 0px 5px;
}
/*******************/
/* notif counter - set by appObe.load_notif_cnt() */
/*******************/
.fast-obe-enq .btn-bk-msg0 {
    position: relative;
}

    .fast-obe-enq .btn-bk-msg0 .unread-cnt {
        position: absolute;
        width: 14px;
        height: 14px;
        top: 1px;
        right: 1px;
        background-color: red;
        color: #fff;
        text-align: center;
        border-radius: 50%;
        line-height: 15px;
        font-size: 7pt;
    }

/********************/
/* Slideshow CSS    */
/********************/
/* [UPDATE] 2024-12-12, AL - ui-app.css: Adding Slideshow CSS*/
/* slide-modal background */
.fast-obe-enq .slide-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    padding-top: 60px;

}

/* slide-modal content */
.fast-obe-enq .slide-modal-content {
    margin: auto;
    padding: 20px;
    width: 80%;
    max-width: 700px;
}

/* Close button */
.fast-obe-enq .btn-slide-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 25px;
    cursor: pointer;
}

/* Close button on hover */
.fast-obe-enq .btn-slide-close:hover,
.fast-obe-enq .btn-slide-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Slideshow container */
.fast-obe-enq .slideshow-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: auto;
}

/* Hide all images by default */
.fast-obe-enq .slideshow-item {
    display: none;
}

/* Next & previous buttons */
.fast-obe-enq .btn-slide-prev, .fast-obe-enq .btn-slide-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.fast-obe-enq .btn-slide-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.fast-obe-enq .btn-slide-prev:hover, .btn-slide-next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Fading animation */
.fast-obe-enq .fade {
    animation-name: fade;
    animation-duration: 1.5s;
}        

.fast-obe-enq .slideshow-item img {
    width: 100%;      /* Set width to 25% of the container */
    height: 100%;     /* Set height to 25% of the container */
    object-fit: contain;  /* Maintain aspect ratio */
    margin: 0 auto;   /* Center images inside the slide-modal */
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .fast-obe-enq .prev, .fast-obe-enq .next {font-size: 11px}
}

/*******************/
/* fast-obe-bk */
/*******************/

.fast-obe-bk {

}

    .fast-obe-bk .bk-g1 {
        background-color: var(--sect-bg-color);
        border-radius: var(--sect-border-radius);
        padding: var(--sect-padding);
        box-sizing: border-box;
    }

	.fast-obe-bk .bk-g1.bk-form1 {
		border: 1px solid #dbdbdc;
	}

    .fast-obe-bk .rate-item {
        display: grid;
        grid-template-columns: 100px 1fr 0px;
        column-gap: 10px;
        border-radius: var(--sect-border-radius);
        background-color: #fff;
    }

    .fast-obe-bk .rate-item img{
        height: 100px;
        width: 100px;
    }


    .fast-obe-bk .t3{
        color: var(--t0-text-color);
        margin-right: 10px;
    }

    .fast-obe-bk .t3-2{
        font-size: 1.6em;
		color: var(--t0-text-color);
		margin-top: 20px;
		margin-bottom: 10px;
		font-weight: 600;
		font-family: var(--title-font);
    }

    .fast-obe-bk .t3-3 {
        color: var(--t0-text-color);
    }

    .fast-obe-bk .t4{
        padding: 5px 0;
        font-size: 1.2em;
    }

    .fast-obe-bk .noa{
        margin-right: 10px;
    }

    .fast-obe-bk .rate-t0{
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .fast-obe-bk .rate-t2{
        font-size: .9em;
        margin-right: 4px;
        padding: 4px 8px;
        color: var(--t0-text-color);
        background-color: hsl(60, 9%, 83%);
    }

    .fast-obe-bk .promo-code2 {
        color: var(--t0-text-color);
        margin-top: 7px;
        margin-right: 10px;
    }

    .fast-obe-bk .promo-code-input {
        width: 170px;
        margin-right: 10px;
		margin-bottom: 3px;
    }



    .fast-obe-bk .payable2 {
        color: var(--t0-text-color);
        margin-right: 120px;
    }

    .fast-obe-bk .payable {
        font-size: 2em;
    }

    .fast-obe-bk .amend-info0 {
        margin-bottom: 20px;
    }

    .fast-obe-bk .amend-info-t1 {
        color: var(--t0-text-color);
        margin-right: 10px;
    }
    .fast-obe-bk .amend-info-t2 {
        color: hsl(137, 77%, 31%);
    }

    .fast-obe-bk .amend-notes {
        margin-top: 20px;
        margin-bottom: 10px;
        color: #000;
        text-align: right;
    }

    .fast-obe-bk .amend-net-amt0 {
        margin-top: 20px;
    }

    .fast-obe-bk .amend-net-amt {
        font-size: 2em;
        color: hsl(137, 77%, 31%);
    }

    .fast-obe-bk .curr-code {
        font-size: 1.2em;
        margin-right: 3px;
		margin-top:2px;
    }

    .fast-obe-bk .rate-item .amt{
        font-size: 1.8em;
    }

    .fast-obe-bk .btn-validate-promo-code {
        font-size: 14pt;
        cursor: pointer;
        display: none;
    }

        .fast-obe-bk .btn-validate-promo-code:after {
            content: 'sort';
        }

    .fast-obe-bk .btn-submit-bk {
        font-size: 20pt;
        cursor: pointer;
    }

        .fast-obe-bk .btn-submit-bk:after {
            content: 'chevron_right';
        }

    .fast-obe-bk .btn-pay-now {
        font-size: 20pt;
        cursor: pointer;
    }

    .fast-obe-bk .btn-restart {
        font-size: 20pt;
        cursor: pointer;
    }

        .fast-obe-bk .btn-restart:after {
            content: 'chevron_left';
        }


    .fast-obe-bk .btn-view-tnc {
        font-size: 15pt;
        cursor: pointer;
    }

        .fast-obe-bk .btn-view-tnc:after {
            content: 'open_in_new';
        }


    .fast-obe-bk .bk-tnc2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .fast-obe-bk .bk-tnc-t1 {
        font-size: 1.2em;
    }

    .fast-obe-bk .tnc-dtl {
        height: 200px;
        background-color: hsl(60, 9%, 83%);
        overflow: hidden;
        overflow-y: scroll;
        padding: 10px;
    }

    .flx-nw.tnc0 {
        cursor: pointer;
		padding-bottom: 20px;
    }

.flx-nw-rr.payable0 {padding-bottom: 30px;}

    .fast-obe-bk .view-tnc2 {
        margin-left: 10px;
        margin-top: 4px;
    }

    .fast-obe-bk .btn-close-tnc {
        font-size: 20pt;
        cursor: pointer;
    }

        .fast-obe-bk .btn-close-tnc:after {
            content: 'close';
        }

    .fast-obe-bk .not-amd-input {
        background-color: hsl(0, 0%, 83%);
    }

	.fast-obe-bk .btn-restart0 .btn-t0 { 
		padding-top: 4px; 
		text-decoration: underline;
		text-decoration-thickness: 1px;  
  		text-underline-offset: 3px;   
		text-decoration-color: #b5b5b5;   
	}


.rate-il0 .rate-desc {width: 100%; font-size:32px; font-family: var(--title-font);}

.fast-obe-bk .btn-restart0 {margin-left: 15px;}


.col-7.bk-container {
	padding-right:30px;
}
/*******************/
/* fast-obe-pymt-status */
/*******************/

.fast-obe-pymt-status {

}

    .fast-obe-pymt-status .bk-g1 {
        background-color: var(--sect-bg-color);
        margin: var(--sect-margin);
        border-radius: var(--sect-border-radius);
        padding: var(--sect-padding);
        box-sizing: border-box;
    }

    .fast-obe-pymt-status .t3{
        color: var(--t0-text-color);
        margin-right: 10px;
    }

    .fast-obe-pymt-status .t3-2{
        font-size: .9em;
        color: var(--t0-text-color);
        margin-top: 20px;
    }

    .fast-obe-pymt-status .t4{
        padding: 5px 0;
        font-size: 1.2em;
    }

    .fast-obe-pymt-status .noa{
        margin-right: 10px;
    }

    .fast-obe-pymt-status .payable0 {
        margin-top: 20px;
    }

    .fast-obe-pymt-status .payable2 {
        color: var(--t0-text-color);
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .fast-obe-pymt-status .payable {
        font-size: 2em;
    }

    .fast-obe-pymt-status .curr-code {
        font-size: .8em;
        margin-right: 3px;
    }

    .fast-obe-pymt-status .pymt-status2 {
        color: var(--t0-text-color);
        margin-right: 10px;
    }

    .fast-obe-pymt-status .pymt-status {
        font-size: 2em;
    }

    .fast-obe-pymt-status .btn-restart0 {
        margin-top: 20px;
    }

    .fast-obe-pymt-status .btn-restart {
        font-size: 20pt;
        cursor: pointer;
    }

        .fast-obe-pymt-status .btn-restart:after {
            content: 'chevron_right';
        }

    .fast-obe-pymt-status .wait-status .spinner{
        width: 100px;
        height: 100px;
    }
    .fast-obe-pymt-status .wait-status-t1{
        font-size: 2em;
    }

	.fast-obe-pymt-status .pymt-container {
		width: 60%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
		padding: var(--sect-padding);
	}

	.fast-obe-pymt-status .axn-title-1 {
		padding: 0px 10px 20px 0px;
	}

/*******************/
/* fast-obe-msg */
/*******************/

.fast-obe-msg {

}

    .fast-obe-msg .msg-g1 {
        background-color: var(--sect-bg-color);
        margin: var(--sect-margin);
        border-radius: var(--sect-border-radius);
        padding: var(--sect-padding);
        box-sizing: border-box;
    }

    .fast-obe-msg .msg2 {
        font-size: 2em;
        text-align: center;
    }

    .fast-obe-msg .btn-restart0 {
        margin-top: 20px;
    }

    .fast-obe-msg .btn-restart {
        font-size: 20pt;
        cursor: pointer;
    }
	
	.fast-obe-msg .msg-container {
        width:60%;
		margin-top:40px!important;
		padding: 30px 30px 30px 30px;
    }

	.fast-obe-msg .border-container {
		padding:20px;
	}

	




/*******************/
/* fast-obe-amend */
/*******************/

.fast-obe-amend {

}

    .fast-obe-amend .bk-g1 {
        background-color:#ffffff;
        border-radius: var(--sect-border-radius);
        box-sizing: border-box;
        width: 60%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
    }
	

    .fast-obe-amend .t3{
        color: var(--t0-text-color);
        margin-right: 10px;
        width: 100px;
        margin-top: 10px;
    }

    .fast-obe-amend .txt-input{
        width: 100%;
    }

    .fast-obe-amend .t3-2{
        font-size: .9em;
        color: var(--t0-text-color);
        margin-top: 20px;
    }

    .fast-obe-amend .t4{
        padding: 5px 0;
        font-size: 1.2em;
    }

    .fast-obe-amend .t5{
        color: var(--t1-text-color);
        font-size: 1.1em;
        padding: 10px 4px 20px 4px;
		text-align:center;
    }

    .fast-obe-amend .noa{
        margin-right: 10px;
    }

    .fast-obe-amend .payable0 {
        margin-top: 20px;
    }

    .fast-obe-amend .payable2 {
        color: var(--t0-text-color);
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .fast-obe-amend .payable {
        font-size: 2em;
    }

    .fast-obe-amend .curr-code {
        font-size: .8em;
        margin-right: 3px;
    }

    .fast-obe-amend .pymt-status2 {
        color: var(--t0-text-color);
        margin-right: 10px;
    }

    .fast-obe-amend .pymt-status {
        font-size: 2em;
    }

    .fast-obe-amend .btn-search-bk0 {
        margin-top: 20px;
		width:100%;
	 	margin-left: auto;
    	margin-right: auto;
    }

	.fast-obe-amend .btn-search-bk0 .btn-t0 {
		text-align:center;
		margin-left: auto;
    	margin-right: auto;
	}

    .fast-obe-amend .btn-search-bk {
        font-size: 20pt;
        cursor: pointer;
    }
	/*
        .fast-obe-amend .btn-search-bk:after {
            content: 'search';
        }
	*/
    .fast-obe-amend .btn-restart0 {
        margin-top: 20px;
    }

		.fast-obe-amend .btn-restart0 .btn-t0 {
			padding-top: 4px;
			text-decoration: underline;
			text-decoration-thickness: 1px;  
			text-underline-offset: 3px;   
			text-decoration-color: #b5b5b5;  
		}

    .fast-obe-amend .btn-restart {
        font-size: 20pt;
        cursor: pointer;
    }

        .fast-obe-amend .btn-restart:after {
            content: 'chevron_left';
        }

    .fast-obe-amend .btn-chg-dt {
        font-size: 20pt;
        cursor: pointer;
    }

        .fast-obe-amend .btn-chg-dt:after {
            content: 'chevron_right';
        }

    .fast-obe-amend .btn-cxl-bk {
        font-size: 20pt;
        cursor: pointer;
    }

        .fast-obe-amend .btn-cxl-bk:after {
            content: 'chevron_right';
        }

    .fast-obe-amend .rate-t0{
        margin-top: 10px;
        margin-bottom: 20px;
    }

        .fast-obe-amend .rate-t0 > div{
            font-size: .8em;
            margin-right: 4px;
            color: var(--t0-text-color);
            background-color: hsl(60, 9%, 83%);
            padding: 5px;
        }



/*******************/
/* fast-obe-amend */
/*******************/

.fast-obe-signup {

}

    .fast-obe-signup .reg-g1,
    .fast-obe-signup .reg-g2  {
        background-color:#ffffff;
        border-radius: var(--sect-border-radius);
        box-sizing: border-box;
        width: 50%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
		border: 1px solid #dbdbdc;
    }

    .fast-obe-signup .t3{
        color: var(--t0-text-color);
        margin-right: 10px;
        width: 100px;
        margin-top: 10px;
    }

    .fast-obe-signup .txt-input{
        width: 100%;
    }
    .fast-obe-signup .t5{
        color: var(--t1-text-color);
        font-size: 1.1em;
        padding: 0px 4px 30px 4px;
		text-align: center;
		width: 80%;
		margin: 0 auto;
    }

.fast-obe-signup .btn-signup-now0 {
        margin-top: 20px;
	    width:100%;
	 	margin-left: auto;
    	margin-right: auto;
	
    }

	.fast-obe-signup .btn-signup-now0 .btn-t0 {
		text-align:center;
		margin-left: auto;
    	margin-right: auto;
	}
	
    .fast-obe-signup .btn-signup-now {
        font-size: 20pt;
        cursor: pointer;
    }
 

    .fast-obe-signup .btn-restart0 {
        margin-top: 20px;
    }

    .fast-obe-signup .btn-restart {
        font-size: 20pt;
        cursor: pointer;
    }

        .fast-obe-signup .btn-restart:after {
            content: 'chevron_left';
        }

.amend-container t5 { text-align:center;}

.register-container, .amend-container{
    	padding: 10px 30px 40px 30px;
    }

/****************/
/* set pwd */
/****************/

.setp-div {
    padding: 20px;
    background-color: #fff;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}


    .setp-div .setp-g1 {
        background-color: var(--sect-bg-color);
        padding: var(--sect-padding);
        border-radius: var(--sect-border-radius);
        margin-bottom: var(--sect-margin);
        box-sizing: border-box;
    }

    .setp-g2 {
        background-color: var(--sect-bg-color);
        margin: var(--sect-margin);
        border-radius: var(--sect-border-radius);
        padding: var(--sect-padding);
        box-sizing: border-box;
		width: 50%;
		margin-left: auto;
		margin-right: auto;
		margin-top: 40px;
		border: 1px solid #dbdbd
    }

        .setp-g2 .btn-restart0 {
            margin-top: 20px;
        }

    .setp-div .setp-t0 {
        font-size: var(--h0-font-size);
        color: var(--h0-text-color);
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .setp-div .setp-t1 {
        margin-bottom: 4px;
        color: #404040;
    }

    .setp-div .btn1 {
        background-color: #ffc400;
        color: #424242;
        padding: 8px 12px;
        text-align: center;
        width: max-content;
        height: max-content;
        border-radius: 4px;
        cursor: pointer;
        margin-bottom: 2px;
        margin-right: 5px;
    }

    .setp-div .setp-msg,
    .setp-div .setp-msg1 {
        background-color: hsl(146, 76%, 80%);
        padding: var(--sect-padding);
        border-radius: var(--sect-border-radius);
        margin-bottom: var(--sect-margin);
        box-sizing: border-box;
    }

    .setp-div .invite-r1 {
        margin-bottom: var(--item-margin);
    }

    .setp-div .invite-t0 {
        font-size: var(--t1-font-size);
        color: var(--t1-text-color);
        margin-right: var(--item-margin);
    }



.fast-obe-activate .btn-restart {
    font-size: 20pt;
    cursor: pointer;
}



/*******************/
/* fast-obe-login */
/*******************/

.fast-obe-login {

}

    .fast-obe-login .reg-g1 {
        background-color:#ffffff;
        border-radius: var(--sect-border-radius);
        box-sizing: border-box;
        width: 50%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
		border: 1px solid #dbdbdc;
    }

    .fast-obe-login .t3{
        color: var(--t0-text-color);
        margin-right: 10px;
        width: 100px;
        margin-top: 10px;
    }

    .fast-obe-login .txt-input{
        width: 100%;
    }
    .fast-obe-login .t5{
        margin-bottom: 20px;
    }

	.fast-obe-login .subtitle, .reg-g1 .subtitle, .bk-g1 .subtitle, .forgotp-g1 .subtitle{
        border-bottom: 1px solid #d6d6d6;
    	padding: 10px 0px 15px 0px;
		text-transform: uppercase;
		letter-spacing: 4px;
		font-size: 0.8em;
    }

	.fast-obe-login .login-container{
     
    	padding: 30px 30px 40px 30px;
    }

    .fast-obe-login .btn-login-now0 {
        margin-top: 20px;
        width: 100%;
    }

    .fast-obe-login .btn-login-now0 > div{
        width: max-content;
        margin-left: auto;
        margin-right: auto;
    }

    .fast-obe-login .btn-login-now {
        font-size: 20pt;
        cursor: pointer;
        padding-left: 10px;
    }
		/*.fast-obe-login .btn-login-now:after {
            content: 'login';
        }*/

    .fast-obe-login .axn2{
        column-gap: 10px;
        width: 100%;
		text-align: center;
    }

    .fast-obe-login .btn-restart0 {
        margin-top: 20px;
        width: 100%;
    }

    .fast-obe-login .btn-restart {
        font-size: 20pt;
        cursor: pointer;
    }

        .fast-obe-login .btn-restart:after {
            content: 'chevron_left';
        }

    .fast-obe-login .btn-forgotp0 {
        margin-top: 20px;
        width: 100%;
    }

	.fast-obe-login .btn-forgotp0 .btn-t0 {
        text-decoration: underline;
		color: #6c6c6c;
		font-size: 1.4em;
		text-decoration-thickness: 1px;  
  		text-underline-offset: 3px;   
		text-decoration-color: #b5b5b5;   
    }

    .fast-obe-login .btn-forgotp {
        font-size: 20pt;
        cursor: pointer;
	
    }

        .fast-obe-login .btn-forgotp:after {
            /*content: 'chevron_right';*/
        }


.register-acc {
	text-align: center;
	padding-top:10px;
}

	.register-acc p {
		font-size:1.4em;
		font-weight: 100;
		margin-bottom: 0px;
	}

	.register-acc .btn-t0 {
		color: #6c6c6c;
		font-size: 1.4em;
		text-decoration: underline;
		text-decoration-thickness: 1px;  
		text-underline-offset: 3px;   
		text-decoration-color: #b5b5b5;  
		line-height:10px;
	}


	.register-acc .btn-login:after {display:none;}

/*******************/
/* memb profile */
/*******************/

.fast-obe-mp {

}

    .fast-obe-mp .mp-g1 {
        background-color: var(--sect-bg-color);
        border-radius: var(--sect-border-radius);
        padding: var(--sect-padding);
        box-sizing: border-box;
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }

		.fast-obe-mp .mp-g1 .border-container{
	
			padding: 30px 30px 40px 30px;
	
		}


    .fast-obe-mp .t3{
        color: var(--t0-text-color);
        margin-right: 10px;
    }

    .fast-obe-mp .btn-submit-mp {
        font-size: 20pt;
        cursor: pointer;
    }

    .fast-obe-mp .btn-chg-pwd {
        font-size: 20pt;
        cursor: pointer;
    }

   

    .fast-obe-mp .btn-restart {
        font-size: 20pt;
        cursor: pointer;
    }


        .fast-obe-mp .btn-restart:after {
            content: 'chevron_left';
        }

	.fast-obe-mp .btn-restart0 {
		margin-top:10px;
	}

	.fast-obe-mp .btn-restart0 .btn-t0 {
		padding-top: 4px;
		text-decoration: underline;
		text-decoration-thickness: 1px;  
		text-underline-offset: 3px;   
		text-decoration-color: #b5b5b5;  
	}


	



/****************/
/* password policy notes */
/* shared by: sys user dtl, chg pwd, accept invitation */
/****************/

.pwd-notes0 {
    font-size: var(--t1-font-size);
    color: var(--t1-text-color);
    padding-bottom: var(--sect-padding);
    margin-top: -10px;
    margin-left: 10px;
}

    .pwd-notes-t1 {
        margin-bottom: 5px;
    }

    .pwd-notes {
        margin-left: 5px;
    }

    .pwd-notes .pwd-notes-t2 {
        margin-right: 5px;
    }

    .pwd-notes .img-ok {
        font-size: 12pt;
        margin-left: 10px;
    }

        .pwd-notes .img-ok:after {
            content: 'done';
            color: hsl(146, 91%, 31%);
        }

    .pwd-notes .img-not-met {
        font-size: 12pt;
        margin-left: 10px;
    }

        .pwd-notes .img-not-met:after {
            content: 'error_outline';
            color: hsl(15, 78%, 49%);
        }



/*******************/
/** change password **/
/*******************/

.fast-obe-chg-pwd {

}

.fast-obe-chg-pwd .btn-submit-pwd {
    font-size: 20pt;
    cursor: pointer;
}


.fast-obe-chg-pwd .btn-restart {
    font-size: 20pt;
    cursor: pointer;
}

    .fast-obe-chg-pwd .btn-restart:after {
        content: 'chevron_left';
    }

.fast-obe-chg-pwd .btn-restart0 .btn-t0 {
    padding-top: 4px;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-color: #b5b5b5;
}

.chg-pwd-div {
    background-color: var(--sect-bg-color);
    padding: var(--sect-padding);
    border-radius: var(--sect-border-radius);
    box-sizing: border-box;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

    .chg-pwd-div .t0 {
        padding: 20px 5px 10px 5px;
    }

    .chg-pwd-div .t1 {
        color: var(--h1-text-color);
        font-size: var(--h1-font-size);
    }

    .chg-pwd-div .txt-input {
        max-width: 100%;
    }

	.chg-pwd-div .border-container {
		padding: 30px 
	}


/****************/
/* reset pwd */
/****************/

.fast-obe-forgotp {
}

.forgotp-div {
   		background-color:#ffffff;
        border-radius: var(--sect-border-radius);
        box-sizing: border-box;
        width: 60%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
}

    .forgotp-div .forgotp-t0 {
        font-size: 1.6em;
        padding:6px 0 20px 4px;
        box-sizing: border-box;
        width: 100%;
    }

    .forgotp-div .forgotp-t1 {
        color: var(--t1-text-color);
        font-size: 1.1em;
        padding: 20px 4px;
		text-align: center
    }

    .forgotp-div .forgotp-g1 {
        box-sizing: border-box;
    }

	


.fast-obe-forgotp .btn-forgotp-submit{
    font-size: 18pt;
    cursor: pointer;

}
/*
    .fast-obe-forgotp .btn-forgotp-submit:after {
        content: 'touch_app';
    }
*/
.fast-obe-forgotp .btn-restart {
    font-size: 20pt;
    cursor: pointer;

}

    .fast-obe-forgotp .btn-restart:after {
        content: 'chevron_left';
    }


.fast-obe-forgotp .btn-restart0 .btn-t0 {
	padding-top: 4px;
	text-decoration: underline;
	text-decoration-thickness: 1px;  
	text-underline-offset: 3px;   
	text-decoration-color: #b5b5b5;  
}


.fast-obe-forgotp .btn-forgotp-submit0 {
        margin-top: 20px;
		width:100%;
	 	margin-left: auto;
    	margin-right: auto;
    }

	.fast-obe-forgotp .btn-forgotp-submit0 .btn-t0 {
		text-align:center;
		margin-left: auto;
    	margin-right: auto;
	}

/*******************/
/* bk list*/
/*******************/

.fast-obe-bk-list {

}
	
    .fast-obe-bk-list .bkl-g1 {
        background-color: var(--sect-bg-color);
        border-radius: var(--sect-border-radius);
        padding: var(--sect-padding);
        box-sizing: border-box;
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }

    .fast-obe-bk-list .item-div {
        background-color: #fff;
        margin-top: 20px;
        padding: 30px;
        border-radius: 8px;
		border: 1px solid #dbdbdc;
    }

    .fast-obe-bk-list .item-div .web-ref-no{
        font-size: 1.6em;
        padding-bottom: 10px;
		
    }


    .fast-obe-bk-list .item-div .t2{
        color: var(--t1-text-color);
		margin-bottom: 5px;
        padding-right: 10px;
		min-width: 150px;
    }

	.fast-obe-bk-list .item-div{
        font-size: 1.1em;
    }

    .fast-obe-bk-list .item-div .curr-code{
        font-size: .8em;
    }

    .fast-obe-bk-list .item-div .bkl-axn{
        margin-top: 20px;
    }

    .fast-obe-bk-list .btn-restart0 {
        margin-top: 10px;
    }

    .fast-obe-bk-list .btn-restart {
        font-size: 20pt;
        cursor: pointer;
    }

        .fast-obe-bk-list .btn-restart:after {
            content: 'chevron_left';
        }

	.fast-obe-bk-list .btn-restart0 .btn-t0 { 
		padding-top: 4px;
		text-decoration: underline;
		text-decoration-thickness: 1px;
		text-underline-offset: 3px;
		text-decoration-color: #b5b5b5;
}

    .fast-obe-bk-list .btn-download-pdf0 {
        background-color: #3a3e3e;
        color: hsl(0, 0%, 100%);
        padding: 8px 12px;
        text-align: center;
        width: max-content;
        height: max-content;
        border-radius: 8px;
        cursor: pointer;
        margin-bottom: 2px;
        margin-right: 5px;
        font-size: .9em;
    }

        .fast-obe-bk-list .btn-download-pdf0 .btn-t0 {
            margin-top: 5px;
            margin-left: 5px;
        }

        .fast-obe-bk-list .btn-download-pdf {
            font-size: 18pt;
            cursor: pointer;
        }

            .fast-obe-bk-list .btn-download-pdf:after {
                content: 'picture_as_pdf';
            }

    .fast-obe-bk-list .btn-amend-bkl0,
    .fast-obe-bk-list .btn-send-msg-bkl0 {
        background-color: #3a3e3e;
        color: hsl(0, 0%, 100%);
        padding: 8px 12px;
        text-align: center;
        width: max-content;
        height: max-content;
        border-radius: 8px;
        cursor: pointer;
        margin-bottom: 2px;
        margin-right: 5px;
        font-size: .9em;
    }

        .fast-obe-bk-list .btn-amend-bkl0 .btn-t0,
        .fast-obe-bk-list .btn-send-msg-bkl0 .btn-t0 {
            margin-top: 5px;
            margin-left: 5px;
        }

        .fast-obe-bk-list .btn-amend-bkl {
            font-size: 18pt;
            cursor: pointer;
        }

        .fast-obe-bk-list .btn-amend-bkl:after {
            content: 'edit';
        }

        .fast-obe-bk-list .btn-send-msg-bkl {
            font-size: 18pt;
            cursor: pointer;
        }

            .fast-obe-bk-list .btn-send-msg-bkl:after {
                content: 'send';
            }


/*******************/
/* user mailbox */
/*******************/

.obe-usr-mailbox0 {
	padding-top:40px;
	width:60%
}

    .obe-usr-mailbox0 .msg-list {
        width: 30%;
        padding-left: 10px;
        box-sizing: border-box;
        border-right: 1px solid hsl(180, 3%, 90%);
		margin-top:20px;
    }

    .obe-usr-mailbox0 .msg-list .msg-g1 {
        background-color: var(--sect-bg-color);
        margin-bottom: var(--sect-margin);
        border-radius: var(--sect-border-radius);
        padding: var(--sect-padding);
        box-sizing: border-box;
    }

    .obe-usr-mailbox0 .msg-list .msg-g1 select{
        margin-bottom: 0;
    }

    .obe-usr-mailbox0 .msg-list .item-list {}

    .obe-usr-mailbox0 .msg-list .sel-opt {
        background-color: hsl(56, 100%, 91%);
    }

    .obe-usr-mailbox0 .entry0 {
        width: 70%;
        padding: 0px 20px;
        box-sizing: border-box;
		margin-top:20px;
    }

    .obe-usr-mailbox0 .entry0 .msg-g1 {
        background-color: var(--sect-bg-color);
        margin-bottom: var(--sect-margin);
        border-radius: var(--sect-border-radius);

        box-sizing: border-box;
    }

    .obe-usr-mailbox0 .entry0 .msg-t1 {
        color: var(--t1-text-color);
        font-size: var(--t1-font-size);
    }


    .obe-usr-mailbox0 .entry0 .sent-on0 {
        margin-bottom: 10px;
    }
    .obe-usr-mailbox0 .entry0 .sent-on2 {
        margin-left: 10px;
    }

    .obe-usr-mailbox0 .entry0 .body-text-input {
        height: 200px;
        overflow-y: scroll;
    }

    .obe-usr-mailbox0 .item-div {
        cursor: pointer;
        padding: 10px 8px;
        box-sizing: border-box;
        margin-bottom: 2px;
        border-bottom: 1px solid hsl(57, 17%, 85%);
    }

	.obe-usr-mailbox0 .btn-restart0 .btn-t0 { 
		padding-top: 4px; 
		text-decoration: underline;
		text-decoration-thickness: 1px;  
  		text-underline-offset: 3px;   
		text-decoration-color: #b5b5b5;   
	}

	.obe-usr-mailbox0 .btn-nav-to-bkl .btn-t0 { 
		padding-top: 0px; 
		text-decoration: none;

	}

        .obe-usr-mailbox0 .item-div:hover{
            background-color: var(--hover-bg-color);
            color: var(--hover-text-color);
            transform: var(--hover-transform);
            padding: var(--hover-padding);
            box-sizing: border-box;
        }

        .obe-usr-mailbox0 .item-div .c1 {
            width: 80%;
            box-sizing: border-box;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            margin-left: 10px;
        }

            .obe-usr-mailbox0 .item-div .c1 .subject {
                white-space: break-spaces;
            }

        .obe-usr-mailbox0 .item-div .t2-0{
            margin-top: 10px;
            color: var(--t1-text-color);
            font-size: var(--t1-font-size);;
        }

        .obe-usr-mailbox0 .item-div .t2{
            color: var(--t1-text-color);
            font-size: var(--t1-font-size);;
        }

        .obe-usr-mailbox0 .item-div .status{
            margin-top: 5px;
        }

        .obe-usr-mailbox0 .item-div .btn-msg {
            font-size: 14pt;
        }

            .obe-usr-mailbox0 .item-div .btn-msg:after {
                content: 'email';
            }


    .obe-usr-mailbox0 .btn-reply-msg {
        font-size: 18pt;
        cursor: pointer;
    }

        .obe-usr-mailbox0 .btn-reply-msg:after {
            content: 'reply';
        }

    .obe-usr-mailbox0 .btn-send-msg {
        font-size: 14pt;
        cursor: pointer;
    }


    .obe-usr-mailbox0 .msg-reply-item .sent-on3{
        margin-left: 10px;
    }

    .obe-usr-mailbox0 .msg-reply-item .body-text3{
        height: 200px;
    }

    .obe-usr-mailbox0 .msg-seq {
        margin-right: 20px;
        font-size: 1.1em;
    }

    .obe-usr-mailbox0 .btn-restart {
        font-size: 20pt;
        cursor: pointer;
    }





/*******************/
/* Header */
/*******************/
.menu {
	padding:30px;
}

.header-white-row {
	border-bottom: 1px solid #dbdbdc;
}

.header-white .btn-login0, .header-white .btn-sign-up0, .header-white .btn-amend-bk0, .header-white .btn-bk-profile0, .header-white .btn-bk-msg0, .header-white .btn-bk-hist0 {
		color:#000000!important; 
}

.header-white .btn-login0 { background: #3a3e3e; color:#ffffff!important;}


/*******************/
/* top Section */
/*******************/
.top-section {
	background: url("images/home-bg.jpg");
	padding-bottom: 200px;
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

h1,h2,h3,h4,h5 {
	font-family: "Archer", sans-serif;
	font-weight:600;
}

h2.title { text-align:left; margin-top:0px;}

h4 {
	margin: 0px;
}

.fr { float:right; margin-top:-100px;}
.container {
	max-width: 1500px;
    margin: 0 auto!important;
}

.container.c-space {
	margin-top:60px!important;
	margin-bottom:60px!important;
}
	

.txt-white {
	color:#ffffff;
}

.border-container {
	border:1px solid #dbdbdc;
	margin-top:20px;
	border-radius: var(--sect-border-radius-big) ;
}


.ime3 {
	margin: 12px 10px 10px 20px;
    font-size: 1em;
}


/*** form ***/
.search-noa-input,
.search-nok-input,
.search-nor-input {
  display: none !important;
}

/* =========================
   1) Hamburger Base Styles
   ========================= */
.hamburger {
  display: none;        
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
}

.hamburger .line {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #ffffff;  /
  transition: all 0.3s ease;
}

.hamburger.active .line {
  background-color: #000000; 
}

.hamburger.active .line1 {
  transform: translateY(7px) rotate(45deg);
}

/* Middle line: fade out (or slide out) */
.hamburger.active .line2 {
  opacity: 0;
  transform: translateX(-100%);
}


.hamburger.active .line3 {
  transform: translateY(-9px) rotate(-45deg);
}


.hamburger.active .line {
  background-color: black;  /* Or any color you prefer */
}

/* ======================
   2) Media Query (Mobile)
   ====================== */
@media (max-width: 768px) {
.fr { 
	float:none; 
	margin-top:0px;
	padding-top:20px;
	
	}
/*Header*/
  .menu {
	padding:20px 0px;
  }
	.menu .ime3 {
		margin: 12px 10px 10px 5px;
	}
	
	.header-white .btn-login0 {
		background: #ffffff;
    	color: #3a3e3e !important
	}

  /* Show hamburger button on mobile */
  .hamburger {
    display: block;
    position: absolute;
    z-index: 1001;
    right: 20px;
    top: 10px;
  }
  
  /* Hide the desktop menu layout by default on mobile */
  #mainMenu {
    display: block;       /* Keep it rendered so transitions work */
    position: fixed;      
    top: 0;
    right: 0;
    width: 70%;
	height: 100%;
    background-color: #fff;
    z-index: 1000;
    overflow-y: auto;     /* In case the menu is tall */
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Not clickable when invisible */

    /* Start off-screen to the right and fully transparent */
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;      /* So it’s not clickable while hidden */

    /* Animate transform + opacity (and optionally visibility) */
    transition: transform 0.3s ease, 
                opacity 0.3s ease, 
                visibility 0.3s 0.3s ease; 
	padding-top:50px;
  }
  
  /* When 'active', show the menu */
  #mainMenu.active {
    transform: translateX(0);   /* Slide in */
    opacity: 1;                /* Fade in */
    visibility: visible;       /* Make it visible */
    pointer-events: auto;      /* Now clickable */
    transition-delay: 0s;      /* No delay on entry */
  }
	
  .col-7.bk-container {
	padding-right:0px;
}
	
	.header-white .hamburger .line {
  background-color: #000000;
}

.header-white .hamburger.active .line {
  background-color: #000000; 
}
  
  .menu .flx-nw-rr {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 2rem;}

  .fast-obe-enq .search-g1.search-rs-container {
    margin: 0px;
	}

  /* Spacing between each menu item on mobile */
  .flx-nw-rr > div {
    margin-bottom: 15px;
    width: 100%;
  }
	
  .flx-mobile-rv {
	flex-direction: column-reverse!important;
	
	
  }
	
  .fast-obe-enq .rate-item { 
	  margin: 0px 0px 30px 0px;
  }
	
  .fast-obe-enq .avail-rate-t1 {
    padding: 30px 10px 15px 0px;
}

	.fast-obe-enq .btn-dt:after {
		top: 10px;
		position: relative;
	}
	
 .top-section {

    padding-bottom: 80px;

}
	
	
  .fast-obe-enq h1 {
        font-size: 3.5em;
        padding: 100px 10px 20px 0px;
    }

  .fast-obe-enq .rate-item img {
    min-height: 200px;
}
	
	.fast-obe-enq .rate-info {
    padding: 30px 30px;
}
	
	.fast-obe-enq .search-g1 .col-4 {
		width: 100%;
}
	.fast-obe-enq .search-g1 .flx-nw {
		display: block;
}
	
	.fast-obe-enq .search-g1 .txt-input {
    width: 95%;
}
	
	
	
.flx-mobile-reset {
	display: block;
	
  }
	
	.fast-obe-enq .price-bk > div {
 		justify-content: flex-start;
		margin-top:20px;
	}

	.fast-obe-enq .btn-bk0{
    	float: none;
		margin-right: 0px;
	}
	
	.bk-container .bk-g1 { padding:0px;}
	.col-7 .bk-container {
		padding-right:30px;
	}
  .axn-title-1 {padding:0px 0px 30px 0px;}
	.fast-obe-bk .btn-restart0 {margin:0px 0px 20px 0px;}
	
  #mainMenu .btn-login0, #mainMenu .btn-sign-up0, #mainMenu .btn-amend-bk0, #mainMenu .btn-bk-profile0, #mainMenu .btn-bk-msg0, #mainMenu .btn-bk-hist0 {color:#000000;  font-size:1.2em; text-align: left; padding: 5px 0px; }
	

  #mainMenu .flx-nw {    
	display: unset;
    flex-direction: unset;
    flex-wrap: unset;
	 
}
	
	/* mobile container */
	.obe-usr-mailbox0, .fast-obe-bk-list .bkl-g1, .fast-obe-mp .mp-g1, .fast-obe-login .reg-g1, .fast-obe-signup .reg-g1, .fast-obe-signup .reg-g2, .setp-g2, .fast-obe-msg .msg-container, .chg-pwd-div, .fast-obe-pymt-status .pymt-container  {width:100%;}

	
	.obe-usr-mailbox0 .msg-list, .obe-usr-mailbox0 .entry0 { width:90%;}
	.obe-usr-mailbox0 .entry0 { padding:0px; }
	.mb-space { margin: 0px 20px; }
	
	/*button*/
	.btn1 .btn-t0 {
    margin-top: 3px;
    font-size: 12pt;
}
	
	
	.fast-obe-bk-list .btn-download-pdf:after, .fast-obe-bk-list .btn-amend-bkl:after, .fast-obe-bk-list .btn-send-msg-bkl:after {
 	   content:none;
	}
	
	
/*General*/
	.container.header, .container.header-white {
    	margin: 0px!important;
	}
	
	.container {
    	margin: 0px 25px!important;
	}
	
	.fast-obe-amend .bk-g1, .forgotp-div { width:100%; padding:0px 20px;}
}


/* ======================
   2) Media Query (Tablet)
   ====================== */
@media only screen and (min-width:768px) and (max-width:1024px) {
	.fast-obe-enq h1, .search-g1.container {margin:0px 30px!important;}
}