/* ------- Navi ----------- */
#navi_profile_img img{
	max-height: 37px;
	border-radius: 5px;
	border: 2px solid #FFF;
	background-color: #FFF;
}


/* ------- Misc ----------- */
.pointer {
	cursor: pointer;
}
.tooltip_help{
	padding-left:5px;
}
.sticky_wrap {
	transition: all .5s ease-in-out;
}
.sticky_wrap.sticky_top {
	position:fixed;
	top:0;
	right:0;
	-webkit-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
	z-index: 1;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #000;
    border-radius: 10px;
    background-color: rgba(197, 197, 197, 0.64);
}
.rm_thumb {
	width: 122px;
	height: 91px;
}
.rm_thumb_sm {
	width: 80px;
	height: auto;
}
.text-black-20 { color: rgba(0,0,0, .2) !important; }

/* form validation */
.fv-form-bootstrap4 .fv-control-feedback {
    width: 18px !important;
    height: 18px !important;
    line-height: auto !important;
    top: 25px !important;
}
.fv-has-feedback.has-warning small{
    color: #ee0606;
    font-weight: bold;
}


/* sortable */
.ft_media_matrix .sortable { list-style-type: none; margin: 0; padding: 0; width: 100%; }

.ft_media_matrix .move_icon {
	padding:10px;
}

.ft_media_matrix .ui-sortable-handle {
	border:1px solid #ededed;
	padding-bottom: 10px;
}
.ft_media_matrix .ui-sortable-handle .form-group {
	margin: 10px;
	cursor: move; /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}
.ft_media_matrix .ui-sortable-handle:hover {
	border: 1px solid #000;
}



.card-deck > div[class*='col-'] {
  display: flex;
}

.flatpickr-time {
	margin: 10px;
}

.multiselect-container.dropdown-menu.show {
	width: 300px !important;
}



@media (max-width: 768px){
	.card-columns {
		column-count: 2;
	}
	
	.card-deck,
	.card-deck > div[class*='col-'] {
		display: block !important;
		width:100%;
		margin: 0 auto;
	}
	
	.multiselect-container.dropdown-menu.show {
		width: auto !important;
	}

}





/* ------- Debug ----------- */
#debug_box {
	background-color: #474848;
	color: #FFF;
	padding: 20px;
	font-size: 1.2em;
	display: none;
}
#debug_box .debug-data {
	color: #FFF;
}
#debug_box h2,
#debug_box p,
#debug_box a, #debug_box a:link, #debug_box a:visited {
	color: #fff72c;
}

/* ------- Loading Overlay ----------- */
#loading_overlay{
	position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 10; /* Specify a stack order in case you're using a different order for other elements */
    
}
#loading_overlay .loading_text{
	position: absolute;
    top: 50%;
    left: 50%;
    font-size: 50px;
    color: #FFF;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    text-align: center;
}


/* ------- Datatables ----------- */
table.data_table tbody tr td.sorting_1 {
	cursor: move;
}

/* ------- Auth ----------- */
.form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
  padding-top:10%;
}
.form-signin .checkbox {
  font-weight: 400;
}
.form-signin .form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
}
.form-signin .form-control:focus {
  z-index: 2;
}
.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}


input, select {
	outline: none !important;
	padding: 12px !important;
	border-radius: 3px !important;
	border: 1px solid #CCC !important;
	height: 50px !important;	
}
::-webkit-input-placeholder { /* Chrome */
  color: #CCC !important;
  transition: opacity 250ms ease-in-out;
}
:focus::-webkit-input-placeholder {
  opacity: 0.5;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #CCC !important;
  transition: opacity 250ms ease-in-out;
}
:focus:-ms-input-placeholder {
  opacity: 0.2;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #CCC !important;
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}
:focus::-moz-placeholder {
  opacity: 0.2;
}
:-moz-placeholder { /* Firefox 4 - 18 */
  color: #CCC !important;
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}
:focus:-moz-placeholder {
  opacity: 0.2;
}

