/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : Oct 20, 2023, 5:17:08 PM
    Author     : Gerrit Verbeek / Choss Lore
*/
div { box-sizing: border-box; }

    @font-face {
      font-family: 'BellTopoSans';
      src: url('https://chosslore.com/fonts/belltoposans-regular.woff2') format('woff2'),
           url('https://chosslore.com/fonts/belltoposans-regular.woff') format('woff');
      font-weight: normal;
      font-style: normal;
    }

    /* Bold */
    @font-face {
      font-family: 'BellTopoSans';
      src: url('https://chosslore.com/fonts/belltoposans-bold.woff2') format('woff2'),
           url('https://chosslore.com/fonts/belltoposans-bold.woff') format('woff');
      font-weight: bold;
      font-style: normal;
    }

    /* Italic */
    @font-face {
      font-family: 'BellTopoSans';
      src: url('https://chosslore.com/fonts/belltoposans-italic.woff2') format('woff2'),
           url('https://chosslore.com/fonts/belltoposans-italic.woff') format('woff');
      font-weight: normal;
      font-style: italic;
    }

    /* Bold Italic */
    @font-face {
      font-family: 'BellTopoSans';
      src: url('https://chosslore.com/fonts/belltoposans-bolditalic.woff2') format('woff2'),
           url('https://chosslore.com/fonts/belltoposans-bolditalic.woff') format('woff');
      font-weight: bold;
      font-style: italic;
    }
    
.wrapper {
    position: relative;
}

#map {
    position: relative;
    height: inherit;
    width: inherit;
    z-index: 0;
    font-directory: url('');
}

.break-column {
  flex-basis: 100%;
  width: 0;
}

.container {
  display: flex;
  justify-content: center;
  align-content: flex-start;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

.circle {
    position: relative;
    border: 5px solid #0043C8;
    background-color: #00ff00;
    width: 200px;
    height: 200px;
    border-radius: 50%; 
    margin: 0.5em;
}

.circle .circle-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1000px;
    display: none;
}

.circle:hover .circle-overlay {
  display: block;
  /*border: 5px solid #fff000; */
  outline: 5px solid #002163;
  /* outline-offset: -4px; */
  cursor: pointer;
}

.button {
  background-color: #91B6FF;
  border: 5px solid #0043C8;
  border-radius: 12px;
  color: #002163;
  padding: 20px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
}

.button:hover {
  cursor: pointer;
  border: 5px solid #002163;
}

.circle.narrative {
  background-size: cover;
  background-position: center center;
  color: white;
}

.aligner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  flex-wrap: wrap;
}

body, h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  color: #002163;
}

h1  {
    margin: 0px;
     padding: 0px;
    font-size: 16pt}

h2  {
    margin: 0px;
     padding: 0px;
    font-size: 14pt}

h4  {
    margin: 0px;
     padding: 0px;}

p   {font-family: 'Lora', serif;
    font-size: 14pt;
    margin: 5px;
     padding: 0px;}

/* Forms      */
    #form-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.4); /* Optional overlay background color */
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999; /* Adjust the z-index value as needed to ensure it's above other elements */
    }

    #close-form-button {
        position: absolute;
        top: 0;
        right: 0;
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
        background-color: #ff0000;
        color: #fff;
        border: none;
        z-index: 3;
    }

    iframe {
        position: absolute;
        top: 5%;
        left: 10%;
        width: 80%;
        height: 90%;
        border: none;
        margin:10px;
        border-radius: 5px;
        background-color: #E6E6E6;
        z-index: 2;
    }

    .hidden {
        display: none !important;
    }
    
    #overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

.commentary-row {
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
  z-index: 999;
}

.commentary {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 999;
}

.commentary:hover {
  background-color: rgba(0, 0, 0, 1);
}