/* Hidden placeholder */

select option[disabled]:first-child {
	display: none;
}

table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after {
	content: ' \25B4\25BE';
}

.ss-main {
	position: relative;
	display: inline-block;
	user-select: none;
	color: #666;
	width: 100%;
}

.ss-main .ss-single-selected {
	display: flex;
	cursor: pointer;
	width: 100%;
	height: 37px;
	padding: 6px;
	border: 1px solid #dcdee2;
	border-radius: 4px;
	background-color: #fff;
	outline: 0;
	box-sizing: border-box;
	transition: background-color 0.2s;
}

.ss-main .ss-single-selected.ss-disabled {
	background-color: #dcdee2;
	cursor: not-allowed;
}

.ss-main .ss-single-selected.ss-open-above {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.ss-main .ss-single-selected.ss-open-below {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.ss-main .ss-single-selected .placeholder {
	flex: 1 1 100%;
	text-align: left;
	width: calc(100% - 30px);
	line-height: 1em;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.ss-main .ss-single-selected .placeholder,
.ss-main .ss-single-selected .placeholder * {
	display: flex;
	align-items: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ss-main .ss-single-selected .placeholder * {
	width: auto;
}

.ss-main .ss-single-selected .placeholder .ss-disabled {
	color: #dedede;
}

.ss-main .ss-single-selected .ss-deselect {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 0 1 auto;
	margin: 0 6px;
	font-weight: 700;
}

.ss-main .ss-single-selected .ss-deselect.ss-hide {
	display: none;
}

.ss-main .ss-single-selected .ss-arrow {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 0 1 auto;
	margin: 0 6px;
}

.ss-main .ss-single-selected .ss-arrow span {
	border: solid #666;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	transition: transform 0.2s, margin 0.2s;
}

.ss-main .ss-single-selected .ss-arrow span.arrow-up {
	transform: rotate(-135deg);
	margin: 3px 0 0;
}

.ss-main .ss-single-selected .ss-arrow span.arrow-down {
	transform: rotate(45deg);
	margin: -3px 0 0;
}

.ss-main .ss-multi-selected {
	display: flex;
	flex-direction: row;
	cursor: pointer;
	min-height: 30px;
	width: 100%;
	padding: 0 0 0 3px;
	border: 1px solid #dcdee2;
	border-radius: 4px;
	background-color: #fff;
	outline: 0;
	box-sizing: border-box;
	transition: background-color 0.2s;
}

.ss-main .ss-multi-selected.ss-disabled {
	background-color: #dcdee2;
	cursor: not-allowed;
}

.ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled {
	color: #666;
}

.ss-main .ss-multi-selected.ss-disabled .ss-values .ss-value .ss-value-delete {
	cursor: not-allowed;
}

.ss-main .ss-multi-selected.ss-open-above {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.ss-main .ss-multi-selected.ss-open-below {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.ss-main .ss-multi-selected .ss-values {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	flex: 1 1 100%;
	width: calc(100% - 30px);
	height: 35px;
}

.ss-main .ss-multi-selected .ss-values .ss-disabled {
	display: flex;
	padding: 4px 5px;
	margin: 2px 0;
	line-height: 1em;
	align-items: center;
	width: 100%;
	color: #dedede;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@keyframes scaleIn {
	0% {
		transform: scale(0);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes scaleOut {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	to {
		transform: scale(0);
		opacity: 0;
	}
}

.ss-main .ss-multi-selected .ss-values .ss-value {
	display: flex;
	user-select: none;
	align-items: center;
	font-size: 12px;
	padding: 3px 5px;
	margin: 3px 5px 3px 0;
	color: #fff;
	background-color: #c26c68;
	border-radius: 4px;
	animation-name: scaleIn;
	animation-duration: 0.2s;
	animation-timing-function: ease-out;
	animation-fill-mode: both;
}

.ss-main .ss-multi-selected .ss-values .ss-value.ss-out {
	animation-name: scaleOut;
	animation-duration: 0.2s;
	animation-timing-function: ease-out;
}

.ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete {
	margin: 0 0 0 5px;
	cursor: pointer;
}

.ss-main .ss-multi-selected .ss-add {
	display: flex;
	flex: 0 1 3px;
	margin: 9px 12px 0 5px;
}

.ss-main .ss-multi-selected .ss-add .ss-plus {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #666;
	position: relative;
	height: 10px;
	width: 2px;
	transition: transform 0.2s;
}

.ss-main .ss-multi-selected .ss-add .ss-plus:after {
	background: #666;
	content: '';
	position: absolute;
	height: 2px;
	width: 10px;
	left: -4px;
	top: 4px;
}

.ss-main .ss-multi-selected .ss-add .ss-plus.ss-cross {
	transform: rotate(45deg);
}

.ss-content {
	position: absolute;
	width: 100%;
	margin: -1px 0 0;
	box-sizing: border-box;
	border: 1px solid #dcdee2;
	z-index: 1010;
	background-color: #fff;
	transform-origin: center top;
	transition: transform 0.2s, opacity 0.2s;
	opacity: 0;
	transform: scaleY(0);
}

.ss-content.ss-open {
	display: block;
	opacity: 1;
	transform: scaleY(1);
}

.ss-content .ss-search {
	display: flex;
	flex-direction: row;
	padding: 8px 8px 6px;
}

.ss-content .ss-search.ss-hide,
.ss-content .ss-search.ss-hide input {
	height: 0;
	opacity: 0;
	padding: 0;
	margin: 0;
}

.ss-content .ss-search input {
	display: inline-flex;
	font-size: inherit;
	line-height: inherit;
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	height: 30px;
	padding: 6px 8px;
	margin: 0;
	border: 1px solid #dcdee2;
	border-radius: 4px;
	background-color: #fff;
	outline: 0;
	text-align: left;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-appearance: textfield;
}

.ss-content .ss-search input::placeholder {
	color: #8a8a8a;
	vertical-align: middle;
}

.ss-content .ss-search input:focus {
	box-shadow: 0 0 5px #5897fb;
}

.ss-content .ss-search .ss-addable {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	font-size: 22px;
	font-weight: 700;
	flex: 0 0 30px;
	height: 35px;
	margin: 0 0 0 8px;
	border: 1px solid #dcdee2;
	border-radius: 4px;
	box-sizing: border-box;
}

.ss-content .ss-addable {
	padding-top: 0;
}

.ss-content .ss-list {
	max-height: 200px;
	overflow-x: hidden;
	overflow-y: auto;
	text-align: left;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label {
	padding: 6px 10px;
	font-weight: 700;
}

.ss-content .ss-list .ss-optgroup .ss-option {
	padding: 6px 6px 6px 25px;
}

.ss-content .ss-list .ss-optgroup-label-selectable {
	cursor: pointer;
}

.ss-content .ss-list .ss-optgroup-label-selectable:hover {
	color: #fff;
	background-color: #c78986;
}

.ss-content .ss-list .ss-option {
	padding: 6px 10px;
	cursor: pointer;
	user-select: none;
}

.ss-content .ss-list .ss-option * {
	display: inline-block;
}

.ss-content .ss-list .ss-option.ss-highlighted,
.ss-content .ss-list .ss-option:hover {
	color: #fff;
	background-color: #c78986;
}

.ss-content .ss-list .ss-option.ss-disabled {
	cursor: not-allowed;
	color: #dedede;
	background-color: #fff;
}

.ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected {
	color: #666;
	background-color: rgba(88, 151, 251, 0.1);
}

.ss-content .ss-list .ss-option.ss-hide {
	display: none;
}

.ss-content .ss-list .ss-option .ss-search-highlight {
	background-color: #fffb8c;
}

.ocultar {
	display: none !important;
}

.input-noedit {
	border: none;
	background: none;
	text-align: center;
}

.input-edit {
	text-align: center;
	background: rgb(194 108 104);
	color: white;
	border: 0;
	width: 90px;
}

.btn_pag {
	background: #c6736f;
	border-radius: 30%;
	color: white;
	border-width: inherit;
}

.btn_pag_inactivo {
	background: #ffffff00;
	border: none;
	color: grey;
}

.selectpag {
	margin: 5px;
	border-radius: 10%;
	color: #7e7e7e;
}

.hiddenRow {
	padding: 0 !important;
}

.btn-cp {
	background: none;
	border-width: inherit;
}

.btn-cp:focus {
	outline: none !important;
	outline-width: 0 !important;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

.btn-cp:hover {
	background: rgba(209, 209, 209, 0.089);
}

.pdf-modal {
	height: 600px !important;
	width: 800px !important;
}

.badge-notify {
	background: #000;
	position: relative;
	top: -14px;
	left: -12px;
	width: 15px;
	height: 15px;
	font-size: 10px;
	padding-left: 5px;
	padding-top: 2px;
}

.fotoPreview {
	width: 100%;
	height: 100%;
}

.icon-button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: left;
	/*   width: 50px;
    height: 50px; */
	color: #b29be4;
	/* background: #dddddd;*/
	background: #00000000;
	border: none;
	outline: none;
	border-radius: 50%;
}

.icon-button:hover {
	cursor: pointer;
}

.icon-button:active {
	background: #cccccc;
}

.icon-button__badge {
	position: absolute;
	/*     top: 1px;
    right: 9px; */
	top: -3px;
	right: -3px;
	width: 20px;
	height: 20px;
	background: #ff736d;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

.foto-ajuste {
	/*     margin: auto;
    width: 100%;
    max-height: 414px; */
	width: auto;
	height: 414px;
	margin-left: auto;
	margin-right: auto;
}

.centrar-carousel {
	display: block;
	margin: auto;
}

.fondo-caption {
	background: #000000b3;
}

.icon-button-pedidos {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: left;
	/*     width: 50px;
    height: 50px; */
	color: #6a47b6;
	/* background: #dddddd;*/
	background: #00000000;
	border: none;
	outline: none;
	border-radius: 50%;
	margin-bottom: 2px;
}

.icon-button__badge-mod {
	position: absolute;
	top: -3px;
	right: 32px;
	width: 55px;
	height: 20px;
	background: #eb8d10f0;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 9%;
}

.toggle-cargapedido {
	font-size: 18px;
	margin-top: 10px;
}

/*chat*/

.centrargif {
	display: flex;
	justify-content: center;
}

.chatcontenedor {
	background: #eeeeee;
}

.gifcontenedor {
	background: #f7effe;
}

.chats-panel-contactos {
	overflow: auto;
	height: 414px;
}

.profile-image {
	width: 50px;
	height: 50px;
	border-radius: 40px;
}

.settings-tray {
	background: #eee;
	padding: 10px 15px;
	border-radius: 7px;
}

.settings-tray .no-gutters {
	padding: 0;
}

.settings-tray--right {
	float: right;
}

.settings-tray--right i {
	margin-top: 10px;
	font-size: 25px;
	color: grey;
	margin-left: 14px;
	transition: 0.3s;
}

.settings-tray--right i:hover {
	color: #74b9ff;
	cursor: pointer;
}

.search-box {
	background: #eee;
	padding: 10px 13px;
}

.search-box .input-wrapper {
	background: #fff;
	border-radius: 40px;
}

.search-box .input-wrapper i {
	color: grey;
	margin-left: 7px;
	vertical-align: middle;
}

input {
	border: none;
	border-radius: 5px;
	/*     width: 80%;
 */
}

input::placeholder {
	color: #e3e3e3;
	font-weight: 300;
	margin-left: 20px;
}

input:focus {
	outline: none;
}

.friend-drawer {
	padding: 10px 15px;
	display: flex;
	vertical-align: baseline;
	background: #fff;
	transition: 0.3s ease;
}

.friend-drawer--grey {
	background: #eee;
}

.friend-drawer .text {
	margin-left: 12px;
	width: 70%;
}

.friend-drawer .text h6 {
	margin-top: 6px;
	margin-bottom: 0;
}

.friend-drawer .text p {
	margin: 0;
}

.friend-drawer .time {
	color: grey;
}

.friend-drawer--onhover:hover {
	background: #cf756d;
	cursor: pointer;
}

.friend-drawer--onhover:hover p,
.friend-drawer--onhover:hover h6,
.friend-drawer--onhover:hover .time {
	color: #fff !important;
}

hr {
	margin: -1px auto;
	width: 60%;
}

.chat-bubble {
	padding: 10px 14px;
	width: max-content;
	background: #eee;
	margin: 10px 30px;
	border-radius: 9px;
	position: relative;
	animation: fadeIn 1s ease-in;
	max-width: 400px;
	word-break: break-all;
}

.chat-bubble img {
	width: 100%;
}

.chat-bubble:after {
	content: '';
	position: absolute;
	top: 50%;
	width: 0;
	height: 0;
	border: 20px solid transparent;
	border-bottom: 0;
	margin-top: -10px;
}

.chat-bubble--left:after {
	left: 0;
	border-right-color: #eee;
	border-left: 0;
	margin-left: -20px;
}

.chat-bubble--right:after {
	right: 0;
	border-left-color: #705d5c;
	border-right: 0;
	margin-right: -20px;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.offset-md-9 .chat-bubble {
	background: #705d5c;
	color: #fff;
}

.chat-box-tray {
	background: #eee;
	display: flex;
	align-items: flex-start;
	padding: 10px 15px;
	/*     align-items: center;
 */
	/*  margin-top: 30px; */
	bottom: 0;
	cursor: pointer;
}

.chat-box-tray input {
	margin: 0 10px;
	padding: 6px 2px;
}

.chat-box-tray i {
	color: grey;
	font-size: 30px;
	vertical-align: middle;
}

.chat-box-tray i:last-of-type {
	margin-left: 25px;
}

.chat-panel {
	background-color: #a46e6c;
	overflow: auto;
	overflow-x: hidden;
	height: 456px;
	max-height: 456px;
	font-size: 11px;
}

.bubble-derecha {
	float: right;
	background: #6f5b5a;
	color: white;
}

.bg-notificaciones {
	background: #b97f7d;
	width: 25px;
	height: 23px;
	margin-left: 30px;
	position: relative;
}

.hora-msg {
	font-size: 0.6rem;
	position: relative;
	top: 10px;
	right: 0;
}

.cortar-msg {
	white-space: nowrap;
	width: 250px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.iconaudio {
	cursor: pointer;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
}

.iconvolumen {
	font-size: 36px;
	/* width: 100%; */
	margin: 12px;
	margin-top: 47px;
	height: 100%;
}

.loader {
	border: 4px solid #f3f3f3;
	border-radius: 50%;
	border-top: 4px solid #c26c68;
	width: 45px;
	height: 45px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	position: absolute;
}

/* Safari */

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

	100% {
		-webkit-transform: rotate(360deg);
	}
}

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

	100% {
		transform: rotate(360deg);
	}
}

.btn-circle {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	padding: 0;
	/* border-radius: 50%;*/
}

.btn-circle i {
	position: relative;
	top: -1px;
}

.btn-circle-sm {
	width: 24px;
	height: 24px;
	line-height: 24px;
	font-size: 0.9rem;
}

.btn-circle-lg {
	width: 55px;
	height: 55px;
	line-height: 55px;
	font-size: 1.1rem;
}

.btn-circle-xl {
	width: 70px;
	height: 70px;
	line-height: 70px;
	font-size: 1.3rem;
}

.btn-tfm {
	border-radius: 5px;
	padding-left: 5px;
	padding-right: 5px;
	margin: 0;
	padding-top: 0;
	padding-bottom: 0;
}

.botonera-item {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	bottom: 0;
}

.form-check-tfm {
	display: block;
	min-height: 1.35rem;
	margin-bottom: 0;
}

/*RATING STRARS*/

/*
.rating-css {
    width: 100%;
}

.rating-css div {
    color: #ffe400;

    font-family: sans-serif;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;

}

/*
.rating-css input {
    display: none;
}

.rating-css input+label {
    font-size: 20px;
    text-shadow: 1px 1px 0 #ffe400;
    cursor: pointer;
}

.rating-css input:checked+label~label {
    color: #838383;
}

.rating-css label:active {
    transform: scale(0.8);
    transition: 0.3s ease;
}
*/

/*shows the stars side by side, centered, and in reverse order than the HMTL*/

.rating {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
}

/*hides the radio buttons*/

.rating > input {
	display: none;
}

/*style the empty stars, sets position:relative as base for pseudo-elements*/

.rating > label {
	position: relative;
	width: 1.1em;
	/*font-size: 1.3vw; */
	font-size: 24px;
	color: #ffd700;
	cursor: pointer;
}

/* sets filled star pseudo-elements */

.rating > label::before {
	content: '\2605';
	position: absolute;
	opacity: 0;
}

/*overlays a filled start character to the hovered element and all previous siblings*/

.rating > label:hover:before,
.rating > label:hover ~ label:before {
	opacity: 1 !important;
}

/*overlays a filled start character on the selected element and all previous siblings*/

.rating > input:checked ~ label:before {
	opacity: 1;
}

/*when an element is selected and pointer re-enters the rating container, selected rate and siblings get semi transparent, as reminder of current selection*/

.rating:hover > input:checked ~ label:before {
	opacity: 0.4;
}

/*just aesthetics*/

/* h1, p {
    text-align: center;
}

p {
    font-size: 1.2rem;
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 14px;
    }
    p {
        font-size: 12px;
    }
} */

.alto-card {
	min-height: 124px;
	justify-content: flex-start;
	border-width: thin;
	padding-top: 15px;
	padding-left: 15px;
}

.alto-card input {
	border-color: #c26c68;
	border-radius: 5px;
	padding-top: 0px;
	padding-bottom: 0px;
}

.alto-card select {
	border-color: #c26c68;
	border-radius: 5px;
}

.card-puntitos {
	border: #c26c68;
	border-style: dashed;
}

.nombre-sticky {
	position: sticky;
	top: 0px;
	background: white;
	z-index: 10;
	width: 100%;
}

.card-empleado {
	background-color: #c26c68;
}

.card-pie {
	background: #e4e4e499;
}

.card-text {
	color: #bbadad;
}

.crear-tarea {
	border: #dfdfdf;
	border-style: dashed;
}

.estrellas-desactivadas {
	pointer-events: none;
}

.torta-decoracion {
	/*     width: 70%;
 */
	width: 340px;
	border: 2px solid;
	border-image-source: linear-gradient(0deg, #da817d 0%, #ff5b5c 27%, #c26c68 100%);
	border-image-slice: 1;
	max-width: 100%;
	height: 200px;
}

.torta-contenedor {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.chat-box-tray input {
	width: 100%;
}

/*Pedidos WhatsApps*/

.contenido-pedido {
	width: 95%;
	max-width: 400px;
}

.contenido-pedido .card .card-header {
	background: #ed797387;
}

.contenido-pedido .card .card-body {
	max-height: 301px;
	overflow-y: auto;
	overflow-x: hidden;
}

.card-pedido {
	display: flex;
}

.fotos-pedidos {
	display: flex;
	justify-content: center;
}

.importe-pedidos {
	display: flex;
	justify-content: end;
}

.total-pedido {
	background-color: #c07878;
	color: white;
	display: flex;
	font-size: 16px;
	width: 100%;
	font-family: 'Roboto', sans-serif;
	justify-content: center;
	border-radius: 5px;
	padding: 3px;
	padding-left: 1px;
	padding-right: 1px;
}

.imagebox-grilla {
	font-size: 11px !important;
}

.imagebox {
	background: black;
	padding: 0px;
	position: relative;
	text-align: center;
	width: 100%;
}

.imagebox img {
	opacity: 1;
	transition: 0.5s opacity;
}

.imagebox .imagebox-desc {
	background-color: rgba(0, 0, 0, 0.6);
	bottom: 0px;
	color: white;
	font-size: 1.1em;
	left: 0px;
	padding: 10px 15px;
	position: absolute;
	transition: 0.5s padding;
	text-align: center;
	width: 100%;
}

.imagebox:hover img {
	opacity: 0.7;
}

.imagebox:hover .imagebox-desc {
	padding-bottom: 10%;
}

/*//*/

/*scroll animado*/

@-webkit-keyframes ani-mouse {
	0% {
		opacity: 1;
		top: 29%;
	}

	15% {
		opacity: 1;
		top: 50%;
	}

	50% {
		opacity: 0;
		top: 50%;
	}

	100% {
		opacity: 0;
		top: 29%;
	}
}

@-moz-keyframes ani-mouse {
	0% {
		opacity: 1;
		top: 29%;
	}

	15% {
		opacity: 1;
		top: 50%;
	}

	50% {
		opacity: 0;
		top: 50%;
	}

	100% {
		opacity: 0;
		top: 29%;
	}
}

@keyframes ani-mouse {
	0% {
		opacity: 1;
		top: 29%;
	}

	15% {
		opacity: 1;
		top: 50%;
	}

	50% {
		opacity: 0;
		top: 50%;
	}

	100% {
		opacity: 0;
		top: 29%;
	}
}

.scroll-btn {
	display: block;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	z-index: 3;
}

.scroll-btn > * {
	/*     display: inline-block;
 */
	line-height: 18px;
	font-size: 13px;
	font-weight: normal;
	color: white;
	font-family: 'proxima-nova', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	letter-spacing: 2px;
}

.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *.active {
	color: #ffffff33;
}

.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *:active,
.scroll-btn > *.active {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.scroll-btn .mouse {
	position: relative;
	display: block;
	width: 35px;
	height: 55px;
	margin: 0 auto 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 3px solid #ffffff33;
	border-radius: 23px;
}

.scroll-btn .mouse > * {
	position: absolute;
	display: block;
	top: 29%;
	left: 50%;
	width: 8px;
	height: 8px;
	margin: -4px 0 0 -4px;
	background: #ffffff33;
	border-radius: 50%;
	-webkit-animation: ani-mouse 2.5s linear infinite;
	-moz-animation: ani-mouse 2.5s linear infinite;
	animation: ani-mouse 2.5s linear infinite;
}

::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

/* Track */

::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px #0d1212;
	border-radius: 10px;
}

/* Handle */

::-webkit-scrollbar-thumb {
	background: #c07878;
	border-radius: 10px;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
	background: #6e6e6e;
}

.badge-primary {
	background-color: #c26c68;
}

.btn-200 {
	width: 200px;
}

.btn-100 {
	width: 100px;
}

.search-bill {
	position: relative;
	box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
}

.search-bill input {
	height: 3 0px;
	text-indent: 25px;
	border: 2px solid #c26c68;
}

.search-bill input:focus {
	box-shadow: none;
	border: 2px solid #c26c68;
}

.search-bill .fa-search {
	position: absolute;
	top: 14px;
	left: 16px;
}

.search-bill button {
	position: absolute;
	top: 5px;
	right: 5px;
	height: 50px;
	width: 110px;
	background: #ffe7e5;
}

.details-invoice {
	position: relative;
	box-shadow: 0 0 38px rgba(51, 51, 51, 0.1);
}

.details-invoice input {
	height: 3 0px;
	text-indent: 25px;
	border: 1px solid #afafaf;
	padding: 0 !important;
}

.details-invoice input:focus {
	box-shadow: none;
	border: 1px solid #c26c68;
}

.details-invoice .fa-dollar-sign {
	position: absolute;
	top: 6px;
	left: 16px;
}

.details-invoice-label {
	font-size: 0.755rem;
	text-transform: uppercase;
	color: rgba(35, 28, 99, 0.7);
	font-weight: 700;
}

.card-invoice {
	width: fit-content;
	max-width: 300px;
	margin-right: 10px;
}

.grid-invoice {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}

/* CSS PAGINATION CSS    */

.pagination-btn {
	background-color: transparent;
	color: #9c9c9c;
	border-radius: 3px;
	border: solid 1px;
	border-color: var(--main-bg-border);
	font-size: 15px;
	padding: 2px 10px;
	margin-left: 1px;
	margin-right: 1px;
}

.pagination-btn:hover {
	background-color: #da817d;
	color: #fff;
}

.pag-selected {
	border: solid 1px;
	background-color: var(--main-bg-selected);
	color: #da817d;
}
.pag-selected:hover {
	border: solid 1px;
	background-color: var(--main-bg-selected);
	color: #da817d;
}

.pag-disabled {
	background-color: transparent;
	color: #2e2e2e;
	border: none;
	border-color: var(--main-bg-border);
	cursor: default;
}

.pag-disabled:hover {
	background-color: transparent;
	color: #2e2e2e;
}

.pagination-nav {
	background-color: #606060;
	color: #fff;
	border: none;
	border-radius: 3px;
	margin-left: 5px;
	margin-right: 5px;
}

.pagination-select {
	background-color: transparent;
	color: rgb(160, 160, 160);
	border-radius: 3px;
	border-color: var(--main-bg-border);
	margin-left: 5px;
}
