::selection {
  color: #fff;
  background: #1B2A53;
}

::-moz-selection {
  color: #fff;
  background: #1B2A53;
}

.project-product-card {
  background: #f4f0c8;
  border-radius: 10px
}

.breadcrumb {
  background-color: #cce5f9 !important;
}

@font-face {
  font-family: "Roboto-Mono";
  src: url('/assets/RobotoMono-Regular.ttf');
}

@font-face {
  font-family: "Poppins";
  src: url('/assets/Poppins-Regular.ttf');
}

@font-face {
  font-family: "Americana-Roman";
  src: url('/assets/Americana-Roman.ttf');
}

.price-font {
  font-family: "Roboto-Mono", sans-serif;
  font-weight: bold;
  color: black !important
}

.title-font {
  font-family: "Americana-Roman", sans-serif;
  font-weight: bold;
  color: black !important
}

.dot {
  height: 14px;
  width: 14px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block !important;
}

th {
  text-transform: none !important;
}

@media (min-width: 992px) {
  .flatpickr-calendar {
    right: 0 !important;
  }
}

.excel-svg {
  fill: white;
}

holder{
  background: #fff;
  border-radius:5px; 	
  box-shadow: 0 2px 3px 0 rgba(0,0,0,.1);	
  margin:100px auto;
  padding:30px 20px 20px;
  width:400px;
}

td{
  border-bottom:1px solid #f6f6f6;
  padding:5px 10px;
}

td:nth-child(2){
  text-align: right;
  width: 40px;
}

tr:last-child td{

}

input[type=checkbox] {
  cursor: pointer;
  height: 30px;
  margin:4px 0 0;
  position: absolute;
  opacity: 0;
  width: 30px;
  z-index: 2;
}

input[type=checkbox] + span {
  background: #e74c3c;
  border-radius: 50%;
  box-shadow: 0 2px 3px 0 rgba(0,0,0,.1);
  display: inline-block;
  height: 30px;
  margin:4px 0 0;
  position:relative;
  width: 30px;
  transition: all .2s ease;
}

input[type=checkbox] + span::before, input[type=checkbox] + span::after{
  background:#fff;
  content:'';
  display:block;
  position:absolute;
  width:4px;
  transition: all .2s ease;
}

input[type=checkbox] + span::before{
  height:16px;
  left:13px;
  top:7px;
  -webkit-transform:rotate(-45deg);
  transform:rotate(-45deg);
}

input[type=checkbox] + span::after{
  height:16px;
  right:13px;
  top:7px;
  -webkit-transform:rotate(45deg);
  transform:rotate(45deg);
}

input[type=checkbox]:checked + span {
  background:#2ecc71;			    
}

input[type=checkbox]:checked + span::before{
  height: 9px;
  left: 9px;
  top: 13px;
  -webkit-transform:rotate(-47deg);
  transform:rotate(-47deg);
}

input[type=checkbox]:checked + span::after{
  height: 15px;
  right: 11px;
  top: 8px;
}

input[type=submit] {
  background-color: #2ecc71;
  border: 0;
  border-radius: 4px;
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  font-size:16px;
  text-align: center;
  padding: 12px 20px 14px;
}

/*403*/

@import url('https://fonts.googleapis.com/css?family=Lato');

$animationTime: 2s;

.lock {
  border-radius: 5px;
  width: 55px;
  height: 45px;
  background-color: #333;
  animation: dip 1s;
  animation-delay: ($animationTime - .5);
  
  &::before,
  &::after {
    content: '';
    position: absolute;
    border-left: 5px solid #333;
    height: 20px;
    width: 15px;
    left: calc(50% - 12.5px);
  }
  
  &::before {
    top: -30px;
    border: 5px solid #333;
    border-bottom-color: transparent;
    border-radius: 15px 15px 0 0;
    height: 30px;
    animation: lock $animationTime, spin $animationTime;
  }
  
  &::after {
    top: -10px; 
    border-right: 5px solid transparent;
    animation: spin $animationTime;
  }
}

@keyframes lock {
  0% {
    top: -45px;
  }
  65% {
    top: -45px;
  }
  100% {
    top: -30px;
  }
}

@keyframes spin {
  0% {
    transform: scaleX(-1);
    left: calc(50% - 30px);
  }
  65% {
    transform: scaleX(1);
    left: calc(50% - 12.5px);
  }
}

@keyframes dip {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Custom Checkbox*/

.checkbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px;
	margin-top: 10px;
}


.checkbox__label {
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
}


.checkbox__input {
	display: none;
}


.checkbox__group {
	width: 20px;
	height: 20px;
	border: 2px solid #f44336;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background-color: transparent;
	transition: all 0.3s ease;
	margin-right: 5px;
	
}


.checkbox__checked {
	content: "";
	width: 4px;
	height: 10px;
	border-right: 2px solid #4caf50;
	border-bottom: 2px solid #4caf50;
	transform: rotate(45deg);
	opacity: 0;
	transition: all 0.2s ease;
}


.checkbox__input:checked + .checkbox__group {
	border-color: #4caf50;
	background-color: #e8f5e9;
}

.checkbox__input:checked + .checkbox__group .checkbox__checked {
	opacity: 1;
}




.checkbox__group::after {
    content: "✕";
    color: #f44336;
    font-size: 13px;
    position: absolute;
    top: 55%;
    left: 55%;
    transform: translate(-50%, -50%);
    display: block;
    opacity: 1;
    transition: opacity 0.2s ease;
    pointer-events: none;
}


.checkbox__input:checked + .checkbox__group::after {
	opacity: 0;
}

.widget-content .btn-outline-primary:hover {
	color:#fff !important;
}

.all-check {
    display: flex;
    align-items: center;
    gap: 5px;
}

.all-check-label {
    order: -1; 
    font-size: 13px;
}

.permission-box.child-permission {
    background-color: #f9f9f9;
    padding: 8px 12px;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 5px;
    border: 1px solid #ddd;
}


.permission-group {
	margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 8px;
    transition: all 0.3s ease;
	box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
	background-color: #fefefe;
	padding: 15px;
    border-radius: 6px;
}

.permission-group label {
	margin-bottom:0;
}

.group-toggle label {
	margin-bottom:0;
}












