html,
body,
div,
p {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    /* scrollbar-width: none; */
}

/* body::-webkit-scrollbar {
    display: none;
  }
   */


html {
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
    line-height: 1.4;
    overflow: hidden;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #000;
    background-color: Azure;
    font-family: "Arial Narrow";
    font-size: 18px;
    letter-spacing: 0.02em;
    font-weight: normal;

    /*! width: 100%; */
    margin: 20px;

}

h1 {
    flex: 0;
    font-weight: normal;
    font-size: 15px;
    margin: 0;
    text-transform: uppercase;
    margin-bottom: 10px;
}

h1 a,
a:hover,
a:visited {
    color: inherit;
    text-decoration: none;
}

h1 a:hover {
    color: inherit;
    text-decoration: underline;
}

.titleDesktop {
    display: block;
  }

.titleMobile {
    display: none;
  }

  
h2 {
    display: inline;
    margin: 0;
}

.borders {
    border: dashed black 1px;
    border-radius: 10px;
}


/* GENERAL */
.content {
    display: flex;
    gap: 20px;
    width: 100%;
    height: 100%;
}

#map {
    height: calc(100vh - 40px);
    width: calc(100% - 300px);
}

#infos {
    width: 300px;
    height: calc(100vh - 71px);
    overflow-y: scroll;
}


/* INFO DIV */
.block,
.home,
.categories {
    width: 260px;
    display: block;
    position: absolute;
    margin: 15px 20px;
    position: relative;
}

/* BLOCK DIV */
.infoHeader {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.infoHeader h2 {
    margin: 0;
}

.infoDot {
    width: 15px;
    height: 15px;
}

.block>img {
    width: 100%;
    aspect-ratio: 4/3;
}

.block p,
.home p {
    margin: 10px 0;
}

/* CATEGORIES */
details {
    display: flex;
    flex-direction: column;
}

.list {
    display: flex;
    flex-direction: column;
}

.categoryHeader {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.categoryHeader div {
    display: flex;
    gap: 10px;
    align-items: center;
}


/* DOTS */
.dot {
    width: 15px;
    height: 15px;
    border-radius: 100%;
}

.swimCategory:before {
    background: tomato;
    content:"\A";
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin-right: 8px;
    display:inline-block;
}

.viewCategory:before {
    background: BlueViolet;
    content:"\A";
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin-right: 8px;
    display:inline-block;
}

.xpCategory:before {
    background: lime;
    content:"\A";
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin-right: 8px;
    display:inline-block;
}

/* MISCELLANIOUS */
.hide {
    display: none;
}

.deactivate {
    opacity: .3;
}

.link {
    text-decoration: underline;
}

.link:hover {
    text-decoration: none;
    cursor: pointer;
}