/*
Notes:a

REMOVED (global.css ln 1304ff):
--------------
/*#now-playing #toggle-btns li, .toggle-btns li {
    float: left;
    width: 22px;
    height: 21px;
    margin: 0 0 0 10px;
}
#now-playing #toggle-btns a, .toggle-btns a {
    background: url(../img/icons/sprite-toggle-views.png) -364px 0 no-repeat;
    display: block;
    width: 22px;
    height: 21px;
}
.toggle-btns a.thumb-view-btn:hover, .toggle-btns a.thumb-view-btn.selected {
    background: url(../img/icons/sprite-toggle-views.png) 0 0 no-repeat;
}
.toggle-btns a.list-view-btn:hover, .toggle-btns a.list-view-btn.selected {
    background: url(../img/icons/sprite-toggle-views.png) 0 -49px no-repeat;
}
.toggle-btns a.list-view-btn {
    background: url(../img/icons/sprite-toggle-views.png) -364px -49px no-repeat;
}
-------------


*/

/* 
--
-- Global Homepage Styles
--
*/

/* Fonts*/
@font-face {
    font-family: 'dharma-gothic-light';
    src: url('/assets/fonts/2029E2_2_0.eot');
    src: url('/assets/fonts/2029E2_2_0.eot?#iefix') format('embedded-opentype'), url('/assets/fonts/2029E2_2_0.woff') format('woff'), url('/assets/fonts/2029E2_2_0.ttf') format('truetype');
}

@font-face {
    font-family: 'dharma-gothic-regular';
    src: url('/assets/fonts/2029E2_0_0.eot');
    src: url('/assets/fonts/2029E2_0_0.eot?#iefix') format('embedded-opentype'), url('/assets/fonts/2029E2_0_0.woff') format('woff'), url('/assets/fonts/2029E2_0_0.ttf') format('truetype');
}

@font-face {
    font-family: 'dharma-gothic-bold';
    src: url('/assets/fonts/2029E2_1_0.eot');
    src: url('/assets/fonts/2029E2_1_0.eot?#iefix') format('embedded-opentype'), url('/assets/fonts/2029E2_1_0.woff') format('woff'), url('/assets/fonts/2029E2_1_0.ttf') format('truetype');
}

.dharma-gothic-light {
    font-family: dharma-gothic-light;
}

.dharma-gothic-regular {
    font-family: dharma-gothic-regular;
}

.dharma-gothic-bold {
    font-family: dharma-gothic-bold;
}

/* Default button styles */
.btn {
    padding: 0 10px;
    line-height: 27px;
    height: 27px;
    font-weight: bold;
    border-radius: 3px;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

    .btn.wide {
        padding: 0 25px;
        line-height: 31px;
        height: 31px;
    }

    .btn.right {
        float: right;
        margin-left: 10px;
    }

    .btn.left {
        float: right;
        margin-right: 10px;
    }

/* add rounded coreners only to outside button in clumps */
.btn-clump {
    font-size: 0;
}

    .btn-clump .btn {
        border-radius: 0;
        font-size: 11px;
        border-left-style: none !important;
    }

        .btn-clump .btn:first-child {
            border-bottom-left-radius: 3px;
            border-top-left-radius: 3px;
            border-left-style: solid !important;
        }

        .btn-clump .btn:last-child {
            border-bottom-right-radius: 3px;
            border-top-right-radius: 3px;
        }

/* Manage button icon styles */
.btn [class^="icon"], button [class^="icon"] {
    display: inline-block;
    background: url('/Assets/img/icons/icon-sprite.png') no-repeat;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 4px;
}

button .icon-member, .btn .icon-member {
    background-position: 50% 0;
}

button .icon-list, .btn .icon-list {
    background-position: 50% -30px;
}

button .icon-grid, .btn .icon-grid {
    background-position: 50% -60px;
}

button .icon-calendar, .btn .icon-calendar {
    background-position: 50% -90px;
}

button .icon-caret, .btn .icon-caret, a .icon-caret {
    background-position: 50% -120px;
}

button .icon-magnify-glass, btn .icon-magnify-glass {
    background-position: 50% -149px;
    height: 16px;
}

/* Gray Buttons */
.btn.gray {
    color: #222;
    border: #c9c9c9 1px solid;
    background-color: #E8E8E8;
    background-image: linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
    background-image: -o-linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
    background-image: -moz-linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
    background-image: -webkit-linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
    background-image: -ms-linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #E8E8E8), color-stop(0.57, #F9F9F9)) !important;
}

/* Gray Buttons */
.btn.blue {
    color: #fff;
    border: #0f77da 1px solid;
    background-color: #0f77da;
    background-image: linear-gradient(bottom, #0f77da 0%, #0f77da 57%) !important;
    background-image: -o-linear-gradient(bottom, #0f77da 0%, #0f77da 57%) !important;
    background-image: -moz-linear-gradient(bottom, #0f77da 0%, #0f77da 57%) !important;
    background-image: -webkit-linear-gradient(bottom, #0f77da 0%, #0f77da 57%) !important;
    background-image: -ms-linear-gradient(bottom, #0f77da 0%, #0f77da 57%) !important;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0f77da), color-stop(0.57, #0f77da)) !important;
}

/* make icon lighter on selected buttons */
.btn.selected {
    background-image: none !important;
    background: #fff !important;
    color: inherit !important;
}

    .btn.selected [class^="icon"] {
        zoom: 1;
        filter: alpha(opacity=30);
        opacity: 0.3;
    }

.btn.gray.selected, .btn.gray.selected:hover {
    color: #a5a5a5 !important;
}

/* pointer for buttons */
button {
    cursor: pointer;
}

/* 
--
-- Header styles
--
*/

#header {
    height: 136px;
    padding: 0;
    margin-top: 26px;
    font-size: 11px;
}

    #header #logo {
        position: relative;
    }

        #header #logo img {
            margin: 0 115px 0 54px;
            width: 186px;
        }


    /* shared styles for header elements */
    #header .btn.gray {
        height: 34px;
        line-height: 34px;
        padding: 0 20px;
    }


    /* Header member navigation */
    #header .member-nav {
        padding-top: 16px;
        z-index: 105;
    }

#loginStatusContainer {
    display: inline-block;
    float: right;
    margin-right: 20px;
}

    #loginStatusContainer:hover .btn.gray {
        border-bottom: initial;
        border-bottom-left-radius: initial;
        border-bottom-right-radius: initial;
        position: relative;
        z-index: 105;
        background: #fefefe !important;
    }

    #loginStatusContainer .panel {
        display: none;
        position: absolute;
        right: 20px;
        top: 50px;
        border: 1px solid #c9c9c9;
        width: 230px;
        z-index: 103;
        background: #fefefe;
        padding: 15px;
        border-radius: 3px;
        border-top-right-radius: initial;
        background-image: linear-gradient(bottom, #E8E8E8 0%, #fefefe 57%) !important;
        background-image: -o-linear-gradient(bottom, #E8E8E8 0%, #fefefe 57%) !important;
        background-image: -moz-linear-gradient(bottom, #E8E8E8 0%, #fefefe 57%) !important;
        background-image: -webkit-linear-gradient(bottom, #E8E8E8 0%, #fefefe 57%) !important;
        background-image: -ms-linear-gradient(bottom, #E8E8E8 0%, #fefefe 57%) !important;
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #E8E8E8), color-stop(0.57, #fefefe)) !important;
        font-size: 12px;
        line-height: 1.3em;
    }

    #loginStatusContainer:hover .panel {
        display: inline-block;
    }

    #loginStatusContainer .panel .btn {
        width: 100%;
        padding: 0;
        font-size: 14px;
    }

    #loginStatusContainer .panel .lede {
        margin-bottom: 10px;
    }

    #loginStatusContainer .panel input[type="text"],
    #loginStatusContainer .panel input[type="password"] {
        border-radius: 3px;
        display: block;
        color: #222;
        font-size: 14px;
        text-indent: .6em;
        width: 100%;
        height: 30px;
        background: #fff;
        border: 1px solid #ccc;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
        margin-bottom: 12px;
    }

    #loginStatusContainer .panel .label-standalone {
        margin-bottom: 10px;
    }

    #loginStatusContainer .login-with-others-container.separated {
        width: 233px;
        border-top: 1px solid #c9c9c9;
    }

    #loginStatusContainer .login-with-others-container .button {
        width: 193px;
    }

    .activateRccCard {
        margin-left: 80px;
    }



/* Header search fields */
#header .search {
    color: #222;
    font-size: 12px;
}

    #header .search .button-area {
        font-weight: bold;
        display: block;
    }

    #header .search #search-theatre {
        float: left;
        width: 265px;
    }

    #header .search #search-movie {
        float: left;
        width: 265px;
        margin-left: 20px;
    }

    #header .search .button-area input,
    #header .search .button-area div a.btn,
    #header .search .button-area div button {
        border-radius: 3px;
        display: block;
        color: #222;
        font-size: 12px;
        text-indent: 12px;
        height: 32px;
        background: #fff;
        border: 1px solid #ccc;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
        cursor: pointer;
    }

    #header .search #search-theatre input {
        width: 222px;
        z-index: 102;
        position: relative;
        float: left;
        border: 1px solid #b7b7b7;
    }

    #header .search #search-movie input {
        width: 222px;
        float: left;
        border: 1px solid #b7b7b7;
    }

    #header .search .button-area div {
        position: relative;
        margin-top: 4px;
    }

        #header .search .button-area div button,
        #header .search .button-area div a.btn {
            border-radius: 3px;
            float: right;
            width: 36px;
            height: 36px;
            padding: 0;
            text-align: center;
            border: 1px solid #C9C9C9;
            background-color: #E8E8E8;
            background-image: linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
            background-image: -o-linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
            background-image: -moz-linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
            background-image: -webkit-linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
            background-image: -ms-linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
            background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #E8E8E8), color-stop(0.57, #F9F9F9)) !important;
        }

        #header .search .button-area div a.btn {
            width: 34px;
            height: 34px;
            z-index: 105;
        }

            /* center icon */
            #header .search .button-area div button span,
            #header .search .button-area div a.btn span {
                width: 14px;
                height: 15px;
                margin-left: -10px;
                margin-top: 7px;
                background: url('/Assets/img/icons/icon-search.png') center center no-repeat;
            }

        #header .search .button-area div button span {
            margin-top: 1px;
        }

#header input::-webkit-input-placeholder {
    color: #222222;
}

#header input::-moz-placeholder {
    color: #222222;
}

#header input:-moz-placeholder {
    color: #222222;
}

#header input::-ms-input-placeholder {
    color: #222222;
}

#header .search-example {
    margin-top: 4px;
    font-size: 11px;
    float: left;
    font-weight: normal;
}


/* Header main menu */
#header .main-nav {
    height: 44px;
    background: url('/Assets/img/backgrounds/header-nav-bg.png') bottom repeat-x;
    border: 1px solid #ccc;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
}

    #header .main-nav ul {
        margin-top: 2px;
        list-style-type: none;
    }

    #header .main-nav li {
        float: left;
    }

        #header .main-nav li a {
            display: block;
            border-right: #c9c9c9 1px solid;
            line-height: 44px;
            letter-spacing: 0;
            word-spacing: 0;
            text-align: center;
            font-size: 17px;
            font-weight: bold;
            color: #222;
            padding: 0 51px;
        }

            #header .main-nav li a:focus,
            #header .main-nav li a:hover {
                color: #076cdc;
            }

        #header .main-nav li.active a {
            color: #076cdc;
        }

/*
        #header li.main-1 {width:90px;}
        #header li.main-2 {width:100px;}
        #header li.main-3 {width:170px;}
        #header li.main-4 {width:180px;}
        #header li.main-5 {width:110px;}
        #header li.main-6 {width:165px;}
*/


/* 
--
-- Main content styles - Slider
--
*/



/* Cycle generics */
.cycle {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100px;
}

.cycle-slide {
    color: #fff;
    background: #000;
    width: 200px;
    height: 100px;
}

.cycle-indicators {
    bottom: 0;
    display: inline-block;
    float: left;
    margin: 0 auto;        
    max-width: 1200px;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 1001;        
}

    ul.cycle-indicators li {
        display: inline-block;        
        box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.5);
        background-color: #000000;
        padding: 5px;
        text-shadow: #000 1px 1px;
    }

    .cycle-indicators.left {
        text-align: left;
        margin-left: 10px;
    }

    .cycle-indicators.right {
        text-align: right;
    }

li.cycle-indicator a {
    background: url('/assets/img/backgrounds/sprite-carousel-indicators.png') no-repeat;
    padding-right: 15px;
    height: 12px;
    width: 0;
}

li.cycle-indicator.cycle-pager-active a {
    background-position: 0 -20px;
}

.cycle-nav {
    width: 100%;
    position: absolute;
    bottom: 10px;
    z-index: 1010;
}

    .cycle-nav.right {
        text-align: right;
    }

    .cycle-nav .nav-btn {
        margin-right: 10px;
        width: 26px;
        height: 26px;
        background: url('/assets/img/backgrounds/sprite-carousel-nav.png') no-repeat;
        background-position: 0px -32px;
        cursor: pointer;
        display: inline-block;
    }

        .cycle-nav .nav-btn.next {
            background-position: -32px -32px;
        }

            .cycle-nav .nav-btn.next:hover {
                background-position: -32px 0;
            }

        .cycle-nav .nav-btn.prev:hover {
            background-position: 0 0;
        }

/* Cycle for Home page */
.movie-carousel .cycle, .movie-carousel .cycle-slide {
    width: 1200px;
    height: 432px;
    border: none;
}

.movie-carousel .cycle-slide {
    background: #fff url('/Assets/img/backgrounds/hero-shadow.png') center bottom no-repeat;
    border: none;
}

.movie-carousel .cycle-indicators {
    bottom: 0;
}


/* Cycle for RCC Home Login */
.rcc-login .cycle, .rcc-login .cycle-slide {
    width: 730px;
    height: 380px;
}

.rcc-login .cycle-slide {
    background: #000 url('/assets/img/backgrounds/rcc-login-slide.png') top right no-repeat;
}


/* Cycle for Generic SLIDER_WITH_SINGLE_IMAGE */
.hero.slider-with-single-image {
    position: relative;
    width: 730px;
    height: 200px;
    background: #f4f4f4;
    margin-top: 15px;
    margin-bottom: 40px;
}

    .hero.slider-with-single-image h1,
    .hero.slider-with-single-image h2
     {
        font-size: 24px;
        font-weight: normal;
        line-height: 26px;
        border: none;
        font-weight: 200;
    }

    .hero.slider-with-single-image .cycle, .hero.slider-with-single-image .cycle-slide {
        width: 380px;
        height: 200px;
    }

    .hero.slider-with-single-image .cycle-slide {
        color: #4a4a4a;
        background: #f4f4f4;
        padding: 30px;
        font-size: 13px;
        line-height: 1.3em;
        width: 330px;
        height: 270px;
    }

    .hero.slider-with-single-image .cycle-indicators {
        bottom: 8px;
    }

    .hero.slider-with-single-image .cycle a.cycle-indicator {
        background-position: -20px 0;
    }

        .hero.slider-with-single-image .cycle a.cycle-indicator.cycle-pager-active {
            background-position: -20px -20px;
        }

    .cycle-controls {
        position: absolute;
        bottom: 10px;
        left: 15px;
        z-index: 1010;
        color: #fff;
        box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.5);
        background-color: #000000;
        padding: 4px;
        text-shadow: #000 1px 1px;
    }

    .rcc-dashboard-hero .cycle-controls {
        bottom: 18px;
    }

    .cycle-controls a,
    .cycle-controls a:visited {
        color: #fff;
        float: left;
        font-size: 16px;
        text-decoration: none;
    }

    .cycle-controls a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .cycle-icon-play {
        padding-left: 1em;
        padding-right: 1em;
        border-right: 1px solid #fff;
    }

    .cycle-icon-play:before {
        content: "";
        position: absolute;
        top: 50%;
        background: #c55500;
        left: 2px;
        border: 8px solid transparent;
        border-width: 6px 10px;
        border-left-color: #fff;
        margin-top: -7px;
        background: transparent;
    }

    .cycle-icon-stop {
        padding-left: 20px;
        margin-left: 1em;
        position: relative;
    }

    .cycle-icon-stop:before {
        content: "";
        position: absolute;
        top: 50%;
        margin-top: -7px;
        left: 2px;
        width: 12px;
        height: 12px;
        background: #fff;
        display: inline-block;
    }

    .cycle-controls-adjust-rcc {
        bottom: 0;
        margin-left: 295px
    }

    .cycle-controls-adjust-rcc2 {
	    bottom: 0 !important;
    	margin-left: 250px;
    }

    #txtNewCardCustomValidator {
        display: inline-block;
        margin-bottom: 10px;
    }

/* 
--
-- Main content styles - 2 col layout
--
*/

#content {
    margin: 0;
    padding: 0;
}

    #content .layout {
        margin: 0;
        padding: 12px;
        background: #edf3f5;
    }

    #content #now-playing {
        margin: 0;
    }

.center-column {
    background: #fff;
    border: #ebebeb 1px solid;
}

    .center-column h1 {
        font-size: 18px;
        line-height: 18px;
        color: #2f2f2f;
        padding: 28px 24px 13px;
        font-weight: bold;
        text-transform: none;
        border-bottom: #b4b4b4 1px solid;
    }

    .center-column ul.movie-categories {
        background: url('/Assets/img/backgrounds/movielist-faded-rule.png') no-repeat 50% 39px;
        margin-bottom: 20px;
        padding: 0 20px;
    }

        .center-column ul.movie-categories li {
            float: left;
        }

        .center-column ul.movie-categories ul,
        #now-playing ul.thumb-view ul {
            display: none;
            margin-top: 68px;
        }

        .center-column ul.movie-categories .active ul {
            display: block;
        }

        .center-column ul.movie-categories > li > a {
            color: #767776;
            display: block;
            font-size: 14px;
            font-weight: bold;
            padding: 17px 20px;
            position: absolute;
            top: 0;
        }

ul.movie-categories > li.active > a {
    background: url('/Assets/img/backgrounds/movielist-faded-rule-arrow.gif') no-repeat 50% 100%;
    color: #000;
}

.column-one ul.movie-categories {
    background: url('/Assets/img/backgrounds/movielist-faded-rule.png') no-repeat 50% 39px;
    margin-bottom: 20px;
    margin-right: 15px;
}

a[href^="#now-playing-tab"] {
    left: 20px;
}

a[href^="#coming-soon"] {
    left: 143px;
}

a[href^="#family-picks"] {
    left: 274px;
}

a[href^="#limited-engagement"] {
    left: 399px;
}

.column-one ul.movie-categories li {
    float: left;
}

.column-one ul.movie-categories > li > a {
    color: #767776;
    display: block;
    font-size: 14px;
    font-weight: bold;
    padding: 17px 20px;
    position: absolute;
    top: 0;
}

.column-one ul.movie-categories > li.active > a {
    background: url('/Assets/img/backgrounds/movielist-faded-rule-arrow.gif') no-repeat 50% 100%;
    color: #000;
}

.movie-categories h2 {
    display: inline;
}

/* set buttons right margin and override vertical padding */
.center-column .toggle-btns {
    top: 10px;
    margin-right: 20px;
}

    .center-column .toggle-btns .btn {
        line-height: 25px;
        padding-top: 0;
        padding-bottom: 0;
    }
/* set buttons right margin and override vertical padding */
.column-one .toggle-btns {
    top: 10px;
    margin-right: 15px;
}

    .column-one .toggle-btns .btn {
        line-height: 25px;
        padding-top: 0;
        padding-bottom: 0;
    }


/* Note: the grid view layout uses many overrides. For now this works but needs to be cleaned up at some point. */

#now-playing ul.thumb-view {
    padding: 0;
    float: left;
    margin-right: -15px;
}

.column-one #now-playing ul.thumb-view,
.column-one #now-playing ul.list-view {
    display: none;
    margin-top: 68px;
    padding: 0;
}

.column-one #now-playing .active ul.thumb-view,
.column-one #now-playing .active ul.list-view {
    display: block;
}

#now-playing ul.thumb-view li a {
    color: #616161;
}

    #now-playing ul.thumb-view li a.btn.blue.wide {
        color: white;
    }

#now-playing ul.thumb-view li {
    float: left;
    width: 160px;
    display: inline-block;
    margin: 0 15px 15px 0;
    font-size: 11px;
    color: #616161;
    text-align: center;
}

.column-one #now-playing ul.thumb-view li {
    width: 131px;
}

#now-playing ul.thumb-view .movie-poster,
#now-playing ul.thumb-view .movie-poster img {
    width: 160px;
    height: 237px;
}

.column-one #now-playing ul.thumb-view .movie-poster,
.column-one #now-playing ul.thumb-view .movie-poster img {
    width: 134px;
    height: 199px;
}

#now-playing ul.thumb-view .movie-title {
    height: 30px;
    display: table-cell;
    vertical-align: middle;
    width: 160px;
    overflow: hidden;
}

    #now-playing ul.thumb-view .movie-title span {
        height: 30px;
        display: block;
        overflow: hidden;
    }

.column-one #now-playing ul.thumb-view .movie-title {
    width: 134px;
}

#now-playing ul.thumb-view .movie-title a {
    height: auto;
    min-height: 0;
    max-height: 26px;
    font-size: 10px;
    font-weight: normal;
    line-height: 1.3em;
    margin: 2px 0;
}

#now-playing ul.thumb-view a.btn {
    font-size: 13px;
    padding-left: 5px;
    padding-right: 5px;
}


/* List view styles */
#now-playing .list-view li {
    border-top: 1px solid #e2e2e2;
    box-sizing: border-box;
    margin-top: 20px;
    margin-right: 0;
    padding: 20px 0 0 0;
    position: relative;
    text-align: left;
    width: 100%;
}

.column-one #now-playing .list-view li {
    padding-left: 0;
}

#now-playing .list-view li:first-child {
    margin-top: 0px;
    padding-top: 0;
    border-top: none;
}

#now-playing .list-view li .btn-box {
    position: absolute;
    right: 0px;
    top: 15px;
    padding: 20px 25px;
    background: #f5f5f5;
}

#now-playing .list-view li:first-child .btn-box {
    top: 0;
}

#now-playing .list-view li .btn-box .btn {
    clear: both;
    float: left;
    width: 140px;
    padding: 0;
    margin-top: 15px;
}

    #now-playing .list-view li .btn-box .btn:first-child {
        margin-top: 0;
    }

#now-playing .list-view li a img {
    width: 160px;
}

#now-playing .list-view li h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

#now-playing .list-view li a {
    color: #076cdc;
}

    #now-playing .list-view li a.btn.blue.wide {
        color: white;
    }

#now-playing .list-view li p {
    margin-bottom: 15px;
}

#now-playing .movie-poster,
#now-playing .movie-poster img {
    width: 160px;
    height: 237px;
}

.column-one #now-playing .movie-poster,
.column-one #now-playing .movie-poster img {
    width: 134px;
    height: 199px;
}

#now-playing .list-view .movie-poster-trailer {
    margin-right: 20px;
}

#now-playing .list-view .movie-details {
    width: 360px;
    padding: 0;
}



/* 
--
-- Right rail styles
--
*/

.right-rail-ad:first-child {
    padding-top: 0;
}

.right-rail-ad {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
}




/* 
--
-- Mobile apps bottom banner
--
*/

#mobile-apps-banner {
    border: #dadada 2px solid;
    width: 732px;
    margin: 20px auto 20px;
    background: #f4f4f4;
    display: inline-block;
    margin-left: 80px;
}

    #mobile-apps-banner > div {
        padding: 15px;
    }

        #mobile-apps-banner > div .faux-h3 {
            display: block;
            font-size: 21px;
            font-weight: bold;
            margin: 0 0 10px 0;
        }

        #mobile-apps-banner > div div {
            margin: 0 17px;
        }

        #mobile-apps-banner > div .appstore {
            padding-right: 10px;
        }

        #mobile-apps-banner > div a img {
            padding-top: 8px;
        }

/*
--
-- Header - Logged-in state
--
*/
#header .my-theatre {
    border: 1px solid #95c2e8;
    background: #eef5ff;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-weight: normal;
    font-size: 11px;
    line-height: 9px;
    color: #076cdc;
    padding: 2px 6px 3px;
}

#header .btn.logged-in {
    color: #222;
    font-size: 14px;
}

    #header .btn.logged-in:after {
        content: '';
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #000;
        display: inline-block;
        padding-top: 2px;
        margin-left: 5px;
    }

    #header .btn.logged-in.secondary {
        font-weight: normal;
    }

    #header .btn.logged-in .points {
        color: #2e931f;
    }

    #header .btn.logged-in .panel {
        display: none;
        position: absolute;
        right: 20px;
        top: 43px;
        border: 1px solid #c9c9c9;
        width: 230px;
        z-index: 103;
        background: #fefefe;
        padding: 15px;
        border-radius: 3px;
        border-top-right-radius: initial;
        background-image: linear-gradient(bottom, #E8E8E8 0%, #fefefe 57%) !important;
        background-image: -o-linear-gradient(bottom, #E8E8E8 0%, #fefefe 57%) !important;
        background-image: -moz-linear-gradient(bottom, #E8E8E8 0%, #fefefe 57%) !important;
        background-image: -webkit-linear-gradient(bottom, #E8E8E8 0%, #fefefe 57%) !important;
        background-image: -ms-linear-gradient(bottom, #E8E8E8 0%, #fefefe 57%) !important;
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #E8E8E8), color-stop(0.57, #fefefe)) !important;
        font-size: 12px;
        line-height: 1.3em;
    }

        #header .btn.logged-in .panel a {
            clear: both;
            font-size: 14px;
            float: left;
            margin-bottom: 1em;
            font-weight: normal;
            padding: 0;
            color: #222;
        }

            #header .btn.logged-in .panel a:hover {
                color: #076cdc;
            }

            #header .btn.logged-in .panel a.btn {
                margin-bottom: 0;
                width: 100%;
                color: #076cdc;
                font-weight: bold;
            }

    #header .btn.logged-in:hover .panel {
        display: inline-block;
    }

button .icon-caret-down, .btn .icon-caret-down {
    background-position: 50% -175px;
}


#locationAutocompleteResults {
    z-index: 100;
}

    #locationAutocompleteResults ul {
        border: 1px solid #c2c2c2;
        border-top: none;
        top: -5px;
        width: 254px;
    }

    #locationAutocompleteResults a.ui-state-focus {
        background: #fff;
        color: #076cdc;
    }

/*
--
-- Button - Play the trailer
--
*/
#now-playing a.btn.trailer {
    clear: both;
    width: 158px;
    color: #076cdc;
    padding: 0;
    margin-top: 5px;
}

.column-one #now-playing a.btn.trailer {
    width: 132px;
}

#now-playing a.btn.trailer:hover {
    color: #076cdc;
}

button .icon-play-trailer, .btn .icon-play-trailer {
    background-position: 50% -240px;
}



.center-column .list-view li .btn-box {
    padding: 20px 20px 0;
    background: #f5f5f5;
}



/*
--
-- Breadcrumb navigation
--
*/
.breadcrumb-nav {
    padding: 10px 10px 15px;
    display: table;
    width: 100%;
    font-size: 11px;
    float: left;
}

    .breadcrumb-nav a {
        color: #076cdc;
        line-height: 11px;
    }

    .breadcrumb-nav .breadcrumb-item {
        float: left;
        background: #cfe8ff;
        padding: 5px;
        padding-left: 27px;
        background: #cfe8ff url('/assets/img/backgrounds/sprite-breadcrumb-dividers.png') left -5px no-repeat;
    }

    .breadcrumb-nav .breadcrumb-text {
        color: #0062D3;
    }

    .breadcrumb-nav .breadcrumb-item:first-child {
        padding-left: 5px;
        background: #cfe8ff;
    }

    .breadcrumb-nav .breadcrumb-item.last {
        background: url('/assets/img/backgrounds/sprite-breadcrumb-dividers.png') left -35px no-repeat;
    }

    .breadcrumb-nav .icon-home {
        float: left;
        width: 11px;
        height: 10px;
        margin: 1px 5px 0 0;
        background: url('/assets/img/icons/icon-home-breadcrumb.png')no-repeat;
    }


/*
--
-- Navigation - Left-column
--
*/
.column-left-nav {
    margin: 0 10px 10px;
}

    .column-left-nav ul {
        font-family: dharma-gothic-regular;
        width: 135px;
    }

        .column-left-nav ul li {
            border-top: none;
            border-bottom: 1px dotted gray;
            padding: 5px 0 3px 3px;
        }

            .column-left-nav ul li:first-child {
                border-top: 1px dotted #808080;
            }

            .column-left-nav ul li a {
                font-size: 24px;
                color: #1d1d1d;
                letter-spacing: -.005em;
                line-height: 1em;
            }

.column-left-nav {
    float: left;
}

.layout .column-left-nav.fat {
    margin-right: 50px;
}

.layout .column-left-nav.skinny {
    margin-right: 10px;
}

.column-left-nav .left-nav a {
    text-transform: uppercase;
    font-family: dharma-gothic-regular;
}

/*
--
-- Main Content - one column main column
--
*/
.layout.one-column .center-column {
    float: left;
    width: 1198px;
}

.layout.one-column .content-internal {
    display: inline-block;
    margin: 10px;
}

.layout.one-column .column-nav {
    width: 135px;
    padding-right: 50px;
    float: left;
}

.layout.one-column .column-body {
    width: 993px;
    float: left;
}



.layout.two-column-left-nav-fat {
}

.layout .column-white-boxed {
    background: #fff;
    border: #ebebeb 1px solid;
    font-size: 12px;
    float: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.layout .column-one-left-nav-fat,
.layout .column-one-left-nav-skinny {
    width: 1214px;
}

.layout .column-one {
    float: left;
    width: 690px;
    margin: 0 14px 10px 0;
}

.layout .column-two {
    float: left;
    width: 302px;
}

.layout .column-one-item,
.layout .column-two-item {
    clear: both;
    float: left;
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    margin-right: 15px;
}

    .layout .column-one-item.full,
    .layout .column-two-item.full {
        margin-right: 0;
    }

.layout.two-column-left-nav-skinny .column-one-left-nav-skinny,
.layout.two-column-left-nav-fat .column-one-left-nav-fat {
    width: 902px;
    margin-right: 12px;
}

.layout.one-column-left-nav-fat .column-one {
    width: 1005px;
    margin-right: 0;
}

.layout.one-column-left-nav-skinny .column-one {
    width: 1045px;
    margin-right: 0;
}

.layout.two-column-left-nav-skinny .column-one {
    width: 744px;
    margin-right: 0;
}

.layout.two-column-left-nav-skinny .column-one-item {
    width: 730px;
}

    .layout.two-column-left-nav-skinny .column-one-item.full {
        width: 745px;
    }

.layout h1, 
.layout .faux-h1 {
    font-size: 24px;
    font-weight: bold;
    text-transform: none;
    line-height: 1em;
    width: 100%;
    border-bottom: 1px solid #b4b4b4;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

#promotions-items .now-playing-hdr h1 {
    width: 94%;
}

.layout h2, 
.layout .faux-h2 {
    font-size: 24px;
    font-weight: normal;
    text-transform: none;
    line-height: 1em;
    width: 100%;
}

.custom-scroll::-webkit-scrollbar {
    background: #fff;
    background: rgba(255, 255, 255, 0);
    width: 10px;
    height: 10px;
    opacity: 0;
    filter: Alpha(opacity=0);
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .075);
    border-radius: 5px;
}

.custom-scroll:hover::-webkit-scrollbar {
}

.custom-scroll:hover::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .150);
}





/*
	-- Form controls
*/
input.hasDatepicker {
    background: none;
    border: none;
    min-width: 150px;
}


/*
	-- Ratings
*/
.rating {
    margin: 3px 10px 0 0;
}

.rating {
    display: block;
    float: left;
    width: 12px;
    height: 15px;
    background: url('/assets/img/icons/sprite-icons-ratings.png') left top no-repeat;
}

    .rating.rating-g {
        background-position: 0 0px;
        width: 12px;
    }

    .rating.rating-pg {
        background-position: 0 -20px;
        width: 18px;
    }

    .rating.rating-pg13 {
        background-position: 0 -40px;
        width: 34px;
    }

    .rating.rating-r {
        background-position: 0 -60px;
        width: 14px;
    }

    .rating.rating-nc17 {
        background-position: 0 -80px;
        width: 30px;
    }




/*
	-- Amenities box
*/

.theatre-amenities {
    border: 1px solid #ebebeb;
    color: #4a4a4a;
    font-size: 13px;
    font-weight: normal;
    text-align: center;
    width: 170px;
    padding: 10px 0;
}

.theatre-amenities-icons {
    margin-top: 15px;
    display: block;
}


/*
	-- Location entry form over map
*/
.google-map {
    position: relative;
    height: 212px;
    overflow: hidden !important;
    background: url('/Assets/img/backgrounds/map-bg.jpg') center center no-repeat;
}

    .google-map .faded {
        opacity: .25;
    }

        .google-map .faded.light {
            opacity: .5;
        }


#location-entry {
    position: absolute;
    top: 70px;
    left: 50%;
    width: 265px;
    height: 100px;
    margin-left: -140px;
    z-index: 1001;
}

    #location-entry input::-webkit-input-placeholder {
        color: #222222;
    }

    #location-entry input::-moz-placeholder {
        color: #222222;
    }

    #location-entry input:-moz-placeholder {
        color: #222222;
    }

    #location-entry input::-ms-input-placeholder {
        color: #222222;
    }

    #location-entry .content {
        opacity: 1;
        font-size: 14px;
        font-weight: bold;
        position: relative;
    }

    #location-entry input, #location-entry button {
        border-radius: 3px;
        display: block;
        float: left;
        color: #222;
        font-size: 12px;
        text-indent: 1em;
        height: 32px;
        background: #fff;
        border: 1px solid #b7b7b7;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
        width: 222px;
    }

    #location-entry button {
        border-radius: 3px;
        float: right;
        width: 36px;
        height: 36px;
        padding: 0;
        background: #e0e0e0;
        text-align: center;
        background-color: #E8E8E8;
        background-image: linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
        background-image: -o-linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
        background-image: -moz-linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
        background-image: -webkit-linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
        background-image: -ms-linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #E8E8E8), color-stop(0.57, #F9F9F9)) !important;
    }

        #location-entry button span {
            width: 14px;
            height: 15px;
            margin-left: -10px;
            margin-top: 1px;
            background: url('/Assets/img/icons/icon-search.png') center center no-repeat;
        }

    #location-entry .input-field {
        position: relative;
        margin-top: 5px;
    }

    #location-entry .search-example {
        font-size: 12px;
        font-weight: normal;
        margin-top: 5px;
        float: left;
    }

.location-map .fandango-powered-by {
    height: 17px;
    margin-bottom: 2px;
}




/*
	-- Hover alerts
*/

.tooltip-blue-box {
    display: none;
    background: #f6f9fd;
    border: 1px solid #d9eafc;
    border-radius: 3px;
    padding: 25px 15px;
    position: absolute;
    z-index: 101;
    font-size: 11px;
    line-height: 17px;
    width: 161px;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(134, 134, 134, .23);
    box-shadow: 0px 1px 3px 0px rgba(134, 134, 134, .23);
}

    .tooltip-blue-box li {
        clear: both;
        float: left;
        margin-left: 15px;
        list-style-type: disc;
    }

    .tooltip-blue-box .arrow {
        width: 70px;
        height: 16px;
        overflow: hidden;
        position: absolute;
        left: 50%;
        margin-left: -25px;
        bottom: -16px;
    }


        .tooltip-blue-box, .tooltip-blue-box .arrow:after {
            background: #f6f9fd;
            border: 1px solid #d9eafc;
        }

            .tooltip-blue-box .arrow:after {
                content: "";
                position: absolute;
                left: 15px;
                top: -15px;
                width: 20px;
                height: 20px;
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg);
                tranform: rotate(45deg);
            }




#showtime-buy-tickets {
    display: none;
    background: #fcf2d7;
    border: 1px solid #edd8a1;
    padding: 14px 20px;
    position: absolute;
    z-index: 102;
    font-size: 14px;
    line-height: 17px;
    width: 580px;
    height: 58px;
    text-align: left;
}

    #showtime-buy-tickets .arrow {
        width: 70px;
        height: 16px;
        overflow: hidden;
        position: absolute;
        left: 50%;
        margin-left: -25px;
        bottom: -16px;
        outline: none;
    }


        #showtime-buy-tickets, #showtime-buy-tickets .arrow:after {
            background: #fcf2d7;
            border: 1px solid #edd8a1;
        }

            #showtime-buy-tickets .arrow:after {
                content: "";
                position: absolute;
                left: 15px;
                top: -15px;
                width: 20px;
                height: 20px;
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg);
                tranform: rotate(45deg);
            }

            #showtime-buy-tickets .arrow.top {
                top: -16px;
                bottom: auto;
            }

                #showtime-buy-tickets .arrow.top:after {
                    bottom: -20px;
                    top: auto;
                }

.modal-showtimes-tickets {
    z-index: 2001;
}

    .modal-showtimes-tickets .ui-dialog-titlebar {
        display: none;
    }

    .modal-showtimes-tickets .no-close .ui-dialog-titlebar-close {
        display: none;
    }


#showtime-buy-tickets .contents {
    width: 538px;
    height: 58px;
    color: #494949;
}

    #showtime-buy-tickets .contents h4 {
        font-size: 13px;
        font-weight: bold;
        margin-bottom: 4px;
    }

    #showtime-buy-tickets .contents .col {
        float: left;
    }

        #showtime-buy-tickets .contents .col.time-info {
            width: 130px;
        }

        #showtime-buy-tickets .contents .col.pricing {
            width: 70px;
            text-align: right;
        }

        #showtime-buy-tickets .contents .col.btn {
            float: right;
        }

    #showtime-buy-tickets .contents .btn {
        overflow: visible;
        width: 122px;
        font-size: 11px;
        padding: 0;
        margin: 0;
    }

























#movie-details {
    display: none;
    background: #fff;
    border: 2px solid #ebebeb;
    border-radius: 5px;
    padding: 30px;
    position: absolute;
    z-index: 102;
    font-size: 14px;
    line-height: 17px;
    width: 335px;
    height: 420px;
    text-align: left;
    -webkit-box-shadow: 0px 3px 4px 0px rgba(109, 109, 109, .59);
    box-shadow: 0px 3px 4px 0px rgba(109, 109, 109, .59);
}

    #movie-details .arrow {
        width: 20px;
        height: 20px;
        overflow: hidden;
        position: absolute;
        left: -20px;
        outline: none;
    }

        #movie-details, #movie-details .arrow:after {
            background: #fff;
            border: 2px solid #ebebeb;
        }

            #movie-details .arrow:after {
                content: "";
                position: absolute;
                left: 15px;
                top: 0px;
                width: 20px;
                height: 20px;
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg);
                tranform: rotate(45deg);
            }

            #movie-details .arrow.top {
                top: -16px;
                bottom: auto;
            }

                #movie-details .arrow.top:after {
                    bottom: -20px;
                    top: auto;
                }

.modal-movie-details {
    z-index: 2001;
}

    .modal-movie-details .ui-dialog-titlebar {
        display: none;
    }

    .modal-movie-details .no-close .ui-dialog-titlebar-close {
        display: none;
    }

#movie-details .contents {
    width: 335px;
    height: 420px;
}

    #movie-details .contents h2, #movie-details .contents h2 a {
        color: #076cdc;
        font-size: 18px;
        font-weight: bold;
        float: left;
        text-transform: none;
        line-height: 1.3em;
    }

#movie-details .movie-time {
    font-size: 12px;
    font-weight: normal;
    float: left;
    margin-top: 4px;
    margin-left: 10px;
}

    #movie-details .movie-time .rating {
        margin-top: 2px;
    }

#movie-details .synopsis {
    font-size: 13px;
    line-height: 20px;
    clear: both;
    float: left;
    margin: 20px 0;
}

.movie-details-area {
    width: 290px;
    font-size: 12px;
    margin-bottom: 15px;
}

    .movie-details-area tr, .movie-details-area td {
        padding: 0;
    }

    .movie-details-area .label {
        font-weight: bold;
        padding-right: 35px;
        padding-bottom: 5px;
    }

    .movie-details-area ul.formats li {
        float: left;
        padding-left: 20px;
    }

        .movie-details-area ul.formats li:first-child {
            padding: 0;
        }

#movie-details .btn.gray {
    color: #076cdc;
}



/* -- Showtime-result, reusable listing details -- */
.showtime-result {
    clear: both;
    float: left;
    font-size: 12px;
    color: #2f2f2f;
    margin-top: 30px;
    width: 100%;
}

    .showtime-result.additional-theatre {
        display: none;
        border-top: 6px solid #f1f1f1;
        padding-top: 30px;
    }

        .showtime-result.additional-theatre.first {
            border: none;
            padding-top: 0;
        }

        .showtime-result.additional-theatre.active {
            display: block;
        }

.location-results .showtime-result,
.theatre-detail .showtime-result {
}

.box-outline.active .showtime-result {
    border-bottom: none;
}

.showtime-result.box-outline {
    padding: 20px;
}

.showtime-result .image-area {
    float: left;
}

.showtime-result .results {
    display: inline-block;
    float: left;
    width: 100%;
}

.showtime-result .results-container {
    padding: 0 30px;
}

.showtime-result .result-info {
    clear: both;
    float: left;
    width: 100%;
    display: inline-block;
    background: #fff;
    border-top: 1px solid #e2e2e2;
    margin-top: 20px;
    padding-top: 20px;
}

    .showtime-result .result-info.header {
        background: transparent;
        border: none;
        margin: 0;
        padding: 0;
    }

        .showtime-result .result-info.header .result-left {
            margin-left: 30px;
        }

        .showtime-result .result-info.header .result-right {
            margin-right: 30px;
        }

    .showtime-result .result-info.even {
        // background: #e6f1fc;
    }

.showtime-result .result-left {
    float: left;
    margin: 0 30px 0 0;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
}

    .showtime-result .result-left .rating {
        margin-top: 3px;
    }

#showtimes-results .showtime-result .result-left .theatre-amenities-icons {
    margin-top: 3px;
}

.showtime-result .result-right {
    display: inline-block;
    float: right;
    width: 140px;
}

.theatre-detail .result-right {
    width: 350px;
}


.showtime-result .result-left .title {
    float: left;
    font-size: 12px;
}

.showtime-result .header .result-left .title {
    float: none;
}

.showtime-result .result-left .title a {
    color: #076cdc;
    font-size: 16px;
    font-weight: bold;
}

.showtime-result .result-info.header .title {
    font-size: 13px;
    /*margin-bottom: 10px;*/
}


.showtime-result .results-showtimes-set {
    clear: both;
}

    .showtime-result .results-showtimes-set li {
        width: 80px;
        float: left;
        margin: 10px 5px 10px 0;
    }

    .showtime-result .results-showtimes-set li {
        font-weight: bold;
        font-size: 13px;
        color: #777773 !important;
    }

    .showtime-result .results-showtimes-set a.showtime {
        color: #076cdc;
        font-weight: bold;
        font-size: 13px;
    }

        .showtime-result .results-showtimes-set a.showtime.matinee {
            color: #777773;
        }

.showtime-result .result-left {
    width: 260px;
}

.showtime-result.time-listing-4-wide .result-left {
    width: 435px;
}

.showtime-result.time-listing-5-wide .result-left {
    width: 440px;
}

.showtime-result.time-listing-6-wide .result-left {
    width: 530px;
}

.showtime-result.time-listing-6-wide .result-right {
    width: 260px;
}

.showtime-result.time-listing-6-wide.movie-detail .image-area {
    display: none;
}

.showtime-result.time-listing-6-wide.movie-detail .result-left {
    width: 630px;
}

.showtime-result.time-listing-6-wide.movie-detail .result-right {
    width: 230px;
}

.showtime-result.time-listing-6-wide.movie-detail .result-left {
    width: auto;
    max-width: 432px;
}

.showtime-result.time-listing-6-wide.movie-detail .result-right {
    float: right;
    width: 260px;
}


.showtime-result .performance-amenity-item {
    display: block;
    float: left;
    margin: -5px 0 10px;
}

.showtime-result .result-left .performance-amenity-item {
    margin-bottom: 0;
}

#showtimes-results .showtime-result-divider {
    margin: 20px 0;
    border-top: 1px solid #e2e2e2;
}

#showtimes-results .movie-detail-item {
    display: inline-block;
    width: 100%;
}

#showtimes-results .showtime-result.time-listing-6-wide {
    /* border: none; */
}

.showtime-result .result-left .formats-container {
    clear: both;
    margin-left: -5px;
    display: inline-block;
    float: left;
    width: 100%;
}

    .showtime-result .result-left .formats-container.first {
        border: none;
    }

.showtime-result .result-left .performance-amenity-item {
    margin: 0;
}

.message-box-red {
    background: #fde7e1;
    border: 1px solid #f26c4f;
    color: #D7090A;
    font-size: 13px;
    line-height: 18px;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.message-box-red-theatre {
    background: #fde7e1;
    border: 1px solid #f26c4f;
    color: #da0c0c;
    font-size: 13px;
    line-height: 18px;
    font-weight: bold;
    display: block;
    box-sizing: border-box;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 12px 25px 12px 25px;
    margin-bottom: 10px;
}

.message-box-red .message {
    margin: 12px 25px;
}

.message-box-red.single-span {
    margin: 12px 0 15px 0;
    padding: 12px 25px;
}

.message-box-blue {
    background: #eef5ff;
    border: 1px solid #95c2e8;
    color: #076cdc;
    font-size: 13px;
    line-height: 18px;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
}
/******************************************************/
/*Do not modifiy*/
.blue-message {
    background: #eef5ff;
    border: 1px solid #95c2e8;
    color: #076cdc;
    font-size: 13px;
    line-height: 18px;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.red-message {
    background: #fde7e1;
    border: 1px solid #f26c4f;
    color: #da0c0c;
    font-size: 13px;
    line-height: 18px;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.green-message {
    color: #238016;
    background: #fde7e1;
    border: 1px solid lightgreen;
    font-size: 13px;
    line-height: 18px;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
}
/******************************************************/
.message-box-blue .message {
    margin: 12px 25px;
}

.message-box-blue.single-span {
    margin: 12px 0 15px 0;
    padding: 12px 25px;
}

/* -- fixes to content from original site -- */
#mobile_content #mobile_info h1 {
    width: auto;
    padding-left: 0;
}

.layout h1.legacy {
    width: auto;
}

/* -- Fandango -- */
.fandango-powered-by {
    width: 127px;
    height: 33px;
    background: url('/assets/img/logos/powered-fandango.jpg') left bottom no-repeat;
    display: table;
    float: left;
    margin-right: 5px;
}

/* -- filter movie type -- */
.movie-format-filter {
    clear: both;
    float: left;
    width: 100%;
    position: relative;
    padding: 15px 0;
    display: inline-block;
    /* border: 1px solid red; */
    background: #f1f1f1;
    margin-bottom: 20px;
}

    .movie-format-filter .title {
        float: left;
        font-size: 12px;
        margin-right: 15px;
        margin-top: 5px;
        padding-left: 20px;
        font-weight: bold;
    }

    .movie-format-filter li {
        float: left;
        margin-left: 20px;
        display: block;
        font-size: 14px;
        color: #767776;
        font-weight: 600;
        cursor: pointer;
    }

        .movie-format-filter li a span {
            float: left;
        }

        .movie-format-filter li.text {
            margin-top: 3px;
            color: #767776 !important;
        }

            .movie-format-filter li.text.active {
                color: #000 !important;
            }

        .movie-format-filter li .imax {
            background: url('/assets/img/icons/amenities-light/amenities_light_imax.png') top left no-repeat;
            background-position: 0 0;
            width: 62px;
            height: 21px;
        }

        .movie-format-filter li.active .imax,
        .movie-format-filter li a:hover .imax {
            background: url('/assets/img/icons/amenities-dark/amenities_dark_imax.png') top left no-repeat;
        }

        .movie-format-filter li .imax3d {
            background: url('/assets/img/icons/amenities-light/amenities_light_imax3d.png') top left no-repeat;
            background-position: 0 0;
            width: 83px;
            height: 21px;
        }

        .movie-format-filter li.active .imax3d,
        .movie-format-filter li a:hover .imax3d {
            background: url('/assets/img/icons/amenities-dark/amenities_dark_imax3d.png') top left no-repeat;
        }


        .movie-format-filter li .reald3d {
            background: url('/assets/img/icons/amenities-light/amenities_light_reald3d.png') top left no-repeat;
            background-position: 0 0;
            width: 73px;
            height: 21px;
        }

        .movie-format-filter li.active .reald3d,
        .movie-format-filter li a:hover .reald3d {
            background: url('/assets/img/icons/amenities-dark/amenities_dark_reald3d.png') top left no-repeat;
        }

.ads-3-wide-footer .promotion {
    float: left;
    margin-right: 35px;
}

.ads-3-wide-footer .rr-promo {
    margin-bottom: 0;
}

#search-results-tabs {
    margin: 10px;
    clear: both;
}

    #search-results-tabs .tabs-nav li {
        width: 284px;
    }

#support-email-rcc {
    width: 100%;
    height: 85px;
    font-family: Helvetica, Arial, sans-serif;
    float: none;
    clear: both;
    padding-top: 1%;
}

    #support-email-rcc a:visited {
        color: #076cdc;
    }

    #support-email-rcc div {
        font-weight: bold;
    }

    #support-email-rcc a {
        text-decoration: none;
        display: inline;
    }

    #support-email-rcc img {
        width: 17px;
        height: 12px;
    }

    #support-email-rcc span {
        color: #076cdc;
        padding-left: .5%;
    }

    #support-email-rcc .containing-box {
        border: solid;
        border-color: rgb(217,217,217);
        border-radius: 5px;
        background-color: rgb(242,242,242);
        width: 500px;
        height: 80px;
        border-width: 1px;
        margin-right: auto;
        margin-left: auto;
    }

    #support-email-rcc .outer-box {
        margin-left: auto;
        margin-right: auto;
        width: 95%;
        text-align: center;
        padding: 1%;
    }

    #support-email-rcc .inner-box {
        border: solid;
        border-radius: 5px;
        background-color: #E8E8E8;
        background-image: linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
        background-image: -o-linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
        background-image: -moz-linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
        background-image: -webkit-linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
        background-image: -ms-linear-gradient(bottom, #E8E8E8 0%, #F9F9F9 57%) !important;
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #E8E8E8), color-stop(0.57, #F9F9F9)) !important;
        border-color: rgb(201, 201, 201);
        display: inline-block;
        padding: 8px;
        padding-left: 15px;
        padding-right: 15px;
        border-width: 1px;
        font-size: 14px;
        font-weight: normal;
        overflow: hidden;
        cursor: pointer;
    }

        #support-email-rcc .inner-box.small-box {
            width: 112px;
            margin-right: 2%;
        }

        #support-email-rcc .inner-box.large-box {
            width: 59%;
        }

    #support-email-rcc .heading-text {
        padding-bottom: 2%;
        padding-top: 2%;
    }

.adSenseBlock-container {
    text-align: center;
    margin-bottom: 20px;
}

.legacyButton {
    color: #076cdc;
    border: #c9c9c9 1px solid;
    text-indent: 0;
}
