* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
}

html {
    background-color: #000;
}

body {
    /* sticky footer */
    display: flex;
    flex-direction: column;
}

html,
body {
    color: #555;
    font-family: 'Raleway', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    /*overflow-x: hidden; */
    padding: env(safe-area-inset);
    /* sticky footer */
    height: 100%;
}

body .status-available {color:#2FC332;}
body .status-not-available {color:#D60202;}

.row {
    max-width: 1140px;
    margin: 0 auto;
}

body:before {
    background-color: #000;
    background: url(../img/bg3.jpg) no-repeat center center;
    background-position: center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: fixed;
    z-index: -10;
    content: "";
    display: block;
}

header {
    /* background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.7)), to(rgba(0,0,0,0.7))), url(../img/bg3.jpg); */
    /* background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../img/bg3.jpg); */
    
    /* sticky footer */
    flex: 1 0 auto;
}

footer {
    /* sticky footer */
    flex-shrink: 0;
}

.floater-text-box {
    position: relative;
    height: calc(100vh * 0.8);
    width: 800px;
    top: 10%;
    left: 50%;
    -webkit-transform: translate(-40%, 0);
    transform: translate(-40%, 0);
}

.floater-quote {
    position: relative;
    color: #fff;
    font-size: 90%;
    font-weight: 600;
    font-style: italic;
    word-spacing: 4px;
    letter-spacing: 1px;
    text-align: center;
    top: -15%;
}


h1, h2, h3, h4 {
    font-weight: 300;
    text-transform: uppercase;   
    color: #fff;
    text-shadow: 2px 2px 5px black;
}

h1 {
    margin-top: 0px;
    margin-bottom: 20px;
    font-size: 200%;
    word-spacing: 4px;
    letter-spacing: 1px;
}

h2 {
    font-size: 180%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
    letter-spacing: 1px;
}

/* Line after the header */
h2:after {
    display: block;
    height: 2px;
    background-color: #2ecc71;
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;
}

h3 {
    font-size: 110%;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 10px;
}

p1 {
    color: #fff;
}

p2 {
    color: #fff;
    display: inline-block;
    width: 100%;
    margin: 4px;
    text-align: left;
}



p1right {
    color: #fff;
    display: block;
    text-align: right;
}


a:link,
a:visited {
    text-decoration: none;
    color: rgb(29, 207, 136);
    font-weight: 400;
}

a:hover,
a:active {
    color: #fff;
}

a.user-booked:link,
a.user-booked:visited {
    display: inline-block;
    color: #5596ff;
    font-size: 100%;
    text-decoration: none;
    border-radius: 15px;
    background-color: rgba(0,0,0,0.5);
    padding: 5px;
    margin: 10px;
}

a.user-booked:hover,
a.user-booked:active {
    color: #adcdff;
}

a.user-not-booked:link,
a.user-not-booked:visited {
    display: inline-block;
    color: rgb(29, 207, 136);
    font-size: 100%;
    text-decoration: none;
    border-radius: 15px;
    background-color: rgba(0,0,0,0.5);
    padding: 5px;
    margin: 10px;
}

a.user-not-booked:hover,
a.user-not-booked:active {
    color: #adcdff;
}

.pwa-banner {
    display: none;
    position: fixed;
    bottom: 10px;
    left: 50%;
    width: 90%;
    color: #000;
    font-weight: 600;
    text-align: center;
    background-color: #fff;
    padding: 5px;
    border: 2px solid #38b0f7;
    border-radius: 10px;
    z-index: 9999;
    transform: translate(-50%, 0%);
}

.pwa-banner-arrow {
    position: absolute;
    display: block;
    left: 50%;
    transform: translate(-50%, 0%);
    color: #fff;
    font-size: 140%;
    bottom: -23px;
}

/* Add to calendar icon + auto-hide  */
.add-to-calendar {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 20%;
    left: 20%;
    border: 2px solid #72d8f6;
    border-radius: 20px;
    box-shadow: 0 2px 11px 8px #000;
}

#hideMe {
    -moz-animation: cssAnimation 0s ease-in 5s forwards;
    /* Firefox */
    -webkit-animation: cssAnimation 0s ease-in 5s forwards;
    /* Safari and Chrome */
    -o-animation: cssAnimation 0s ease-in 5s forwards;
    /* Opera */
    animation: cssAnimation 0s ease-in 5s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes cssAnimation {
    to {
        width:0;
        height:0;
        box-shadow: none;
        border: none;
        overflow:hidden;
    }
}
@-webkit-keyframes cssAnimation {
    to {
        width:0;
        height:0;
        box-shadow: none;
        border: none;
        visibility:hidden;
    }
}




.long-copy {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
    text-align: justify;
    color: #fff;
    background-color: #00000085;
    padding: 10px;
    border-radius: 10px;
    font-weight: bolder;
}

.box {
    padding: 1%;
}

.box p {
    line-height: 145%;
}

ion-icon {
    color: #2ecc71;
    font-size: 350%;
    --ionicon-stroke-width: 16px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.btn:link,
.btn:visited {
    display: inline-block;
    padding: 5px 10px 5px 10px;
    font-weight: 600;
    text-decoration: none;
    text-shadow: 1px 1px 1px #000;
    border-radius: 200px;
    -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
    margin-right: 15px;
}

.btn-green:link,
.btn-green:visited {
    background-color: #1e874b;
    border: 1px solid #1e874b;
    color: #fff;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid #2ecc71;
    color: #7bed9f;
}

.btn:hover,
.btn:active {
    background-color: #2ecc71;
}

.btn-green:hover,
.btn-green:active {
    border: 1px solid #2ecc71;
}

.btn-ghost:hover,
.btn-ghost:active {
    border: 1px solid #2ecc71;
    color: #fff;
}


.logo {
    height: 150px;
    width: auto;
    float: left;
    margin-top: 20px;
}

.logo-black { 
    display: none; 
    height: 50px;
    width: auto;
    float: left;
    margin-top: 5px;
    margin-bottom: 5px;
}

.chris-photo {
    position: relative;
    height: 150px;
    width: auto;
    float: left;
    margin-right: 20px;
}

.profile-pic-container {
    position: relative; 
    text-align: center; 
    width: 150px;
}

.profile-pic {
    position: relative;
    width: 150px;
    height: auto;
    border-radius: 20px;
    border: #ffffff3b solid 1px;
    /* top: 200px; */
    /* float: left; */
    margin-top: 20px;
}

.profile-pic-delete:link,
.profile-pic-delete:visited {
    color: red;
    font-size: 80%;
    text-decoration: none;
    position: relative;
    display: inline-block;
    top: 8px;
    right: 10px;
    margin-top: 20px;
    position: absolute;
}

.profile-pic-delete:hover,
.profile-pic-delete:active {
    color: #ff6b81;
}

#output_image {
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid #2ecc71;
    margin-top: 10px;
}

section {
    padding: 80px 0px;
    text-align: justify;

}

.welcome-text {
    position: relative;
    color: #9ae8bb;
    font-size: 80%;
    width: 150px;
    padding: 3px;
    text-align: center;
    background-color: rgba(255,255,255,0.2);
    border-radius: 10px;
    /* top: 160px; */
    /* float: left; */
}

/* ================ MAIN NAVIGATION ================ */

.main-nav {
    float: right;
    list-style: none;
    margin-top: 25px;
}

.main-nav li {
    display: inline-block;
    margin-left: 20px;
    max-height: 40px;
}

.main-nav li a:link,
.main-nav li a:visited {
    padding: 8px 0px;
    color: #fff;
    background-color: transparent;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom 0.2s;
    transition: border-bottom 0.2s;
}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid #2ecc71;
}

/* admin menu has different color */
.main-nav .admin-menu a:link,
.main-nav .admin-menu a:visited {
    color: #3ddaff;
}

.menu-badge {
    display: table-cell;
    position: relative;
    top: -40px;
    font-size: 90%;
    font-family: monospace;
    color: #fff;
    background-color: red;
    border-radius: 10px;
    min-width: 20px;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    line-height: 20px;
    padding: 0px;
    left: 40px;
}

/* ================ MOBILE NAVIGATION ================ */


.mobile-nav-icon {
    margin-top: 1px;
    cursor: pointer;
    display: none;
    position: absolute;
    right: 20px;
    z-index: 9999;
}

.mobile-nav-icon ion-icon {
    font-size: 200%;
    color: #00ff00;
}


/* ================ STICKY NAVIGATION ================ */

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-box-shadow: 0 2px 2px #555;
    box-shadow: 0 2px 2px #555;
    z-index: 9999;
}

.sticky .main-nav { margin-top: 15px; }

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
    padding: 16px 0px;
    color: #555;
}

.sticky .logo { display: none; }
.sticky .logo-black { display: block; }


/* ================ LOGIN SCREEN ================ */


.login-box {
    position: absolute;
    text-align: center;
    width: 400px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.login-box input {
    margin: 5px;

}

.login-box .btn {
    margin-top: 20px;
}

.login-box a:link,
.login-box a:visited {
    color: #2ecc71;
    font-size: 80%;
    text-decoration: none;
    border-radius: 15px;
    background-color: rgba(0,0,0,0.3);
    padding: 5px;
}

.login-box a:hover,
.login-box a:active {
    color: #9ae8bb;
}

.register-link a {
    display: inline-block;
    padding: 10px;
    margin-top: 10px;
}


/* ================ PROFILE FORM ================ */

.container {
    position: relative; 
    text-align: center; 
    width: 100%;
}

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

.widget {
    position: relative;
    display: inline-table;
    text-align: center;
    width: 90%;
    height: 200px;
    max-width: 400px;
    font-weight: bold;
    color: black;
    
    /* height: calc(100vh - 260px); */
    /* top: 50%; */
    /* margin-top: 40px; */
    /* -webkit-transform: translate(-50%, 0%); */
    /* transform: translate(-50%, 0%); */
    /* overflow-y: scroll; */
    /* overflow-x: hidden; */
    /* box-shadow: 0px 0px 14px 5px rgb(65 69 88 / 66%), 0 3px 6px 0 rgba(0,0,0,.07); */
    box-shadow: inset 0px 0px 14px 5px rgb(99 173 244 / 49%), 0px 0px 8px 1px rgb(59 131 192 / 91%);
    border-radius: 20px;
    padding: 20px;
    /* background-color: rgb(0 0 0 / 35%); */
    background-image: linear-gradient(45deg, #00c1ff, #416de3);
    /* border: #ffffff3b solid 1px; */
    margin-bottom: 10px;
    margin-top: 10px;
}

.widget-narrow {
    height: 50px;
}

.widget-color-red {
    background-image: linear-gradient(45deg, #fcfcfc, #e3417f);
}

.list-1 {
    list-style-type: none;
    width: 100%;
    height: 200px;
    overflow-y: scroll;
    margin-bottom: 10px;
  }

.list-item-1 {
    padding: 5px;
    overflow: auto;
    background-color: rgb(208 208 208 / 58%);
    border-radius: 10px;
    margin: 5px;
    color: #fff;
    text-align: left;
    font-family: 'Courier New', monospace;
    font-weight: bold;
  }

  .list-2 {
    list-style-type: none;
    width: 100%;
    height: 300px;
    overflow-y: scroll;
    margin-bottom: 10px;
  }

.list-item-2 {
    padding: 5px;
    overflow: auto;
    background-color: rgb(208 208 208 / 58%);
    border-radius: 10px;
    margin: 5px;
    color: #fff;
    text-align: left;
    position: relative;
    display: inline-flex;
    font-weight: 600;
  }

  .list-item-3 {
    padding: 5px;
    overflow: auto;
    border-radius: 10px;
    margin: 5px;
    color: #fff;
    text-align: left;
    font-weight: bold;
  }

.default-box {
    position: relative;
    text-align: left;
    width: 90%;
    /* height: calc(100vh - 260px); */
    /* top: 50%; */
    left: 50px;
    /* margin-top: 40px; */
    /* -webkit-transform: translate(-50%, 0%); */
    /* transform: translate(-50%, 0%); */
    overflow-y: scroll;
    overflow-x: hidden;
    /* box-shadow: 0px 0px 14px 5px rgb(65 69 88 / 66%), 0 3px 6px 0 rgba(0,0,0,.07); */
    border-radius: 10px;
    padding: 20px;
    background-color: rgb(0 0 0 / 35%);
    border: #ffffff3b solid 1px;
    margin-bottom: 20px;
}

.default-box label {
    color: #fff;
    /* border-radius: 15px; */
    font-size: 100%;
    font-weight: 400;
    margin: 20px 0 5px 0;
    display: inline-block;
}

.default-box .row {
    
}

.default-box p {
    font-size: 80%;
    color: #fff;
    font-style: normal;
    margin-left: 10px;
    margin-top: 5px;
}

input[type=radio] {
    margin: 0px 10px 0px 10px;
}

input[type=text],
input[type=username],
input[type=email],
input[type=password],
input[type=date],
input[type=tel],
input[type=file],
input[type=datetime-local],
input[type=select],
input[type=number],
textarea {
    color: #000;
    width: 100%;
    height: 35px;
    padding: 7px;
    border-radius: 10px;
    border: 1px solid #86cca436;
    background-color: rgb(255 255 255 / 84%);
    font-size: 100%;
    padding: 0px 20px 0px 20px;
    font-weight: 400;
    border-radius: 8px;
}

input[type=button],
input[type=submit] {
    display: inline-block;
    background-color: #0ea74e;
    color: #fff;
    border: 1px solid #2ecc71;
    padding: 5px 10px 5px 10px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 20px;
    -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
    /* margin: 10px 10px 10px 0px; */
}

input[type=button]:hover,
input[type=button]:active,
input[type=submit]:hover,
input[type=submit]:active {
    background-color: #2ecc71;
    border: 1px solid #fff;
}



#destructive-btn {
    background-color: rgba(79, 244, 64, 0.214);
    border: 1px solid #2f3542;
}

#destructive-btn:hover,
#destructive-btn:active {
    background: #ff9fae;
}

.default-box-selector {
    color: #000;
    width: 100%;
    height: 35px;
    padding: 7px;
    border-radius: 10px;
    border: 1px solid #86cca436;
    background-color: rgb(255 255 255 / 84%);
    font-size: 100%;
    padding: 0px 20px 0px 20px;
    font-weight: 400;
    border-radius: 8px;
}

.admin-panel {
    margin-bottom: 20px;
    background-color: rgb(0 191 248 / 44%);
}

/* ================ SHOP ================ */

.shop-table {
    color: #fff;
    font-size: 80%;
    font-weight: 300;
    border: none;
    border-collapse: collapse;
    table-layout: fixed;
}

.shop-table td {
    padding-top: 10px;
    padding-right: 5px;
    width: 14.28%;
}

.shop-table thead {
    font-weight: 600;
}

.shop input[type=button],
.shop input[type=submit] {
    display: inline-block;
    background-color: #0ea74e;
    width: 80%;
    margin-top: 5px;
    color: #fff;
	text-shadow: 2px 2px 5px black;
    font-size: 80%;
    border: 1px solid #2ecc71;
    padding: 2px 4px 2px 4px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
    /* margin: 10px 10px 10px 0px; */
}

.shop input[type=button]:hover,
.shop input[type=button]:active {
    background-color: #2ecc71;
    border: 1px solid #fff;
}

#critical-button {
    background-color: #ff7878d1;
    border: 1px solid #ffffff73;
}

#critical-button:hover,
#critical-button:active {
    background-color: #fc0000;
}

.shop textarea {
    height: 100px;
}

#shop-user-td {
    width: 60%;
}

.user-view thead {
    margin-top: 20px;
}

.critical-button input[type=button] {
    background-color: #ff7878d1;
    border: 1px solid #ffffff73;
}

.critical-button input[type=button]:hover,
.critical-button input[type=button]:active {
    background-color: #fc0000;
}


/* ================ ADMIN PAGE modifiers ================ */

.booking-form input[type=number] {
    max-width: 80px;
}

.input-number-payment input[type=number] {
    max-width: 100px;
    width: 100px;
}
/* ================ FOOTER ================ */

footer {
    background-color: #2f3542;
    padding: 40px;
    margin-top: 20px;
}

.footer-nav {
    list-style: none;
    float: left;
}

.social-links {
    list-style: none;
    float: right;
}

.footer-nav li,
.social-links li {
    display: inline-block;
    margin-right: 20px;
}

.footer-nav li:last-child,
.social-links li:last-child {
    margin-right: 0;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.social-links li a:link,
.social-links li a:visited {
    text-decoration: none;
    border: 0;
    color: #59657e;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.footer-nav li a:hover,
.footer-nav li a:active {
    color: #2ecc71;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

footer p {
    color: #59657e;
    text-align: center;
    font-size: 80%;
    margin-top: 30px;
}

.social-links li a ion-icon {
    font-size: 80%;
    margin: 0px;
}


/* ================ BOOKING ================ */


.booking-box {
    position: absolute;
    text-align: center;
    width: 600px;
    height: 80%;
    top: 50%;
    left: 50%;
    margin-top: 40px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: scroll;
}

.booking-box h1 {
    margin-bottom: 40px;
}

.booking-box input {
    margin: 5px;

}

.booking-box .btn {
    margin-top: 20px;
}

.booking-box a {
    display: inline-block;
    margin: 10px;
}

.booking-box a:link,
.booking-box a:visited {
    color: #2ecc71;
    font-size: 100%;
    text-decoration: none;
    border-radius: 15px;
    background-color: rgba(0,0,0,0.3);
    padding: 5px;
}

.booking-box a:hover,
.booking-box a:active {
    color: #9ae8bb;
}



.booking-box .color-guide {
    margin-bottom: 30px;
}

ticketinfo {
    color: white;
    padding: 20px;
}

ticketwarning {
    color: #ff6b81;
    padding: 20px;
}

/* ================ BOOKING rank box ================ */

.rank-box {
    position: relative;
    color: #9ae8bb;
    font-size: 80%;
    width: 150px;
    
    padding: 3px;
    text-align: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    top: 20px;
    float: left;
}

.mobile-rank-box {
    display: none;
}

.rank-header {
    font-style: bold;
}

footnote1 {
    color: #747d8c;
    display: inline-block;
    font-size: 80%;
    width: 100;
    margin: 4px;
    font-style: italic;
    text-align: left;
}

.rank-box-table {
    width: 100%;
    margin-top: 5px;
    color: #fff;
}

.rank-box-table .left-col {
    text-align: left;
    padding: 4px;
}

.rank-box-table .right-col {
    text-align: right;
    padding: 4px;
}

/* ================ BOOKING ADMIN modifiers ================ */

.booking-form {
    border: 1px solid;
    color: green;
    border-radius: 10px;
    margin: 10px;
    background-color: rgba(255,255,255,0.05);
}

.booking-box input {
    width: 70%;
}


.booking-box input[type=datetime-local] {
    width: 100%;
}

.booking-box input[type=number] {
    display: inline;
    width: 170px;
}

s1 {
    display: inline-block;
    margin: 0px 0px 20px 0px;
    height: 40px;
    text-align: right;
    color: #fff;
    word-spacing: 4px;
    letter-spacing: 1px;
}

.booking-box input[type=submit],
.booking-box input[type=button] {
    display:inline;
    width: auto;
    padding: 3px 10px;
    font-weight: 200;
    text-decoration: none;
    border-radius: 200px;
    -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
    margin-right: 0px;
    margin-left: 0px;
}

/* ================ MYWAY modifiers ================ */

.myway-box {
    position: absolute;
    text-align: center;
    width: 600px;
    height: 80%;
    top: 50%;
    left: 50%;
    margin-top: 40px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: scroll;
}

.myway-box h1 {
    margin-bottom: 40px;
}

.myway-box input {
    margin: 5px;

}

.myway-box input[type=button] {
    display:inline;
    width: 70%;
    max-width: 150px;
    padding: 0px 0px;
    font-weight: 300;
    color: white;
    text-decoration: none;
    border-radius: 200px;
    -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
    margin-right: 0px;
    margin-left: 0px;
}

.myway-box input[type=button]:hover,
.myway-box input[type=button]:active {
    background-color: #7ee2a8;
}

.myway-box input[type=text] {
    width: 35%;
}

.myway-box input[type=date] {
    width: 70%;
}

.myway-box .btn {
    margin-top: 20px;
}

.myway-box a {
    display: inline-block;
}

.myway-box a:link,
.myway-box a:visited {
    color: #2ecc71;
    font-size: 100%;
    text-decoration: none;
    border-radius: 15px;
    background-color: rgba(0,0,0,0.3);
    padding: 5px;
}

.myway-box a:hover,
.myway-box a:active {
    color: #9ae8bb;
}

.myway-box .color-guide {
    margin-bottom: 30px;
}

.myway-form {
    border: 1px solid;
    background-color: rgba(255,255,255,0.05);
    color: green;
    border-radius: 10px;
    margin: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.myway-form * {
    padding-bottom: 10px;
}

.formPopup {
    display: none;
    position: fixed;
    left: 50%;
    top: 20%;
    transform: translate(-50%, 20%);
    border: 5px solid #7bed9f;
    border-radius: 15px;
    z-index: 9;
    width: 30%;
    background-color: #fff;    
}

.formPopup input {
    color: #000;
}

.formPopup * {
    padding: 5px;
    margin: 5px;
}

.formPopup button {
    width: 100%;
}


/* ================ PREMIUM TEXT ================ */

.premiumtext-box {
    position: absolute;
    text-align: left;
    color: #fff;
    width: 600px;
    height: 80%;
    top: 50%;
    left: 50%;
    margin-top: 40px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: scroll;
}

.premiumtext-box h1 {
    font-size: 130%;
    font-style: bold;
    margin-bottom: 40px;
}

.premiumtext-box a:link,
.premiumtext-box a:visited {
    color: #2ecc71;
    font-size: 100%;
    text-decoration: none;
    border-radius: 15px;
    background-color: rgba(0,0,0,0.3);
    padding: 5px;
}

.premiumtext-box a:hover,
.premiumtext-box a:active {
    color: #9ae8bb;
}

.premiumtext-box ul {
    list-style-position: inside;
    list-style-type: disc;
}

.premiumtext-box p {
    margin: 15px;
}


/* ================ NOTIFICATIONS ================ */

    /* response codes:
    
       1 = FAIL (red)
       2 = SUCCESS (green)
       3 = NNEUTRAL (purple)

    */

.notify-success{  
  position:absolute;
  top:0px;
  width:100%;
  height:0;  
  box-sizing:border-box;
  margin-left: 0px;
  padding-left: 0px;
  color:white;  
  font-weight: 400;
  text-align:center;
  background: rgba(33, 140, 12, 0.9);
  text-shadow: 2px 2px 2px #000;
  overflow:hidden;
  box-sizing:border-box;
  transition:height 1s;
  z-index: 2000;
}

.notify-fail{  
  position:absolute;
  top:0px;
  width:100%;
  height:0;  
  box-sizing:border-box;
  margin-left: 0px;
  padding-left: 0px;
  color:white;  
  font-weight: 400;
  text-align:center;
  background:rgba(175, 27, 27, 0.9);
  text-shadow: 2px 2px 2px #000;
  overflow:hidden;
  box-sizing:border-box;
  transition:height 1s;
  z-index: 2000;
}

.notify-neutral{  
  position:absolute;
  top:0px;
  width:100%;
  height:0;  
  box-sizing:border-box;
  margin-left: 0px;
  padding-left: 0px;
  color:white;  
  text-align:center;
  font-weight: 400;
  background:rgba(139, 58, 209, 0.9);
  text-shadow: 2px 2px 2px #000;
  overflow:hidden;
  box-sizing:border-box;
  transition:height 1s;
  z-index: 2000;
}

notitext {
  position: absolute;
  display:inherit;
  width: 100%;
  height: auto;
  margin-top: 10px;
  z-index: 1999;
}

#notifyType:before{
  display:block;
  margin-top:15px;   
}

.active{  
  height:50px;
  transition:height 1s;
}