@import url("https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

address,
caption,
cite,
code,
dfn,
em,
h1,
h2,
h3,
h4,
h5,
h6,
strong,
th,
var {
  font-weight: normal;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

:focus {
  outline: 0;
}

a,
ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img,
abbr {
  border: 0;
}

a img,
:link img,
:visited img,
:active img {
  border: 0;
}

a,
a:hover,
a:active,
a:focus,
object,
embed,
input::-moz-focus-inner {
  outline: 0;
  border: 0;
}

/* TEXT OPTIMIZATION */
*,
html,
body {
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

/* RESET TRANSITIONS */
*,
html,
body {
  -moz-transition: all 0;
  -webkit-transition: all 0;
  -o-transition: all 0;
  transition: all 0;
}

/* DEACTIVATES USER SELECTION */
*,
html,
body,
img,
div {
  outline: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*
textarea, input {
	-webkit-touch-callout: text;
	-webkit-user-select: text;
	-khtml-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}
*/
html,
body {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 18px;
  overflow-x: hidden;
  color: #676a6c;
  background-color: #342849;
  height: 100%;
  min-height: 100%;
  width: 100%;
  overflow: hidden;
}

.whole-wrapper {
  width: 100%;
  height: 100%;
}

.icon-margin-right {
  margin-right: 8px;
}

.icon-margin-left {
  margin-left: 8px;
}

strong {
  font-weight: 600;
}

a,
a:link,
a:active,
a:visited {
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  color: #864ee6;
}

a:hover,
a:focus {
  color: #6721e0;
  text-decoration: none;
  outline: none;
}

body.waiting-cursor,
body.waiting-cursor * {
  cursor: wait !important;
}

.default-cursor {
  cursor: auto;
}

.generic-loader {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  position: absolute;
  z-index: 11;
  top: 0px;
}
.generic-loader .generic-loader-fix {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  height: 100%;
}
.generic-loader .generic-loader-fix .loader {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  display: inline-block;
  border-top: 5px solid rgba(176, 68, 252, 0.2);
  border-right: 5px solid rgba(176, 68, 252, 0.2);
  border-bottom: 5px solid rgba(176, 68, 252, 0.2);
  border-left: 5px solid #6d44fc;
  -webkit-animation: spinner-generic 0.8s infinite linear;
  animation: spinner-generic 0.8s infinite linear;
  top: 50%;
  left: 50%;
}
.generic-loader.show {
  display: table;
}
.generic-loader.hide {
  display: none;
}

.modal-textarea {
  border: 0px;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  padding: 15px;
  text-align: center;
}

@-webkit-keyframes spinner-generic {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner-generic {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.btn-welo-danger {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  background-color: #ed5565;
  color: #ffffff;
  border: none;
  text-transform: uppercase;
  padding: 7px 15px;
  height: 34px;
}
.btn-welo-danger:hover,
.btn-welo-danger:focus,
.btn-welo-danger:active,
.btn-welo-danger.active {
  background-color: #e8273b;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  outline: none;
  color: #ffffff;
}

.btn-welo-success {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  background-color: #1ab394;
  color: #ffffff;
  border: none;
  text-transform: uppercase;
  padding: 7px 15px;
}
.btn-welo-success:hover,
.btn-welo-success:focus,
.btn-welo-success:active,
.btn-welo-success.active {
  background-color: #14866f;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  outline: none;
  color: #ffffff;
}

.btn.pull-right {
  margin-left: 15px;
}

.btn-welo-full {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  background-color: #864ee6;
  color: #ffffff !important;
  border: none;
  text-transform: uppercase;
  padding: 7px 15px;
  height: 34px;
}
.btn-welo-full:hover,
.btn-welo-full:focus,
.btn-welo-full:active,
.btn-welo-full.active {
  background-color: #6721e0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  outline: none;
  color: #ffffff;
}
.btn-welo-full.disabled {
  background-color: gray;
}

.emitted-status {
  overflow: hidden;
  background-color: black;
  padding-top: 10px;
  margin-bottom: 20px;
}

.emitted, .no-emitted {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  font-size: 13px;
  height: 18px;
  width: 18px;
  line-height: 10px;
  color: black !important;
  border: none;
  width: 45%;
  height: 20px;
  float: left;
}
.emitted.disabled, .no-emitted.disabled {
  background-color: gray;
}
.emitted{
  background-color: #fac48a;
}
.no-emitted{
  background-color: white;
}

.btn-welo-sm {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  font-size: 13px;
  height: 18px;
  width: 18px;
  line-height: 18px;
  background-color: #b4b6b8;
  color: #ffffff !important;
  border: none;
  text-transform: uppercase;
  box-sizing: border-box;
  margin-top: 0;
  padding: 0;
  text-align: center;
}
.btn-welo-sm.pull-right {
  margin-left: 5px;
}
.btn-welo-sm span {
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  height: 18px;
  line-height: 18px;
}
.btn-welo-sm span:before {
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
}
.btn-welo-sm:hover,
.btn-welo-sm:focus,
.btn-welo-sm:active,
.btn-welo-sm.active {
  background-color: #864ee6;
}

.btn-segment-icon {
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  font-size: 16px;
  line-height: 18px;
  background-color: transparent;
  border: none;
  text-transform: uppercase;
  box-sizing: border-box;
  margin-top: 0;
  padding: 0;
  text-align: center;
  position: absolute;
  right: 5px;
  z-index: 99;
  color: #cccccc;
}
.btn-segment-icon:hover {
  color: white;
}
.btn-segment-icon:focus,
.btn-segment-icon:active,
.btn-segment-icon.active {
  color: white;
}

.btn-welo-icon {
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  font-size: 25px;
  height: 34px;
  width: 34px;
  line-height: 34px;
  background-color: transparent;
  color: #cccccc;
  border: none;
  text-transform: uppercase;
  box-sizing: border-box;
  margin-top: 0;
  padding: 0;
  text-align: center;
}
.btn-welo-icon.pull-right {
  margin-left: 5px;
}
.btn-welo-icon span {
  height: 34px;
  line-height: 34px;
}
.btn-welo-icon span:before {
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
}
.btn-welo-icon:hover,
.btn-welo-icon:focus,
.btn-welo-icon:active,
.btn-welo-icon.active {
  background-color: transparent;
  color: #864ee6;
}
.btn-welo-icon:hover span:before,
.btn-welo-icon:focus span:before,
.btn-welo-icon:active span:before,
.btn-welo-icon.active span:before {
  color: #864ee6;
}

.btn-welo-edit {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  font-size: 15px;
  height: 28px;
  width: 28px;
  line-height: 28px;
  background-color: #b4b6b8;
  color: #ffffff !important;
  border: none;
  text-transform: uppercase;
  box-sizing: border-box;
  margin-top: 2px;
  padding: 0;
  text-align: center;
}
.btn-welo-edit.right {
  float: right;
  margin-left: 2px;
}
.btn-welo-edit.left {
  float: left;
  margin-right: 15px;
}
.btn-welo-edit.editor-margin-left {
  margin-left: 10px;
}
.btn-welo-edit.disabled {
  background-color: #ced0d1;
  color: rgba(255, 255, 255, 0.5) !important;
  opacity: 1;
  pointer-events: none;
}
.btn-welo-edit.disabled:hover,
.btn-welo-edit.disabled:focus,
.btn-welo-edit.disabled:active,
.btn-welo-edit.disabled.active {
  background-color: #ced0d1;
  color: rgba(255, 255, 255, 0.5) !important;
  opacity: 1;
}
.btn-welo-edit.pull-right {
  margin-left: 5px;
}
.btn-welo-edit span {
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  height: 28px;
  line-height: 28px;
}
.btn-welo-edit span:before {
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
}
.btn-welo-edit:hover,
.btn-welo-edit:focus,
.btn-welo-edit:active,
.btn-welo-edit.active {
  background-color: #864ee6;
}

.btn-welo {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  background-color: transparent;
  color: #864ee6;
  border: none;
  padding: 7px 15px;
}
.btn-welo:hover,
.btn-welo:focus,
.btn-welo:active,
.btn-welo.active {
  box-shadow: none;
  background-color: #864ee6;
  outline: none;
  color: #ffffff;
}

.btn-welo-link {
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  background-color: transparent;
  color: #864ee6;
  border: none;
  padding: 7px 15px;
}
.btn-welo-link:hover,
.btn-welo-link:focus,
.btn-welo-link:active,
.btn-welo-link.active {
  box-shadow: none;
  background-color: transparent;
  outline: none;
}

.toggle {
  background-color: rgba(0, 0, 0, 0.08);
}
.toggle .btn-welo {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
}
.toggle .btn-welo:hover,
.toggle .btn-welo:active,
.toggle .btn-welo.active {
  box-shadow: none;
  background-color: #864ee6;
  color: #ffffff;
}

.btn-welo-structure {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  font-size: 15px;
  height: 34px;
  width: 28px;
  line-height: 28px;
  background-color: #cccccc;
  color: #ffffff !important;
  border: none;
  text-transform: uppercase;
  box-sizing: border-box;
  margin-top: 2px;
  padding: 0;
  text-align: center;
}
.btn-welo-structure.audio {
  width: 34px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.btn-welo-structure:hover,
.btn-welo-structure:focus,
.btn-welo-structure:active,
.btn-welo-structure.active {
  background-color: #b4b6b8;
}
.btn-welo-structure.on {
  background-color: #864ee6;
}
.btn-welo-structure.on:hover,
.btn-welo-structure.on:focus,
.btn-welo-structure.on:active,
.btn-welo-structure.on.active {
  background-color: #6721e0;
}

h3 {
  font-size: 20px;
  font-weight: 100;
  margin-bottom: 15px;
}

label,
h4 {
  display: inline-block;
  max-width: 100%;
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
}

.input-group-wrapper label,
.input-group-wrapper h4 {
  letter-spacing: -0.01em;
  width: 200px;
  margin: 0;
  padding-top: 7px;
  vertical-align: top;
  text-align: right;
  padding-right: 8px;
}

h5 {
  color: #b4b6b8;
  text-transform: uppercase;
  font-size: 11px;
}

.hidden-form {
  margin-top: 20px;
  background-color: #f3f3f4;
  padding: 15px;
  position: relative;
  border: 1px solid #eee;
}
.hidden-form:after {
  content: "";
  position: absolute;
  top: -20px;
  right: 10px;
  width: 0;
  height: 0;
  display: block;
  border: 10px solid transparent;
  border-bottom-color: #f3f3f4;
}

.input-group-wrapper {
  margin-bottom: 15px;
}
.input-group-wrapper .input-group {
  margin: 0;
  width: 321px;
  display: inline-block;
  vertical-align: top;
}
.input-group-wrapper .input-group .multi-input {
  margin-bottom: 7px;
}
.input-group-wrapper .input-group .ui-select-toggle .caret {
  display: none;
}

.input-wrapper {
  margin-bottom: 35px;
  font-size: 0;
  letter-spacing: 0;
  line-height: 0;
}
.input-wrapper .input-group {
  margin-bottom: 0;
}
.input-wrapper .inline-input {
  margin-bottom: 0;
  margin-right: 5px;
}

.input-group {
  margin-top: 7px;
  margin-bottom: 10px;
  width: 100%;
  font-size: 12px;
  line-height: normal;
  letter-spacing: normal;
}
.input-group.margin-top {
  margin-top: 20px;
}
.input-group.inline-input {
  width: 25%;
  display: inline-block;
}
.input-group.no-margin {
  margin-bottom: 10px;
}

.css-form input.ng-valid.ng-touched,
.css-form select.ng-valid.ng-touched {
  border-color: #1ab394;
  background-image: url("../img/welo-field-correct.png");
  background-size: 16px 16px;
  background-position: right 10px center;
  background-repeat: no-repeat;
}

.css-form input.ng-invalid.ng-touched,
.css-form select.ng-invalid.ng-touched {
  border-color: #ed5565;
  background-image: url("../img/welo-field-error.png");
  background-size: 16px 16px;
  background-position: right 10px center;
  background-repeat: no-repeat;
}

.spacer {
  margin-bottom: 40px;
}

.open .btn-welo {
  background-color: #864ee6;
  color: #ffffff;
  box-shadow: none !important;
}

.dropdown-menu {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.ui-select-focusser {
  display: none;
}

.dropdown-wrapper .caret {
  margin-left: 10px;
}
.dropdown-wrapper > * {
  margin-left: 20px;
}

.instructions {
  background-color: #f3f3f4;
  padding: 10px 15px;
  font-style: italic;
  font-size: 12px;
  line-height: 18px;
  display: inline-block;
  width: 100%;
  margin-top: 5px;
  position: relative;
}
.instructions:before {
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: #f3f3f4;
  position: absolute;
  top: -20px;
  right: 10px;
  z-index: 1000;
}

.form-control {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -moz-user-select: text;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
  box-shadow: none;
  width: 100%;
  min-width: 100%;
  text-align: left;
}
.form-control.error {
  border: 1px solid red;
}
.form-control:hover {
  background-color: transparent;
  background-color: #ffffff;
  cursor: default;
  box-shadow: none;
  border-color: #864ee6;
}
.form-control:focus {
  background-color: transparent;
  background-color: #ffffff;
  box-shadow: none;
  border-color: #864ee6;
}
.form-control .text-muted {
  color: #999999;
}
.form-control[disabled],
.form-control[readonly] {
  background-color: #eeeeee;
}
.form-control[disabled]:hover,
.form-control[readonly]:hover {
  border-color: #cccccc;
}

.has-error .form-control {
  border-color: #ed5565;
  box-shadow: none;
}
.has-error .form-control:focus {
  border-color: #ed5565;
  box-shadow: none;
}

select.form-control {
  background-image: url("../img/welo-stats-down-arrow.svg");
  background-position: right center;
  background-repeat: no-repeat;
}

input[type="file"]:focus,
input[type="checkbox"]:focus,
input[type="radio"]:focus {
  box-shadow: none;
  outline: none;
}

.input-group-addon {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  cursor: pointer;
  background-color: #ffffff;
  color: #9a9d9f;
}
.input-group-addon:hover {
  background-color: #eeeeee;
  color: #676a6c;
}

.floated-list-element {
  display: inline-block;
  margin-right: 15px;
  padding-left: 15px;
  white-space: nowrap;
  margin-top: 10px;
  color: #9a9d9f;
  font-size: 13px;
  line-height: normal;
  letter-spacing: normal;
}
.floated-list-element span {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  display: inline-block;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 12px;
  background-color: #ed5565;
}
.floated-list-element span:hover {
  cursor: pointer;
  background-color: #e8273b;
}

.inline-time-picker {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  margin-right: 10px;
}
.inline-time-picker td {
  vertical-align: middle;
}
.inline-time-picker .colon-separator {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  background-color: #ffffff;
}
.inline-time-picker .form-control {
  height: 32px;
}
.inline-time-picker .form-group {
  border: 1px solid #cccccc;
}
.inline-time-picker .form-group.left {
  border-right: none;
}
.inline-time-picker .form-group.right {
  border-left: none;
}
.inline-time-picker .form-group input {
  border: none;
  width: 40px;
  min-width: 0;
  padding: 0;
  text-align: center;
}
.inline-time-picker .btn-link {
  color: #864ee6;
  padding: 2px 0;
  font-size: 20px;
}

.dropdown-menu li > a {
  white-space: pre-line !important;
}

.custom-datepicker .dropdown-menu {
  padding: 0;
  border-color: #cccccc;
  padding-bottom: 10px;
}
.custom-datepicker thead {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: -0.02em;
  background-color: #eeeeee;
}
.custom-datepicker thead th {
  vertical-align: top;
  padding: 5px 0;
}
.custom-datepicker thead .btn {
  background-color: transparent;
  height: 30px;
}
.custom-datepicker .btn {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  border: none;
  text-transform: uppercase;
}
.custom-datepicker .btn.active {
  box-shadow: none;
}
.custom-datepicker .btn.btn-default.active {
  background-color: #d4d4d4;
}
.custom-datepicker .btn.btn-info.active {
  background-color: #864ee6;
}
.custom-datepicker .btn.btn-info.active .text-info {
  color: #ffffff;
}

.day-selector {
  width: 100%;
  margin-top: 13px;
}
.day-selector td {
  border: 1px solid #cccccc;
  background-color: #ffffff;
  vertical-align: middle;
  text-align: center;
  text-transform: uppercase;
  height: 33px;
  width: 14.28%;
  letter-spacing: -0.03em;
}

.custom-timepicker .btn_timepicker {
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  border-radius: 0 !important;
  color: #9a9d9f;
  background-color: #ffffff;
  border-color: #cccccc !important;
}
.custom-timepicker .btn_timepicker:focus {
  border-color: #cccccc !important;
  outline: none;
}
.custom-timepicker .btn_timepicker:hover {
  border-color: #cccccc;
  color: #676a6c;
  background-color: #eeeeee;
}

.radio {
  margin-top: 3px;
  margin-bottom: 3px;
  line-height: 16px;
}
.radio.radio-active input[type="radio"]:checked + label::before {
  border-color: #1ab394;
}
.radio.radio-active input[type="radio"]:checked + label::after {
  background-color: #1ab394;
}
.radio.radio-disabled input[type="radio"]:checked + label::before {
  border-color: #cbd9d9;
}
.radio.radio-disabled input[type="radio"]:checked + label::after {
  background-color: #cbd9d9;
}
.radio.radio-blocked input[type="radio"]:checked + label::before {
  border-color: #ed5565;
}
.radio.radio-blocked input[type="radio"]:checked + label::after {
  background-color: #ed5565;
}
.radio.radio-suspended input[type="radio"]:checked + label::before {
  border-color: #f8ac59;
}
.radio.radio-suspended input[type="radio"]:checked + label::after {
  background-color: #f8ac59;
}
.radio input[type="radio"]:focus + label::before {
  outline: none;
}
.radio label {
  font-weight: 400;
}

.checkbox {
  margin-top: 3px;
  margin-bottom: 3px;
  line-height: 16px;
}
.checkbox input[type="checkbox"] + label:before {
  border-color: #864ee6;
}
.checkbox input[type="checkbox"]:focus + label:before {
  outline: none;
}
.checkbox.checkbox-welo input[type="checkbox"]:checked + label:before {
  background-color: #864ee6;
  border-color: #864ee6;
}
.checkbox.checkbox-welo input[type="checkbox"]:checked + label:after {
  color: #ffffff;
}
.checkbox.inline {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.checkbox.inline label {
  font-weight: 600;
  letter-spacing: -0.02em;
  padding-left: 3px;
}
.checkbox.block label {
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 34px;
  z-index: 1;
}
.checkbox.block label:hover {
  background-color: #f3f3f4;
}
.checkbox.block .visible-text {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.checkbox.block input[type="checkbox"] + label:before {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  top: 0;
  left: 0;
  background-color: transparent;
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
  padding: 0;
}
.checkbox.block input[type="checkbox"]:focus + label:before {
  outline: none;
}
.checkbox.block input[type="checkbox"]:checked + label {
  color: #ffffff;
}
.checkbox.block input[type="checkbox"]:checked + label:before {
  background-color: transparent;
}
.checkbox.block input[type="checkbox"]:checked + label:after {
  content: "";
  top: 0;
  left: 0;
  background-color: #864ee6;
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
  padding: 0;
  z-index: -1;
}

.progress {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  background-color: lightgray;
  box-shadow: none;
  margin-top: 5px;
  height: 5px;
}
.progress .progress-bar {
  background-color: #864ee6;
}

.terms-wrapper {
  background-color: rgba(0, 0, 0, 0.05);
  padding-top: 30px;
  margin-bottom: 50px;
}

.form-column-wrapper {
  font-size: 0;
  line-height: 0;
  letter-spacing: 0;
}
.form-column-wrapper .form-column {
  width: 100%;
  display: inline-block;
  vertical-align: top;
}

.separator {
  width: 120%;
  display: block;
  margin-left: -20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #864ee6;
}

.navbar {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #e7e7e7;
  height: 50px;
  box-sizing: content-box;
  margin-bottom: 0px;
}
.navbar.navbar-fixed-bottom {
  border-bottom: none;
  border-top: 1px solid #e7e7e7;
  background-color: #eeeeee;
  top: auto;
  bottom: 0;
  z-index: 100;
}
.navbar.navbar-fixed-bottom.welo {
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  -o-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  border: none;
  width: auto;
  right: 30% !important;
  bottom: 0;
  padding: 0 5px 10px;
  background-color: rgba(0, 0, 0, 0.6);
  margin-right: 10px;
}
.navbar.navbar-fixed-bottom.welo.navbar-fixed-bottom {
  left: auto;
}
.navbar.navbar-fixed-bottom.welo .tooltip {
  font-size: 10px;
  line-height: 10px;
}
.navbar .container-fluid {
  text-align: right;
  padding-left: 25px;
  padding-right: 25px;
  height: 50px;
}
.navbar .container-fluid #dropdown_menu_medios ul {
  width: 100%;
}
.navbar .container-fluid #dropdown_menu_medios .active a {
  color: white !important;
}
.navbar .container-fluid.welo {
  padding-left: 0px;
  padding-right: 5px;
}
.navbar .container-fluid > ul {
  height: 50px;
}
.navbar .container-fluid > ul > li {
  font-size: 0;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  height: 50px;
  position: relative;
}
.navbar .container-fluid > ul > li > .logo {
  /*background: black;
          height: 34px;
          width: 100px;
          display: block;
          margin-top: 8px;
          font-size: 14px;
          font-weight: 600;
          text-align: center;
          line-height: 34px;
          color: #FFFFFF;*/
  position: relative;
  height: 43px;
  top: 4px;
  left: -8px;
}
.navbar .container-fluid > ul > li > .logo img {
  height: 100%;
}
.navbar .container-fluid > ul > li > .form-control {
  margin-top: 8px;
}
.navbar .container-fluid > ul > li > .btn {
  margin-top: 8px;
}
.navbar .container-fluid > ul > li > .input-group {
  margin-top: 8px;
  width: 150px;
}
.navbar .container-fluid > ul > li > p {
  font-size: 12px;
  height: 34px;
  line-height: 34px;
  margin-top: 8px;
  background-color: lightgray;
  padding: 0 10px;
}
.navbar .container-fluid > ul > li a {
  text-decoration: none;
  color: #676a6c;
}
.navbar .container-fluid > ul > li .user-avatar {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  width: 32px;
  height: 32px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #e8e9ea;
  display: none;
}

.navbar-right-0 {
  position: absolute;
  right: 80px;
}

.navbar-right-30 {
  position: absolute;
  right: 31%;
}

#select_brands_events {
  top: 5px;
  z-index: 15;
  position: relative;
}
#select_brands_events .checkboxLayer {
  right: 50%;
  margin-right: -150px;
}
#select_brands_events .line button {
  display: none;
}

#header_info {
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -ms-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 60px;
  left: 50%;
  margin-left: -250px;
  width: 500px;
  z-index: 99999;
  background-color: #fbd1a2;
  border: 1px solid #f8ac59;
  color: black;
  padding: 7px 10px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  display: none;
}

.container-layers .layer_item.advertisement {
  background-color: #f8ac59;
}
.container-layers .layer_item.advertisement:hover {
  background-color: #f7a041;
}
.container-layers .layer_item.logos {
  background-color: #1c84c6;
}
.container-layers .layer_item.logos:hover {
  background-color: #1975b0;
}
.container-layers .layer_item.news {
  background-color: #1ab394;
}
.container-layers .layer_item.news:hover {
  background-color: #179d82;
}
.container-layers .layer_item.welos {
  background-color: #864ee6;
}
.container-layers .layer_item.welos:hover {
  background-color: #6721e0;
}
.container-layers .layer_item.events {
  background-color: #ed5565;
}
.container-layers .layer_item.events:hover {
  background-color: #e8273b;
}
.container-layers .layer_item.tandas {
  background-color: #009a49;
}
.container-layers .layer_item.tandas:hover {
  background-color: #006731;
}
.container-layers .layer_item.layer_item_activo span:nth-child(2) {
  display: none;
}
.container-layers .layer_item.layer_item_activo span:nth-child(1) {
  display: inline-block;
}
.container-layers .layer_item.layer_item_pasivo {
  background-color: #cccccc;
}
.container-layers .layer_item.layer_item_pasivo span:nth-child(2) {
  display: inline-block;
}
.container-layers .layer_item.layer_item_pasivo span:nth-child(1) {
  display: none;
}
.container-layers .layer_item.layer_item_pasivo:hover {
  background-color: #bbbbbb;
}

.scroll-time-wrapper {
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  /*left: 70%;*/
  background-color: #4b3a6a;
}

.panel-mode-addon {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  width: 30px;
  height: 18px;
  overflow: hidden;
  display: block;
  border: none;
  padding: 0;
  text-align: center;
  background-color: #864ee6;
  margin: 4px 10px;
  color: white;
  cursor: pointer;
}

.calendario-welo {
  width: 30px;
  height: 40px;
  position: absolute;
  left: 10px;
  background-color: transparent;
  top: 20px;
}
.calendario-welo #input_data_picker {
  display: none;
}
.calendario-welo .dropdown-menu {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  top: -8px !important;
  left: -287px !important;
  border: none;
}
.calendario-welo .dropdown-menu table {
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  -o-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}
.calendario-welo .dropdown-menu thead {
  background-color: transparent;
}
.calendario-welo .dropdown-menu thead tr {
  color: #cacaca;
}
.calendario-welo .dropdown-menu thead tr:first-child {
  background-color: #864ee6;
}
.calendario-welo .dropdown-menu thead tr:first-child button {
  color: #ffffff;
}
.calendario-welo .dropdown-menu td {
  padding: 2px;
}
.calendario-welo .dropdown-menu .btn-default {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 13px;
  line-height: 36px;
  padding: 0;
  text-align: center;
}
.calendario-welo .dropdown-menu .btn-default.pull-right {
  margin: 0;
}
.calendario-welo .dropdown-menu .btn-danger,
.calendario-welo .dropdown-menu .btn-success {
  display: none;
}
.calendario-welo .dropdown-menu:after {
  content: "";
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-left-color: #864ee6;
  display: block;
  position: absolute;
  top: 18px;
  right: -8px;
}
.calendario-welo .input-group-addon {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  width: 30px;
  height: 40px;
  overflow: hidden;
  display: block;
  border: none;
  padding: 0;
  text-align: center;
  background-color: #864ee6;
  padding: 6px 3px 0;
}
.calendario-welo .input-group-addon span {
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  display: block;
  color: #ffffff;
}
.calendario-welo .input-group-addon span.cal-day {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
}
.calendario-welo .input-group-addon span.cal-month {
  text-transform: uppercase;
  font-size: 11px;
}
.calendario-welo .input-group-addon:hover span {
  color: #cbd9d9;
}

#scroll_holder {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  position: absolute;
  left: 10px;
  width: 30px;
  background-color: #ffffff;
  padding: 0;
  top: 50%;
  cursor: pointer;
  z-index: 12;
}
#scroll_holder .time-frame-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
}
#scroll_holder .time-frame-wrapper .time-frame {
  display: block;
  height: 4.16667%;
  font-size: 8px;
  width: 100%;
  text-align: center;
  line-height: 0;
  border-bottom: 1px solid #ddd;
  text-shadow: 1px 0 0 #ffffff, -1px 0 0 #ffffff, 2px 0 0 #ffffff,
    -2px 0 0 #ffffff;
  font-size: 0;
}
#scroll_holder .time-frame-wrapper .time-frame.show {
  font-size: 8px;
}
#scroll_holder .time-frame-wrapper .time-frame:last-child {
  border: none;
}
#scroll_holder #scroll_drag {
  position: relative;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  cursor: pointer;
  background-color: #864ee6;
}
#scroll_holder #scroll_drag:before {
  content: "";
  width: 100%;
  height: 30px;
  display: block;
  position: absolute;
  margin-top: -15px;
}

.box-day {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  width: 18px;
  height: 20px;
  z-index: 12;
  background-color: white;
  right: 20px;
  position: absolute;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.3);
  color: #85e;
  display: none;
}
.box-day.up {
  top: 50%;
  margin-top: -239px;
  line-height: 18px;
}
.box-day.up.disable {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.box-day.down {
  top: 50%;
  margin-top: 218px;
  line-height: 20px;
}
.box-day.disable {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.tooltip-inner {
  color: white;
  background-color: #4b3a6a;
}

.tooltip.top .tooltip-arrow {
  border-top-color: #4b3a6a;
}

.tooltip.scroll_drag_fecha_hora .tooltip-inner {
  left: -75px;
  position: absolute;
  width: 80px;
  top: -18px;
}
.tooltip.scroll_drag_fecha_hora .tooltip-arrow {
  border-left-color: #4b3a6a;
}

.segments {
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  position: absolute;
  cursor: pointer;
  height: 20px !important;
  border: 1px solid white;
  box-sizing: border-box;
  height: 20px !important;
}
.segments.advertisement {
  background-color: #cf9e68;
  border-top-color: #e2c3a2;
  border-left-color: #e2c3a2;
  border-bottom-color: #b27839;
  border-right-color: #b27839;
}
.segments.advertisement:hover {
  background-color: #f8ac59;
  border-top-color: #fac48a;
  border-left-color: #fac48a;
  border-bottom-color: #e17a0a;
  border-right-color: #e17a0a;
}
.segments.logos {
  background-color: #416c88;
  border-top-color: #6194b4;
  border-left-color: #6194b4;
  border-bottom-color: #284354;
  border-right-color: #284354;
}
.segments.logos:hover {
  background-color: #1c84c6;
  border-top-color: #339ee2;
  border-left-color: #339ee2;
  border-bottom-color: #0f486d;
  border-right-color: #0f486d;
}
.segments.news {
  background-color: #3b796c;
  border-top-color: #4b9b8b;
  border-left-color: #4b9b8b;
  border-bottom-color: #22453e;
  border-right-color: #22453e;
}
.segments.news:hover {
  background-color: #1ab394;
  border-top-color: #21dfb8;
  border-left-color: #21dfb8;
  border-bottom-color: #0d5a4a;
  border-right-color: #0d5a4a;
}
.segments.welos {
  background-color: #8365b5;
  border-top-color: #ac99ce;
  border-left-color: #ac99ce;
  border-bottom-color: #5d438b;
  border-right-color: #5d438b;
}
.segments.welos:hover {
  background-color: #864ee6;
  border-top-color: #a57bec;
  border-left-color: #a57bec;
  border-bottom-color: #5319b5;
  border-right-color: #5319b5;
}
.segments.events {
  background-color: #c06972;
  border-top-color: #d69fa4;
  border-left-color: #d69fa4;
  border-bottom-color: #9b414b;
  border-right-color: #9b414b;
}
.segments.events:hover {
  background-color: #ed5565;
  border-top-color: #f2838f;
  border-left-color: #f2838f;
  border-bottom-color: #c71528;
  border-right-color: #c71528;
}
.segments.tandas {
  background-color: #1a673e;
  border-top-color: #29a463;
  border-left-color: #29a463;
  border-bottom-color: #0a2a19;
  border-right-color: #0a2a19;
}
.segments.tandas:hover {
  background-color: #009a49;
  border-top-color: #00cd61;
  border-left-color: #00cd61;
  border-bottom-color: #003419;
  border-right-color: #003419;
}

.segments_editing {
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  position: absolute;
  cursor: pointer;
  height: 20px !important;
  border: 1px solid white;
  box-sizing: border-box;
  height: 20px !important;
}
.segments_editing.advertisement {
  background-color: #f8ac59;
  border-top-color: #fac48a;
  border-left-color: #fac48a;
  border-bottom-color: #e17a0a;
  border-right-color: #e17a0a;
}
.segments_editing.logos {
  background-color: #1c84c6;
  border-top-color: #339ee2;
  border-left-color: #339ee2;
  border-bottom-color: #0f486d;
  border-right-color: #0f486d;
}
.segments_editing.news {
  background-color: #1ab394;
  border-top-color: #21dfb8;
  border-left-color: #21dfb8;
  border-bottom-color: #0d5a4a;
  border-right-color: #0d5a4a;
}
.segments_editing.welos {
  background-color: #864ee6;
  border-top-color: #a57bec;
  border-left-color: #a57bec;
  border-bottom-color: #5319b5;
  border-right-color: #5319b5;
}
.segments_editing.events {
  background-color: #c06972;
  border-top-color: #d69fa4;
  border-left-color: #d69fa4;
  border-bottom-color: #9b414b;
  border-right-color: #9b414b;
}
.segments_editing.tandas {
  background-color: #1a673e;
  border-top-color: #29a463;
  border-left-color: #29a463;
  border-bottom-color: #0a2a19;
  border-right-color: #0a2a19;
}

.segments_label {
  position: absolute;
  z-index: 9;
  text-align: center;
  color: white;
  width: 100%;
}
.segments_label .segments_span_text {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  height: 100%;
  overflow: hidden;
  height: 18px !important;
  line-height: 18px !important;
  font-size: 11px !important;
  font-weight: 600;
  text-transform: uppercase;
}

/*******CROPS**************/
.crops-wrapper-editor {
  width: 100%;
  /*border-bottom:1px solid #CCCCCC;*/
  display: inline-table;
  position: relative;
}
.crops-wrapper-editor .wrapper-crop {
  margin: 10px;
  background: #f2f2f2;
}
.crops-wrapper-editor .wrapper-crop table {
  width: 100%;
  height: 100%;
}
.crops-wrapper-editor .wrapper-crop table td {
  width: 100%;
  height: 100%;
}
.crops-wrapper-editor .wrapper-crop .buttons_crops {
  position: absolute;
  top: 50%;
  right: 0px;
  margin-top: -16px;
}
.crops-wrapper-editor .wrapper-crop .img-mask {
  border: 1px solid gray;
  overflow: hidden;
  position: absolute;
  top: 0px;
}
.crops-wrapper-editor .wrapper-crop .box-train-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -3px;
  opacity: 0.8;
}
.crops-wrapper-editor .wrapper-crop .box-train-error {
  position: absolute;
  top: 50%;
  left: 0px;
  margin-top: -8px;
  opacity: 0.8;
  width: 100%;
  color: red;
  text-align: center;
}

#container_thumbs {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-left: 5px;
  padding-top: 10px;
}

.container_thumbs_rows {
  float: left;
  position: relative;
  width: 100%;
  background-color: #342849;
}
.container_thumbs_rows .container_thumbs_cell {
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  width: 100%;
  height: 100%;
  float: left;
  position: relative;
  overflow: visible;
  margin: 10px 5px;
  background-color: #1d1628;
  box-shadow: 0 0 0 10px transparent;
}
.container_thumbs_rows .container_thumbs_cell .selection-length-end,
.container_thumbs_rows .container_thumbs_cell .selection-length-start {
  -webkit-border-radius: 0 50% 50% 0;
  -moz-border-radius: 0 50% 50% 0;
  -ms-border-radius: 0 50% 50% 0;
  -o-border-radius: 0 50% 50% 0;
  border-radius: 0 50% 50% 0;
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  width: 40px;
  height: 40px;
  background-color: #543190;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  left: -10px;
  background-image: url("../images/welo-panel-mediamap-holder.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 11;
  cursor: col-resize;
  box-shadow: 5px 0 5px rgba(0, 0, 0, 0.5);
}
.container_thumbs_rows .container_thumbs_cell .selection-length-end:hover,
.container_thumbs_rows .container_thumbs_cell .selection-length-start:hover {
  background-color: #3e246a;
}
.container_thumbs_rows .container_thumbs_cell .selection-length-end {
  -webkit-border-radius: 50% 0 0 50%;
  -moz-border-radius: 50% 0 0 50%;
  -ms-border-radius: 50% 0 0 50%;
  -o-border-radius: 50% 0 0 50%;
  border-radius: 50% 0 0 50%;
  left: auto;
  right: -10px;
  box-shadow: -5px 0 5px rgba(0, 0, 0, 0.5);
}
.container_thumbs_rows .container_thumbs_cell .selection-length-end:hover {
  background-color: #3e246a;
}
.container_thumbs_rows .container_thumbs_cell .thumb {
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 0 10px transparent;
}
.container_thumbs_rows .container_thumbs_cell.focus {
  box-shadow: 0 0 0 10px #634c8b;
  cursor: pointer;
  z-index: 10;
}
.container_thumbs_rows .container_thumbs_cell .thumb_select {
  box-shadow: 0 0 0 10px #864ee6 !important;
  opacity: 1;
  position: relative;
  z-index: 9;
}
.container_thumbs_rows .container_thumbs_cell .thumb_select_radio {
  opacity: 1;
  box-shadow: 0 0 0 10px #45d24a;
}
.container_thumbs_rows .container_thumbs_cell .thumb_time_now {
  opacity: 1;
  box-shadow: 0 0 0 10px #ce0027;
}
.container_thumbs_rows .container_thumbs_cell .thumb_loader_img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -16px;
  margin-top: -16px;
  opacity: 0.8;
}
.container_thumbs_rows .container_thumbs_cell .icon-audio {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #864ee6;
  opacity: 0.8;
  z-index: 9;
}
.container_thumbs_rows .container_thumbs_cell .icon-audio:hover {
  opacity: 1;
  color: #6721e0;
}
.container_thumbs_rows .container_thumbs_layers {
  width: 100%;
  float: left;
  position: relative;
  background-color: #4e4e4e;
  border-bottom: 1px solid #5f5f5f;
  height: 20px !important;
  overflow: hidden;
  box-sizing: content-box;
}

.box_crop_select {
  position: absolute;
  border: 2px dotted;
  border-top-color: #339ee2;
  border-left-color: #339ee2;
  border-bottom-color: #0f486d;
  border-right-color: #0f486d;
  z-index: 10;
}

.cell_box {
  position: absolute;
  border: 2px solid;
  border-top-color: #339ee2;
  border-left-color: #339ee2;
  border-bottom-color: #0f486d;
  border-right-color: #0f486d;
  text-align: center;
  z-index: 10;
}

/*
#full_audio{
	width: 0px;
	height: 0px;
}*/
.remove-box {
  top: 50%;
  left: 50%;
  position: absolute;
}

.main-area-reset {
  font-size: 0;
  line-height: 0;
  letter-spacing: 0;
  min-height: 100%;
  height: 100%;
  display: block;
}

#welo-mediamap-panel {
  width: 30%;
  display: inline-block;
  vertical-align: top;
  height: 100%;
  min-height: 100%;
  background-color: white;
  /*.welo-timebar {
  	width: 50px;
  	height: 100%;
  	position: absolute;
  	left: 0;
  	top: 0;
  }*/
}
#welo-mediamap-panel.welo-mediamap-panel {
  position: relative;
}
#welo-mediamap-panel.welo-mediamap-panel-compress {
  position: absolute;
  right: 0px;
  height: 0px;
  min-height: 0px;
  z-index: 99;
}
#welo-mediamap-panel.welo-mediamap-panel-compress .welo-editor {
  display: none;
}
#welo-mediamap-panel .welo-editor {
  width: 100%;
  height: 100%;
  padding-left: 50px;
}
#welo-mediamap-panel .welo-editor #panel-process-data {
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 200px;
  margin-left: -80px;
  text-align: center;
}
#welo-mediamap-panel .welo-editor .panel-process-message {
  line-height: 15px;
  font-size: 15px;
}
#welo-mediamap-panel .welo-editor #welo-editor-block {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 99;
}
#welo-mediamap-panel .welo-editor #welo-editor-video {
  position: absolute;
  height: 100%;
  top: 0px;
  width: 100%;
}
#welo-mediamap-panel .welo-editor .welo-editor-holder {
  position: relative;
}
#welo-mediamap-panel .welo-editor .welo-editor-holder.disabled {
  opacity: 0.5;
}
#welo-mediamap-panel .welo-editor .welo-video-preview {
  position: relative;
}
#welo-mediamap-panel
  .welo-editor
  .welo-video-preview
  .video-image-preview-holder {
  float: left;
  position: relative;
  padding-right: 15px;
  width: 100%;
  padding-right: 0px;
  background-color: #333333;
}
#welo-mediamap-panel
  .welo-editor
  .welo-video-preview
  .video-image-preview-holder
  .thumb-ratio-keeper {
  background-color: #000000;
  width: 100%;
  height: auto;
}
#welo-mediamap-panel
  .welo-editor
  .welo-video-preview
  .video-image-preview-holder
  .thumb-ratio-keeper
  img {
  width: 100%;
  height: auto;
}
#welo-mediamap-panel .welo-editor .welo-video-preview .video-icon {
  width: 50px;
  height: 50px;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  cursor: pointer;
  z-index: 10;
}
#welo-mediamap-panel .welo-editor .welo-video-preview .video-icon:hover {
  opacity: 1;
}
#welo-mediamap-panel .welo-editor .welo-video-preview .video-icon.hidden {
  display: none;
}
#welo-mediamap-panel .welo-editor .welo-video-preview .video-icon.show {
  display: block;
}
#welo-mediamap-panel .welo-editor .welo-video-preview .video-preview-wrapper {
  //position: absolute;
  z-index: 8;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#welo-mediamap-panel
  .welo-editor
  .welo-video-preview
  .video-preview-wrapper.hidden {
  display: none;
}
#welo-mediamap-panel
  .welo-editor
  .welo-video-preview
  .video-preview-wrapper.show {
  display: block;
}
#welo-mediamap-panel .welo-editor .welo-video-preview .loader-video {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 9;
}
#welo-mediamap-panel .welo-editor .time-indications-bar {
  padding: 10px;
  font-size: 12px;
  line-height: 12px;
  background-color: #f2f2f2;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  z-index: 1000;
  width: 100%;
}
#welo-mediamap-panel .welo-editor .time-indications-bar.out-thumb {
  position: relative;
  background-color: black;
}
#welo-mediamap-panel .welo-editor .time-indications-bar table {
  width: 100%;
}
#welo-mediamap-panel .welo-editor .time-indications-bar .start-time {
  color: #999999;
  text-align: left;
}
#welo-mediamap-panel .welo-editor .time-indications-bar .welo-length {
  text-align: center;
  color: #000000;
  color: #ffffff;
  font-weight: 600;
}
#welo-mediamap-panel .welo-editor .time-indications-bar .end-time {
  color: #999999;
  text-align: right;
}
#welo-mediamap-panel .welo-editor .preview-flag {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  color: #ccb3f4;
  background-color: rgba(62, 36, 106, 0.85);
  display: block;
  position: absolute;
  top: 35px;
  right: 5px;
  z-index: 10;
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
  padding: 4px 6px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
#welo-mediamap-panel .welo-editor .preview-flag u {
  color: #ffffff;
}
#welo-mediamap-panel .welo-editor .video-status-flag {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9;
  color: #777777;
  background-color: transparent;
  height: 25px;
  line-height: 25px;
  padding: 0;
  bottom: 0;
}
#welo-mediamap-panel .welo-editor .video-status-flag i {
  font-size: 15px;
  line-height: 25px;
  margin-right: 6px;
}
#welo-mediamap-panel .welo-editor .video-status-flag.ready i {
  color: #1ab394;
}
#welo-mediamap-panel .welo-editor .video-status-flag.error i {
  color: #ed5565;
}
#welo-mediamap-panel .welo-editor .video-status-flag.working i {
  color: #864ee6;
}
#welo-mediamap-panel .welo-editor .welo-properties-editor {
  border-bottom: 1px solid #cccccc;
  width: 100%;
  padding-top: 10px;
  background-color: #f2f2f2;
  display: inline-table;
  position: relative;
  padding-bottom: 5px;
}
#welo-mediamap-panel .welo-editor .welo-properties-editor .thumbs-column {
  width: 0;
}
#welo-mediamap-panel .welo-editor .welo-properties-editor .texts-column {
  width: 100%;
}
#welo-mediamap-panel .welo-editor .welo-properties-editor .icons-container {
  display: inline-block;
  font-size: 0;
  letter-spacing: 0;
  vertical-align: top;
}
#welo-mediamap-panel .welo-editor .welo-properties-editor .icons-container a {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  padding: 0;
  width: 22px;
  height: 25px;
  line-height: 25px;
  display: inline-block;
  font-size: 16px;
  color: #aaaaaa;
  border: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  background-color: #864ee6;
  width: 25px;
  margin-right: 4px;
  color: #ffffff;
  font-size: 14px;
}
#welo-mediamap-panel
  .welo-editor
  .welo-properties-editor
  .icons-container
  a:hover {
  background-color: #6721e0;
  color: #ffffff;
}
#welo-mediamap-panel
  .welo-editor
  .welo-properties-editor
  .floating-delete-button {
  float: right;
  left: 5px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 17px;
}
#welo-mediamap-panel
  .welo-editor
  .welo-properties-editor
  .floating-delete-button:hover {
  color: #ed5565;
}
#welo-mediamap-panel .welo-editor .welo-properties-editor .btn-welo-full {
  display: inline-block;
  font-size: 11px;
  padding: 0 7px;
  height: 25px;
  line-height: 25px;
  margin-left: 5px;
}
#welo-mediamap-panel .welo-editor .welo-feed {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  overflow: scroll;
}
#welo-mediamap-panel .welo-editor .welo-feed .welo-feed-item-repeater {
  padding: 10px 0;
  position: relative;
  border-bottom: 1px solid #dddddd;
}
#welo-mediamap-panel
  .welo-editor
  .welo-feed
  .welo-feed-item-repeater
  .texts-column {
  padding: 0 10px;
}
#welo-mediamap-panel
  .welo-editor
  .welo-feed
  .welo-feed-item-repeater
  .texts-column
  h3 {
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 0 0 4px;
  margin: 0;
  color: #000000;
  letter-spacing: -0.04em;
}
#welo-mediamap-panel
  .welo-editor
  .welo-feed
  .welo-feed-item-repeater
  .texts-column
  p {
  font-size: 11px;
  line-height: 14px;
  letter-spacing: -0.02em;
}
#welo-mediamap-panel
  .welo-editor
  .welo-feed
  .welo-feed-item-repeater
  .texts-column
  .icons-container {
  margin-top: 15px;
}
#welo-mediamap-panel
  .welo-editor
  .welo-feed
  .welo-feed-item-repeater
  .texts-column
  .icons-container
  a {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin-right: 5px;
  display: inline-block;
  font-size: 18px;
  background-color: #864ee6;
  color: #ffffff;
  border: 0;
}
#welo-mediamap-panel
  .welo-editor
  .welo-feed
  .welo-feed-item-repeater
  .texts-column
  .icons-container
  a:hover {
  background-color: #6721e0;
  color: #ffffff;
}
#welo-mediamap-panel
  .welo-editor
  .welo-feed
  .welo-feed-item-repeater
  .texts-column
  .floating-delete-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 20px;
}
#welo-mediamap-panel
  .welo-editor
  .welo-feed
  .welo-feed-item-repeater
  .texts-column
  .floating-delete-button:hover {
  color: #ed5565;
}
#welo-mediamap-panel .welo-editor .welo-feed .welo-feed-item-repeater.active {
  background-color: #864ee6;
  color: #ffffff;
}
#welo-mediamap-panel
  .welo-editor
  .welo-feed
  .welo-feed-item-repeater.active
  .texts-column
  h3 {
  color: #ffffff;
}
#welo-mediamap-panel
  .welo-editor
  .welo-feed
  .welo-feed-item-repeater.active
  .icons-container
  a {
  background-color: #ffffff;
  color: #864ee6;
}
#welo-mediamap-panel
  .welo-editor
  .welo-feed
  .welo-feed-item-repeater.active
  .icons-container
  a:hover {
  background-color: #ffffff;
  color: #6721e0;
}
#welo-mediamap-panel .layout-columns {
  font-size: 0;
  line-height: 0;
  letter-spacing: 0;
}
#welo-mediamap-panel .layout-columns .thumbs-column {
  display: inline-block;
  vertical-align: top;
  padding-left: 10px;
  width: 35%;
  width: 30%;
  text-align: center;
  position: relative;
}
#welo-mediamap-panel .layout-columns .thumbs-column .single-thumbnail-wrapper {
  width: 100%;
  height: auto;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  background-color: #333333;
}
#welo-mediamap-panel
  .layout-columns
  .thumbs-column
  .single-thumbnail-wrapper
  img {
  width: 100%;
  height: 100%;
}
#welo-mediamap-panel .layout-columns .thumbs-column .thumb-selector-button {
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  -ms-border-radius: 0 2px 2px 0;
  -o-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  width: 24px;
  height: 24px;
  background-color: #864ee6;
  background-color: #bbbbbb;
  color: #ffffff;
  font-size: 13px;
  line-height: 24px;
  text-align: center;
  display: inline-block;
  margin: 5px 3px;
  cursor: pointer;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -12px;
}
#welo-mediamap-panel
  .layout-columns
  .thumbs-column
  .thumb-selector-button.fa-step-forward {
  -webkit-border-radius: 2px 0 0 2px;
  -moz-border-radius: 2px 0 0 2px;
  -ms-border-radius: 2px 0 0 2px;
  -o-border-radius: 2px 0 0 2px;
  border-radius: 2px 0 0 2px;
  left: auto;
  right: 0;
}
#welo-mediamap-panel
  .layout-columns
  .thumbs-column
  .thumb-selector-button:hover {
  background-color: #a2a2a2;
}
#welo-mediamap-panel .layout-columns .texts-column {
  display: inline-block;
  vertical-align: top;
  width: 65%;
  width: 70%;
  padding: 0;
}
#welo-mediamap-panel .layout-columns .texts-column .input-group {
  margin-top: 0;
  padding: 0 10px;
  margin-bottom: 5px;
}
#welo-mediamap-panel .layout-columns .texts-column .input-group .form-control {
  font-size: 12px;
  padding: 6px 10px;
  height: auto;
}
#welo-mediamap-panel
  .layout-columns
  .texts-column
  .input-group
  textarea.form-control {
  height: auto;
}

body {
  background: #f3f3f4;
}
body > div {
  height: 100%;
}
body > div #main-wrapper {
  height: 100%;
}

.modal-dialog.modal-sm {
  width: 500px;
}

.modal-content {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  border-top: 3px solid #864ee6;
  width: 600px;
  text-align: center;
}
.modal-content .modal-body {
  padding: 20px 15px;
}

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