.fbdeal {
  width: 300px;
  position: fixed;
  backface-visibility: hidden;
  z-index: 9999;
  box-shadow: 0 0 60px rgba(0,0,0,.5);
  background: #FFFFFF;
}

.fbdeal--bottom-left,
.fbdeal--bottom-right {
  border-radius: 15px 15px 0 0;
}

.fbdeal--bottom-left {
  bottom: 0;
  left:  2.5%;
}

.fbdeal--bottom-right {
  bottom: 0;
  right:  2.5%;
}

.fbdeal--top-left,
.fbdeal--top-right {
  border-radius: 0 0 15px 15px;
}

.fbdeal--top-left {
  top:  0;
  left: 2.5%;
}

.fbdeal--top-right {
  top:   0;
  right: 2.5%;
}

.fbdeal__main,
.fbdeal__header,
.fbdeal__title,
.fbdeal__winbtn {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.fbdeal__main {
  position: relative;
  padding: 20px 20px 0;
}

.fbdeal__main--open {
  padding-top: 10px;
}

.fbdeal__header {
  margin: 0 0 20px;
  cursor: pointer;
}

.fbdeal__header--open {
  margin-bottom: 10px;
}

.fbdeal__title {
  margin: 0;
  padding: 0 30px 0 20px;
  font-size: 24px;
  text-transform: none;
  text-align: center;
  color: black;
}

.fbdeal__title--open {
  font-size: 20px;
  font-weight: normal;
}

.fbdeal__btns {
  padding: 20px 0;
  text-align: center;
}

.fbdeal__link {
  font-size: 18px;
  font-weight: bold;
  /*color: #000000;*/
  text-decoration: none;
  background: #cd3e74;
  color: white;
  display: block;
  border-radius: 40px;
  padding: 10px;
}
.fbdeal__link:focus,
.fbdeal__link:hover,
.fbdeal__link:active {
  color: white;
}

.fbdeal__desc {
  font-size: 16px;
  line-height:1.3;
  text-align:center;
  /*color: #000000;*/
  color: #858585;
  margin-bottom: 15px;
}



/*.fbdeal__close {
  cursor: pointer;
  font-size: 14px;
  line-height: 0.5;
  padding: 5px;
  position: absolute;
  right: -5px;
  top: 15px;
}

.fbdeal__close:before, .fbdeal__close:after {
  content: '';
  background: black;
  width: 2em;
  height: .1em;
  position: relative;
  cursor: pointer;
  display: inline-block;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  left: -1em;
}

.fbdeal__close:before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 1em;
 }

*/

.fbdeal__winbtn {
  position: absolute;
  right: 10px;
  top: 20px;
  cursor:pointer;
  height: 15px;
  width: 30px;
  padding: 8px 0 0 10px;
  background:none;
}

.fbdeal__winbtn--open {
  top: 10px;
}

.fbdeal__winbtn:before,
.fbdeal__winbtn:after {
  content:'';
  position:absolute;
  background-color:black;
  height:4px;
  width:18px;
  transition: transform 0.3s, background-color 0.3s;
  -webkit-transition:transform 0.3s, background-color 0.3s;
}

/* \/ Down Arrows
 *
 * Below are the defaults for positions 'bottom-left' and bottom-right'
 * If the position is located on the top then need to reverse their
 * positions
 *
 */
.fbdeal__winbtn--open:after,
.fbdeal__winbtn--close:after      { margin-left:-13px }
.fbdeal__winbtn--open:before,
.fbdeal__winbtn--close:before     { margin-left: -3px }

/* /\ Up Arrows */
.fbdeal__winbtn--top-left:after,
.fbdeal__winbtn--top-right:after  { margin-left: -3px  }
.fbdeal__winbtn--top-left:before,
.fbdeal__winbtn--top-right:before { margin-left: -13px }


.fbdeal__winbtn--open:before  { transform:rotate( 45deg); -webkit-transform:rotate( 45deg) }
.fbdeal__winbtn--open:after   { transform:rotate(-45deg); -webkit-transform:rotate(-45deg) }

.fbdeal__winbtn--close:before { transform:rotate(-45deg); -webkit-transform:rotate(-45deg) }
.fbdeal__winbtn--close:after  { transform:rotate( 45deg); -webkit-transform:rotate( 45deg) }

