@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Avenir Next', sans-serif;
  list-style: none;
  text-decoration: none;
  font-size: 16px;
}
.box {
  display: flex;
  flex-flow: column;
  height: 100%;
}
header {
  width: 100%;
  height: 165px;
  display: block;
  background-color: white;
  z-index: 1000;
  flex: 0 1 auto;
}
.announcement-bar {
  width: 100%;
  height: 46px;
  display: table;
  margin: 0 auto;
  text-align: center;
  background-color: #F5AE88;
}
.announcement-bar a {
  height: 100%;
  display: table-cell;
  color: white;
  vertical-align: middle;
}
.inner-header {
  background-color: white;
  width: 100%;
  height: 72px;
  display: table;
}
.inner-header .logo-container {
  width: 53%;
  padding-top: 30px;
  display: table-cell;
  text-align: right;
}
.inner-header .logo-container img {
  width: 100px;
  height: auto;    
}
.inner-header .icons {
  width: 100%;
  height: 72px;
  display: flex;
  justify-content: flex-end;
  padding-right: 20px;

}
.inner-header .icons .toggle
{
  position: relative;
  width: 60px;
  height: 60px;
  background: url(data/icon-menu.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
  display: none;
}
.toggle.active {
  background: url(data/icon-close.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  cursor: pointer;
}
.navigation-container {
  width: 100%;
  height: 47px;
  display: flex;
  justify-content: center;
}
.navigation {
  float: right;
  height: 47px;
}
.navigation a{
  height: 100%;
  display: table;
  float: left;
  padding: 0 20px;
}
.navigation a li {
  display: table-cell;
  vertical-align: middle;
  color: #3A3A3A;
  font-size: 15px;
}
.navigation a li:hover {
  text-decoration: underline;
}
.page-content
{
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  max-height:940px;
  padding-top: 165px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
  z-index: 2;
  flex: 1 1 auto;
}
.page-content img
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.form-container {
  max-width: 700px;
  width: 100%;
  background: rgba(255, 250, 250, 0.5);
  padding: 10px 50px;
  margin: 100px 0;
  border-radius: 5px;
  z-index: 100;
}
.form-container .title {
  position: relative;
  margin: 15px 0;
  font-size: 2em;
  font-weight: 600;
  color: #3A3A3A;
}
.form-container .title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 30px;
  background: linear-gradient(135deg,#784B22,#EC6512);
}
form .details {
  margin-bottom: 5px;
  color: #3A3A3A;
}
.form-container form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.input-box i {
  position: absolute;
}
.input-box {
  width: 100%;
  margin-bottom: 20px;
}
.icon {
  padding: 10px;
  min-width: 40px;
  text-align: center;
}
.input-field {
  height: 45px;
  width: 100%;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  background: rgba(255,255,255,0.5);
  border: 1px solid gray;
  font-size: 16px;
  padding-left: 30px;
}
form .panel-options {
  width: 100%;
}
form .panel-options .options-title {
  font-size: 20px;
  font-weight: 500;
  color: #3A3A3A;
}
form .panel-options .category {
  display: flex;
  flex-wrap:wrap;
  width: 80%;
  margin: 14px 0;
  justify-content: space-between;
}
form .container {
  cursor: pointer;
  color: #3A3A3A;
}
form .panel-configuration {
  width: 100%;
  margin: 10px 0;
}
.panel-configuration label {
  font-size: 20px;
  color: #3A3A3A;
}
.panel-configuration select {
  width: 100%;
  height: 45px;
  background: rgba(255,255,255,0.5);
  margin: 15px 0;
  padding: 0 12px;
  color: #3A3A3A;
  border: 1px solid gray;
  cursor: pointer;
  border-radius: 5px;
}
.switch-title {
  width: 100%;
  margin: 12px 0;
  font-size: 20px;
  color: #3A3A3A;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 12px 0;
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider {
  background-color: #EC6512;
}
input:focus + .slider {
  box-shadow: 0 0 1px #EC6512;
}
input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
form .button {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 0 20px 0;
}
.button input[type=submit]{
  display: inline-block;
  font-size: 1em;
  background: #EC6512;
  padding: 10px 30px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 10px;
  color: white;
  letter-spacing: 2px;
  transition: 0.2s;
  border-radius: 5px;
  border-style:none;
}
.button input[type=submit]:hover {
  letter-spacing: 6px;
}

@media (max-width: 750px)
{
  .inner-header .logo-container {
    text-align:left;
    padding: 0 20px;
    vertical-align: middle;
  }
  .inner-header .icons .toggle {
    display: flex;
  }
  .navigation-container {
    display: none;
  }
  header {
    height: 118px;
  }
}
@media(max-width:974px) and (min-width:751px) {
  header {
    height: 220px;
  }
}