/* Custom CSS */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

/* * { */
	/* font-family: "Montserrat", sans-serif; */
    /* font-weight: 100; */
/* } */

* {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.body {
	padding-bottom:100px;
}

.logo{
	width:150px;
	filter:shadow 0 0 3px black;
}

.logo-login, .logo-register, .logo-forgot-password {
	width:400px;
}


.app-body {
	font-size: 0.8rem;
}
.footer {
    position: fixed;
    display: inline-flex;
    width: 100%;
    padding: 15px 10px 0px 0;
    background-color: #939393;
    color: #ffffff;
    font-weight: 600;
    bottom: 0;
    transition: 0.5s;
}

footer li a {
	color: #bababa!important;!importan;!importa;!import;!impor;!impo;!imp;!im;!i;!;
}

.background-light {
    display: inline-flex;
    position: absolute;
    align-content: center;
    align-items: center;
    justify-content: center;
    font-size: 200px;
    color: #fefefe;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */	
    text-shadow: 0px 0px 43px #80808030;
	z-index:-1;
}

.background-dark {
    display: inline-flex;
    position: absolute;
    align-content: center;
    align-items: center;
    justify-content: center;
    font-size: 200px;
    color: #212529;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-shadow: 0px 0px 43px #ffffff36;
	z-index:-1;
}

.close {
    position: relative;
    width: 30px;
    display: inline-flex;
    padding: 5px 15px;
    cursor: pointer;
	color: #ffffff;
    justify-content: flex-end;
    border-radius: 5px;
    background-color: #dc3545;
}

.user_avatar {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    justify-content: center;
    max-height: 383px;
    overflow: hidden;
    height: 383px;
    background-size: 344px;
    background-position: top;
    background-repeat: no-repeat;
    border-radius: 5px;
    transition: 1s;
}

.user_avatar img {
    border-radius: 15px;
}

.show-on {
    display: inline-block;
    width: auto;
    opacity: 0.2;
	transition: opacity 0.5s;
}

.show-on:hover {
    opacity: 1;
	
}

.form-check-input {
    width: 1.5em !important;
    height: 1.5em !important;
}

.btn-conf .btn {
    min-width: 175px;
	border-radius: 0px 5px 5px 0px!important;
}

.btn-0 {
	background-color: #ff0000;
}

.email-in {
    border-radius: 5px 0px 0px 5px !important;
}

h1.page-title {
    margin-bottom: 30px;
}

p.paragraph {
    max-width: 80%;
    text-align: justify;
    line-height: 1.75;
}

ul .dropdown-menu {
    min-width: 230px;
    transition: 1s;
    left: -35px !important;
    top: 36px !important;
    border-radius: 0px 0px 10px 10px;
}

.title-huge {
	overflow: show;
	user-select:none;
    font-size: 10vh;
    color: #1979b2;
    text-shadow: 0 0 64px #000000;
    paint-order: stroke fill;
    display: inline-block;
    letter-spacing: -0.1px;
    -webkit-text-stroke: 3px #ffffff;
    animation: springy 2s ease-in-out infinite;
}
    /* Define the springy animation */
    @keyframes springy {
      0%, 100% {
        letter-spacing: -40px;
      }
      50% {
        letter-spacing: -20px;
      }
    }

    @keyframes heartbeat {
      0%, 100% {
        transform: scale(1);
      }
      25% {
        transform: scale(1.2);
      }
      50% {
        transform: scale(1);
      }
      75% {
        transform: scale(1.2);
      }
    }

.title-sub {
    position: relative;
    z-index: 10000;
    right: -188px;
    color: #ff0000;
    text-shadow: 0 0 2px #000000;
}

.home-title {
	line-height:0.8;
}

.home-content {
    padding: 6rem;
}

.uni-logo {
    width: 100px;
    height: auto;
    margin-right: 25px;
    margin-bottom: 15px;
}

tbody, tr, td {
    padding: 0px !important;
    text-align: center;
}

thead, tr, th {
    margin: 0;
}

.floating {
    position: absolute !important;
	top: 10px;
	left:10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    list-style: none;
    min-width: 33%;
    font-size: 1vw;
    z-index: 9999;
}

.to-right {
    display: inline-flex;
    justify-content: flex-end;
}

.funnies {
    position: absolute !important;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 15px 15px 50px rgb(0 0 0 / 37%);
    animation: swing 3s infinite ease-in-out;
    text-align: center;
    left: 14%;
    top: 656px;
    transform-origin: 52% -58px;
}

.funny-card {
    margin-top: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px 10px 0 0px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 350px;
}

span.h3.funny-title {
    color: white;
    text-shadow: 0px 0px 4px black;
}

@keyframes swing {
    0% { transform: rotate(0deg); } /* Starting position */
    25% { transform: rotate(5deg); } /* Swing to the right */
    50% { transform: rotate(-5deg); } /* Swing to the left */
    75% { transform: rotate(5deg); } /* Swing back to the right */
    100% { transform: rotate(0deg); } /* Back to the original position */
}

h3 {
    margin: 0; /* Remove default margin */
    font-size: 1.5em; /* Slightly larger font size */
    color: #333; /* Darker text color */
}

p {
    margin: 5px 0; /* Top and bottom margins for paragraphs */
    color: #555; /* Dark gray for text color */
}

/* Pinned effect (the pin itself) */
.funny-pin {
    position: absolute;
    top: -65px;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: #ffcc00;
    border-radius: 50%;
    transform: rotate(180deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Optional: Add a small "nail" effect */
.funny-pin::after {
    content: '';
    position: absolute;
    top: 227%;
    left: -306%;
    width: 2px;
    height: 142px;
    background-color: #333;
    border-radius: 3px;
    /* transform: rotate(59deg); */
    transform: translate(-50%, -100%) rotate(117deg);
}

/* Optional: Add a small "nail" effect */
.funny-pin::before {
    content: '';
    position: absolute;
    top: 230%;
    left: 407%;
    width: 2px;
    height: 144px;
    background-color: #333;
    border-radius: 3px;
    transform: translate(-50%, -100%) rotate(64deg);
}

.signature {
    font-family: monospace;
    font-style: italic;
    text-align: end;
    text-align: -webkit-right;
}

span.speechmark {
    color: #FFC107;
    font-size: 34px;
    font-family: math;
    line-height: 0;
}

.bb-dark {
    border-bottom: 1px solid #ff7600;
    margin-bottom: 15px;
    color: #ff7600;
}

header h2 {
	font-weight:100;
	letter-spacing:10px;
}
.bb-light {
	border-bottom: 1px solid #00a6ff;
    margin-bottom: 15px;
}

#selectAll {
    inline-size: 50px;
    overflow-wrap: break-word;
    transition: 0.5s;
}

#selectAll:hover {
	color: #ff3000;
	cursor: pointer;

}

small.low-right {
    float: right;
    font-size: 10px;
}

.avatar-small {
    background-position: center;
    background-size: 40px;
    overflow: hidden;
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 20px;
}

.in-grid {
	width: 60px;
    height: 60px;
	background-size: 60px;
    overflow: hidden;
	cursor: pointer;
	border-radius: 10px;
}
.shared-with {
	
	border: 2px solid #fd7421; /* Border when selected */
}



th {
    line-height: 1.3;
	vertical-align: middle;
}

tr.red > td {
    color: #ff0000;
}

.tox-promotion {
	display:none!important;
}

.master {
	background-color:#cfae7076;
}

.owner {
	background-color: rgba(255, 30, 255, 0.4);
}

.admin {
	background-color: rgba(255, 30, 30, 0.4);
}

.manager {
	background-color: rgba(30, 30, 255, 0.4);
}

.editor {
	background-color: rgba(30, 255, 30, 0.4);
}

.user {
	background-color: rgba(255, 255, 30, 0.4);
	color:#00000076
}

.strip {
    user-select: none; /* Standard syntax */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
	width: 100%;
    display: flex;
    position: absolute; /* Change to absolute to position relative to parent */
    bottom: 0; /* Align to the bottom of the parent */
    left: 0; /* Align to the left edge */
    height: 17px; /* Set height */
    justify-content: center; /* Center text */
    line-height: 1; /* Set line height */
}

.sup-inner input[type="checkbox"] {
    position: absolute; /* Hide default checkbox */
    opacity: 0; /* Make it invisible */
    cursor: pointer; /* Pointer cursor for better UX */
}

.sup-inner:hover {
    background-color: #e0e0e0; /* Change background on hover */
}

.sup-inner input[type="checkbox"]:checked + label {
    background-color: #c0e0c0; /* Background color for checked state */
}

.sup-block {
    display: inline-flex;
    justify-content: center;
}

.sup-inner.selected {
	border: 2px solid #4CAF50; /* Change this color as needed */
}

.sup-inner {
    position: relative;
    padding: 25px 0;
    display: flex;
    border: 1px transparent;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
    min-height: 130px;
    justify-content: flex-end;
    flex-direction: column;
    align-items: center;
    transition: 0.5s;
}

.sup-inner-dark {
	border: 1px #ffffff;
}

.sup-inner-light {
    border: 1px #ffffff;
}

.sup-title {
    display: contents;
    width: 100%;
}

.sub-title {
    font-size: 12px;
    text-align: center;
}

.sup-block:hover {
	color: #606060;
}

.sup-image {
	height: 50px;
	max-width:75px;
}

.stack-lines {
    display: inline-grid;
    width: 100%;
}

small.low-line {
    display: flow;
    font-size: 12px;
    line-height: 1;
	font-weight:600;
}

.btn-link {
    text-decoration: none!important;
    color: darkgray!important;
}

.table {
	    --bs-table-bg: #00000000;
}

li.nav-item.pile {
    display: inline-flex;
    padding: 0 10px;
    margin-left: 15px;
    width: 130px;
    justify-content: center;
    background-color: #0f78b4;
}

.shared {
    display: block;
    position: absolute;
    margin-left: 5px;
}

.b-blue {
	color: #208756;
}

.user-tail {
	float:left;
    width: 57px;
    margin-right: 3px;
    display: inline-flex;
    justify-content: center;
}

.user-image {
    display: flex;
    justify-content: space-evenly;
}

.tail-name {
	text-align:center;
}

.red {
	text-decoration: line-through;
}

i {
    display:block;
	width:20px;
}

div#pagination-controls .btn {
    min-width: 110px;
}

span#page-info {
    border-bottom: 1px solid;
    padding: 10px;
}

.dropdown-menu.show {
    display: block;
    border-left: 2px solid #ff7600;
    border-right: 2px solid #ff7600;
    border-bottom: 2px solid #ff7600;
    border-top-right-radius: 15px;
    box-shadow: 0px 10px 0px orange;
}

.navbar {
	height: 45px;
}

.nav-item:hover {
	border-top-right-radius: 15px!important;
}

.body-overflow {
	overflow-x: hidden!important;
}

@media screen and (max-width: 500px) {
	* {
		font-size:10px;
	}
}

@media screen and (max-width: 768px) {
	* {
		font-size:0.8rem;
	}
	.navbar {
		position: relative !important;
		height: 73px;
	}
	.title-sub {
		position: relative;
		z-index: 10000;
		right: -100px;
		color: #ffffff;
		text-shadow: 0 0 7px #000000;
	}
	
	.body-overflow {
		overflow-y: scroll!important;
	}
	
    .navbar-collapse {
        width: 100%;
        display: inline-flex;
        background-color: #212529;
        border-bottom: 1px solid #ff6700;
        padding: 0 20px;
    }
	
	.funnies {
		display:none;
		position: absolute !important;
		background-color: #fff;
		border: 2px solid #ccc;
		border-radius: 10px;
		padding: 20px;
		box-shadow: 15px 15px 50px rgb(0 0 0 / 37%);
		animation: swing 3s infinite ease-in-out;
		text-align: center;
		left: 10%;
		top: 580px;
		transform-origin: 52% -58px;
	}
	.home-l {
		padding: 75px 0;
	}
	.home-content {
		padding: 2rem;
	}
}

.ball {
    height: 300px;
    width: 300px;
    display: inline-block;
    background-color: #ff0000;
    align-content: center;
    justify-content: center;
    border-radius: 180px;
    color: #ffffff;
}

.justify {
	text-align: justify!important;
}

a.joinus{
    display: flex;
    background-color: #ff7600;
    padding: 15px;
    border-radius: 35px;
    color: #ffffff;
    text-decoration: blink;
    justify-content: center;
	text-align:center;
}

.unselectable {
    user-select: none; /* Standard syntax */
    -webkit-user-select: none; /* Chrome, Safari, Opera */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}


.home-l {
    box-shadow: inset 0px 0px 10px black;
}

.shady {
    -webkit-filter: drop-shadow(5px 5px 5px #222);
	filter: drop-shadow(0px 0px 23px #000);
}

.btn {
    min-width: 100%;
}

.btn {
	border-radius:0px!important;
}

span.half-size {
    width: 100%;
    display: flex;
    font-size: 10px;
    line-height: 0.6;
    padding-top: 9px;
}

.blockbuilder-branding {
	display:none!important;
}

svg.h-5.w-5.flex-shrink-0.mt-1.fill-current {
    width: 25px;
    display: inline-flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    text-decoration: none;
    color: #2cfbb5;
}


.text {
    color:#ffffff;
}


/* Define the swing animation */
@keyframes swingar {
    0% {
        transform: translateX(0); /* Start position */
    }
    25% {
        transform: translateX(-10px); /* Move left */
    }
    50% {
        transform: translateX(10px); /* Move right */
    }
    75% {
        transform: translateX(-10px); /* Move left again */
    }
    100% {
        transform: translateX(0); /* End position */
    }
}

/* Apply the animation to the element */
.swing {
	color:#ffffff;
    margin-left:10px;
	display: inline-block; /* Ensure element is affected by transforms */
    animation: swingar 2s ease-in-out infinite; /* Animation duration and loop */
	font-family: Nunito;
}

@keyframes pulse {
  0% {
    fill: #8B0000; /* Dark Red */
  }
  50% {
    fill: #FF0000; /* Bright Red */
  }
  100% {
    fill: #8B0000; /* Dark Red */
  }
}

@keyframes pulsar {
	0% {
		transform: scale(1);
		background-color: #ff0000;
	}
	45% {
		transform: scale(.95);
	}
	60% {
		transform: scale(1);
	}
	30% {
		transform: scale(1);
		background-color: #ffff00;
		
	}
	85% {
		transform: scale(1.075);
	}
	100% {
		transform: scale(1);
		background-color:#ff0000;
	}
}

.pulse {
  animation: pulse 1.5s infinite;
}

/* Add the pulse animation when the button has the class 'pulse' */
.btn.pulse {
    animation: pulsar 1.5s infinite;
}

/* Optional: Make the icon spin or change color when pulsing */
.btn.pulse i {
    color: #f0ad4e; /* Change to any color you prefer */
}

.badge-orange {
	right: 55px;
	background-color: #ff6700;
}

.badge-purple {
	right: 5px;
	background-color: #ff0071;
}

.badge {
    padding: 2px 5px!important;
    font-size: 10px!important;
    font-weight: 100!important;
    font-family: system-ui;
    display: inline-flex;
    justify-content: center;
    top: 5px;
    position: absolute;   
    border-radius: 0!important;
}

.dot-orange {
	right: 10px;
	background-color: #ff6700;
}

.dot-purple {
	right: 6px;
	background-color: #ff0071;
}

.dot {
    position: absolute;
    display: inline-flex;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    align-content: center;
    flex-direction: column;
}
.disabled {
	pointer-events: none;
	opacity:0.2;
	user-select: none;
}

.col-md-4.col-7.toThink {
    line-height: 0;
    padding: 0;
    margin: 0;
    font-size: 0.8rem;
}

.thumbnail-frame {
    width: 300px; /* Thumbnail size */
    height: 200px;
    border: 1px solid #ccc;
    transform: scale(0.5); /* Scale down */
    transform-origin: top left;
}

.table td .btn-primary, .table td button .btn-danger {
    width: 65px;
}

.quick-edit {
    margin-left: 25px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    float: left;
    width: 90px;
    display: inline-flex;
    text-decoration: none;
    padding: 3px 55px;
    background-color: cadetblue;
    justify-content: center;
    color: #ffffff;
}

label {
    display: inline-block;
    font-size: 12px;
    color: #8b8b8bad;
}

label-light {
	color:#00000076;
}

.dropdown {
    padding: 0 10px;
}

.default td {
    background-color: darkolivegreen!important;
}

span.followup-dark {
    display: inline-flex;
    line-height: 18px;
    padding: 5px;
    position: relative;
    width: 55px;
    top: -45px;
    border-left: solid 1px;
    border-top: solid 1px;
    border-right: solid 1px;
    border-radius: 5px 5px 0px 0px;
    justify-content: center;
    border-color: #495057;
    background-color: #212529;
    right: 15px;
}

span.followup-light {
    display: inline-flex;
    line-height: 18px;
    padding: 5px;
    position: relative;
    width: 55px;
    top: -45px;
    border-left: solid 1px;
    border-top: solid 1px;
    border-right: solid 1px;
    border-radius: 5px 5px 0px 0px;
    justify-content: center;
    border-color: #dee2e6;
    background-color: #ffffff;
    right: 15px;
}

span.req {
	color: #ff0000;
}

.disabled-section {
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

.spinner {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 9999;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

.opai-menu {
	max-width:25px;
	float: inline-end;
}

.data-box .teal {
	 background-color: #3cf8b3;
}

.data-box {
    min-height: 350px;
    width: 100%;
    padding: 30px;
    margin: 0 20px;
	text-align:center;
	color: #ffffff;
}

img.provider-icon-dark {
    max-width: 37px;
    padding: 3px;
    background-color: #000000;
    border-radius: 25px;
    height: 37px;
    box-shadow: 5px 5px 5px #2b8d5f inset;
    border: solid 1px #3b3b3b;
}

img.provider-icon-light {
    max-width: 37px;
    padding: 3px;
    background-color: white;
    border-radius: 25px;
    height: 37px;
    box-shadow: 5px -2px 5px #978b8b inset;
    border: solid 1px #d5d5d5;
}

/* Style for the input container */
.input-container {
  position: relative;
  display: inline-block;
}

/* The triangle indicator */
.indicator {
  position: absolute;
  top: -10px;  /* Position it above the input */
  left: 50%;
  transform: translateX(-50%); /* Center the triangle */
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 10px solid #007bff; /* Color of the triangle */
  opacity: 0;
  transition: opacity 0.2s ease; /* Smooth transition when showing/hiding */
}

.red-point {

}

/* When the input is focused, display the triangle */
input:focus + .red-point {
  opacity: 1;
}



/* When the input is focused, display the triangle */
input:focus + .indicator {
  opacity: 1;
}

input#avatar {
	height:38px;
}

input.form-check-input.contact-checkbox {
    padding: 8px;
    margin-bottom: 3px;
}

.card-sent > .card-header {
	background-color: #1c6c6f;
}

.card-sent > .card-body {
	background-color: cadetblue;
}

.card-received > .card-header {
	background-color: #437d43; /* Darker shade of chartreuse */
}

.card-received > .card-body {
    background-color: #68a32e;
}

.card-rejected > .card-header {
	background-color: #871b1b; /* Darker shade of crimson */
}

.card-rejected > .card-body {
	background-color: crimson;
}

.card-bounced > .card-header {
	background-color: #8b4513; /* Darker shade of chocolate */
}

.card-bounced > .card-body {
	background-color: chocolate;
}

.card-opened > .card-header {
	background-color: #001845; /* Dark navy blue */
}

.card-opened > .card-body {
	background-color: #002766; /* Slightly lighter navy blue */
}

.card-header {
    padding: 10px 0px!important;
    text-align: center;
	font-size:1em;
	font-weight:600;
}

.pile-dark {
	color: #ffff00;
	background-color: #031331;
	font-weight:600;
}

li.pile {
    padding: 8px 25px;
    border-radius: 30px;
}

#triangle-indicator {
	width: 30px;
	height: 50px;
	background-color: #4CAF50; /* Square color */
	position: relative; /* To position the triangle */
	text-align: center;
	line-height: 100px; /* Vertically center text */
	color: white; /* Text color */
	font-size: 16px;
	font-family: Arial, sans-serif;
	z-index:10000;
}

#triangle-indicator:after {
	content: '';
	position: absolute;
	top: -20px; /* Position triangle below the square */
	left: 50%;
	transform: translateX(-50%); /* Center the triangle */
	width: 0;
	height: 0;
	border-left: 20px solid transparent; /* Create left side of triangle */
	border-right: 20px solid transparent; /* Create right side of triangle */
	border-bottom: 20px solid #4CAF50; /* Create the triangle */
	z-index:10000;
}

#dot-indicator {
	width: 10px;
	height: 10px;
	background-color: #ff0000; /* Square color */
	border-radius:10px;
	position: relative; /* To position the triangle */
	text-align: center;
	animation: pulsar 1.5s infinite;
	opacity:0;
	z-index:10000;
}

#dot-indicator:after {
	content: '';
	position: absolute;
	top:-100px;
	z-index:10000;
}

.form-control.tick- {
    min-height: 38px;
    background-color: #212529;
}

/* Set placeholder color and opacity globally */
::placeholder {
    color: #ff7600!important;  /* Placeholder color (adjust as needed) */
    opacity: 0.5!important;  /* Adjust opacity */
}

/* Specific browsers */
::-webkit-input-placeholder {
    color: #ff7600;
    opacity: 0.5;
}
::-moz-placeholder {
    color: #ff7600;
    opacity: 0.5;
}
:-ms-input-placeholder {
    color: #ff7600;
    opacity: 0.5;
}

div#calendar {
    min-height: 370px;
    position: relative;
    overflow: hidden;    
}
/* Pulsing narrow strip effect */
#calendar.gradient-pulse::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50px;  /* Start offscreen on the left */
    width: 50px;  /* Width of the narrow strip */
    height: 100%;
    /* A gradient that fades on both edges with a solid color in the middle */
    background: linear-gradient(90deg, rgba(161,161,161,0), #4b4b4b, rgba(161,161,161,0));
    animation: pulseAnimation 3s ease-in-out infinite;
  }
  
  /* Keyframes for moving the strip from left to right */
  @keyframes pulseAnimation {
    0% {
      left: -50px;
    }
    50% {
      left: 100%;
    }
    100% {
      left: -50px;
    }
  }

  .shadow {
    box-shadow: 0 15px 20px #767676;
  }