html {
    height: 100%;
}

body {
    font-family: arial, sans-serif;
    color: #000;
    line-height: 1.2em;
    height: 100%;
    margin: 0;
}

a {
    color: #009B7B;
    text-decoration: underline;
}

.content {
    height: 100%;
}

.btn {
    text-transform: uppercase;
    font-size: 0.9em;
    border-radius: 0px;
    border: none;
    padding: 8px 24px;
    -webkit-box-shadow: 0px 0px 6px -1px rgba(0,0,0,0.6); 
    box-shadow: 0px 0px 6px -1px rgba(0,0,0,0.6);
}

.btn:hover {
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.6); 
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.6);
    cursor: pointer;
}

.btn-primary {
    background-color: #009B7B;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #30b99d;
}

.btn-secondary {
    background-color: #ffffff;
    color: #000000;
}

.btn-secondary:hover {
    background-color: #efefef;
}

#loading-icon {
    background: url('/images/loading.large.gif') no-repeat center center;
    height: 100px;
    width: 100px;
    position: fixed;
    left: 50%;
    top: 40%;
    margin-left: -50px;
    margin-top: -50px;
    z-index: 999;
}

.small-loader {
    background: url('/images/loading.small.gif') no-repeat;
    line-height: 40px;
    padding-left: 50px;
}

.centered-text {
    text-align: center;
}

.center-children {
    display: flex;
    align-content: center;
}

.help-icon {
    cursor: pointer;
    display: inline-block;
    height: 24px;
    width: 24px;
    background: url('/images/help.png') no-repeat center center;
    vertical-align: middle;
}

.basket input.basket-remove {
    float: right;
    padding: 0.25em 1em 0.25em 0.25em;
}

.basket ul {
    border-top: solid 1px #dddddd;
    border-bottom: solid 1px #dddddd;
    background-color: #efefef;
    padding: 0.25em 1em 0.25em 1em;
    margin: 0.5em 0 0.5em 0;
    overflow-y: auto;
    overflow-x: hidden;
    list-style-type: none;
}

.centered-page {
    background-color: #ffffff;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.last-updated-date {
    padding-top: 0.7em;
}

button.favourite {
    height: 24px;
    width: 24px;
    background-repeat: no-repeat;
    background-image: url('/images/not-favourite.png');
    background-size: contain;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

button.favourite:focus {
    outline: 0;
}

    button.favourite.selected {
        background-image: url('/images/favourite.png');
    }