/*
 * CSS for Dovanda website
 */

/* Sets basics for text styling */

body {
  background: #15a2e1;
  color: white;
}


@media (min-width: 992px) {
  .hugelogoctr {
    padding-top: 200px;
  }
}

@media (max-width: 991px) {
  .hugelogoctr {
    padding-top: 50px;
  }
}

.mainbody h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
}


/* Sets the navbar's colour to Dovandablue and styles links */
.navbar-default.navbar-dovanda {
  background-color: #15a2e1;
  min-height: 50px;
}

.navbar-default.navbar-dovanda a:link,
.navbar-default.navbar-dovanda a:visited {
  color: white;
}

.navbar-default.navbar-dovanda a:hover {
  color: black;
}

/* Sets the links to Dovandablue */

a:link, a:visited {
  color: #15a2e1;
}
a:hover {
  color:black;
  text-decoration: underline;
}

/* Set Dovandablue background color, white text and some padding */
footer {
  background-color: #15a2e1;
  color: white;
  padding: 15px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* On smaller screens, sets the colors for the navbar toggle */
.navbar-default.navbar-dovanda .navbar-toggle {
  border-color: white;
}
.navbar-default.navbar-dovanda .navbar-toggle:hover,
.navbar-default.navbar-dovanda .navbar-toggle:focus {
  background-color: #15a2e1;
}
.navbar-default.navbar-dovanda .navbar-toggle .icon-bar {
  background-color: white;
}


/* Styles the BtntoTop javascript button */
#BtntoTop
{
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #15a2e1; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
}

#BtntoTop:hover {
  background-color: #0b5375;
}


/* Styles a button Dovandablue */
.btn-dovanda {
  color: #ffffff;
  background-color: #15a2e1;
  border-color: none;
}
.btn-dovanda:hover,
.btn-dovanda:focus,
.btn-dovanda:active,
.btn-dovanda.active,
.open > .dropdown-toggle.btn-dovanda {
  color: #ffffff;
  background-color: #0b5375;
  border-color: none;
}
.btn-dovanda:active,
.btn-dovanda.active,
.open > .dropdown-toggle.btn-dovanda {
  background-image: none;
}
.btn-dovanda.disabled,
.btn-dovanda[disabled],
fieldset[disabled] .btn-dovanda,
.btn-dovanda.disabled:hover,
.btn-dovanda[disabled]:hover,
fieldset[disabled] .btn-dovanda:hover,
.btn-dovanda.disabled:focus,
.btn-dovanda[disabled]:focus,
fieldset[disabled] .btn-dovanda:focus,
.btn-dovanda.disabled:active,
.btn-dovanda[disabled]:active,
fieldset[disabled] .btn-dovanda:active,
.btn-dovanda.disabled.active,
.btn-dovanda[disabled].active,
fieldset[disabled] .btn-dovanda.active {
  background-color: #15a2e1;
  border-color: none;
}
.btn-dovanda .badge {
  color: #15a2e1;
  background-color: #ffffff;
}
