/* Basic styling */
html {
  box-sizing: border-box;
  height: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

h1 {
  color: #000000;
}

h2 {
  margin: 0 auto;
  color: #000000;
}

h3 {
  margin: 0 auto;
  color: #000000;
}

h4 {
  margin: 20px 0px 20px 0px;
  color: #000000;
}

li {
    padding: 5px 0 5px 0;
}

body {
  display: flex;
  flex-direction: column;
  color: #4d4d4d;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ebebeb;
}

.body highlight {
  background: #ffff40;
}

/* Header */
header {
  background-color: #4c92cd;
  padding: 5px;
  max-height: 90px;
}

.marquee {
  width: 100%;
  padding: 5px;
  background-color: #ffffff;
  font-size: 12px;
  color: #4d4d4d;
  white-space: nowrap;
}

/* Logo */
.logo {
  width: 430px;
  max-width: 85%;
  float: left;
}

.logo:hover {
  cursor: pointer;
}

/* Logo Q++Studio */
.logoSoftware {
  width: 375px;
  max-width: 85%;
  float: left;
}

.logoSoftware:hover {
  cursor: pointer;
}

.icon {
  max-width: 15%;
  display: none;
}

/* Page */
page-content {
  padding: 20px;
  width: 100%;
  margin: 0 auto;
  max-width: 80%;
  flex: 1 0 auto;
  background-color: #ffffff;
  font-size: 15px;
}

/* Footer */
footer {
  background-color: #4c92cd;
  padding: 10px;
  flex-shrink: 0;
}

footer .social {
  float: right;
  padding: 5px;
  margin: 0 auto;
}

/* Copyright */
footer .copyright {
  float: left;
  color: #ffffff;
  font-size: 12px;
  margin: 0 auto;
  padding: 5px;
}

/* Social logos */
.facebookLogo {
  float: right;
  width: 32px;
  height: 32px;
  margin: 0 0 0 10px;
  background: url("../resources/social/facebook_logo_grey.svg") 0% / 100% no-repeat;
}

.facebookLogo:hover {
  cursor: pointer;
  background: url("../resources/social/facebook_logo_color.svg") 0% / 100% no-repeat;
}

.twitterLogo {
  float: right;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url("../resources/social/twitter_logo_grey.svg") 0% / 100% no-repeat;
}

.twitterLogo:hover {
  cursor: pointer;
  background: url("../resources/social/twitter_logo_color.svg") 0% / 100% no-repeat;
}

.androidLogo {
  float: right;
  width: 32px;
  height: 32px;
  margin: 0 0 0 10px;
  background: url("../resources/social/android_logo_grey.svg") 0% / 100% no-repeat;
}

.androidLogo:hover {
  cursor: pointer;
  background: url("../resources/social/android_logo_color.svg") 0% / 100% no-repeat;
}

.iosLogo {
  float: right;
  width: 32px;
  height: 32px;
  margin: 0 0 0 10px;
  background: url("../resources/social/ios_logo_grey.svg") 0% / 100% no-repeat;
}

.iosLogo:hover {
  cursor: pointer;
  background: url("../resources/social/ios_logo_color.svg") 0% / 100% no-repeat;
}

/* Menu */
.menu {
  overflow: visible;
  background-color: #4c92cd;
}

.menu a {
  float: left;
  display: block;
  font-size: 14px;
  text-align: center;
  padding: 8px 14px;
  margin: 0 auto;
}

.menu form {
  float: right;
  display: block;
  padding: 7px 14px;
  margin: 0 auto;
}

.menu form input[type=text] {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #4d4d4d;
    box-shadow: none;
    border-radius: 3px;
    width: 150px;
    font-size: 12px;
    height: 20px;
}

.menu form input[type=submit] {
    border: 1px solid #4d4d4d;
    background-color: #EAF4F9;
    cursor: pointer;
    color: #4c92cd;
    height: 19px;
    box-shadow: none;
    border-radius: 3px;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.menu form input[type=submit]:hover {
    background-color: #E4641C;
    color: #EAF4F9;
}

.searchmenu {
  display: none;
}

.menu a:link,
.menu a:visited,
.dropbtn {
  color: #ffffff;
  text-decoration: none;
}

.menu a:hover,
.menu a:active,
.dropdown .dropbtn:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Dropdown menu */
.dropdown {
  float: left;
  overflow: visible;
}

.dropdown .dropbtn {
  cursor: pointer;
  font-size: 14px;
  border: none;
  outline: none;
  color: #ffffff;
  padding: 8px 14px;
  background-color: #4c92cd;
  font-family: inherit;
  margin: 0 auto;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(18, 101, 171);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: #4c92cd;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  text-decoration: underline;
}

.show {
  display: block;
}

/* Hyperlinks */
.hyperlinksDark a:link,
.hyperlinksDark a:visited {
  text-decoration: none;
  color: #4c92cd;
}

.hyperlinksDark a:hover,
.hyperlinksDark a:active {
    color: #E4641C;
    text-decoration: underline;
}

.hyperlinksLight a:link,
.hyperlinksLight a:visited {
  text-decoration: none;
  color: #ffffff;
}

.hyperlinksLight a:hover,
.hyperlinksLight a:active {
    color: #E4641C;
    text-decoration: underline;
}

.btnMoreInfo {
    position: fixed;
    top: 225px;
    right: 10px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #E4641C;
    text-decoration: none !important;
    color: white !important;
    cursor: pointer;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.btnMoreInfo:hover {
    color: #E4641C !important;
    text-decoration: none !important;
    background-color: #EAF4F9;
    border: 1px solid #4c92cd;
}

.sidebar-image {
    display: none;
}

.btnMoreInfoInline {
    position: static !important;
    display: inline;
    border: none;
    outline: none;
    background-color: #E4641C;
    text-decoration: none !important;
    color: white !important;
    cursor: pointer;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    font-size: 16px;
    margin: 30px 0 30px 0;
}

    .btnMoreInfoInline:hover {
        color: #E4641C !important;
        text-decoration: none !important;
        background-color: #EAF4F9;
        border: 1px solid #4c92cd;
    }



#btnLicense {
    position: fixed;
    top: 225px;
    right: 10px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #E4641C;
    color: white;
    cursor: pointer;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

#btnLicense:hover {
    color: #E4641C;
    background-color: #EAF4F9;
    border: 1px solid #4c92cd;
}

.btnPrevDate, .btnNextDate {
    border: none;
    color: #FFFFFF !important;
    text-decoration: none !important;
    outline: none;
    background-color: #4C92CD !important;
    cursor: pointer;
    padding: 5px 10px 5px 10px;
    border-radius: 3px;
    font-size: 16px;
}
.btnPrevDateHidden, .btnNextDateHidden {
    display: none;
}

.btnEmail {
    border: none;
    text-decoration: none !important;
    color: white !important;
    outline: none;
    background-color: #E4641C;
    cursor: pointer;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    font-size: 30px;
}

.btnEmail:hover {
    color: #E4641C !important;
    text-decoration: none !important;
    background-color: #EAF4F9;
    border: 1px solid #4c92cd;
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 70px;
    right: 10px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #E4641C;
    color: white;
    cursor: pointer;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

#myBtn:hover {
    color: #E4641C;
    background-color: #EAF4F9;
    border: 1px solid #4c92cd;
}


@media only screen and (min-width: 1000px) {
  page-content {
    max-width: 800px;
  }
}


@media only screen and (min-width: 681px) {
    .free-form-search form input[type=text] {
        background-color: #ffffff;
        color: #000000;
        border: 1px solid #4d4d4d;
        box-shadow: none;
        border-radius: 3px;
        width: calc(50% - 100px);
        font-size: 14px;
    }
}

@media only screen and (max-width: 900px) {

    .sidebar-image {
        display: none;
    }
}

@media only screen and (max-width: 680px) {

    .btnMoreInfo {
        display: none;
    }

    #btnLicense {
        display: none;
    }

    .menu a,
    .menu form,
    .dropdown .dropbtn {
        display: none;
    }

    .searchmenu {
        display: block;
    }

    .icon {
        display: block;
        width: 32px;
        height: 32px;
        float: right;
        cursor: pointer;
    }

    footer .social {
        float: left;
    }

    page-content {
        max-width: 100%;
    }

    .menu.responsive {
        position: relative;
    }

        .menu.responsive a {
            float: none;
            display: block;
            text-align: left;
        }

        .menu.responsive .dropdown {
            float: none;
        }

            .menu.responsive .dropdown .dropbtn {
                display: block;
                width: 100%;
                text-align: left;
            }

        .menu.responsive .dropdown-content {
            position: relative;
        }

    .free-form-search form input[type=text] {
        background-color: #ffffff;
        color: #000000;
        border: 1px solid #4d4d4d;
        box-shadow: none;
        border-radius: 3px;
        width: calc(100% - 100px);
        font-size: 14px;
    }
}
