:root {
	--app-default-line: rgb(255 13 0);
	--app-default-color: #237AB3;
	--app-default-color-blue: #96C4E2;
	--app-default-color-blue-2: #A3CFED;
	--app-secondary-color: white;
	--app-secondary-color-hover: #EEE;
	--app-default-background: #EEF0F0;
	--app-default-color-dark: #6C757D;
	--app-default-color-dark-2: #1f1f1f;
	--app-default-color-gray: #949FA0;
	--app-default-color-gray-2: #D3D3D3;
	--app-default-color-highlight: #00a65a;
	--app-default-size-menu: 250px;
	--app-default-size-inside-menu: 210px;
	--app-color-info: #3c556e;
	--app-color-success: #00C45A;
	--app-color-danger: #FF0D00;
	--app-color-warning: #808080;
    --app-font-family: Inter, sans-serif;
    --app-transition: all .2s ease-in-out;

}

body {
	font-family: var(--app-font-family);
	font-size: 1em;
	background: var(--app-default-background);
	color: var(--app-default-color-dark);
}

.vh-100 {
	height: 100vh;
}

/* TOGGLE */
.toggleDiv {
	background: var(--app-secondary-color);
	width: calc(100% - 30px);
	padding: 0px;
	z-index: 1;
	box-shadow: 0 6px 10px -4px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(0,0,0,.125);
}

.toggleDiv:before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 15px 15px 15px;
	border-color: transparent transparent var(--app-secondary-color) transparent;
	position: absolute;
	left: 50%;
	margin-left: -15px;
	top: -10px;
}

.toggleDiv:after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 15px 15px 15px;
	border-color: transparent transparent var(--app-default-color-gray) transparent;
	position: absolute;
	left: 50%;
	margin-left: -15px;
	top: -10px;
}


/* TABELAS */

/*.table {
	margin-top: 15px;
	background: var(--app-secondary-color);
	box-shadow: 0 6px 10px -4px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(0,0,0,.125);
}*/

.title {
	color: var(--app-default-color-dark);
}

.card-rounded {
	border-radius: 0.5em;
	box-shadow: 0 1px 5px rgba(0,0,0,.1);
}

.theadcolor tr td {
	border-bottom: 2px solid var(--app-default-color);
	font-weight: 800;
}

.toggleDiv table {
	font-size: 0.8em;
	margin-top: 0px;
	box-shadow: none;
	margin-bottom: 0;
}

.tdIcon {
	width: 30px;
	text-align: right;
	padding: .75rem 0 !important;
}

/*SIDE BAR */
.navbar {
	padding: 15px 10px;
	background: #fff;
	border: none;
	border-radius: 0;
	margin-bottom: 40px;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.line {
	width: 100%;
	height: 1px;
	border-bottom: 1px dashed #ddd;
	margin: 40px 0;
}

/* ---------------------------------------------------
            SIDEBAR STYLE
----------------------------------------------------- */

.collapse {
	display: block;
}

.logo {
	max-width: 180px;
	margin: 0px auto 0px;
}
@media (max-width: 991px) {
	.logo {
		max-width: 180px;
		margin: 0;
	}
	.collapse {
		display: none;
	}
}

@media (max-width: 575px) {
	.btn-block-xs {
		display:block;
		width: 100%;
		margin-top: 15px;
	}
}

.wrapper {
	display: flex;
	width: 100%;
	align-items: stretch;
}

#sidebar {
	min-width: var(--app-default-size-menu);
	max-width: var(--app-default-size-menu);
	background: var(--app-default-color);
	transition: all 0.3s;
	box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.12), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

#sidebar .sidebar-header {
	padding: 20px 10px;
	background: var(--app-secondary-color);
}

#sidebar .sidebar-header h3 {
	text-transform: uppercase;
	font-size: 1.3em;
	color: var(--app-secondary-color);
	font-weight: 400;
	line-height: 1.5em;
	text-align: center;
	margin: 0;
}

#sidebar ul.components {
	padding: 30px 20px;
}

#sidebar ul.components label {
	display: block;
	font-size: 0.8em;
	line-height: 0.8em;
	margin-bottom: 2px;
	color: var(--app-default-color-blue-2);
	font-weight: 800;
}

#sidebar ul span {
	color: var(--app-secondary-color);
	font-size: 1.1em;
	font-weight: 500;
	line-height: 1.3em;
	display: inline-block;
}

#sidebar ul li {
	margin-bottom: 10px;
}

#sidebar ul li > span#matricula {
	margin-top: 5px;
	margin-bottom: 5px;
}

#sidebar ul li > span#utilizador {
	margin-top: 5px;
	margin-bottom: 5px;
	display: block
}

#sidebar ul li > span#utilizador > span {
	background: var(--app-secondary-color);
	padding: 5px;
	color: var(--app-default-color-dark);
	display: block
}

.carPlateBorder {
	border: 2px solid #000;
	display: inline-block;
}

#sidebar ul span.carPlate {
	border-left: 5px solid #003298;
	border-right: 5px solid #FBBB02;
	background: #FFF;
	padding: 0 5px;
	display: inline-block;
	font-weight: 800;
	color: var(--app-default-color-dark);
}

.content {
	width: 100%;
	padding: 30px;
	min-height: 100vh;
	transition: all 0.3s;
}

.table {
	margin-bottom: 0;
}

.modal-footer {
	justify-content: center;
}

.table td, .table th {
	vertical-align: middle;
	border-top: 0px solid #dee2e6;
	border-bottom: 1px solid #dee2e6;
}

@media (max-width: 767px) {
	#sidebar {
		margin-left: -250px;
		box-shadow: none;
	}
	.content {
		padding: 30px 15px;
	}

	.xs-m {
		margin-top: 0rem !important;
		margin-bottom: 0rem !important;
		padding: 0 30px;
	}
	.xs-m p {
		text-align: left;
	}
}

@media (max-width: 992px) {
	#sidebar {
		margin-left: 0;
		width: 100%;
		box-shadow: none;
		min-width: 100%;
		max-width: 100%;
	}

	.wrapper {
		flex-direction: column;
	}

	#sidebar ul span.carPlateBorder {
		margin-top: 2px;
	}

	#sidebar ul span.carPlate {
		font-size: 0.8em;
		line-height: inherit;
	}

	#sidebar ul li > span {
		padding-top: 5px;
		padding-bottom: 5px;
	}

	#sidebar ul li > span#matricula {
		margin: 0;
		padding: 0;
	}
}

/* CARDS */

.card-header {
	margin: 0px 15px 0 0;
	padding: 0;
	position: relative;
	background: #FFF;
	border-bottom: 0px solid #FFF;
}

.card .card-header-info .card-icon {
	background: var(--app-color-info);
}

.card .card-header-success .card-icon {
	background: var(--app-color-success);
}

.card .card-header-danger .card-icon {
	background: var(--app-color-danger)
}

.card .card-header-warning .card-icon {
	background: var(--app-color-warning)
}

.card-header i {
	color: #fff;
}

.linesBudget {
	border-bottom: 1px solid #dee2e6;
	align-items: center;
}
.alignBudget {
	text-align: right;
}

@media (max-width: 575px) {
	.marginBudget {
		margin-bottom: 15px;
	}
	.alignBudget {
		text-align: left;
	}
}

/* LOADING */
.fe-overlay {
	position: fixed;
	display: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-color: rgba(0,0,0,.8);
}

.overlay > .fe-overlay {
	display: block;
}

.fe-loader {
	position: fixed;
	display: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background-color: rgba(230,230,230,.8);
}

.loading > .fe-loader {
	display: block;
}


.sk-chase {
	width: 40px;
	height: 40px;
	left: 50%;
	margin: -15px 0 0 -15px;
	position: absolute;
	top: 50%;
	animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
	content: '';
	display: block;
	width: 25%;
	height: 25%;
	background-color: var(--app-default-color);
	border-radius: 100%;
	animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
	animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
	animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3) {
	animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
	animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
	animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
	animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
	animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
	animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3):before {
	animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
	animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
	animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
	animation-delay: -0.6s;
}

@keyframes sk-chase {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes sk-chase-dot {
	80%, 100% {
		transform: rotate(360deg);
	}
}

@keyframes sk-chase-dot-before {
	50% {
		transform: scale(0.4);
	}

	100%, 0% {
		transform: scale(1.0);
	}
}

/* TIMELINE */

.timeline-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.timeline-steps .timeline-step {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    /*margin: 1rem;*/
    margin: 0
}

.timeline-steps .timeline-step.complete p {
	color: var(--app-default-color);
}

@media (min-width:768px) {
	.timeline-steps .timeline-step:not(:last-child):after {
		content: "";
		display: block;
		border-top: .25rem dotted var(--app-default-color-gray);
		width: 49%;
		position: absolute;
		left: 50%;
		top: .3125rem
	}
	.timeline-steps .timeline-step:not(:first-child):before {
		content: "";
		display: block;
		border-top: .25rem dotted var(--app-default-color-gray);
		width: 50%;
		position: absolute;
		left: 0;
		/*right: 50%;*/
		top: .3125rem
	}

	.timeline-steps .timeline-step.complete:not(:last-child):after {
		border-top: .25rem dotted var(--app-default-color);
	}

	.timeline-steps .timeline-step.complete:not(:first-child):before {
		border-top: .25rem dotted var(--app-default-color);
	}
}

.timeline-steps .timeline-content {
    width: 100%;
    text-align: center;
}

.timeline-steps .timeline-content .inner-circle {
	border-radius: 1.5rem;
	height: 1rem;
	width: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--app-default-color-gray);
}

.timeline-steps .timeline-content .inner-circle:before {
	content: "";
	background-color: var(--app-default-color-gray-2);
	display: inline-block;
	height: 3rem;
	width: 3rem;
	min-width: 3rem;
	border-radius: 6.25rem;
	opacity: .5
}

.confirm_phone .row > .col-12 span.invalid {
    height: 42px;
    margin-top: 5px;
    color: red;
	font-size: 13px;
    font-weight: 300;
    line-height: 1.38;
    letter-spacing: normal;
}

@media (max-width:767px) {
	.timeline-steps .timeline-content {
		width: 100%;
		text-align: center;
		align-items: center;
		display: flex;
	}

	.col {
		flex-basis: auto;
	}

	.timeline-steps .timeline-content .inner-circle {
		height: 1rem;
		width: 1rem;
		margin-top: 1rem;
		margin-right: 2rem;
		margin-bottom: 1rem;
	}

	.timeline-steps .timeline-step {
		margin-bottom: 0.5rem;
	}
}

.timeline-steps .timeline-step.complete .timeline-content .inner-circle {
	background-color: var(--app-default-color);
}


.timeline-steps .timeline-step.complete .timeline-content .inner-circle:before {
	background-color: var(--app-default-color-blue);
}


/********************************/
/********** SWEETALERT **********/
/********************************/

.swal-overlay {
    background-color: rgba(0, 0, 0, .88);
}

.reserved-area .swal-overlay {
    background-color: rgba(0, 0, 0, .68);
}

.swal-modal {
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    text-rendering: optimizeLegibility;
}

.swal-icon:first-child {
    margin-top: 80px;
}

.swal-title {
    font-size: 1.75rem;
    font-weight: 300;
    color: black;
    text-transform: uppercase;
}

.swal-icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    background-color: #ff0d00;
    box-shadow: none;
    border: 0;
}

.swal-modal.warning .swal-icon {
    background-color: #f8c30d;
}

.swal-icon--success__ring,
.swal-icon.swal-icon--success {
    width: 61px;
    height: 61px;
    background-color: #50a130;
    border-color: #50a130;
    overflow: hidden;
}

.swal-icon .swal-icon--success__hide-corners {
    display: none;
}

.swal-icon--success__line {
    border-radius: 40px;
}

.swal-icon .swal-icon--success__line--tip {
    width: 16px;
    left: 15px;
    top: 36px;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
    -webkit-animation: none;
    animation: none ;
    background-color: #ffffff;
    z-index: 3;
}

.swal-icon .swal-icon--success__line--long {
    background-color: #ffffff;
    z-index: 3;
    width: 29px;
    right: 9px;
    top: 29px;
    -webkit-animation: none;
    animation: none ;
}

.swal-icon--success:after,
.swal-icon--success:before {
    content: none;
}

.swal-icon--warning__body {
    width: 5px;
    height: 30px;
    border-radius: 5px;
}

.swal-icon--warning__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-left: -4px;
    bottom: -11px;
}

.swal-icon--error__line,
.swal-icon--warning .swal-icon--warning__body,
.swal-icon--warning__dot {
    background-color: white;
}

.swal-icon--error__line--left {
    left: 9px;
}

.swal-icon--error__line--right {
    right: 9px;
}

.swal-icon--error__line {
    position: absolute;
    height: 5px;
    width: 43px;
    background-color: white;
    display: block;
    top: 28px;
    border-radius: 2px;
}


.swal-text {
    font-size: 16px;
    font-weight: 300;
    color: #1a1a1a;
    text-align: left;
    padding: 0 65px;
    max-width: 100%;
    margin-block: 20px;
}

.swal-footer {
    margin: 20px 0 80px;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.swal-button-container {
    margin: 0;
}

.swal-button,
.swal-button:not([disabled]):focus,
.swal-button:not([disabled]):hover {
    display: inline-block;
    padding: 13px 44px;
    background-color: rgba(0, 0, 0, 0);
    font-size: 16px;
    font-weight: 600;
    color: white;
    line-height: 1;
    position: relative;
    transition: var(--transition);
    border-radius: 50px;
    font-family: var(--font-family);
}

.swal-button::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 50px;
    background-color: #ff0d00;
    transition: var(--transition);
    will-change: transform;
    z-index: -1;
    overflow: hidden;
}

.swal-modal:has(.swal-icon--success) .swal-button.swal-button--confirm::before {
    background-color: #50a130;
}

.swal-modal.warning .swal-button.swal-button--confirm::before {
    background-color: #f8c30d;
}


.swal-button.swal-button--cancel::before {
    background-color: white;
    border: solid 2px rgba(178, 177, 177, 0.5);
}


.swal-button:not([disabled]):hover::before {
    transform: scale(1.05);
}

.swal-button.swal-button--cancel {
    color: #b2b1b1 !important;
}


.swal-button:focus {
    outline: none;
    box-shadow: none;
}
/* 
.reserved-area .swal-modal.delete-vehicle  .swal-footer {
    margin: 35px 0 0;
}

.swal-modal.delete-vehicle {
    padding-bottom: 150px;
    position: relative;
}

.swal-modal.delete-vehicle .swal-content > div{
    position: relative;
    display: block;
}

.swal-modal.delete-vehicle .swal-content p:last-of-type {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.38;
    letter-spacing: normal;
    text-align: center;
    color: #a1a1a1;
    position: fixed;
    bottom: 80px;
    padding: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    display: block;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    text-rendering: optimizeLegibility;
    max-width: 510px;
} */

.swal-modal.delete-vehicle .swal-button-container:has(.swal-button--cancel) {
    width: 100%;
    max-width: 116px;
}

.swal-modal.delete-vehicle .swal-button--cancel {
    padding: 13px 20px;
    width: 100%;
}

.swal-modal .swal-content p a:hover {
    color: var(--primary);
}

.reserved-area .swal-modal {
    max-width: 660px;
}

.reserved-area .swal-modal.points {
    max-width: 810px;
    padding: 0 100px;
}

.reserved-area .swal-modal.points .swal-content {
    max-width: 100%;
}

.reserved-area .swal-modal.points .swal-footer {
    flex-direction: column-reverse;
    align-items: center;
}



.reserved-area .swal-modal.points .swal-button-container{
    width: 100%;
}

.reserved-area .swal-modal.points .swal-button {
    width: 100%;
    padding: 13px 19px;
}

.reserved-area .swal-content {
    max-width: 500px;
    margin: 35px auto;
}

.reserved-area .swal-content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.68;
    letter-spacing: normal;
    text-align: center;
    color: #1a1a1a;
}

.reserved-area .swal-footer {
    margin: 35px 0 80px;
}


.reserved-area .cky-btn-revisit-wrapper {
    z-index: 12 !important;
}


@media (max-width: 769px) {
    .reserved-area .swal-modal {
        max-width: 90vw;
    }

    .swal-icon:first-child {
        margin-top: 40px;
    }
    
    .reserved-area .swal-content p {
        font-size: 14px;
        line-height: 1.71;
    }

    .reserved-area .swal-content {
        margin: 20px auto;
    }

    .swal-modal.delete-vehicle .swal-content p:last-of-type {
        bottom: 35px;
        left: 30px;
        right: 30px;
    }
    .swal-modal.delete-vehicle .swal-button--cancel,
    .swal-button, 
    .swal-button:not([disabled]):focus, 
    .swal-button:not([disabled]):hover {
        font-size: 14px;
        padding: 10px 20px;
        width: 100%;
    }

    .swal-modal.delete-vehicle .swal-button-container {
        width: 100%;
        max-width: 116px;
    }

    .reserved-area .swal-modal.delete-vehicle .swal-footer {
        margin: 20px 0 40px;
    }
    
    .cky-revisit-bottom-left {
        bottom: 73px !important;
    }

    .cky-btn-revisit-wrapper {
        width: 41px !important;
        height: 41px !important;
    }


    .cky-btn-revisit-wrapper .cky-btn-revisit img {
        height: 24px !important;
        width: 24px !important;
    }
}