
html, body { 
  min-height: 100%; 
}

body {
    background-image: url('../MyAccount_Images/AF_fioptics_landingpage_bgimage-update.png');
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
}

header {
    text-align: center;
    margin-top: 8%;
}



.div-top{
  position:relative;
  margin: auto;
  text-align: center;
  width: 28%;
  padding: 1px;
}

.div-top img {
max-width: 80%;
/*padding-bottom: 15px;*/
}

.div-top hr{
margin-bottom: 35px;

}

.div-top h3 {
  color: #fff;
}
.div-top h4 {
  color: #fff;
  padding-bottom: 10px;
}
.div-top p{
  color: #fff;
  font-size: 14px;
  padding-bottom: 5px;
}

.div-appicon img {
  max-width: 60%;
  }

.div-bottom{
  text-align: center;
  bottom: 0px;
}
.product__btn .btn:hover, .product__btn .btn:focus {
    background: transparent;
    border-color: #4294F7;
    color: white !important;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .div-top{
    width: 55%;
  }
  
  .div-top h3 {
    color: #fff;
    font-size: 1.8em;
  }

  .div-top p{
    color: #fff;
    padding-bottom: 10px;
  }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {


}


/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {


}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1366px) {
  header {
    margin-top: 5%;
}


}

.btn-custom {
    text-transform: uppercase;
    color: #fff;
    background-color: #3498DB;
    border: 0;
    padding: 14px 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 0;
    transition: all 0.5s;
    margin-top: 20px;
}
/*https://alijafarian.com/tutorial/css-transparent-drop-down-menu/
https://www.sliderrevolution.com/resources/css-select-styles/
http://www.pmob.co.uk/temp/dropdown-round-transparent2.htm
https://codepen.io/NeatDesigns/pen/JyGGoL
https://tutorialdeep.com/knowhow/style-select-dropdown-css/
*/
.box {
  position:absolute;
  border: 2px solid #4287f5;
  border-radius: 10px;
  left: 50%;
  transform: translate(-50%, -50%);

}

.box select {
 /* background: rgba(16, 119, 224, 0.2);*/
 background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  color: white;
  padding: 5px;
  width: 250px;
  border: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  -webkit-appearance: button;
  appearance: none;
  outline: none;
  text-align: center;
    text-align-last: center;
    -moz-text-align-last: center;
}

.box::before {
  content: "\f107";
  font-family: FontAwesome;
  position: absolute;
  border-top-right-radius:  5px;
  border-bottom-right-radius: 5px;
  top: 0;
  right: 0;
  width: 12%;
  height: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 35px;
  color: rgba(255, 255, 255, 1);
  background-color: rgba(66, 135, 245, 0.8);
  pointer-events: none;
}

.box:hover::before {
  /*color: rgba(255, 255, 255, 0.6);*/
  color:yellow;
  background-color: rgba(66, 135, 245, 1);
}

.box select option {
  padding: 30px;
  background-color: rgba(66, 135, 245, 0.9);
}

