﻿html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
    background: linear-gradient(180deg, rgba(0, 125, 255, 0.8) 0%, rgba(250, 225, 0, 0.5) 50%, rgba(0, 175, 255, 0.8) 100%);
    background-attachment: fixed;
    position: relative;
    height: 100%;
    z-index: 1;
}

body.noShip {
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

body.ship {
    background-image: url(/images/pauleoTravel_ship_with_sunrise.png);
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: inherit;
    z-index: 2;
}

main {
    padding-top: 85px;
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

/* pl css
-------------------------------------------------- */

/*pl main colors*/
:root {
    --plBlue: #000064FF;
    --plRed: #F00;
    --plLightGray: lightgray;

}

.text-underlay {
    background-color: white;
    padding: 1em;
    border-radius:0.5em;
    margin-bottom: 20px;
}

.text {
    opacity: 1.0;
}

#weatherIcon {
    max-width: 50px;
    max-height: 50px;
}

.fade-in-weatherdiv {
    animation: fadeIn 2s;
}

@keyframes fadeIn {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.no-data-weatherdiv {
    opacity: 0.3 
}

.pl-blue {
    background-color: var(--plBlue) 
}

a.nav-link {
    color: var(--plLightGray) !important;
    font-size: 16px;
}

