/**/


/*
Primary color: #011b36;
secondary color:#0166d2;
*/


/*fonts*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;0,900;1,400;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playball&display=swap');

/*
font-family: 'Poppins', sans-serif;
font-family: 'Source Sans Pro', sans-serif;
font-family: 'Playball', cursive;
*/

:root {
	--primary-font: 'Source Sans Pro', sans-serif;
	--second-font: 'Poppins', sans-serif;
	--optional-font: 'Playball', cursive;
	--primary-color: #3a8bfb;
	--secondary-color: rgba(30, 60, 114, 1);
	--grad-1: linear-gradient(160deg, rgba(42, 82, 152, 1) 0%, rgba(30, 60, 114, 1) 100%);
	--grad-1-6: linear-gradient(160deg, rgba(42, 82, 152, 1) 0%, rgba(30, 60, 114, 0.6) 100%);
}

html {
	font-family: 'Source Sans Pro', sans-serif;
}

body {
	margin: auto;
	padding: 0;
	position: relative;
	font-family: 'Source Sans Pro', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--second-font);
}

p {
	margin: auto;
}

button {
	font-family: 'Source Sans Pro', sans-serif;
}

img {
	max-width: 100%;
}

.form-control {
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto;
}

/*--------------------------------------
				material Icon
--------------------------------------*/

.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	/* Preferred icon size */
	display: inline-block;
	line-height: 28px !important;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;
	/* Support for IE. */
	font-feature-settings: 'liga';
}

.material-symbols-outlined {
	vertical-align: middle;
	font-size: inherit;
}


/* Rules for sizing the icon. */

.material-icons.md-18 {
	font-size: 18px;
}

.material-icons.md-24 {
	font-size: 24px;
}

.material-icons.md-36 {
	font-size: 36px;
}

.material-icons.md-48 {
	font-size: 48px;
}


/* Rules for using icons as black on a light background. */

.material-icons.md-dark {
	color: rgba(0, 0, 0, 0.54);
}

.material-icons.md-dark.md-inactive {
	color: rgba(0, 0, 0, 0.26);
}


/* Rules for using icons as white on a dark background. */

.material-icons.md-light {
	color: rgba(255, 255, 255, 1);
}

.material-icons.md-light.md-inactive {
	color: rgba(255, 255, 255, 0.3);
}

.top-line {
	margin-bottom: 30px;
	position: relative;
}

.page-header {
	display: block !important;
}

/*--------------------------------------
				Slick Slider
--------------------------------------*/


/*slick slider*/

.slick-nav {
	--active: #4a4a4a;
	--border: rgba(36, 36, 36, 0.12);
	width: 44px;
	height: 44px;
	position: absolute;
	cursor: pointer;
	top: calc(50% - 44px);
}

.slick-nav.prev-arrow {
	left: 3%;
	transform: scaleX(-1);
	z-index: 999;
}

.slick-nav.next-arrow {
	left: auto;
	right: 3%;
}

.slick-nav i {
	display: block;
	position: absolute;
	margin: -10px 0 0 -10px;
	width: 20px;
	height: 20px;
	left: 50%;
	top: 50%;
}

.slick-nav i:before,
.slick-nav i:after {
	content: "";
	width: 10px;
	height: 2px;
	border-radius: 1px;
	position: absolute;
	left: 50%;
	top: 50%;
	background: var(--active);
	margin: -1px 0 0 -5px;
	display: block;
	transform-origin: 9px 50%;
}

.slick-nav i:before {
	transform: rotate(-40deg);
}

.slick-nav i:after {
	transform: rotate(40deg);
}

.slick-nav:before,
.slick-nav:after {
	content: "";
	display: block;
	position: absolute;
	left: 1px;
	right: 1px;
	top: 1px;
	bottom: 1px;
	border-radius: 50%;
	border: 2px solid var(--border);
}

.slick-nav svg {
	width: 44px;
	height: 44px;
	display: block;
	position: relative;
	z-index: 1;
	color: var(--active);
	stroke-width: 2px;
	stroke-dashoffset: 126;
	stroke-dasharray: 126 126 0;
	transform: rotate(0deg);
}

.slick-nav.animate svg {
	-webkit-animation: stroke 1s ease forwards 0.3s;
	animation: stroke 1s ease forwards 0.3s;
}

.slick-nav.animate i {
	-webkit-animation: arrow 1.6s ease forwards;
	animation: arrow 1.6s ease forwards;
}

.slick-nav.animate i:before {
	-webkit-animation: arrowUp 1.6s ease forwards;
	animation: arrowUp 1.6s ease forwards;
}

.slick-nav.animate i:after {
	-webkit-animation: arrowDown 1.6s ease forwards;
	animation: arrowDown 1.6s ease forwards;
}

@-webkit-keyframes stroke {
	52% {
		transform: rotate(-180deg);
		stroke-dashoffset: 0;
	}

	52.1% {
		transform: rotate(-360deg);
		stroke-dashoffset: 0;
	}

	100% {
		transform: rotate(-180deg);
		stroke-dashoffset: 126;
	}
}

@keyframes stroke {
	52% {
		transform: rotate(-180deg);
		stroke-dashoffset: 0;
	}

	52.1% {
		transform: rotate(-360deg);
		stroke-dashoffset: 0;
	}

	100% {
		transform: rotate(-180deg);
		stroke-dashoffset: 126;
	}
}

@-webkit-keyframes arrow {

	0%,
	100% {
		transform: translateX(0);
		opacity: 1;
	}

	23% {
		transform: translateX(17px);
		opacity: 1;
	}

	24%,
	80% {
		transform: translateX(-22px);
		opacity: 0;
	}

	81% {
		opacity: 1;
		transform: translateX(-22px);
	}
}

@keyframes arrow {

	0%,
	100% {
		transform: translateX(0);
		opacity: 1;
	}

	23% {
		transform: translateX(17px);
		opacity: 1;
	}

	24%,
	80% {
		transform: translateX(-22px);
		opacity: 0;
	}

	81% {
		opacity: 1;
		transform: translateX(-22px);
	}
}

@-webkit-keyframes arrowUp {

	0%,
	100% {
		transform: rotate(-40deg) scaleX(1);
	}

	20%,
	80% {
		transform: rotate(0deg) scaleX(0.1);
	}
}

@keyframes arrowUp {

	0%,
	100% {
		transform: rotate(-40deg) scaleX(1);
	}

	20%,
	80% {
		transform: rotate(0deg) scaleX(0.1);
	}
}

@-webkit-keyframes arrowDown {

	0%,
	100% {
		transform: rotate(40deg) scaleX(1);
	}

	20%,
	80% {
		transform: rotate(0deg) scaleX(0.1);
	}
}

@keyframes arrowDown {

	0%,
	100% {
		transform: rotate(40deg) scaleX(1);
	}

	20%,
	80% {
		transform: rotate(0deg) scaleX(0.1);
	}
}



/*--------------------------------------
				Home
--------------------------------------*/
.login-outer-wrapper {
	margin-top: 70px !important;
	margin-bottom: 50px;
}

.login-wrapper .page-header {
	min-height: 90vh;
}


.main-wrapper-home {
	margin: auto;
	width: 100%;
	position: relative;
}


.main-wrapper-home .navbar-brand img {
	max-width: 56%;
}

.primary-banner {
	position: relative;
}

.primary-banner:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--grad-1-6);
	width: 100%;
	height: 100%;
	backdrop-filter: blur(2px);
}

.banner-content {
	position: absolute;
	width: 60%;
	text-align: center;
	margin: auto;
	left: 0;
	right: 0;
	top: 40%;
}

.banner-content h2 {
	color: #fff;
}

.banner-content p {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	padding: 0 50px;
}

.about-content {
	background: #fff;
	padding: 30px;
	position: relative;
	width: 100%;
	height: auto;
	/* transform: translateY(-90px); */
	border-radius: 10px;
	margin-bottom: 50px;
}

.about-content p {
	font-size: 17px;
	font-weight: 500;
}

.primary-banner {
	position: relative;
	width: 100%;
	padding: 0;
	height: auto;
}

.section-2 {
	margin-top: 30px;
}


.fetaured-box {
	padding: 30px;
	width: 100%;
	background: #e9f7f9;
	position: relative;
	box-sizing: border-box;
	border-radius: 15px;
	border: 1px solid #eaeaea;
	min-height: 380px;
}

.fetaured-box span.material-symbols-outlined {
	font-size: 30px;
	padding: 15px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 50%;
}

.fetaured-box .icon-box {
	display: inline-block;
	vertical-align: middle;
}

.fetaured-box h2 {
	font-size: 17px;
	margin-top: 15px;
	white-space: pre-wrap;
	word-wrap: break-word;
	display: inline-block;
	vertical-align: middle;
	width: 70%;
	margin-left:0px;
}

.fetaured-box p {
	font-weight: 500;
	font-size: 17px;
}

.call-to-action-wrapper {
	position: relative;
	padding: 3rem;
	background: var(--grad-1);
}

/* .call-to-action-wrapper:before {
	content: "";
	position: absolute;
	top: -1rem;
	left: -1rem;
	z-index: -10;
	display: block;
	width: calc(100% + 2rem);
	height: calc(100% + 2rem);
	border-radius: 2rem;
	background-color: #dde5f9;
} */

.call-to-action-wrapper .icon-box {
	display: inherit;
  }

.call-to-action-wrapper h2 {
	color: #fff;
	font-size: 24px;
	width: 100%;
}

.call-to-action-wrapper h3 {
	font-size: 22px;
	color: #fff;
	font-weight: 500;
}

.brand-partners-wrapp h2 {
	font-size: 23px;
  }

.brand-partners-wrapp {
	margin: 30px auto;
}

.brand-partners-wrapp .brand-partner {
	margin: auto;
	padding:10px;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	height: auto;
}

.brand-partner .owl-carousel img {
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 4px 10px;
	box-sizing: border-box;
	background: #fff;
}

.brand-partner .owl-carousel .img-wrap {
	padding: 0 10px;
	box-sizing: border-box;
}

.owl-prev {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 30px;
	height: 30px;
	margin: auto;
}

.owl-prev span,
.owl-next span {
	font-size: 20px;
}

.owl-next {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 30px;
	height: 30px;
	margin: auto;
}

/* Footer */
.footer {
	/* background: var(--secondary-color); */
	padding: 15px 0;
}

.footer p {
	color: #fff;
	font-size: 17px;
	font-weight: 500;
}

.footer a {
	color: #fff;
	position: relative;
	font-size: 14px;
	padding-right: 5px;
	margin-right: 5px;
}

.footer a::after {
	content: '|';
	color: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	font-size: 12px;
	right: -4px;
}

.footer a:last-child::after {
	display: none;
}

--------------------------------------------------------- .home-primary-wrapp {
	margin: auto;
	width: 100%;
	height: 100vh;
	background: url(../img/home/int-home-bg.jpg) center no-repeat;
	background-size: cover;
}


.home-primary-wrapp .content-box {
	background: rgba(25, 25, 25, 0.58);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	padding: 30px 40px;
	box-sizing: border-box;
	border-radius: 5px;
}

.home-primary-wrapp .content-box p {
	color: #fff;
	font-size: 14px;
	line-height: 28px
}

.link-box {
	text-align: center;
	margin: 10px 5px;
	padding: 15px;
	border: 2px solid rgba(167, 167, 167, 0.61);
	border-radius: 5px;
	height: 120px;
	position: relative
}

.link-box:hover {
	background: #019fd9;
	transition: all 300ms linear;
}

.link-box .icon img {
	width: 60px;
	height: auto;
}

.link-box a {
	font-size: 14px;
	color: #fff;
	text-decoration: none
}

#alumni_association_logo,
#institute_logo {
	position: absolute;
	left: 0;
	right: 0;
	visibility: hidden;
}

input.offer-input {
	position: absolute;
	left: 0;
	right: 0;
	visibility: hidden;
	z-index: -1;
  }

.upload-button {
	background: #fbd921;
	padding: 5px 30px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	vertical-align: middle;
}
.upload-button .material-icons {
	vertical-align: middle;
  }

.custom-file-input {
	border: 1px solid #ced4da;
	/* Add your desired border styles */
	padding: 6px;
	border-radius: 4px;
	width: 100%;
	font-weight: 400;
	font-size: small;
}

#add-form,
#add_ec_data,
#add_fc_data,
#add_sc_data {
	cursor: pointer;
	color: #0d6efd;
}

.delete-icon,
#delete-ec-icon,
#delete-fc-icon {
	position: relative;
	top: 5px;
	right: 5px;
	color: red;
	cursor: pointer;
}

.required_error_message {
	display: none;
	font-size: 13px;
}

.ck.ck-editor__editable {
	min-height: 250px;
	/* Adjust the height as needed */
}

.profile-logo {
	max-width: 200px;
}

#updateInstituteProfile .form-control {
	padding: 10px;
}

/*--------------------------------------
			Contact us page
--------------------------------------*/

.contact-info {
	margin-right: 50px;
	margin-left: 50px;
	padding: 50px 0;

}

.contact-info .single-contact-info {
	min-height: 150px;
	background: #fff;
	box-shadow: 0 6px 26px rgba(0, 0, 0, 0.06);
	display: flex;
	align-items: center;
	text-align: center;
	padding: 0 35px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.single-contact-info:hover {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}

.contact-info .single-contact-info .c-icons {
	width: 70px;
	height: 70px;
	text-align: center;
	line-height: 70px;
	display: block;
	border-radius: 50%;
	font-size: 26px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	margin-right: 20px;
}

.single-contact-info.icon-1 .c-icons {
	background: #d1e4ff;
	color: #0d6efd;
}

.single-contact-info.icon-1:hover .c-icons {
	background: #0d6efd;
	color: #fff;
}

.single-contact-info.icon-2 .c-icons {
	color: #16d88a;
	background: #dcf9ee;
}

.single-contact-info.icon-2:hover .c-icons {
	background: #16d88a;
	color: #fff;
}

.single-contact-info.icon-3 .c-icons {
	color: #ff861f;
	background: #ffe0c5;
}

.single-contact-info.icon-3:hover .c-icons {
	background: #ff861f;
	color: #fff;
}

.contact-info .single-contact-info .c-info {
	text-align: left;
	width: 65%;
	display: block;
	position: relative;
}

.contact-info .single-contact-info .c-info h2 {
	font-size: 18px;
	margin-bottom: 0;
}

.contact-from-wrapper {
	text-align: center;
}

.contact-form {
	padding: 50px;
	margin: auto;
	width: 100%;
	height: auto;
	position: relative;
}

.contact-from-wrapper .form-control {
	width: 100%;
	height: 71px;
	background: #fff;
	box-shadow: 0 6px 26px rgba(0, 0, 0, 0.06);
	border: none;
	padding-left: 30px;
	text-transform: capitalize;
	margin-bottom: 29px;
	color: #666;
}

.contact-from-wrapper textarea.form-control {
	height: 250px;
	padding-top: 30px;
}

.contact-from-wrapper .contact-form .btn.btn-primary {
	width: 100%;
	padding: 17px;
	font-size: 18px;
	font-weight: 600;
	font-family: "Source Sans Pro", sans-serif;
}

.contact-form .form-label {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #393939;
	margin-left: 0.25rem;
}

#message {
	height: 8rem;
}

.thankyou-wrapper {
	margin: auto;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
	position: relative
}

.icon_wrapp {
	display: inline-block;
	line-height: 100px;
	border-radius: 100%;
	margin: auto;
	box-sizing: border-box;
	text-align: center;
	position: relative;
}

.icon_wrapp span {
	font-size: 98px;
	color: #02D879;
	vertical-align: middle;
	text-align: center;
	margin: 20px auto;
	position: relative;
	display: block;
}

.content {
	text-align: center;
	position: relative
}

.content h2 {
	font-size: 25px;
	font-weight: 600;
}

.content h4 {
	font-size: 20px;
}

.vh-60 {
	min-height: 70vh
}

.spinner-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
	/* Adjust the z-index as needed */
	background-color: rgba(255, 255, 255, 0.8);
	/* Adjust the background color and opacity */
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.site-logo-preview {
	width: 30%;
}

/* CSS for the spinner overlay */
.spinner-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
}

/* CSS for the spinner itself (centered within the overlay) */
.spinner {
	text-align: center;
}

.custom-range-slider {
	width: 20rem;
	/* Adjust the width as needed */
}



.range-slider {
	position: relative;
	width: 85%;
	margin: auto;
}

.range-slider input[type="range"] {
	width: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-appearance: none;
	height: 5px;
	background: #0f0f0f;
	outline: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	background: #06b9c0;
	cursor: pointer;
	z-index: 2;
}

.range-slider .range-bar {
	position: absolute;
	height: 5px;
	background: #06b9c0;
	width: 0;
	top: 50%;
	transform: translateY(-50%);
}

.range-values {
	font-size: 16px;
	color: #0b0b0b;
	text-align: center;
	margin-bottom: 0;
}


.batch-range-slider {
	position: relative;
	width: 80%;
}

.batch-range-slider input[type="range"] {
	width: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-appearance: none;
	height: 5px;
	background: #0f0f0f;
	outline: none;
}

.batch-range-slider input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	background: #06b9c0;
	cursor: pointer;
	z-index: 2;
}

.batch-range-slider .batch-range-bar {
	position: absolute;
	height: 5px;
	background: #06b9c0;
	width: 0;
	top: 50%;
	transform: translateY(-50%);
}

.dropdown-location {
	position: absolute;
	top: 0;
	right: 0;
	margin-left: 10px;

}

.dropdown-menu {
	max-height: 12rem;
	overflow: scroll;
}

.dropdown-list {
	padding-left: 10px;
}

.gender-filter {
	display: flex;
}

.gender-filter .form-check {
	padding-left: 2.73em;
}

.noUi-horizontal .noUi-handle {
	width: 34px;
	height: 34px;
	right: -17px;
	top: -4px;
}

.noUi-handle::after,
.noUi-handle::before {
	content: "";
	display: block;
	position: absolute;
	height: 14px;
	width: 1px;
	background: #57514B85;
	left: 14px;
	top: 8px;
}

h3.card-brand-header {
	width: 60%;
	margin: auto;
	margin-right: 0;
	font-size: 20px;
	text-transform: uppercase !important;
	height: 50px;
}

th.mw-300 {
	width: 300px !important;
	max-width: 300px !important;
}

.dt-button {
	margin-left: 10px;
}

.navbar-brand-img {
	max-height: none !important;
}

/* .alum-logo img {
	border: 1px solid #ccc;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 8px;
} */

/*------------------------------------
 			login page
-------------------------------------*/
.login-box-wrapper {
	box-shadow: 0px 0px 30px -17px #333;
	padding: 0;
	border-radius: 15px;
	background: #fff;
	position: relative;
}

.inputerror {
	margin-top: 0.30rem;
	font-size: 13px;
	font-weight: 600;
}

.login-box {
	position: relative;
	min-height: 400px;
}

.left-signup-box {
	background: var(--grad-1);
	border-radius: 15px 60px 120px 15px;
	padding: 70px 40px;
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
	/* display: inline-grid; */
}

.left-signup-box .alum-logo {
	margin: auto;
	text-align: center;
	width: 130px;
	height: 130px;
	position: absolute;
	top: -65px;
	border-radius: 100%;
	background: #fff;
	padding: 14px;
	border: 5px solid var(--secondary-color);
}

.left-signup-box .alum-logo img {
	padding: 5px;
}

.donthave-account {
	position: relative;
	width: 100%;
	height: auto;
}

.donthave-account h4 {
	font-size: 15px;
	color: #fff;
	font-weight: normal;
}

.donthave-account .btn-signup {
	border-radius: 5px;
	border: 2px solid #fff;
	color: #fff;
	padding: 5px 20px;
	position: relative;
	top: 16px;
	display: inline-block;
	margin-top: 15px;
}

.right-login-box {
	padding: 48px;
}

.content-signin .btn-info {
	font-size: 15px;
	font-weight: normal;
	width: auto !important;
	display: inline-block;
	padding: 10px 40px;
}

.right-login-box .header h2 {
	font-size: 26px;
	margin-bottom: 30px;
	border-bottom: 1px solid #f0f0f0;
	padding-bottom: 15px;
}


.left-signup-box .content-box {
	position: relative;
}

.left-signup-box .content-box h3,
.left-signup-box .content-box h2,
.left-signup-box .content-box p {
	color: #fff;
	margin-bottom: 0px;
}

.left-signup-box .content-box h2 {
	font-family: var(--second-font);
	font-weight: 600;
	font-size: 35px;
}

.left-signup-box .content-box h3 {
	font-family: var(--optional-font);
	font-size: 23px;
	font-weight: normal;
}

/*  */
.register-box {
	border-top: 7px solid #3387fa;
	padding: 0;
	border-radius: 15px;
}

.dt-button.buttons-csv.buttons-html5.btn-success.float-end {
	border: none;
	padding: 5px 20px;
	border-radius: 4px;
}

.resetpass-primary-wrapper {
	background-image: url(../img/bg-image-login.jpg);
	min-height: 90vh;
	padding-top: 90px;
	box-sizing: border-box;
}


label,
.form-label {
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 0;
	color: #555762;
}

.dataTables_scrollHeadInner {
	width: 100%;
}

.dataTables_scroll table {
	width: 100% !important;
}

.get-all-clicks {
	color: #3387fa;
	font-weight: 600;
	display: block;
	line-height: 30px;
}

.get-all-clicks:hover {
	color: #f00;
	transition: all 200ms linear;
}

#navbarBlur {
	background: #fff;
	border-bottom: 2px solid #ccc;
	border-radius: 0;
}

.login-box-wrapper .app-name {
	text-shadow: 2px 2px 2px #2619a8;
	color: #3387fa !important;
	letter-spacing: 1px;
}

.navbar-vertical .nav-item .nav-link+.collapse .nav .nav-item>.nav-link,
.navbar-vertical .nav-item .nav-link+.collapsing .nav .nav-item>.nav-link {
	margin-top: 1.5px;
	margin-bottom: 1.5px;
	margin-left: 36px;
}

.bottom-footer a,
.bottom-footer p {
	color: #333;
}

.mobile-only-content {
	display: none;
}

/* read more content */
.modal-readmore button.close {
	position: absolute;
	right: -30px;
	width: 30px;
	height: 30px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 30px;
	top: -10px;
	line-height: 30px;
}

.modal-readmore .modal-body p {
	color: #333;
	font-weight: 400;
}

.modal-readmore .modal-body h4 {
	font-size: 17px;
}

.register-page-wrapper .alum-logo {
	width: 130px;
	height: 130px;
	transform: translateY(-60px);
	margin-bottom: -60px;
	background: #fff;
	border-radius: 100%;
	padding: 20px;
	border: 4px solid #3387fa;
  }

  .btn-edit, .btn-delete {
	width: 30px;
	height: 30px;
	line-height: 30px;
	padding: 0 !important;
	font-size: 14px;
	border-radius: 0;
	margin-bottom:0;
  }

  .btn-edit .material-icons, .btn-delete .material-icons {
	font-size: 15px;
  }
.card-body .table tr td {
	font-size: 15px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
	padding: 0px 10px;
}

.brand-offers-table #DataTables_Table_0_length {
	margin-bottom: 15px;
  }
.brand-offers-table .dataTables_filter {
	margin-bottom: 15px;
}

.offer-report .dataTables_length, .offer-report .dataTables_filter, .dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter{
	margin-bottom: 20px;;
}

.dataTables_wrapper table, .dataTables_wrapper .dataTables_scrollHeadInner {
	width: 100%;
  }

  .offer-report-wrapper, .add-offer-wrapper {
	min-height: 86vh;
	position: relative;
	width: 100%;
  }
  .btn-check:focus + .btn-primary, .btn-primary:focus {
	color: #000;
	background-color: #084384 !important;}

@media screen and (min-width:320px) and (max-width:767px) {
	.donthave-account {
		display: none;
	}

	.login-box-wrapper {
		margin-bottom: 15px;
	}

	.dt-button.buttons-csv.buttons-html5.btn-success.float-end {
		margin: auto;
		float: none !important;
	}

	.report-box .dt-buttons {
		text-align: center;
		margin: auto;
		margin-bottom: 10px;
	}

	.dataTables_filter label {
		width: 100%;
		position: relative;
	}

	.dataTables_wrapper .dataTables_filter input {
		width: 100%;
	}

	.dataTables_filter label {
		text-align: left;
		font-weight: 500;
	}

	/* login Responsive */

	.left-signup-box {
		background: var(--grad-1);
		border-radius: 15px;
		padding: 45px 20px 15px;
		box-sizing: border-box;
		display: block;

	}

	.left-signup-box .content-box p {
		display: none;
	}

	.resetpass-primary-wrapper .left-signup-box .content-box p, .resetpass-primary-wrapper .left-signup-box .content-box .donthave-account {
		display: block;
	}

	.right-login-box {
		padding: 15px;
	}

	.donthave-account .btn-signup {
		top: 5px;
	}

	.left-signup-box .content-box h2 {
		font-size: 28px;
	}

	.left-signup-box .content-box h3 {
		font-size: 20px;
	}

	.login-outer-wrapper {
		margin-top: 85px !important;
		margin-bottom: 0;
	}

	.left-signup-box .alum-logo {
		text-align: center;
		width: 110px;
		height: 110px;
		position: absolute;
		top: -65px;
		border-radius: 100%;
		background: #fff;
		padding: 14px;
		border: 3px solid var(--secondary-color);
		margin: auto;
		left: 0;
		right: 0;
	}

	.mobile-only-content {
		display: block;
		background: #fff;
		margin: 15px auto;
		padding: 30px;
		box-sizing: border-box;
		border-radius: 15px;
	}
	.mobile-only-content p {
		font-weight: 400;
	}

	.fetaured-box {
		padding: 15px;
		width: 100%;
		background: #e9f7f9;
		position: relative;
		box-sizing: border-box;
		border-radius: 15px;
		border: 1px solid #eaeaea;
		min-height: 100%;
		height: auto;
	  }
	  .call-to-action-wrapper{
		background: var(--grad-1) !important;
	  }
	  .about-content {
		margin-bottom: 0px;
		padding: 0;
	  }
	  .about-content h2 {
		font-size: 20px;
	  }
	  .call-to-action-wrapper h2 {
		color: #fff;
		font-size: 20px;
		width: 100%;
	  }
	  .register-page-wrapper .alum-logo {
		width: 100px;
		height: 100px;
	}
	.register-page-wrapper {
		padding: 0;
	}
	.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter {
		text-align: center;
	}
	#profileMenuButton {
		margin-top: 5px;
	}
	#navbarBlur nav h6, #navbar h6{
		font-size: 15px !important;
	}
	#searchButton1 {
		width: 100%;
		margin-top: 8px;
	  }
	  .dt-buttons {
		margin: auto;
		text-align: center;
		margin-bottom: 15px;
	  }
	.add-offer-wrapper .card .card-header {
		text-align: center;
	}
}

.alert {
	position: absolute;
	z-index: 9999;
	top: 10px;
	right: 10px;
	width: 320px;
	height: auto;
}
.select-issue{
	height: 10rem;
}