/*base code*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

/*the animation definition*/

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05)
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    -ms-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05)
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -ms-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut
}


.__blinking {
    animation: blinking 1s ease 0s infinite;
}

.__throw-out {
    position: relative;
    animation: throw-out 0.3s ease 0s forwards;
}

.__throw-out-delay-1000 {
    position: relative;
    animation: throw-out 0.3s ease 1s forwards;
}

.__fade-out-after-3000 {
    animation: fade-out 1s ease 3s forwards;
}

@keyframes throw-out {
    0% {
        left: 0;
    }
    100% {
        opacity: 0;
        height: 0;
        padding: 0;
        left: 200px;
    }
}

@keyframes blinking {
    0%     { opacity: 1; }
    50%    { opacity: 0.5; }
    100%   { opacity: 1; }
}

@keyframes fade-out {
    0%     { opacity: 1; }
    100%   { opacity: 0; }
}



.row.show-grid {
    margin-bottom: 15px;
}

.col {
    padding-left: 10px;
    padding-right: 10px;
}

.col:first-child {
    padding-left: 20px;
}

.col:last-child {
    padding-right: 20px;
}

.bg-default {
    color: black;
    background: #ccc;
}

.tl-modal-open {
    overflow: hidden;
}

.tl-modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-header {
    position: sticky; top: 0;
    background: white;
    border-radius: 6px 6px 0 0;
    z-index: 1;
}

.modal-footer {
    position: sticky; bottom: 0;
    background: white;
    border-radius: 0 0 6px 6px;
}

.user-name + li {
    border-left: 0;
    box-shadow: none;
}

.navbar-nav:not(.navbar-right) > li:last-child {
    border-right: 1px solid #505F67;
    box-shadow: -1px 0 0 0 #323A3E inset;
}

.nav-item-actions {
    display: none;
    margin-right: 1em;
}

.nav > li > a:hover .nav-item-actions {
    float: right;
    display: block;
}

.__nav-pills--invisible {
    display: flex;
}

.__nav-pills--invisible > li {
    flex-grow: 1;
}

.__nav-pills--invisible > li:not(:first-child) {
    margin-left: 1em;
}

.__nav-pills--invisible > li > a {
    text-align: center;
    border: 1px dashed #ccc;
}

.nav>li.__pill-darker>a, .nav>li.__pill-darker>a {
    background: #eee;
}

.nav>li.__pill-darker>a:focus, .nav>li.__pill-darker>a:hover {
    background: #ddd;
}

.nav>li.disabled>a {
    pointer-events: none;
}

select:required:invalid {
    color: #8e8e8e;
}

select:required option:disabled {
    display: none;
}

.breadcrumb {
    height: 45px;
    display: flex;
    align-items: center;
}
.checkbox [type=checkbox] {
    display: none;
}

.checkbox--button.checkbox--button {
    display: inline-block; vertical-align: middle;
    min-height: 1em; padding: 0;
    position: relative;
    width: 2em; height: 1em; line-height: 1em;
    margin: 2px -15px 4px 0;
    border-radius: 0.5em;
    cursor: pointer;
}

.checkbox--button::after {
    content: ' '; display: block;
    position: absolute; top: 1px;
    width: calc(1em - 2px); height: calc(1em - 2px);
    background: white;
    border-radius: 50%;
    transition: all 0.3s 0s ease;
}
    
[type=checkbox]:not(:checked) ~ .checkbox--button {
    background: rgba(0, 0, 0, 0.5);
}

[type=checkbox]:checked ~ .checkbox--button {
    background: rgba(0, 160, 150, 1);
}

[type=checkbox].checkbox-transparent:checked ~ .checkbox--button {
    background: rgba(0, 0, 0, .2);
}

[type=checkbox]:not(:checked) ~ .checkbox--button::after {
    right: calc(1em + 1px);
}

[type=checkbox]:checked ~ .checkbox--button::after {
    right: 1px;
}

:disabled a {
    pointer-events: none;
    cursor:not-allowed;
    opacity: 0.75;
}

:disabled .nav a {
    color: #777;
    opacity: 1;
}

:disabled .nav a:focus, :disabled .nav a:hover {
    background: transparent;
}

fieldset:disabled .checkbox {
    opacity: 0.5;
}

[type=checkbox][disabled] + label {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-pills > li > a .form-group {
    margin: 0;
}

.nav-pills > li > a .checkbox {
    margin: 0;
}
.grid .table {
    table-layout: fixed;
}

.grid.__focused tr.info {
    outline: 2px #66afe9 solid;
} 

.grid [data-id=focus-holder] {
    position: fixed;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    opacity: 0;
}

.grid .messages {
    position: fixed;
    left: 81px;
    right: 0;
    bottom: 0;
}

.grid .messages p {
    margin-bottom: 0;
    margin-top: 1em;
}

.grid-toolbar {
    margin-bottom: 20px;
}

.grid thead {
    border-top: 1px solid #D4D6D7;
    border-bottom: 1px white solid;
    background: #f5f5f5;
    color: #555;
}

.grid .table>thead>tr>th {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 15px; padding-right: 15px;
    border-bottom-width: 1px;
}

.grid-head {
    height: 49px;
    line-height: 49px;
    border-top: 1px white solid;
}

.grid-head, .grid-cell {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
}

.grid-cell {
    line-height: 32px;
}

.grid .table>tbody>tr>td {
    padding-left: 15px; padding-right: 15px;
    border-top: 0;
}

.grid .table>tbody>tr.grid-row>td {
    border-top: 1px #ddd solid;
}

.grid tbody tr.grid-row:first-child {
    border-top: 0;
}

.grid tbody tr.grid-row:first-child td {
    border-top: 0;
}

.grid tr:first-child td {
    
}





/* OVERRIDE */

.grid .form-group {
    margin-bottom: 0;
}

.grid .checkbox {
    margin-top: 0;
    margin-bottom: 0;
}
.map-surfer-menu {
    position: fixed;
    left: 0;
    top: 58px;
    bottom: 0;
    width: 81px;
    background: #e5eef1 url(../images/mapsurfer-items-background.png);
    box-shadow: 0px 0px 7px #b4d0df inset;
}

.map-surfer-menu-item {
    position: relative;
    text-shadow: 0px 1px 0px #ffffff;
    min-height: 70px;
    padding-bottom: 12px;
}

.map-surfer-menu-item__active,
.map-surfer-menu-item:hover {
    text-shadow: 0px 1px 0px #37709b;
    background: url(../images/texture-panel-hover.png) #5695bc;
}

.map-surfer-menu-item::after {
    position: absolute;
    display: block;
    content: ' ';
    width: 70px;
    left: 5px;
    bottom: 0;
    border-top: 1px rgb(202, 218, 226) solid;
    border-bottom: 1px rgb(248, 250, 251) solid;
}

.map-surfer-menu-item__active::after,
.map-surfer-menu-item:hover::after {
    display: none;
}

.map-surfer-menu-item--link {
}

.map-surfer-menu-item--link:link,
.map-surfer-menu-item--link:visited,
.map-surfer-menu-item--link:hover,
.map-surfer-menu-item--link:active {
    color: #5C717C;
}

.map-surfer-menu-item--link:link {
}

.map-surfer-menu-item--link:visited {
}

.map-surfer-menu-item--link:hover {
    text-decoration: none;
}

.map-surfer-menu-item--link:active {
}

.map-surfer-menu-item__active .map-surfer-menu-item--link:link,
.map-surfer-menu-item__active .map-surfer-menu-item--link:visited,
.map-surfer-menu-item__active .map-surfer-menu-item--link:hover,
.map-surfer-menu-item__active .map-surfer-menu-item--link:active,
.map-surfer-menu-item:hover .map-surfer-menu-item--link:link,
.map-surfer-menu-item:hover .map-surfer-menu-item--link:visited,
.map-surfer-menu-item:link:hover .map-surfer-menu-item--link:hover,
.map-surfer-menu-item:hover .map-surfer-menu-item--link:active {
    color: white;
}

.map-surfer-menu-item--image {
    height: 56px;
    background-position: center center;
    background-repeat: no-repeat;
}

.map-surfer-menu-item__management .map-surfer-menu-item--image {
    background-image: url(../images/mapsurfer-item-manage.png);
}

.map-surfer-menu-item__tasks .map-surfer-menu-item--image {
    background-image: url(../images/mapsurfer-item-tasks.png);
}

.map-surfer-menu-item__layers .map-surfer-menu-item--image {
    background-image: url(../images/mapsurfer-item-layers.png);
}

.map-surfer-menu-item__reports .map-surfer-menu-item--image {
    background-image: url(../images/mapsurfer-item-reports.png);
}

.map-surfer-menu-item__datastores .map-surfer-menu-item--image {
    background-image: url(../images/mapsurfer-item-datastores.png);
}

.map-surfer-menu-item__rights .map-surfer-menu-item--image {
    background-image: url(../images/mapsurfer-item-rights.png);
}

.map-surfer-menu-item__settings .map-surfer-menu-item--image {
    background-image: url(../images/mapsurfer-item-settings.png);
}

.map-surfer-menu-item__system .map-surfer-menu-item--image {
    background-image: url(../images/mapsurfer-item-system.png);
}

.map-surfer-menu-item__management:hover .map-surfer-menu-item--image {
    background-image: url(../images/mapsurfer-item-manage__hover.png);
}

.map-surfer-menu-item__active.map-surfer-menu-item__tasks .map-surfer-menu-item--image,
.map-surfer-menu-item__tasks:hover .map-surfer-menu-item--image {
    background-image: url(../images/mapsurfer-item-tasks__hover.png);
}

.map-surfer-menu-item__active.map-surfer-menu-item__settings .map-surfer-menu-item--image,
.map-surfer-menu-item__settings:hover .map-surfer-menu-item--image {
    background-image: url(../images/mapsurfer-item-settings__hover.png);
}

.map-surfer-menu-item__layers:hover .map-surfer-menu-item--image {
    background-image: url(../images/mapsurfer-item-layers__hover.png);
}

.map-surfer-menu-item__reports:hover .map-surfer-menu-item--image {
    background-image: url(../images/mapsurfer-item-reports__hover.png);
}

.map-surfer-menu-item__datastores:hover .map-surfer-menu-item--image {
    background-image: url(../images/mapsurfer-item-datastores__hover.png);
}

.map-surfer-menu-item__rights:hover .map-surfer-menu-item--image {
    background-image: url(../images/mapsurfer-item-rights__hover.png);
}

.map-surfer-menu-item__system:hover .map-surfer-menu-item--image {
    background-image: url(../images/mapsurfer-item-system__hover.png);
}

.map-surfer-menu-item--text {
    display: block;
    font-size: 11px;
    line-height: 12px;
    font-weight: bold;
}
.schedule-calendar.schedule-calendar {
    position: fixed;
    left: 25%; right: 15px;
    top: 78px; bottom: 15px;
    margin-bottom: 0;
}

.schedule-calendar--title {
    margin-bottom: 20px;
}

.schedule-launch-filters {
    position: fixed;
    right: 15px; width: calc(25% - 20px);
    top: 80px;
    padding-left: 20px; padding-top: 10px;
    z-index: 1;
    border-left: 1px #ddd solid;
    background: white;
}

.schedule-calendar .calendar--body {
    height: calc(100% - 70px);
}

.schedule-calendar .calendar--item {
    height: 16.66%;
    cursor: default;
    position: relative;
    padding: 0 5px;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}

.schedule-calendar .calendar--item-day-marker {
    text-align: left;
    padding: 0 1em;
}

.suggestion-nest {
    position: relative;
}

.suggestion {
    position: absolute;
    z-index: 3; /* to pass over .input-group .form-control */
    width: 100%;
    background: white;
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.25);
}

.suggestion-list {
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
}

.suggestion-item {
    margin: 0; padding: 0;
    list-style-type: none;
    height: 2em; line-height: 2em;
    padding-left: 1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.__suggestion-item-active {
    background: #eee;
}

.suggestion-info {
    border-top: 1px #eee solid;
    color: #999;
    height: 3em; line-height: 3em;
    padding-left: 1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.__page-up:not([disabled]), .__page-down:not([disabled]) {
    color: #337ab7;
    cursor: pointer;
}

.__page-up[disabled], .__page-down[disabled] {
    color: #ccc;
    cursor: default;
}
.caption {
    margin-top: 0;
    margin-bottom: 20px;
}
.__blink {
    animation: blink-warning 0.5s ease 0s;
}

@keyframes blink-warning {
    25%     { background-color: rgba(255, 224, 192, 1); }
}
.__image-loading {
    display: block;
    position: absolute;
    width: 96px;
    height: 96px;
  }
  .__image-loading div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: 6px; right: 6px;
    top: 6px; bottom: 6px;
    border: 6px solid #999;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #999 transparent transparent transparent;
  }
  .__image-loading div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .__image-loading div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .__image-loading div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
/* https://projects.lukehaas.me/css-loaders/ */

.__loading,
.__loading:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.__loading {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(0, 0, 0, 0.2);
  border-right: 1.1em solid rgba(0, 0, 0, 0.2);
  border-bottom: 1.1em solid rgba(0, 0, 0, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* https://loading.io/css/ */

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ripple div {
    display: block;
    position: absolute;
    border: 4px solid rgba(0, 0, 0, 0.2);
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
  .lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
  }
  @keyframes lds-ripple {
    0% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 1;
    }
    100% {
      top: 0px;
      left: 0px;
      width: 72px;
      height: 72px;
      opacity: 0;
    }
  }
  
body.__page-locked::after {
    content: ""; display: block;
    position: fixed; top: 4px; bottom: 0; left: 0; right: 0;
    z-index: 999999999;
    background-color: rgba(0, 0, 0, .25);
}
.tasks-grid .table>tbody>tr.info>td, .tasks-grid .table>tbody>tr.info>th, .tasks-grid .table>tbody>tr>td.info, .tasks-grid .table>tbody>tr>th.info, 
.tasks-grid .table>tfoot>tr.info>td, .tasks-grid .table>tfoot>tr.info>th, .tasks-grid .table>tfoot>tr>td.info, .tasks-grid .table>tfoot>tr>th.info, 
.tasks-grid .table>thead>tr.info>td, .tasks-grid .table>thead>tr.info>th, .tasks-grid .table>thead>tr>td.info, .tasks-grid .table>thead>tr>th.info {
    color: white;
    background-color: #337ab7;
}

.tasks-grid .table .text-muted {
    color: rgba(0, 0, 0, 0.35);
}

.tasks-grid .table .info .text-muted {
    color: rgba(255, 255, 255, 0.5);
}

.tasks-grid .secondary-row > td {
    padding-top: 0;
}

.tasks-grid .secondary-row > td > .grid-cell {
    padding-top: 0;
}

.tasks-grid.grid.__focused tr.info {
    outline: 0;
}

.tasks-grid .badge {
    background-color: #337ab7;
    color: white;
}

.tasks-grid tr.info .badge {
    background-color: white;
    color: #337ab7;
}
.attachment {
    white-space: nowrap;
}

.attachment-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #f0f0f0;
    border-radius: 50%;
    vertical-align: middle;
}

.attachment-title {
    display: inline-block;
    width: calc(100% - 32px - 2em);
    margin-left: 1em;
}

.attachment-title-action {
    cursor: pointer;
    color: black;
    vertical-align: middle;
}

.attachment-title-action:first-of-type {
    margin-left: 1em;
}

.attachment .attachment-title-action {
    display: none;
}

.attachment:hover .attachment-title-action {
    display: inline-block;
}

.attachment-loading-indicator {
    margin-top: 0.5em;
    height: 4px;
    border-radius: 2px;
    background: white;
    position: relative;
    overflow: hidden;
}

.attachment .attachment-loading-indicator:after {
    opacity: 0;
}

.__attachment-loading .attachment-loading-indicator:after {
    opacity: 1;
}

.attachment-loading-indicator:after {
    content: ' '; 
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    background: #f0f0f0;
    animation: attachment-loading 2s linear 0s infinite;
    transition: opacity 0.3s ease 0s;
}

.attachment + .attachment {
    margin-top: 0em;
}

@keyframes attachment-loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
  }
  
  
.calendar {
    margin-bottom: 10px;
}

.calendar--caption {
    text-align: center;
    font-size: 1.25em;
    line-height: 2em;
}

.calendar--body {
    margin: 0; padding: 0;
}

.calendar--item {
    display: inline-block; list-style-type: none;
    vertical-align: top;
    margin: 0 1px 0 0; padding: 0;
    width: calc(14.285% - 1px);
    border-top: 1px #e0e0e0 solid;
    background: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    color: #555;
}

.calendar--item:hover {
    background: #f0f0f0;
}

.calendar--item-day-marker {
    display: inline-block;
    width: 100%;
    font-size: 1em;
    text-align: center;
    height: 3em; line-height: 3em;
    position: relative;
}

.calendar--item-day-marker.disabled {
    pointer-events: none;
    opacity: 0.25;
}

.__calendar--item-today {
    box-shadow: 0 7px 0 0 #337ab7 inset;
}

.__calendar--item-selected {
    background: #e0e0e0;
}

.__calendar--item-odd {
    background: #f5f5f5;
}




.__calendar--item-prev-month.__calendar--item-past .calendar--item-day-marker {
    color: #e0e0e0;
}

.__calendar--item-prev-month.__calendar--item-today .calendar--item-day-marker {
    color: #b0b0b0;
}

.__calendar--item-prev-month.__calendar--item-future .calendar--item-day-marker {
    color: #b0b0b0;
}

.__calendar--item-current-month.__calendar--item-past .calendar--item-day-marker {
    color: #b0b0b0;
}

.__calendar--item-current-month.__calendar--item-today .calendar--item-day-marker {
    color: #333;
}

.__calendar--item-current-month.__calendar--item-future .calendar--item-day-marker {
    color: #333;
}

.__calendar--item-next-month.__calendar--item-past .calendar--item-day-marker {
    color: #e0e0e0;
}

.__calendar--item-next-month.__calendar--item-today .calendar--item-day-marker {
    color: #b0b0b0;
}

.__calendar--item-next-month.__calendar--item-future .calendar--item-day-marker {
    color: #b0b0b0;
}

.__calendar--item-selected.__calendar--item-selected .calendar--item-day-marker {
    color: #707070;
}
.comment-form--form-group {
    position: relative;
}

.comment-form--attached-file {
}

.comment-form--attached-file-remove {
    margin-left: 0.5em;
}

.comment-form--attached-file-send {
    margin-left: 0.5em;
}

.comment-form--attach-group {
}

.comment-form--attach-controls {
    display: inline-block;
}

.comment-form--attach-group:hover .comment-form--attach-controls {
    display: inline-block;
}

.comment-form--attach-toggle:hover {
    text-decoration: none;
}

.comment-form--attach-group:hover .comment-form--attach-toggle {
    color: black;
    cursor: default;
}

.comment-form--attach-link {
    display: inline-block;
    transition: opacity 0.3s, margin 0.3s, transform 0.3s;
}

.comment-form--attach-group .comment-form--attach-link {
    opacity: 0;
    margin-left: 0;
    transform: rotate(270deg) scale(0.75);
}

.comment-form--attach-group:hover .comment-form--attach-link {
    opacity: 1;
    margin-left: 1em;
    transform: rotate(360deg) scale(1);
}

.comment-form--reply-to-label {
    position: absolute;
    bottom: 0.75em; left: 0.75em;
    font-size: 1em;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.25);
}

.comments-list--separator {
    font-weight: bold;
    padding: 1em 0;
    text-align: center;
}

.comments-list--item {
}

.comments-list--item::after {
    content: ' '; display: block;
    clear: both;
    visibility: hidden; height: 0;
}

.comment-list--unread-counter {
    position: absolute; right: 0; bottom: 174px;
    width: 48px; height: 48px;
    line-height: 48px; text-align: center;
    background: #337ab7; color: white; border-radius: 10px;
    font-size: 1.25em;
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.comment-list--unread-counter:empty {
    display: none;
}

.comment-list--item-wrapper {
    padding: 0 0;
    max-width: 80%;
    background: #f0f0f0;
    margin: 0.5em;
    border: 1px #e0e0e0 solid;
    border-radius: 0.5em;
    position: relative;
    overflow: hidden;
}

.comment-list--item-actions {
    display: none;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    width: 2em; 
    text-align: center;
    left: 0; top: 0; bottom: 0;
    transition: background-color 0.3s ease 0s;
    cursor: pointer;
}

.__comment-list--item-done .comment-list--item-actions {
    display: flex;
}

.comment-list--item-actions:hover {
    background: white;
}

.comments-list--item-caption {
    margin-left: 2em;
    background: #f9f9f9;
    padding: 0.5em 0.5em 0 0.5em;
}

.comments-list--item-body {
    margin-left: 2em;
    background: #f9f9f9;
    padding: 0.25em 0.5em 0.5em 0.5em ;
}

.comments-list--item-body .thumbnail {
    margin: 0 0 0.25em 0;
}

.comments-list--item-body ul {
    margin: 0 0 0 1em; padding: 0;
}

.comment-list--item-wrapper.__comment-list--item-other  {
    float: right;
}

.__comment-list--item-other .comments-list--item-caption {
    text-align: right;
}

.comment-list--item-wrapper.__comment-list--item-mine {
    float: left;
}

.__comment-list--item-mine .comments-list--item-caption {
    text-align: left;
}

.__comments-list--item-animate.comments-list--item {
    overflow: hidden;
    animation: comment-resize 0.4s ease 0s forwards;
}

.__comments-list--item-animate .comment-list--item-wrapper {
    position: relative;
    top: -2em; opacity: 0;
    animation: comment-drop 0.2s ease 0.2s forwards;
}

.comments-list--item:not(:last-child) .comment-list--item-wrapper {
    border-bottom: 1px #e0e0e0 solid;
}

.comments-list--item-author {
    display: inline-block;
    font-weight: bold;
}

.comments-list--item-date {
    display: inline-block;
}

.comments-list--item-body ul {

}

.comment-list--item-waiting {
    display: none;
}

.comment-list--item-done {
    display: none;
}

.__comment-list--item-waiting .comment-list--item-waiting {
    display: inline-block;
}

.__comment-list--item-done .comment-list--item-done {
    display: inline-block;
}

.comments-list--item-body li {

}

.comment-list--item-parent {
    font-size: inherit;
    margin: 0.5em 0 0.25em 0.5em;
}

@keyframes comment-resize {
    0%          { height: 0; }
    100%        { height: auto; }
}

@keyframes comment-drop {
    0%          { top: 2em; opacity: 0; }
    100%        { top: 0; opacity: 1; }
}
.property--page {
    display: inline-block;
    box-shadow: 0 1px 1 0 rgba(0, 0, 0, 0.25);
    padding: 0 0.25em;
    min-width: 1.5em;
    text-align: center;
    border-radius: 2px;
}

.property--page:hover {
    text-decoration: none;
}

.property--page.property--page {
    cursor: pointer;
    background: white;
    color: #337ab7;
}

.property--page.__active {
    cursor: default;
    background: #5bc0de;
    color: white;
}

.property--page.property--page:hover {
    background: #337ab7;
    color: white;
}

.property--page.__active:hover {
    background: #5bc0de;
    color: white;
}

.possible-value {
    padding: 0 1em .5em 1em;
}

.possible-value--actions {
    display: none;
    margin-left: 1em;
}

.possible-value:hover .possible-value--actions {
    display: inline-block;
}
.map-container {
    position: relative;
}
.schedule-item {
    display: block;
    width: 100%;
    padding: 0 0 0 1em;
    line-height: 1.5em; height: 1.5em;
    margin: 0 0 1px 0;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.schedule-item--icons {
    position: absolute;
    left: 1px;
    top: 1px;
}




.schedule-item-medium {
    display: block; position: relative; 
    cursor: pointer;
    margin: 0 0 1em 0;
    box-shadow: 0 1px 1px rgba(0,0,0,.05); border: 1px #ddd solid;
}

.schedule-item-medium--launch-time {
    float: left;
    width: 5em; top: 0px; position: sticky;
    padding-top: 0.5em;
    text-align: center;
    visibility: hidden;
}

.schedule-item-medium--launch-time:first-child {
    position: sticky;
    top: 0px;
    visibility: visible;
    z-index: 1;
}

.schedule-item-medium--template-info {
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.9);
    margin-left: 1.5em;
    padding: 0.5em;
    overflow: hidden;
}

.schedule-item-medium.__show-schedule:hover .schedule-item-medium--template-info {
    background: #f0f0f0;
    transition: background-color 0.3s 0s ease;
}
.schedule-task-card .schedule-task-card--wrapper {
    background: rgba(0, 0, 0, 0.025);
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 0 15px;
}

.schedule-task-card:hover .schedule-task-card--wrapper {
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
    border-color: rgba(0, 0, 0, 0.15);
}

.schedule-task-card--header {
    padding: 5px 0;
    border-bottom: 1px rgba(0, 0, 0, 0.1) solid;
}

.schedule-task-card--body {
    padding: 15px 0 0 0;
}
.schedule-time {
    position: relative; float: left;
    overflow: hidden;
    height: 2em; line-height: 2em;
    border-radius: 0.25em;
    margin-right: 0.5em;
    transition: all 0.3s 0s ease;
    margin-bottom: 10px;
}

.__schedule-time-add {
    border: 1px #ddd solid;    
    cursor: pointer;
}

.__schedule-time-add:hover {
    background: #f0f0f0;
}

.__schedule-time-add:active {
    background: #ccc;
}

.__schedule-time-add .form-group {
    margin: 0;
    display: inline-block;
}

.__schedule-time-add .glyphicon {
    margin: 0 0.25em;
    padding-right: 0.5em;
}

.__schedule-time-add .form-control {
    border: 0;
    height: 2em;
    line-height: 2em;
    box-shadow: none;
}

.__schedule-time-item {
    display: flex; 
    justify-content: space-between;
    align-items: center;
    padding: 0 0.75em;
    width: 7em;
}

.schedule-time--bg {
    position: absolute; z-index: -1;
    left: 0; right: 0; top: 0; bottom: 0;
    transition: all 0.3s 0s ease;
}

.__schedule-time-remove {
    cursor: pointer;
}

.schedule-time--checkbox {
    display: none;
}

.schedule-time--time {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    transition: all 0.3s 0s ease;
}

.schedule-time--checkbox:disabled ~ .schedule-time--label {
    opacity: 0.5;
    cursor: default;
}

.schedule-time--label {
    display: inline-block;
    position: relative;
    width: 2em; height: 1em; line-height: 1em;
    margin: 0.5em 0 0.5em 0.5em;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0.5em;
    cursor: pointer;
}

.schedule-time--label::after {
    content: ' '; display: block;
    position: absolute; top: 1px;
    width: calc(1em - 2px); height: calc(1em - 2px);
    background: white;
    border-radius: 50%;
    transition: all 0.3s 0s ease;
}
    
.schedule-time--checkbox:not(:checked) ~ .schedule-time--time {
    color: black;
}

.schedule-time--checkbox:checked ~ .schedule-time--time {
    color: black;
}

.schedule-time--checkbox:not(:checked) ~ .glyphicon {
    color: black;
}

.schedule-time--checkbox:checked ~ .glyphicon {
    color: black;
}

.schedule-time--checkbox:not(:checked) ~ .schedule-time--label {

}

.schedule-time--checkbox:checked ~ .schedule-time--label {

}

.schedule-time--checkbox:not(:checked) ~ .schedule-time--label::after {
    right: calc(1em + 1px);
}

.schedule-time--checkbox:checked ~ .schedule-time--label::after {
    right: 1px;
}

.schedule-time--checkbox:not(:checked) ~ .schedule-time--bg {
    background: #ccc;
}

.schedule-time--checkbox:checked ~ .schedule-time--bg {
    background: #fcf8e3;
}

.schedule-time--checkbox ~ .-schedule-time-remove ~ .schedule-time--bg {
    background: #337ab7;
}

.-schedule-time-remove.-schedule-time-remove.-schedule-time-remove {
    color: white;
    cursor: pointer;
}

.-schedule-time-remove ~ .schedule-time--time.schedule-time--time {
    color: white;
}

.task-card-medium {
    position: relative; overflow: hidden;
    padding-left: 6em;
    padding-top: 1.5em;
    box-shadow: 0 1px 1px rgba(0,0,0,.05); border: 1px #ddd solid; border-radius: 4px;
    margin-bottom: 1em;
}

.task-card-medium:hover {
    cursor: pointer;
    background: #f0f0f0;
}

.task-card--creation {
    float: left;
    width: 5em;
    margin-left: -6em;
}

.task-card--status {
    position: absolute;
    height: 8px; line-height: 16px; width: 5em;
    left: 0em; top: 0;
    text-indent: 6em;
}

.task-card--assignee {
    margin-top: 1em;
}

.task-card--confirmed {
    margin-top: 1em;
    text-transform: uppercase;
}

.task-card--deleted {
    margin-top: 1em;
    text-transform: uppercase;
}

.card--section {
    border-top: 1px rgba(0, 0, 0, 0.1) solid;
    padding-top: 15px;
    margin-bottom: 15px;
}
.working-hours {
    margin-bottom: 1em;
}

.working-hours--title {

}

.working-hours--description {
    color: #999;
}

.working-hours--hours-lane {
    box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.25) inset;
    border: 1px #e0e0e0 solid;
    background: #f0f0f0;
    border-radius: 0.625em;
    display: flex;
    overflow: hidden;
}

.working-hours--hour-item {
    display: block;
    width: 4.166%;
}

.working-hours--hour-item:not(:first-child) {
} 

.working-hours--hour-checkbox {
    width: 0; height: 0;
    display: none;
}

.working-hours--hour-label {
    cursor: pointer;
    display: block;
    margin: 0;
}


.working-hours--hour-label:after {
    display: block;
    height: 1.25em;
    content: ' ';
}

.working-hours--hour-checkbox:checked + .working-hours--hour-label {
    background: rgb(197, 217, 171);
    background: rgb(98, 128, 85);
    box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.35) inset,
            1px 0 0 0 rgba(255, 255, 255, 0.15) inset;
}


.form-field--message-container {
    display: inline-block;
    margin-left: 1em;
    font-size: 0.8em;
} 

.__message-warning {
    color: rgba(128, 112, 96, 1);
}

.__message-danger {
    color: rgba(128, 64, 64, 1);
}
.tasks-search {
    margin-bottom: 20px;
}

.tasks-filter {
    margin-bottom: 20px;
}
/*# sourceMappingURL=style.806f9295.css.map */
