/***** OWL THEME *****/
.owl-theme .owl-controls{
  margin-top: 10px;
  text-align: center;
}
/* NEXT & PREVIOUS */
.owl-theme .owl-controls .owl-buttons{
    margin: -16% auto;
    position: relative;
    width: 100%;
}

.owl-theme .owl-controls .owl-pagination {
    left: 0;
    position: absolute;
    right: 0;
    top: -40px;
}

.owl-theme .owl-controls .owl-buttons div{
    color: #b89924;
    position: absolute;
    font-size: 4rem;
}

.owl-theme .owl-controls .owl-buttons div.owl-prev{
    left: 10px;
    transform: rotate(90deg);
    -ms-transform: rotate(90deg); /* IE 9 */
    -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
}

.owl-theme .owl-controls .owl-buttons div.owl-next{
    right: 10px;
}

/* TOUCH DEVICE TOUCH PATCH (NON TOUCH HOVER ACTION) */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
  filter: Alpha(Opacity=100);/*IE7 FIX*/
  opacity: 1;
  text-decoration: none;
}

/* PAGINATION */
.owl-theme .owl-controls .owl-page{
  display: inline-block;
  zoom: 1;
  *display: inline;/*IE7 LIFR SAVER */
}

.owl-theme .owl-controls .owl-page span{
  display: block;
  width: 17px;
  height: 17px;
  margin: 5px 2px;
  filter: Alpha(Opacity=75);/*IE7 fix*/
  opacity: 0.75;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
    position: relative;
    text-shadow: 1px 0 0 #ccc, -1px 1px 0 #ccc, 0 1px 0 #ccc, 0 -1px 0 #ccc;
}


.owl-theme .owl-controls .owl-page span::before{
    content: '\e811';
    font-family: 'fido-icon';
    position: absolute;
    color: #FFF;
}    

.owl-theme .owl-controls .owl-page.active span::before{
    color: #00afab;
}    

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    color: #00afab;
}
/* IF PAGINATION TRUE */
.owl-theme .owl-controls .owl-page span.owl-numbers{
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;}
/* ACCESSIBILITY */	
.owl-controls .autoplay-pause {
	z-index:2;
	position: absolute;
	left: 50px;
	bottom: 0px;
	margin-bottom:10px;
	border: none;
	background:none;
	padding:0px;
}
.owl-controls .autoplay-pause span {
	display:block;
	background:rgba(0,0,0,0.6);
	padding:10px 15px 5px 15px;
	border-radius:55px;
	text-align:center;
}
.owl-controls .autoplay-pause span i.autoplayicon-stop {
	width:12px;
}
.owl-controls .autoplay-pause span i.autoplayicon-stop:before,
.owl-controls .autoplay-pause span i.autoplayicon-stop:after {
	content:'';
	display:inline-block;
	width:5px;
	height:18px;
	background:#FFF;
	margin-left:1px;
	margin-right:1px;
}
.owl-controls .autoplay-pause span i.autoplayicon-play {
	width:auto;
	color:#FFF;
	font-size:18px;
	line-height:18px;
}
.owl-controls .autoplay-pause span i.autoplayicon-stop {display:none;}
.owl-controls .autoplay-pause span i.autoplayicon-play {display:inline;}
.owl-controls .autoplay-pause.autoplay-active span i.autoplayicon-stop {display:inline;}
.owl-controls .autoplay-pause.autoplay-active span i.autoplayicon-play {display:none;}
/* PRELOAD IMAGES */
.owl-item.loading {
  min-height: 150px;
  background: url(AjaxLoader.gif) no-repeat center center}

/***** OWL TRANSITIONS V 1.3.2 *****/
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x : 50%;
  -webkit-perspective-origin-y : 50%;
  -moz-perspective : 1200px;
  -moz-perspective-origin-x : 50%;
  -moz-perspective-origin-y : 50%;
  perspective : 1200px;}
/* FADE */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;}
/* BACKSLIDE */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;}
/* GODOWN */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;}
/* SCALEUP */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;}
.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;}

/***** KEYFRAMES *****/
/*EMPTY*/
@-webkit-keyframes empty {
  0% {opacity: 1}}
@-moz-keyframes empty {
  0% {opacity: 1}}
@keyframes empty {
  0% {opacity: 1}}
/* FADE */  
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }}
/* BACKSLIDE */  
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }}
/* SCALE */  
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }}
@keyframes goDown {
  from { transform: translateY(-100%); }}
@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }}
@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }}


/***** HERO BANNER COMPONENT *****/
.rui-hero-banner {
  position:relative;
  display: block;
  height: auto;
  margin-top: 0px;
}
/* CAROUSEL */
.rui-hero-banner .hero-carousel {
  width:100%;
}
  
/* ITEM */
.rui-hero-banner .hero-carousel .owl-item {
    height: auto;
}  

.rui-hero-banner .hero-carousel .hero-carousel-item {
    width:100%;
    height: auto;
    overflow:hidden;
}
    
/* TEXT */   
.rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text-column {
    z-index:2;
    min-height:inherit;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
}

.rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text-cell {
    display:table;
    width:100%;
    height: 100%;
}

.rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text.carousel-text-right{
    padding-left: 52%;
    padding-right: 0px;
}
        
.rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text {
    display:table-cell;
    vertical-align: middle;
    color:#FFF;
    width:  100%;
    height: 100%;
    padding: 0px 50% 10px 25px;          
    background-repeat: no-repeat;
    background-position: center 24em;
}
.rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text span.title {
	margin-top:10px;
	font-size:0.6em;
	font-weight:100;
	display:block;
}

.rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text.text-color-black {
    color: #000;
}    

.rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text.text-color-yellow {
    color: #fee600;
} 

.rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text.text-color-gold {
    color: #b19800;
}   

.rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text a.button-primary {
    text-align: center;
    display: inline-block;
    padding: 0px 15px;
}

.rui-hero-banner .rui-hero-menu{
  width: auto;
  top:100%;
  margin-top: -5px;
}

.rui-hero-banner .rui-hero-menu .menu{
/*  background-color: transparent;
  background-image: url('/cms/fido/images/promotions/home-hero/hero-menu-bg.png');
  background-repeat: no-repeat;
  min-height: 80px;*/
}

.rui-hero-banner .rui-hero-menu .menu li{
  margin: 5px 0;
  border-right: 2px solid #000;
}

.rui-hero-banner .rui-hero-menu .menu li:last-child{
  border-right: 0px;
}

.rui-hero-banner .rui-hero-menu .menu li i.rui-icon-live-chat::before{
  content: '\e81b';
}

.rui-hero-banner .rui-hero-menu .menu li a{
  color: #000;
  font-weight: bold;
  padding: 0.5em 1.5em;
}

.hero-banner-wrapper{
  text-align: center;
  min-height: 300px;
}

.hero-banner-wrapper::before{
  content: url(//www.fido.ca/html-fido/cms/ute/fido/images/brand/fido/loading.gif);
  min-height: 300px;
  top: 50%;
  left: 50%;
  position: absolute;
}

.rui-hero-banner .resetHeroBanner{
  text-align: inherit;
  min-height: auto;
}

.rui-hero-banner .resetHeroBanner::before{
  content: '';
  min-height: auto;
}

@media (min-width: 768px) {

    .lob-main-container{
        margin-top: 15px;
    }

    .rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text h2 {
        margin-top:0px;
        font-size: 3.2rem;
    }

    .rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-image {
        z-index:1;
        display: block;
    }

    .rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-image img{
        width: 100%;
    }
		
		/* [START] ACCESSIBILITY */
		.rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text .header-hero-format [class*="header-hero-formatted-"] {
				display: block;
		}
		.rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text .header-hero-format .header-hero-formatted-1 {
				font-size: 17px;
				padding: 15px 0 10px 0px;
		}
		.rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text .header-hero-format .header-hero-formatted-2 {
		}
		.rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text p.hero-factoid {
			font-size:1.0em;
		}
		/* [END] ACCESSIBILITY */
		
  
    /* CONTROLS */
    .rui-hero-banner .hero-carousel .owl-controls {
        position:absolute;
        width:100%;
        bottom:20px;
    }  

    /* PROMOS AND MENU */
    .rui-hero-banner .hero-promos-and-menu {
        position:absolute;
        width:100%;
        bottom:0px;
        height:0px;
    }

    .rui-hero-banner .hero-promos-and-menu > .container,
    .rui-hero-banner .hero-promos-and-menu > .container > .row {
        min-height:inherit;
        height:0px;
    }

    .rui-hero-banner .hero-promos-and-menu .rui-hero-menu {}
    .rui-hero-banner .hero-promos-and-menu .hero-promos {
        position:absolute;
        right: 0;
        bottom: 0;
    }

    .rui-hero-banner .hero-promos-and-menu .hero-promos-cell.show-details::before{
        content: '\e812';
        transform: rotate(270deg);
        top: 20px;
    }

    .rui-hero-banner .hero-promos-and-menu .hero-promos-cell.show-details::after{
        left:41px;
        top:24px;
    }

    .rui-hero-banner .hero-promos-and-menu .hero-promos-cell::before{
        content: '\e84b';
        font-family: 'fido-icon';
        position: absolute;
        transform: rotate(90deg);
        color: #b89924;
        font-size: 2rem;
        top:10px;
        z-index: 11;
    } 

    .rui-hero-banner .hero-promos-and-menu .hero-promos-cell::after {
        content: " ";
        width: 19px;
        height: 19px;
        background: #FFF;
        display: block;
        border-radius: 50%;
        position: absolute;
        left: 20px;
        top: 14px;
        z-index: 10;
    }   

    .rui-hero-banner .hero-promos-and-menu .hero-promos-cell{
        border: 5px solid #00aea9;
        border-radius: 50%;
        padding: 15px;
        height: 12em;
        width: 12em;
        display: table;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;      
    }

    .rui-hero-banner .hero-promos-and-menu .hero-promos-cell.show-details{
        height: 20em;
        width: 20em;
        display: table;
        padding: 50px 35px;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;        
    }

    .rui-hero-banner .hero-promos-and-menu .hero-promos-cell > .rui-cta-items {
        float: none;
        width: auto;
        display: table-cell;
        vertical-align: middle;
    }

    .rui-hero-banner .hero-promos-and-menu .hero-promos-cell > .rui-cta-items > p,
    .rui-hero-banner .hero-promos-and-menu .hero-promos-cell > a.button-primary{
        display: none;
    } 

    .rui-hero-banner .hero-promos-and-menu .hero-promos-cell > .rui-cta-items > p{
        color: #FFF;
    }  

    .rui-hero-banner .hero-promos-and-menu .hero-promos-cell.show-details > .rui-cta-items > p,
    .rui-hero-banner .hero-promos-and-menu .hero-promos-cell.show-details > .rui-cta-items,
    .rui-hero-banner .hero-promos-and-menu .hero-promos-cell.show-details > a.button-primary{
        display: block;
    }

    .rui-hero-banner .hero-promos-and-menu .hero-promos-cell.show-details > a.button-primary{
        width: 125px;
        margin: 0 auto;
        text-align: center;
    }        

    .rui-hero-banner .hero-promos-and-menu .hero-promos-cell > .rui-cta-items > img{
        width: 100%;
        margin-bottom: 10px;
    }

    .learn-more {
      margin-top: 10px;
      /*border: 1px solid red;*/
    }

    .reserve {
      margin-top: 5px;
      /*border: 1px solid green;*/
    }       

    .reserve, .learn-more {
        display: block;
        height: 20%;
        padding: 15px;
        width: 100%;
        cursor: pointer;
    }  

    .rui-hero-banner .rui-hero-menu .menu li i{
        font-size: 2.1rem;
    }

    .rui-hero-banner .rui-hero-menu .menu li i.rui-icon-user::before{
        content: "\e801";
        font-family: "fido-icon" !important;
    }

    .rui-hero-banner .rui-hero-menu .menu li i.rui-icon-community-forums::before{
        content: "\e81b";
        font-family: "fido-icon" !important;
    }    

    .rui-hero-banner .rui-hero-menu .menu li i.rui-icon-community-forums::before{
        content: "\e848";
        font-family: "fido-icon" !important;
    } 

    .rui-hero-banner .rui-hero-menu .menu li a{
        display: table;
    }

    .rui-hero-banner .rui-hero-menu .menu li a i{
        display: table-cell;
        font-size: 2.3rem;
    }

    .rui-hero-banner .rui-hero-menu .menu li a span{
        display: table-cell;
        padding: 0 10px;
        vertical-align: middle;
    }

    html[lang="fr"] .rui-hero-banner .rui-hero-menu .menu{
        background-size: 100% 55px;
        height: 60px;
    }

    @media screen and (-webkit-min-device-pixel-ratio:0) {
 
        .reserve, .learn-more {
          height: 17%;
          position: relative;
          top:13%;
          /*border: 1px solid red;*/
          padding: 6px;
        }
    }
}

@media (max-width: 767px) {
    /* CAROUSEL HEIGHT ADJUSTMENT */
    .rui-hero-banner .hero-carousel,
    .rui-hero-banner .hero-carousel .owl-item,
    .rui-hero-banner .hero-carousel .hero-carousel-item,
    .rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-image img,
    .rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text {
        width: 100%;
    }

    .reserve {
      width: 50%;
      height: 10%;
      position: absolute;
      bottom: 53%;
      /*border: 1px solid pink;*/
    }
    .learn-more {
      width: 50%;
      height: 10%;
      position: absolute;
      bottom: 41%;
     /* border: 1px solid yellow;*/
    }


    /* CONTROLS */
    .rui-hero-banner .hero-carousel .owl-controls {
        bottom:0px;
        position: absolute;
        left: 0;
        right: 0;
    }  
    /* TEXT & IMAGE */
    .rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text-cell {
        padding-left: 5%;
        padding-right: 5%;
        margin-top: 0;
        position: absolute;
        left: 0;           
    }

    .rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text {
        padding: 15px 50% 10px 15px;        
    }

    .rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text h2 {
        margin-bottom: 15px;
        font-size: 1.8rem;
        margin-top: 0px;
    }

    .rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text p {
        font-size:1.6rem;
        margin-top:5px;
        margin-bottom: 10px;
    }
    .rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text span.title {
        margin-top:5px;
        margin-bottom: 10px;
    }

    .rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text a.btn {
        font-size:10.9167px;
        padding:3px 30px;
        margin-top:0px;
    }

    .rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-image {
        left: calc((-384px) + 50%);
    }

    /* MENU & PROMOS */  
    .rui-hero-banner .hero-promos-and-menu {
        position:static;
        width:100%;
        bottom:0px;
        height:auto;
    } 
    .rui-hero-banner .hero-promos-and-menu,
    .rui-hero-banner .hero-promos-and-menu > .container,
    .rui-hero-banner .hero-promos-and-menu > .container > .row {
        min-height:auto;
        height:auto;
    }

    /* MENU */
    .rui-hero-banner .hero-promos-and-menu .rui-hero-menu {
        position:static;
        top:0px;
        bottom:inherit;
    }
    /* PROMOS */  
    .rui-hero-banner .hero-promos-and-menu .hero-promos {
        position:static;
        height:auto;
    } 

    .rui-hero-banner .hero-promos-and-menu .hero-promos-cell {
        height:auto;
    }

    .rui-hero-banner .hero-promos-and-menu .rui-cta-items {
        padding:0px 20px 0px 20px;
        margin-top: 20px;
        font-size: 0.8em;
    } 
    .rui-hero-banner .hero-promos-and-menu .rui-cta-item p {
        font-size:13.6333px;
    }  

    .rui-hero-banner .hero-promos-and-menu .rui-cta-item img {
        height: 95px;
        width: 95px;
        margin-right: 15px;
    }

    .owl-theme .owl-controls .owl-buttons{
        display: none !important;
    }

    .rui-hero-banner .rui-hero-menu{
        width: 100%;
        position: relative;
    }

    .rui-hero-banner .rui-hero-menu .menu{
/*        background-size: cover;
        min-height: 50px;*/
    }        

    .rui-hero-banner .rui-hero-menu .menu li a{
        padding: 0.5em;
    }

    .rui-hero-banner .rui-hero-menu .menu li a span{
        text-indent: 0;
        display: inline;
    }

    html[lang="fr"] .menu li{
      width: 125px;
      display: block;
      float: left;
    }

    html[lang="fr"] .rui-hero-banner .rui-hero-menu .menu{
      min-height: 70px;
    }

    #hero-carousel-item_samsung-sale .hero-carousel-text-column .hero-carousel-text.carousel-text-right{
        padding-left: 15px;
        vertical-align: bottom;
        padding-bottom: 30px;
    }  

    .rui-hero-banner .rui-hero-menu .menu li a i{
        display: none;
    }

    .rui-hero-banner .rui-hero-menu .menu li{
        width: 28%;
        text-align: center;
    }

    .rui-hero-banner .rui-hero-menu .menu li:nth-child(2){
        width: 42%;
    }
} 
@media (min-width: 768px) and (max-width: 992px) {    
    /* TEXT & IMAGE */
    .rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text {
        margin-top:20px;
    }

    .rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-image {
        left: calc((-1371.357px) + 50%);
    }
    
    .rui-hero-banner .hero-promos-and-menu .hero-promos {
        bottom:-10px;
    } 
}  
@media (min-width: 993px) and (max-width: 1199px) {
    /* TEXT */  
    .rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text-cell {
        padding-left:30px;
    }

    .rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text a.btn {
        font-size: 15.6px;
    }
}

#hero-carousel-item_Netflix .hero-carousel-text-cell .hero-carousel-text h2,
#hero-carousel-item_Netflix .hero-carousel-text-cell .hero-carousel-text p.title,
#hero-carousel-item_Netflix .hero-carousel-text-cell .hero-carousel-text span.title
{
    color: #414042;
    text-shadow: none;
}


/* Banner Specific Code */
@media (max-width: 767px) {
    .rui-hero-banner .hero-carousel #hero-carousel-item_LG_G5_Banner.hero-carousel-item .hero-carousel-text.carousel-text-right{
        padding-left: 0;
        padding-top: 40%;
        text-align: center;
    }
    /* LG G Pad promo (MR-4592)*/
    .rui-hero-banner .hero-carousel #hero-carousel-item_LG_G_Pad_QC.hero-carousel-item .hero-carousel-text.carousel-text-right,
    .rui-hero-banner .hero-carousel #hero-carousel-item_LG_G_Pad_ROC.hero-carousel-item .hero-carousel-text.carousel-text-right{
        padding-left: 0;
        padding-top: 40%;
        text-align: center;
    }

}

.rui-hero-banner .hero-promos-and-menu div.hero-promos-cell.show-details > a.rui-cta-items > img {
    width: 60%;
    margin-left: 20% !important;
}

.hero-promos .show-details p {
    font-size: 14px;
}

.rui-hero-banner .hero-promos-and-menu div.hero-promos-cell.show-details > a.rui-cta-items > img {
    margin-top: 9%;
}

.rui-hero-banner .hero-promos-and-menu div.hero-promos-cell > a.rui-cta-items > img {
    width: 85%;
    margin-left: 8%;
    margin-top: 9%;
}

.rui-hero-banner .hero-promos-and-menu .hero-promos-cell.show-details p {
  text-align: center;
}

/* Pride Banner Start */
/* Targets rainbow.html */
.rainbow {
  left: 0;
  right: 0;
  position: fixed;
  top: 7em;
  z-index: 999;
}

.rainbow div {height:10px;}
.red {background-color:#ef2e24;}
.orange {background-color:#f37821;}
.yellow {background-color:#ffea00;}
.green {background-color:#60bc46;}
.blue {background-color:#385fab;}
.purple {background-color:#8b297c;}

header#header {border-bottom: 0; }

@media(min-width: 1200px) {
  .rainbow {top: 102px;}
}

@media(max-width: 1999px and min-width: 992px) {
  .rainbow {top: 88px;}
}

@media(max-width: 991px and min-width: 768px) {
  .rainbow {top: 73px;}
}

@media (max-width: 767px) {
  .rainbow {top: 47px;}
}

/* Pride Banner End */



/* iPhone 7 bottom border start */

.iphone7-bottom-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #EEE;
  height: 95px;
}

@media (max-width: 1560px) {
  .iphone7-bottom-border {
    height: 85px;
  }
}

@media (max-width: 1200px) {
  .iphone7-bottom-border {
    height: 65px;
  }
}

@media (max-width: 768px) {
  .iphone7-bottom-border {
    height: 80px;
  }
}

@media (max-width: 500px) {
  .iphone7-bottom-border {
    height: 50px;
  }
}

/* iPhone 7 bottom border end */


/* Reserve Banner*/
#hero-carousel-item_iphone-7 .button-primary,
#hero-carousel-item_iphone-7 p,
#hero-carousel-item_iphone-7 h2{
    display: none;
}

/*Modal Reserve - Addition*/
 .modal-content .block{
    min-height: 65px;
  }

.reserve-container {
    margin-top: 20px;
    padding-bottom: 30px;
}

.reserve-container:before,.reserve-container:after{
  content:"";
  clear:both;
  display: table;
 }

#promo-modal-reserve .button-primary {
    font-weight: 900;
    padding: 0.15em 2em;
    text-align: center;
    font-size: 18px;
    display: inline-block;
}
#hero-carousel-item_iphone-7 a,
#hero-carousel-item_iphone-7 a:hover,
#hero-carousel-item_iphone-7 a:focus{outline: 0;}

html[lang="fr"]  #promo-modal-reserve .button-primary{
    font-size: 16px;
}

#promo-modal-reserve .button-parent {
    text-align: center;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
  #promo-modal-reserve .modal-content .block {min-height: auto;}
}
@media (min-width: 768px) {
  #promo-modal-reserve .button-parent {
    top: 10px;
    position: relative;
  }
}

/*#hero-carousel-item_BlackFriday_iPad .container .hero-carousel-text-cell .hero-carousel-text h2:before {
    content: "TGI (BLACK) FRIDAY";
    font-size: 20px;
    display: block;
    padding-bottom:10px;
}

#hero-carousel-item_BlackFriday_iPad .hero-carousel-text h2 span {
  content: "TGI (BLACK) FRIDAY" ;
  font-size: 20px;
  display: block;
  padding-bottom:10px;
}

#hero-carousel-item_BlackFriday_iPad .hero-carousel-text h2 {
  
}*/
  #hero-carousel-item_BlackFriday_iPad .hero-carousel-text h2 {
    font-size: 3.1rem;
  }

#hero-carousel-item_BlackFriday_iPad .hero-carousel-text .header-bg- {
  font-size: 20px;
}
#hero-carousel-item_BlackFriday_iPad .hero-carousel-text .header-bg- span {
  font-weight: 700;
}

#hero-carousel-item_BlackFriday_iPad .hero-carousel-text p span {
  font-weight: 700;
}
@media (max-width: 768px) {
  #hero-carousel-item_BlackFriday_iPad .hero-carousel-text h2 {
    font-size: 1.7rem;
  }
}
@media (max-width: 768px) {
  #hero-carousel-item_BlackFriday_iPad .hero-carousel-text .header-bg- {
  font-size: 16px;
  }
}
@media (max-width: 768px) {
  #hero-carousel-item_BlackFriday_iPad .hero-carousel-text p {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) { 
  #hero-carousel-item_BlackFriday_iPad .hero-carousel-text .header-bg- {
    font-size: 14px;
  }
}

/* MR-9924 - START */
#hero-carousel-item_BlackFriday_GiftCards .hero-carousel-text h2 {
    font-size: 3.1rem;
}
#hero-carousel-item_BlackFriday_GiftCards .hero-carousel-text sup {
    font-size: 1.5rem;
    font-weight: 600;
    top: -15px;
    left: -3px;
}
#hero-carousel-item_BlackFriday_GiftCards .hero-carousel-text sub {
    font-size: 1.5rem;
    font-weight: 600;
    bottom: -10px;
    left: -2px;
}
#hero-carousel-item_BlackFriday_GiftCards .hero-carousel-text .legal {
    font-size: 8px;
}
#hero-carousel-item_BlackFriday_GiftCards .hero-carousel-text .header-bg- {
  font-size: 20px;
}
#hero-carousel-item_BlackFriday_GiftCards .hero-carousel-text .header-bg- span {
  font-weight: 700;
}
#hero-carousel-item_BlackFriday_GiftCards .hero-carousel-text p span {
  font-weight: 700;
}
@media (max-width: 767px) {
  #hero-carousel-item_BlackFriday_GiftCards .hero-carousel-text h2 {
    font-size: 1.7rem;
  }
  #hero-carousel-item_BlackFriday_GiftCards .hero-carousel-text p {
    font-size: 1.3rem;
  }
  #hero-carousel-item_BlackFriday_GiftCards .hero-carousel-text .header-bg- {
    font-size: 14px;
  }
  #hero-carousel-item_BlackFriday_GiftCards .hero-carousel-text sub {
    font-size: 1rem;
    bottom: -6px;
  }
  #hero-carousel-item_BlackFriday_GiftCards .hero-carousel-text sup {
    font-size: 1rem;
    top: -6px;
    left: -1px;
  }
}
/* MR-9924 - END */

/* MR-9921 - START */
#hero-carousel-item_BlackFriday_iPhone6s .hero-carousel-text h2 {
    font-size: 3.1rem;
}
#hero-carousel-item_BlackFriday_iPhone6s .hero-carousel-text sup {
    font-size: 1.5rem;
    font-weight: 600;
    top: -15px;
    left: -3px;
}
#hero-carousel-item_BlackFriday_iPhone6s .hero-carousel-text sub {
    font-size: 1.5rem;
    font-weight: 600;
    bottom: -10px;
    left: -2px;
}
#hero-carousel-item_BlackFriday_iPhone6s .hero-carousel-text .legal {
    font-size: 8px;
}
#hero-carousel-item_BlackFriday_iPhone6s .hero-carousel-text .header-bg- {
  font-size: 20px;
}
#hero-carousel-item_BlackFriday_iPhone6s .hero-carousel-text .header-bg- span {
  font-weight: 700;
}
#hero-carousel-item_BlackFriday_iPhone6s .hero-carousel-text p span {
  font-weight: 700;
}
@media (max-width: 991px) {
  #hero-carousel-item_BlackFriday_iPhone6s .hero-carousel-text h2 {
    font-size: 2.3rem;
  }
  #hero-carousel-item_BlackFriday_iPhone6s .hero-carousel-text p {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  #hero-carousel-item_BlackFriday_iPhone6s .hero-carousel-text h2 {
    font-size: 1.7rem;
    margin-bottom: 5px;
  }
  #hero-carousel-item_BlackFriday_iPhone6s .hero-carousel-text p {
    font-size: 1.3rem;
    margin-bottom: 5px;
    margin-top: 0;
  }
  #hero-carousel-item_BlackFriday_iPhone6s .hero-carousel-text span.title {
    margin-bottom: 5px;
    margin-top: 0;
  }
  #hero-carousel-item_BlackFriday_iPhone6s .hero-carousel-text .header-bg- {
    font-size: 14px;
  }
  #hero-carousel-item_BlackFriday_iPhone6s .hero-carousel-text sub {
    font-size: 1rem;
    bottom: -6px;
  }
  #hero-carousel-item_BlackFriday_iPhone6s .hero-carousel-text sup {
    font-size: 1rem;
    top: -6px;
    left: -1px;
  }
}
/* MR-9921 - END */

/* MR-10406 - START */
#hero-carousel-item_CyberMonday .hero-carousel-text h2 {
    font-size: 3.1rem;
}
#hero-carousel-item_CyberMonday .hero-carousel-text sup {
    font-size: 1.5rem;
    font-weight: 600;
    top: -15px;
    left: -3px;
}
#hero-carousel-item_CyberMonday .hero-carousel-text sub {
    font-size: 1.5rem;
    font-weight: 600;
    bottom: -10px;
    left: -2px;
}
#hero-carousel-item_CyberMonday .hero-carousel-text .legal {
    font-size: 8px;
}
#hero-carousel-item_CyberMonday .hero-carousel-text .header-bg- {
  font-size: 20px;
}
#hero-carousel-item_CyberMonday .hero-carousel-text .header-bg- span {
  font-weight: 700;
}
#hero-carousel-item_CyberMonday .hero-carousel-text p span {
  font-weight: 700;
}
@media (max-width: 991px) {
  #hero-carousel-item_CyberMonday .hero-carousel-text h2 {
    font-size: 2.3rem;
  }
  #hero-carousel-item_CyberMonday .hero-carousel-text p {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  #hero-carousel-item_CyberMonday .hero-carousel-text h2 {
    font-size: 1.7rem;
    margin-bottom: 5px;
  }
  #hero-carousel-item_CyberMonday .hero-carousel-text p {
    font-size: 1.3rem;
    margin-top: 0;
  }
  #hero-carousel-item_CyberMonday .hero-carousel-text span.title {
    margin-top: 0;
  }
  #hero-carousel-item_CyberMonday .hero-carousel-text .header-bg- {
    font-size: 14px;
  }
  #hero-carousel-item_CyberMonday .hero-carousel-text sub {
    font-size: 1rem;
    bottom: -6px;
  }
  #hero-carousel-item_CyberMonday .hero-carousel-text sup {
    font-size: 1rem;
    top: -6px;
    left: -1px;
  }
}


/* 2 CTA (reserve + learn more) */
/*.learn-more-btn{border: 1px solid pink;}
.reserve-btn{border: 1px solid purple;}  */

.reserve-btn,.learn-more-btn {position: relative;cursor: pointer;}
@media (max-width: 767px){
  .reserve-btn,.learn-more-btn{
    top: 10%;
    left: -2%;
    display: block;
    height: 9%;
    width: 95%;
    margin: 0 0 6px 0;
 }

}

@media (min-width: 768px) {
  .reserve-btn,.learn-more-btn {
    top: 10%;
    left: -12%;
    display: inline-block;
    height: 10%;
    width: 38%;
    margin: 0 3px;
  }

}  

/* MR-12680 BTS_InternetOffer_EN / BTS_InternetOffer_FR */
span.blue-offer-tag {
  color: #000;
  background:#A9E2E0;
  font-size:14px;
  font-weight:500;
  text-transform:uppercase;
  position:relative;
  padding:5px 10px;
}
@media (max-width: 767px) {
  span.blue-offer-tag {
    position: absolute;
    left: 0;
    top: 10px;
  }
  #hero-carousel-item_BTS_InternetOffer_EN .hero-carousel-text,
  #hero-carousel-item_BTS_InternetOffer_FR .hero-carousel-text {
    color: #000;
  }
}
span.blue-offer-tag:after {
  content:'';
  position:absolute;
  right:-10px;
  bottom:0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 26px 0 0 10px;
  border-color: transparent transparent transparent #a9e2e0;
}
span.blue-offer-tag span.blue-offer-tag-bold {
  font-weight:600;
}

/* MR-12680 BTS_InternetOffer_EN / BTS_InternetOffer_FR */

.rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text a.button-secondary{
    text-align: center;
    display: inline-block;
    padding: 0px 15px;
}
.rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text a.button-secondary:hover{
    color:#fff;
}
.rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text a.button-primary{
    margin-right: 10px;
}

@media (max-width: 767px) {
  .rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text a.button-secondary,
  .rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text a.button-primary{
      margin-top: 10px;
  }
  .hero-carousel-text-column {
    margin-left:-15px;
  }
  .rui-hero-banner .hero-carousel .hero-carousel-item .hero-carousel-text-cell {
        padding-left: 0;
  }
}


/*DSO-20048 feedback button zone is overlapping other buttons*/
#slider-control-SI_cBW8f2ty1QxcoaV{height: 122px !important;top: 175px !important;}
