/* RESPONSIVE HELPERS

// Extra small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) {
}

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) {
}

// Large devices (desktops, 992px and up)
@media (min-width: 992px) {
}

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) {
}
*/

/** Perzeeve ******************/
.pz-text{
	color: #4a697c;
}

.pz-button{
	color: #fff;
    background-color: #4a697c;
    border-color: #4a697c;
}

span {
  cursor: default;
}

.mb-7{
	margin-bottom: 3rem !important;
}

.map-info-red{
	color:red;
}

.map-info-green{
	color:green;
}

.map-info-black{
	color:black;
}


/** BUTTONS *******************/
/* 3D Hover */
.btn:not(disabled) {
    transition: all 0.2s ease-in-out !important;
  }

.btn:hover:not(disabled),
.btn:focus:not(disabled) {
    -webkit-transform: translateY(-3px) !important;
            transform: translateY(-3px) !important;
}

body .btn:disabled,
body .btn:hover:disabled,
body .btn:focus:disabled,
body .btn-group .btn,
body .toggle.btn,
body .toggle.btn .btn {
    transition: none !important;
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
    cursor: initial !important;
}

.btn .fa,
.btn .fas {
    margin-right: .5rem;
}

.btn .fa.m0,
.btn .fas.m0 {
    margin-right: 0;
}

h4.mod-uline {
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.prevent-click {
	cursor: not-allowed;
}
.accept-click {
	cursor: pointer;
}
.disabled {
   pointer-events: none;
   cursor: default;
}

.error-color {
    color: red;
}
.success-color {
    color: green;
}

.form-check-label {
    position: relative;
    top: 1px;
}

.liveDataColumn {
    text-overflow: ellipsis;
    white-space: nowrap;
}

.liveDataName{
    color: #77838f;
    font-weight: bold;;
    display: inline-block;
    white-space: nowrap;
}
.liveData {
    color: cornflowerblue;
    display: inline-block;
    font-size: .9rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.liveDataFlushable{
	
}

.float-right{
	float: right;
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #000000; /* Black */
  border-left: 16px solid #000000; /* Black */
  border-bottom: 16px solid #000000; /* Black */
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  animation: spin 1s linear infinite;

}
.loader2 {
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #44687C; /* Blue */
  border-left: 8px solid #44687C; /* Blue */
  border-radius: 50%;
  width: 80%;
  height: 80%;
  left: 10%;
  top: 10%;
  position: absolute;
  animation: spin2 0.75s linear infinite;
}

.loader-icon {
    display: inline-block;
    border: 2px solid #f3f3f3; /* Light grey */
    border-top: 2px solid #44687C; /* Blue */
    border-left: 2px solid #44687C; /* Blue */
    border-radius: 50%;
    width: 16px;
    height:16px;
    animation: spin2 0.75s linear infinite;
}

.loader-icon.mod-md {
    border-width: 4px;
    width: 32px;
    height: 32px;
}

.loader-icon.mod-lg {
    border-width: 6px;
    width: 48px;
    height: 48px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes spin2 {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#loader {
	width: 100px;
	height: 100px;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 100;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 1000px) {
    .liveData {
        color: cornflowerblue;
        font-size: 0.75rem;
    }
}

.row-ow {
    margin-right: -15px;
    margin-left: -15px;
}

.border-blink {
    border-color: blue !important;
}

option.live {
    color: limegreen;
}
option.offline {
    color: black;
}

.flash {
    -moz-animation: flash .5s ease-out;
    -moz-animation-iteration-count: 3;

    -webkit-animation: flash .5s ease-out;
    -webkit-animation-iteration-count: 3;

    -ms-animation: flash 1.5s ease-out;
    -ms-animation-iteration-count: 3;
  }

  @keyframes flash {
      0% { opacity: 1; }
      50% { opacity: .5; }
      100% { opacity: 1; }
  }

  @-webkit-keyframes flash {
    0% { opacity: 1; }
    50% { opacity: .5; }
    100% { opacity: 1; }
}

  @-moz-keyframes flash {
    0% { opacity: 1; }
    50% { opacity: .5; }
    100% { opacity: 1; }
}

  @-ms-keyframes flash {
    0% { opacity: 1; }
    50% { opacity: .5; }
    100% { opacity: 1; }
}

.tooltip .tooltip-inner {
    background-color: #111;
    color: #fff;
    font-size: .7rem;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
    border-top-color: #111 !important;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
    border-right-color: #111 !important;
}


.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    border-bottom-color: #111 !important;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
    border-left-color: #111 !important;
}

/* GLOBAL PAGE LOADER OVERLAY ***********************************************/
.global-page-loading-overlay {
    background: #ffffff;
    color: #666666;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 5000;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    padding-top: 25%;
    opacity: .80;
}

.global-page-loading-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    font-weight: bold;
    font-size: 1.5rem;
}

/* QUAD VIDEO ****************************************************************/
.quad-display--section {
    position: relative;
}

.quad-display--section--video {
    position: relative;
    width: 100%;
    background-color: black;
    text-align: center;
    height: 0;
    padding-top: 56.25%;
}
.quad-display--section--video.live {
    border: 2px solid limegreen;
}
.quad-display--section--video.offline {
    border:  2px solid red;
}

.quad-display--section--video--content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
}

.quad-display--section--video--content .offline-img {
    width: 100%;
    height: 100%;
}

/* hack for when no flash is detected */


.quad-display--section--video--content > h2,
.quad-display--section--video--content > h3,
.quad-display--section--video--content > p {
    font-size: 1rem;
    margin: 5px 0 0 0;
    color: #fff;
}
.quad-display--section--video--content > p > a {
    font-size: 1rem;
    color: #efef;
    text-decoration: underline;
}
.quad-display--section--video--content > h2 {
    margin-top: 20%;
}
@media (min-width: 768px) and (max-width: 991px) {
    .quad-display--section--video--content > h2 {
        margin-top: 16%;
    }
    .quad-display--section--video--content > h2,
    .quad-display--section--video--content > h3,
    .quad-display--section--video--content > p,
    .quad-display--section--video--content > p > a {
        font-size: .9rem;
    }
}

.quad-display--section--video--content--label {
    flex-basis: fit-content;
    color: #fff;
    position: absolute;
    top: 45%;
    left: 0;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.quad-display--section--label {
    display: block;
    height: 10px;
    font-size: .8rem;
    opacity: .9;
    text-align: center;
}


/* DATATABLE OVERRIDES */
table.dataTable thead .sorting_disabled.sorting {
    background-image: none;
}
table.dataTable thead .sorting_disabled .sort-icon {
    display: none;
}
table.dataTable thead th {
    background: transparent !important;
    white-space: nowrap;
  }
table.dataTable thead span.sort-icon {
    display: inline-block;
    padding-left: 20px;
    width: 16px;
    height: 20px;
    vertical-align: text-bottom;
}
table.dataTable thead .sorting span { background: url('/assets/vendor/DataTables-master/media/images/sort_both.png') no-repeat center right; }
table.dataTable thead .sorting_asc span { background: url('/assets/vendor/DataTables-master/media/images/sort_asc.png') no-repeat center right; }
table.dataTable thead .sorting_desc span { background: url('/assets/vendor/DataTables-master/media/images/sort_desc.png') no-repeat center right; }

table.dataTable thead .sorting_asc_disabled span { background: url('/assets/vendor/DataTables-master/media/images/sort_asc_disabled.png') no-repeat center right; }
table.dataTable thead .sorting_desc_disabled span { background: url('/assets/vendor/DataTables-master/media/images/sort_desc_disabled.png') no-repeat center right; }

/* BREADCRUMB ============================================================== */
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item.active {
    color: black;
    font-weight: bold;
}

/* MAP-VIEW  =============================================================== */

.pxc-map {
    height: 500px;
    background-color: #efefef;
}


/* VIDEO PLAYER ============================================================ */
.video-player {
    width: 100%;
    height: 0;
    padding:0 0 56.25% 0;
    position: relative;;
}

.html5-player-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #666;
    opacity: 0.8;
    text-align: center;
}

.html5-player-overlay-content {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    font-weight: bold;
    font-size: 1.5rem;
    color: #fff;
}

/* GLOBAL ALERTS =========================================================== */
.global-alerts {
    z-index: 1000;
    position: fixed;
    top: 10;
    left: 0;
    right: 0;
}

.global-alerts .alert {
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
}

/* FORM ERROR PLACEMENT ==================================================== */
.js-form-message {
    position: relative;
}

.js-form-message .invalid-feedback {
    position: absolute;
    bottom: -18px;
}

/* Dropdowns =============================================================== */
.dropdown-menu {
    padding-left: 0;
    padding-right: 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
}
.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #eee;
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #777;
}

/* DebugBar ================================================================ */
#db-debugbar {
	display: block;
	background-color: #DBAD5D;
	opacity: 0.8;
	position: fixed;
	bottom: 0;
	left: 0;
	padding: 5px;
	padding-right: 1em;
	color: #555;
	border-radius: 0 5px 0 0;
	z-index: 10000;
    max-width: 500px;
}
#db-debugbar a {
	cursor: pointer;
}
#db-debugbar:hover {
	opacity: 1;
}

@media print {
    #db-debugbar {
        display: none;
    }
}

@media (max-width: 480px) {
    #db-debugbar {
        padding: 3px;
        padding-right: 20px;
        font-size: 0.8em;
        opacity: 0.8;
    }
    #db-close {
        font-size: 25px;
    }
}

#db-actions a:first-child {
    margin-left: 50px;
}

#db-actions a {
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    text-align: right;
    text-decoration: underline;
}

#db-close {
	position: absolute;
	top: 0;
	right: 5px;
	display: block;
	color: #111;
}
#db-close:active {
	margin-top: 1px;
	margin-right: -1px;
}
#db-actions {
	margin: 0;
	font-size: .8em;
}
#db-actions li {
	list-style: none none;
}

#db-actions h2.db-list-hd {
	font-size: inherit;
	margin: 0;
}

#db-actions ul.db-list-opts {
	float: right;
	margin: 0 .5em 0 1em;
}
#db-actions .db-list-opts li {
	float: left;
	margin-right: 5px;
}

#db-br {
	margin: 0;
    font-size: .8em;
    color: green;
}

#db-responsive {
    font-size: 16px;
    font-weight: bold;;
}

/* ORG HEADER ============================================================== */

@media {
    div#orgHeaderBackground {
        padding-top: 0 !important;
    }

    .org-header-background .org-header-name {
        font-size: 1.6rem;
        margin-bottom: 0 !important;
    }

    .org-header-background .org-header-text-wrapper {
        margin-bottom: 1rem !important;
    }

    .org-header-background .org-header-logo {
        width: 100px;
        height: 100px;
    }

    .org-header-background .org-header-footer-spacer {
        height: 25%;
		min-height: 10px;
		max-height: 60px;
    }
}

/* ORG SELECTOR WIDGET ==========================================*/
.org-selector-widget {
    text-align: center;
}

.org-selector-widget select.custom-select {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    padding-left: 0.4rem;
    font-size: .8rem;
    line-height: 1rem;
    height: 2rem;
    margin: 0 auto;
    width: 50%;
}

@media (max-width: 767px) {
    #logoHolder {
        width: 100px !important;
    }
}

/* BACK BUTTON ***************************************************************/
.go-back-button.mod-top-right {
    /* position: absolute;
    top: 20px;
    right: 15px; */
    float: right;
}

/* PROFILE PAGE *************************************************************/
.profile-user-header {
    padding: 20px 0;
}

.profile-user-header .profile-avatar img {
    width: 5rem;
    height: 5rem;
}

@media (max-width: 767px) {
    .profile-user-header .profile-avatar img {
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* ADMIN HEADER **************************************************************/
.admin-header .admin-header-logo {
    width: 3rem;
    height: 3rem;
}

.admin-header .admin-header-name {
    padding-left: 15px;
}

@media (max-width: 767px) {
    .admin-header .admin-header-logo {
        width: 2rem;
        height: 2rem;
    }
    .admin-header .admin-header-name h1 {
        font-size: 1rem;
    }
}

/* ADMIN EVENT ***************************************************************/
#eventExpiration {
    white-space: nowrap;
}
@media (max-width: 320px) {
    #eventExpiration {
        font-size: 0.7rem;
        padding-top: 1rem;
    }
}



/* DASHBOARD PAGE ************************************************************/
.stream-map-info {
    background-image: url(/assets/cnc/cnc-video-thumbnail-loop-480x270.gif);
    background-repeat:no-repeat;
    background-size:cover;
    position: absolute;
    width: 40%;
    left: 15px;
    bottom: 0;
    border: 1px solid #222;
}
.stream-map-info.mod-expanded {
    width: 100%;
}

.stream-map-info .video-expand {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 120%;
}

/* Video Thumbnails **********************************************************/
.u-cubeportfolio .cbp-wrapper-outer {
    overflow: visible;
}

.ops-card.live { border: 2px solid limegreen; }
.ops-card.offline { border: 2px solid red; }
.ops-card.warn {border: 2px solid orange; }

.thumbnail-wrapper {
    position: relative;
}

.thumbnail-wrapper-spacer {
    visibility: hidden;
}

.thumbnail-wrapper-image  {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* SPECIAL EVENTS ***********************************************/
.mod-special-event-live {
    color: limegreen;
}
.mod-special-event-expired {
    color: red;
}

/* FLOWPLAYER ****************************************************************/
#wowzaPlayer-fp * {
    color: #fff;
    text-align: center;
}
#wowzaPlayer-fp a {
    color: cornflowerblue;
}

#wowzaPlayer-fp > h2 {
    padding-top: 20%;
}

@media screen and (max-width: 700px) {
    #wowzaPlayer-fp h2,
    #wowzaPlayer-fp h3 {
        font-size: 1em;
    }
}

/* VADMIN ********************************************************************/
.super-only {
    color: green;
    font-weight: bold;;
}
.org-enabled {
    color: green;
}
.org-disabled {
    color: red;
}

.var-top-nav {
    background-color: #1e2022;
    color: #fff;
    padding: 10px;
}

/* tabs */
.var-top-nav .nav-tabs {
    border-bottom: 0;
}

.var-top-nav .nav-tabs.bg-dark .nav-link.var-nav-title,
.var-top-nav .nav-tabs.bg-dark .nav-link.var-nav-title:hover,
.var-top-nav .nav-tabs.bg-dark .nav-link.var-nav-title:focus {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.3rem;
    color: #fff !important;
    padding-right: 2rem;
    border: none;
}

.var-top-nav .nav-tabs.bg-dark .nav-link.active,
.var-top-nav .nav-tabs.bg-dark .nav-item.show .nav-link {
    background-color: #444;
    border-color: #444;
    border-radius: 3px;
}

.var-top-nav .nav-tabs.bg-dark .nav-link:hover,
.var-top-nav .nav-tabs.bg-dark .nav-link:focus {
    border-color: transparent transparent #fff transparent;
    border-width: 1px;
    color: #ccc !important;
}


/* PXC Command Center *****************************************************************/
/* Loading container */
.pxc-cc-loading {
    width: 100%;
    text-align: center;
    height: 400px;
    background-color: #eee;
    position: relative;
}

.pxc-cc-loading-content {
    height: 100%;
    transform: translateY(40%);
}

/* map toggles */
.pxc-cc-map-menu-actions {
    padding-bottom: 1rem;
    text-align: center;
    background-color: #fff;
}

.pxc-cc-map-menu-actions .label {
    display: inline-block;
    margin-bottom: 0;
}

.pxc-cc-map-menu-actions  .toggle.btn {
    margin-left: 5px;
}

.pxc-cc-map-menu-actions  .toggle-group .btn {
    line-height: .8rem
}

/* actual google map */
.pxc-cc-map-map {
    height: 400px;
    width: 100%;
    position: relative;
    background-image: url(/assets/cnc/cnc-live-logo.png);
    background-repeat:no-repeat;
    background-position: center center;
}

.pxc-cc-map-map .loading {
    display: block;
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .pxc-cc-map-map,
    .pxc-cc-console {
        height: 600px;
    }

    .pxc-cc-console {
        width: 300px;
    }
}

/* pxc console area */
.pxc-cc-console {
    background-color: #eee;
    border-radius: 2px;
    overflow-y: auto;
}

/* pxc's ********************/
.pxc-cc-console .console-pxc-header {
    position: relative;
    background-color: #444;
    color: #fff;
    cursor: pointer;
    padding: 8px;
}

.pxc-cc-console .console-pxc-header .console-pxc-toggle {
    position: absolute;
    top: 8px;
    right: 8px;
}

.pxc-cc-console .console-pxc-header .console-pxc-name {
    margin-right: 24px;
    font-size: .9rem;
}

.pxc-cc-console .console-pxc-header .console-pxc-id {
    font-size: .8rem;
}

/* icons section */
.pxc-cc-console .console-pxc-header .console-pxc-status {
    margin-top: 4px;
}

.pxc-cc-console .console-pxc-status .status-icon {
    margin-right: 10px;
    color: #999;
}

.pxc-cc-console .console-pxc .console-pxc-status .status-icon:last-child {
    margin-right: 0;
}

.pxc-cc-console .console-pxc.mod-connected  .console-pxc-status .status-icon-connected,
.pxc-cc-console .console-pxc.mod-gps-active .console-pxc-status .status-icon-gps {
    color: green;
}

/* streaming icon */
.pxc-cc-console .console-pxc.mod-good  .console-pxc-status .status-icon-streaming {
    color: green;
}

.pxc-cc-console .console-pxc.mod-sick  .console-pxc-status .status-icon-streaming {
    color: orange;
}

.pxc-cc-console .console-pxc.mod-bad  .console-pxc-status .status-icon-streaming {
    color: red;
}


.pxc-cc-console .console-pxc .console-pxc-status .status-icon-edit {
    color: #fff;
    float: right;
}

.pxc-cc-console .console-pxc .console-pxc-header .icon-down {
    display: none;
}

.pxc-cc-console .console-pxc-header.collapsed .icon-up {
    display: none;
}

.pxc-cc-console .console-pxc-header.collapsed .icon-down {
    display: inline;
}

/* console avatar **********************/
.pxc-cc-console .console-pxc-avatar {
    color: #000;
    background-color: #fff;
    font-size: 0.8rem;
    padding: 8px;
    cursor: pointer;
}

/* last updated */
.pxc-cc-console .console-pxc-avatar .console-pxc-avatar-last-updated-date {
    font-style: italic;
    color: red;
}

.pxc-cc-console .console-pxc.mod-connected .console-pxc-avatar .console-pxc-avatar-last-updated-date.active {
    font-style: normal;
    color: inherit;
}

/* streaming video */
.pxc-cc-console .console-pxc.is-connected .console-pxc-avatar .console-pxc-avatar-is-active-value {
    color: green;
}


/* Detailed info console */
.pxc-cc-details {
    background-color: #444;
    color: #fff;
    padding: 16px;
}

.pxc-cc-details .details-console-avatar-is-active-value.live {
    color: limegreen;
}


/* STREAMS STATUS CONTAINER *************************************************************/
.sswc-filter {
    margin-bottom: 0;
}

.sswc-filter-item-label {
    font-size: 0.875rem;
    cursor: pointer;
    color: #888;
    margin: 0 0.75rem;
}
.sswc-filter-item-label.active {
    font-weight: 600;
    color: #46697d;
    cursor: default;
}

.sswc .reorder-toggle-area {
    text-align: right;
}

.sswc .reorder-toggle-area .reorder-area-btn.is-enabled {
    background-color: green;
    color: #fff;
}
.sswc-streams-stream {
    position: relative;
}

.sswc-streams-stream .thumbnail-wrapper-spacer,
.sswc-streams-stream .thumbnail-wrapper-image {
    width: 100%;
    height: 100%;
}

.sswc-streams.mod-sortable .moveable-indicator {
    display: inline-block;
}

.sswc-streams-stream .moveable-indicator {
    position: absolute;
    top: 0;
    left: 0;
    color: #333;
    padding: 0.5em;
    cursor: pointer;
    z-index:99999;
    background-color: rgba(0, 0, 0, 0.1);;
    cursor: grab;
    display: none;
    opacity: 0.9;
}

.sswc-streams-stream .moveable-indicator .icon {
    font-size: 1em;
    display: inline-block;
}

.sswc-streams .video-thumbnail-item {
    display: block;
    margin: 0;
}

.sswc-streams .live {
    cursor: pointer;
}

/* SORTABLE JS PLUGIN ***************************************************/
.sortablejs-ghost {
    opacity: 0;
}

/* Device Widget ********************************************************/
.dash-widget__title {
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    padding: 4px 0;
    background-color: #eee;
}
.dash-widget__body {
    border: 1px solid #eee;
    border-top: 0;
    padding-bottom: 4px;
}
.dash-widget__value.mod-good,
.dash-widget__value.mod-sick,
.dash-widget__value.mod-bad {
    font-weight: bold;
    text-transform: uppercase;
}
.dash-widget__value.mod-good {
    color: green;
}

.dash-widget__value.mod-sick {
    color: orange;
}

.dash-widget__value.mod-bad {
    color: red;
}

/* Key/Value type data */
.dash-widget .key-val-container {
    width: 100%;
    margin-bottom: 1em;
}
.dash-widget .key-val-cell {
    padding-bottom: 2px;
}
.dash-widget .key-val-label {
    font-weight: bold;
    text-align: right;
    width: 40%;
}
.dash-widget .key-val-value {
    text-align: left;
    padding-left: 5px;
}

/* VIDEO QUALITY PANEL ***************************************************/
.video-quality-panel {
    margin-top: 2px;
    background-color: #ccc;
}

.video-quality-panel .logo {
    float: left;
    width: 50px;
}

.video-quality-panel .content {
    margin-left: 60px;
}

.video-quality-panel.mod-video .logo {
    width: 60px;
}