/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

 :root {
  /* Colours */
  --border-color: rgba(34,34,34, 0.1);
  --green-color: #d4e157;

  /* Fonts */
  --font-weight-bold: 400;
  --font-size-title: 1.8em;
  --font-size-big-title: 2.5em;

  /* Layout settings */
  --section-padding: 60px 140px;
  --section-padding-bigger: 60px 200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
  color: #333;
  overflow-x: hidden;
  font-weight: 200;
  font-size: 16px;
}

div.main-content-container{
  max-width: 1800px;
  margin: 0 auto;
}

.footer{
  width: 100%;
  background-color: #0D0D0E;
}

.footer .container{
  display: flex;
  padding: 60px 0;
  margin: 0 140px;
  border-bottom: 1px solid #4d4d4d;
  justify-content: space-between;
}

.footer .container .logo img{
  width: 60px;
  border-radius: 10px;
  box-shadow: 0 0 11px var(--green-color);
}

.footer .container .segment{
  line-height: 2.5em;
  color: #b2b2b2;
}

.footer .container .segment .title{
  text-transform: uppercase;
  font-size: 1em;
  color: #4d4d4d;
}

.footer .container .segment a{
  color: #b2b2b2;
  text-decoration: none;
  font-size: 0.9em;
}

.footer .last-line{
  display: flex;
  padding: var(--section-padding);
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #b2b2b2;
  font-size: 0.8em;
}

.footer .last-line a{
  color: #b2b2b2;
  text-decoration: none;
}

div.flash-message{
  text-align: center;
  color: green;
  padding-bottom: 20px;
  font-weight: 300;
}

div.flash-message-alert{
  text-align: center;
  color: red;
  padding-bottom: 20px;
  font-weight: 300;
}

.cookie-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 800px;
  background-color: #fff;
  color: #000;
  margin: 20px;
  box-shadow: 0 0 11px rgba(33,33,33,.2);
  border-radius: 10px;
}

.cookie-bar .cookie-container{
  padding: 20px;
}

.cookie-bar button{
  background-color: #d4e157;
  border: 2px solid #d4e157;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 400;
  text-decoration: none;
  color: #333;
  font-size: 1em;
  margin-top: 20px;
  margin-right: 20px;
  cursor: pointer;
}

.cookie-bar button:hover{
  background-color: #fff;
}

.cookie-bar button.no{
  background-color: #b0b0b0;
  border: 2px solid #b0b0b0;
}

.cookie-bar button.no:hover{
  background-color: #fff;
}

@media (max-width: 1020px) {
  .cookie-bar{
    width: 90%;
    margin: 20px 5%;
  }
}

@media (max-width: 680px) {
  body{
    font-size: 14px;
  }
}