:root{
	/*---------- Colors ----------*/
	--color-primary: #008081;
	--color-secondary: #F15C2B;
	--color-tertiary: #F5F5F5;
	--color-quartary: #D9D9D9;
}

html, body{
	overflow-x: hidden;
}
body{
	font-size: 18px;
	font-family: 'Poppins', sans-serif;
}
::selection{
	color: #000000;
	background-color: #CCCCCC;
}
::-moz-selection{
	color: #000000;
	background-color: #CCCCCC;
}
*{
	outline: none !important;
}
a{
	font-size: inherit !important;
	color: inherit !important;
	text-decoration: none !important;
	box-shadow: none !important;
}
a.a-hover:hover{
	color: var(--color-primary) !important;
}
a.text-decoration{
	text-decoration: underline !important;
}
.h1 *,h1 *,
.h2 *,h2 *,
.h3 *,h3 *,
.h4 *,h4 *,
.h5 *,h5 *,
.h6 *,h6 *{
	font-size: inherit;
}
p,
.h1,h1,
.h2,h2,
.h3,h3,
.h4,h4,
.h5,h5,
.h6,h6,
label {
	margin: 0;
	font-weight: unset;
}
b{
	font-size: inherit;
}
ul{
	margin-bottom: 0
}
img{
	width: 100%;
	height: 100%;
}
button{
	box-shadow: none !important;
}
svg path{
	transition: all .3s;
}

/*
|--------------------------------------------------------------------------
| General Shortcuts
|--------------------------------------------------------------------------
|
*/

/*---------- Measures ----------*/
.width-15{
	width: 15px;
	height: 15px;
}
.width-20{
	width: 20px;
	height: 20px;
}
.h-100vh{
	height: 100vh;
}
/*---------- End Measures ----------*/

/*---------- Elements ----------*/
.adjust-element{
	font-size: 0;
}
.cursor-pointer{
	cursor: pointer;
}
.z-index-1{
	z-index: 1;
}
/*---------- End Elements ----------*/

/*---------- Fonts Weights ----------*/
.font-weight-light{
	font-weight: 300 !important;
}
.font-weight-medium{
	font-weight: 500 !important;
}
.font-weight-semi-bold{
	font-weight: 600 !important;
}
b,
strong{
	font-weight: 700 !important;
}
/*---------- End Fonts Weights ----------*/

/*---------- Text Color ----------*/
.text-primary{
	color: var(--color-primary) !important;
}
.text-secondary{
	color: var(--color-secondary) !important;
}
.text-tertiary{
	color: var(--color-tertiary) !important;
}
.text-black{
	color: #000;
}
/*---------- End Text Color ----------*/

/*---------- Background Color ----------*/
.bg-primary{
	background-color: var(--color-primary) !important;
}
.bg-secondary{
	background-color: var(--color-secondary) !important;
}
.bg-tertiary{
	background-color: var(--color-tertiary) !important;
}
.bg-quartary{
	background-color: var(--color-quartary) !important;;
}
.bg-black{
	background-color: #000000;
}
/*---------- End Background Color ----------*/

/*---------- Picture Ratio ----------*/
.picture-wrapper{
	position: relative;
}
.picture-wrapper.padding-top-66{
	padding-top: 66%;
}
.picture-wrapper.padding-top-100{
	padding-top: 100%;
}
.picture-wrapper img{
	position: absolute;
	top: 0;
	left: 0;
}
/*---------- End Picture Ratio ----------*/

/*---------- Images / Videos ----------*/
img.cover{
	-o-object-fit: cover;
	object-fit: cover;
}
img.contain{
	-o-object-fit: contain;
	object-fit: contain;
}
/*---------- End Images / Videos ----------*/

/*---------- Rich Text ----------*/
.rich-text{
	word-break: break-word;
}
.rich-text a{
	text-decoration: underline !important;
}
/*---------- End Rich Text ----------*/

/*---------- Pagination ----------*/
.pagination{
	justify-content: center;
	margin-top: 50px;
}
.pagination .page-link{
	color: #000000 !important;
	opacity: 0.5;
	border: 0;
	background-color: unset !important;
}
.pagination .page-item.active .page-link{
	opacity: 1;
}
/*---------- End Pagination ----------*/

/*
|--------------------------------------------------------------------------
| End General Shortcuts
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Website Shortcuts
|--------------------------------------------------------------------------
|
*/

.border-radius{
	border-radius: 12px;
	overflow: hidden;
}

/********************/
.circle-orange{
	position: absolute;
	top: 35%;
	right: 0;
	transform: translateX(50%);
	width: 200px;
	height: 200px;
}
.circle-blue{
	position: absolute;
	bottom: 50px;
	left: 0;
	transform: translateX(-50%);
	width: 200px;
	height: 200px;
}

/********************/
.logo-top{
	position: absolute;
	top: 50px;
	left: 60px;
	width: 150px;
	height: auto;
}

/********************/
.seperator{
	position: relative;
}
.seperator:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(50%, -50%);
	width: 1px;
	height: calc(100% - 10px);
	background-color: #000000;
}

/********************/
.skills{
	font-size: 18px;
	border-radius: 5px;
	background-color: var(--color-tertiary);
	padding: 2px 12px;
	margin: 0 3px;
	margin-bottom: 6px;
}

/********************/
.day,
.hr,
.min{
	font-size: inherit;
	position: relative;
}
.day:after,
.hr:after,
.min:after{
	position: absolute;
	top: 90%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 14px;
	font-weight: 300 !important;
}
.day:after{
	content: 'Days';
}
.hr:after{
	content: 'Hrs';
}
.min:after{
	content: 'Min';
}

/********************/
svg.white path{
	fill: #ffffff;
}

/*
|--------------------------------------------------------------------------
| End Website Shortcuts
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Navigation
|--------------------------------------------------------------------------
|
*/

nav{
	background-color: rgba(255,255,255,0.85);
}
nav .navbar-nav a{
	padding: 0 !important;
}

/*
|--------------------------------------------------------------------------
| End Navigation
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Home
|--------------------------------------------------------------------------
|
*/

/*---------- Home Logo ----------*/
.home-logo{
	width: 250px;
	height: auto;
}
/*---------- End Home Logo ----------*/

/*---------- Home Slick ----------*/
.home-slick-js .circle-orange{
	top: 0;
	left: -30px;
	width: 150px;
	height: 150px;
	transform: unset;
}
/*---------- End Home Slick ----------*/

/*---------- Cercle Wrapper ----------*/
.cercle-wrapper{
	border: 1px solid var(--color-tertiary);
	border-radius: 100%;
}
.cercle-wrapper img{
	padding: 60px;
}
.cercle-mini-wrapper{
	display: block;
	border: 1px solid var(--color-tertiary);
	border-radius: 100%;
	width: 150px;
	height: 150px;
	padding: 40px;
	margin: auto;
}
/*---------- End Cercle Wrapper ----------*/

/*---------- Process Slick ----------*/
.mobile-slick .slick-dots li button{
	background-color: var(--color-quartary);
}
.mobile-slick .slick-dots li.slick-active button{
	background-color: var(--color-quartary);
}
/*---------- End Process Slick ----------*/

/*
|--------------------------------------------------------------------------
| End Home
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Sidebar
|--------------------------------------------------------------------------
|
*/

html.sidebar-open{
	overflow: hidden;
}
.sidebar{
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	max-width: 250px;
	padding: 50px 0 25px 0;
	border-right: 2px solid #EFEFEF;
	overflow: auto;
	transition: all .3s;
	z-index: 1;
}
.sidebar.sidebar-open{
	left: 0;
}

.sidebar .sidebar-logo img{
	display: block;
	width: 150px;
	height: auto;
	margin: auto;
	margin-bottom: 100px;
}

.sidebar ul li{
	position: relative;
	font-size: 15px;
}
.sidebar ul li:hover,
.sidebar ul li.active{
	background-color: var(--color-quartary);
}
.sidebar ul li a{
	display: block;
	padding: 15px 35px;
}
.sidebar ul li img{
	width: 15px;
	height: auto;
}

.badge{
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	line-height: 22px;
	padding: 0;
	color: #FFFFFF;
	background-color: var(--color-primary);
	border-radius: 100%;
}

/* Sidebar 2 */
.sidebar-list{
	font-size: 15px;
}
.sidebar-list li{
	position: relative;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	margin-bottom: 5px;
}
.sidebar-list li a{
	display: block;
	padding: 25px 35px 25px 55px;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}
.sidebar-list li:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background-color: var(--color-quartary);
}
.sidebar-list li:hover{
	background-color: var(--color-quartary);
}
.sidebar-list li.active{
	background-color: var(--color-quartary);
}
.sidebar-list li.active:before{
	background-color: var(--color-secondary);
}
/*
|--------------------------------------------------------------------------
| End Sidebar
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Topbar
|--------------------------------------------------------------------------
|
*/

.topbar{
	position: relative;
	border-bottom: 2px solid #EFEFEF;
}
.topbar img{
	width: 35px;
	height: 35px;
}

/*
|--------------------------------------------------------------------------
| End Topbar
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Dashboard Content
|--------------------------------------------------------------------------
|
*/

.dashboard-content{
	margin-left: 250px;
}

.dashboard-container{
	padding: 0 75px;
	margin-bottom: 150px;
}

.no-records{
	text-align: center;
}
.no-records svg{
	width: 150px;
	height: 150px;
}

/*
|--------------------------------------------------------------------------
| End Dashboard Content
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Filter Bar
|--------------------------------------------------------------------------
|
*/

.filters-bar{
	padding: 0 75px;
	white-space: nowrap;
	overflow-x: auto;
}
.filters-bar a{
	position: relative;
	display: inline-block;
	padding: 15px 0;
}
.filters-bar .badge{
	right: -25px;
}
.filters-bar a.active{
	font-weight: bold;
	padding: 15px 10px;
}
.filters-bar a.active:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: #000000;
}
.filters-bar select{
	font-size: 15px;
	width: auto;
	border: none;
	background-color: transparent !important;
	background-image: url('../images/icons/arrow-down.svg');
	background-repeat: no-repeat;
	background-position: 100% 50%;
	padding-right: 40px;
}

/*
|--------------------------------------------------------------------------
| End Filter Bar
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| My Wallet Page
|--------------------------------------------------------------------------
|
*/

.profile-picture{
	display: block;
	width: 200px;
	height: 200px;
	margin: auto;
}

.primary-card {
	background: #e74e1c30 !important;
	border: 1px solid #E74E1C !important;
}
.wallet-card {
	background: #f5f5f5;
	border: 1px solid #f5f5f5;
}
.primary-icon{
	position: absolute;
	top: 20px;
	left: 15px;
	width: 20px;
	height: 20px;
}
.primary-badge {
	position: absolute;
	top: 30%;
	right: 0;
	width: auto;
	color: #FFFFFF;
	padding: 2px 12px 2px 30px;
	background-color: #E74E1C;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.primary-badge img{
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
}
.action-wrapper{
	position: absolute;
	top: 10px;
	right: 20px;
}
.btn-hide{
	position: absolute;
	bottom: 10px;
	right: 15px;
	padding: 0;
}
.btn-hide img{
	width: 20px;
	height: 20px;
}
.transaction-card .arrow{
	position: absolute;
	top: 50%;
	right: 40px;
	transform: translateY(-50%);
	width: 25px;
	height: 25px;
	transition: all .3s;
}




.recruiter-currency-btn {
	color: black !important;
	background-color: #f5f5f5;
	font-size: 15px;
	border: 2px solid #f5f5f5;
	border-radius: 25px;
	padding: .7rem 1.3rem;
	letter-spacing: 0.5px;
}

.recruiter-orange-btn {
	color: white !important;
	background-color: #E74E1C;
	font-size: 15px;
	border-radius: 25px;
	padding: .7rem 1.3rem;
	letter-spacing: 0.5px;
}

.sidebar-title {
	color: #E74E1C;
}





.text-orange{
	color: #E74E1C;
}


.hide-btn-div {
	display: flex !important;
	justify-content: flex-end ;
}

.side-card-div {
	display: flex !important;
	align-items: flex-end;
	justify-content: flex-end;
	padding-right: 0px;
}



/* Custom CSS for side modal */
.modal.right .modal-dialog {
	position: fixed;
	margin: auto;
	width: 40%;
	min-width: 40%;
	height: 100%;
	right: 0;
	-webkit-transform: translate3d(0%, 0, 0);
	-ms-transform: translate3d(0%, 0, 0);
	-o-transform: translate3d(0%, 0, 0);
	transform: translate3d(0%, 0, 0);
}

.modal.right .modal-content {
	height: 100%;
	overflow-y: auto;
	align-items: center;
}

.modal.right .modal-body {
	padding: 15px 15px 80px;
	width: 60%;
}

/* Right slide in animation */
.modal.right.fade .modal-dialog {
	right: -50%;
	-webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
	-moz-transition: opacity 0.3s linear, right 0.3s ease-out;
	-o-transition: opacity 0.3s linear, right 0.3s ease-out;
	transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.show .modal-dialog {
	right: 0;
}

.custom-input {
	border-radius: 30px;
	padding-left: 40px;
}
.custom-input-wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
}
.custom-input-icon {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	font-size: 18px;
	color: #E74E1C;
}
.custom-input::placeholder {
	color: #d5d5d5 !important;
}
.custom-input::-ms-input-placeholder {
	color: #d5d5d5 !important;
}







/*
|--------------------------------------------------------------------------
| End My Wallet Page
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Notice Wrapper
|--------------------------------------------------------------------------
|
*/

.notice-wrapper .nav-tabs li{
	width: 50%;
}
.notice-wrapper .nav-tabs button{
	height: 60px;
	color: #000000 !important;
	background-color: transparent !important;
	border: none;
}
.notice-wrapper .nav-tabs button.active{
	position: relative;
	font-weight: bold;
}
.notice-wrapper .nav-tabs button.active:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background-color: #000000;
}
.notice-wrapper .tab-content{
	height: 500px;
	overflow: auto;
}
.notice-wrapper .tab-content ul{
	padding: 0 3rem!important
}
.notice-wrapper .tab-content ul li{
	padding: 1rem 0;
	border-bottom: 1px solid #dee2e6!important;
}

/*
|--------------------------------------------------------------------------
| End Notice Wrapper
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Notification Page
|--------------------------------------------------------------------------
|
*/

.notification-wrapper .read{
	border: 1px solid var(--color-quartary);
}
.notification-wrapper .unread{
	position: relative;
	background-color: var(--color-tertiary);
}
.notification-wrapper .unread:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 7px;
	height: 100%;
	background-color: var(--color-primary);
}

/*
|--------------------------------------------------------------------------
| End Notification Page
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Actions Component
|--------------------------------------------------------------------------
|
*/

.action-wrapper{
	position: absolute;
	top: 5px;
	right: 15px;
}
.action-wrapper .actions-list{
	display: none;
	position: absolute;
	transform: translateX(-100%);
	min-width: 200px;
	z-index: 1;
}
.action-wrapper .actions-list li:hover{
	background-color: rgba(255,255,255,0.5);
}
.action-wrapper .actions-list li a{
	display: block;
}

/*
|--------------------------------------------------------------------------
| End Actions Component
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Submission Page
|--------------------------------------------------------------------------
|
*/

.camera-icon{
	top: auto !important;
	left: auto !important;
	bottom: 0;
	right: 0;
	transition: all .3s;
}
.camera-icon:hover{
	opacity: 0.5;
}

/*
|--------------------------------------------------------------------------
| End Submission Page
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| FAQs Page
|--------------------------------------------------------------------------
|
*/

.faqs-list li > div:first-child{
	position: relative;
	padding-left: 75px !important;
}
.faqs-list li img{
	position: absolute;
	top: 50%;
	left: 35px;
	transform: translateY(-50%);
	transition: transform .3s;
}
.faqs-list li.active img{
	transform: translate(-25%, -50%) rotate(90deg);
}

/*
|--------------------------------------------------------------------------
| End FAQs Page
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Inputs & Buttons Styling
|--------------------------------------------------------------------------
|
*/

/*---------- HTML General Elements ----------*/
select{
	background-image: url('../images/icons/arrow-down.svg');
	background-repeat: no-repeat;
	background-position: 98% 50%;
	background-size: 15px;
}
textarea{
	padding-top: 12px !important;
}
::-webkit-input-placeholder { /* Edge */
	color: #000000 !important;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #000000 !important;
}
::placeholder {
	color: #000000 !important;
}
/*---------- End HTML General Elements ----------*/

/*---------- Button Custom ----------*/
.btn-custom{
	font-size: 15px;
	color: #FFFFFF !important;
	background-color: #000000;
	border: 2px solid #000000;
	border-radius: 6px;
	padding: .7rem 1.3rem;
	letter-spacing: 0.5px;
}
.btn-custom:hover{
	color: #000000 !important;
	background-color: transparent;
}

.btn-white{
	font-size: 15px;
	color: #000000 !important;
	background-color: #FFFFFF;
	border: 2px solid #FFFFFF;
	border-radius: 6px;
	padding: .7rem 1.3rem;
	letter-spacing: 0.5px;
}
.btn-white:hover{
	color: #FFFFFF !important;
	background-color: transparent;
}

.btn-white-border{
	font-size: 15px;
	color: #FFFFFF !important;
	background-color: transparent;
	border: 2px solid #FFFFFF;
	border-radius: 6px;
	padding: .7rem 1.3rem;
	letter-spacing: 0.5px;
}
.btn-white-border:hover{
	font-size: 15px;
	color: #000000 !important;
	background-color: #FFFFFF;
}

.btn-black-border{
	font-size: 15px;
	color: #000000 !important;
	background-color: transparent;
	border: 2px solid #000000;
	border-radius: 6px;
	padding: .7rem 1.3rem;
	letter-spacing: 0.5px;
}
.btn-black-border:hover{
	font-size: 15px;
	color: #FFFFFF !important;
	background-color: #000000;
}

.btn-back{
	position: relative;
	font-size: 15px;
	color: #000000 !important;
	background-color: transparent;
	border: 2px solid #000000;
	border-radius: 6px;
	padding: 0.25rem 1.25rem;
	padding-left: 40px;
	letter-spacing: 0.5px;
	z-index: 1;
}
.btn-back:hover{
	font-size: 15px;
	color: #FFFFFF !important;
	background-color: #000000;
}
.btn-back svg{
	position: absolute;
	top: 50%;
	left: 10px;
	height: 15px;
	transform: translateY(-50%);
}
.btn-back:hover svg path{
	stroke: #FFFFFF;
}

.btn-back.btn-back-float{
	position: absolute;
	top: 25px;
	left: 25px;
}
/*---------- End Button Custom ----------*/

/*---------- Input Custom ----------*/
.form-control:focus{
	box-shadow: none !important;
	border-color: inherit;
}

.form-group{
	position: relative;
}
.form-group img{
	position: absolute;
	width: 25px;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
}

.form-custom{
	height: 35px;
	color: #000000 !important;
	background-color: transparent !important;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #000000;
	padding-left: 12px;
	font-size: 16px;
}

.form-search{
	height: 35px;
	color: #000000 !important;
	background-color: transparent !important;
	border-radius: 6px;
	padding-left: 12px;
	font-size: 16px;
}

.invalid-feedback{
	font-size: 12px;
}
/*---------- End Input Custom ----------*/

/*---------- Checkbox Custom ----------*/
.check-custom {
	display: none;
}
.check-custom + label{
	position: relative;
	padding-left: 35px;
	cursor: pointer;
}
.check-custom + label:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	border: 1px solid #000000;
	background-color: #FFFFFF;
}
.check-custom:checked + label:after{
	content: '';
	position: absolute;
	top: 50%;
	left: 4px;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	background-color: var(--color-primary);
}
/*---------- End Checkbox Custom ----------*/

/*---------- Radio Custom ----------*/
.radio-custom {
	display: none;
}
.radio-custom + label{
	position: relative;
	padding-left: 35px;
	cursor: pointer;
}
.radio-custom + label:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	border: 1px solid #000000;
	background-color: #FFFFFF;
	border-radius: 100%;
}
.radio-custom:checked + label:after{
	content: '';
	position: absolute;
	top: 50%;
	left: 4px;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	background-color: var(--color-primary);
	border-radius: 100%;
}
/*---------- End Radio Custom ----------*/

/*
|--------------------------------------------------------------------------
| End Inputs & Buttons Styling
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Override Bootstrap
|--------------------------------------------------------------------------
|
*/

.modal img.close{
	position: absolute;
	top: 20px;
	right: 20px;
	width: 15px;
	height: 15px;
}

.toast{
	max-width: calc(100% - 30px) !important;
	position: fixed;
	top: 15px;
	right: 15px;
	z-index: 1;
}

.bootstrap-tagsinput{
	width: 100%;
	min-height: 35px;
	color: #000000 !important;
	background-color: transparent !important;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #000000;
	padding-left: 12px;
	font-size: 16px;
	box-shadow: none;
}
.bootstrap-tagsinput input{
	padding: 0;
}
.bootstrap-tagsinput .tag {
	margin-right: 2px;
	color: #ffffff !important;
	background-color: var(--color-primary);
	padding: 5px 12px;
}

/*
|--------------------------------------------------------------------------
| End Override Bootstrap
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Override Slick
|--------------------------------------------------------------------------
|
*/

.slick-slider{
	margin-bottom: 0 !important;
}

/*---------- Dots Custom ----------*/
.slick-dots{
	font-size: 0;
	bottom: -30px;
}
.slick-dots li{
	margin: 0 4px;
}
.slick-dots li button{
	padding: 0;
	background-color: #FFFFFF;
	border-radius: 100%;
	opacity: 0.4;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.slick-dots li,
.slick-dots li button{
	width: 9px;
	height: 9px;
}
.slick-dots li button:before{
	content: none;
}
.slick-dots li.slick-active button{
	opacity: 1;
	background-color: #FFFFFF;
}
/*---------- End Dots Custom ----------*/

/*
|--------------------------------------------------------------------------
| End Override Slick
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Override Select2
|--------------------------------------------------------------------------
|
*/

.select2-container{
	font-size: 15px !important;
	width: 100% !important;
	border-radius: 0 !important;
}
.select2-selection--single .select2-selection__rendered {
	color: #000000 !important;
	padding: 0 28px !important;
	padding: 0 1.75rem !important;
	line-height: 40px !important;
	text-align: center;
}
.select2-selection--single .select2-selection__arrow{
	top: 0 !important;
	right: 0 !important;
	width: 60px !important;
	height: 100% !important;
}
.select2-selection--single .select2-selection__arrow b{
	border-width: 6px 5px 0 5px !important;
	border-color: red transparent transparent transparent !important;
}
.select2-selection--single,
.select2-selection--multiple{
	border: none !important;
	border-radius: 0 !important;
	border-bottom: 1px solid #000000 !important;
	min-height: 40px !important;
	background-color: transparent !important;
}
.select2-dropdown{
	border-color: #eee;
}
.select2-results__option{
	text-align: center;
}
.select2-results__option--highlighted[aria-selected]{
	background-color: var(--color-primary) !important;
}
.select2-container--default
.select2-search--inline
.select2-search__field{
	padding: 0 8px !important;
}

/*
|--------------------------------------------------------------------------
| End Override Select2
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Responsiveness Media Queries
|--------------------------------------------------------------------------
|
*/

@media(max-width: 991px) {

	.cercle-wrapper img{
		padding: 30px;
	}

	.sidebar{
		left: -250px;
	}
	.dashboard-content{
		margin-left: 0;
	}
	.filters-bar,
	.dashboard-container{
		padding: 0 15px;
	}

	/*---------- Burger ----------*/
	.burger span{
		display: block;
		width: 35px;
		height: 2px;
		background: #000000;
	}
	.burger span:nth-child(2){
		margin: 7px 0;
	}
	.burger.active span:nth-child(1){
		transform: translateY(9px) rotate(45deg);
		transition: all 0.3s;
	}
	.burger.active span:nth-child(2){
		opacity: 0;
	}
	.burger.active span:nth-child(3){
		transform: translateY(-9px) rotate(-45deg);
		transition: all 0.3s;
	}
	.burger.white span{
		background: #FFFFFF;
	}
	/*---------- End Burger ----------*/
}

@media(max-width: 767px) {

	.h-100vh{
		height: auto !important;
		padding: 150px 0;
	}

}

@media(max-width: 575px) {

	body,
	.skills{
		font-size: 13px;
	}
	.logo-top{
		top: 25px;
		left: 50%;
		transform: translateX(-50%);
	}
	.h-100vh{
		padding: 100px 0;
	}

}

/*
|--------------------------------------------------------------------------
| End Responsiveness Media Queries
|--------------------------------------------------------------------------
*/