

.wizard-content-left {
	background-blend-mode: darken;
	background-color: rgba(0, 0, 0, 0.45);
	background-image: url("https://i.ibb.co/X292hJF/form-wizard-bg-2.jpg");
	background-position: center center;
	background-size: cover;
	height: 100vh;
	padding: 30px;
}
.wizard-content-left h1 {
	color: #ffffff;
	font-size: 38px;
	font-weight: 600;
	padding: 12px 20px;
	text-align: center;
}
.log-form {
    padding-bottom: 0px;
}

.form-wizard {
	color: #888888;
	padding:0px;
}
.form-wizard .wizard-form-radio {
	display: inline-block;
	margin-left: 5px;
	position: relative;
}
.login-header{
    margin-bottom: 20px;
    padding-left: 20px;
}
.form-wizard .wizard-form-radio input[type="radio"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	background-color: #dddddd;
	height: 25px;
	width: 25px;
	display: inline-block;
	vertical-align: middle;
	border-radius: 50%;
	position: relative;
	cursor: pointer;
}
.form-wizard .wizard-form-radio input[type="radio"]:focus {
  	outline: 0;
}
.form-wizard .wizard-form-radio input[type="radio"]:checked {
  	background-color: #fb1647;
}
.form-wizard .wizard-form-radio input[type="radio"]:checked::before {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	display: inline-block;
	background-color: #ffffff;
	border-radius: 50%;
	left: 1px;
	right: 0;
	margin: 0 auto;
	top: 8px;
}
.form-wizard .wizard-form-radio input[type="radio"]:checked::after {
	content: "";
	display: inline-block;
	webkit-animation: click-radio-wave 0.65s;
	-moz-animation: click-radio-wave 0.65s;
	animation: click-radio-wave 0.65s;
	background: #000000;
	content: '';
	display: block;
	position: relative;
	z-index: 100;
	border-radius: 50%;
}
.form-wizard .wizard-form-radio input[type="radio"] ~ label {
	padding-left: 10px;
	cursor: pointer;
}
.form-wizard .form-wizard-header {
  	text-align: center;
}
.form-wizard .form-wizard-next-btn, .form-wizard .form-wizard-previous-btn, .form-wizard .form-wizard-submit {
	background-color: #0A1849;
	color: #ffffff;
	display: inline-block;
	min-width: 100px;
	min-width: 120px;
	padding: 10px;
	text-align: center;
}
.form-wizard .form-wizard-next-btn:hover, .form-wizard .form-wizard-next-btn:focus, .form-wizard .form-wizard-previous-btn:hover, .form-wizard .form-wizard-previous-btn:focus, .form-wizard .form-wizard-submit:hover, .form-wizard .form-wizard-submit:focus {
	color: #ffffff;
	opacity: 0.6;
	text-decoration: none;
}
.form-wizard .wizard-fieldset {
  	display: none;
}
.form-wizard .wizard-fieldset.show {
  	display: block;
}
.form-wizard .wizard-form-error {
	display: none;
	background-color: #d70b0b;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
}

.form-wizard .form-wizard-previous-btn {
    background-color: #E9EEFF;
    margin-right: 20px;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    color: #091648 !important;
}
.register_list  {
    margin: 0px;
    padding: 0px;
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    margin-bottom:0px;
    justify-content: center;
}
.register_list li {
    float: none;
    display: block;
    margin-right: 20px;
    width: 180px;
}

.register_list li.active a {
    background: #0A1849;
}
.register_list li a {
    background: #837f7f;
    color: #fff;
    padding: 8px 20px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    display: block;
}
.form-wizard .form-control:focus {
  	box-shadow: none;
}
.form-wizard .form-group {
  	position: relative;
}
.tooltip{
    background: transparent !important;
}
.tooltip-inner {
    background:transparent !important;
    background-color: transparent; !important;
    color: #0A1849 !important;
    border: 1px solid #yourBorderColor; /* Optional: add a border */
}

.tooltip-arrow {
    border-top-color: transparent; !important; /* Adjust this depending on the position */
    border-right-color: transparent !important; /* Adjust this depending on the position */
    border-bottom-color: transparent !important; /* Adjust this depending on the position */
    border-left-color: transparent !important; /* Adjust this depending on the position */
}

.form-wizard .form-wizard-steps {
    margin: 30px auto;
    text-align: center;
    display: flex;
    justify-content: center;
}
.form-wizard .form-wizard-steps li {
    width: 33.33%;
    float: left;
    position: relative;
/*    color: #fff;*/
    font-weight: 600;
}
.form-wizard .form-wizard-steps li::after {
	background-color: #f3f3f3;
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	border-bottom: 1px solid #dddddd;
	border-top: 1px solid #dddddd;
}
.form-wizard .form-wizard-steps li span {
	background-color: #dddddd;
	border-radius: 50%;
	display: inline-block;
	height: 40px;
	line-height: 40px;
	position: relative;
	text-align: center;
	width: 40px;
	z-index: 1;
}
.form-wizard .form-wizard-steps li:last-child::after {
  	width: 50%;
}
.form-wizard .form-wizard-steps li.active span, .form-wizard .form-wizard-steps li.activated span {
	background-color: #0A1849;
	color: #ffffff;
}
.form-wizard .form-wizard-steps li.active::after, .form-wizard .form-wizard-steps li.activated::after {
	background-color: #0A1849;
	left: 50%;
	width: 50%;
	border-color: #0A1849;
}
.form-wizard .form-wizard-steps li.activated::after {
	width: 100%;
	border-color: #0A1849;
}
.form-wizard .form-wizard-steps li:last-child::after {
  	left: 0;
}
.form-wizard .wizard-password-eye {
	position: absolute;
	right: 32px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}
@keyframes click-radio-wave {
	0% {
		width: 25px;
		height: 25px;
		opacity: 0.35;
		position: relative;
	}
	100% {
		width: 60px;
		height: 60px;
		margin-left: -15px;
		margin-top: -15px;
		opacity: 0.0;
	}
}
@media screen and (max-width: 767px) {
	.wizard-content-left {
		height: auto;
	}
}

.wizard-fieldset h5{
   font-size: 18px;
   font-weight: 900;
}



.form-wizard-header{
    background: #212d57;
    padding: 15px 0px;
}

.form-wizard .form-wizard-steps li.active::after, .form-wizard .form-wizard-steps li.activated::after{
	display: none;
}

.form-wizard .form-wizard-steps li::after{
	display: none;
}

.form-wizard .form-wizard-steps li.active span, .form-wizard .form-wizard-steps li.activated span {
    background-color: #ffffff;
    color: #202c56;
}

.form-wizard .form-wizard-steps li span{
	height: 30px;
    line-height: 30px;
    width: 30px;
    font-weight: 700;
    margin-right: 10px;
}

.form-wizard .form-wizard-steps li.activated,
.form-wizard .form-wizard-steps li.active{
	color: #fff;
}

.dashboard_sec section.form-wizard-body {
    width: 100%;
    padding: 30px 0px;
    background: #fff;
/*    min-height: calc(100vh - 200px);*/
    padding-bottom: 50px;
    overflow: auto;
/*    max-height: calc(100vh - 200px);*/
}

.dashboard_sec section.form-wizard-body::-webkit-scrollbar {
  	width: 2px;
}
.dashboard_sec section.form-wizard-body::-webkit-scrollbar-track {
  	background: #f1f1f1; 
}
.dashboard_sec section.form-wizard-body::-webkit-scrollbar-thumb {
  	background: #888; 
}
.dashboard_sec section.form-wizard-body::-webkit-scrollbar-thumb:hover {
  	background: #555; 
}

.form-wizard-body label{
	font-size: 14px;
	margin-bottom: 5px;
	display: block;
}

.form-wizard form.request__form{
	padding: 0px;
	box-shadow: none;
}

.wizard-fieldset h5 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-select{
	--bs-form-select-bg-img: none !important;
}

.request__form .form-grp.select-grp select{
	color: #262f58 !important;
	font-weight: 700 !important;
}

.request__form .form-grp {
    margin-bottom: 30px ;
}

/*.input-group-text{
	padding: 17px 16px !important;
}*/

.bottomFixData {
    position: fixed !important;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px 0px;
    background: #fff;
    border-top: 1px solid #202c56;
    box-shadow: 0px -2px 0px #00000026;
}

.pull-right{
	float: right !important;
}

.bottomFixData .form-wizard-next-btn {
    background-color: #0A1849;
    color: #ffffff;
    display: inline-block;
    min-width: 100px;
    min-width: 120px;
    padding: 8px 15px;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
    font-weight: 600;
}

.your_packages{
	width: 100%;
	background: none;
	padding: 30px 0px;
}

.card-header{
	padding: 17px 25px;
}

.card-header h3{
	text-align: left;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.card-body{
	padding: 30px 25px;
}

.card-header h3 a {
    font-size: 15px;
    color: #f00;
}

.package_rows {
    width: 100%;
    padding: 0 40px;
    position: relative;
}

.package_rows1 {
    width: 100%;
    padding: 0 40px;
    position: relative;
}

.package_rows .colPad{
	padding-right: 3px;
    padding-left: 3px;
}

.package_rows .row{
	margin: 0px -3px;
}

.package_rows a.deleteRow{
	position: absolute;
    right: 0px;
    top: 40px;
    font-size: 18px;
    color: #f00;
}

.package_rows1 .colPad{
	padding-right: 3px;
    padding-left: 3px;
}

.package_rows1 .row{
	margin: 0px -3px;
}

.package_rows1 a.deleteRow{
	position: absolute;
    right: 0px;
    top: 40px;
    font-size: 18px;
    color: #f00;
}

.mycheckbox {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: absolute;
    left: 0;
    top: 43px;
}
.mycheckbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border-radius: 50px;
}
.mycheckbox:hover input ~ .checkmark {
  	background-color: #ccc;
}
.mycheckbox input:checked ~ .checkmark {
    background-color: #198754;
}
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.mycheckbox input:checked ~ .checkmark:after {
  	display: block;
}

.mycheckbox .checkmark:after {
    left: 10px;
    top: 5px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0px 1px 1px 0px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.addmoreBtn{
	width: 100%;
	background: none;
	padding: 15px 0px 0px;
}

.addmoreBtn a.addBtnData{
    background-color: #0A1849;
    color: #ffffff;
    display: inline-block;
    padding: 12px 25px;
    text-align: center;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 500;
}

.addmoreBtn a.addInsidePackage{
    background-color: #0A1849;
    color: #ffffff;
    display: inline-block;
    padding: 12px 25px;
    text-align: center;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 500;
}

.addmoreBtn a.addBtnData i{
	font-size: 14px;
    margin-right: 5px;
}

.addmoreBtn a.addInsidePackage i{
	font-size: 14px;
    margin-right: 5px;
}

main.morePackages_area{
	min-height: auto;
}

.package_rows:last-child .form-grp{
	margin-bottom: 0px !important;
}

.package_rows1:last-child .form-grp{
	margin-bottom: 0px !important;
}

.no-data-message{
	text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #091648;
}

.transport_sec{
	width: 100%;
    background: none;
    padding: 30px 0px;
}

.transport_table td strong {
    display: block;
    font-size: 20px;
}

.transport_table td {
    vertical-align: middle;
    line-height: 25px;
    padding: 20px 25px;
}

.transport_table th {
    vertical-align: middle;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 15px;
}

.transport_table tbody tr:nth-of-type(odd)>* {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg-type: rgb(249 249 249);
    border: none !important;
}

.transport_table .table>thead, .transport_table .table>tbody{
	border: none;
}

.transport_table tbody, .transport_table td, .transport_table tfoot, .transport_table th, .transport_table thead, .transport_table tr{
	border-style: hidden;
}

.chooseBtns{
	border: 1px solid #cdcdcd;
    padding: 3px 19px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    margin: auto;
}

.transport_table .table td:last-child,
.transport_table .table th:last-child{
	text-align: center;
}

.circleImg{
	padding: 0;
    background: transparent;
    outline: none;
    box-shadow: none;
    border: none;
}

.transport_table tbody tr.changeBG td{
	--bs-table-bg-type: rgb(87 221 18 / 12%) !important;
}

.changeBG .chooseBtns{
	display: none !important;
}.changeBG .circleImg{
	display: block !important;
}

.transport_table td button{
	margin: auto;
}

.bottomFixData a.disabled{
	opacity: 0.4;
	pointer-events: none;
}

.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: #333;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-align: center;
}




.loader-container {
	text-align: center;
}

.circle-container {
    position: relative;
    height: auto;
    display: flex;
    justify-content: space-between;
    max-width: 245px;
    margin: auto;
}

.circle {
/*      position: absolute;*/
	width: 16px;
	height: 16px;
	background: rgb(32 44 86);
	border-radius: 50%;
	animation: propogate 1.5s infinite ease-in-out;
}

.circle:nth-child(1) { animation-delay: 0s; }
.circle:nth-child(2) { animation-delay: 0.2s; }
.circle:nth-child(3) { animation-delay: 0.4s; }
.circle:nth-child(4) { animation-delay: 0.6s; }
.circle:nth-child(5) { animation-delay: 0.8s; }
.circle:nth-child(6) { animation-delay: 1s; }

@keyframes propogate {
	0%, 80%, 100% {
		transform: scale(0);
	}
	40% {
		transform: scale(1);
	}
}

.loader-text {
	margin-top: 12px;
	font-size: 1.2em;
	color: #444;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
  	-moz-appearance: textfield;
}

#message {
  	display: none;
  	color: red;
}

.card-footer p {
    text-align: left;
    margin-bottom: 4px;
    font-weight: 500;
    color: #f00;
}

.card-footer p img {
    width: 21px;
    margin-right: 5px;
}

.card-footer h3{
	margin-bottom: 0;
    line-height: normal;
    font-size: 21px;
    text-align: left;
}

.iti{
	width: 100%;
}

textarea::placeholder{
	font-size: 16px !important;
}

.invalid-input {
    border-color: red !important;
}

.invalid-input::placeholder{
	color: #f00 !important;
}

.wizard-fieldset p {
    line-height: normal;
    font-size: 17px;
    margin-bottom: 10px;
    color: #202c56;
}

.wizard-fieldset p a{
	text-decoration: underline;
    color: #202c56;
}

.mt30{
	margin-top: 30px;
}

textarea{
	resize: none !important;
}

.package_content .mycheckbox {
    position: relative;
    top: 0;
    left: 0;
    text-transform: capitalize;
    color: #202c56;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.package_content .mycheckbox a{
	text-decoration: underline;
	color: #000;
}

.package_content .mycheckbox .checkmark{
	border-radius: 3px;
}

.bottom_sec{
	padding: 40px 0px 0px;
    border-top: 1px solid #e1e1e1;
    margin-top: 50px;
}

.bottom_sec p{
	margin-bottom: 30px;
}

.modal-dialog {
	max-width: 1025px;
}

.modal-backdrop.show {
    opacity: 0.95;
    background-color: #fff;
}

#seeExample .modal-content{
	border-radius: 5px;
}

#seeExample .modal-body{
	padding: 0px;
}

.modal_inside{
	width: 100%;
	padding: 25px 30px;
}

.modal_inside h4 {
    margin-bottom: 25px;
    text-align: left;
    font-weight: 600;
    font-size: 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal_inside h4 img{
	cursor: pointer;
}

.modal_inside .table td, .modal_inside .table th {
    padding: 10px 20px;
}

.modal_inside .table td span{
	display: flex;
	align-items: center;
}

.modal_inside .table td span img.imgElectric {
    width: 12px;
    margin-right: 10px;
}

.modal_inside .table td span img.imgMobile {
    width: 18px;
    margin-right: 7px;
}

.insurance_value{
	width: 100%;
	background: none;
	padding: 20px 0px;
}

.insurance_value h6 {
    color: #262f58 !important;
    text-align: left;
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.insurance_value h6 strong {
    font-size: 23px;
    margin-left: 10px;
    font-weight: 600;
}

.insurance_value p{
	font-style: italic;
}

.summary_card{
	width: 100%;
	background: none;
	padding: 0px;
	position: relative;
}

.summary_tracking{
	width: 100%;
	background-color: #fff;
	padding: 20px 0px;
}

.shipment_list {
    position: relative;
    margin-top: 0;
    padding-bottom: 0;
    padding-left: 0px;
    margin-bottom: 0;
}

.shipment_list:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 70%;
    left: 21px;
    border-left: 3px dashed #0A1849;
    z-index: 9;
    top: 0;
}

.shipment_list li {
    display: flex;
    z-index: 9;
    position: relative;
    margin-bottom: 0;
}

.shipment_list li:first-child img{
	height: 45px;
	margin-top: -10px;
}

.shipment_list li:last-child{
	margin-top: 10px;
}

.shipment_list li:last-child img{
	margin-bottom: 30px;
}

.pickup-content {
    margin-left: 10px;
    margin-bottom: 10px;
}

.pickup-content h4 {
    color: #0A1849;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pickupAdress {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px !important;
}

.pickupAdress {
    font-size: 16px;
}

.pickup-content p {
    margin: 0;
    color: #0A1849;
    font-size: 16px;
}

.pickup-content p span {
    color: #343434;
    font-weight: 600;
    /* font-size: 16px; */
    margin-left: 5px;
}

.current_status{
    animation: shadow-pulse 1s infinite;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px #E1E5F4;
    }
    100% {
        box-shadow: 0 0 0 6px #E1E5F4;
    }
}


.mt10{
	margin-top: 10px;
}

.table>:not(caption)>*>*{
	border-bottom-width: 0px;
}

.product_table {
    width: 100%;
    background: none;
    padding: 0px;
}

.product_table td {
    font-weight: 600;
    font-size: 17px;
    text-align: left;
    color: #0A1849;
    width: 20%;
    padding: 10px 0px;
    border-bottom: 1px solid #0000002b;
}

.product_table tr:last-child td{
    border-bottom: 0px !important;
}

.product_table td:first-child{
	width: 35% !important;
}

.product_table td:last-child{
	width: 30% !important;
}

.product_table .table{
	margin-bottom: 0px;
}

.text-right{
	text-align: right !important;
}

.text-center{
	text-align: center !important;
}

.summary_tracking .card{
	height: 100%;
}

.summary_detailing{
	width: 100%;
	background: none;
	padding: 20px 0px;
}

.summary_detailing .form-group h6{
	text-align: justify;
    color: #000;
    font-size: 16px;
}

.padr30{
	padding-right: 30px;
}

.padl30{
	padding-left: 30px;
}

.total_value ul{
	margin: 0px;
	padding: 0px;
	list-style: none;
	text-align: left;
}

.total_value li {
    float: none;
    display: block;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    padding: 5px 0px;
}

.total_value li:last-child{
	border-top: 1px solid #0000002d;
    margin-top: 15px;
}

.total_value li strong span{
	display: block;
    font-weight: 400;
    font-size: 17px;
    color: #a7a7a7;
}

.delivery_confirm {
    width: 100%;
    background: none;
    padding: 20px 15px;
}

.delivery_confirm .card-header p{
	margin-top: 10px;
    margin-bottom: 0;
    font-size: 16px;
    text-align: left;
}

.delivery_confirm .addmoreBtn{
	padding-top: 27px;
}


.delivery_confirm a.addBtnEmail {
    background-color: #0A1849;
    color: #ffffff;
    display: inline-block;
    padding: 12px 25px;
    text-align: center;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 500;
}

main.moreEmailInsert {
    width: 100%;
    background: none;
    padding: 0px;
    position: relative;
    min-height: auto;
}

.request__form .form-grp.select-grp select {
    color: #262f58 !important;
    font-weight: 700 !important;
}

.emailInsert_row .form-grp.select-grp select {
    background-color: transparent;
    border: 1px solid var(--tg-border-6);
    color: var(--tg-body-color);
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    border-radius: 4px;
    outline: none;
    padding: 13px 50px 13px 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    line-height: 1.4;
    height: 50px;
    cursor: pointer;
}
.request__form .form-grp input, .request__form .form-grp select {
    font-weight: 700;
    font-size: 15px !important;
    line-height: normal;
    color: #262f58;
}
.form-select {
    --bs-form-select-bg-img: none !important;
}
.form-select {
    --bs-form-select-bg-img: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e);
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.emailInsert_row a.addBtnEmail {
    background-color: #dc3545;
}

.form-wizard-submit{
	padding: 5px 10px !important;
    border-radius: 5px;
}

.swal2-popup .swal2-styled{
	background-color: #0A1849 !important;
}