@import url(https://fonts.googleapis.com/css?family=Nunito:400,300,600,700);

body {
	margin:0px auto;
	font-family:Nunito;
    background-color:#F9F9F9;
    transition: all .5s linear;
}

a:link {
	color:#499EE6;
	text-decoration:none;
}

a:hover {
	color:#499EE6;
	text-decoration:underline;
}

a:visited {
	color:#499EE6;
	text-decoration:none;
}

input[type="text"], input[type="email"], input[type="password"], input[type="number"], textarea {
    background-color:#ffffff;
    border: 0;
    border-radius: 4px;
    color: #333333;
    font-family:Nunito;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    outline: 0;
    box-shadow: 0 0 0 1px rgba(42,47,69,.1), 0 2px 5px 0 rgba(42,47,69,.1), 0 1px 1.5px 0 rgba(0,0,0,.07), 0 1px 2px 0 rgba(0,0,0,.08), 0 0 0 0 transparent;
    -webkit-appearance: none;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    -webkit-box-shadow: 0px 0px 3px 2px #499EE6;
    -moz-box-shadow: 0px 0px 3px 2px #499EE6;
    box-shadow: 0px 0px 3px 2px #499EE6;
}

select {
    background-color:#ffffff;
    border: 0;
    border-radius: 4px;
    color: #333333;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    outline: 0;
    box-shadow: 0 0 0 1px rgba(42,47,69,.1), 0 2px 5px 0 rgba(42,47,69,.1), 0 1px 1.5px 0 rgba(0,0,0,.07), 0 1px 2px 0 rgba(0,0,0,.08), 0 0 0 0 transparent;
}

button, input[type="button"], input[type="submit"] {
    -webkit-appearance: none;
}

button:disabled, input[type="button"]:disabled, input[type="submit"]:disabled {
    opacity:.5;
    cursor:not-allowed;
}

::-webkit-input-placeholder {
   color: #999999;
}

:-moz-placeholder { /* Firefox 18- */
   color: #999999; 
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #999999;  
}

:-ms-input-placeholder {  
   color: #999999;
}

.clear {
	clear:both;
}

.hidden_span {
    display:none;
}

.mobile_show {
    display:none;
}

.mobile_hide {
    display:inherit;
}


/* Generic */

.red_dot {
    display:inline-block;
    width:12px;
    height:12px;
    background-color:#C74343;
    border-radius:6px;
}

.generic_button {
    width:100%;
    min-width:110px;
    height:35px;
    font-size:14px;
    font-weight:500;
    color:#212121;
    text-align:center;
    background-color: #ffffff;
    border-radius: 4px;
    border:0px;
    cursor:pointer;
    outline:none;
    box-shadow: 0 0 0 1px rgba(42,47,69,.1), 0 2px 5px 0 rgba(42,47,69,.1), 0 1px 1.5px 0 rgba(0,0,0,.07), 0 1px 2px 0 rgba(0,0,0,.08), 0 0 0 0 transparent;
}

.action_button {
    width:auto;
    height:35px;
    font-size:14px;
    font-weight:500;
    color:#212121;
    text-align:center;
    background-color: #ffffff;
    border-radius: 4px;
    border:0px;
    cursor:pointer;
    outline:none;
    box-shadow: 0 0 0 1px rgba(42,47,69,.1), 0 2px 5px 0 rgba(42,47,69,.1), 0 1px 1.5px 0 rgba(0,0,0,.07), 0 1px 2px 0 rgba(0,0,0,.08), 0 0 0 0 transparent;
    padding-left:10px;
    padding-right:10px;
}

.red_button {
    background-color:#C74343 !important;
    color:#ffffff !important;
    box-shadow: 0 0 0 1px #c74343, 0 2px 5px 0 rgba(42, 47, 69, 0.13), 0 1px 1.5px 0 rgba(0,0,0,.07), 0 1px 2px 0 rgba(0,0,0,.08), 0 0 0 0 transparent !important;
}

.red_button:hover {
    background-color:#BB3B3B;
    color:#ffffff;
}

.blue_button {
    background-color:#499EE6;
    color:#ffffff;
    box-shadow: 0 0 0 1px rgb(73, 157, 226), 0 2px 5px 0 rgba(42, 47, 69, 0.13), 0 1px 1.5px 0 rgba(0,0,0,.07), 0 1px 2px 0 rgba(0,0,0,.08), 0 0 0 0 transparent;
}

.blue_button:hover {
    background-color:#4C98D9;
}

.button_large {
    height:40px;
}

.yellow_alert {
    color:#8a6d3b;
    background-color:#fcf8e3;
    padding:10px;
    box-sizing:border-box;
    border:1px #faebcc solid;
    -webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
    -moz-box-shadow:    1px 1px 1px 0px #e5e5e5;
	  -webkit-box-shadow: 1px 1px 1px 0px #e5e5e5;
	  box-shadow:         1px 1px 1px 0px #e5e5e5; 
}

.yellow_alert p {
    margin:5px;
}

.red_alert {
    color:#a94442;
    background-color:#f2dede;
    padding:10px;
    box-sizing:border-box;
    border:1px #ebccd1 solid;
    -webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
    -moz-box-shadow:    1px 1px 1px 0px #e5e5e5;
	  -webkit-box-shadow: 1px 1px 1px 0px #e5e5e5;
	  box-shadow:         1px 1px 1px 0px #e5e5e5;
}

.green_alert {
    color: #3c763d;
    background-color: #dff0d8;
    padding:10px;
    box-sizing:border-box;
    border:1px #d6e9c6 solid;
    -webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
    -moz-box-shadow:    1px 1px 1px 0px #e5e5e5;
	  -webkit-box-shadow: 1px 1px 1px 0px #e5e5e5;
	  box-shadow:         1px 1px 1px 0px #e5e5e5;
}

.blue_alert {
    color: #31708f;
    background-color: #d9edf7;
    padding:10px;
    box-sizing:border-box;
    border:1px #bce8f1 solid;
    -webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
    -moz-box-shadow:    1px 1px 1px 0px #e5e5e5;
	  -webkit-box-shadow: 1px 1px 1px 0px #e5e5e5;
	  box-shadow:         1px 1px 1px 0px #e5e5e5;
}

.red_span {
    color:#C74343;
}

.blue_span {
    color:#499EE6;
}

.body_dark {
    background-color:#000000;
    transition: all .5s linear;
}

/* Header */

.header {
    width:100%;
    height:50px;
    background-color:#ffffff;
    border-bottom:1px #F1F1F1 solid;
    box-sizing:border-box;
    transition: all .5s linear;
}

.header_dark {
    background-color:#000000;
    border-bottom:1px #000000 solid;
    transition: all .5s linear;
}

.header_admin {
    background-color:#C74343 !important;
}

.header_admin .header_nav_item {
    color:#ffffff;
}

.header_admin .header_nav_name {
    color:#ffffff;
}

.header_content {
    position:relative;
    margin:0px auto;
    width:100%;
    max-width:1024px;
    text-align:center;
}

.header_logo {
    position:absolute;
    top:0px;
    left:0px;
    padding-top:15px;
    padding-left:15px;
}

.header_logo img {
    display:block;
    height:22px;
}

.header_nav {
    position:absolute;
    top:0px;
    right:0px;
    padding-right:15px;
}

.header_nav a {
    text-decoration:none !important;
}

.header_nav_name {
    display:inline-block;
    font-size:15px;
    text-align:center;
    color:#212121;
    padding:15px;
    padding-left:0px;
    box-sizing:border-box;
    transition: all .5s linear;
}

.header_nav_name a {
    color:#212121;
}

.header_nav_name_dark a {
    color:#555555 !important;
    transition: all .5s linear;
}

.header_nav_item {
    position:relative;
    display:inline-block;
    vertical-align: top;
    height: 49px;
    line-height: 50px;
    font-size:15px;
    text-align:center;
    color:#212121;
    padding-left:20px;
    padding-right:20px;
    text-decoration:none !important;
    cursor:pointer;
}

.header_nav_item:hover {
    background-color:#b73c3b;
    color:#ffffff;
}

.header_nav_item_active {
    background-color:#b73c3b;
    color:#ffffff;
    font-weight:600;
}

.header_nav_item_active:hover {
    background-color:#C74343;
}

.header_nav_item a {
    color:#212121 !important;
}

.header_nav_item_active a {
    color:#ffffff !important;
}

.header_nav_dropdown {
    display:none;
    position:absolute;
    left:-4px;
    width:185px;
    background-color:#ffffff;
    z-index:10000000;
    border-bottom-left-radius:3px;
    border-bottom-right-radius:3px;
    box-shadow:0 1px 24px 0 rgba(0,0,0,0.08);
}

.header_nav_dropdown_item {
    position:relative;
    display:block;
    width:100%;
    height:40px;
    line-height:40px;
    font-size:15px;
    color:#212121;
    text-align:left;
    padding-left:20px;
    padding-right:20px;
    box-sizing:border-box;
    transition: all 0.5s ease;
    cursor:pointer;
}

.header_nav_dropdown_item:hover {
    background-color:#f9f9f9;
    transition: all 0.5s ease;
}

.header_nav_dropdown_item_text {
    float:left;
}

.header_nav_dropdown_item_icon {
    float:left;
    width:40px;
    margin-top:-4px;
}

.header_nav_dropdown_item i {
    font-size:18px;
    margin-top:14px;
}

.header_nav_help {
    display:inline-block;
    font-size:20px;
    text-align:center;
    color:#ffffff;
    padding-left:15px;
    box-sizing:border-box;
}

.header_nav_help i {
    position:relative;
    top:15px;
}

.header_nav_help a {
    color:#ffffff;
}

.mobile_nav_item {
    font-size:18px;
    padding:15px;
}

/* Footer */

.footer {
    width:100%;
    text-align:center;
    color:#999999;
    font-size:14px;
    margin-top:50px;
    margin-bottom:50px;
    transition: all .5s linear;
}

.footer_dark {
    color:#555555;
    transition: all .5s linear;
}

.footer_dark a {
    color:#555555;
    transition: all .5s linear;
}


/* Page */

.page {
    margin:0px auto;
    width:100%;
    max-width:750px;
    box-sizing:border-box;
}

.page_block_holder {
    width:100%;
}

.page_block {
    position:relative;
    margin:0px auto;
    width:100%;
    max-width:600px;
    background-color:#ffffff;
    border:1px #F1F1F1 solid;
    border-radius:3px;
    padding:20px;
    margin-bottom:35px;
    box-sizing:border-box;
    box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.02), 0 3px 6px 0 rgba(0, 0, 0, 0.06);
}

.page_block_gray {
    margin:0px auto;
    width:100%;
    max-width:600px;
    background-color:#f9f9f9;
    border-radius:3px;
    padding:20px;
    margin-bottom:35px;
    box-sizing:border-box;
}

.page_block_header {
    margin:0px auto;
    width:100%;
    max-width:600px;
    min-height:50px;
    background-color:#F9F9F9;
    color:#212121;
    font-weight:bold;
    padding:20px;
    border:1px #F1F1F1 solid;
    border-bottom:0px;
    box-sizing:border-box;
    border-top-left-radius:3px;
    border-top-right-radius:3px;
    box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.02), 0 3px 6px 0 rgba(0, 0, 0, 0.06);
}

.page_block_header_right {
    float:right;
    font-size:15px;
    font-weight:normal;
}

.page_block_no_top_radius {
    border-top-left-radius:0px;
    border-top-right-radius:0px;
}

.page_block_no_top_padding {
    padding-top:10px;
}

.page_block_no_bottom_padding {
    padding-bottom:10px;
}

.page_block_no_padding {
    padding:0px;
}

.page_block_item {
    width:100%;
    padding:15px;
    border-bottom:1px #f1f1f1 solid;
    box-sizing:border-box;
}

.page_block_item_left {
    font-size:15px;
}

.page_block_item_right {
    float:right;
}

.page_block_item_right .action_button {
    margin-left:10px;
}

.page_header {
    margin:0px auto;
    width:100%;
    max-width:600px;
    text-align:center;
    padding-top:50px;
    padding-bottom:50px;
}

.page_header_small {
    text-align:left;
    padding-top:30px;
    padding-bottom: 20px;
    line-height: 40px;
}

.page_header_title {
    font-size:23px;
    font-weight:600;
}

.page_header_subtitle {
    font-size:15px;
    font-weight:200;
    padding-top:10px;
}

.page_header_actions {
    float:right;
}

.page_divider {
    margin:0px auto;
    width:100%;
    max-width:300px;
    height:1px;
    border-top:1px #F1F1F1 solid;
    margin-top:50px;
    margin-bottom:50px;
}

.page_faq_item {
    margin:0px auto;
    width:100%;
    max-width:600px;
    margin-bottom:30px;
}

.page_faq_title {
    font-size:20px;
    font-weight:600;
    margin-bottom:15px;
}

.page_faq_body {
    font-size:15px;
    line-height:20px;
    font-weight:200;
}

.page_faq_platform_logo {
    display:inline-block;
    height:30px;
    padding:10px;
    vertical-align:middle;
}

.page_faq_title_icon {
    position:absolute;
    top:-20px;
    left:-20px;
    width:40px;
    height:40px;
    text-align:center;
    color:#333333;
    border-radius:20px;
}

.page_faq_title_icon i {
    margin-top:12px;
}

.page_block_show {
    margin:0px auto;
    width:100%;
    max-width:600px;
    background-color:#ffffff;
    border:1px #F1F1F1 solid;
    border-radius:3px;
    margin-bottom:50px;
    box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.02), 0 3px 6px 0 rgba(0, 0, 0, 0.06);
}

.page_block_show_image {
    width:100%;
    height:250px;
    background-position:center center;
    background-size:cover;
    background-repeat:no-repeat;
    border-top-left-radius:3px;
    border-top-right-radius:3px;
}

.page_block_show_image img {
    width:100%;
    height:100%;
}

.page_block_show_body {
    width:100%;
}

.page_block_show_heading {
    width:100%;
    min-height:65px;
    padding:20px;
    box-sizing:border-box;
}

.page_block_show_heading_title {
    font-size:20px;
    font-weight:600;
    color:#212121;
}

.page_block_show_heading_actions {
    position:relative;
    float:right;
}

.page_block_show_heading_actions a {
    text-decoration:none;
}

.page_block_show_heading_action_item {
    font-size:14px;
    padding-left:20px;
}

.page_block_show_heading_action_item_admin {
    display:inline-block;
    height: 30px;
    line-height: 30px;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 100;
    color: #333333;
    border-radius: 3px;
    cursor: pointer;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 10px;
    box-shadow: 0 0 0 1px rgba(42,47,69,.1), 0 2px 5px 0 rgba(42,47,69,.1), 0 1px 1.5px 0 rgba(0,0,0,.07), 0 1px 2px 0 rgba(0,0,0,.08), 0 0 0 0 transparent;
}

.page_block_show_heading_action_item_admin:hover {
    box-shadow: 0 0 0 1px rgba(42,47,69,.1), 0 2px 5px 0 rgba(42,47,69,.12), 0 3px 9px 0 rgba(42,47,69,.08), 0 1px 1.5px 0 rgba(0,0,0,.08), 0 1px 2px 0 rgba(0,0,0,.08);
}

.page_block_showtime {
    width: 100%;
    min-height: 60px;
    font-size: 15px;
    line-height: 37px;
    color:#212121;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    padding-bottom: 10px;
    border-top:1px #F9F9F9 solid;
    border-left:1px #F9F9F9 solid;
    box-sizing:border-box;
}

.page_block_showtime:hover {
    cursor:pointer;
    background-color:#f9f9f9;
}

.page_block_showtime_action {
    float:right;
}

.page_block_showtime_action_centered {
    float:none;
    margin:0px auto;
    text-align:center;
    width:110px;
}

.page_block_showtime_action a {
    text-decoration:none;
}

.page_block_description {
    font-size:14px;
    background-color:#f9f9f9;
    padding:20px;
    border-top:1px #ececec solid;
}

.page_block_show_live_label {
    display:inline-block;
    font-size:14px;
    font-weight:600;
    padding-left:10px;
}

.page_block_show_live_label .red_dot {
    float:left;
    margin-right:5px;
    margin-top:3px;
}

.page_block_options {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin:0px auto;
    width:100%;
    max-width:600px;
    background-color:#ffffff;
    border:1px #F1F1F1 solid;
    border-radius:3px;
    margin-bottom:35px;
    box-sizing:border-box;
    box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.02), 0 3px 6px 0 rgba(0, 0, 0, 0.06);
}

.page_block_option_item {
    height:50px;
    width:50%;
}

.page_block_option_item a {
    text-decoration:none;
}

.page_block_option_item_content {
    height:100%;
    line-height:50px;
    text-align:center;
    background-color:#f9f9f9;
    color:#999999;
    font-size:16px;
    cursor:pointer;
    border-radius:3px;
}

.page_block_option_item_content:hover {
    color:#212121;
}

.page_block_option_item_content_active {
    background-color:#499EE6;
    color:#ffffff;
    font-weight:bold;
}

.page_block_option_item_content_active:hover {
    color:#ffffff;
}

.page_block_list_item {
    width: 100%;
    min-height: 60px;
    font-size: 15px;
    line-height: 37px;
    color:#212121;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    padding-bottom: 10px;
    border-top:1px #F9F9F9 solid;
    border-left:1px #F9F9F9 solid;
    box-sizing:border-box;
}

.page_block_list_item_action {
    float:right;
}

.page_block_list_item_action_centered {
    float:none;
    margin:0px auto;
    text-align:center;
    width:110px;
}

.page_block_list_item_action a {
    text-decoration:none;
}

.page_block_list_action_item {
    display:inline-block;
    height: 30px;
    line-height: 30px;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 100;
    color: #333333;
    border-radius: 3px;
    border:0px;
    cursor: pointer;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 10px;
    box-shadow: 0 0 0 1px rgba(42,47,69,.1), 0 2px 5px 0 rgba(42,47,69,.1), 0 1px 1.5px 0 rgba(0,0,0,.07), 0 1px 2px 0 rgba(0,0,0,.08), 0 0 0 0 transparent;
}

.page_block_list_action_item:hover {
    box-shadow: 0 0 0 1px rgba(42,47,69,.1), 0 2px 5px 0 rgba(42,47,69,.12), 0 3px 9px 0 rgba(42,47,69,.08), 0 1px 1.5px 0 rgba(0,0,0,.08), 0 1px 2px 0 rgba(0,0,0,.08);
}

.page_search_box {
    width:100%;
    margin-top:20px;
}

.page_search_box input {
    width:100%;
    height:35px;
    box-sizing:border-box;
    padding-left:10px;
    padding-right:10px;
}

/* Widget */

.widget {
    text-align:center;
}

.widget_block_show {
    display:inline-block;
    width:100%;
    max-width:370px;
    min-height: 320px;
    text-align:left;
    background-color:#ffffff;
    border:1px #F1F1F1 solid;
    border-radius:3px;
    margin:10px;
    vertical-align:top;
}

.widget_block_showtime {
    width: 100%;
    min-height: 60px;
    font-size: 15px;
    line-height: 37px;
    color:#212121;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    padding-bottom: 10px;
    border-top:1px #F9F9F9 solid;
    border-left:1px #F9F9F9 solid;
    box-sizing:border-box;
}

.page_block_showtime_action a {
    text-decoration:none;
}

.widget_block_showtime_action {
    display:block;
}

.widget_block_show_image {
    width:100%;
    height:150px;
    background-position:center center;
    background-size:cover;
    background-repeat:no-repeat;
    border-top-left-radius:3px;
    border-top-right-radius:3px;
}

.widget_block_show_image img {
    width:100%;
    height:100%;
}

/* Watch Page */

.watch_page {
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 39%;
    height: 0; 
    overflow: hidden;
    margin-right:30%;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index:10;
}

.video-container-blocker {
    position:absolute;
    top:0px;
    left:0px;
    height:80px;
    width:100%;
    background-color:transparent;
    z-index:100;
}

.watch_page_right {
    position: absolute;
    width:30%;
    height:100%;
    top: 0;
    right: 0;
    background-color:#ffffff;
    border:1px #f1f1f1 solid;
    padding-top:40px;
    box-sizing:border-box;
}

.watch_page_right_top {
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:40px;
    border-bottom:1px #f1f1f1 solid;
}

.watch_page_right_top_tab {
    float:left;
    height:40px;
    font-size:13px;
    font-weight:300;
    line-height:40px;
    padding-left:15px;
    padding-right:15px;
    cursor:pointer;
}

.watch_page_right_top_tab_active {
    color:#c74443;
    font-weight:900;
}

.watch_page_right_top_tab i {
    margin-right:5px;
}

.watch_page_right_top_tab:hover {
    color:#c74443;
}

.watch_page_right_feed {
    height:100%;
    box-sizing:border-box;
}

.chat-container iframe,
.chat-container object,
.chat-container embed {
    width: 100%;
}

.watch_page_info_overlay {
    position:absolute;
    top:30px;
    height:95%;
    width:100%;
    z-index:100000;
}

.watch_page_info_overlay_background {
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    background-color:#000000;
    opacity:0.85;
}

.watch_page_info_overlay_content {
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    text-align:center;
    padding:20px;
    box-sizing:border-box;
}

.watch_tabs {
    width:100%;
    height:40px;
    text-align:center;
    padding-top:20px;
    padding-bottom:20px;
}

.watch_tabs a {
    color:#000000;
}

.watch_tab {
    display:inline-block;
    height:40px;
    line-height:40px;
    text-align:center;
    font-size:16px;
    background-color:#dedede;
    padding-left:13px;
    padding-right:13px;
    cursor:pointer;
    border-radius:20px;
}

.watch_tab:hover {
    background-color:#c74343;
    color:#ffffff;
}

.watch_tab_active {
    background-color:#c74343;
    color:#ffffff;
    font-weight:bold;
    border-radius:20px;
}

.watch_tab_active:hover {
    background-color:#c74343;
    color:#ffffff;
    font-weight:bold;
}

.watch_tab_label {
    color:#999999;
    background-color:transparent;
}

/* Donation Container */

.donation_container {
    position:relative;
    width:100%;
    height:100%;
}

.donation_cta {
    position:absolute;
    bottom:0px;
    left:0px;
    width:100%;
    padding:15px;
    box-sizing:border-box;
    background-color:#ffffff;
    border-top:1px #f1f1f1 solid;
    z-index:10000;
}

.donation_form {
    display:none;
}

.donation_feed {
    overflow-y:scroll;
}

.donation_feed_item {
    width:100%;
    font-size:13px;
    padding:15px;
    padding-bottom:10px;
    padding-top:10px;
    box-sizing:border-box;
}

.donation_feed_item_timestamp {
    float:right;
    color:#999999;
    font-size:13px;
    padding-top:3px;
}

.donation_suc_banner {
    display:none;
    position:absolute;
    bottom:0px;
    left:0px;
    width:100%;
    height:70px;
    line-height:70px;
    font-size:18px;
    text-align:center;
    color:#ffffff;
    background-color:#499EE6;
    z-index:10000;
}

.donation_fail_banner {
    display:none;
    position:absolute;
    bottom:0px;
    left:0px;
    width:100%;
    height:70px;
    line-height:70px;
    font-size:18px;
    text-align:center;
    color:#ffffff;
    background-color:#c74443;
    z-index:10000;
}


/* Chat Container */

.chat_container {
    position:relative;
    width:100%;
    height:100%;
}

.chat_cta {
    position:absolute;
    display: flex;
    bottom:0px;
    left:0px;
    width:100%;
    padding:15px;
    box-sizing:border-box;
    background-color:#ffffff;
    border-top:1px #f1f1f1 solid;
    z-index:10000;
}

.chat_flex {
  flex: 1;
  display: flex !important;
}

.chat_flex input {
    flex: 1 !important;
    font-size:14px;
    padding-left:10px;
    padding-right:10px;
}

.chat_feed_item {
    width:100%;
    font-size:13px;
    padding:15px;
    padding-bottom:10px;
    padding-top:10px;
    box-sizing:border-box;
}

.chat_feed_item_timestamp {
    float:right;
    color:#999999;
    font-size:13px;
    padding-top:3px;
}

.chat_feed_delete {
    display:inline-block;
    margin-left:5px;
    cursor:pointer;
}

.chat_feed_delete:hover {
    color:#c74443;
}

.chat_suc_banner {
    display:none;
    position:absolute;
    bottom:0px;
    left:0px;
    width:100%;
    height:70px;
    line-height:70px;
    font-size:18px;
    text-align:center;
    color:#ffffff;
    background-color:#499EE6;
    z-index:10000;
}

.chat_fail_banner {
    display:none;
    position:absolute;
    bottom:0px;
    left:0px;
    width:100%;
    height:70px;
    line-height:70px;
    font-size:18px;
    text-align:center;
    color:#ffffff;
    background-color:#c74443;
    z-index:10000;
}

.chat_delete_banner {
    display:none;
    position:absolute;
    bottom:0px;
    left:0px;
    width:100%;
    height:70px;
    line-height:70px;
    font-size:18px;
    text-align:center;
    color:#ffffff;
    background-color:#499EE6;
    z-index:10000;
}


/* Page Forms */

.page_input_holder {
    width:100%;
    padding-bottom:15px;
}

.page_input_holder_50 {
    display:inline-block;
    width:48%;
}

.page_input_holder input[type="text"], .page_input_holder input[type="email"], .page_input_holder input[type="password"], .page_input_holder select {
    width:100%;
    height:45px;
    font-size:15px;
    padding-left:15px;
    padding-right:15px;
    line-height: 20px;
    box-sizing:border-box;
}

.page_input_holder input[type="number"] {
    width:80px;
    height:45px;
    font-size:15px;
    padding-left:15px;
    padding-right:15px;
    line-height: 20px;
    box-sizing:border-box;
}

.page_input_holder textarea {
    width:100%;
    height:90px;
    font-size:15px;
    padding:15px;
    line-height: 20px;
    box-sizing:border-box;
}

.page_input_holder button {
    height:45px;
    font-size:16px;
}

.page_input_holder label {
    display:inline-block;
    font-size:15px;
    font-weight:700;
    padding-bottom:10px;
}

.page_input_label {
    font-size:15px;
    font-weight:700;
    padding-bottom:10px;
}

.page_input_label_right {
    float:right;
}

.page_input_label_description {
    font-size:14px;
    color:#999999;
    padding-bottom:10px;
    margin-top:-5px;
}

.page_form_item {
    width:100%;
    padding:20px;
    box-sizing:border-box;
}

.page_form_item_left {
    display:inline-block;
    width:200px;
    vertical-align:top;
    padding-right:20px;
}

.page_form_item_right {
    display:inline-block;
    vertical-align:top;
    max-width:300px;
    width:100%;
}

.page_form_item_description {
    display:block;
    width:100%;
    font-size:14px;
    color:#999999;
}

.page_form_item input[type="text"], .page_form_item input[type="email"], .page_form_item input[type="password"], .page_form_item input[type="number"], .page_form_item select {
    width:100%;
    height:40px;
    font-size:15px;
    padding-left:15px;
    padding-right:15px;
    line-height: 20px;
    box-sizing:border-box;
    margin-top:5px;
}

.page_form_item textarea {
    width:100%;
    height:90px;
    font-size:15px;
    padding:15px;
    line-height: 20px;
    box-sizing:border-box;
    margin-top:5px;
}

.page_price_item {
    position:relative;
    width:100%;
    margin-bottom:20px;
}

.page_price_item:last-child {
    margin-bottom:0px;
}

.page_price_item_content {
    cursor:pointer;
    padding:15px;
    border:1px #c3c3c3 solid;
    border-radius:3px;
    box-sizing:border-box;
    border: 1px #f1f1f1 solid;
    transition: .4s;
}

.page_price_item_content:not(.add_on_item_content):hover {
    border: 3px #c74241 solid;
    padding:13px;
}

.page_price_item_content_active {
    border: 3px #c74241 solid;
    padding:13px;
}

.page_price_item_name {
    font-size:18px;
    font-weight:bold;
    color:#212121;
    text-transform:uppercase;
    padding-bottom:10px;
}

.page_price_item_description {
    font-size:14px;
    color:#999999;
}

.page_price_item_price {
    float:right;
    font-size:18px;
    color:#212121;
}

.page_price_item_image {
    float:left;
    width:60px;
    height:60px;
    font-size:14px;
    font-weight:normal;
    line-height:16px;
    text-align:center;
    color:#999999;
    background-color:#ffffff;
    border:1px #e5e5e5 solid;
    background-size:contain;
    background-position:center center;
    background-repeat:no-repeat;
    padding-top:13px;
    box-sizing:border-box;
    margin-right:20px;
}

.page_price_item_image_patron {
    float:left;
    width:150px;
    margin-right:10px;
}

.page_nyop_label {
    font-size:14px;
    background-color:#4a9ee6;
    color:#ffffff;
    padding:5px;
    padding-left:15px;
    padding-right:15px;
    border-radius:20px;
}

.page_summary_item {
    width:100%;
    color:#212121;
    font-size:16px;
    padding:20px;
    box-sizing:border-box;
    border-bottom:1px #f9f9f9 solid;
}

.page_summary_item_price {
    float:right;
}

.page_summary_note {
    width:100%;
    color:#212121;
    font-size:14px;
    padding:20px;
    box-sizing:border-box;
    line-height:20px;
}

.page_summary_item_delete {
    cursor:pointer;
    padding-right:5px;
}

.page_summary_item_delete:hover {
    color:#c74343;
}

/* Add-Ons */

.add_on_item {
    position:relative;
}

.add_on_item_content {
    cursor:default;
}

.add_on_item_success {
    display:none;
    position:absolute;
    bottom:0px;
    width:100%;
    min-height:60px;
    background-color:#93c742;
    color:#ffffff;
    font-size:16px;
    text-align:center;
    border: 1px #f1f1f1 solid;
    border-radius:3px;
    padding:10px;
    padding-top:17px;
    box-sizing:border-box;
}

.access_code_suc_title {
    font-size:18px;
    font-weight:bold;
    color:#212121;
}

.access_code_block {
    display:inline-block;
    width:250px;
    height:60px;
    line-height:60px;
    color:#ffffff !important;
    font-size:32px !important;
    background-color:#C74343 !important;
    text-align:center;
    padding-left:30px;
    padding-right:30px;
    border:0px;
    border-radius:3px;
    box-sizing:border-box !important;
    box-shadow:none !important;
    cursor:pointer;
}

.access_code_step_number {
    display:inline-block;
    width:36px;
    height:36px;
    font-size:18px;
    color:#c74142;
    line-height:36px;
    border:1px #c74142 solid;
    border-radius:50%;
    margin-bottom:10px;
    margin-top:20px;
}

/* Add event modules */

.event_type_boxes {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.event_type_box {
    display:inline-block;
    width:33%;
    padding-left:10px;
    padding-right:10px;
    box-sizing:border-box;
}

.event_type_box_disabled {
    display:inline-block;
    width:33%;
    padding-left:10px;
    padding-right:10px;
    box-sizing:border-box;
    cursor:not-allowed !important;
    opacity:0.3;
}

.event_type_box_content {
    display:inline-block;
    height:148px;
    text-align:center;
    border:1px #f1f1f1 solid;
    border-radius:2px;
    padding:20px;
    box-sizing:border-box;
    vertical-align:top;
    cursor:pointer;
    -webkit-transition: .4s;
    transition: .4s;
}

.event_type_box_disabled .event_type_box_content {
    cursor:not-allowed !important;
}


.event_type_box_content:hover {
    border: 3px #c74241 solid;
}

.event_type_box_content:hover .event_type_box_icon {
    color:#c74342;
}

.event_type_box_active {
    border: 3px #c74241 solid;
}

.event_type_box_active .event_type_box_icon {
    color:#c74342;
}

.event_type_box_icon {
    width:100%;
    font-size:36px;
    color:#212121;
    margin-bottom:5px;
    -webkit-transition: .4s;
    transition: .4s;
}

.event_type_box_name {
    font-size:18px;
    color:#212121;
    margin-bottom:5px;
}

.event_type_box_description {
    font-size:14px;
    color:#999999;
}

.event_video_host_box {
    display:inline-block;
    width:100%;
    height:80px;
    text-align:center;
    border:1px #f1f1f1 solid;
    border-radius:2px;
    box-sizing:border-box;
    vertical-align:top;
    cursor:pointer;
    margin-bottom:20px;
    -webkit-transition: .4s;
    transition: .4s;
}

.event_video_host_box:hover {
    border: 3px #c74241 solid;
}

.event_video_host_box:hover .event_type_box_icon {
    color:#c74342;
}

.event_video_host_box_active {
    border: 3px #c74241 solid;
}

.event_video_host_box_active .event_video_host_box_icon {
    color:#c74342;
}

.event_video_host_box_icon {
    float:left;
    font-size:36px;
    color:#212121;
    width:40px;
    -webkit-transition: .4s;
    transition: .4s;
    padding:20px;
}


.event_video_host_content {
    float:left;
    text-align:left;
    padding:18px;
    padding-left:0px;
}

.event_video_host_box_name {
    width:100%;
    font-size:18px;
    color:#212121;
}

.event_video_host_box_description {
    font-size:14px;
    color:#999999;
}

.event_showtimes {
    padding-bottom:10px;
}

.event_showtimes input[type="text"], .event_showtimes input[type="email"], .event_showtimes select {
    width:100%;
    height:45px;
    font-size:15px;
    padding-left:15px;
    padding-right:15px;
    line-height: 20px;
    box-sizing:border-box;
}

.event_showtime_item {
    width:100%;
    padding:10px;
    border:1px #f9f9f9 solid;
    margin-bottom:10px;
    box-sizing:border-box;
    border-radius:2px;
}

.event_showtime_item_actions {
    float:right;
    margin-top:13px;
    padding-right:10px;
}

.event_showtime_item_action_item {
    cursor:pointer;
    font-size:14px;
    color:#999999;
}

.event_price_box {
    width:100%;
    text-align:center;
    font-size:18px;
}

.event_price_box input[type="number"], .event_price_box input[type="text"] {
    height:45px;
    width:100px;
    font-size:18px;
    padding-left:13px;
    padding-right:13px;
    box-sizing:border-box;
}

.event_tip {
    text-align:center;
    font-size:14px;
    color:#999999;
    padding-top:10px;
}

.event_cover_blank {
    background-color:#e5e5e5;
    cursor:pointer;
}


/* Reports */

.reports_date_input {
    height:35px;
    width:100px;
    padding-left:10px;
    padding-right:10px;
    box-sizing:border-box;
    vertical-align:top;
    margin-top:3px;
}

.stats_boxes {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.stats_box {
    display:inline-block;
    width:50%;
    padding-left:10px;
    padding-right:10px;
    box-sizing:border-box;
}

.stats_box_content {
    display:inline-block;
    width:100%;
    height:160px;
    text-align:center;
    border:1px #f1f1f1 solid;
    border-radius:2px;
    padding:25px;
    padding-top:45px;
    box-sizing:border-box;
    vertical-align:top;
    -webkit-transition: .4s;
    transition: .4s;
}

.stats_box_number {
    font-size:32px;
    font-weight:bold;
    color:#212121;
    padding-bottom:5px;
}

.stats_box_label {
    font-size:18px;
    color:#212121;
}

.reports_list_item {
    width:100%;
    font-size:14px;
    padding:20px;
    box-sizing:border-box;
    border-bottom:1px #f1f1f1 solid;
}

.reports_list_item_left {
    float:left;
}

.reports_list_item_right {
    float:right;
}

.reports_list_item_timestamp {
    display:inline-block;
    color:#999999;
    text-align:right;
    padding-left:5px;
}

/* Proceeds Option */

.proceeds_option_box {
    display:inline-block;
    width:100%;
    height:80px;
    text-align:center;
    border:1px #f1f1f1 solid;
    border-radius:2px;
    box-sizing:border-box;
    vertical-align:top;
    cursor:pointer;
    margin-bottom:20px;
    -webkit-transition: .4s;
    transition: .4s;
}

.proceeds_option_box:hover {
    border: 3px #c74241 solid;
}

.proceeds_option_box:hover .proceeds_option_icon {
    color:#c74342;
}

.proceeds_option_box_active {
    border: 3px #c74241 solid;
}

.proceeds_option_box_active .proceeds_option_box_icon {
    color:#c74342;
}

.proceeds_option_box_icon {
    float:left;
    font-size:36px;
    color:#212121;
    width:40px;
    -webkit-transition: .4s;
    transition: .4s;
    padding:20px;
}


.proceeds_option_box_content {
    float:left;
    text-align:left;
    padding:18px;
    padding-left:0px;
}

.proceeds_option_box_name {
    width:100%;
    font-size:18px;
    color:#212121;
}

.proceeds_option_box_description {
    font-size:14px;
    color:#999999;
}

/* Checklist */

.checklist {
    position:fixed;
    left:20px;
    bottom:20px;
    z-index:10000000;
}

.checklist_beacon {
    height:45px;
    background-color:#c74142;
    color:#ffffff;
    text-align:center;
    font-size:18px;
    font-weight:bold;
    box-sizing:border-box;
    border-radius:23px;
    padding-left:20px;
    padding-right:20px;
    line-height:45px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 6px 0px, rgba(0, 0, 0, 0.16) 0px 2px 32px 0px;
    cursor:pointer;
}

.checklist_container {
    position:absolute;
    bottom:55px;
    width:340px;
    background-color:#ffffff;
    padding:20px;
    padding-bottom:10px;
    box-sizing:border-box;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    transition: all 0.15s ease;
    border-radius:5px;
}

.checklist_header {
    font-size:18px;
    font-weight:bold;
    color:#000000;
    padding-bottom:10px;
}

.checklist_subheader {
    font-size:16px;
    color:#555555;
    padding-bottom:10px;
}

.checklist_close {
    float:right;
    font-size:18px;
    color:#999999;
    margin-top:7px;
    cursor:pointer;
}

.checklist_close:hover {
    color:#333333;
}

.checklist_progress_bar_container {
    width:100%;
    height:25px;
    background-color:#eeeeee;
    border-radius:13px;
}

.checklist_progress_bar {
    height:25px;
    background-color:#499EE6;
    border-radius:13px;
    color:#ffffff;
    font-size:14px;
    text-align:center;
    line-height:25px;
}

.checklist_divider {
    width:100%;
    border-bottom:1px #eeeeee solid;
    margin-top:20px;
}

.checklist_items {
    margin-bottom: 0;
    padding: 0;
}

.checklist_item {
    list-style-type: none;
    color: #555555;
    cursor: pointer;
    padding-top:7px;
    padding-bottom:7px;
}

.checklist_item .fa-chevron-right {
    font-size:16px;
    margin-left:5px;
}

.checklist_item a {
    width: 100%;
    display: flex;
    color: #555555;
    text-decoration: none !important;
    outline: 0;
    position: relative;
    align-items: center;
}

.checklist_item_checkmark {
    display: inline-block;
    margin-right: 0.75rem;
    vertical-align: middle;
    border: 2px solid #555555;
    border-radius: 100px;
    width: 2rem;
    height: 2rem;
    line-height: 1.86rem;
    text-align: center;
    background-color: white;
    color: white;
    transition: all 0.25s ease-out;
    flex-shrink: 0;
}

.checklist_item_checkmark i {
    display:none;
}

.checklist_item p {
    font-size:16px;
    width: 250px;
    margin:0px;
}

.checklist_item_completed p {
    text-decoration:line-through;
}

.checklist_item_completed .checklist_item_checkmark {
    background-color:#499EE6;
    border:2px solid #499EE6;
}

.checklist_item_completed .checklist_item_checkmark i {
    display:block !important;
    font-size:20px;
    margin-top:7px;
}

.checklist_item_completed .fa-chevron-right {
    display:none;
}

/* Stripe */

.StripeElement:not(#payment-request-button) {
    height: 50px;
    line-height:50px !important;
    background-color: #ffffff;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top:15px;
    border-radius: 3px;
    box-sizing: border-box;
    box-shadow: 0 0 0 1px rgba(42,47,69,.1), 0 2px 5px 0 rgba(42,47,69,.1), 0 1px 1.5px 0 rgba(0,0,0,.07), 0 1px 2px 0 rgba(0,0,0,.08), 0 0 0 0 transparent;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

/* Options dropdown */

.options_dropdown {
	display:none;
	position:absolute;
	right:20px;
	top:43px;
	z-index:1000;
	width:150px;
	background-color:#ffffff;
	border:1px #d5d5d5 solid;
	border-radius:3px;
	box-shadow:0 1px 24px 0 rgba(0,0,0,0.08);
}

.options_dropdown a {
    color:#000000;
}

.options_dropdown_item {
	width:100%;
	height:35px;
	line-height:15px;
	font-size:14px;
    text-align:left;
    box-sizing:border-box;
	padding:10px;
    cursor:pointer;
    transition: all 0.5s ease;
}

.options_dropdown_item:hover {
    background-color:#f9f9f9;
    transition: all 0.5s ease;
}

.options_dropdown_item a {
    color:#000000;
}

/* Order item page */

.order_page {
	margin-bottom:20px;
	border-radius:3px;
}

.order_page_content {
	padding:0px;
}

.order_page_header {
	width: 100%;
    padding: 25px;
    box-sizing: border-box;
    background-color: #ffffff;
    box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.02), 0 3px 6px 0 rgba(0, 0, 0, 0.06);
    border-top-left-radius:5px;
    border-top-right-radius:5px;
    border:1px #F1F1F1 solid !important;
}

.order_page_header_no_bg {
    box-sizing: border-box;
}

.order_page_pass_banner {
	width:100%;
    height:5px;
    text-align:center;
    font-size:16px;
    color:#ffffff;
    box-sizing:border-box;
}

.order_page_title {
	font-size:20px;
}

.order_page_subtitle {
    font-size:16px;
    color:#999999;
    margin-top:10px;
}

.order_page_section {
    position:relative;
	width: 100%;
    background-color: #ffffff;
    box-shadow: 0 7px 14px 0 rgba(60,66,87, 0.1), 0 3px 6px 0 rgba(0, 0, 0, .07);
    border-bottom-left-radius:5px;
    border-bottom-right-radius:5px;
}

.order_page_section_content {
	padding:15px;
    border-bottom:1px #d5d5d5 solid;
}

.order_page_section_title {
	font-size: 16px;
    font-weight: bold;
    padding: 15px;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 15px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    box-shadow: 0 7px 14px 0 rgba(60,66,87, 0.1), 0 3px 6px 0 rgba(0, 0, 0, .07);
    background-color: #ffffff;
    border-bottom:1px#e3e8ee solid;
}

.order_page_section_left {
	float:left;
	width:150px;
	font-size:11pt;
	color:#999999;
	margin-bottom:10px;
	padding-right:15px;
}

.order_page_section_right {
	float:left;
	font-size:11pt;
	color:#000000;
	margin-bottom:10px;
}

.order_page_section_item {
    border-bottom:1px #dfe4ea solid;
    padding:15px;
}

.order_page_section_item_title {
    display:inline-block;
    font-size:15px;
}

.order_page_section_item_price {
    display:inline-block;
    font-size:15px;
    color:#93c741;
    margin-left:10px;
}

.order_page_tabs {
    margin-left:2px;
    margin-bottom:-1px;
}

.order_page_tab {
    float:left;
    height:40px;
    margin-right:5px;
    color:#000000;
    background-color:#f5f5f5;
    font-size:11pt;
    text-align:center;
    line-height:40px;
    border:1px #f1f1f1 solid;
    border-top-left-radius:5px;
    border-top-right-radius:5px;
    padding-left:13px;
    padding-right:13px;
    cursor:pointer;
}

.order_page_tab:hover {
    background-color:#f1f1f1;
}

.order_page_tab_active {
    background-color:#ffffff;
    font-weight:bold;
}

.order_page_ticket {
    position:relative;
	border-bottom:1px #e3e8ee solid;
	cursor:pointer;
    padding:15px;
    box-sizing:border-box;
}

.order_page_ticket_active {
	background-color:#f9f9f9;
	border-bottom:1px #dfdfdf solid;
	cursor:pointer;
    padding:15px;
    box-sizing:border-box;
}

.order_page_ticket:hover {
	background-color:#f9f9f9;
}

.order_page_ticket_highlighted {
    background-color:#fcf8e3 !important;
}

.order_page_ticket_content {
	padding:0px;
}

.order_page_ticket_show_title {
    font-size:14px;
    font-weight:bold;
    padding:15px;
    padding-bottom:10px;
    padding-top:10px;
	border-bottom:1px #dfdfdf solid;
	border-top:2px #f9f9f9 solid;
}

.order_page_ticket_show_title_right_label {
	float:right;
	font-size:10pt;
	font-weight:normal;
	color:#999999;
}

.order_page_ticket_subtitle {
    background-color:#F9F9F9;
    color:#999999;
    font-size:14px;
    padding:15px;
    padding-bottom:5px;
    padding-top:5px;
	border-bottom:1px #dfdfdf solid;
	border-top:1px #f9f9f9 solid;
}

.order_page_ticket_seat {
	float:right;
	width:130px;
	font-size:11pt;
	text-align:right;
}

.order_page_ticket_checkbox {
	float:left;
	width:40px;
}

.order_page_ticket_checkbox_container {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(0,0,0,0.25);
    background-color: #fff;
    border-radius: 0.3em;
    vertical-align: top;
}

.order_page_ticket_checkbox_container_checked {
    font-size:14px;
    color:#ffffff;
    text-align:center;
    background-color:#93c741;
    border:1px #93c741 solid;
}

.order_page_ticket_checkbox_container_disabled {
    background-color:#f9f9f9;
    border:1px #c3c3c3 solid;
    opacity:0.5;
}

.order_page_ticket_type {
	float:left;
	width:275px;
	font-size:11pt;
	padding-right:20px;
}

.order_page_ticket_name {
	float:left;
	width:250px;
	font-size:11pt;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order_page_ticket_remove {
    display:none;
    position:absolute;
    right:0px;
    top:0px;
    height:30px;
    line-height:30px;
    background-color:#bc3a30;
    padding-left:15px;
    padding-right:15px;
}

.order_page_ticket_error {
    width:100%;
    font-size:10pt;
    color:#ffffff;
    background-color:#bc3a30;
    box-sizing:border-box;
    padding:10px;
    border-bottom:1px #ffffff solid;
}

.order_page_button {
	float:right;
	height:30px;
	line-height:30px;
	background-color:#ffffff;
	font-size:14px;
	font-weight:100;
	color:#333333;
	border-radius:3px;
	cursor:pointer;
	padding-right:10px;
	padding-left:10px;
	margin-left:10px;
    box-shadow: 0 0 0 1px rgba(42,47,69,.1), 0 2px 5px 0 rgba(42,47,69,.1), 0 1px 1.5px 0 rgba(0,0,0,.07), 0 1px 2px 0 rgba(0,0,0,.08), 0 0 0 0 transparent;
}

.order_page_button:hover {
    box-shadow: 0 0 0 1px rgba(42,47,69,.1), 0 2px 5px 0 rgba(42,47,69,.12), 0 3px 9px 0 rgba(42,47,69,.08), 0 1px 1.5px 0 rgba(0,0,0,.08), 0 1px 2px 0 rgba(0,0,0,.08);
}

.order_page_button_dropdown {
	float:right;
	height:30px;
	line-height:30px;
	background-color:#ffffff;
	font-size:14px;
	font-weight:100;
	color:#333333;
	border-radius:3px;
	cursor:pointer;
	padding-right:10px;
	padding-left:10px;
	margin-left:10px;
    box-shadow: 0 0 0 1px rgba(42,47,69,.1), 0 2px 5px 0 rgba(42,47,69,.1), 0 1px 1.5px 0 rgba(0,0,0,.07), 0 1px 2px 0 rgba(0,0,0,.08), 0 0 0 0 transparent;
}

.order_page_button_dropdown:hover {
    box-shadow: 0 0 0 1px rgba(42,47,69,.1), 0 2px 5px 0 rgba(42,47,69,.12), 0 3px 9px 0 rgba(42,47,69,.08), 0 1px 1.5px 0 rgba(0,0,0,.08), 0 1px 2px 0 rgba(0,0,0,.08);
}

.order_page_options_button {
	float:left;
	height:30px;
	line-height:30px;
	background-color:#e5e5e5;
	font-size:14px;
	font-weight:100;
	color:#333333;
	border:1px #d5d5d5 solid;
	border-radius:3px;
	cursor:pointer;
    box-sizing:border-box;
	padding-right:15px;
	padding-left:15px;
	margin-right:15px;
    box-shadow: 0 0 0 1px rgba(42,47,69,.1), 0 2px 5px 0 rgba(42,47,69,.1), 0 1px 1.5px 0 rgba(0,0,0,.07), 0 1px 2px 0 rgba(0,0,0,.08), 0 0 0 0 transparent;
}

.order_page_options_button:hover {
    box-shadow: 0 0 0 1px rgba(42,47,69,.1), 0 2px 5px 0 rgba(42,47,69,.12), 0 3px 9px 0 rgba(42,47,69,.08), 0 1px 1.5px 0 rgba(0,0,0,.08), 0 1px 2px 0 rgba(0,0,0,.08);
}

.order_page_options_button_active {
	float:left;
	height:30px;
	line-height:25px;
	background-color:#93c741;
	font-size:14px;
	font-weight:100;
	color:#ffffff;
    box-sizing:border-box;
	border:0px;
	border-radius:3px;
	cursor:pointer;
	padding-right:15px;
	padding-left:15px;
	margin-right:15px;
    box-shadow: 0 0 0 1px rgba(42, 69, 43, 0.45), 0 2px 5px 0 rgba(42, 47, 69, 0.13), 0 1px 1.5px 0 rgba(0,0,0,.07), 0 1px 2px 0 rgba(0,0,0,.08), 0 0 0 0 transparent !important;
}

.order_page_options_button_disabled {
	float:left;
	height:30px;
	line-height:25px;
	background-color:#e5e5e5;
	font-size:10pt;
	font-weight:100;
	color:#b1b1b1;
	border:1px #d5d5d5 solid;
	border-radius:3px;
	padding-right:15px;
	padding-left:15px;
	margin-right:15px;
}

.order_page_button_green {
	float:right;
	height:30px;
	line-height:30px;
	background-color:#93c741;
	font-size:14px;
	font-weight:100;
	color:#ffffff;
	border-radius:3px;
	cursor:pointer;
	padding-right:10px;
	padding-left:10px;
	margin-left:5px;
    box-shadow: 0 0 0 1px rgba(42, 69, 43, 0.45), 0 2px 5px 0 rgba(42, 47, 69, 0.13), 0 1px 1.5px 0 rgba(0,0,0,.07), 0 1px 2px 0 rgba(0,0,0,.08), 0 0 0 0 transparent !important;
}

.order_page_button_green:hover {
    background:#9ccb53;
}

.order_page_section_title select {
    height:30px;
    font-size:12px;
}

/* Search */

.search_results {
	margin-top:20px;
}

.search_bar {
	background-color:#ffffff;
	border: 1px #dfdfdf solid;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.02), 0 3px 6px 0 rgba(0, 0, 0, 0.06);
}

.search_bar_content {
    width:100%;
	padding:20px;
    box-sizing:border-box;
}

.search_bar_content form {
    display: flex;
}

.search_input {
	width:100% !important;
	height:35px;
	background-color:#ffffff;
	font-size:14pt;
	padding-left:10px;
	padding-right:10px;
	border:1px #dfdfdf solid;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
}

.search_results_item {
    display:flex;
	position:relative;
	background-color:#ffffff;
	padding:10px;
	border: 1px #dfdfdf solid;
	margin-bottom:10px;
	cursor:pointer;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	-moz-box-shadow:    1px 1px 1px 0px #e5e5e5;
	  -webkit-box-shadow: 1px 1px 1px 0px #e5e5e5;
	  box-shadow:         1px 1px 1px 0px #e5e5e5;
}

.search_results_item:hover {
	position:relative;
	background-color:#f9f9f9;
	padding:10px;
	border: 1px #dfdfdf solid;
	margin-bottom:10px;
	cursor:pointer;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	-moz-box-shadow:    1px 1px 1px 0px #e5e5e5;
	  -webkit-box-shadow: 1px 1px 1px 0px #e5e5e5;
	  box-shadow:         1px 1px 1px 0px #e5e5e5;
}

.search_results_item_info {
    flex:1;
	width:50%;
	font-size:11pt;
	color:#000000;
	padding-right:10px;
}

.search_results_item_time {
	flex:1;
    width:50%;
	font-size:11pt;
	color:#999999;
	text-align:right;
}

.search_results_show {
	float:left;
	width:170px;
	font-size:11pt;
	padding-right:7px;
	padding-left:7px;
	
	border-right:1px #e5e5e5 solid;
	box-sizing:border-box;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	word-wrap:break-word;
}

.search_results_showtime {
	float:left;
	width:130px;
	font-size:11pt;
	padding-right:7px;
	padding-left:7px;
	box-sizing:border-box;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	word-wrap:break-word;
}

.search_results_purchaser_info {
	float:left;
	width:170px;
	font-size:11pt;
	padding-right:7px;
	padding-left:7px;
	border-right:1px #e5e5e5 solid;
	box-sizing:border-box;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	word-wrap:break-word;
}

.search_results_purchaser_email {
	float:left;
	width:200px;
	font-size:11pt;
	padding-right:7px;
	padding-left:7px;
	border-right:1px #e5e5e5 solid;
	box-sizing:border-box;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	word-wrap:break-word
}

.search_results_purchase_id {
	float:left;
	width:60px;
	font-size:11pt;
	padding-right:7px;
	box-sizing:border-box;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	border-right:1px #e5e5e5 solid;
	word-wrap:break-word;
}

.search_results_seat {
	float:left;
	width:50px;
	font-size:11pt;
	padding-right:7px;
	padding-left:7px;
	box-sizing:border-box;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	border-right:1px #e5e5e5 solid;
	word-wrap:break-word;
}

.search_ticket_checkbox {
	width:15px;
	height:15px;
}


/* Popups */

.popup_module {
    display:none;
    position:absolute;
    left:50%;
    margin-left:-175px;
    width:350px;
    background-color:#F5F5F7;
    -webkit-box-shadow: 0px 3px 10px 3px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 3px 10px 3px rgba(0,0,0,0.2);
    box-shadow: 0px 3px 10px 3px rgba(0,0,0,0.2);
    z-index:10000000;
    -webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
}

.popup_module_overlay {
    display:none;
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    background-color:#000000;
    opacity:0.5;
    z-index:1000000;
}

.popup_module_header {
    position:relative;
    width:100%;
    background-color:#E8E9EB;
    border-bottom:1px #D7D8DA solid;
    padding:20px;
    padding-bottom:15px;
    box-sizing:border-box;
    -webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
}

.popup_module_header_title {
    font-size:20px;
    font-weight:bold;
    color:#000000;
    text-align:center;
    margin-bottom:5px;
}

.popup_module_header_subtitle {
    font-size:14px;
    color:#999999;
    text-align:center;
    margin-bottom:5px;
}

.popup_module_content {
    width:100%;
    background-color:#F5F5F7;
    border-top:1px #ffffff solid;
    padding:20px;
    box-sizing:border-box;
    -webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
}

.popup_module_notice {
    font-size:13px;
    color:#999999;
    text-align:center;
    margin-top:15px;
}

.popup_module_input_holder {
    position:relative;
    display:inline-block;
    width:100%;
    margin-bottom:15px;
}

.popup_module_input_holder label {
    display:block;
    font-size:15px;
    font-weight:bold;
    padding-bottom:5px;
}

.popup_module_input_holder input[type="text"], .popup_module_input_holder select {
    width:99%;
    height:35px;
    font-size:17px;
    padding:7px;
    box-sizing:border-box;
    margin-top:3px;
}

.popup_module_input_holder textarea {
    width:99%;
    height:80px;
    font-size:17px;
    padding:10px;
    box-sizing:border-box;
    margin-top:3px;
}

.popup_module_input_icon {
    position:absolute;
    top:10px;
    left:10px;
    font-size:16px;
    color:#d5d5d5;
}

.popup_module_input_icon_active {
    color:#91C541;
}

.popup_module_exit {
    position:absolute;
    top:10px;
    right:10px;
    cursor:pointer;
    font-size:18px;
    color:#999999;
}

.popup_module_exit:hover {
    color:#888888;
}


/* Toggle Switch Slider */

.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 18px;
  vertical-align:top;
}

.switch input { 
  opacity: 100;

}

.switch_label {
    font-size:14px;
    color:#999999;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #c74343;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #93C742;
}

input:focus + .slider {
  box-shadow: 0 0 1px #93C742;
}

input:checked + .slider:before {
  -webkit-transform: translateX(12px);
  -ms-transform: translateX(12px);
  transform: translateX(12px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Select Box */

.settings_select_box {
    width:400px;
    min-height:120px;
    border:1px #c3c3c3 solid;
    margin-bottom:20px;
    overflow-y: scroll;
}

.settings_select_box_label {
    width:100%;
    height:25px;
    font-size:12px;
    font-weight:bold;
    line-height:15px;
    padding:5px;
    border-bottom:1px #c3c3c3 solid;
    box-sizing:border-box;
    cursor:pointer;
}

.settings_select_box_item {
    width:100%;
    height:30px;
    font-size:14px;
    line-height:20px;
    padding:5px;
    border-bottom:1px #c3c3c3 solid;
    box-sizing:border-box;
}

.settings_select_box_item_active {
    width:100%;
    height:30px;
    font-size:14px;
    line-height:20px;
    background-color:#f9f9f9;
    padding:5px;
    border-bottom:1px #c3c3c3 solid;
    box-sizing:border-box;
}

.settings_select_box_item:hover {
    background-color:#f9f9f9;
}

/* Mobile */

.mobile_nav_dropdown {
    display:none;
    position:fixed;
    top:50px;
    width:100%;
    background-color:#ffffff;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.08);
    z-index:100000;
}

.mobile_nav_dropdown_item {
    height:60px;
    font-size:18px;
    padding:20px;
    padding-left:30px;
    box-sizing:border-box;
    border-bottom:1px #f9f9f9 solid;
}

.mobile_nav_dropdown_sub_menu {
    display:none;
}

.mobile_nav_dropdown_sub_menu_item {
    height:60px;
    font-size:18px;
    padding:20px;
    padding-left:50px;
    box-sizing:border-box;
    border-bottom:1px #f9f9f9 solid;
}

.mobile_nav_dropdown a {
    color:#212121;
    text-decoration:none;
}

.network_nav {
    width:100%;
    height:35px;
    background-color:#b73c3b;
    z-index:100;
}

.network_nav_content {
    margin:0px auto;
    width:100%;
    max-width:1054px;
}

.network_nav_item {
    display:inline-block;
    font-size:14px;
    color:#ffffff;
    line-height:35px;
    padding-left:30px;
    padding-right:30px;
    cursor:pointer;
}

.network_nav_item:hover {
    background-color:#c74443;
    color:#ffffff;
}

.network_nav_item_active {
    background-color:#c74443;
    color:#ffffff;
    font-weight:bold;
}

.network_nav a {
    text-decoration:none;
}

/* Status boxes */

.dashboard_status_active {
    display:inline-block;
    height:25px;
    line-height:25px;
    background-color:#93C741;
    font-size:14px;
    color:#ffffff;
    border-radius:2px;
    box-sizing:border-box;
    padding-left:7px;
    padding-right:7px;
    margin-top:2px;
}

.dashboard_status_inactive {
    display:inline-block;
    height:25px;
    line-height:25px;
    background-color:#E5E5E5;
    font-size:14px;
    color:#999999;
    border-radius:2px;
    box-sizing:border-box;
    padding-left:7px;
    padding-right:7px;
    margin-top:2px;
}

.dashboard_status_active_red {
    display:inline-block;
    height:25px;
    line-height:25px;
    background-color:#C10200;
    font-size:14px;
    color:#ffffff;
    border-radius:2px;
    box-sizing:border-box;
    padding-left:7px;
    padding-right:7px;
    margin-top:2px;
}

.dashboard_status_active_blue {
    display:inline-block;
    height:25px;
    line-height:25px;
    background-color:#499EE6;
    font-size:14px;
    color:#ffffff;
    border-radius:2px;
    box-sizing:border-box;
    padding-left:7px;
    padding-right:7px;
    margin-top:2px;
}

/* Page Switcher */

.page_switcher {
    margin:0px auto;
    width: 100%;
    max-width:600px;
    border: 1px #D5D5D5 solid;
    box-sizing: border-box;
    border-radius: 3px;
    margin-bottom: 50px;
}

.page_switcher_button {
    display: inline-block;
    width: 50%;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    background-color: #ffffff;
    color:#999999;
    box-sizing: border-box;
    margin-right: -4px;
    cursor: pointer;
}

.page_switcher_button_active {
    background-color: #b73c3b;
    color:#ffffff;
    font-weight:bold;
}

.page_switcher_button:hover {
    font-weight:bold;
}

.page_switcher a {
    text-decoration:none;
    color:#000000;
}


/* Video Uploader */

.uploader_title {
    font-size:22px;
    font-weight:600;
    text-align:center;
    padding-bottom:10px;
}

.uploader_progress_bar_holder {
    position:relative;
    width:100%;
    height:35px;
    background-color:#e5e5e5;
    border-radius:3px;
}

.uploader_progress_bar {
    position:absolute;
    width:0%;
    height:35px;
    font-size:16px;
    color:#ffffff;
    text-align:center;
    line-height:35px;
    background-color:#499EE6;
    border-radius:3px;
}

.uploader_description {
    font-size:14px;
    text-align:center;
    padding-top:10px;
}

@media screen and (max-width: 1024px){
    .watch_page {
        margin:0px auto;
        width:100%;
        max-width:1024px;
    }
    
    .watch_page_right {
        position:relative;
        display:block;
        top:auto;
        right:auto;
        width:100%;
    }
    
    .watch_page_right_feed {
        height:300px;
    }
    
    .video-container {
        padding-bottom: 56.25%;
        margin-right:0%;
    }
    
    .chat_cta {
        bottom:-65px !important;
    }
}

@media screen and (max-width: 730px){
    .mobile_show {
        display:block;
    }
    
    .mobile_hide {
        display:none !important;
    }
    
    .network_nav {
        display:none;
    }
}

@media screen and (max-width: 480px){
    .page {
        padding:20px;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    
    .header {
        padding-left:20px;
        padding-right:10px;
    }
    
    .header_nav_name {
        display:none;
        overflow-y: hidden;
        white-space: nowrap;
        overflow: hidden;
        width: 190px;
        text-overflow: ellipsis;
        text-align: right;
    }
    
    .header_logo {
        padding-left:0px;
    }
    
    .header_logo img {
        display: block;
        height: 16px;
        padding-top: 2px;
    }
    
    .header_nav {
        padding-right:0px;
    }
    
    .page_input_holder_50 {
        width:100%;
        margin-left:0px !important;
    }
    
    .page_block_show_image {
        height:160px;
    }
    
    .page_block_header {
        padding:20px !important;
    }
    
    .page_block_show_heading_title .page_block_show_live_label {
        padding-left:0px;
    }
    
    .page_block_showtime {
        line-height:20px;
        text-align:center;
    }
    
    .page_block_showtime_action {
        float:none;
        padding-top:5px;
        padding-bottom:10px;
    }
    
    .new_line {
        display:block;
    }
    
    .page_block_showtime .new_line {
        font-size:12px;
    }
    
    .page_input_label_right {
        font-size:12px;
        padding-top:3px;
    }
    
    .page_block_header_right {
        font-size:12px;
    }
    
    .event_type_box {
        padding-left:1px;
        padding-right:1px;
    }
    
    .event_type_box_content {
        height:auto;
        min-height: 120px;
        padding:10px;
    }
    
    .event_type_box_icon {
        font-size:24px;
    }
    
    .event_type_box_name {
        font-size:12px;
    }
    
    .event_type_box_description {
        font-size:12px;
    }
    
    .event_video_host_content {
        padding:0px;
        padding-left:10px;
        line-height:50px;
    }
    
    .event_video_host_box {
        height:50px;
    }
    
    .event_video_host_box_icon {
        font-size:28px;
        padding:10px;
        box-sizing:border-box;
    }
    
    .event_video_host_box_description {
        display:none;
    }
    
    .event_showtime_item_actions {
        float:none;
        width:100%;
        text-align:center;
    }
    
    .page_price_item_image_patron {
        float:none;
        width:100%;
        margin-right:0px;
        margin-bottom:10px;
    }
    
    .stats_box {
        padding-left:1px;
        padding-right:1px;
    }
    
    .stats_box_content {
        height:auto;
        min-height:120px;
        padding-top:25px;
    }
    
    .stats_box_number {
        font-size:28px;
    }
    
    .date_input {
        width:100% !important;
        margin-bottom:5px;
    }
    
    .time_input {
        width:100% !important;
        margin-left:0px !important;
        margin-bottom:5px;
    }
    
    .ampm_input {
        width:100% !important;
        margin-left:0px !important;
    }
    
    input[name="subdomain"], input[name="site_subdomain"] {
        width:140px !important;
    }
    
    .checklist {
        width:100%;
    }
    
    .checklist_container {
        width:90%;
    }
    
    .checklist_beacon {
        width:160px;
    }
    
    .reports_date_input {
        width:100%;
    }
    
    .reports_button {
        width:100% !important;
        margin-left:0px !important;
        margin-top:10px;
    }
    
    .page_faq_title_icon {
        left:50%;
        margin-left:-20px;
    }
    
    .watch_tabs {
        padding-bottom:70px;
    }
    
    .watch_tab_label {
        display:block;
    }
}

@media screen and (max-width: 340px){
    .header_nav_name {
        width:140px;
    }
    
    .watch_page_right_feed {
        height:230px;
    }
}