
/* THIS IS JUST FOR THE MOBILE VISITOR PAGES */

/* DEFINING CUSTOM VARIABLES */
:root{
    --primary-color: ;
    --secondary-color: ;
    --background-color: ;
    --drk-grey: #696969;
    --lt-grey: #A9A9A9;
    --very-lt-grey: #f5f5f5;
  
    --black: hsl(204,0,20);
    --white: hsl(204,0,98);
  }

html {
    box-sizing: border-box;
    font-size: 16px;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul, textarea, input, button, figure {
    margin: 0;
    padding: 0;
    letter-spacing: normal;
    font-family: 'Roboto', sans-serif;
    color: var(--black);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    letter-spacing: 1px;
}

p {
    font-weight: 300;
}

ol, ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}
  
  /*********************************/
  /*        General styling        */
  /*********************************/
  .qrcode-background,
  .event-background {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--background-color);
        margin-left: auto;
    margin-right: auto;

    min-height: 100vh;
  }

  .event-background {
        max-width: 500px;
  }
  
  .qrcode-background {
      height
  }


  .centre-text {
    text-align: center;
  }
  
  .right-text {
    text-align: right;
  }

  .left-text {
    text-align: left;
  }

  .wrapper {
      position: relative;
      flex-direction: column;
      width: 100%;
      min-height: 80vh;

      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
  }

  .innerWrapper {
      position: relative;
      padding: 25px;
      width: 100%;
      min-height: 100%;
  }

  .pageTitleText {
    text-align: center;
  }

/*********************************/
/*        HEADER / FOOTER        */
/*********************************/

.visitor-header {
    position: sticky;
    text-align: center;
    padding: 10px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.visitor-header a {
    color: var(--secondary-color);
}

.p-account-name {
    padding-top: 20px;
    font-size: 2rem;
}

.p-event-name {
    font-size: 3rem;
}
.p-account-name,
.v-account-name {
    text-transform: uppercase;
}

.p-welcome,
.p-event-location {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-top: 5px;
}

.p-event-contact {
    font-size: 2rem;
    text-transform: uppercase;
}

.v-welcome,
.v-event-location {
    font-size: 0.6rem;
    text-transform: uppercase;
    margin-top: 5px;
}

/*********************************/
/*           FORM STUFF          */
/*********************************/

.visitor-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v-message {
    font-size: 0.8rem;
    font-weight: 300;
    max-width: 250px;
    margin: 1rem auto;
    text-align: center;
}

.v-enter-email {
    width: 100%;
    text-align: center;
    padding: 0px 5%;
}

.visitor-dropdown,
.v-confirm-details input,
.v-enter-email input{
    border-width: 0px;
    outline-style: none;
    box-shadow: 3px 3px 8px grey;
}

.visitor-dropdown,
.v-enter-email input {
    width: 100%;
    height: 2rem;
    margin-top: 5px;
    font-size: 1.2rem;
    text-align: center;
    }

.v-confirm-details select,
.v-confirm-details input {
    width: 100%;
    padding-left: 5px;
    height: 1.2rem;
    font-size: 0.8rem;
    text-align: left;
}

.visitor-dropdown {
    margin-bottom: 100px;
}

.visitor-body button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 100%;
    border-style: none;
    padding: 5px 0px;
    margin-bottom: 20px;
    letter-spacing: 0.07rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.v-questions,
.v-confirm-details,
.v-confirm2-details {
    width: 100%;
    max-width: 350px;
    padding: 0px 15px;;
}

.v-confirm2-details label,
.v-confirm-details label {
    margin-top: 25px;
    font-size: 0.6rem;
}

.v-inner-wrapper button,
.v-questions button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    margin-top: 25px;
}

.v-confirm-details button,
.v-confirm2-details button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    margin-top: 15px;
}

.remember-me-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v-confirm2-details input {
    width: 100%;
    font-size: 1rem;
    padding-left: 5px;
    margin-bottom: 0.5rem;
}

.v-confirm-details input[type=checkbox] {
    width: 2rem;
    height: 2rem;
    }

.question-item {
    position: relative;
}

.v-questions input[type=checkbox] {
    margin-left: 7%;
    width: 1.4rem;
    height: 1.4rem;
}

.v-questions label {
    display: inline-block;
    vertical-align: text-top;
    padding-left: 5px;
    font-size: 0.9rem;
}

.radio-btn-container {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
    margin-bottom: 20px;
}
.radio-btn-container input {
    margin-right: 4px;
    width: 20px;
    height: 20px;
}

.radio-btns {
    display: flex;
}

.v-date,
.v-time {
    text-align: center;
}

.v-date {
    margin-top: 20px;
    margin-bottom: 5px;
}
.v-time {
    font-size: 2rem;
}

.v-inner-wrapper {
    width: 100%;
    padding: 20px;
}

.v-inner-wrapper p{
    font-size: 0.9rem;
}

.visitor-footer {
    font-size: 0.8rem;
    text-align: center;
    background-color: var(--primary-color);
    color:  var(--secondary-color);
    padding: 0.8rem 0rem;
}

.visitor-footer a {
    color:  var(--secondary-color);
}

.checkmark,
.fail-mark {
    margin-left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 6rem;
    width: 10rem;

    border-radius: 50%;
    margin-bottom: 1rem;
}
.checkmark {
    color: green;
    border: 1rem solid green;
}

.fail-mark {
    color: red;
    border: 1rem solid red;
}

.sad-face {
    margin-left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 15rem;
    width: 10rem;
    color: gray;
}

/*********************************/
/*          POLICY MODAL         */
/*********************************/
.modal,
.modal-remember-me {
    --gap: 15px;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 100vh;

    align-items: center;
    justify-content: center;

    padding: var(--gap);
    background: rgba(0, 0, 0, 0.5);
}

.modal__inner {
    background: #fff;
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.modal__top {
    display: flex;
    align-items: center;
    background-color: #eee;
}

.modal__close {
    display: flex;
}

.modal__top button {
    width: auto;
    padding: 0.6rem;
}

.modal__title {
    flex-grow: 1;
    padding: 0 var(--gap);
}

.modal__content p {
    padding: 0.5rem 0px;
}

.modal__content ol li {
    margin-left: 20px;
    padding-bottom: 5px;
    list-style-type: upper-greek;
}


.modal__content ul li {
    margin-left: 20px;
    padding-bottom: 5px;
    list-style-type: square;
}

.modal__bottom form {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

.modal__bottom input {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-style: none;
    padding: 5px 10px;
    letter-spacing: 0.07rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.modal__button_container {
    display: flex;
    justify-content: space-around;
}
.modal__button_container button {
    width: auto;
    padding: 5px 10px;
}

/*********************************/
/*          POSTER STUFF         */
/*********************************/

#qrcode {
    margin-top: 25px;
    margin-bottom: 10px;
}

.preview-buttons {
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preview-buttons a {
    margin: 10px 0px;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.preview-buttons button,
.preview-buttons a {
    display: block;
    width: 225px;
    font-size: 1rem;
    font-weight: 700;
    padding: 5px 0px;
    color: var(--primary-color); 
    background-color: var(--secondary-color);
    border-radius: 5px;
    transition: 0.25s;
}

.preview-buttons button:hover,
.preview-buttons a:hover {
    color: var(--secondary-color); 
    background-color: var(--primary-color);
}
    
.preview-buttons button {
    margin: 8px 0px;
    border: 2px solid var(--primary-color);
}

@media print {
    .preview-buttons {
        display: none !important;
    }
}