:root {
    --orange: #ff7825;
    --green: #9bff38;
    --dark-green: #00bf63;
    --yellow: #fffc00;
    --blue: #6bd8ff;
    --dark-blue: #001f61;
    --red: #fa4e1d;
    --white: #ffffff;
    --light-orange: #ffad7a;
    --pink: #ff79a5;
    --mid-orange: #ff904c;
  }

  * {
    box-sizing: border-box;
    font-family: "Noto Sans Display", sans-serif !important;
  }

  body::-webkit-scrollbar {
    display: none;
  }
  
  a {
    text-decoration: none;
    color: black;
    font-weight: 800;
  }

  .p1 {
    font-weight: 600;
    margin-top: 15px;
    margin-left: 45px;
    position: absolute;
    font-size: 13px;
  }

  header {
    height: 80px;
    width: 100%;
    background: -webkit-linear-gradient(top, var(--light-orange) 0%, var(--orange) 50%);
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    border-bottom: black solid 3px;
    z-index: 2;
    padding: 0px;
  }

  .menu {
    height: auto;
    width: 120px;
    border-radius: 20px;
    background: -webkit-linear-gradient(top, #ffad7a 0%, var(--orange) 100%);
    position: fixed;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 5px 0 0px black;
    border: 2px solid black;
    z-index: 2;
    left: 20px;
    top: 100px;
    justify-content: space-around;
    display: flex;
  }

  .menu svg {
    stroke: black;
    stroke-width: 1.7px;
    overflow: visible;
    width: 30px;
    height: 30px;
    transform: translate(-100%, 2%);
  }

  .grid, .grid2 {
    display: grid;
    grid-template-columns: 13% 60% 27%;
  }

  .Icon {
    height: 52px;
    width: 100%;
    border-radius: 18px;
    margin-left: -10px;
    padding-left: 10px;
    display: flex;
    align-items: center;
  }

  .Icon:hover {
    background: -webkit-linear-gradient(top, white 0%, var(--light-orange) 20%);
    border-bottom: solid 5px black;
    border-right: solid 5px black;
    border-top: solid 2px black;
    border-left: solid 2px black;
    cursor: pointer;
  }

.menu i {
    font-size: 30px;
    position: relative;
    z-index: 1;
}

  .menuGlobe i {
    background: linear-gradient(1800deg, var(--green) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .menuHome i {
    background: linear-gradient(1800deg, var(--red) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .menuStamps i {
    background: linear-gradient(1800deg, var(--blue) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .menuSettings i {
    background: linear-gradient(1800deg, var(--yellow) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .menuGlobe, .menuHome, .menuStamps, .menuSettings {
    z-index: 1;
    display: inline-block;
    margin-left: 10px;
    width: 100%;
    display: inline-block;
  }

  .customization {
    height: auto;
    width: 170px;
    border-radius: 20px;
    background: -webkit-linear-gradient(top, var(--light-orange) 0%, var(--orange) 100%);
    border: 2px solid black;
    box-shadow: 5px 5px 0 0px black;
    z-index: 3;
    left: 20px;
    top: 330px;
    display: none;
    flex-direction: column;
    position: fixed;
    gap: 5px;
  }

  .customization input {
    display: none;
  }

  .flex1, .flex2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  header.fixed {
    position: fixed;
  }

  .fixed {
    position: fixed;
  }

  .mode {
    font-weight: 650;
    color: black;
    margin-left: 10px;
    font-size: 14px;
  }

  .spin {
    font-weight: 650;
    color: black;
    margin-left: 10px;
    font-size: 14px;
  }


.container {
    top: 10px;
    left: 130px;
    width: 50px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }

  input {
    display: block;
  }
  

  .container1 {
    top: 50px;
    left: 130px;
    width: 50px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }
  
  .modeButton1 {
    background-color: var(--blue);
    width: 50px;
    height: 25px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
  }
  
  .modeButton1::before {
    position: absolute;
    content: "";
    background-color: var(
      --before-background-color,
      var(--yellow)
    );
    box-shadow: var(--before-box-shadow, 0px 0px 10px 1px var(--yellow));
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 2.5px;
    transition: 0.2s;
  }

  
  input:checked + .modeButton1::before {
    transform: translateX(25px);
  }

  .modeButton {
    background-color: var(--blue);
    width: 50px;
    height: 25px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
  }

  .modeButton::before {
    position: absolute;
    content: "";
    background-color: var(--yellow);
    box-shadow: 0px 0px 10px 1px var(--yellow);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 2.5px;
    transition: 0.2s;
  }
  
  input:checked + .modeButton {
    background-color: var(--dark-blue);
  }
  
  input:checked + .modeButton::before {
    transform: translateX(25px);
    background-color: white;
    box-shadow: 0px 0px 10px 1px white;
  }

  .globit_logo {
    height: 75px;
    width: auto;
    margin-left: 20px;
    position: relative;
    z-index: 3;
  }

.logOut {
    grid-column: 12;
    padding: 0px;
    height: 100%;
    width: 100%;
}

#username1 {
    margin-bottom: 5px;
    margin-top: 10px;
    text-align: center;
}

#logOutButton {
    background-color: white;
    width: auto;
    padding: 3px 10px 3px 10px;
    border-radius: 20px;
    border: black solid 2px;
    color: black;
    font-weight: 700;
    display: block;
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
}

#logOutButton:hover {
    background-color: black;
    color: white;
}

  .average {
    font-weight: 600;
  }
  
  .thick {
    font-weight: 800;
  }
  
  .margin-btm {
    margin-bottom: 0px;
  }

  .small-margin-top {
    margin-top: 12px;
  }

  .same-line {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }

  .margin-top {
    margin-top: 10px;
  }

  .small-margin {
    margin-top: 10px;
    margin-bottom: 0px;
  }

  .thick {
    font-weight: 800;
  }

  

  @media (max-width: 800px) {

    .p1 {
        display: none;
      }

    .logOut {
        grid-column: 10 / 13;
    }

    #map {
        height: calc(90vh - 80px) !important;
    }

    .menu svg {
        transform: translate(-100%, 3%);
      }

      .menu {
        width: 100%;
        left: 0px;
        bottom: 0;
        top: unset;
        flex-direction: row !important;
        justify-content: center;
        border-radius: 0px;
        box-shadow: 0px 0px 0 0px black;
        border: 0px solid black;
        border-top: 3px solid black;
        height: calc(10vh);
      }

      .customization {
        left: 10px;
        top: 90px;
        right: 50px;
        padding-top: 12px;
        padding-bottom: 12px;
        width: 100px;
        box-shadow: 3px 3px 0 0px black;
      }

      .mode, .spin {
        display: none;
    }

      .Icon {
        height: 52px;
        width: 60px;
        border-radius: 18px;
        display: flex;
        justify-content: center;
        padding-left: 30px;
        margin: 0;
      }

      .menuGlobe, .menuSettings, .menuStamps, .menuHome  {
        display: flex;
        justify-content: center;
        width: auto;
      }
    
      .grid, .grid2 {
        display: flex !important;
        justify-content: center !important;
        grid-template-columns: unset !important;
      }
    
    
      .rightbar, .rightbar2 {
        background: red;
        grid-column: unset;
        display: none !important;
      }

      .mainbar, .mainbar2 {
        /*
        background: blue;
        */
        grid-column: unset !important;
        align-items: center !important;
        }
      

  }



  