#map {
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
}
.modalBox {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
input {
    border: none;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    width: 80%;
}
input[type=checkbox] {
    width: initial;
}
input:focus {
    outline: none;
}
#info {
    position: absolute;
    width: 40vw;
    height: 100vh;
    top: 0;
    left: 100vw;
    transition: left 1s;
    background-color: white;
    transition-timing-function: ease-out;
}
#newEvent {
    height: 100%;
    width: 100%;
}
#eventInputsWrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}
.tag {
    border-radius: 5vh;
    background-color: #ececec;
    width: min-content;
    display: inline;
    padding-left: .5vw;
    padding-right: .5vw;
    margin: 0.25vmin;
    transition: box-shadow .5s;
}
.tag:hover {
    transition: box-shadow .5s;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#newTag {
    display: inline;
    margin: 2vmin;
}
#newEventTagList {
    user-select: none;
    display: block;
    padding: 1vmin;
    margin-bottom: 2vmin;
    width: fit-content;
    max-width: 80%;
    border-radius: 2vmin;
    background-color: #d5d5d5;
    line-height: 5vmin;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#newEventTagSelection {
    display: block;
    visibility: hidden;
}
#newEventTagAutocompleteSuggestions {
    position: absolute;
    transition: 0.1s;
}
.tagSuggestion {
    background-color: white;
    cursor: pointer;
    padding: 1em;
}
.tagSuggestion:hover {
    background-color: #229fff;
}
#newEventNameWrapper {
    width: 100%;
    text-align: center;
}
#newEventName {
    margin-top: 1vh;
    border: none;
    outline: none;
    font-size: 3cap;
    text-align: center;
}
#newEventTagsWrapper {
    margin: 1vw;
}
#newEventDateWrapper {
    width: 100%;
    display: flex;
    justify-content: space-around;
    user-select: none;
    margin-bottom: 5vmin;
}
.jqueryDate
{
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
#newEventPriceLinkWrapper {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 4vmin;
}
#newEventLink {
    background-color: initial;
}
#newEventLink:valid {
    background-color: initial;
    border-color: black;
    border-width: 1px;
}
#newEventLink:invalid {
    background-color: white;
}
.checkedLink{

}
.checkedLink:invalid {
    background-color: red !important;
}
#newEventDescWrapper {
}
#newEventDesc {
    height: 80%;
    resize:horizontal;
    max-width: 100%;
    min-width: 100%;
}
.newEventInput {
    width: 50%;
}
#newEventDescSubmitWrapper {
    flex: 1 1 auto;
    display: flex;
}
#newEventSubmitWrapper {
    display:flex;
    justify-content:center;
    align-items:flex-end;
}
#newEventSubmit {
    margin-bottom: 10vmin;
}
#selection {
    position: absolute;
    width: 40vw;
    height: 100vh;
    top: 0;
    left: -40vw;
    transition: left 1s;
    background-color: white;
    transition-timing-function: ease-out;
    z-index: 10;
}
#selectedSearchTags, #searchTagSuggestion {
    position: absolute;
}
#search-wrapper {
    position: absolute;
    width: 100vw;
    z-index: 1;
}
#search {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: baseline;
}
.submitButton {
    border: none;
}
#search-wrapper input {
    width: 20vw;
}
html, body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow: clip;
    touch-action: manipulation;
    font-family: 'Noto Serif Vithkuqi', serif;
    font-family: 'Open Sans', sans-serif;
}