.tab-right {
    display: flex;
    justify-content: space-between;
    position: fixed;
    margin-top: 5vh;
    margin-bottom: 5vh;
    left: 100%; top: 0;
    width: 25vw;
    min-width: 200px;
    height: 90vh;
    transition: all 0.5s, width 0s;
}

.tab-right-active {
    transform: translateX(-105%);
}

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 3pt 2pt #C3C3C3;
}

.info-list {
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: 5%;
    border-top: solid #C3C3C3;
    border-bottom: solid #C3C3C3;
}

.info-element-table {
    padding: 0;
}

.info-element-table li, .info-element-table li b {
    user-select: text; /* supported by Chrome and Opera */
    -webkit-user-select: text; /* Safari */
    -khtml-user-select: text; /* Konqueror HTML */
    -moz-user-select: text; /* Firefox */
    -ms-user-select: text; /* Internet Explorer/Edge */
}

.info-head {
    display: flex;
    align-content: center;
    justify-content: center;
    height: 5%;
    min-height: 40px;
    width: 100%;
}

.info-town {
    width: 100%;
    display: flex;
    font-size: large;
    align-items: center;
    justify-content: center;
    gap: 2%;
}

.info-btn {
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding: 1%;
    height: 4%;
    left: -15%;
    transition: 0.3s;
}

.info-btn-active {
    transform: scale(-1,1);
    left: -2%
}

.info-element {
    display: inline-flex;
    flex-direction: column;
    padding: 10px;
    margin: 10px;
    background-color: #E5EEF7;
    border-radius: 10px;
    width: 80%;
}

.info-hide-icon {
    cursor: pointer;
    width: 12%;
    align-self: flex-end;
    content: url("/static/resources/hide.svg");
}

.info-hide-icon-active {
    content: url("/static/resources/hide-active.svg");
}

.info-hide-icon:hover {
    filter: drop-shadow(0 0 5px gray);
}