﻿/*===============================
		sweetalert
===============================*/
.swal2-popup {
	width: 37em !important;
	font-size: 15px !important;
}

.swal2-actions {
	padding: 0px 10px 0px 10px !important;
}

.swal2-container.swal2-center > .swal2-popup {
	grid-column: 2;
	grid-row: 2;
	align-self: center;
	justify-self: center;
	font-size: 16px;
}

.swal2-container.swal2-bottom-end > .swal2-popup, .swal2-container.swal2-bottom-right > .swal2-popup {
	grid-column: 3;
	grid-row: 3;
	align-self: end;
	justify-self: end;
	font-size: 14px;
}

/*===============================
	exibida apenas em Debbug
===============================*/
.IsDebbug {
	display: inline-block !important;
	position: relative;
	border-radius: 5px !important;
	color: white !important;
	--dash-color: red !important;
	--dash-width: 3px !important;
	--dash-gap: 40px !important;
	background: linear-gradient(to right, var(--dash-color) 50%, transparent 50%) 0 0 / calc(var(--dash-width) + var(--dash-gap)) var(--dash-width), linear-gradient(to right, var(--dash-color) 50%, transparent 50%) 0 100% / calc(var(--dash-width) + var(--dash-gap)) var(--dash-width), linear-gradient(to bottom, var(--dash-color) 50%, transparent 50%) 0 0 / var(--dash-width) calc(var(--dash-width) + var(--dash-gap)), linear-gradient(to bottom, var(--dash-color) 50%, transparent 50%) 100% 0 / var(--dash-width) calc(var(--dash-width) + var(--dash-gap));
	background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
	animation: IsDebbugdash 1s linear infinite;
	font-size: 10px;
	background-color: #3b3737;
	width: 100%;
	padding: 2px 5px 2px 5px;
}

	.IsDebbug.CardProduto:hover {
		background: #3b3737;
	}

	.IsDebbug.IsFlex {
		display: flex !important;
	}

	.IsDebbug div {
		padding: 0px 10px 1px 10px;
		margin: 2px;
		text-align: left;
	}

		.IsDebbug div * {
			color: white !important;
		}

			.IsDebbug div*:hover {
				color: white !important;
			}

.IsNotDebbug {
	display: none !important;
}

@keyframes IsDebbugdash {
	0% {
		background-position: 0 0, 0 100%, 0 0, 100% 0;
	}

	100% {
		background-position: calc(var(--dash-width) + var(--dash-gap)) 0, calc(-1 * (var(--dash-width) + var(--dash-gap))) 100%, 0 calc(var(--dash-width) + var(--dash-gap)), 100% calc(-1 * (var(--dash-width) + var(--dash-gap)));
	}
}

/*=============================
        btn com Icone
 ===============================*/
@media (max-width: 768px) {
	.btn-icon {
		width: 100% !important;
		margin: 3px 0px 0px 0px !important;
	}
}

.btn-icon {
	display: inline-block;
	margin: 3px 3px 3px 3px;
	font-weight: 600;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 5px;
	white-space: nowrap;
	padding: 3px 12px;
	font-size: 15px;
	line-height: 1.42857143;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: #189d0e;
	color: #ffffff !important;
	text-decoration: none;
}

	.btn-icon .btn-label {
		position: relative;
		left: -8px;
		display: inline-block;
		padding: 5px 0px 5px 5px;
		color: #ffffff;
	}

		.btn-icon .btn-label i {
			font-size: 16px;
			color: #ffffff;
		}

.btn-icon-left {
	float: left;
}

.btn-icon-right {
	float: right;
}

.btn-icon-cinza {
	background-color: #817a7a !important;
}

.btn-icon-preto {
	background-color: #2d2d2d !important;
}

.btn-icon-vermelho {
	background-color: #d22630 !important;
}

.btn-icon-azul {
	background-color: #135fad !important;
}

/*===============================
    Input com icone a direita
 ===============================*/
.input-group .input-group-icon-right {
	padding: .775rem 0.175rem;
	margin-bottom: 0;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #fff;
	text-align: center;
	background-color: white;
	border-radius: 0px 5px 5px 0px;
	width: 40px;
	border: var(--bs-border-width) solid var(--bs-border-color);
	border-color: var(--bs-border-color);
	cursor: pointer;
}

	.input-group .input-group-icon-right i {
		width: 100%;
		font-size: 18px;
		color: black;
	}


/*===============================
		tooltip
===============================*/
.tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted black;
	pointer-events: none;
}

	.tooltip .tooltiptext {
		visibility: hidden;
		width: 120px;
		background-color: black;
		color: #fff;
		text-align: center;
		border-radius: 6px;
		padding: 5px 0;
		position: absolute;
		z-index: 1;
	}

	.tooltip:hover .tooltiptext {
		visibility: visible;
	}

/*=============================
          scrollUp
 ===============================*/
#scrollUp {
	right: 10px;
	z-index: 33;
	bottom: 10px;
	text-align: center;
	text-decoration: none;
}

	#scrollUp i {
		height: 40px;
		width: 40px;
		line-height: 40px;
		background: transparent;
		background: #939393;
		border-radius: 50px;
		border-color: #222;
		font-size: 25px;
		-webkit-transition: all 500ms ease;
		-moz-transition: all 500ms ease;
		transition: all 500ms ease;
		display: block;
		color: #fff;
		box-shadow: 0px 4px 19px #00000038;
	}

		#scrollUp i:hover {
			background: #D22630;
			color: #fff;
		}

/*===============================
    divLoading GIF
===============================*/
.divLoading {
	display: none;
}

	.divLoading .divLoadingBackGround {
		background: #000;
		width: 100%;
		height: 100%;
		opacity: 0.7;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9998;
	}

	.divLoading .divLoadingContainer {
		z-index: 9999;
		position: relative;
		text-align: center;
		color: white;
	}

		.divLoading .divLoadingContainer .divLoadingImg {
			position: fixed;
			height: 210px;
			/*width: 270px;*/
			left: 0;
			top: -100px;
			right: 0;
			bottom: 0;
			margin: auto;
			z-index: 9999;
		}

		.divLoading .divLoadingContainer .divLoadingMsg {
			position: fixed;
			left: 50%;
			transform: translate(-50%, -50%);
			margin-top: 540px;
			font-size: 20px;
			letter-spacing: -.02rem;
			font-style: italic;
			z-index: 9999;
		}


/*===============================
	Alteração de senha 
===============================*/
.DadosParaSenha {
	margin: 20px 0;
}

	.DadosParaSenha ul {
		list-style: none;
		padding: 0;
		margin: 0;
		text-align: left;
		font-size: 11px;
		letter-spacing: 1px;
	}

		.DadosParaSenha ul li {
			display: flex;
			align-items: center;
			margin: 0 0 5px 0;
		}

			.DadosParaSenha ul li img {
				width: 17px;
				margin: 0 5px 0 0;
			}

/******************************************************************************
			Efeitos em icones 
*****************************************************************************/
.girar {
	animation: spin 2s linear infinite;
	transform-origin: 50% 50%;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.piscando {
	animation: piscar 1s infinite;
}

@keyframes piscar {
	0% {
		opacity: 0;
	}
	/*  50% {
    opacity: 0.5;
  }*/
	100% {
		opacity: 1;
	}
}

