@charset "utf-8";

/* CSS Document */
* {
    box-sizing: border-box;
}

body {
    font-family: Segoe UI, sans-serif;
    margin: auto;
}

#container {
    position: relative;
    width: 414px;
    margin: auto;
    height: 736px;
    border-style: solid;
    border-radius: 30px;
}

a:link {
    text-decoration: none;
    font-weight: bold;
}

a:visited {
    text-decoration: none;
    font-weight: bold;
}

input {
    text-align: center;
}

button {
    cursor: pointer;
}

h3 {
    color: red;
}

h4 {
    cursor: pointer;
    color: dodgerblue;
}

.topiccontent {
    display: none;
}

.topicsource {
    padding: 10px 10px 10px 10px;
    background-color: whitesmoke;
    overflow-x: auto;
}

.registertopic {
    display: none;
    padding: 5px 5px 5px 5px;
}

.registertotal {
    cursor: pointer;
    border: solid thin gray;
    background-color: lightblue;
    padding: 2px;
}

#overlaycontent {
    display: none;
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: auto;
    z-index: 500;
    border-style: solid;
    border-radius: 10px;
    background-color: whitesmoke;
    padding: 45px 10px 10px 10px;
}

#closecontent {
    position: absolute;
    top: 2%;
    right: 5%;
}

#bfrtitle {
    width: 100%;
    background-color: lightgray;
    padding: 5px;
    text-align: center;
    border-bottom: solid thin gray;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

#mainview {
    position: relative;
    width: 100%;
    height: auto;
}

#bfrimage {
    position: absolute;
    top: 5%;
    width: 100%;
    height: auto;
}

#busimage {
    width: 100%;
    height: auto;
}

#ButtonNewsletter {
    position: absolute;
    top: 36px;
    left: 20px;
    background-color: yellow;
}

#ButtonItinerary {
    position: absolute;
    top: 36px;
    right: 20px;
    background-color: lightskyblue;
}

#ButtonRegister {
    position: absolute;
    top: 108px;
    left: 20px;
    background-color: lightgreen;
}

#ButtonLodging {
    position: absolute;
    top: 108px;
    right: 20px;
    background-color: white;
}

#ButtonPayment {
    position: absolute;
    top: 180px;
    left: 20px;
    background-color: red;
}

#ButtonBrochure {
    position: absolute;
    top: 180px;
    right: 20px;
    background-color: orange;
}

#ButtonContact {
    position: absolute;
    bottom: 100px;
    right: 20px;
    background-color: lightgray;
}

#bfrlogo {
    position: absolute;
    bottom: 100px;
    left: 20px;
}

#PassCode {
    color: red;
}

.buttonNext {
    float: right;
    font-weight: bold;
    color: blue;
}

.ButtonGUI {
    width: auto;
    height: auto;
    text-align: center;
    border-style: solid;
    border-radius: 20px;
    font-size: 1em;
    z-index: 100;
    padding: 5px;
    background-color: aqua;
    cursor: pointer;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    #container {
        position: relative;
        width: 100%;
        height: 100vh;
        border-style: none;
    }
}

/* Other devices (desktops, laptops, portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    #container {
        position: relative;
        width: 414px;
        margin: auto;
        height: 736px;
        border-style: solid;
    }
}

