/* = main container for gift page
------------------------------------------------------------- */
.gba-outer-container{
  width:100%;
}

form#SendGiftForm {
    width: 100%;
    position: relative;
}

#SendGiftForm input, #SendGiftForm textarea, #SendGiftForm select {
    border: 1px solid rgba(234,234,234,.9); 
    width: 100%;
    margin: 5px 0;
    display: inline-block;
    box-sizing: border-box;
}

#SendGiftForm input::placeholder, #SendGiftForm textarea::placeholder {
  color: grey;
}

/* = Tab
------------------------------------------------------------- */
ul#tabs {
  list-style-type: none;
  margin: 0;
  margin-top: 1%;  
  padding: 0;
  text-align: center; }
ul#tabs li {
    display: inline-block;
    border-bottom: 1px solid rgba(234,234,234,.9);
    padding: 3px 10px;
    margin:0px 1px;
    cursor: pointer; }
    ul#tabs li:hover {
      background-color: #ff6600;color:white; }
    ul#tabs li.active {
      background-color: #ff6600;color:white; }

ul#tab 
{
  list-style-type: none;
  margin: 0;
  padding: 0 0 10px 0; 
}
ul#tab li {
display: none;
padding: 0px;
border: 1px solid rgba(234,234,234,.9);

}

ul#tab li.active
{
  display: block; 
}
ul#tab li h2 {
  font-weight: 400;
  margin-bottom: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(234,234,234,.9);
}  

ul.products li {
    width: 200px;
    display: inline-block;
    vertical-align: top;
    padding: 5px;
}

ul.products li p, ul.products li h5{
	text-align: center;
}

/* = Auto Complete Style
------------------------------------------------------------- */
.autocomplete-suggestions {
    text-align: left; cursor: default; border: 1px solid #ccc; border-top: 0; background: #fff; box-shadow: -1px 1px 3px rgba(0,0,0,.1);

    /* core styles should not be changed */
    position: absolute; display: none; z-index: 9999; max-height: 254px; overflow: hidden; overflow-y: auto; box-sizing: border-box;
}
.autocomplete-suggestion { position: relative; padding: 0.1em 0.1em; line-height: 23px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 1.02em; color: #333; }
.autocomplete-suggestion b { font-weight: normal; color: #1f8dd6; }
.autocomplete-suggestion.selected { background: #f0f0f0; }
.autocomplete-suggestion span {
    vertical-align: baseline;
    padding: 2px;
}

/* = gift row and column style
------------------------------------------------------------- */
.giftbox-container .giftbox{
  width: 148px;
  float: left; 
  margin: 2px;
  padding: 5px;
  border: 1px solid #ccc;
  text-align: center;
  display: none;
    -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

/*Fade all the DIV when user hovers on any div*/
.giftbox-container:hover .giftbox{
  zoom: 1;
  filter: alpha(opacity=45);
  opacity: 0.45;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

/*Fade out the particular DIV when user hover on that DIV*/
.giftbox-container .giftbox:hover, .giftbox-container .giftbox-heighlight {
  box-shadow: 2px 2px 10px #ff6600;
  border-color:#ff6600;
  background: #ff6600;
  color: #fff;
  cursor: pointer;
  
  /*Opacity*/
  zoom: 1;
  filter: alpha(opacity=100);
  opacity: 1;
}

.giftbox-container .giftbox p{
	margin: 5px 0;
}

#tab .active .giftbox {
	display: block; 
}

/* received gift container */

.received-giftbox-container .giftbox{
  width: 148px;
  float: left; 
  margin: 2px;
  padding: 5px;
  border: 1px solid #ccc;
  text-align: center;
      -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.received-giftbox-container .giftbox:hover {
	  box-shadow: 2px 2px 10px #ff6600;
  border-color:#ff6600;
    -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.received-giftbox-container p.giftbox-msg {
    font-size: 12px;
}

.received-giftbox-container p.giftbox-msg span{
	font-style: italic;
	font-weight: 600;
}

.received-giftbox-container p.giftbox-date{
	font-size: 12px;
	color: grey;
}
button#bga-send-now {
background: #ff6600;
  border:none;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
}

button#bga-send-now:hover {
	background: #fff;
  border:1px solid #ff6600;
  color: #ff6600;
}