/* BODY ----------------------------------------------------------------------*/

body {
  margin: 0px;
  padding: 0px;
  height: 100vh;
  width: 100vh;
  overflow: hidden;
  background-image: url("/images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
  color: white;  
}

/* ---------------- */

.btn {
  font-size: 18px;
  font-weight: bold;
  padding: 10px 35px;
  margin: 0px 10px;
  background-color: rgb(94, 94, 94);
  color: white;
  border: 0px;
  cursor: pointer;
  text-decoration: none;
  border-radius: 5px;
  text-transform: uppercase;
}
.btn:hover,
.btn--active {
  color: rgba(94, 94, 94, 0.8);
  background-color: white;
}

.page {
  width: 100%;  
  max-width: 1000px;
  padding: 150px 30px;
  display: inline-block;
  text-align: left;
}

/* ---------------- */

.container {
  padding: 50px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  color: black;
}

/* ---------------- */

.tabs {
  border-bottom: 1px solid rgb(94, 94, 94);;
  padding-bottom: 9px;
  text-align: center;
  margin-bottom: 40px;
}

.tab {
  font-size: 18px;
  font-weight: bold;
  padding: 10px 35px;
  margin: 0px 10px;
  background-color: rgb(94, 94, 94);
  color: white;
  border: 0px;
  cursor: pointer;
  text-decoration: none;
  border-radius: 5px 5px 0px 0px;
  text-transform: uppercase;
}
.tab:hover,
.tab--active {
  color: rgba(94, 94, 94, 0.8);
  background-color: white;
}

/* ---------------- */

#app {
  top: 0px;
  left: 0px;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* FORMS --------------------------------------------------------------------*/

form {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 30px 0;
}

form label {
  display: inline-block;
  width: 30%;
}

input {
  display: inline-block;
  width: 150px;
  border: 1px solid black;
  border-radius: 5px;
  background-color: white;
  font-size: 18px;
  padding: 10px 20px;
  width: 40%;
}

select {
  display: inline-block;
  width: 40%;
  border: 1px solid black;
  border-radius: 5px;
  background-color: white;
  font-size: 18px;
  padding: 10px 20px;
  cursor: pointer;
}
select:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
select:focus {
  outline: 2px solid rgba(0, 0, 0, 0.35);
  outline-offset: 2px;
}

button {
  font-size: 18px;
  font-weight: bold;
  padding: 10px 35px;
  background-color: rgb(94, 94, 94);
  color: white;
  border: 0px;
  cursor: pointer;
  text-decoration: none;
  border-radius: 5px;
  text-transform: uppercase;
}
button:hover {
  color: rgba(94, 94, 94, 0.8);
  background-color: white;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
button:disabled:hover {
  color: white;
  background-color: rgb(94, 94, 94);
}

.form-field {
  padding: 15px;
}
.form-actions {
  margin-top: 30px;
  padding-left: 30%;
  border-top: 1px solid black;
  padding-top: 30px;
}
.form-success,
.form-error {
  text-align: center;
  padding: 80px;
  color: rgb(60, 120, 0);
}
.form-error {
  color: red;
}

/* LAYOUT --------------------------------------------------------------------*/

#app,
.lay-center {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  overflow: hidden;
  position: absolute;
}

.lay-top,
.lay-bottom {
  position: absolute;
  z-index: 1000;
  left: 0px;
  right: 0px;
  padding: 20px 30px 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(12, 12, 46, 1);
  line-height: 40px;
}
.lay-top {
  top: 0px;
}
.lay-bottom {
  bottom: 0px;
}
.lay-center {
  overflow: auto;
  position: relative;
  height: 100%;
}

h1, h2 {
  font-weight: bolder;
  text-align: center;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
  color: white;  
}
h1 {
  font-size: 60px;
}
h2 {
  font-size: 50px;
}
h5 {
  font-size: 20px;
  font-weight: normal;
  color: black;
  display: block;
  text-align: center;
}

/* PAGE-HOME -----------------------------------------------------------------*/

.page-home {
  text-align: center;
}
.page-home-desc {
  max-width: 800px;
  display: inline-block;
  padding-bottom: 25px;
}
.page-home-actions {
  padding: 20px;
}
.page-home-actions .btn {
  font-size: 25px;
  padding: 20px 60px;
}

/* PAGE-PUBLISH -----------------------------------------------------------------*/

#publish {
  text-align: center;
}

#publish .publish-grid {
  text-align: center;
}

#publish .slot {
  width: 210px;
  display: inline-block;
  overflow: hidden;
  padding: 20px;
  margin: 20px;
  background-color: white;
}

#publish .slot-img {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #ddd;
}

#publish .slot-img.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

#publish .slot-x {
  font-size: 44px;
  color: #bbb;
}

#publish .slot-input {
  display: none;
}

#publish .slot-btn {
  width: 100%;
  margin-top: 12px;
}

#publish .slot-error {
  margin-top: 10px;
  color: red;
}

/* ---------------------------------------------------------------------------*/

#review-users .row {
  border-top: 1px solid #bbb;
  padding: 15px;
}
#review-users .row-right {
  float: right;
  color: red;
}
#review-users .row-right .published {
  color: green;
}

/* ---------------------------------------------------------------------------*/

#review-photos {
  text-align: center;
}

#review-photos .photo {
  width: 210px;
  display: inline-block;
  overflow: hidden;
  padding: 20px;
  margin: 20px;
  background-color: white;
}
#review-photos .photo-img {
  width: 100%;
  height: 250px;            /* choose height you want */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#review-photos .photo select {
  width: 100%;  
}
