/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 20/03/2018, 13:57:48
    Author     : ivojunior
*/

/* Hint container */
.hint {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.hint .hinttext{
    visibility: hidden;
    width: 120px;
    background-color: gray;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.hint:hover .hinttext {
    visibility: visible;
}

.bootstrap-tagsinput {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  display: inline-block;
  padding: 4px 6px;
  color: #555;
  vertical-align: middle;
  border-radius: 4px;
  max-width: 100%;
  line-height: 22px;
  cursor: text;
}
.bootstrap-tagsinput input {
  border: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  padding: 0 6px;
  margin: 0;
  width: auto;
  max-width: inherit;
}
.bootstrap-tagsinput.form-control input::-moz-placeholder {
  color: #777;
  opacity: 1;
}
.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
  color: #777;
}
.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
  color: #777;
}
.bootstrap-tagsinput input:focus {
  border: none;
  box-shadow: none;
}
.bootstrap-tagsinput .tag {
  margin-right: 2px;
  color: white;
}
.bootstrap-tagsinput .tag [data-role="remove"] {
  margin-left: 8px;
  cursor: pointer;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
  content: "x";
  padding: 0px 2px;
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.dailycolumncutting td {
    width: 100%;
}
.dailycolumncutting td.hovered {
    text-align: center;
    background-color: #ff000055;
}
.wrapper {
  height: 100%;
  width: 100%;
}


.is-selectable {
    .fc-agenda-view {
        .fc-body td {
            border-color: white;

            .fc-today {
                background-color: transparent;
            }
        }
      
      .fc-highlight {
        background-color: #000;
      }

        .fc-slats {
            z-index: 10;

            tr > td.fc-widget-content:last-child {
                background-color: #000;
                opacity: .3;
                background-clip: padding-box;
                cursor: pointer;

                &:hover {
                    opacity: .5;
                }
            }
        }

        .fc-bg {
            z-index: 11;
            pointer-events: none;
        }
    }
}


.loader {
    border: 20px solid #f3f3f3; /* Light grey */
    border-top: 20px solid #333333; 
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
    
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

.fontsize12 {
    font-size: 12px;
}
.fontsize11 {
    font-size: 11px;
}
.fontsize10 {
    font-size: 10px;
}

.cpo-obrigatorio {
    color: red;
}
.cpo-obrigatorio-vld {
    border-color: red;
}
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    border-bottom-color: gray;
    border: 2px;
    padding-top: 25px;
    padding-bottom: 15px;
    width: 100%;
    background-color: #333333;
    color: darkslategrey;
    text-align: center;
    z-index: 999999;
}
    .footer-transparent {
        position: fixed;
        left: 0;
        bottom: 0;
        border-bottom-color: transparent;
        border: 2px;
        padding-top: 25px;
        padding-bottom: 15px;
        width: 100%;
        background-color: transparent;
        text-align: center;
        z-index: 999999;
    }
    .footer-login {
        position: fixed;
        left: 0;
        bottom: 0;
        border-bottom-color: transparent;
        padding-top: 2px;
        padding-bottom: 0px;
        width: 100%;
        background-color: transparent;
        text-align: center;
        z-index: 999999;
    }

    .zoom {
        padding: 0px;
        transition: transform .2s; /* Animation */
        width: 25px;
        height: 25px;
        margin: 0 auto;
    }
    .zoom:hover {
        transform: scale(7); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    }