body {
  font-size: 0.875rem;
  line-height: 1.4;
  font-family: Verdana, sans-serif;
  color: #fff;
  background: #9933ff url(/tpl/pattern_3.svg) no-repeat center left;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (max-width: 767px) {
  body {
    background: #9933ff;
  }
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

header {
  padding: 15px 10px;
  width: 100%;
  height: 90px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  header {
    padding: 10px 0;
  }
}

a {
    color: #fff;
    text-decoration: underline;
}

a:hover {
    color: #dedede;
    text-decoration: underline;
}

footer {
  color: #fff;
  width: 100%;
  padding: 0 10px;
  height: 35px;
  clear: both;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  font-size: 13px;
  font-size: 0.7rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  footer {
    height: auto;
    padding: 0 0 20px 0;
    position: static;
  }
}
footer ul {
  float: right;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  footer ul {
    float: none;
    margin-top: 10px;
  }
}
footer ul li {
  float: left;
  margin-right: 15px;
}
footer ul li:after {
  content: "|";
  font-weight: 300;
  position: relative;
  left: 9px;
  color: #fff;
}
footer ul li:last-child {
  margin-right: 0;
}
footer ul li:last-child:after {
  content: "";
}
footer ul li a {
  color: #fff;
}
footer ul li a:hover {
  color: #fff;
}

.wrapper_centering {
  width: 100%;
  margin: -90px auto 0;
  height: 100%;
  text-align: left;
  clear: both;
  display: table;
  position: relative;
  z-index: 1;
  background: -moz-linear-gradient(165deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  background: -webkit-linear-gradient(165deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  background: linear-gradient(165deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.container_centering {
  vertical-align: middle;
  display: table-cell;
  padding: 90px 0;
}
@media (max-width: 991px) {
  .container_centering {
    padding: 110px 0 45px 0;
    display: block;
  }
}

.main_title_1 {
  color: #fff;
}
@media (max-width: 767px) {
  .main_title_1 {
    text-align: center;
  }
}
.main_title_1 small {
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  display: block;
  font-weight: 500;
  letter-spacing: 3px;
}
@media (max-width: 991px) {
  .main_title_1 img {
    display: none;
  }
}
.main_title_1 h1, .main_title_1 h3 {
  color: #fff;
  margin: 0 0 25px 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 62px;
  font-size: 3.875rem;
}
@media (max-width: 767px) {
  .main_title_1 h1, .main_title_1 h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.main_title_1 p {
  font-size: 18px;
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  .main_title_1 p {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.main_title_1 p em {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  line-height: 1;
  color: green;
}

label {
  font-weight: 400;
  margin-bottom: 3px;
  color: #ccc;
}

/* Wizard Buttons*/
button.backward,
button.forward,
button.submit {
  border: none;
  color: #111;
  text-decoration: none;
  transition: background .5s ease;
  -moz-transition: background .5s ease;
  -webkit-transition: background .5s ease;
  -o-transition: background .5s ease;
  display: inline-block;
  cursor: pointer;
  outline: none;
  text-align: center;
  background: #ffcc00;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  line-height: 1;
  padding: 12px 30px;
}


select {
  width: 100%;
  outline: 0;
  font-size: 16px;
  line-height: 2;
  padding: .375rem .75rem;
  border-radius: 3px;
  border: 1px solid none;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.5s ease-in-out;
  margin-bottom: 0;
}

/* Checkbox style */
.container_check {
  display: block;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  padding-left: 30px;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.container_check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.container_check input:checked ~ .checkmark {
  background-color: #fff;
}
.container_check .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: none;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.container_check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #111;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.container_check input:checked ~ .checkmark:after {
  display: block;
}
.form-group.terms {
  padding: 12px 0 0 0;
}
.form-group.terms label {
  line-height: 1.1;
  font-size: 0.9em;
}

.gastrolist li {
    clear: both;
    margin-top: 10px;
}

#admin_tables, #admin_guests {
    background: #fff; 
    padding: 10px; 
    color: #000
}    

#admin_tables a, #admin_guests a {
    text-decoration: none;
}    

#admin_tables h3, #admin_guests h3 {
    margin-bottom: -0.5rem;
}    

.tablerow {
    min-height: 45px;
    border-bottom: dashed 1px #dedede;
}

.review_block p {
  margin-bottom: 20px;
  font-weight: 500;
}
.review_block ul {
  padding: 0;
  margin: 0 0 20px 0;
}
.review_block ul li {
  display: block;
  margin: 0 0 5px 0;
}
.review_block ul li.last-child {
  margin-right: 0;
}

.checkbox_radio_container {
  margin-bottom: 10px;
  position: relative;
}
.checkbox_radio_container input[type="checkbox"] {
  display: none;
}
.checkbox_radio_container input[type="radio"] {
  display: none;
}
.checkbox_radio_container label {
  cursor: pointer;
}

.checkbox_radio_container .radio,
.checkbox_radio_container .checkbox {
  display: inline-block;
  width: 25px;
  height: 25px;
  padding: 5px;
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  z-index: 9;
  left: 8px;
  top: 7px;
}
.checkbox_radio_container .radio:after,
.checkbox_radio_container .checkbox:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 3px;
  background: #4ccd6a;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  transform: translate(4px, 11px) rotate(-45deg);
  transform-origin: left;
  transition: all 150ms;
  transition-delay: 0ms;
}
.checkbox_radio_container .radio:before,
.checkbox_radio_container .checkbox:before {
  content: "";
  position: absolute;
  width: 0px;
  height: 3px;
  background: #4ccd6a;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  transform: translate(1px, 6px) rotate(45deg);
  transform-origin: left;
  transition: all 150ms;
  transition-delay: 150ms;
}
.checkbox_radio_container .checkbox {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
.checkbox_radio_container .wrapper {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
  /* OPACITY AND COLOR OF THE RADIO AND CHECKBOX*/
  position: relative;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  padding: 10px 10px 10px 44px;
  font-weight: 500;
  cursor: pointer;
}

.checkbox_radio_container input[type="checkbox"]:checked ~ .checkbox:before, .checkbox_radio_container input[type="checkbox"]:checked ~ .radio:before, .checkbox_radio_container input[type="radio"]:checked ~ .checkbox:before, .checkbox_radio_container input[type="radio"]:checked ~ .radio:before {
  width: 7px;
  transition-delay: 0ms;
}
.checkbox_radio_container input[type="checkbox"]:checked ~ .checkbox:after, .checkbox_radio_container input[type="checkbox"]:checked ~ .radio:after, .checkbox_radio_container input[type="radio"]:checked ~ .checkbox:after, .checkbox_radio_container input[type="radio"]:checked ~ .radio:after {
  width: 13px;
  transition-delay: 150ms;
}
.checkbox_radio_container input[type="checkbox"]:checked ~ .wrapper, .checkbox_radio_container input[type="radio"]:checked ~ .wrapper {
  transition: all 450ms;
  background-color: #4ccd6a;
  color: #fff;
}

/* Checkbox style */
.container_check {
  display: block;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  padding-left: 30px;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.container_check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.container_check input:checked ~ .checkmark {
  background-color: #fff;
}
.container_check .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: none;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.container_check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #111;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.container_check input:checked ~ .checkmark:after {
  display: block;
}

textarea {
  width: 100%;
  outline: 0;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 3px;
  border: 1px solid none;
  background-color: rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  transition: all 0.5s ease-in-out;
  margin-bottom: 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  border-color: none;
  padding: 8px 16px;  
}
