/*
Extra small devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap because it is "mobile first"
*/

label {
  font-size: 2rem;
}

select {
  font-size: 2rem !important;
}

input[type="search"] {
  font-size: 2rem !important;
}

input[type="checkbox"] {
  width: 2.3rem !important;
  height: 2.3rem !important;
}

.notesFromAlex {
  font-size: 2rem !important;
}

#gameNameSelected {
  margin-top: 20px;
  width: 100%;
  font-size: 2rem !important;
}

#goToBggButton {
  margin-top: 10px;
  margin-bottom: 20px;
}

#advancedSearchHeader {
  text-align: center;
  color: red;
}

#goToBggButton {
  font-size: 30px;
  width: 100%;
  background-color: green !important;
  border-color: #024488 !important;
  color: #fff !important;
}

#storeButton {
  font-size: 30px;
  width: 100%;
  background-color: green !important;
  border-color: #024488 !important;
  color: #fff !important;
}

.jumbotron>h1 {
  font-size: 4.5rem;
  text-align: center;
  color: darkgreen;
  font-weight: 900;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: green;
}

.jumbotron>p {
  font-size: 3rem;
  text-align: center;
  color: darkgreen;
  font-weight: 900;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: green;
}

.jumbotron {
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  background-position: center center;
  margin-bottom: auto;
}

.img {
  opacity: 0.5;
}

#btnSubmitSearch {
  font-size:30px;
  width:100%;
  background-color: green !important;
  border-color: #024488 !important;
  color: #fff !important;
}

#maxWeightSelected, #minWeightSelected {
  float: right;
  font-size: 2rem;
}

.slideContainer {
  width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 25px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: green; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: green; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

/* iPads (portrait) ———– */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
  h2 {font-size:6rem;color:darkkhaki;} /*1rem = 16px*/
}

/* iPads (landscape) ———– */

@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
  h2 {font-size:6rem;color:yellow;} /*1rem = 16px*/
}

/* Desktops and laptops ———– */
@media only screen
and (min-width : 1224px) {
  h2 {font-size:6rem;color:chocolate;} /*1rem = 16px*/
}

/* Large screens ———– */
@media only screen
and (min-width : 1824px) {
  h2 {font-size:6rem;color:red;} /*1rem = 16px*/
}

#gameSearchBox {
  font-size: 2rem !important;
}