/** 
 *------------------------------------------------------------------------------
 * @package       T4 Framework for Joomla!
 *------------------------------------------------------------------------------
 * @copyright     Copyright (C) 2004-2019 JoomlArt.com. All Rights Reserved.
 * @license       GNU General Public License version 2 or later; see LICENSE.txt
 * @authors       JoomlArt, JoomlaBamboo, (contribute to this project at github 
 *                & Google group to become co-author)
 *------------------------------------------------------------------------------
 */
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");
/*
  New Pattern Color System
  With this should be easier to overwrite colors
  not only in SCSS but even CSS
*/
/* T4 Theme */
/* Misc */
/* Elevation */
/* https://material-components.github.io/material-components-web-catalog/#/component/elevation */
/* box-shadow: $elevationZ*; */
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit; }

.d-none {
  display: none !important; }

.d-inline {
  display: inline !important; }

.d-inline-block {
  display: inline-block !important; }

.d-block {
  display: block !important; }

.d-table {
  display: table !important; }

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important; }

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important; }
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-row {
    display: table-row !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

@media (min-width: 768px) {
  .d-md-none {
    display: none !important; }
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-table {
    display: table !important; }
  .d-md-table-row {
    display: table-row !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important; }
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-table {
    display: table !important; }
  .d-lg-table-row {
    display: table-row !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important; }
  .d-xl-inline {
    display: inline !important; }
  .d-xl-inline-block {
    display: inline-block !important; }
  .d-xl-block {
    display: block !important; }
  .d-xl-table {
    display: table !important; }
  .d-xl-table-row {
    display: table-row !important; }
  .d-xl-table-cell {
    display: table-cell !important; }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

@media print {
  .d-print-none {
    display: none !important; }
  .d-print-inline {
    display: inline !important; }
  .d-print-inline-block {
    display: inline-block !important; }
  .d-print-block {
    display: block !important; }
  .d-print-table {
    display: table !important; }
  .d-print-table-row {
    display: table-row !important; }
  .d-print-table-cell {
    display: table-cell !important; }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important; }

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important; }

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important; }

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important; }

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important; }

.flex-fill {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important; }

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important; }

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important; }

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important; }

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important; }

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important; }

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important; }

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important; }

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important; }

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important; }

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important; }

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important; }

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important; }

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important; }

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important; }

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important; }

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important; }

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important; }

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important; }

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important; }

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important; }

.align-self-auto {
  -ms-flex-item-align: auto !important;
  -ms-grid-row-align: auto !important;
  align-self: auto !important; }

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important; }

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important; }

.align-self-center {
  -ms-flex-item-align: center !important;
  -ms-grid-row-align: center !important;
  align-self: center !important; }

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important; }

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  -ms-grid-row-align: stretch !important;
  align-self: stretch !important; }

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important; }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important; }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important; }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important; }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important; } }

@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important; }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important; }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important; }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important; }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important; } }

@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important; }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important; }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important; }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important; }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important; } }

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important; }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important; }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important; }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important; }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important; } }

.pos-hidden-xl,
.pos-hidden-lg,
.pos-hidden-md,
.pos-hidden-sm,
.pos-hidden-xs {
  display: none; }

.xs .t4-layout-col:not(.pos-hidden-xs) {
  display: block; }

.sm .t4-layout-col:not(.pos-hidden-sm) {
  display: block; }

.md .t4-layout-col:not(.pos-hidden-md) {
  display: block; }

.lg .t4-layout-col:not(.pos-hidden-lg) {
  display: block; }

.xl .t4-layout-col:not(.pos-hidden-xl) {
  display: block; }

.def .t4-layout-col {
  display: block; }

.t4-modal-confirm-overlay,
.t4-modal-overlay {
  background-color: rgba(0, 0, 0, 0.54);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1060; }

.t4-modal-confirm-overlay {
  z-index: 1990; }

.t4-modal-open .modal-backdrop {
  background-color: rgba(0, 0, 0, 0.54);
  z-index: 1050; }

#t4Modal {
  border-radius: 0;
  top: 0; }
  #t4Modal .modal-dialog {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    max-width: 40%; }
  #t4Modal .modal-content {
    border: 0; }

#t4-confirm {
  max-width: 480px;
  z-index: 2000; }

.t4-modal,
#t4Modal .modal-dialog {
  background-color: #fff;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  font-family: Roboto, Helvetica, sans-serif;
  font-size: 0.875rem;
  padding: 0;
  position: fixed;
  left: 50%;
  line-height: 1.5;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 640px;
  z-index: 1100; }

.t4-modal.t4-mega-item {
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 10%;
  bottom: 10%; }
  .t4-modal.t4-mega-item .t4-modal-inner {
    height: calc(100% - 120px);
    overflow-y: scroll; }

.t4-modal .t4-modal-header,
#t4Modal .modal-header {
  border-radius: 3px 3px 0 0;
  border-bottom: 1px solid rgba(38, 50, 56, 0.12);
  -webkit-box-shadow: 0 5px 10px -5px #e1e1e1;
  box-shadow: 0 5px 10px -5px #e1e1e1;
  line-height: 1;
  min-height: 56px;
  padding: 20px 16px;
  position: relative;
  top: auto;
  left: auto;
  height: auto; }

.t4-modal.no-title .t4-modal-header {
  display: none; }

.t4-modal .t4-modal-header-title,
#t4Modal .modal-header .modal-title {
  color: #424242;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0; }
  .t4-modal .t4-modal-header-title i,
  #t4Modal .modal-header .modal-title i {
    margin-right: 8px; }

.t4-modal .action-t4-modal-confirm-close,
.t4-modal .action-t4-modal-close,
.t4-modal .t4-modal-block-close,
.t4-fonts-manager .action-t4-modal-close {
  border-radius: 50%;
  color: #9e9e9e;
  position: absolute;
  top: 12px;
  right: 12px;
  height: 40px;
  text-align: center;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  width: 40px; }
  .t4-modal .action-t4-modal-confirm-close:hover, .t4-modal .action-t4-modal-confirm-close:focus, .t4-modal .action-t4-modal-confirm-close:active,
  .t4-modal .action-t4-modal-close:hover,
  .t4-modal .action-t4-modal-close:focus,
  .t4-modal .action-t4-modal-close:active,
  .t4-modal .t4-modal-block-close:hover,
  .t4-modal .t4-modal-block-close:focus,
  .t4-modal .t4-modal-block-close:active,
  .t4-fonts-manager .action-t4-modal-close:hover,
  .t4-fonts-manager .action-t4-modal-close:focus,
  .t4-fonts-manager .action-t4-modal-close:active {
    background-color: #f5f5f5;
    color: #212121;
    cursor: pointer; }
  .t4-modal .action-t4-modal-confirm-close span,
  .t4-modal .action-t4-modal-close span,
  .t4-modal .t4-modal-block-close span,
  .t4-fonts-manager .action-t4-modal-close span {
    font-size: 1.25rem;
    line-height: 40px; }

.t4-modal-content {
  padding: 16px; }
  /*.t4-modal-content .chzn-container {
    width: 100% !important; }*/
  .t4-modal-content .msg {
    margin-bottom: 0; }

.t4-modal.no-title .t4-modal-content {
  padding-top: 24px; }
  .t4-modal.no-title .t4-modal-content .msg {
    font-size: 1.125rem; }

.t4-modal .nav-tabs {
  border-bottom: 1px solid rgba(38, 50, 56, 0.12);
  margin-left: -16px;
  margin-right: -16px;
  padding-left: 8px;
  padding-right: 8px; }
  .t4-modal .nav-tabs li {
    margin: 0 0 -1px;
    padding-left: 8px;
    padding-right: 8px; }
    .t4-modal .nav-tabs li a {
      border: 0;
      border-radius: 0;
      color: #757575;
      display: block;
      font-weight: 500;
      padding: 8px 8px 12px;
      position: relative;
      text-transform: uppercase; }
      .t4-modal .nav-tabs li a:hover, .t4-modal .nav-tabs li a:focus, .t4-modal .nav-tabs li a:active {
        background: transparent;
        border: 0; }
      .t4-modal .nav-tabs li a:after {
        content: "";
        display: block;
        height: 2px;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%; }
    .t4-modal .nav-tabs li.active a {
      color: #2196F3; }
      .t4-modal .nav-tabs li.active a:after {
        background-color: #2196F3; }

.t4-modal .control-group {
  margin-bottom: 12px; }

.t4-modal .tab-pane > .row {
  margin-left: -15px; }

div.config-section {
  background-color: #f5f5f5;
  padding: 8px;
  text-align: center; }
  div.config-section .col-inner {
    border: 1px solid rgba(38, 50, 56, 0.12);
    font-size: 0.75rem;
    padding: 8px;
    text-align: left; }
    div.config-section .col-inner:hover {
      cursor: default; }

.t4-layout-xresize,
.t4-mega-xresize {
  margin-bottom: 8px; }
  .t4-layout-xresize::after,
  .t4-mega-xresize::after {
    display: block;
    clear: both;
    content: ""; }
  .t4-layout-xresize .t4-layout-col,
  .t4-mega-xresize .t4-layout-col {
    padding-left: 4px;
    padding-right: 4px;
    position: relative; }
  .t4-layout-xresize .ui-resizable-resizing,
  .t4-mega-xresize .ui-resizable-resizing {
    cursor: ew-resize; }
    .t4-layout-xresize .ui-resizable-resizing .col-inner:hover,
    .t4-mega-xresize .ui-resizable-resizing .col-inner:hover {
      cursor: ew-resize; }
  .t4-layout-xresize .ui-resizable-handle,
  .t4-mega-xresize .ui-resizable-handle {
    background-color: #f5f5f5;
    color: #bdbdbd;
    display: block;
    height: 34px;
    padding-left: 1px;
    position: absolute;
    top: 1px;
    right: 4px;
    text-align: center;
    width: 8px; }
    .t4-layout-xresize .ui-resizable-handle:before,
    .t4-mega-xresize .ui-resizable-handle:before {
      font-family: "Font Awesome 5 Pro";
      content: "\f142";
      font-weight: 300;
      line-height: 34px; }
    .t4-layout-xresize .ui-resizable-handle:hover,
    .t4-mega-xresize .ui-resizable-handle:hover {
      color: #757575;
      cursor: e-resize; }

.config-section.t4-row-container {
  padding: 0 8px 8px; }
  .config-section.t4-row-container .t4-content {
    padding: 8px; }
.t4-modal .t4-modal-footer {
  border-top: 1px solid rgba(44, 58, 65, 0.12);
  padding: 16px;
  text-align: right; }

.t4-modal .t4-modal-footer .btn {
  background-color: transparent;
  border: 0;
  border-radius: 4px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #616161;
  font-size: .875rem;
  font-weight: 500;
  margin-left: 8px;
  height: 32px;
  line-height: 32px;
  letter-spacing: .25px;
  padding: 0 16px; }
  .t4-modal .t4-modal-footer .btn:hover, .t4-modal .t4-modal-footer .btn:focus, .t4-modal .t4-modal-footer .btn:active {
    background-color: #eee; }
  .t4-modal .t4-modal-footer .btn .fa {
    margin-right: 4px; }

.t4-modal .t4-modal-footer .btn-success,
.t4-modal .t4-modal-footer .btn-primary {
  background-color: #2196F3;
  color: #fff; }
  .t4-modal .t4-modal-footer .btn-success:hover, .t4-modal .t4-modal-footer .btn-success:focus, .t4-modal .t4-modal-footer .btn-success:active,
  .t4-modal .t4-modal-footer .btn-primary:hover,
  .t4-modal .t4-modal-footer .btn-primary:focus,
  .t4-modal .t4-modal-footer .btn-primary:active {
    background-color: #0d8aee;
    color: #fff; }

.t4-modal .t4-modal-footer .t4-edit-block-remove {
  background-color: #f5f5f5;
  float: left; }
body .popover {
  z-index: 1101; }

.t4-pane label, .t4-pane .control-label label, .t4-modal .control-label .t4-pane label,
.t4-modal label,
.t4-pane .control-label .t4-modal label,
.t4-modal .control-label label {
  color: #9e9e9e;
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 4px;
  padding-left: 8px;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out; }

.t4-pane .control-label label,
.t4-modal .control-label label {
  display: inline-block;
  padding-left: 12px; }

.t4-pane .sub-group input[type="text"],
.t4-modal-content input[type="text"] {
  background-color: rgba(33, 33, 33, 0.08);
  border: 1px solid transparent;
  border-radius: 25px;
  color: #212121;
  height: 28px;
  font-size: 0.75rem;
  font-family: Roboto, Helvetica, sans-serif;
  font-weight: 500;
  line-height: 28px;
  padding: 8px 12px;
  width: 100%;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s; }
  .t4-pane .sub-group input[type="text"]:focus,
  .t4-modal-content input[type="text"]:focus {
    background-color: #fff;
    border-color: rgba(38, 50, 56, 0.12); }

.t4-pane input[type="text"].invalid {
  background-color: #fde1df;
  border: 1px solid #ea1c0d; }

.t4-pane input#typelist_theme_letter_spacing:placeholder {
  content: "2";
  display: inline-block; }

.t4-button, #assignment.t4-assignment .btn-toolbar .btn, #assignment.t4-assignment .menu-links-block .btn,
.t4-btn {
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  color: #757575;
  display: inline-block;
  border-radius: 25px;
  font-family: Roboto, Helvetica, sans-serif;
  height: 28px;
  line-height: 28px;
  padding: 0 12px;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out; }
  .t4-button:hover, #assignment.t4-assignment .btn-toolbar .btn:hover, #assignment.t4-assignment .menu-links-block .btn:hover, .t4-button:focus, #assignment.t4-assignment .btn-toolbar .btn:focus, #assignment.t4-assignment .menu-links-block .btn:focus, .t4-button:active, #assignment.t4-assignment .btn-toolbar .btn:active, #assignment.t4-assignment .menu-links-block .btn:active,
  .t4-btn:hover,
  .t4-btn:focus,
  .t4-btn:active {
    background-color: #9e9e9e;
    color: #fff;
    cursor: pointer;
    text-decoration: none; }
  .t4-button.has-icon i, #assignment.t4-assignment .btn-toolbar .has-icon.btn i, #assignment.t4-assignment .menu-links-block .has-icon.btn i,
  .t4-btn.has-icon i {
    margin-right: 4px; }
  .t4-button i, #assignment.t4-assignment .btn-toolbar .btn i, #assignment.t4-assignment .menu-links-block .btn i,
  .t4-btn i {
    margin-right: 4px; }

.t4-btn.btn-primary {
  background-color: #2196F3;
  border: 0; }
  .t4-btn.btn-primary:hover, .t4-btn.btn-primary:focus, .t4-btn.btn-primary:active {
    background-color: #0d8aee; }

.t4-btn.btn-success {
  background-color: #4CAF50;
  border: 0; }
  .t4-btn.btn-success:hover, .t4-btn.btn-success:focus, .t4-btn.btn-success:active {
    background-color: #449d48; }

.t4-btn.btn-danger {
  background-color: #F44336;
  border: 0; }
  .t4-btn.btn-danger:hover, .t4-btn.btn-danger:focus, .t4-btn.btn-danger:active {
    background-color: #f32c1e; }

.btn-md {
  font-size: 13px;
  height: 32px;
  line-height: 32px;
  padding-left: 16px;
  padding-right: 16px;
  letter-spacing: 1px;
  text-transform: uppercase; }
  .btn-md i {
    margin-right: 8px; }

.btn-icon {
  padding-left: 12px;
  padding-right: 12px; }
  .btn-icon i {
    margin-right: 0; }

.t4-pane .minicolors {
  clear: both;
  display: block;
  position: relative;
  padding: 0; }
  .t4-pane .minicolors input {
    background-color: #eee;
    border-radius: 25px;
    color: #757575;
    height: 28px;
    line-height: 28px;
    padding: 0 32px 0 12px;
    width: 100%; }
  .t4-pane .minicolors .minicolors-swatch {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    right: 2px;
    left: auto;
    top: 2px;
    bottom: 0;
    height: 24px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 24px; }
    .t4-pane .minicolors .minicolors-swatch span {
      -webkit-box-shadow: none;
      box-shadow: none; }
  .t4-pane .minicolors .minicolors-panel {
    border-radius: 2px;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 164px;
    right: 0;
    left: auto;
    top: 36px;
    width: 204px; }

.t4-input[type="checkbox"],
.t4-input[type="checkbox"][readonly] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  background: #e0e0e0;
  border: 0;
  border-radius: 15px;
  height: 18px;
  min-height: 18px;
  padding-left: 0;
  position: relative;
  margin-top: 0;
  outline: 0 !important;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  width: 36px; }
  .t4-input[type="checkbox"]:checked,
  .t4-input[type="checkbox"][readonly]:checked {
    background-color: #2196F3; }
    .t4-input[type="checkbox"]:checked:before,
    .t4-input[type="checkbox"][readonly]:checked:before {
      background-color: #fff;
      left: auto;
      -webkit-transform: translateX(20px);
      -ms-transform: translateX(20px);
      transform: translateX(20px); }
  .t4-input[type="checkbox"]:before,
  .t4-input[type="checkbox"][readonly]:before {
    background-color: #fff;
    border-radius: 50%;
    content: "";
    display: block;
    height: 14px;
    position: absolute;
    top: 2px;
    left: 2px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    width: 14px; }

.t4-modal input[type="number"] {
  background-color: #eee;
  border: 0;
  border-radius: 25px;
  height: 28px;
  padding: 0 8px; }

.t4-group-toggle {
  clear: both;
  display: block;
  margin-top: 8px; }
  .t4-group-toggle input {
    float: right; }
  .t4-group-toggle small, .t4-group-toggle label, .t4-group-toggle .t4-pane .control-label label, .t4-pane .control-label .t4-group-toggle label,
  .t4-group-toggle .t4-modal .control-label label, .t4-modal .control-label .t4-group-toggle label {
    display: inline-block;
    margin-bottom: 0;
    padding-left: 0;
    vertical-align: middle; }

.t4-pane .input-append,
.field-media-wrapper .input-group-append {
  background-color: #eee;
  border-radius: 25px;
  padding: 3px 100px 3px 3px;
  margin-bottom: 16px;
  position: relative;
  white-space: normal;
  width: 100%; }
  .t4-pane .input-append .add-on,
  .field-media-wrapper .input-group-append .add-on {
    background: transparent;
    border-radius: 0;
    border: 0;
    color: #9e9e9e;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 12px;
    top: 8px;
    z-index: 20; }
  .t4-pane .input-append input.field-media-input[type="text"],
  .field-media-wrapper .input-group-append input.field-media-input[type="text"] {
    background: #fff;
    height: 27.2px;
    line-height: 27.2px;
    margin-bottom: 0;
    padding-left: 26px;
    padding-right: 8px;
    z-index: 10; }
  .t4-pane .input-append button.btn,
  .field-media-wrapper .input-group-append button.btn {
    background-color: #2196F3;
    border-radius: 25px !important;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    font-family: Roboto, Helvetica, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0 0 4px 4px;
    padding: 5px 7px;
    position: absolute;
    text-transform: uppercase; }
    .t4-pane .input-append button.btn:hover, .t4-pane .input-append button.btn:focus, .t4-pane .input-append button.btn:active,
    .field-media-wrapper .input-group-append button.btn:hover,
    .field-media-wrapper .input-group-append button.btn:focus,
    .field-media-wrapper .input-group-append button.btn:active {
      background-color: #128ff2;
      color: #fff; }
    .t4-pane .input-append button.btn span,
    .field-media-wrapper .input-group-append button.btn span {
      font-size: 10px;
      margin: 0; }
  .t4-pane .input-append button.button-select,
  .field-media-wrapper .input-group-append button.button-select {
    padding-right: 10px;
    padding-left: 10px;
    top: 3px;
    right: 34px; }
  .t4-pane .input-append button.button-clear,
  .field-media-wrapper .input-group-append button.button-clear {
    background-color: rgba(0, 0, 0, 0.2);
    top: 3px;
    right: 3px; }
    .t4-pane .input-append button.button-clear:hover, .t4-pane .input-append button.button-clear:focus, .t4-pane .input-append button.button-clear:active,
    .field-media-wrapper .input-group-append button.button-clear:hover,
    .field-media-wrapper .input-group-append button.button-clear:focus,
    .field-media-wrapper .input-group-append button.button-clear:active {
      background-color: #F44336; }
    .t4-pane .input-append button.button-clear span:before,
    .field-media-wrapper .input-group-append button.button-clear span:before {
      font-family: "Font Awesome 5 Pro";
      content: "\f00d";
      font-weight: 300; }

.field-media-wrapper {
  margin-bottom: 0; }

.t4-pane textarea {
  background: #eee;
  border: 0;
  border-radius: 5px;
  color: #424242;
  font-size: 0.875rem;
  height: 150px;
  padding: 16px;
  width: 100%; }
  .t4-pane textarea:focus, .t4-pane textarea:active {
    border: 0; }

/*div.chzn-container {
  width: 100% !important; }
  div.chzn-container .chzn-single {
    background-color: rgba(0, 0, 0, 0.075);
    border-radius: 25px;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #212121;
    height: 28px;
    line-height: 28px;
    padding: 0 12px; }
    div.chzn-container .chzn-single span {
      color: #757575;
      font-family: Roboto, Helvetica, sans-serif;
      font-size: 0.75rem; }
    div.chzn-container .chzn-single .search-choice-close {
      top: 4px; }
      div.chzn-container .chzn-single .search-choice-close:hover, div.chzn-container .chzn-single .search-choice-close:focus {
        color: #2196F3; }
      div.chzn-container .chzn-single .search-choice-close:before {
        font-family: "Font Awesome 5 Pro";
        color: #757575;
        content: "\f00d";
        font-weight: 300;
        font-size: 0.875rem; }
    div.chzn-container .chzn-single div {
      background: none;
      border: 0;
      right: 8px; }
    div.chzn-container .chzn-single b:after {
      border-top: 5px solid #bdbdbd;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      content: "";
      display: block;
      font-size: 18px;
      height: 0;
      position: absolute;
      top: 12px;
      right: 8px;
      width: 0; }
  div.chzn-container.chzn-with-drop .chzn-single {
    background-color: #fff;
    border-radius: 4px 4px 0 0;
    border: 1px solid rgba(38, 50, 56, 0.12);
    border-bottom: 0; }
    div.chzn-container.chzn-with-drop .chzn-single > div {
      background-color: transparent;
      border: 0;
      -webkit-box-shadow: none;
      box-shadow: none; }
  div.chzn-container .chzn-drop {
    border: 1px solid rgba(38, 50, 56, 0.12); }
    div.chzn-container .chzn-drop .chzn-search input[type="text"]:focus {
      border: 1px solid #2196F3;
      height: 28px;
      padding: 0 8px; }
  div.chzn-container ul.chzn-results {
    padding: 0 0 4px; }
    div.chzn-container ul.chzn-results li {
      font-size: 0.75rem;
      padding: 5.33333px 16px;
      line-height: 1.3; }
      div.chzn-container ul.chzn-results li:hover, div.chzn-container ul.chzn-results li.highlighted {
        background-color: #2196F3;
        color: #fff; }
*/
.t4-pane .t4-font-family .controls,
.t4-pane .t4-heading-font-family .controls {
  padding-right: 40px;
  position: relative; }

.t4-pane .t4-font-family button,
.t4-pane .t4-heading-font-family button {
  background-color: #eee;
  border: 0;
  border-radius: 50%;
  color: #9e9e9e;
  font-size: 1.125rem;
  position: absolute;
  right: 0;
  top: 0;
  height: 32px;
  line-height: 1;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  width: 32px; }
  .t4-pane .t4-font-family button:hover, .t4-pane .t4-font-family button:focus, .t4-pane .t4-font-family button:active,
  .t4-pane .t4-heading-font-family button:hover,
  .t4-pane .t4-heading-font-family button:focus,
  .t4-pane .t4-heading-font-family button:active {
    background-color: #2196F3;
    color: #fff; }

.t4-input[type=range] {
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  width: 100%;
  z-index: 6; }
  .t4-input[type=range]:focus, .t4-input[type=range]:active {
    border: 0; }

.t4-input[type=range]::-moz-range-thumb {
  -moz-appearance: none;
  background: #2196F3;
  background-image: none;
  border: none;
  border-radius: 50%;
  box-sizing: border-box;
  height: 12px;
  outline: none;
  width: 12px; }

.t4-slider {
  height: 18px;
  position: relative;
  float: left;
  margin-top: 3px;
  width: 75%;
  z-index: 2; }
  .t4-slider .slider-bg {
    background: #e0e0e0;
    border-radius: 3px;
    border: 0;
    position: absolute;
    height: 3px;
    top: 10px;
    left: 0;
    margin: 0 6px;
    padding: 0;
    overflow: hidden;
    width: calc(100% - 12px); }
    .t4-slider .slider-bg .slider-bg-lower {
      background-color: #2196F3;
      border-radius: 3px 0 0 3px;
      height: 3px;
      position: relative; }

.opacity .controls span {
  display: inline-block;
  float: right;
  width: 24%; }

.t4-param-reset {
  color: #9e9e9e;
  display: inline-block;
  font-size: 0.75rem;
  line-height: 16px;
  margin-left: 4px;
  text-align: center;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  z-index: 100; }
  .t4-param-reset:hover, .t4-param-reset:active {
    color: #616161;
    cursor: pointer; }

.control-helper {
  color: #9e9e9e;
  font-size: 0.75rem;
  padding: 4px 16px; }
  .control-helper:empty {
    display: none; }
  .control-helper small {
    background: #f0f0f0;
    border-radius: 2px;
    color: #616161;
    display: inline-block;
    line-height: 1;
    margin: 0 3px 0 0;
    padding: 1px 2px; }

.t4-pane div.field-spacer {
  border-top: 1px solid rgba(38, 50, 56, 0.12);
  padding-top: 4px;
  text-transform: uppercase; }
  .t4-pane div.field-spacer label {
    color: #9e9e9e;
    font-size: 0.6875rem;
    letter-spacing: 0.5px; }

/*.t4-modal .control-group.block #t4layoutcol_block_chzn {
  width: 68% !important; }
*/
.t4-modal .control-group.block .t4-btn {
  margin: 0 4px; }

.t4-pane .sub-group {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  padding: 0; }
  .t4-pane .sub-group .sub-group-inner {
    padding: 0 8px; }
    .t4-pane .sub-group .sub-group-inner .sub-group-inner {
      padding: 0; }
  .t4-pane .sub-group .sub-legend .item-title {
    color: #424242;
    font-size: 0.875rem;
    font-weight: 500; }
    .t4-pane .sub-group .sub-legend .item-title:hover {
      color: #2196F3;
      cursor: pointer; }

.t4-pane .sub-group.disabled .sub-legend .item-title {
  position: relative; }
  .t4-pane .sub-group.disabled .sub-legend .item-title:after {
    border-radius: 50%;
    content: "\f023";
    display: inline-block;
    height: 16px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 9px;
    line-height: 16px;
    position: absolute;
    top: -5px;
    text-align: center;
    right: -16px;
    width: 16px; }

.t4-pane .sub-group-direct {
  background-color: #fff;
  border-top: 1px solid rgba(38, 50, 56, 0.12);
  padding-top: 16px; }

.t4-pane .sub-group .control-group {
  position: relative;
  margin-bottom: 12px; }
  .t4-pane .sub-group .control-group .control-label {
    float: none;
    margin-bottom: 0;
    padding: 0;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    width: 100%; }
  .t4-pane .sub-group .control-group .controls {
    margin-left: 0; }
  .t4-pane .sub-group .control-group.t4-checkbox .control-label {
    display: inline-block;
    width: auto; }
  .t4-pane .sub-group .control-group.t4-checkbox .controls {
    float: right;
    padding-right: 12px; }

.t4-pane .sub-group-params .control-group:hover .control-label label {
  color: #212121; }

.t4-pane .sub-group-params .control-group.subgroup-toggle {
  padding-left: 12px; }

.t4-pane .group_brand_colors .sub-group-params {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.t4-pane .group_brand_colors .sub-group-params .control-group {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%; }
  .t4-pane .group_brand_colors .sub-group-params .control-group:nth-child(2n) {
    padding-left: 4px; }
  .t4-pane .group_brand_colors .sub-group-params .control-group:nth-child(2n+1) {
    padding-right: 4px; }
    .t4-pane .group_brand_colors .sub-group-params .control-group:nth-child(2n+1) .minicolors .minicolors-panel {
      left: 0;
      right: auto; }
  .t4-pane .group_brand_colors .sub-group-params .control-group input[type="text"] {
    padding-right: 28px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap; }

.t4-pn-views-container.t4-megamenu .control-group.t4-checkbox .control-label {
  display: inline-block;
  float: none; }
  .t4-pn-views-container.t4-megamenu .control-group.t4-checkbox .control-label label {
    padding-left: 12px;
    margin-bottom: 0; }

.t4-pn-views-container.t4-megamenu .control-group.t4-checkbox .controls {
  float: right; }
  .t4-pn-views-container.t4-megamenu .control-group.t4-checkbox .controls input {
    margin-right: 0; }

.t4-pane .sub-group-open {
  background-color: #fff;
  border-top: 1px solid rgba(38, 50, 56, 0.12);
  border-bottom: 1px solid rgba(38, 50, 56, 0.12); }
  .t4-pane .sub-group-open .sub-legend .item-title {
    color: #2196F3; }
  .t4-pane .sub-group-open .sub-legend.has-icon .fal {
    color: #2196F3; }
  .t4-pane .sub-group-open div.sub-legend-group .item-content:after {
    content: "\f107"; }

.t4-pane .sub-group .sub-legend-group {
  margin-bottom: 0; }
  .t4-pane .sub-group .sub-legend-group > .control-label {
    margin-bottom: 0;
    padding: 0;
    width: 100%; }
    .t4-pane .sub-group .sub-legend-group > .control-label .sub-legend {
      padding-top: 12px;
      padding-bottom: 12px; }
  .t4-pane .sub-group .sub-legend-group .item-content {
    position: relative; }
  .t4-pane .sub-group .sub-legend-group .item-content:after {
    content: "\f105";
    color: #424242;
    display: block;
    font-size: 0.875rem;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    position: absolute;
    right: 12px;
    top: 0; }

.sub-legend.has-icon {
  padding-left: 40px;
  position: relative; }
  .sub-legend.has-icon .fa, .sub-legend.has-icon .fal {
    color: #424242;
    font-size: 1rem;
    position: absolute;
    left: 12px;
    top: 12px; }
.t4-message-container {
  bottom: 16px;
  margin-bottom: 8px;
  position: absolute;
  left: 96px;
  z-index: 2060;
  width: 364px; }
  .t4-message-container .alert {
    background-color: #424242;
    border: 0;
    color: #fff;
    margin-bottom: 0;
    padding: 12px 16px;
    padding-right: 56px;
    position: relative; }
    .t4-message-container .alert .alert-heading {
      color: #fff; }
    .t4-message-container .alert.alert-success {
      background-color: #4CAF50; }
    .t4-message-container .alert.alert-warning {
      background-color: #F57C00; }
    .t4-message-container .alert.alert-error {
      background-color: #B71C1C; }
    .t4-message-container .alert .close {
      color: #fff;
      position: absolute;
      right: 8px;
      opacity: 1;
      padding: 0;
      height: 32px;
      line-height: 32px;
      text-align: center;
      width: 32px;
      top: 6px; }
      .t4-message-container .alert .close:hover, .t4-message-container .alert .close:focus, .t4-message-container .alert .close:active {
        background-color: rgba(0, 0, 0, 0.2); }

.sub-group .select-menu-type::after {
  display: block;
  clear: both;
  content: ""; }

.sub-group .select-menu-type label {
  float: left;
  margin: 8px 8px 0 0; }

/*.sub-group .select-menu-type div.chzn-container {
  float: left;
  width: 200px !important; }
*/
.t4-sidebar {
  background-color: whitesmoke;
  border-right: 1px solid rgba(38, 50, 56, 0.12);
  height: 100%;
  font-family: Roboto, Helvetica, sans-serif;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  padding-top: 56px;
  overflow: hidden;
  z-index: 100; }
  @media screen and (max-width: 576px) {
    .t4-sidebar {
      width: 100% !important; } }
  @media screen and (min-width: 576px) {
    .t4-sidebar {
      position: fixed; } }
  @media screen and (min-width: 768px) {
    .t4-sidebar .t4-pn-views-container.t4-layout-builder,
    .t4-sidebar .t4-pn-views-container.t4-navigation {
      width: 452px; } }
  .t4-sidebar .t4-pn-views-container.t4-assignment {
    right: 16px;
    width: auto; }
  .t4-sidebar .sub-head {
    background-color: #f5f5f5;
    padding: 16px 24px; }
  .t4-sidebar .panel {
    background-color: transparent;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(38, 50, 56, 0.12); }
  .t4-sidebar .panel-heading {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #757575;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    position: relative;
    -webkit-transition: all 0.25s ease-in;
    -o-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
    text-transform: uppercase; }
    .t4-sidebar .panel-heading:hover {
      background-color: #f5f5f5; }
    .t4-sidebar .panel-heading h5 {
      font-weight: 500;
      font-size: 14px;
      margin: 0; }
  .t4-sidebar .preset-chooser {
    border-bottom: 1px solid rgba(38, 50, 56, 0.12);
    margin-bottom: 8px;
    position: relative;
    padding: 0 8px 16px;
    z-index: 100; }
    .t4-sidebar .preset-chooser::after {
      display: block;
      clear: both;
      content: ""; }
    .t4-sidebar .preset-chooser label {
      float: left;
      line-height: 28px;
      margin-right: 8px;
      width: auto;
      display: none; }
    .t4-sidebar .preset-chooser .typelist-control {
      float: left;
      margin-right: 8px;
      width: 130px; }
      /*.t4-sidebar .preset-chooser .typelist-control ul.chzn-results li {
        border-bottom: 1px solid rgba(38, 50, 56, 0.12); }
        .t4-sidebar .preset-chooser .typelist-control ul.chzn-results li:last-child {
          border-bottom: 0; }*/
  .t4-sidebar .preset-content {
    position: relative;
    padding: 0 0 8px;
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out; }
    .t4-sidebar .preset-content.editting, .t4-sidebar .preset-content:hover {
      border-color: #2196F3; }
  .t4-sidebar .top-actions {
    position: absolute;
    top: 0;
    left: 144px;
    text-align: right; }
    .t4-sidebar .top-actions::after {
      display: block;
      clear: both;
      content: ""; }
    .t4-sidebar .top-actions .t4-btn {
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      height: 28px;
      display: block;
      float: left;
      overflow: hidden;
      margin-left: 4px;
      padding: 0;
      position: relative;
      text-align: center;
      line-height: 28px;
      width: 28px; }
      .t4-sidebar .top-actions .t4-btn:before {
        background-color: rgba(0, 0, 0, 0.075);
        border-radius: 50%;
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        opacity: 0;
        bottom: 0;
        -webkit-transition: all 200ms ease-in-out;
        -o-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out; }
      .t4-sidebar .top-actions .t4-btn:after {
        background-color: rgba(0, 0, 0, 0.8);
        border-radius: 3px;
        color: #fff;
        content: attr(data-tooltip);
        display: inline-block;
        font-size: 0.75rem;
        line-height: 1;
        opacity: 0;
        padding: 5.33333px 8px;
        position: absolute;
        top: 40px;
        left: 50%;
        white-space: nowrap;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        -webkit-transition: all 200ms ease-in-out;
        -o-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out; }
      .t4-sidebar .top-actions .t4-btn:hover {
        overflow: visible; }
        .t4-sidebar .top-actions .t4-btn:hover:before {
          opacity: 1; }
        .t4-sidebar .top-actions .t4-btn:hover:after {
          opacity: 1;
          top: 36px; }
      .t4-sidebar .top-actions .t4-btn i {
        color: #757575; }
      .t4-sidebar .top-actions .t4-btn.btn-success {
        background-color: #4CAF50; }
        .t4-sidebar .top-actions .t4-btn.btn-success i {
          color: #fff; }
    .t4-sidebar .top-actions .btn-save {
      padding-left: 12px;
      padding-right: 12px;
      width: auto; }
      .t4-sidebar .top-actions .btn-save:before, .t4-sidebar .top-actions .btn-save:after {
        display: none; }
  .t4-sidebar .clone-layout {
    background-color: #fff;
    border-bottom: 1px solid rgba(38, 50, 56, 0.12);
    padding: 16px 8px; }
    .t4-sidebar .clone-layout .form-action {
      margin-top: 8px;
      text-align: right; }
  .t4-sidebar .t4-site-settings .t4-block-header,
  .t4-sidebar .t4-navigation .t4-block-header,
  .t4-sidebar .t4-group-theme .t4-block-header,
  .t4-sidebar .t4-layout-builder .t4-block-header {
    border-bottom: 0;
    margin-bottom: 0; }
  .t4-sidebar .t4-site-settings .sub-group-direct,
  .t4-sidebar .t4-navigation .sub-group-direct,
  .t4-sidebar .t4-group-theme .sub-group-direct,
  .t4-sidebar .t4-layout-builder .sub-group-direct {
    background-color: transparent;
    border-top: 0;
    padding-top: 0; }
    .t4-sidebar .t4-site-settings .sub-group-direct > .sub-group-inner,
    .t4-sidebar .t4-navigation .sub-group-direct > .sub-group-inner,
    .t4-sidebar .t4-group-theme .sub-group-direct > .sub-group-inner,
    .t4-sidebar .t4-layout-builder .sub-group-direct > .sub-group-inner {
      padding-left: 0;
      padding-right: 0; }
    .t4-sidebar .t4-site-settings .sub-group-direct .preset-chooser,
    .t4-sidebar .t4-navigation .sub-group-direct .preset-chooser,
    .t4-sidebar .t4-group-theme .sub-group-direct .preset-chooser,
    .t4-sidebar .t4-layout-builder .sub-group-direct .preset-chooser {
      margin-bottom: -1px; }
  .t4-sidebar .t4-site-settings .form-fields .sub-group,
  .t4-sidebar .t4-navigation .form-fields .sub-group,
  .t4-sidebar .t4-group-theme .form-fields .sub-group,
  .t4-sidebar .t4-layout-builder .form-fields .sub-group {
    padding: 0 8px; }
    .t4-sidebar .t4-site-settings .form-fields .sub-group:first-child.sub-group-open,
    .t4-sidebar .t4-navigation .form-fields .sub-group:first-child.sub-group-open,
    .t4-sidebar .t4-group-theme .form-fields .sub-group:first-child.sub-group-open,
    .t4-sidebar .t4-layout-builder .form-fields .sub-group:first-child.sub-group-open {
      border-top: 0; }
    .t4-sidebar .t4-site-settings .form-fields .sub-group.sub-group-open,
    .t4-sidebar .t4-navigation .form-fields .sub-group.sub-group-open,
    .t4-sidebar .t4-group-theme .form-fields .sub-group.sub-group-open,
    .t4-sidebar .t4-layout-builder .form-fields .sub-group.sub-group-open {
      border-top: 1px solid rgba(38, 50, 56, 0.12);
      border-bottom: 1px solid rgba(38, 50, 56, 0.12);
      padding: 0 8px; }
  .t4-sidebar .t4-navigation .preset-chooser .typelist-control {
    width: 200px; }
  .t4-sidebar .t4-navigation .preset-chooser .top-actions {
    left: 216px; }
  .t4-sidebar .t4-layout-builder .sub-group-inner {
    padding: 0; }
  .t4-sidebar .t4-layout-builder .preset-chooser {
    border-bottom: 0;
    margin-bottom: 0; }
    .t4-sidebar .t4-layout-builder .preset-chooser .typelist-control {
      width: 200px; }
    .t4-sidebar .t4-layout-builder .preset-chooser .top-actions {
      left: 216px; }
  .t4-sidebar .t4-layout-builder .form-fields .sub-group.sub-group-open {
    padding: 16px 8px 0; }
  .t4-sidebar .t4-layout-builder .t4-position-layout {
    padding: 0 8px; }
    .t4-sidebar .t4-layout-builder .t4-position-layout .t4-group-toggle {
      margin: 0; }
  .t4-sidebar .panel-body {
    padding: 0 24px; }

.t4-pn-views {
  border-right: 1px solid rgba(38, 50, 56, 0.12);
  padding: 0 4px 8px;
  height: 100%;
  position: relative;
  width: 88px; }
  @media screen and (min-height: 750px) {
    .t4-pn-views {
      padding-top: 16px; } }
  .t4-pn-views .t4-sidebar-nav {
    list-style: none;
    margin: 0;
    padding: 0; }
  .t4-pn-views .t4-sidebar-action {
    position: relative;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s; }
    .t4-pn-views .t4-sidebar-action:after {
      background-color: rgba(0, 0, 0, 0.075);
      content: "";
      display: block;
      height: 1px;
      left: -4px;
      right: -4px;
      bottom: 0;
      position: absolute; }
      @media screen and (min-height: 750px) {
        .t4-pn-views .t4-sidebar-action:after {
          display: none; } }
    @media screen and (min-height: 750px) {
      .t4-pn-views .t4-sidebar-action.t4-tools {
        padding-top: 8px; }
        .t4-pn-views .t4-sidebar-action.t4-tools:before {
          background-color: rgba(0, 0, 0, 0.075);
          content: "";
          display: block;
          height: 1px;
          left: -4px;
          right: -4px;
          top: 0;
          position: absolute; } }
  .t4-pn-views .t4-switch-theme {
    background-color: #fafafa;
    border-top: 1px solid rgba(38, 50, 56, 0.12);
    bottom: 0;
    color: #424242;
    padding: 8px 0;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center; }
    .t4-pn-views .t4-switch-theme ul {
      list-style: none;
      margin: 0;
      padding: 0; }
      .t4-pn-views .t4-switch-theme ul li {
        padding: 8px; }
        .t4-pn-views .t4-switch-theme ul li label {
          margin-bottom: 0; }
        .t4-pn-views .t4-switch-theme ul li span {
          color: #5c5c5c;
          display: block;
          margin-top: 4px; }
        @media screen and (max-height: 800px) {
          .t4-pn-views .t4-switch-theme ul li:last-child {
            display: none; } }
  .t4-pn-views .control-group {
    margin-bottom: 0; }
    .t4-pn-views .control-group .control-label {
      float: none;
      width: auto; }
  .t4-pn-views div[id*="-desc"] {
    display: none; }

.form-horizontal .t4-sidebar-nav .control-group {
  margin: 0; }

.form-horizontal .t4-sidebar-nav .control-label {
  float: none;
  margin: 0;
  padding: 0;
  width: auto; }

.t4-sidebar-nav .legend {
  border: 1px solid transparent;
  color: #212121;
  display: block;
  font-size: 0.75rem;
  line-height: 1.3;
  margin: 0;
  margin-left: -4px;
  margin-right: -4px;
  padding: 16px 8px;
  opacity: .7;
  text-align: center;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out; }
  @media screen and (min-height: 750px) {
    .t4-sidebar-nav .legend {
      padding: 8px;
      margin: 0 0 8px; } }
  .t4-sidebar-nav .legend:hover {
    cursor: pointer;
    opacity: 1; }

.t4-sidebar-nav .active .legend {
  background-color: #fff;
  color: #2196F3;
  opacity: 1; }
  @media screen and (min-height: 750px) {
    .t4-sidebar-nav .active .legend {
      border-radius: 8px;
      border: 1px solid rgba(38, 50, 56, 0.12); } }

.t4-sidebar-nav .legend > span {
  display: none;
  font-size: 18px;
  margin-bottom: 8px; }
  @media screen and (min-height: 750px) {
    .t4-sidebar-nav .legend > span {
      display: block; } }

.t4-sidebar-nav .item-content {
  font-family: Roboto, Helvetica, sans-serif;
  font-weight: 500; }
  .t4-sidebar-nav .item-content .item-desc {
    display: none; }

.t4-pn-views-container {
  background: whitesmoke;
  position: absolute;
  left: 88px;
  top: 56px;
  height: calc(100% - 56px);
  overflow-y: auto;
  right: 0; }
  @media screen and (min-width: 576px) {
    .t4-pn-views-container {
      right: auto;
      width: 280px; } }

.t4-pn-views-container .t4-block-header {
  border-bottom: 1px solid rgba(38, 50, 56, 0.12);
  margin-bottom: -1px;
  padding: 16px; }
  .t4-pn-views-container .t4-block-header .t4-input[type="checkbox"] {
    vertical-align: middle; }

.t4-pane .t4-block-header,
.t4-pane .t4-group-toggle,
.t4-pane .preset-chooser {
  position: relative; }
  .t4-pane .t4-block-header .popover,
  .t4-pane .t4-group-toggle .popover,
  .t4-pane .preset-chooser .popover {
    background-color: #4CAF50;
    border-radius: 3px;
    border: 0;
    color: #fff;
    position: absolute;
    left: 0 !important;
    right: auto !important;
    -webkit-transform: translateX(-40%);
    -ms-transform: translateX(-40%);
    transform: translateX(-40%);
    white-space: nowrap;
    min-width: 168px;
    text-align: center;
    width: auto; }
    .t4-pane .t4-block-header .popover .arrow,
    .t4-pane .t4-group-toggle .popover .arrow,
    .t4-pane .preset-chooser .popover .arrow {
      margin-left: 0;
      left: auto;
      right: 12px;
      border-bottom-color: #4CAF50;
      border-top-width: 7px;
      top: -14px; }
      .t4-pane .t4-block-header .popover .arrow:after,
      .t4-pane .t4-group-toggle .popover .arrow:after,
      .t4-pane .preset-chooser .popover .arrow:after {
        display: none; }

.t4-pane .preset-chooser .popover .arrow {
  left: 72px;
  right: auto; }

.t4-pn-views-container .t4-block-header h4 {
  color: #424242;
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
  position: relative; }

.t4-pn-views-container.t4-advanced .t4-block-header h4:after {
  background-color: #4CAF50;
  border-radius: 3px;
  content: "Global";
  color: #fff;
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1;
  padding: 4px 4px 2px;
  position: absolute;
  top: -6px;
  right: -48px; }

.t4-pn-views-container.t4-advanced .t4-block-header .t4-input[type="checkbox"]:before {
  content: "\f30d";
  color: #bdbdbd;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  font-size: 9px;
  line-height: 13px;
  text-align: center; }

.t4-pn-views-container.t4-advanced .t4-block-header .t4-input[type="checkbox"]:checked:before {
  content: ""; }
.addons-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0; }
  .addons-list li {
    background-color: rgba(0, 0, 0, 0.045);
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 5px;
    margin-bottom: 4px;
    padding: 8px;
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out; }
    .addons-list li::after {
      display: block;
      clear: both;
      content: ""; }
    .addons-list li label, .addons-list li .t4-pane .control-label label, .t4-pane .control-label .addons-list li label,
    .addons-list li .t4-modal .control-label label, .t4-modal .control-label .addons-list li label {
      display: inline-block;
      margin-bottom: 0;
      padding-left: 0; }
    .addons-list li input {
      float: right; }
    .addons-list li.addon-local {
      background-color: transparent;
      border: 1px solid rgba(0, 0, 0, 0.055); }
      .addons-list li.addon-local:hover {
        border-color: #2196F3; }
        .addons-list li.addon-local:hover .t4-btn {
          opacity: 1; }
    .addons-list li.editting .addons-form {
      border-radius: 0;
      border: 0;
      padding: 0; }
      .addons-list li.editting .addons-form:before {
        display: none; }
    .addons-list li.editting .t4-btn.btn-delete, .addons-list li.editting .t4-btn.btn-edit {
      opacity: 0; }
    .addons-list li .btn-edit, .addons-list li .btn-delete {
      background-color: transparent;
      opacity: 0;
      vertical-align: middle;
      appearance: none;
      -moz-appearance: none;
      -webkit-appearance: none;
      color: #9e9e9e;
      display: inline-block;
      font-size: 12px;
      height: 24px;
      padding: 4px;
      position: relative;
      text-align: center;
      width: 24px; }
      .addons-list li .btn-edit:hover, .addons-list li .btn-edit:focus, .addons-list li .btn-edit:active, .addons-list li .btn-delete:hover, .addons-list li .btn-delete:focus, .addons-list li .btn-delete:active {
        background-color: transparent;
        cursor: pointer; }
        .addons-list li .btn-edit:hover:before, .addons-list li .btn-edit:focus:before, .addons-list li .btn-edit:active:before, .addons-list li .btn-delete:hover:before, .addons-list li .btn-delete:focus:before, .addons-list li .btn-delete:active:before {
          opacity: 1; }
      .addons-list li .btn-edit .fa, .addons-list li .btn-edit .fal, .addons-list li .btn-delete .fa, .addons-list li .btn-delete .fal {
        line-height: 16px;
        margin: 0; }
      .addons-list li .btn-edit:before, .addons-list li .btn-delete:before {
        background-color: rgba(0, 0, 0, 0.075);
        border-radius: 50%;
        content: "";
        display: block;
        height: 100%;
        left: 0;
        opacity: 0;
        position: absolute;
        top: 0;
        -webkit-transition: all 0.25s ease-out;
        -o-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
        width: 100%; }
      .addons-list li .btn-edit[data-tooltip]:after, .addons-list li .btn-delete[data-tooltip]:after {
        background-color: #424242;
        border-radius: 4px;
        display: none;
        color: #fff;
        content: attr(data-tooltip);
        font-size: 0.75rem;
        font-weight: 400;
        min-height: 8px;
        opacity: 0;
        line-height: 1;
        padding: 8px 8px;
        position: absolute;
        top: 24px;
        left: 50%;
        white-space: nowrap;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        z-index: 3000; }
      .addons-list li .btn-edit[data-tooltip]:hover:after, .addons-list li .btn-delete[data-tooltip]:hover:after {
        display: inline-block;
        opacity: 1;
        top: 26px; }
      .addons-list li .btn-edit i, .addons-list li .btn-delete i {
        vertical-align: top; }

.add-more-addons {
  margin: 0 0 8px;
  text-align: center; }
  .add-more-addons .t4-btn {
    margin: 0 2px; }
    .add-more-addons .t4-btn.active {
      background-color: #2196F3;
      color: #fff; }

.addons-form-edit, .addons-form {
  border: 1px solid rgba(38, 50, 56, 0.12);
  border-radius: 5px;
  clear: both;
  margin-top: 1rem;
  padding: 16px;
  position: relative; }
  .addons-form-edit:before, .addons-form-edit:after, .addons-form:before, .addons-form:after {
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid rgba(38, 50, 56, 0.12);
    content: "";
    display: block;
    margin-left: -4px;
    position: absolute;
    height: 0;
    top: -9px;
    left: 50%;
    width: 0; }
  .addons-form-edit:after, .addons-form:after {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fff;
    top: -7px;
    margin-left: -2px;
    left: 50%; }
  .addons-form-edit.addons-js:before, .addons-form.addons-js:before {
    left: 200px; }
  .addons-form-edit.addons-js:after, .addons-form.addons-js:after {
    left: 202px; }
  .addons-form-edit textarea, .addons-form textarea {
    height: auto; }
  .addons-form-edit .addon-actions, .addons-form .addon-actions {
    text-align: center; }

.tool-export,
.tool-import,
.tool-css {
  background-color: rgba(0, 0, 0, 0.025);
  border: 1px dashed rgba(38, 50, 56, 0.12);
  border-radius: 3px;
  margin-bottom: 8px;
  padding: 8px 8px 12px; }
  .tool-export h4,
  .tool-import h4,
  .tool-css h4 {
    margin: 0 0 4px;
    font-size: 0.75rem;
    font-weight: 600; }
  .tool-export .description,
  .tool-import .description,
  .tool-css .description {
    color: #757575;
    font-size: 0.75rem; }
  /*.tool-export div.chzn-container,
  .tool-import div.chzn-container,
  .tool-css div.chzn-container {
    width: 50% !important; }*/
  .tool-export .t4-btn,
  .tool-import .t4-btn,
  .tool-css .t4-btn {
    display: inline-block;
    vertical-align: middle; }
  .tool-export .btn-primary,
  .tool-import .btn-primary,
  .tool-css .btn-primary {
    background-color: #2196F3; }
    .tool-export .btn-primary:hover, .tool-export .btn-primary:focus, .tool-export .btn-primary:active,
    .tool-import .btn-primary:hover,
    .tool-import .btn-primary:focus,
    .tool-import .btn-primary:active,
    .tool-css .btn-primary:hover,
    .tool-css .btn-primary:focus,
    .tool-css .btn-primary:active {
      background-color: #2196f3; }
  .tool-export .checked-list,
  .tool-import .checked-list,
  .tool-css .checked-list {
    list-style: none;
    margin: 8px 0 16px;
    padding: 0 0 0 16px; }
    .tool-export .checked-list li,
    .tool-import .checked-list li,
    .tool-css .checked-list li {
      padding: 4px 0; }
      .tool-export .checked-list li input,
      .tool-import .checked-list li input,
      .tool-css .checked-list li input {
        margin: 0 4px 0 0;
        vertical-align: middle; }

.tool-import label, .tool-import .t4-pane .control-label label, .t4-pane .control-label .tool-import label,
.tool-import .t4-modal .control-label label, .t4-modal .control-label .tool-import label {
  background-color: #4CAF50;
  border-radius: 25px;
  display: inline-block;
  color: #fff;
  height: 28px;
  line-height: 28px;
  margin-bottom: 0;
  padding: 0 16px;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out; }
  .tool-import label i, .tool-import .t4-pane .control-label label i, .t4-pane .control-label .tool-import label i, .tool-import .t4-modal .control-label label i, .t4-modal .control-label .tool-import label i {
    margin-right: 4px; }
  .tool-import label:hover {
    background-color: #47a44b;
    color: #fff; }

.tool-import #tool-import-file {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
  overflow: hidden;
  z-index: -1; }

.t4-layout-section {
  background-color: rgba(33, 33, 33, 0.08);
  margin-bottom: 4px;
  padding-bottom: 8px;
  position: relative; }
  .t4-layout-section.row-active {
    -webkit-box-shadow: 0 0 0 1px #2196F3;
    box-shadow: 0 0 0 1px #2196F3; }
  .t4-layout-section .t4-section-settings {
    padding: 4px 8px 0; }
  .t4-layout-section .t4-section-title {
    color: #424242;
    display: inline-block;
    font-weight: 500;
    padding-top: 5px; }
  .t4-layout-section .t4-add-row {
    background-color: #2196F3;
    border-radius: 25px;
    bottom: -10px;
    color: #fff;
    height: 20px;
    left: 50%;
    opacity: 0;
    overflow: hidden;
    padding: 0 4px;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    width: 20px;
    z-index: 100; }
    .t4-layout-section .t4-add-row i {
      display: inline-block;
      color: #fff;
      font-size: 11px;
      float: left;
      margin-left: 2px;
      line-height: 20px; }
    .t4-layout-section .t4-add-row span {
      display: inline-block;
      font-size: 10px;
      line-height: 20px;
      overflow: hidden;
      opacity: 0;
      -webkit-transition: all 0.25s;
      -o-transition: all 0.25s;
      transition: all 0.25s;
      text-transform: uppercase;
      width: 50px; }
    .t4-layout-section .t4-add-row:hover {
      width: 74px; }
      .t4-layout-section .t4-add-row:hover span {
        padding-left: 5px;
        opacity: 1; }
  .t4-layout-section:hover .t4-add-row {
    opacity: 1; }

.t4-row-option-list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .t4-row-option-list li {
    float: left; }
    .t4-row-option-list li a {
      color: #9e9e9e;
      appearance: none;
      -moz-appearance: none;
      -webkit-appearance: none;
      color: #9e9e9e;
      display: inline-block;
      font-size: 12px;
      height: 28px;
      padding: 4px;
      position: relative;
      text-align: center;
      width: 28px; }
      .t4-row-option-list li a:hover, .t4-row-option-list li a:focus, .t4-row-option-list li a:active {
        background-color: transparent;
        cursor: pointer; }
        .t4-row-option-list li a:hover:before, .t4-row-option-list li a:focus:before, .t4-row-option-list li a:active:before {
          opacity: 1; }
      .t4-row-option-list li a .fa, .t4-row-option-list li a .fal {
        line-height: 20px;
        margin: 0; }
      .t4-row-option-list li a:before {
        background-color: rgba(0, 0, 0, 0.075);
        border-radius: 50%;
        content: "";
        display: block;
        height: 100%;
        left: 0;
        opacity: 0;
        position: absolute;
        top: 0;
        -webkit-transition: all 0.25s ease-out;
        -o-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
        width: 100%; }
      .t4-row-option-list li a[data-tooltip]:after {
        background-color: #424242;
        border-radius: 4px;
        display: none;
        color: #fff;
        content: attr(data-tooltip);
        font-size: 0.75rem;
        font-weight: 400;
        min-height: 8px;
        opacity: 0;
        line-height: 1;
        padding: 8px 8px;
        position: absolute;
        top: 28px;
        left: 50%;
        white-space: nowrap;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        z-index: 3000; }
      .t4-row-option-list li a[data-tooltip]:hover:after {
        display: inline-block;
        opacity: 1;
        top: 30px; }

.t4-row-container {
  padding: 4px 8px;
  position: relative;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }
  .t4-row-container .row {
    margin-left: -3px;
    margin-right: -3px; }
  .t4-row-container .t4-layout-col,
  .t4-row-container .t4-col {
    padding-left: 3px;
    padding-right: 3px; }
  .t4-row-container .col-inner {
    background-color: #fff;
    border: 1px solid rgba(38, 50, 56, 0.12);
    padding: 8px;
    position: relative; }
    .t4-row-container .col-inner::after {
      display: block;
      clear: both;
      content: ""; }
    .t4-row-container .col-inner:hover {
      cursor: move; }
      .t4-row-container .col-inner:hover .t4-column-options,
      .t4-row-container .col-inner:hover .t4-item-options {
        opacity: 1; }
    .t4-row-container .col-inner .t4-column-title {
      color: #424242;
      display: block;
      overflow: hidden;
      white-space: nowrap;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis;
      text-align: left;
      width: calc(100% - 20px); }
    .t4-row-container .col-inner .t4-column-options,
    .t4-row-container .col-inner .t4-item-options {
      top: 7px;
      right: 8px;
      opacity: 0;
      -webkit-transition: all 0.25s;
      -o-transition: all 0.25s;
      transition: all 0.25s;
      appearance: none;
      -moz-appearance: none;
      -webkit-appearance: none;
      color: #9e9e9e;
      display: inline-block;
      font-size: 11px;
      height: 22px;
      padding: 3px;
      position: relative;
      text-align: center;
      width: 22px;
      position: absolute; }
      .t4-row-container .col-inner .t4-column-options:hover, .t4-row-container .col-inner .t4-column-options:focus, .t4-row-container .col-inner .t4-column-options:active,
      .t4-row-container .col-inner .t4-item-options:hover,
      .t4-row-container .col-inner .t4-item-options:focus,
      .t4-row-container .col-inner .t4-item-options:active {
        background-color: transparent;
        cursor: pointer; }
        .t4-row-container .col-inner .t4-column-options:hover:before, .t4-row-container .col-inner .t4-column-options:focus:before, .t4-row-container .col-inner .t4-column-options:active:before,
        .t4-row-container .col-inner .t4-item-options:hover:before,
        .t4-row-container .col-inner .t4-item-options:focus:before,
        .t4-row-container .col-inner .t4-item-options:active:before {
          opacity: 1; }
      .t4-row-container .col-inner .t4-column-options .fa, .t4-row-container .col-inner .t4-column-options .fal,
      .t4-row-container .col-inner .t4-item-options .fa,
      .t4-row-container .col-inner .t4-item-options .fal {
        line-height: 16px;
        margin: 0; }
      .t4-row-container .col-inner .t4-column-options:before,
      .t4-row-container .col-inner .t4-item-options:before {
        background-color: rgba(0, 0, 0, 0.075);
        border-radius: 50%;
        content: "";
        display: block;
        height: 100%;
        left: 0;
        opacity: 0;
        position: absolute;
        top: 0;
        -webkit-transition: all 0.25s ease-out;
        -o-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
        width: 100%; }
      .t4-row-container .col-inner .t4-column-options[data-tooltip]:after,
      .t4-row-container .col-inner .t4-item-options[data-tooltip]:after {
        background-color: #424242;
        border-radius: 4px;
        display: none;
        color: #fff;
        content: attr(data-tooltip);
        font-size: 0.75rem;
        font-weight: 400;
        min-height: 8px;
        opacity: 0;
        line-height: 1;
        padding: 8px 8px;
        position: absolute;
        top: 22px;
        left: 50%;
        white-space: nowrap;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        z-index: 3000; }
      .t4-row-container .col-inner .t4-column-options[data-tooltip]:hover:after,
      .t4-row-container .col-inner .t4-item-options[data-tooltip]:hover:after {
        display: inline-block;
        opacity: 1;
        top: 23.5px; }
    .t4-row-container .col-inner .t4-admin-layout-vis,
    .t4-row-container .col-inner .t4-col-remove {
      color: #9e9e9e;
      position: absolute;
      right: 12px;
      top: 10px; }
      .t4-row-container .col-inner .t4-admin-layout-vis:hover,
      .t4-row-container .col-inner .t4-col-remove:hover {
        color: #616161;
        cursor: pointer; }
    .t4-row-container .col-inner .t4-col-remove {
      background-color: #eee;
      border-radius: 50%;
      height: 16px;
      text-align: center;
      width: 16px; }
  .t4-row-container .column-active .col-inner {
    border: 1px solid #2196F3; }
  .t4-row-container .t4-admin-layout-hiddenpos {
    background-color: rgba(0, 0, 0, 0.065);
    display: none;
    padding: 8px;
    position: relative;
    text-align: left;
    padding-left: 48px; }
    .t4-row-container .t4-admin-layout-hiddenpos.haspos {
      display: block; }
    .t4-row-container .t4-admin-layout-hiddenpos:before {
      background-color: #F44336;
      content: "\f070";
      color: #fff;
      font-family: "Font Awesome 5 Pro";
      font-weight: 300;
      font-size: 14px;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      line-height: 40px;
      text-align: center;
      width: 40px; }
    .t4-row-container .t4-admin-layout-hiddenpos span {
      background: #fff;
      border-radius: 3px;
      border: 1px solid rgba(38, 50, 56, 0.12);
      margin-right: 0.5rem;
      padding: 4px 8px; }
      .t4-row-container .t4-admin-layout-hiddenpos span:hover {
        border: 1px solid #2196F3;
        cursor: pointer; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.brand {
  color: #424242;
  font-size: 1.6875rem;
  font-weight: 500;
  float: left;
  line-height: 32px;
  padding: 12px 0; }
#attrib-themeConfig {
  background-color: whitesmoke;
  border-radius: 0;
  border: 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0;
  z-index: 1050;
  width: 100%; }
  @media screen and (min-width: 992px) {
    #attrib-themeConfig {
      background-color: #fff; } }
.reload-preview {
  color: #bdbdbd;
  display: none;
  font-family: Roboto, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  position: absolute;
  letter-spacing: 1px;
  right: 558px;
  top: 20px;
  text-transform: uppercase; }
  @media screen and (min-width: 992px) {
    .reload-preview {
      display: inline-block; } }
  .reload-preview:hover {
    color: #0d8aee;
    cursor: pointer; }
  .reload-preview i {
    margin-right: 4px; }

.toolbar-devices {
  border-right: 1px solid rgba(0, 0, 0, 0.075);
  border-left: 1px solid rgba(0, 0, 0, 0.065);
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 16px;
  padding-right: 8px;
  position: absolute;
  top: 0;
  right: 307px; }
  .toolbar-devices::after {
    display: block;
    clear: both;
    content: ""; }
  @media screen and (min-width: 992px) {
    .toolbar-devices {
      display: block; } }
  .toolbar-devices li {
    float: left; }
  .toolbar-devices .label {
    background-color: transparent;
    color: #9e9e9e;
    border-radius: 0;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    line-height: 32px;
    padding: 0 8px 0 0;
    text-transform: uppercase; }
  .toolbar-devices .default {
    display: inline-block;
    font-weight: 500;
    font-size: 0.875rem;
    font-family: Roboto, Helvetica, sans-serif;
    line-height: 32px;
    padding-right: 8px;
    text-transform: uppercase; }
    .toolbar-devices .default:hover {
      cursor: pointer; }
  .toolbar-devices .btn {
    margin: 0 4px;
    background: transparent;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    color: #757575;
    display: inline-block;
    font-size: 0.875rem;
    height: 32px;
    padding: 8px;
    position: relative;
    text-align: center;
    width: 32px; }
    .toolbar-devices .btn:hover, .toolbar-devices .btn:focus, .toolbar-devices .btn:active {
      background-color: transparent;
      cursor: pointer; }
      .toolbar-devices .btn:hover:before, .toolbar-devices .btn:focus:before, .toolbar-devices .btn:active:before {
        opacity: 1; }
    .toolbar-devices .btn .fa, .toolbar-devices .btn .fal {
      line-height: 16px;
      margin: 0; }
    .toolbar-devices .btn:before {
      background-color: rgba(0, 0, 0, 0.075);
      border-radius: 50%;
      content: "";
      display: block;
      height: 100%;
      left: 0;
      opacity: 0;
      position: absolute;
      top: 0;
      -webkit-transition: all 0.25s ease-out;
      -o-transition: all 0.25s ease-out;
      transition: all 0.25s ease-out;
      width: 100%; }
    .toolbar-devices .btn[data-tooltip]:after {
      background-color: #424242;
      border-radius: 4px;
      display: none;
      color: #fff;
      content: attr(data-tooltip);
      font-size: 0.75rem;
      font-weight: 400;
      min-height: 8px;
      opacity: 0;
      line-height: 1;
      padding: 8px 8px;
      position: absolute;
      top: 32px;
      left: 50%;
      white-space: nowrap;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      z-index: 3000; }
    .toolbar-devices .btn[data-tooltip]:hover:after {
      display: inline-block;
      opacity: 1;
      top: 36px; }
  .toolbar-devices .active {
    color: #2196F3; }
    .toolbar-devices .active span {
      color: #2196F3; }

.toolbar-save {
  padding-left: 8px;
  padding-right: 16px;
  float: right; }
  .toolbar-save .t4-btn {
    margin-left: 8px; }
    .toolbar-save .t4-btn.btn-save {
      background-color: #4CAF50;
      -webkit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.06), 0 2px 2px 0 rgba(0, 0, 0, 0.06), 0 1px 5px 0 rgba(0, 0, 0, 0.08);
      box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.06), 0 2px 2px 0 rgba(0, 0, 0, 0.06), 0 1px 5px 0 rgba(0, 0, 0, 0.08);
      color: #fff; }
    .toolbar-save .t4-btn.btn-close i {
      margin-right: 0; }
    .toolbar-save .t4-btn i {
      margin-right: 0; }
      @media screen and (min-width: 576px) {
        .toolbar-save .t4-btn i {
          margin-right: 4px; } }
  .toolbar-save span.btn-text {
    display: none; }
    @media screen and (min-width: 576px) {
      .toolbar-save span.btn-text {
        display: inline-block; } }

.t4-sidebar-preview.disabled .toolbar-save .btn-save {
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #757575; }

.t4-sidebar-preview.disabled .toolbar-save .t4-btn.dropdown-toggle {
  background-color: rgba(0, 0, 0, 0.1);
  color: #757575; }
  .t4-sidebar-preview.disabled .toolbar-save .t4-btn.dropdown-toggle .caret {
    border-top-color: #757575;
    border-bottom-color: #757575; }

.t4-admin-save {
  float: left;
  position: relative; }
  .t4-admin-save .t4-btn.btn-save {
    border-radius: 25px 0 0 25px;
    padding-right: 8px; }
  .t4-admin-save .t4-btn.dropdown-toggle {
    background-color: #4CAF50;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0 25px 25px 0;
    margin-left: 0;
    padding-left: 8px;
    padding-right: 8px; }
    .t4-admin-save .t4-btn.dropdown-toggle .caret {
      margin-top: 14px; }
  .t4-admin-save .dropdown-menu {
    border-radius: 5px;
    left: auto;
    right: 0;
    top: 40px;
    padding-top: 0;
    padding-bottom: 0; }
    .t4-admin-save .dropdown-menu:before, .t4-admin-save .dropdown-menu:after {
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 5px solid #fff;
      content: "";
      display: block;
      position: absolute;
      top: -5px;
      right: 10px; }
    .t4-admin-save .dropdown-menu:before {
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 6px solid #e0e0e0;
      right: 9px;
      top: -7px; }
    .t4-admin-save .dropdown-menu li:first-child a {
      border-radius: 5px 5px 0 0;
      border-bottom: 1px solid rgba(44, 58, 65, 0.12); }
    .t4-admin-save .dropdown-menu li:last-child a {
      border-radius: 0 0 5px 5px; }
    .t4-admin-save .dropdown-menu a {
      padding-top: 8px;
      padding-bottom: 8px; }
      .t4-admin-save .dropdown-menu a:hover, .t4-admin-save .dropdown-menu a:focus, .t4-admin-save .dropdown-menu a:active {
        background-color: #eee;
        color: #424242; }

.t4-tpl-detail {
  clear: both;
  margin-top: 8px; }
  .t4-tpl-detail .tpl-preview {
    margin-bottom: 24px; }
    .t4-tpl-detail .tpl-preview img {
      border: 1px solid rgba(38, 50, 56, 0.12);
      border-radius: 5px;
      -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
      box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
      max-width: 100%; }
.t4-template-more-info {
  background-color: #f5f5f5;
  border-radius: 5px;
  margin-bottom: 16px;
  padding: 16px; }
  .t4-template-more-info h4 {
    margin: 0 0 8px; }
  .t4-template-more-info ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .t4-template-more-info ul li {
      border-bottom: 1px dashed rgba(38, 50, 56, 0.12);
      padding: 8px 0; }
      .t4-template-more-info ul li span {
        color: #757575;
        font-weight: 600;
        display: inline-block;
        min-width: 120px; }

#assignment.t4-assignment {
  padding: 16px; }
  #assignment.t4-assignment .btn-toolbar .btn {
    background-color: #e0e0e0; }
  #assignment.t4-assignment .menu-links-block {
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid rgba(38, 50, 56, 0.12);
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out; }
    #assignment.t4-assignment .menu-links-block label {
      font-size: 0.75rem;
      margin-bottom: 12px;
      padding-left: 0; }
      #assignment.t4-assignment .menu-links-block label input[type="checkbox"] {
        border: 1px solid rgba(38, 50, 56, 0.12);
        margin-left: 0;
        margin-right: 8px; }
    #assignment.t4-assignment .menu-links-block:hover {
      border: 1px solid rgba(17, 23, 26, 0.12);
      -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); }

.t4admin-loading::after {
  background: url(../assets/images/t4admin-loading.gif) no-repeat center center #fff;
  bottom: 0;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 1000; }

.disabled button, .disabled .btn, .disabled .controls, .disabled label, .disabled .t4-pane .control-label label, .t4-pane .control-label .disabled label,
.disabled .t4-modal .control-label label, .t4-modal .control-label .disabled label {
  pointer-events: none; }

.themeConfigModal {
  display: none; }
  @media screen and (min-width: 768px) {
    .themeConfigModal {
      display: block; } }
.j4 .btn,
.j4 button,
.j4 label,
.j4 .t4-pane .control-label label,
.t4-pane .control-label .j4 label,
.j4 .t4-modal .control-label label,
.t4-modal .control-label .j4 label,
.j4 input,
.j4 select,
.j4 input[type="text"] {
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 12px;
  outline: none; }

.j4 .field-media-wrapper {
  background-color: #f5f5f5;
  border-radius: 5px;
  display: block;
  padding: 8px; }
  .j4 .field-media-wrapper .field-media-preview {
    border-radius: 0;
    border: 0;
    max-width: none; }
  .j4 .field-media-wrapper .input-group {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(38, 50, 56, 0.12);
    border-radius: 25px;
    padding: 2px 98px 2px 2px;
    position: relative; }
    .j4 .field-media-wrapper .input-group .field-media-input {
      background-color: rgba(255, 255, 255, 0.5);
      border: 0;
      -webkit-box-shadow: none;
      box-shadow: none;
      width: 100%;
      max-width: none;
      overflow: hidden;
      white-space: nowrap;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis;
      z-index: 30; }
    .j4 .field-media-wrapper .input-group .input-group-append {
      background-color: transparent;
      position: absolute;
      right: 3px;
      top: 2px;
      margin: 0;
      padding: 0;
      width: auto;
      z-index: 40; }
      .j4 .field-media-wrapper .input-group .input-group-append .btn {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin: 0; }
      .j4 .field-media-wrapper .input-group .input-group-append .button-clear {
        margin-left: 4px;
        width: 28px; }

.j4 .chosen-container.chosen-container-single {
  font-size: 13px;
  max-width: none;
  width: 100% !important; }
  .j4 .chosen-container.chosen-container-single .chosen-single {
    border-radius: 25px;
    border: 1px solid rgba(38, 50, 56, 0.12);
    display: block;
    height: auto;
    padding: 4px 16px;
    width: 100% !important; }
  .j4 .chosen-container.chosen-container-single.chosen-container-active .chosen-single {
    border-radius: 5px 5px 0 0; }
  .j4 .chosen-container.chosen-container-single.chosen-container-active .chosen-drop {
    border: 1px solid rgba(38, 50, 56, 0.12);
    border-radius: 0 0 5px 5px; }
    .j4 .chosen-container.chosen-container-single.chosen-container-active .chosen-drop .chosen-results .highlighted {
      background-color: #2196F3 !important; }

.j4 .select-menu-type .chosen-container.chosen-container-single {
  max-width: 220px !important; }

.j4 #typelist_navigation_mega_duration {
  max-width: none; }

.j4 #attrib-themeConfig {
  font-size: 13px; }

.j4 .t4-sidebar-preview .t4-admin-save .t4-btn.dropdown-toggle {
  float: right; }

.j4 #wrapper .content .row > .col-md-12 {
  position: static; }

.j4 .t4-pn-views .t4-sidebar-nav .legend {
  margin-bottom: 0; }

.j4 .t4-pn-views .t4-sidebar-nav .item-content {
  font-size: 12px; }

.j4 .t4-current-style h1.temp_title {
  font-weight: 600;
  line-height: 1.7; }

.j4 .t4-current-style .dropdown-menu {
  left: auto !important;
  right: 0 !important;
  top: 39px !important;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important; }

.j4 .t4-admin-save .dropdown-toggle .caret {
  border-top: 4px solid #fff;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  display: block;
  margin-right: 4px; }

.j4 .t4-admin-save .dropdown-toggle:after {
  display: none; }

.j4 .t4-admin-save .dropdown-menu {
  left: auto !important;
  right: 0 !important;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  top: 38px !important; }
  .j4 .t4-admin-save .dropdown-menu li a {
    color: #616161;
    display: block;
    line-height: 1;
    padding: 8px 16px; }
    .j4 .t4-admin-save .dropdown-menu li a:hover, .j4 .t4-admin-save .dropdown-menu li a:focus, .j4 .t4-admin-save .dropdown-menu li a:active {
      text-decoration: none; }

.j4 .control-group .controls {
  margin-left: 0; }

.j4 .t4-modal {
  font-size: 13px; }
  .j4 .t4-modal .chosen-container.chosen-container-single {
    font-size: 13px;
    max-width: none;
    width: 100% !important; }
    .j4 .t4-modal .chosen-container.chosen-container-single .chosen-single {
      border-radius: 25px;
      border: 1px solid rgba(38, 50, 56, 0.12);
      display: block;
      height: auto;
      padding: 4px 16px;
      width: 100% !important; }
    .j4 .t4-modal .chosen-container.chosen-container-single.chosen-container-active .chosen-single {
      border-radius: 5px 5px 0 0; }
    .j4 .t4-modal .chosen-container.chosen-container-single.chosen-container-active .chosen-drop {
      border: 1px solid rgba(38, 50, 56, 0.12);
      border-radius: 0 0 5px 5px; }
      .j4 .t4-modal .chosen-container.chosen-container-single.chosen-container-active .chosen-drop .chosen-results .highlighted {
        background-color: #2196F3 !important; }
  .j4 .t4-modal .t4-input[type="range"] {
    margin-top: 3px; }
  .j4 .t4-modal .btn, .j4 .t4-modal input[type="text"] {
    font-size: 13px;
    font-weight: 400; }
  .j4 .t4-modal .nav.nav-tabs {
    background-color: transparent;
    display: block; }
    .j4 .t4-modal .nav.nav-tabs::after {
      display: block;
      clear: both;
      content: ""; }
    .j4 .t4-modal .nav.nav-tabs li,
    .j4 .t4-modal .nav.nav-tabs li.nav-item {
      float: left;
      padding-left: 0;
      padding-right: 0;
      width: auto; }
    .j4 .t4-modal .nav.nav-tabs a,
    .j4 .t4-modal .nav.nav-tabs a.nav-link {
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      color: #757575;
      float: none;
      outline: none;
      width: auto; }
      .j4 .t4-modal .nav.nav-tabs a.active,
      .j4 .t4-modal .nav.nav-tabs a.nav-link.active {
        color: #2196F3; }
        .j4 .t4-modal .nav.nav-tabs a.active:after,
        .j4 .t4-modal .nav.nav-tabs a.nav-link.active:after {
          background: #2196F3; }

.j4 .t4-modal-content .control-group-inner > .control-label {
  float: none;
  width: auto; }

/*# sourceMappingURL=admin.css.map */