/*******Bootstrap Carousel default style starts here*******/

.carousel {
  position: relative;
}

/*.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}*/
.carousel-inner {
  position: relative;
  width: 1024px;
  overflow: hidden;
  height: 340px;
}

.carousel-inner>.item {
  position: relative;
  display: none;
  -webkit-transition: .6s ease-in-out left;
  -o-transition: .6s ease-in-out left;
  transition: .6s ease-in-out left;
}

.carousel-inner>.item>a>img,.carousel-inner>.item>img {
  line-height: 1;
}

@media all and (transform-3d),(-webkit-transform-3d) {
  .carousel-inner>.item {
    -webkit-transition: -webkit-transform .6s ease-in-out;
    -o-transition: -o-transform .6s ease-in-out;
    transition: transform .6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }

  .carousel-inner>.item.active.right,.carousel-inner>.item.next {
    left: 0;
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
  }

  .carousel-inner>.item.active.left,.carousel-inner>.item.prev {
    left: 0;
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
  }

  .carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right {
    left: 0;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev {
  display: block;
}

.carousel-inner>.active {
  left: 0;
}

.carousel-inner>.next,.carousel-inner>.prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner>.next {
  left: 100%;
}

.carousel-inner>.prev {
  left: -100%;
}

.carousel-inner>.next.left,.carousel-inner>.prev.right {
  left: 0;
}

.carousel-inner>.active.left {
  left: -100%;
}

.carousel-inner>.active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
  filter: alpha(opacity=50);
  opacity: .5;
}

.carousel-control.left {
  background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
  background-image: -o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
  background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));
  background-image: linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}

.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
  background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
  background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));
  background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}

.carousel-control:focus,.carousel-control:hover {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: .9;
}

.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}

.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev {
  left: 50%;
  margin-left: -10px;
}

.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next {
  right: 50%;
  margin-right: -10px;
}

.carousel-control .icon-next,.carousel-control .icon-prev {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}

.carousel-control .icon-prev:before {
  content: '\2039';
}

.carousel-control .icon-next:before {
  content: '\203a';
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000\9;
  background-color: rgba(0,0,0,0);
  border: 1px solid #fff;
  border-radius: 10px;
}

.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
}

.carousel-caption .btn {
  text-shadow: none;
}

.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev {
  margin-left: -15px;
}

.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next {
  margin-right: -15px;
}

.carousel-caption {
  right: 20%;
  left: 20%;
  padding-bottom: 30px;
}

.carousel-indicators {
  bottom: 20px;
}

/*.carousel {
  margin-top: 20px;
  width: 1024px;
  margin: 0 auto;
  height: 439px;
  position: relative;
  top: -88px;
}*/
.carousel {
  margin-top: 20px;
  width: 1024px;
  margin: 0 auto;
  height: 204px;
  position: relative;
  top: -86px;
}

.carousel-inner {
  position: relative;
  width: 1024px;
  overflow: hidden;
  height: 439px; 
}


  /*******Bootstrap Carousel default style ends here*******/

  /*******Carousel 1 style starts here*******/
span.pnk_sqxr_text {
    color: #eb539e;
}
span.pnk_sqxr_text.txt_bolded {
    font-weight: 900;
}
.item {
  text-align: center;
  height: 439px !important;
  width: 1024px;
}
/*.item.carousel_3 {
    width: 1076px;
}*/
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #eb539e;
  border: 0px;
  display: none;
}

.carousel-indicators li {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 1px 0px 0px 0px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000\9;
  background-color: white;
  border: 3px solid #eb539e;
  border-radius: 10px;
}

.carousel-caption {
  position: absolute;
  bottom: 185px;
  left: 275px;
  color: #fff;
  font-family: Arial;
  font-size: 12px;
}

/*.carousel-indicators {
  bottom: 20px;
  margin: 25px 0px 0px 315px;
  width: 300px;
  bottom: 17px;
}*/
.carousel-indicators {
  bottom: 20px;
  margin: 61px 0px 0px 297px;
  width: 300px;
  bottom: 3px;
  top: 341px;
}

.carousel-caption {
  position: static;
}

div.carousel {
  margin-top: 7px;
  margin-bottom: -80px;
}

/*#wrapper_container #content_wrapper .container .html-textarea {
  height: 360px;
}*/


  /*********************Carousel 1 starts here*********************/


/*.carousel_1 {
  background: url("/content/dam/website-services/us/291-seroquelxrv2-com/images/carousel_1_hand_art.png")no-repeat;
}
*/

/*.carousel1_header1 {
  margin: 0px 0px 0px 72px;
  font-size: 24px;
  font-family: dinBold;
  text-align: justify;
}
.carousel_1 {
  background: url("/content/dam/website-services/us/291-seroquelxrv2-com/images/carousel_1_hand_art_1.png")no-repeat;
}*/


.carousel_1 {
    background: url("/content/dam/website-services/us/291-seroquelxrv2-com/images/carousel_srx_1.PNG")no-repeat;
    background-size: 100%;
    background-position: 0px 0px;
}
.carousel1_header1 {
    margin: 6px 0px 0px 72px;
    font-size: 24px;
    font-family: "ConduitITCStd-Bold";
    text-align: justify;
    color: #000;
    width: 71%;
    line-height: 24px;
    text-shadow: none;
}

/*.carousel1_header2 {
  margin: 10px 0px 0px 72px;
  color: #eb539e;
  font-family: dinBold;
  font-weight: bold;
  text-shadow: none;
  font-size: 24px;
  text-align: justify;
}*/
.carousel1_header2 {
  /*margin: 10px 0px 0px 72px;
  color: #eb539e;
  font-family: dinBold;
  font-weight: bold;
  text-shadow: none;
  font-size: 22px;
  text-align: justify;*/
    margin: -11px 0px 0px 46px;
    color: #eb539e;
    font-family: "ConduitITCStd-Extrabold";
    font-weight: bolder;
    text-shadow: none;
    font-size: 105px;
    width: 74%;
    letter-spacing: -4px;
}
.carousel1_header2_sub {
    color: #eb539e;
    font-family: "ConduitITCStd-Regular";
    text-shadow: none;
    font-size: 60px;
    width: 96%;
    letter-spacing: -3px;
    margin-top: -34px;
    font-weight: 500;
}
.header-content {
    font-size: 20px;
    font-family: "ConduitITCStd-Regular";
    text-align: left;
    margin: 57px 0px 0px 123px;
    width: 76%;
    color: #000;
    text-shadow: none;
    padding: 0px 55px 0px 0px;
    clear: both;
}
.carousel3_header2 {
    margin: -16px 0px 0px 46px;
    color: #eb539e;
    font-family: "ConduitITCStd-Extrabold";
    font-weight: bolder;
    text-shadow: none;
    font-size: 105px;
    width: 74%;
    letter-spacing: -4px;
}
.header-content3_1 {
    font-size: 20px;
    font-family: "ConduitITCStd-Regular";
    text-align: left;
    margin: 57px 0px 0px 123px;
    width: 66%;
    color: #000;
    text-shadow: none;
    padding: 0px 55px 0px 0px;
    clear: both;
    font-weight: lighter;
}
.header-content1 {
    font-size: 24px;
    font-family: "ConduitITCStd-Regular";
    text-align: justify;
    margin: 9px 0px 0px 73px;
    padding: 0px 55px 0px 0px;
    line-height: 21px;
    width: 71%;
    color: #eb539e;
    text-shadow: none;
    letter-spacing: -1px;
    float: left;
    clear: both;
}
img.calender_image {
    float: left;
    margin-right: 11px;
}    
/*
.header-content {
  font-size: 17px;
  font-family: dinRegular;
  text-align: justify;
  margin: 9px 0px 0px 74px;
  padding: 0px 55px 0px 0px;
}
.item1 {
  width: 675px;
  margin: 35px 32px 0px 0px;
  float: right;
}

*/
.item1 {
 width: 689px;
 margin: 0px 32px 0px -50px;
}

/*.carousel_1_bipolar {
  margin: 15px 0px 0px 20px;
  display: inline-block;
  float: left;
  color: white;
  font-size: 24px;
  font-family: dinBold;

}*/
.carousel_1_bipolar {
  margin: 7px 0px 0px 85px;
  display: inline-block;
  float: left;
  color: white;
  font-size: 24px;
  font-family: dinBold;
}

.background-img {
  background-color: #eb539e;
  border: 7px solid white;
}

span.background-cr {
  color: white;
}
  /****************************Carousel 1 ends here****************************/

  /****************************Carousel 2 starts here****************************/


.carousel_2 {
  background: url("/content/dam/website-services/us/291-seroquelxrv2-com/images/SXR_CLOCK_BKGD.png")no-repeat;
}

/*.item2 {
  width: 500px;
  margin: 60px 80px 0px 0px;
}*/


.item2 {
	width: 500px;
    margin: 47px 146px 0px 0px;
    float: right;
}

.carousel2_header1 {
    font-size: 55px;
    color: #000;
    text-align: justify;
    text-shadow: none;
    font-weight: bold;
    line-height: 55px;
    font-family: "ConduitITCStd-Extrabold";
    letter-spacing: 1px;
    width: 89%;
}

.carousel2_header2 {
 	margin: 20px 0px 0px 0px;
    color: #000;
    font-family: "ConduitITCStd-Regular";
    font-weight: normal;
    text-align: justify;
    font-size: 27px;
    text-shadow: none;
    line-height: 33px;
    width: 544px;
}
.carousel12_button {
    background: rgb(255,82,162);
    margin: -51px 126px 0px 0px;
    float: right;
    width: 102Px;
    border-radius: 16px;
    color: rgb(254,255,255);
    text-decoration: none;
    font-size: 20px;
    padding: 13px;
    line-height: 20px;
    font-family: "ConduitITCStd-Regular";
    text-shadow: none;
}
.carousel22_button {
    background: rgb(255,82,162);
    margin: 18px -50px 0px 0px;
    float: right;
    width: 176px;
    border-radius: 16px;
    color: rgb(254,255,255);
    text-decoration: none;
    font-size: 20px;
    padding: 13px;
    line-height: 20px;
    font-family: "ConduitITCStd-Bold";
    text-shadow: none;
}
.carousel32_button {
    background: rgb(255,82,162);
    margin: -46px 140px 0px 0px;
    float: right;
    width: 102Px;
    border-radius: 16px;
    color: rgb(254,255,255);
    text-decoration: none;
    font-size: 20px;
    padding: 13px;
    line-height: 20px;
    font-family: "ConduitITCStd-Regular";
    text-shadow: none;
}

p.header-content.talk_to_doctor_text2 {
    margin: 15px 0px 10px 71px !important;
    width: 50%;
}
p.carousel2_header2.talk_to_doctor_text4 {
    margin-top: 18px;
    font-size: 20px;
    font-family: "ConduitITCStd-Regular";
}
p.header-content.talk_to_doctor_text3 {
    margin-top: 3px;
    width: 50%;
    margin-left: 73px;
}
.item3 .carousel1_header2_sub {
    margin-bottom: -12px;
}
/*
.talk-to-doctor-carousel2 {
  margin: 15px 0px 0px 140px;
}*/
.talk-to-doctor-carousel2 {
  margin: 15px 0px 0px 140px;
  height: 50px;
}


/*.talk-to-doctor {
  margin: 30px 30px 0px 0px;
  float: right;
}*/
.talk-to-doctor {
  margin: 15px 79px 0px 0px;
  float: right;
  height: 50px;
}



  /********************* For clock animation ****************************/

#clockMain {
  width: 440px;
  height: auto;
  position: relative;
}

.clear {
  fill: transparent;
}

.st4 {
  fill: #999999;
}

.st2, .st5 {
  fill: #FFFFFF;
}

.st3, .st4, .st5 {
  display: inline;
}

#hourHand {
   width: 360px;
   /* height: 402px; */
   left: -7.3px !important;
   top: 70px !important;
}

#minHand {
  left: 21px !important;
  top: 76px !important;
  width: 300px;
  height: 300px;
}

#minHand, #hourHand {
 /* width: 440px;
    height: 439px;*/
  position: absolute;
  top: -77px;
  left: -74px;
  /*transform-origin: 220.6px 223.1px;*/
  animation-name: hand_move;
  -webkit-animation-name: hand_move;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
}

#minHand {
  animation-duration: 10s;
  -webkit-animation-duration: 10s;
}

#hourHand {
  animation-duration: 120s;
  -webkit-animation-duration: 120s;
}

@keyframes hand_move {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes hand_move {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

.item.carousel_2 {
  background-image: url('/content/dam/website-services/us/291-seroquelxrv2-com/images/carousel_sxr_3.png');
}
/*.active.item.carousel_2 {
  background-image: url('/content/dam/website-services/us/291-seroquelxrv2-com/images/carousel2_clock_new.png');
}*/

#quantity {
  display: none;
}
  /************************ Clock animation ends ****************************/

  /********************* Carousel 2 ends here ****************************/

  /********************* Carousel 3 starts here ***************************/
/*
.item3 {
  width: 500px;
  margin: 85px 60px 0px 0px;
  float: right;
}
.item3 {
  width: 535px;
  margin: 32px 120px 0px 0px;
  float: right;
}*/
.item3 {
    width: 689px;
    margin: -10px 32px 0px -50px;
}
/*.carousel_3 {
  background: url("/content/dam/website-services/us/291-seroquelxrv2-com/images/carousel_3_savings_art_new.png")no-repeat;
}*/
.carousel_3 {
  background: url("/content/dam/website-services/us/291-seroquelxrv2-com/images/carousel_srx_2.png")no-repeat;
  background-size: 100%;
  background-position: 0px 0px;
} 
.carousel_4 {
  background: url("/content/dam/website-services/us/291-seroquelxrv2-com/images/carousel_sxr_4.png")no-repeat;
  background-size: 100%;
  background-position: 0px 0px;
}
/*.carousel3_header1 {
  text-align: left;
  line-height: 37px;
  margin: 0px 0px 0px 5px;
  font-size: 30px;
  text-shadow: none;
  color: #eb539e;
  font-family: dinBold;
  width: 485px;
}*/

.carousel3_header1 {
  	margin: 6px 0px 0px 72px;
    font-size: 24px;
    font-family: "ConduitITCStd-Bold";
    text-align: justify;
    color: #000;
    width: 60%;
    line-height: 24px;
    text-shadow: none;
}
.carousel3_footnote {
    font-size: 12px;
    color: #000;
    text-align: left;
    text-shadow: none;
    font-family: "ConduitITCStd-Regular";
    margin: 9px 0 0px 119px;
    width: 31%;
    font-weight: lighter;
}
/*
.carousel3_header2 {
  font-size: 12px;
  color: #7b7c7d;
  text-align: left;
  text-shadow: none;
  font-family: "ConduitITCStd-Regular";
  font-family: dinRegular;
  margin: 9px 0px 0px 7px;
}

.carousel3_header2 {
  font-size: 16px;
  color: #7b7c7d;
  text-align: left;
  text-shadow: none;
  font-family: dinRegular;
  margin: 15px 0px 0px 0px;
}*/

/*.carousel3_dollar_sign {
  font-size: 56px;
  display: inline-block;
  position: relative;
  top: 4px;
}*/


.carousel3_header2 a {
  color: #7b7c7d;
  text-decoration: underline;
  cursor: pointer;
}

/*.carousel3_savings_card {
  margin: 60px 0px 0px 0px;
  float: left;
}
*/
.carousel3_savings_card {
  margin: 28px 0px 0px 7px;
  float: left;
  height: 37px;
}

  /********************* Carousel 3 ends here ****************************/
/********************* Carousel 4 starts here ****************************/
.item4 {
    width: 689px;
    margin: 47px 32px 0px -34px;
}
.carousel4_header1 {
    margin: 0px 0px 0px 15px;
    color: #eb539e;
    font-family: "ConduitITCStd-Extrabold";
    text-shadow: none;
    font-size: 65px;
    width: 74%;
}
.carousel4_header2_sub {
    margin: -14px 0px 0px 9px;
    color: #eb539e;
    font-family: "ConduitITCStd-Regular";
    font-weight: 500;
    text-shadow: none;
    font-size: 36px;
    width: 74%;
    padding-left: 30px; /*added to adjust Instant and on*/
}
.carousel4_header3 {
    font-size: 18px;
    font-family: "ConduitITCStd-Regular";
    text-align: left;
    margin: 19px 0px 0px 58px;
    width: 74%;
    color: #000;
    text-shadow: none;
    font-weight: lighter;
}
.carousel4_footnote {
    font-size: 12px;
    color: #000;
    text-align: left;
    text-shadow: none;
    font-family: "ConduitITCStd-Regular";
    margin: 18px 0 0px 53px;
    /*width: 38%;*/
    font-weight: lighter;
}
.carousel4_footnote sup {
    font-size: 11px;
    position: relative;
    top: -4px;
}
/*span.home_dagger {
    margin-left: 3px;
}*/
h3.carousel4_footnote.carousel4_footnote1 {
    margin-top: 3px !important;
}
.carousel42_button {
    background: rgb(255,82,162);
    margin: 27px 47px 0px 0px;
    float: right;
    width: 229px;
    border-radius: 16px;
    color: rgb(254,255,255);
    text-decoration: none;
    font-size: 20px;
    padding: 13px;
    line-height: 20px;
    font-family: "ConduitITCStd-Bold";
    text-shadow: none;
}
/* .Az_helps_savingscard {
    float: right;
    margin: 0px 52px 0px 0px;
} */
/* DEM-23817 */
/*.Az_helps_savingscard {
    float: right;
    margin: 0px 2px 0px 0px;
}*/

.Az_helps_savingscard {
    float: right;
    margin: 43px 31px 0px 0px;
}
/* DEM-23817 */

.carousel4_dollar_sign {
    font-size: 20px;
}
.carousel4_footnote a {
    color: #000;
}
/********************* Carousel 4 ends here ****************************/

@-moz-document url-prefix() {
    .carousel3_header1 {
    width: 64%;
}
.carousel1_header1 {
    width: 73%;
}
.carousel2_header1 {
    width: 93%;
}
.carousel4_header1 {
    margin: 0px 0px 0px 27px;
}
}
  /*******Carousel style ends here*******/