.link-color, .link-color:hover, .link-color:visited {
	color: #0a84ae;
}

.support-icon {
	position: fixed;
	right: 1%;
	bottom: 3%;
	display: flex;
	gap: 1.2rem;
	align-items: flex-end;
	z-index: 5;
}
.need {
    z-index: 10;
    transition: all 3s ease-in-out;
    cursor: pointer;
    background-color: #fffdfd;
    border-radius: .625rem;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .4);
    padding: 10px;
}

.tool-tip {
	position: absolute;
	width: 1rem;
	height: 1rem;
	right: 6rem;
	bottom: 1.5rem;
	background-color: inherit;
	transform: translateX(-6px) rotate(45deg);
	pointer-events: none;
	box-shadow: 2px -2px 2px 0 rgba(0, 0, 0, .2);
}

.hello-there {
	font-family: Trebuchet MS, Helvetica, sans-serif;
	color: #333333;
	font-size: 1.7rem;
}

.helpline {
	font-family: Poppins, sans-serif;
	font-size: 1.4rem;
}

.service-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10%;
	height: 58px;
	width: 58px;
	background-color: #1e2c38 !important;
	box-shadow: 4px 3px 6px 0px #686868d9;
	cursor: pointer;
	border: 1px solid #848484;
}


.support-form-container {
	background: #fafbfb;
    width: 30rem;
	height: 45rem;
    border-radius: 5px;
    box-shadow: 0 1px 2px 0;
    display: none;
    font-family: 'Poppins';
    bottom: 3%;
    position: fixed;
    z-index: 12;
    right: 8rem;
}

.widget-header {
	background-color: #1e2c38;
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: center;
	justify-content: space-around;
}

.widget-header-text {
	color: #fff;
    padding: 1rem;
}

.exit3 {
	color: white;
	font-size: 2.5rem !important;
    margin-top: 2px;
	cursor: pointer;
}

.support-form {
	padding: 0rem 1.6rem 1.6rem 1.6rem;
}

.field-group {
    padding: 1.5rem 0 0 0;
}

.field-group-label {
	color: #5b626f;
    display: block;
    font-size: 600 1.2rem Poppins;
}

.what_you_looking_for, .field-label-textarea, .field-label-text, .support-form input[type="email"], .support-form select, .support-form textarea {
	border: 1px solid #dfe1e6;
	border-radius: 5px;
    font: 400 1.3rem/2rem Poppins !important;
    padding: 9px 7px;
	width: 100%;
	color: #333333 !important;
	box-shadow: inset 0px 1px 3px 0px #d6d6d6 !important;
    background: #fff !important;
}

/* .what_you_looking_for option {
	padding: 1px 2px;
} */

.submit_button {
	position: absolute;
    bottom: 1.2rem;
}

.submit_button button {
    color: #fff;
    border-radius: 3px;
    padding: 0 8px;
    min-height: 3rem;
}

[type=button], [type=reset], [type=submit], button {
	-webkit-appearance: none;
}

.loading-inner, .failed {
	display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 1.5rem;
    padding: 2rem;
    gap: 3rem;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0px 0px 5px #ebebeb;
}


.cont-loader {
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.loading-icon {
	width: 5rem;
    height: 5rem;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: contact-loader 1s linear infinite;
}

@keyframes contact-loader {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@media screen and (max-width: 769px) {
	.support-icon, .support-form-container {
		display: none !important;
	}
}