/*

Global OAC Bootstrap Styles
Author: Cecilia Gray
Creation Date: 12.07.2015

Revision History:
1.0 Initial Build (12.07.2015)


Table of Contents
-------

1.0 General Body Styles
  1.1 - Mobile first
  1.2 - Responsive

2.0 Chat Button

3.0 Bummer page styles
  3.1 - Mobile first
  3.2 - Responsive styles


/*----------------------------------------------*/
/*  1.0 General Body Styles (affects all pages)
/*----------------------------------------------*/

/* Standard OAC road bg image */
.img-wrapper {
  background: url(//www.siriusxm.com/wo/i/servicecontinuity/img/oac-bg.jpg) no-repeat center 0px fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body.ie8 .img-wrapper {
  padding-bottom:80px;
}

.main-headline h1 {
  font-size: 48px;
  letter-spacing: -2px;
  font-weight:100;
  margin-top: 65px;
  margin-bottom: 0;
  color: #000;
  text-align: left;
}


/*----------------------------------------------*/
/*  2.0 Chat button
/*----------------------------------------------*/


#chat-tab { 
  position: fixed;
  top: 290px;
  right: -52px;
  z-index: 9997;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg); 
  -moz-transform: rotate(-90deg); 
  -o-transform: rotate(-90deg); 
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

#chat-tab a { 
    background: url(/sxm/bootstrap/img/chat-icon.png) no-repeat 11px 6px #005480;
    background-size: 26px;
    padding: 7px 16px 7px 44px;
    color: #fff;
    font-family: Roboto, Arial, sans-serif;
    font-size: 16px;
    text-decoration: none;
    font-weight: 700;
}

#chat-tab a:hover { 
  background-color: #0072ba; 
}


@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { 
  #chat-tab {
    right:-40px;
  }


  #chat-tab a {
    padding-bottom:20px;
  }

}





/*----------------------------------------------*/
/*  3.0 Bummer Page
/*----------------------------------------------*/

/* 3.1 Bummer Mobile First */

#bummer {
  font-family: Roboto, Arial, sans-serif;
  padding: 60px 15px;
}

#bummer-ico {
  width: 60px;
  margin: 0 auto;
  display: block;
}

#bummer h1 {
  font-weight:100;
  margin-top:30px;
  text-align: center;
  font-size:29px;
}

#bummer h4 {
  font-weight:300;
  text-align: center;
  margin-top:25px;
  font-size: 16px;
  line-height: 22px;
}

#bummer a {
  font-weight:700;
}


/* 3.2 Bummer Responsive*/

@media (min-width:768px){
  #bummer {
    padding: 150px 0px 210px;
  }

  #bummer-ico {
    width: 110px;
  }

  #bummer h1 {
    margin-top:60px;
    font-size:48px;
    letter-spacing: -1.5px;

  }

  #bummer h4 {
    margin-top: 30px;
    margin: 30px 65px 0;
    font-size:18px;
  }

}
