/* 
    Created on : November 2019
    Author     : RICHE Vincent
*/

@import url("common.css");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 0;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html,
body {
    position: relative;
    width: 100%;
    height: 100%;
    min-height:100%;
}

body {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    transform-origin: top left;
    background-color: var(--main1-color);

    -ms-overflow-style: none;
    scrollbar-width: none;
}

body:before {
    filter: blur(2px);
}

#navigation,
#menu {
    position: absolute;
    top: 2.5%;
    left: 1%;
    width: auto;
    height: auto;
}

#menu {
    right: 1%;
    left: auto;

    transition: opacity 0.5s ease-out;
    opacity: 0;
    pointer-events: none;
}

#navigation li,
#menu li {
    width: auto;
    height: auto;
    border-radius: 50%;
    margin: 30% 0 0 0;
    background-color: var(--main2-color);
}

#navigation li:first-child,
#menu li:first-child {
    margin: 0;
}

#navigation li a,
#menu li a {
    display: flex;
    align-items: center;
    width: 3vw;
    height: 3vw;
    margin: auto;
    font-size: 1.5vw;
    cursor: pointer;
    color: var(--main-text-color);
}

#menu li a:before {
    width: 100%;
    text-align: center;
}

#navigation li a img {
    display: block;
    width: 75%;
    height: 75%;
    margin: auto;
}

#location,
#city {
    display: inline-block;
    width: auto;
    text-align: center;
    font-size: 1.7vw;
    font-family: "Maxwell Regular";
    color: var(--main-text-color);
}

#location {
    margin: 0 0 0 40%;
}

#city {
    margin: 0 0 0 0.5%;
    font-style: italic;
    text-decoration: underline;
    color: var(--main1-color);
}

h1 {
    width: 100%;
    padding: 3% 0 0 0;
    text-align: center;
    text-transform: uppercase;
    font-size: 6vw;
    font-family: "Maxwell Regular";
    color: var(--main-text-color);
    text-shadow: 4px 4px var(--main-background-color);
}

h2,
i {
    width: 100%;
    margin: 2.5% 0 0 0;
    text-align: center;
    text-transform: uppercase;
    font-size: 3vw;
    font-family: "Maxwell Regular";
    color: var(--main-text-color);
    text-shadow: 4px 4px var(--main-background-color);
}

#title2 {
    display: none;
}

i {
    font-style: italic;
    text-decoration: underline;
}

.places {
    display: none;
    width: 30%;
    height: auto;
    margin: 2% auto 0 auto;
}

.places li {
    width: 100%;
    height: auto;
    margin: 2% 0;
    padding: 2% 0;
    border-top: 1px solid var(--main-text-color);
}

.places li:first-child {
    border: none;
}

.places li h3 {
    width: 100%;
    height: auto;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.8vw;
    font-family: "Maxwell Regular";
}

.places li p {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 1vw;
    font-style: italic;
    font-family: "Maxwell Regular";
}

.places li h3,
.places li p {
    -webkit-touch-callout: text;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

#loader {
    display: block;
    width: 100%;
}

.loader {
    display: block;
    position: relative;
    width: 150px;
    height: 150px;
    margin: 2.5% auto 0 auto;
}

.loader:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 50%;
    background-image: url("../images/ico.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin: calc(25% + 6%);
    animation: loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 6px;
    border: 6px solid var(--main-text-color);
    border-radius: 50%;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--main3rgba-color);
    transition: opacity 125ms;
    visibility: hidden;
    opacity: 0;
}

.popup {
    position: absolute;
    width: 50%;
    top: 18%;
    right: 25%;
    margin: 0;
    padding: 0.5%;
    background: var(--main2-color);
    border-radius: 5px;
    transition: opacity 250ms;
    overflow-y: hidden;
}

.popup h2 {
    width: 92.5%;
    margin: 5% 0 0 0;
    text-align: center;
    text-transform: uppercase;
    font-size: 3vw;
    font-family: "Maxwell Regular";
    color: var(--main-text-color);
    text-shadow: 4px 4px var(--main-background-color);
}

.popup .close {
    position: absolute;
    top: 1%;
    right: 1%;
    transition: all 200ms;
    font-size: 2.5vw;
    font-weight: bold;
    text-decoration: none;
    color: var(--main-text-color);
    cursor: pointer;
}

.popup .close:hover {
    color: var(--main1-color);
}

form {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1%;
    font-size: 0;
    background: var(--main3-color);
}

form label {
    display: block;
    width: 100%;
    margin: 1% 0;
    padding: 1%;
    font-size: 2.0vw;
    text-align: center;
    font-family: "Maxwell Regular";
    color: var(--main-text-color);
}

form input,
form select {
    display: inline-block;
    width: 100%;
    margin: 1% 0;
    padding: 1%;
    border: 0;
    outline: 0;
    font-size: 2.0vw;
    background: transparent;
    font-family: "Maxwell Regular";
    vertical-align: middle;
    color: var(--main-text-color);
}

form input {
    border-bottom: 0.5px dotted var(--main-text-color);
}

form input:disabled {
    background: var(--main4-color);
}

form select:disabled {
    background-color: var(--main4-color);
}

form input::placeholder {
    color: var(--main-text-color);
}

form select {
    text-transform: uppercase;
    border: 1px solid var(--main-text-color);
}

form #submitBarsClubs,
form #submitCity,
form #submitBarClubTheme {
    display: inline-block;
    width: 50%;
    margin: 1% 25% 0 25%;
    padding: 1%;
    border: 0;
    outline: 0;
    font-size: 1.7vw;
    background: transparent;
    text-transform: uppercase;
    font-family: "Maxwell Regular";
    vertical-align: middle;
    color: var(--main-text-color);
    border: 1px solid var(--main-text-color);
    cursor: pointer;
}

#popupFilter {
    display: block;
    width: 95%;
    margin: 0 auto 2% auto;
    padding: 2.5% 0;
    border: 0;
    outline: 0;
    font-size: 2.0vw;
    background: transparent;
    font-family: "Maxwell Regular";
    text-align: center;
    color: var(--main-text-color);
    border-bottom: 0.5px dotted var(--main-text-color);
}

#popupFilter input::placeholder {
    color: var(--main-text-color);
}

form #popupBarsList,
form #popupClubsList {
    display: block;
    width: 100%;
    padding: 2.5% 0;
}

form #popupBarsList > p,
form #popupClubsList > p {
    padding: 2.5% 0;
    font-size: 2.4vw;
    font-family: "Maxwell Regular";
    text-align: center;
    color: var(--main-text-color);
    border-bottom: 1px dashed var(--main-text-color);
}

form #popupClubsList {
    padding: 5% 0 25% 0;
}

form #popupBarsList li,
form #popupClubsList li {
    width: 100%;
    padding: 1% 0;
    border-bottom: 1px dotted var(--main-text-color);
}

form #popupBarsList li:last-child,
form #popupClubsList li:last-child {
    border: none;
}

form #popupBarsList li h3,
form #popupClubsList li h3 {
    font-size: 1.5vw;
    background: transparent;
    text-transform: uppercase;
    font-family: "Maxwell Regular";
    text-align: center;
    color: var(--main-text-color);
}

form #popupBarsList li p,
form #popupClubsList li p {
    font-size: 1.7vw;
    background: transparent;
    font-family: "Maxwell Regular";
    font-style: italic;
    text-align: center;
    color: var(--main-text-color);
}

form #popupBarsList li h3,
form #popupClubsList li h3,
form #popupBarsList li p,
form #popupClubsList li p {
    -webkit-touch-callout: text;
    /* iOS Safari */
    -webkit-user-select: text;
    /* Safari */
    -khtml-user-select: text;
    /* Konqueror HTML */
    -moz-user-select: text;
    /* Firefox */
    -ms-user-select: text;
    /* Internet Explorer/Edge */
    user-select: text;
    /* Non-prefixed version, currently supported by Chrome and Opera */
}

#footer {
    position: absolute;
    bottom: 0;
    margin: 0;
    padding: 1% 0 0.5% 0;
    width: 100%;
    height: auto;
}

#footer div {   
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer p,
#footer a {
    display: inline-block;
    color: var(--main3-color);
    text-align: center;
    font-size: 1.2vw;
    font-family: "Maxwell Regular";
}

#footer a {
    margin-left: 2.5px;
}