.top-middle{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
}

/*validation text size*/

.has-text-danger{
    font-size: 0.75rem
}

/* div animate */
.interaction {
  border: 10px solid lightgreen;
  display: flex;
  flex: 1 0 auto;
  max-height: 225px;
}
.default {
   width: 100px;
}

.form-control-smaller{
	height:20px;
	width:50px;
}

.bigger{
   width: 250px;
}

.fade-leave-active {
  transition: all 3s ease;
 }

.fade-leave-to{
  width: 300px;
}
.bigger.fade-leave-to{
  width:100px;
  opacity: 0
}
.bigger.fade-leave-active{
  transition: opacity 0s ease;
  transition: width 3s ease;
}

/*pagination*/

.pager .pagination>li>a,
.pager .pagination>li>span {
    color: #343a40;
}
.pagination>li.page-item.active>a {
    border: 1px solid #343a40;
  background: #343a40;
  color: #fff;
}

.btn-secondary, .btn-info, .btn-warning, .btn-danger, .btn-success{
	padding: 0.2em 0.5em;
}

.table-default td{
	padding: 0.2em;
}

.case_coche[type=checkbox] {
    -border-radius: 4px;
    height: 25px;
    width: 25px;
    vertical-align: text-top;
    margin-bottom: 5px;
    background: #fff;
    border: 1px solid #ccc;
}

.case_coche[type="checkbox"]:checked {
  background: yellow;
  margin-bottom: 5px;
  position: relative;
  &:before {
    font-family: FontAwesome;
    content: '\f00c';
    display: block;
    color: grey;
    font-size: 13px;
    position: absolute;
  }
}

.postit{
	width:300px;
	height:300px;
	position: absolute;
	top:0;
	right:0;
	background :#FBE365 ;
	padding: 5px;
	border: 5px solid black;
}

.postit label{
	width:280px;
	padding: 5px;
	background :#F4B315 ;
}
.postit .close_postit{
	cursor: pointer;
	position:absolute;
	top:8px;
	right:15px;
}

/* forcage modal style */ 
#post .modal-card, .modal-content{
	width:90% !important;
	max-width:  1000px;
}
	
.loader {
    border: 5px solid #f3f3f3;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-top: 5px solid #555;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

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

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