﻿@import url(https://fonts.googleapis.com/css?family=Comfortaa);
@import url(https://fonts.googleapis.com/css?family=Material+Icons);

/*@-ms-viewport{width: device-width;}*/
@viewport {width: device-width;}

hr {
    /*border: 1px solid lightgrey;*/
    width: 350px;
    position: absolute;
    border: 1px solid lightgrey;
    z-index: -1;
    -webkit-animation: 5s fadein;
    animation: 5s fadein;
}

/* The Overlay Menu (background) */
.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */
    height: 0%;
    width: 600px;
    position: fixed; /* Stay in place */
    z-index: 2001; /* Sit on top */
    /* left: 0;
    top: 0;*/
    float: left;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color:  #769294; /*rgb(0,0,0);*/ /* Black fallback color */
    opacity: 0.95;
    -moz-opacity: 0:95;
    -webkit-opacity: 0:95;
    -khtml-opacity: 0:95;
    /*background-color: ( #769294, 0.9);*/ /*rgba(0,0,0, 0.9); */ /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s ; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 25%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
    padding: 8px !important;
    text-decoration: none;
    font-size: 36px !important;
    color: white !important;
    display: block !important; /* Display block instead of inline */
    transition: 0.3s !important; /* Transition effects on hover (color) */
}

    /* When you mouse over the navigation links, change their color */
    .overlay a:hover, .overlay a:focus {
        color: ghostwhite !important;
    }

/* Position the close button (top right corner) */
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px !important;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    /* right: 30px;*/
    float: left;
    left: 50%;
    /* top: 50%;*/
    transform: translate(-50%, -50%);
    z-index: 99;
    font-size: 32px;
    border: none;
    outline: none;
    background-color: transparent;
    color:  #769294;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    scroll-behavior: smooth;
    margin-left: 200px
}

/*Bottom Navaigation Bar*/
#myBtn:hover {
    color: darkgray;
}


/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 20px;
        color: white !important;
    }

    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
        color: white !important;
    }

   
}



#tooltip {
    font-family: Comfortaa;
    text-align: center;
    color: #fff;
    background:  #769294;
    position: absolute;
    z-index: 1000;
    padding: 15px;
    
}

    #tooltip:after /* triangle decoration */ {
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid  #769294;
        content: '';
        position: absolute;
        left: 50%;
        bottom: -9px;
        margin-left: -10px;
    }

    #tooltip.top:after {
        border-top-color: transparent;
        border-bottom: 10px solid  #769294;
        top: -19px;
        bottom: auto;
    }

    #tooltip.left:after {
        left: 10px;
        margin: 0;
    }

    #tooltip.right:after {
        right: 10px;
        left: auto;
        margin: 0;
    }

/*safari square input style */ 
input[type=submit] {
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
}

input[type=text ] {
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
}

select {
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
}

/* hyperlinks e.g calendar and background and main text colour */
a:link {
    color:  #769294;
    font-family: Comfortaa;
    font-size: 14pt;
    text-decoration: none;
}
a:visited {
    color:  #769294
}
a:active {
    color:  #769294
}
a:focus {
    color: transparent !important;
    background-color: transparent;
    border-color: transparent;
    background-image: url("loading.gif");
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
   /* height: 28px;
    width: 28px;*/
}
a:hover {
    color: darkgray;
    text-decoration: none;
    background-image: none;
    cursor: pointer;
}

.modalPopup {
    border: 2px solid  #769294;
    border-radius: 0px;
    background-color: white;
    opacity: 0.95;
    -moz-opacity: 0:95;
    -webkit-opacity: 0:95;
    -khtml-opacity: 0:95;
    padding: 3px;
    width: 550px;
    max-width: 550px;
    position: absolute;
    float: none;
    /*  left: 0px;  center the popup */
    left: 50%;
    /*  top: 50%;*/
    transform: translate(-50%);
    top: 107px;
    /*transform:tran #769294(-50%);*/
    z-index: 999;
    box-shadow: 0 1rem 2rem #000a;
    height: auto;
    -webkit-animation: 2.5s fadein;
    animation: 2.5s fadein;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@-moz-keyframes fadein{
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fadein{
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@-o-keyframes fadein{
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@-ms-keyframes fadein{
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.buttonBack {
    margin-top: 8px;
    margin-bottom: 8px;
    background-color:  #769294;
    border-color:  #769294;
    Border-Style: Solid;
    border-radius: 20px;
    color: white;
    height: 35px;
    margin-top: 4px;
    margin-bottom: 4px;
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 20px; /* 24 Preferred icon size */
    display: inline-block;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: pre-line;
    direction: ltr;
    /*nowrap width: 1em;height: 1em;*/
    line-height: 1.25;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
   
}
    .buttonBack:hover {
        cursor: pointer;
    }

    /*best price on calendar*/
    .buttonCalendar {
        margin-top: 8px;
        margin-bottom: 8px;
        background-color: transparent;
        border-color: transparent;
        Border-Style: none;
        border-radius: 0px;
        color: white;
        font-family: Comfortaa;
        font-size: 14pt;
        font-weight: normal;
        height: 28px;
        margin-top: 4px;
        margin-bottom: 4px;
    }

    .buttonCalendar:focus {
        background-color: transparent !important;
        border-color: transparent;
        color: transparent !important;
        font-size: 1pt;
        background-image: url("loading.gif");
        background-size: 14px;
        background-position: center;
        background-repeat: no-repeat;
        height: 28px;
    }

    .buttonCalendar:hover {
        font-weight: bold !important;
        background-image: none;
    }

    html {
        font-size: 100%;
    }
    /*- image is repeat or no-repeat*/
body {
    background-image: url("background.jpg");
    background-position: top;
    background-repeat: no-repeat;
    background-color:  #769294;
    min-height: 100%;
    min-width: 100%;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;
    color: black;
    -webkit-text-size-adjust: none;
    margin: 0;
    transition: all 3s;
}

    body:hover{
        -webkit-background-size: 120%;
        -moz-background-size: 120%;
        -o-background-size: 120%;
        background-size: 120%;
        transition: all 8s;
    }
    /* hyperlinks in grid colour */
.linkinGridView {
    color:  #769294 !important;
    font-family: Comfortaa;
    font-size: 12pt;
    text-decoration: none;
  
}

linkinGridView:Hover {
    color: darkgray !important;
    font-family: Comfortaa;
    font-size: 12pt;
    text-decoration: none;
  
}


.Master {
    border-color: Silver;
    Border-Style: Solid;
    min-width: 480px;
    background-color: white;
    opacity: 0.95;
    -moz-opacity: 0:95;
    -webkit-opacity: 0.95;
    -khtml-opacity: 0.95;
    background-image: none;
    border-radius: 0px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
   
}

/* When the height of the screen is less than 450 pixels, change the opacity */

@media screen and (max-height: 550px) {

    .Master {
        opacity: 1;
        -moz-opacity: 1;
        -webkit-opacity: 1;
        -khtml-opacity: 1;
    }
}

    /*Backround color*/
    .calendar {
        background-color: transparent !important;
    }
    /*text and background of cells, Month Year, and unavailable*/
    .calendar td {
        font-family: Comfortaa !important;
        background-color: transparent !important;
        font-size: 1.2rem !important;
        line-height: 1.6rem;
    }
    /*text of calender links*/
        .calendar a {
            font-weight: 300;
            font-size: 1.2rem;
            color: black !important;
            
        }

    .calendar a:hover, .calendar a:focus {
        color: white !important;
    }
    /*text of 'Call' and prices */
    .calendar span {
        font-family: Comfortaa !important;
        font-size: 0.75rem !important;
        font-weight: 300 !important;
        color: gray !important;
        height: auto !important;
    }
    /*background of cells in past */
    .calendar .calendar-day {
        background-color: transparent !important;
    }
    /*days of week title*/
    .calendar .calendar-day-header {
        font-family: Comfortaa;
        font-size: 1rem !important;
        font-weight: 300 !important;
        background-color: transparent !important;
        color: gray !important;
    }

    .calendar .calendar-title {
        font-family: Comfortaa;
        font-size: 1.5rem !important;
        font-weight: 400 !important;
        background-color: transparent !important;
        color: black !important;
    }

    .calendar .calendar-day-weekend {
        background-color: transparent !important;
    }

    .calendar .calendar-day-past {
        background-color: orange !important;
    }
    /*available room*/
        .calendar .calendar-day-available {
            background-color: forestgreen !important;
            border-radius: 0px;
            box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
    /*last room*/
        .calendar .calendar-day-last {
            background-color: orange !important;
            border-radius: 0px;
            box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .calendar .calendar-day-selected {
            background-color:  #769294 !important;
            color: White !important;
            border-radius: 38px;
            box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            -webkit-animation: 1.5s fadein;
            animation: 1.5s fadein;
        }
    /*active Hyperlink cell colours*/
    .calendar .calendar-day-available a, .calendar .calendar-day-last a, .calendar .calendar-day-selected a {
        color: white !important;
    }
    /*clicked cell make font size big to allow for loading image width*/
    .calendar .calendar-day-available a:focus, .calendar:focus .calendar-day-last a:focus {
        font-size: 40pt;
        color: transparent !important;
    }
    /*active best price*/
    .calendar .calendar-day-available span:nth-child(2n+1), .calendar .calendar-day-last span:nth-child(2n+1) {
        color: white !important;
    }
    /*active %discount*/
    .calendar .calendar-day-available span, .calendar .calendar-day-last span {
        color: red !important;
    }
    /* GREEN = Available  */
    .Available {
        background-color: Green;
        color: forestgreen;
        border-radius: 8px;
    }

    .Lastone {
        background-color: Orange;
        color: Orange;
        border-radius: 8px;
    }

    .Selected {
        background-color:  #769294;
        color:  #769294;
        border-radius: 8px;
    }

    /*room pictures*/
.Rounding {
    margin-top: 30px;
    border-radius: 0px;
    width: 120px;
    height: auto;
    -webkit-animation: 2.5s fadein;
    animation: 2.5s fadein;
    display:block ;
    overflow: hidden!important ;
}
    

    /*round images*/
img {
    border-radius: 0px;
    max-width: 550px;
}
   
    /* table caption colour on Availability page */
    .tableView th, caption {
        background-color: transparent;
        color: black;
        font-family: Comfortaa;
        font-size: 14pt;
        font-weight: normal;
        height: 40px;
        text-align: left;
    }
    /* headers */
    .Head {
        background-color: transparent;
        color: black;
        font-family: Comfortaa;
        font-size: 18pt;
        font-weight: normal;
        text-align: center;
        height: auto;
        margin-top: 10px;
    }
    /* important labels */
.LabelCap {
    background-color: transparent;
    color: Black;
    font-family: Comfortaa;
    font-size: 14pt;
    font-weight: normal;
    height: auto !important;
}

.Labels {
    background-color: transparent;
    color: Black;
    font-family: Comfortaa;
    font-size: 12pt;
    border-radius: 0px;
    height: auto !important;
}
.LabelsValid {
    border-style: solid;
    border-color: red;
    background-color: white;
    color: Black;
    font-family: Comfortaa;
    font-size: 14pt;
    font-weight: bold;
}

  /*  .TextBoxesValid:focus {
        background-color: yellow !important;
    }*/
    .Dropdowns {
        background-color: transparent;
        color: black;
        font-family: Comfortaa;
        font-size: 12pt;
        padding: 4px;
        padding-right: 30px;
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        background-image: url(downarrow.jpg);
        border-radius: 0px;
        background-repeat: no-repeat, repeat;
        background-position: right .7em top 50%, 0 0;
        background-size: .65em auto, 100%;
    }
        .Dropdowns:hover {
            cursor: pointer;
        }
    /* For IE */
    select::-ms-expand {
        display: none;
    }
    /* warning message colour */
    .Warning {
        background-color: transparent;
        color: Red;
        font-family: Comfortaa;
        font-weight: normal;
        font-size: 12pt;
    }

.Micons {
    font-family: Material Icons;
    font-size: 18pt;
    background-color: transparent;
   
}

    .Icons:before {
        font-family: Material-Icons;
        content: "cancel";
        font-size: 18pt;
        background-color: transparent;
    }
    /* most important buttons colour */
.buttonStyle {
    margin-top: 8px;
    margin-bottom: 8px;
    background-color:  #769294;
    border-color:  #769294;
    Border-Style: none;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    color: White;
    font-family: Comfortaa;
    font-size: 14pt;
    font-weight: normal;
    height: 28px;
    margin-top: 4px;
    margin-bottom: 4px;
    background-image: none;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.5);

    
}
    /* less important buttons colour */
.buttonStyleOther {
    margin-top: 8px;
    margin-bottom: 8px;
    background-color:  #769294;
    border-color:  #769294;
    Border-Style: none;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    color: white;
    font-family: Comfortaa;
    font-size: 14pt;
    font-weight: normal;
    height: 28px;
    margin-top: 4px;
    margin-bottom: 4px;
    background-image: none;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}



.buttonStyle:hover {
    background-color: darkgray;
    border-color: darkgray;
    color: white;
    background-image: none;
    cursor: pointer;
}


    .buttonStyleOther:hover {
        background-color: darkgray;
        border-color: darkgray;
        color: white;
        background-image: none;
        cursor: pointer;
    }

    .buttonStyle:focus {
        background-color: transparent;
        border-color: transparent;
        color: transparent;
        background-image: url("loading.gif");
        background-size: 28px;
        background-position: center;
        background-repeat: no-repeat;
        height: 28px;
    }

    .buttonStyleOther:focus {
        background-color: transparent;
        border-color: transparent;
        color: transparent;
        background-image: url("loading.gif");
        background-size: 28px;
        background-position: center;
        background-repeat: no-repeat;
        height: 28px;
    }



    .buttonStyleCrop {
        height: 28px;
        margin-top: 4px;
        margin-bottom: 4px;
    }

input:hover {
    cursor: pointer;
}
@media only screen and (max-width: 640px) {
  
}
   
 
