﻿@import url(https://fonts.googleapis.com/css?family=Nunito);
@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: dimgray; /*rgb(0,0,0);*/ /* Black fallback color */
    opacity: 0.95;
    -moz-opacity: 0:95;
    -webkit-opacity: 0:95;
    -khtml-opacity: 0:95;
    /*background-color: (dimgray, 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: dimgray;
    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: Nunito;
    text-align: center;
    color: black;
    background: #EEC456;
    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 #EEC456;
        content: '';
        position: absolute;
        left: 50%;
        bottom: -9px;
        margin-left: -10px;
    }

    #tooltip.top:after {
        border-top-color: transparent;
        border-bottom: 10px solid #111;
        top: -20px;
        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: #EEC456;
    font-family: Nunito;
    font-size: 14pt;
    text-decoration: none;
}
a:visited {
    color: #EEC456
}
a:active {
    color: #EEC456
}
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: #EEC456;
    text-decoration: none;
    background-image:none;
}

.modalPopup {
    border-width: 2px;
    border-radius: 6px;
    border-style: solid;
    border-color: #EEC456;
    background-color: black;
    opacity: 0.95;
    -moz-opacity: 0:95;
    -webkit-opacity: 0:95;
    -khtml-opacity: 0:95;
    padding: 3px;
    width: 550px;
    position: absolute;
    float: none;
    /*  left: 0px;  center the popup */
    left: 50%;
    /*  top: 50%;*/
    transform: translate(-50%);
    top: 107px;
    /*transform:tran#EEC456(-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: #EEC456;
    border-color: #EEC456;
    Border-Style: Solid;
    border-radius: 20px;
    color: black;
    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;
}
    .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: 5px;
    color: white;
    font-family: Nunito;
    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: silver;
    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: white;
    -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: #EEC456 !important;
    font-family: Nunito;
    font-size: 12pt;
    text-decoration: none;
    }
    linkinGridView:Hover 
    {
         color: #EEC456 !important;
    font-family: Nunito;
    font-size: 12pt;
    text-decoration: none;

    }

.Master
{
    border-color: Silver;
    Border-Style: Solid;
    min-width: 480px;
    background-color: black; opacity:1.00; -moz-opacity: 1:00; -webkit-opacity:1.00; -khtml-opacity:1.00;
    background-image: none;
    border-radius: 25px;
    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: Nunito !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: white !important;
        
    }
/*text of 'Call' and prices */
    .calendar span {
        font-family: Nunito !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: Nunito;
    font-size: 1rem !important;
    font-weight: 300 !important;
    background-color: transparent !important;
    color: gray !important;
}
.calendar .calendar-title {
    
    font-family: Nunito;
    font-size: 1.5rem !important ;
    font-weight: 400 !important;
    background-color: transparent !important;
    color: white !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: 8px;
    }
/*last room*/
.calendar .calendar-day-last {
    background-color: orange !important;
    border-radius: 8px;
}
    .calendar .calendar-day-selected {
        background-color: #EEC456 !important;
        color: White !important;
        border-radius: 38px;
    }

   
/*active Hyperlink cell colours*/
        .calendar .calendar-day-available a, .calendar .calendar-day-last a, .calendar .calendar-day-selected a {
            color: black !important;
        }
    .calendar a:hover, .calendar a:focus {
        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: forestgreen ;
    color: forestgreen ;
    border-radius: 8px;
}
.Lastone {
    background-color: Orange;
    color: Orange;
    border-radius: 8px;
}
.Selected {
    background-color: #EEC456;
    color: #EEC456;
    border-radius: 8px;
}
.Rounding {
    margin-top: 30px;
    border-radius: 8px;
    width: 120px;
    height: auto;
    -webkit-animation: 2.5s fadein;
    animation: 2.5s fadein;
    display: block;
    overflow: hidden !important;
}

/*round images*/
img {
    border-radius: 8px;
   max-width: 550px;
}

/* table caption colour on Availability page */
.tableView th,
caption {
    background-color: transparent;
    color: white;
    font-family: Nunito;
    font-size: 14pt;
    font-weight: normal;
    height: 40px;
    text-align: left;

}
/* headers */
.Head
{
    background-color: transparent;
    color: white;
    font-family: Nunito;
    font-size: 18pt;
    font-weight:normal;
    text-align:center;
    height:30px;
    margin-top:10px;
}

/* important labels */
.LabelCap 
{
    background-color: transparent;
    color: white;
    font-family: Nunito;
    font-size: 14pt;
    font-weight:normal;
    
}
.Labels
{
    background-color: transparent;
    color: white;
    font-family: Nunito;
    font-size: 12pt;
}
.LabelsValid {
    border-style: solid;
    border-color: red;
    background-color: white;
    color: Black;
    font-family: Nunito;
    font-size: 14pt;
    font-weight: bold;
}

.Dropdowns {
    background-color: black;
    color: white;
    font-family: Nunito;
    font-size: 12pt;
}
/* warning message colour */
.Warning
{
    background-color: transparent;
    color: Red;
    font-family: Nunito;
    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;}
.svg {
    fill: #EEC456;
}
/* most important buttons colour */
.buttonStyle {
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: #EEC456;
    border-color: #EEC456;
    Border-Style: none;
    -webkit-appearance: none;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    color: black;
    font-family: Nunito;
    font-size: 14pt;
    font-weight: normal;
    height: 28px;
    margin-top: 4px;
    margin-bottom: 4px;
    background-image: none;
}

/* less important buttons colour */
.buttonStyleOther {
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: #EEC456;
    border-color: #EEC456;
    Border-Style: none;
    -webkit-appearance: none;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    color: black;
    font-family: Nunito;
    font-size: 14pt;
    font-weight: normal;
    height: 28px;
    margin-top: 4px;
    margin-bottom: 4px;
    background-image: none;
}
.buttonStyle:hover {
    background-color: #EEC456;
    border-color: #EEC456;
    color: white;
    background-image: none;
}
.buttonStyleOther:hover {
    background-color: #EEC456;
    border-color: #EEC456;
    color: white;
    background-image: none;
}
.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)  {
 }
 
