/* GLOBAL STYLES */

* {
  box-sizing: border-box;
}

html, body {
  font-size: 100%;
  height: 100%;
  background-color: #00BB3F;
  color: #fff;
  font-family: 'Oxygen', sans-serif;
}

/*

Links can be styled differently depending on what state they are in.

The four links states are:

a:link - a normal, unvisited link
a:visited - a link the user has visited
a:hover - a link when the user mouses over it
a:active - a link the moment it is clicked 

*/

a, a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/** HEADER **/

#header-nav {
  background-color: #0d9bca;
  border-radius: 0;
  border: 0;
  z-index: 1000;
  box-shadow: [horizontal offset] [vertical offset] [blur radius] [optional spread radius] [color];
  -webkit-box-shadow: 0px 10px 13px -7px #fff, -1px 0px 1px 19px rgba(166, 47, 0, 0);
  box-shadow: 0px 10px 13px -7px #fff, -1px 0px 1px 19px rgba(166, 47, 0, 0);
}

.navbar-brand {
  padding-top: 25px;
}

.navbar-brand h1 {
  /* heder */
  font-family: 'Lora', serif;
  color: rgb(253, 212, 26);
  font-size: 1.5em;
  text-transform: uppercase;
  font-weight: bold;
  text-shadow: 1px 1px 1px #63DD8D;
  margin-top: 0;
  margin-bottom: 0;
  line-height: .75;
}

.navbar-brand a:hover, .navbar-brand a:focus {
  text-decoration: none;
}

.navbar-brand p {
  color: #E7E7E7;
  text-transform: uppercase;
  font-size: .8em;
  margin-top: 5px;
}

.navbar-brand p span {
  vertical-align: middle;
}

#nav-list {
  margin-top: 10px;
}

#nav-list a {
  color: rgb(253, 212, 26);
  text-align: center;
}

#nav-list a:hover {
  background: #E7E7E7;
}

#nav-list a span {
  font-size: 1.4em;
}

#contact {
  margin: 0px;
  padding: 15px;
}

#contact a {
  text-align: right;
  padding-bottom: 0;
}

#contact div {
  color: #00BD39;
  text-align: right;
}

.navbar-header button.navbar-toggle, .navbar-header .icon-bar {
  border: 1px solid #238C47;
}

.navbar-header button.navbar-toggle {
  clear: both;
  margin-top: -30px;
}

/* END HEADER */

/* FOOTER */

.panel-footer {
  width: 100%;
  margin-top: 30px;
  padding: 35px 0px 0px 0px;
  padding-bottom: 30px;
  background-color: #0d9bca;
  border-top: 0;
  bottom: 0;
  -webkit-box-shadow: 10px 10px 13px 10px #fff, -1px 0px 1px 19px rgba(166, 47, 0, 0);
  box-shadow: 10px 10px 13px 10px #fff, -1px 0px 1px 19px rgba(166, 47, 0, 0);
}

.panel-footer div.row {
  margin-bottom: 35px;
}

#other {
  line-height: 2;
}

#other>span {
  font-size: 1.3em;
}

/* END FOOTER */

.rot {
  color: red;
}

/* Animation list page */

.odd_row, .even_row {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 10px 10px 10px;
  font-size: 1.3em;
}

.odd_row {
  background-color: rgb(38, 209, 112);
}

.odd_row, .odd_row a {
  color: skyblue;
}

.even_row {
  background-color: skyblue;
}

.even_row, .even_row a {
  color: seagreen;
}

/* END Animation list page */

/* 404 Page, Liste */

section .page404, .single {
  border-radius: 1em;
  padding: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

.single h3 {
  padding: 30px;
}

.page404, .single {
  padding: 20px;
  font-size: 1.5em;
  text-align: center;
}

.page404 p {
  padding: 20px;
}

.page404 p a, .single p a {
  color: gold;
  text-decoration: none;
}

/* CARD */

.coupon {
  border: 10px dotted rgb(253, 212, 26);
  /* Dotted border */
  width: 80%;
  border-radius: 35px;
  /* Rounded border */
  margin: 0 auto;
  /* Center the coupon */
  max-width: 600px;
  text-align: center;
  -webkit-box-shadow: 10px 10px 13px -7px #fff, -1px 0px 1px 19px rgba(166, 47, 0, 0);
  box-shadow: 10px 10px 13px -7px #fff, -1px 0px 1px 19px rgba(166, 47, 0, 0);
}

.coupon a {
  color: #fff;
}

.coupon img {
  border-radius: 35px;
  /* Rounded border */
}

.contain {
  padding: 2px 16px;
}

.promo {
  padding: 3px;
}

.expire {
  color: red;
}

/* end card */

/********** Large devices only **********/

@media (min-width: 1200px) {

}

/********** Medium devices only **********/

@media (min-width: 992px) and (max-width: 1199px) {

}

/********** Small devices only **********/

@media (min-width: 768px) and (max-width: 991px) {
  /* Page */
  .container .jumbotron {
    height: 32px;
  }
  .picture-holder {
    height: 400px;
  }
  /* End Page */
}

/********** Extra small devices only **********/

@media (max-width: 767px) {
  .picture-holder {
    height: 400px;
  }
  /* Header */
  .navbar-brand {
    padding-top: 10px;
    height: 80px;
  }
  .navbar-brand h1 {
    /* Name */
    padding-top: 10px;
    font-size: 5vw;
    /* 1vw = 1% of viewport width */
  }
  .navbar-brand p {
    /* Text type */
    font-size: .6em;
    margin-top: 12px;
  }
  .profil {
    margin-top: 30px;
    margin-right: 0px;
    margin-left: 0px;
  }
  #collapsable-nav a {
    /* Collapsed nav menu text */
    font-size: 1.2em;
  }
  #collapsable-nav a span {
    /* Collapsed nav menu glyph */
    font-size: 1em;
    margin-right: 5px;
  }
  #contact-btn>a {
    font-size: 1.5em;
    display: block;
    margin: 0 20px;
    padding: 10px;
    background-color: #024E68;
    color: #00BB3F;
  }
  #xs-contact {
    margin-top: 5px;
    font-size: .7em;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  /* End Header */
  /* Footer */
  .panel-footer {
  position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   color: white;
   text-align: center;
  }

  .panel-footer section {
    text-align: center;
  }
  .panel-footer section:nth-child(3) {
    margin-bottom: 0;
    /* margin already exists on the whole row */
  }
  .panel-footer section hr {
    width: 50%;
  }
  /* End Footer */
  /* Page */
  .container .jumbotron {
    margin-top: 30px;
    padding: 0;
  }
  /* END Page */
}

/********** Super extra small devices Only (e.g., iPhone 4) **********/

@media (max-width: 479px) {
  /* Header */
  .navbar-brand h1 {
    /* Name */
    padding-top: 5px;
    font-size: 6vw;
  }
  /* End Header */
  /* Page */
  .col-xxs-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    float: left;
    width: 100%;
  }
  /* END Page */
}