/*
 * Globals
 */

/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
  background-color: #fff;
  border: .05rem solid #fff;
}


/*
 * Base structure
 */

html,
body {
  height: 100%;
  /*background-color: #FCB026;*/
   background-image: url("../images/background.jpeg");
   /* Background image is centered vertically and horizontally at all times */
background-position: center center;

/* Background image doesn't tile */
background-repeat: no-repeat;

/* Background image is fixed in the viewport so that it doesn't move when
the content's height is greater than the image's height */
background-attachment: fixed;

/* This is what makes the background image rescale based
on the container's size */
background-size: cover;
}

body {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  /*box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);*/
}

.cover-container {
  max-width: 42em;
}


/*
 * Header
 */
.masthead {
  margin-bottom: 2rem;
}

.masthead-brand {
  margin-bottom: 0;
}

.nav-masthead .nav-link {
  padding: .25rem 0;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  background-color: transparent;
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}

@media (min-width: 48em) {
  .masthead-brand {
    float: left;
  }
  .nav-masthead {
    float: right;
  }
}


/*
 * Cover
 */
.cover {
  padding: 0 1.5rem;
}
.cover .btn-lg {
  padding: .75rem 1.25rem;
  font-weight: 700;
}


/*
 * Footer
 */
.mastfoot {
  color: rgba(255, 255, 255, .5);
}

.lead{
	font-weight:bold;
	font-size:1.05em;
}


.feedbackBlock{
	/*background-color:rgba(252,176,38,0.5);*/
	
	background-color:rgba(0,0,0,0.7);
	color:#FCB026;
	border-radius:10px;
	margin-top:15px;
	border:1px solid #FCB026;
}

.feedbackBlock1{
	background-color:rgba(252,176,38,0.4);
	color:#000000;
	border-radius:10px;
	margin-top:15px;
	border:1px solid #000000;
}

.starRate{
	cursor:pointer;
}

.box {
  /*position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);*/
}

.box select {
  background-color: #FCB026;
  color: #111111;
  padding: 5px;
  width: 250px;
  border: none;
  font-size: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  -webkit-appearance: button;
  appearance: button;
  outline: none;
}

.box::before {
  /*content: "\f13a";
  font-family: FontAwesome;
  position: absolute;*/
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  text-align: center;
  font-size: 28px;
  line-height: 45px;
  color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.box:hover::before {
  color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.2);
}

.box select option {
  padding: 30px;
	color: #FCB026;
  background-color: #111111;
	cursor:pointer;
}
.box select option:hover {
  padding: 30px;
	color: #111111;
  background-color: #FCB026;
}

.submitButton{
	margin-top:10px;
	background-color:#FCB026;
	border:1px solid #000000;
	color:#000000;
	border-radius:5px;
	font-weight:bold;
	cursor:pointer;
	padding:10px 20px;
	width:40%;
}
.submitButton:hover{
	background-color:#000000;
	border:1px solid #FCB026;
	color:#FCB026;
	border-radius:5px;
	font-weight:bold;
	cursor:pointer;
}