/* The sidebar menu */
.sidebar {
    height: 100dvh; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: absolute; /* Stay in place */
    z-index: 6; /* Stay on top */
    top: 0%;
    left: 0%;
    /* border-radius: 20px; */
    border: #ffffff solid 0px;
    background-color: #389cb8;
    background-image: url(../img/linesmap_bg.png);
    background-repeat: no-repeat;
    background-position: left;
    /* background-size: 250%; */
    /* background: rgb(137,203,33);
    background: linear-gradient(3deg, #9fca38 0%, #01a8af 53%, #3b6cb6 100%); */
    font-family: Arial Rounded MT Bold,Helvetica Rounded,Arial,sans-serif;
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 400ms; /* 0.5 second transition effect to slide in the sidebar */
    color: rgb(255, 255, 255);
    /* overflow: visible; */
}
#sideBarSearch, #sideBarSettings {
    backdrop-filter: blur(2px);
    height: 100%;
    width: 100%;
    background-color: #00000047;
}
.exit-menu-hidden {
    display: none !important;
    position: absolute;
    left: 30%;
    top: 2vw;
    background-color: white;
    padding-left: 0.5vw;
    z-index: inherit;
}
.exit-menu {
    position: absolute;
    left: 30%;
    top: 2vw;
    background-color: white;
    color: black;
    padding-left: 0.5vw;
    z-index: inherit;
    cursor: pointer;
}
.exit-menu:hover {
    color: white;
    background-color: black;
}
.header-return-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.4vw;
    width: 100%;
    text-decoration: none;
    color: white;
    transition: 400ms;
}
.header-return-link:hover {
    color: #000;
}
.header-return {
    font-family: "Raleway", sans-serif;
    text-decoration: none;
    font-size: 1vw;
    margin: 0;
    padding: 0;
}
.header-img-container {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    padding: 1vw;
}
.header-img {
    max-width: 100%;
    max-height: 15vh;
}
.header {
    /* padding: 8px 8px 8px 8px; */
    font-family: "Raleway", sans-serif;
    text-decoration: none;
    font-size: 7vh;
    font-weight: 700;
    letter-spacing: -0.3vh;
    display: block;
    text-align: center;
    transition: 0.3s;
}

.select {
    padding-left: 10px;
    padding-right: 10px;
    /* padding-bottom: 10px; */
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    color: white;
    border-radius: 5px 5px 5px 5px;
}
.select select {
    /* font-family: ; */
    cursor: pointer;
    /* padding: 10px 15px; */
    /* border-radius: 10px; */
    font-family: "Raleway", sans-serif;
    font-size: 2vh;
    width: 60%;
    /* text-align: right; */
    outline: 0;
    border: 0;
    background: transparent;
    color: white;
    appearance: none;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.select select:hover,
.select select:focus, .select select:hover + span{
    color: #000000;
    /* background: #ffffff; */
}
.select_arrow {
    position: absolute;
    top: 16px;
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #000000 transparent transparent transparent;
}

#searchBar {
    display: none;
}

#languageSelect {
    width: 95px;
    text-align: start;
}

.bottomButtons {
    z-index: 4;
    padding-left: 10px;
    padding-right: 10px;
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    color: #000000;
    border-radius: 5px 5px 5px 5px;
}
.bottomButtons a {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 10px 15px;
    margin-bottom: 5px;
    background: #ffffff;
    color: #000000;
    appearance: none;
    text-align: center;
    border-radius: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.bottomButtons a:hover {
    background: rgb(205, 205, 205);
}


.sidebar-line {
    display: flex;
    justify-content: center;
    padding: 0.3vh;
    align-items: center;
    /* display: inline-flex; */
    /* padding-top: 10px;
    padding-bottom: 10px; */
}

.menu-option {
    padding: 8px 8px 8px 8px;
    text-decoration: none;
    font-size: 2.5vh;
    display: block;
    text-align: center;
    font-weight: bold;
    transition: 0.3s;
}
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    /* width: 60px; */
    /* height: 34px; */
    width: 8vh;
    height: 4vh;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: 400ms;
}

.slider:before {
    position: absolute;
    content: "";
    /* height: 26px; */
    /* width: 26px; */
    /* width: 8vh; */
    height: 3vh;
    left: 4px;
    bottom: 0.5vh;
    background-color: white;
    -webkit-transition: .4s;
    transition: 400ms;
}
input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    /* -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px); */
    transition: 600ms;
    right: 4px;
    left: auto;
}

/* Rounded sliders */
.slider.round {
    /* border-radius: 34px; */
}

.slider.round:before {
    /* border-radius: 50%; */
    width: 10%;
}


/*Share Link*/
.bottomShare-wrapper {
    z-index: 4;
    padding-left: 10px;
    padding-right: 10px;
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    border-radius: 5px 5px 5px 5px;
}
.header-share {
    font-family: "Raleway", sans-serif;
    text-decoration: none;
    font-size: 1.4vw;
    color: #cacaca;
    display: flex;
    justify-content: space-between;
    width: fit-content;
    margin: auto;
    align-items: center;
}
.share-icon {
    padding-right: 1vw;
    border: none;
}

.bottomShare-btns {
    display: flex;
    width: 100%;
    height: fit-content;
    justify-content: space-evenly;
    padding: 1vw;
}
.share-btn{
    cursor: pointer;
    background: transparent;
    color: #fff;
    font-size: 1.3vw;
    border: none;
    text-decoration: none;
}
.share-btn:hover {
    color: rgb(0, 0, 0);
}
.copy-btn:hover {
    background: rgb(0, 5, 166);
}

.share-link {
    text-decoration: underline;
    font-size: 20px;
    width: 100%;
    text-align: center;
}

.email-container {
    width: 100%;
    position: relative;
    height: 40px;
    display: none;
    align-items: center;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 10px;
}
.email{
    width: 80%;
    height: 100%;
    line-height: 40px;
    color: #000;
    border-radius: 40px 0 0 40px;
    font-size: 18px;
    padding-left: 10px;
    border: 0;
    font-family: Arial, serif;
    -webkit-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;
}

@media screen and (max-width: 550px) {
    .sidebar {
        display: none;
    }   
}
  