:root {
	/* text colors */
	--primary-text-color: #6D758F;
	--secondary-text-color: #262626;
	--thirdly-text-color: #71727A;
	--fourth-text-color: #353E5C;
	--btn-dark-text-color: #FFF;
	--form-placeholder-text: #B4B9C9;
	--form-link-text-color: #19213D;
	--main-header-item-active-text-color: #FFFFFF;
	--main-header-user-name-text-color: #1F2024;
	--main-header-user-email-text-color: #71727A;
	--btn-light-text-color: #6D758F;
	--form-disable-text-color: #B4B9C9;
	--profile-password-comment-text-color: #B4B9C9;
	--main-content-header-user-text-color: #B4B9C9;
	--project-text-color: #475467;

	/* background colors */
	--primary-background-color: #FFF;
	--secondary-background-color: #F8FAFF;
	--btn-dark-background-color: #6D758F;
	--btn-light-background-color: #FFF;
	--btn-thirdly-background-color: #B4B9C9;
	--upwork-link-after-background-color: #F8FAFF;
	--header-background-color: #F1F3F7;
	--main-header-item-background-color: #E1E4ED;
	--main-header-item-active-background-color: #6D758F;

	/* Title colors */
	--title-secondary-color: #E1E4ED;
	--title-third-color: #b4b9c9;

	/* Borders */
	--btn-light-border-color: #E1E4ED;
	--btn-secondary-border-color: #D0D5DD;
	--btn-thirdly-border-color: #b4b9c9;
	--btn-fourth-border-color: #6D758F;
	--project-border-color: #EAECF0;
	--project-inputs-border-color: #F1F3F7;


	/* Non auth */
	--modal-input-color: #F1F3F7;
	--main-header-user-sign-out-background-color: #E1E4ED;
	--input-toggle-checked: #353E5C !important;
	--btn-social-border-color: #D0D5DD;
	--btn-social-background-color: #939BB5;
	--main-content-background-color: #F8FAFF;
}

body {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: calc(24/16);

	background-color: var(--primary-background-color);
	color: var(--primary-text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

.list {
	list-style: none;
	padding: 0;
	margin: 0;
}


/*
=======================
Added new common classes
=======================
 */

.container {
	max-width: 1440px;
	padding-left: 40px;
	padding-right: 40px;

	@media screen and (min-width: 992px) {
		padding-left: 167px;
		padding-right: 167px;
	}
}

.container.container-main-content {
	padding: 0;
}

.my-80px {
	padding-top: 80px;
	padding-bottom: 80px;
}

.mb-30px {
	margin-bottom: 30px;
}

/*
=====================
Renew main classes
=====================
*/

.navbar {
	background-color: var(--header-background-color) !important;
	padding-top: 24px;
	padding-bottom: 24px;
}

.form-check-input {
	box-shadow: none;
	border: 1px solid var(--input-toggle-checked) !important;
}

.form-check-input:checked {
	background-color: var(--input-toggle-checked);
	border: none;
}

.form-check-input.radio {
	width: 24px;
	height: 24px;

	border: 2px solid #C5C6CC !important;
}

.form-check-input.radio:focus {
	box-shadow: none;
}

.form-check-input.radio:checked[type=radio] {
	background-color: #6D758F;
	border-color: #6D758F !important;
}

.form-switch .form-check-input {
	margin: 0 !important;
	height: 28px;
	width: 45px;
}

.form-switch .form-check-input {
	--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='LightSlateGray'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:focus {
	--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='LightSlateGray'/%3e%3c/svg%3e");
	box-shadow: none;
	border: none;
}

.form-switch .form-check-input:checked {
	background-position: right center;
	--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-label {
	font-size: 14px;
	margin-bottom: 12px;
	font-weight: 600;
	line-height: calc(20/14);
}

.form-control {
	padding-top: 10px;
	padding-bottom: 10px;

	font-size: 12px;
	font-weight: 400;
	color: var(--primary-text-color);
	line-height: calc(18/12);
	border: 1px solid var(--modal-input-color);

	box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.08);
}

.form-control:focus {
	color: var(--primary-text-color);
	border: 1px solid var(--modal-input-color);
	box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.08);
}

.form-control::placeholder {
	font-size: 12px;
	font-weight: 400;
	line-height: calc(18/12);
	color: var(--form-placeholder-text);
}

.form-text {
	margin-top: 6px;

	font-size: 12px;
	font-weight: 400;
	line-height: calc(12/12);


	opacity: 0.6;
}

.navbar-brand {
	display: flex;
	align-items: center;
	gap: 13px;

	color: inherit;
	font-size: 24px;
	font-weight: 800;
	line-height: calc(32/24);


	@media screen and (min-width:1128px) {
		margin-right: 80px;
	}


	@media screen and (min-width:1228px) {
		margin-right: 120px;
	}
}

.navbar-brand>span {
	@media screen and (max-width: 576px) {
		display: none;
	}
}

.navbar-brand::before {
	content: " ";
	display: inline-block;
	width: 28px;
	height: 28px;

	background-image: url('../images/icon/logo.svg');
	background-size: cover;
	background-repeat: no-repeat;
}

.nav-link {
	color: var(--primary-text-color);
	font-size: 16px;
}

.nav-link:focus,
.nav-link:hover {
	color: var(--primary-text-color);
}

.nav-link.active {
	color: var(--primary-text-color) !important;
	font-weight: 800;
}

.btn {
	padding: 12px 18px;

	font-family: Inter;
	font-size: 14px;
	font-weight: 600;
	line-height: calc(20/14);
}

.btn-dark {
	background-color: var(--btn-dark-background-color);
	color: var(--btn-dark-text-color);
	border: none;
}


.btn-light {
	background-color: var(--btn-light-background-color);
	color: var(--btn-light-text-color);

	border: 1px solid var(--btn-light-border-color);
	/* border: none; */
}

.accordion {
	border-radius: 6px;
	border: none;
	background-color: var(--btn-light-background-color);
}

.accordion-item {
	border-radius: 6px;
	border: 1px solid var(--btn-light-border-color) !important;
}


.accordion-button:not(.collapsed) {
	background-color: #FFFFFF;
}

.accordion-button:focus {
	border: none;
	box-shadow: none;
}

.accordion-button.collapsed {
	padding-bottom: 18px;
	padding-top: 18px;
}

.accordion-button {
	padding-top: 18px;

	border-radius: 6px;
	color: var(--primary-text-color) !important;

	font-family: Inter;
	font-size: 16px;
	font-weight: 600;
	line-height: calc(22/16);
}


.accordion-body {
	position: relative;
	padding-top: 0;
	padding-bottom: 24px;

	color: var(--primary-text-color);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: calc(22/14);
}

.accordion-body::after {
	content: ' ';
	display: block;

	position: absolute;
	width: calc(100% - 2px);
	height: 10px;
	top: -5px;
	left: 1px;

	background-color: var(--primary-background-color);
}

.accordion-button::after {
	width: 16px;
	height: 16px;
	background-size: contain;
	background-image: url('../images/icon/plus.svg');
}

.accordion-button:not(.collapsed)::after {
	width: 16px;
	height: 16px;
	background-image: url('../images/icon/close.svg');
}

/*
================
Modal
================
*/

.modal-content {
	padding: 50px 35px !important;
	border-radius: 0;
	border: none;
}

.modal-content.p30-32 {
	padding: 30px 32px !important;
}

.modal-header {
	padding: 0;
	margin-bottom: 28px;

	border-bottom: none;
}

.modal-title {
	text-align: center;


	color: var(--primary-text-color);
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 800;
	line-height: 24px;
}

.modal-text {

	color: var(--primary-text-color);
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	line-height: calc(22/16);
}

.modal-body {
	padding: 0;
}

/*
=====================
Added new classes for home page
=====================
*/

.home-page {
	background-color: var(--secondary-background-color);
}

.home-page-content-block {
	display: flex;
	flex-direction: column;
	gap: 50px;
	justify-content: space-between;
	align-items: center;

	@media screen and (min-width: 992px) {
		flex-direction: row;
	}
}

.home-page-content-block-desc {
	max-width: 467px;
}

.home-page-title {
	margin-bottom: 24px;

	font-family: Inter;
	font-size: 48px;
	font-weight: 800;
	line-height: 48px;
}

.home-page-text {
	margin-bottom: 32px;
}

.home-page-content-block-dark-btn {
	margin-right: 16px;
}

.home-page-content-block-dark-btn-text {
	display: flex;
	align-items: center;
	gap: 3px;
}

.home-page-img {
	width: 90%;
	max-width: 572px !important;

	@media screen and (min-width: 992px) {
		width: 354px !important;
	}

	@media screen and (min-width: 1200px) {
		width: 572px !important;
	}
}

/* Safari 13.1 -> 16.4 fix (media не поддерживает вложенность) */
.nav-bar-btn-container {
	display: block;
}

@media screen and (min-width: 992px) {
    .nav-bar-btn-container {
        display: unset !important;
    }
}

@media screen and (min-width: 992px) and (max-width: 1055px) {
    .nav-bar-btn-container {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }
}
/* End safari fix */

.nav-bar-btn-container-mobile {
    display: none;
}


.nav-item.mobile {
    display: none;

    @media screen and (max-width: 360px) {
        display: block;
    }
}

@media screen and (min-width: 360px) and (max-width: 992px) {

    .nav-bar-btn-container-mobile {
        display: block;
        margin-left: 10px;
        margin-right: auto;
    }

}


/*@media (max-width: 992px) {*/
/*    .nav-item.mobile {*/
/*        display: block;*/
/*    }*/
/*}*/

/*
========================
Sign up new classes
========================
*/

.sign-up {
	padding-top: 50px;
	padding-bottom: 50px;

	@media screen and (min-width: 992px) {
		padding-top: 227px;
		padding-bottom: 227px;
	}
}

.sign-up-desc-block {
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;

	@media screen and (max-width: 992px) {
		align-items: center;
	}
}

.sign-up-title {
	margin-bottom: 24px;

	font-size: 36px;
	font-weight: 800;
	line-height: calc(40/36);
}

.sign-up-text {
	margin-bottom: 50px;
	max-width: 330px;
}

.sign-up-item {
	display: flex;
	max-width: 500px;

	/* @media screen and (max-width: 991px) {
		justify-content: center;
	} */

}

.sign-up-item:not(:last-child) {
	margin-bottom: 24px;
}

.sign-up-item:last-child {
	@media screen and (max-width:992px) {
		margin-bottom: 40px;
	}
}

.sign-up-item::before {
	content: ' ';
	min-width: 16px;
	min-height: 16px;
	margin-right: 12px;
	margin-top: 4px;

	background-image: url('../images/icon/check_circle_icon.svg');
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
}

.sign-in-form,
.sign-up-form {
	height: fit-content;
	margin-top: auto;
	margin-bottom: auto;
	margin-left: auto;
	margin-right: auto;
	padding: 46px 32px;
	padding-top: 36px;
	max-width: 523px;

	border-radius: 8px;
	box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.08);
}

.sign-in-form,
.sign-up-form {
	@media screen and (min-width: 992px) {
		margin-right: 0;
		margin-left: auto;
	}
}

.sign-up-form-header {
	margin-bottom: 46px;
}

.sign-in-form-title,
.sign-up-form-title {
	color: var(--title-secondary-color);
	font-size: 48px;
	font-weight: 800;
	line-height: calc(48/48);
}

.sign-up-form-toggle-container {
	display: flex;
	padding: 0;
	align-items: center;
	gap: 10px;
	justify-content: end;
	padding-right: 13px;

	@media screen and (max-width: 992px) {
		justify-content: start;
		margin-top: 10px;
		padding-left: 10px;
	}
}

.sign-up-form-toggle-title {
	font-size: 14px;
	font-weight: 400;
	display: inline-block;
	vertical-align: middle;
}


.sign-up-form-main-body>div {
	margin-bottom: 24px;
}

@media screen and (min-width: 992px) {
	.sign-up-form-main-body>div:nth-child(even) {
		padding: 0;
		padding-left: 16px;
		padding-right: 13px;
	}

	.sign-up-form-main-body>div:nth-child(odd) {
		padding: 0;
		padding-right: 16px;
		padding-left: 13px;
	}
}


.sign-in-form-password-container,
.sign-up-form-password-container {
	position: relative;
}


.sign-in-form-password-toggle,
.sign-up-form-password-toggle {
	width: 12px;
	height: 12px;

	position: absolute;
	top: 49px;
	right: 20px;

	background-image: url('../images//icon/eye.svg');
	background-size: contain;
	background-repeat: no-repeat;
}

.sign-up-form-upwork-link-group {
	padding: 0;
	position: relative;
	margin-bottom: 24px;
}

.sign-up-form-upwork-link-group::after {
	content: 'https: //';

	padding: 9px 9px;

	display: flex;
	align-items: center;

	position: absolute;
	left: 1px;
	bottom: 1px;
	height: 46px;
	background-color: var(--upwork-link-after-background-color);


	font-size: 14px;
	font-weight: 600;
	line-height: calc(20/14);

	border-radius: 4px 0px 0px 4px;
}

.sign-up-form-upwork-link-input {
	height: 48px;
	padding-left: 85px;
}


.sign-in-form-account-block,
.sign-up-form-account-block {
	display: flex;
	align-items: center;
	gap: 5px;
}

.sign-in-form-account-check,
.sign-up-form-account-check {
	font-size: 14px;
	font-weight: 400;
	line-height: calc(20/14);
}

.sign-in-form-account-check-btn,
.sign-up-form-account-check-btn {
	display: inline-block;

	font-size: 14px;
	font-weight: 400;
	line-height: calc(20/14);
	color: var(--form-link-text-color);

	cursor: pointer;
}

.sign-in-form-forgot-password,
.sign-up-form-create-btn-block {
	margin-top: 10px;
	text-align: start;

	@media screen and (min-width: 992px) {
		text-align: right;
	}
}

.sign-up-ver-block {
	display: flex;
	flex-direction: column;
	align-items: start;
	padding: 0;

	@media screen and (max-width: 992px) {
		align-items: center;
	}
}

.sign-up-ver-title {
	margin-bottom: 50px;

	color: var(--title-third-color) !important;
	font-size: 60px;
	font-weight: 800;
	line-height: calc(72/72);

	@media screen and (min-width: 1100px) {
		font-size: 72px;
	}
}

.sign-up-ver-text {
	font-size: 20px;
	font-weight: 800;
	line-height: calc(28/20);
}

.sign-up-ver-secondary-text {
	margin-top: 24px;
	margin-bottom: 200px;
	font-size: 16px;
	line-height: calc(24/16);
}

.sign-up-ver-secondary-text.px-50 {
	padding-left: 50px;
	padding-right: 50px;
}

.sign-up-ver-secondary-text>span {
	color: #19213D;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: calc(24/16);
}

.sign-up-ver-link {
	color: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: calc(20/14);
	text-decoration-line: underline;
}

.sign-up.verification-1 {
	padding-top: 80px;
}

.sign-in-form-title.verification-1 {
	margin-bottom: 81px;

	color: var(--title-third-color);
	line-height: 48px;
}

.sign-in-ver-second-title.verification-1 {
	margin-bottom: 31px;

	font-size: 18px;
	font-weight: 800;
	line-height: 24px;
}

.sign-up-verification-1-video-img {
	width: 100%;
	max-width: 551px;
	margin-bottom: 20px;
}

/*
========================
Sign in new classes
========================
*/

.sign-in-title {
	font-size: 30px;
	font-weight: 600;
	line-height: calc(38/30);
}

.sign-in-second-title {
	font-family: Roboto;
	font-size: 16px;
	font-weight: 600;
	line-height: calc(24/16);
	color: var(--title-third-color);
}

.sign-in-text {
	font-weight: 500;
	line-height: calc(20/14);
}

.sign-in-star-block {
	display: flex;
	justify-content: center;
	gap: 4px;
}


.sign-in-form-checkbox-remind-input {
	width: 16px;
	height: 16px;

	border: 1px solid #D0D5DD;
}

.sign-in-form-checkbox {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;

	gap: 10px;
}

.sign-in-form-checkbox-remind-label {
	font-weight: 500;
	line-height: calc(20/14)
}

.sign-in-form-forgot-password {
	font-style: normal;
	font-weight: 600;
	line-height: calc(20/14);
	color: inherit;
	text-decoration: none;
	color: var(--input-toggle-checked);
}

.sign-in-form-social-item {
	padding-top: 10px;
	padding-bottom: 10px;

	display: flex;
	align-items: center;
	justify-content: center;

	background-color: var(--btn-social-background-color);

	border-radius: 8px;
	border: 1px solid var(--btn-social-border-color);
}

.sign-in-form-social-item.google {
	background-color: #FFF;
}

.sign-in-form-social-item>img {
	height: 24px;
	width: 24px;
}

.sign-in-forgot-password-text {
	font-size: 18px;
	font-weight: 800;
	line-height: calc(24/18);
}

.sign-in-forgot-password-secondary-text {
	font-family: Roboto;
	font-size: 16px;
	font-weight: 500;
	line-height: calc(24/16);
}

.sign-in-forgot-password-back-btn {
	cursor: pointer;
	font-weight: 600;
	line-height: calc(20/14);
	text-decoration-line: underline;
	color: inherit;
}

.sign-in-forgot-password-resend {
	cursor: pointer;
	color: "#175CD3";
	font-weight: 600;
	line-height: calc(20/14);
	text-decoration: none;
}

.form-text.forgot-pas {
	margin-top: 12px;

	display: flex;
	align-items: center;
	gap: 8px;


	color: var(--profile-password-comment-text-color);
	font-family: Roboto;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
}

.form-text.forgot-pas::before {
	content: ' ';
	width: 20px;
	height: 20px;

	background-image: url("../images/icon/success.svg");
	background-repeat: no-repeat;
	background-size: cover;
	display: inline-block;

}

.sign-in-ver-second-title {
	margin-bottom: 60px;

	font-family: Inter;
	font-size: 36px;
	font-weight: 800;
	line-height: calc(40/36);
}



/*
=====================
Support page new classes
=====================
*/

.support {
	padding-top: 80px;
	padding-bottom: 180px;
}

.support-page-faq-block {
	padding: 0;
	padding-right: 30px;
	max-width: 493px;
}

.support-page-faq-tab-menu {
	margin-bottom: 32px;

	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 0;

	/* border: none; */
	border-bottom: 1px solid #E1E4ED;
}

.support-page-faq-tab-menu-item {
	/* border: none; */
	width: 25%;
}

.support-page-faq-tab-menu-item-btn {
	width: 100%;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
}

.support-page-faq-tab-menu-item-btn.active {
	border: none;
	font-weight: 400;
	border-bottom: 1px solid #6D758F !important;
}

.support-page-form-block-title {
	margin-bottom: 47px;

	color: var(--title-third-color);
}

.support-page-form-block-textarea-label {
	margin-bottom: 8px;
	font-size: 12px;
}

/*
=====================
Side bar new classes
=====================
*/

.main-header {
	max-width: 300px;
	background-color: var(--header-background-color) !important;

	padding: 20px 10px;
	padding-left: 20px;

	@media screen and (min-width:992px) {
		width: 300px;
		padding: 81px 40px;
	}
}

.navbar-brand.main>span {
	display: none;

	@media screen and (min-width: 992px) {
		display: block;
	}
}

.navbar-brand.main {
	width: 100%;
	margin: 0;
	margin-bottom: 81px;
	display: flex !important;
	justify-content: center;
	align-items: center;
	gap: 13px;
}

.main-header-item {
	width: 100%;
	max-width: 212px;
	margin-bottom: 15px;
	padding: 10px 12px;

	background-color: var(--main-header-item-background-color);
	border-radius: 12px;
}

.main-header-item:last-child {
	margin-bottom: 0;
}

.main-header-item>a {
	padding: 0;
	color: var(--thirdly-text-color);
	font-size: 12px !important;
	font-weight: 700;
	line-height: 12px;
}

.main-header-item>a.main {
	display: none;

	@media screen and (min-width: 576px) {
		display: block;
	}
}

.main-header-item>a.second {
	display: none;

	@media screen and (max-width: 575px) {
		display: block;
	}
}

.main-header-item.active {
	background-color: var(--main-header-item-active-background-color);
}

.main-header-item.active>a {
	color: var(--main-header-item-active-text-color);
}

.main-header-item.active>a.main {
	display: none;

	@media screen and (min-width: 576px) {
		display: block;
	}
}

.main-header-item.active>a.second {
	display: none;

	@media screen and (max-width: 575px) {
		display: block;
	}
}

.main-header-user {
	margin-top: 95px;

	@media screen and (max-width:767px) {
		display: none;
	}
}

.main-header-log-out {
	display: none;

	@media screen and (max-width:767px) {
		margin-top: 90px !important;
		display: block;
	}
}

.main-header-user-title {
	margin-bottom: 4px;

	color: var(--main-header-user-name-text-color);

	font-size: 14px;
	font-weight: 800;
}

.main-header-user-text {
	color: var(--main-header-user-email-text-color);

	font-size: 12px;
	font-weight: 400;
	line-height: calc(16/12);
	letter-spacing: 0.12px;
}

.main-header-sign-out-btn {
	margin-top: 10px;
	padding-top: 8px;
	padding-bottom: 8px;


	color: var(--thirdly-text-color);

	font-family: Inter;
	font-size: 12px;
	font-weight: 700;

	border: none;
	border-radius: 12px;
	background-color: var(--main-header-user-sign-out-background-color);
}

/*
=====================
Main content new classes
=====================
*/

.main-content {
	width: 100%;
	max-width: 1140px;


	background-color: #F8FAFF;

	padding: 5px 15px;


	@media screen and (min-width: 576px) {
		padding: 10px 30px;
	}

	@media screen and (min-width: 768px) {
		padding: 15px 45px;
	}

	@media screen and (min-width: 1200px) {
		padding: 20px 60px;
	}
}

.main-content-header {
	margin-bottom: 20px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	@media screen and (max-width:576px) {
		flex-wrap: wrap;
	}

	@media screen and (min-width: 768px) {
		margin-bottom: 35px;
	}

	@media screen and (min-width: 1200px) {
		margin-bottom: 49px;
	}
}

.main-content-header-home {
	display: flex;
	align-items: center;
}

.main-content-header-home-devide {
	margin-left: 8px;
	margin-right: 8px;

	color: #8C8C8C;
	font-family: Roboto;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
}

.main-content-header-home.with-btn {
	flex-wrap: wrap;
	width: 100%;
	row-gap: 20px;
}

.main-content-plugin-block {
	padding: 4px 11px;

	display: flex;
	align-items: center;
	gap: 10px;

	border: 1px solid var(--btn-thirdly-border-color);
	border-radius: 8px;
}

.main-content-plugin-icon {}

.main-content-plugin-text {
	font-size: 14px;
	/* line-height: 20px; */
}




.main-content-header-title {
	font-size: 30px;
	font-weight: 800;
	line-height: calc(36/30);
}




.main-content-header-home.with-btn>.main-content-header-title {
	@media screen and (min-width: 992px) {
		margin-right: 80px;
	}

	@media screen and (min-width: 1200px) {
		margin-right: 190px;
	}

	@media screen and (min-width: 1400px) {
		margin-right: 330px;
	}
}



.main-content-header-home-text {
	color: var(--secondary-text-color);
	font-family: Roboto;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
}

.main-content-title {
	margin-bottom: 20px;

	color: var(--title-third-color);
	font-family: Inter;
	font-size: 24px;
	font-weight: 800;
	line-height: calc(32/24);
}

.main-content-secondary-title {
	color: var(--btn-light-border-color);
	margin-bottom: 40px;

	font-family: Inter;
	font-size: 36px;
	font-weight: 800;
	line-height: calc(40/36);
}


.main-content-text {
	margin-bottom: 40px;
	color: var(--primary-text-color);

	font-family: Inter;
	font-size: 16px;
	font-weight: 400;
	line-height: calc(24/16);
}


.main-content-block {
	padding: 20px 10px;

	border-radius: 8px;
	outline: 1px solid var(--btn-light-border-color);
	background: var(--primary-background-color);

	box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.08);

	@media screen and (min-width: 576px) {
		padding: 30px 15px;
	}

	@media screen and (min-width: 768px) {
		padding: 30px 25px;
	}

	@media screen and (min-width: 1200px) {
		padding: 46px 32px;
	}
}

.main-content-block.small-p {
	padding: 10px 5px;

	@media screen and (min-width: 576px) {
		padding: 15px 10px;
	}

	@media screen and (min-width: 768px) {
		padding: 20px 21px;
	}

	@media screen and (min-width: 1200px) {
		padding: 30px 32px;
	}
}

.main-content-header-user-container {
	margin-right: auto;
}

.main-content-header-user-name {
	margin-bottom: 5px;

	color: var(--main-content-header-user-text-color);
	font-family: Inter;
	font-size: 30px;
	font-style: normal;
	font-weight: 800;
	line-height: 36px;
}

.main-content-header-user-email {
	color: var(--thirdly-text-color);
	font-family: Inter;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0.12px;
}

/*
=====================
Profile new classes
=====================
*/

.main-content-container.profile {
	margin-bottom: 49px;
}

.profile-page-upwork {
	display: inline-block;
	padding: 20px 12px;


	border-radius: 4px;
	background-color: var(--header-background-color);
}

.profile-page-upwork-text {
	font-size: 14px;
	font-weight: 600;
	line-height: calc(20/14);
}

.profile-page-upwork-link {
	word-wrap: break-word;
	font-size: 14px;
	line-height: calc(20/14);


	color: inherit;

	@media screen and (max-width:992px) {
		display: none;
	}
}

.profile-page-upwork-link-mobile {
	word-wrap: break-word;
	font-size: 14px;
	line-height: calc(20/14);
	color: inherit;

	@media screen and (min-width:993px) {
		display: none;
	}
}

.profile-page-form-password {
	color: var(--form-disable-text-color);
}

.profile-page-payment-data-container {
	display: flex;
	flex-wrap: nowrap;
}

.profile-page-payment-container {
	max-width: 786px;
}

.profile-page-payment-data-block {
	display: flex;
	flex-wrap: wrap;
	row-gap: 24px;
	column-gap: 32px;
}

.profile-page-payment-data-block>div:nth-child(odd) {
	width: 100%;

	@media screen and (min-width: 992px) {
		width: 377px;
		max-width: 377px;
	}
}

.profile-page-payment-data-block>div:nth-child(even) {
	width: 100%;

	@media screen and (min-width: 992px) {
		width: 130px;
		max-width: 130px;
	}
}

.profile-page-payment-card-number-label {
	position: relative;
}

.profile-page-payment-card-number-label::before {
	content: ' ';

	width: 34px;
	height: 24px;

	display: block;
	position: absolute;
	top: 40px;
	left: 8px;

	background-repeat: no-repeat;
	background-image: url("../images/icon/mastercard.svg");
	background-size: contain;

}

.profile-page-payment-delete {
	max-width: 215px !important;



	display: flex;
	align-items: end;
	gap: 10px;

	cursor: pointer;

	font-family: Inter;
	font-size: 14px;
	line-height: calc(20/14);
}

.profile-page-payment-delete::before {
	content: ' ';

	display: block;
	width: 24px;
	height: 24px;

	background-image: url('../images/icon/trash-bin.svg');
	background-size: contain;
	background-repeat: no-repeat;
}

.profile-page-payment-footer {
	display: flex;
	align-items: center;
	gap: 100px;
}

.profile-page-payment-add {
	cursor: pointer;

	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}

.profile-page-delete-profile {
	display: flex;
	align-items: center;
	gap: 10px;

	cursor: pointer;

	color: #FE566B;
	font-size: 14px;
}

.profile-page-delete-profile::before {
	content: ' ';

	display: block;
	width: 24px;
	height: 24px;

	background-image: url('../images/icon/trash-bin-red.svg');
	background-size: contain;
	background-repeat: no-repeat;
}

.profile-page-delete-profile::after {
	content: ' ';

	display: block;
	width: 16px;
	height: 16px;

	background-image: url('../images/icon/information-red.svg');
	background-size: contain;
	background-repeat: no-repeat;
}


/*
=====================
Offer new classes
=====================
*/

.main-content-header-home.offer {
	width: 100%;
}

.main-content-header-title.offer {
	margin-right: auto !important;
}

.offer-main-content-container {
	/* display: flex; */
	/* flex-wrap: wrap; */
	/* justify-content: center; */

	@media screen and (min-width: 992px) {
		/* flex-wrap: nowrap; */
		/* padding-left: 24px; */
		/* gap: 30px; */
	}
}

.offer-main-content-first-block {
	/* @media screen and (min-width: 992px) {
		width: 100%;
		max-width: 397px;
	} */
}

.offer-main-content-tab-menu-list {}

.offer-main-content-tab-menu-item {
	margin-right: 46px;

}

.offer-main-content-tab-menu-btn {
	padding: 13px 2px;
	color: var(--primary-text-color);
	text-align: center;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	border-radius: 0px !important;
}

.offer-main-content-tab-menu-btn.active {
	color: var(--fourth-text-color) !important;

	background-color: transparent !important;

	border-bottom: 4px solid var(--btn-fourth-border-color);
}

.offer-main-content-first-block-text {
	margin-bottom: 45px;
	max-width: 100% !important;
}

.offer-main-content-first-block-list {
	display: flex;
	gap: 20px;
	flex-direction: column;
	margin-bottom: 30px;

	@media screen and (min-width: 992px) {
		flex-direction: row;
	}
}

.offer-main-content-first-block-item {
	margin-bottom: 0 !important;
	display: flex;
	align-items: flex-start !important;
	flex-basis: calc((100%) / 5);
	/* flex-basis: calc((100% -кол-во маржинов в строке * значение маржина) / кол-во элементов в строке); */
}

.offer-main-content-first-block-title-wrapper {
	margin-bottom: 24px;

	display: flex;
	justify-content: start;
	align-items: center;
	gap: 30px;
}

.offer-main-content-first-block-title-video {
	/* padding: 8px 12px; */
	/* padding-left: 12px; */
	/* padding-right: 12px; */
	width: 141px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 32px;

	color: var(--btn-dark-background-color);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;

	border-radius: 8px;
	border: 1px solid var(--btn-thirdly-border-color);
}

.offer-main-content-first-block-title-video::before {
	content: ' ';
	display: block;
	width: 16px;
	height: 16px;

	background-image: url('../images/icon/play.svg');
	background-repeat: no-repeat;
	background-size: cover;

}

.offer-main-content-header {
	margin-bottom: 50px;

	color: var(--primary-text-color);
	font-family: Inter;
	font-size: 30px;
	font-style: normal;
	font-weight: 800;
}

.offer-main-content-second-block {
	display: flex;
	gap: 48px;
	flex-direction: column;

	@media screen and (min-width: 992px) {
		flex-direction: row;
	}
}

.main-content-secondary-title.offer {
	margin-bottom: 20px;

	columns: var(--title-secondary-color);
	font-size: 30px;
	font-style: normal;
	font-weight: 800;
	line-height: 36px;
}

.offer-main-content-second-block-text {
	margin-bottom: 20px;

	color: var(--primary-text-color);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
}

.offer-section-block-red-text {
	padding: 0;
	margin: 0;
	margin-top: 10px;

	color: #FE566B;
	font-family: Inter;
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
}

.offer-section-block {
	padding: 24px;
	background-color: var(--main-content-background-color);
}

.offer-section-block.first {
	margin-bottom: 22px;
}

.offer-section-block-title {
	padding: 0;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	overflow: visible;

	color: var(--primary-text-color);
	font-family: Inter;
	font-size: 14px;
	font-weight: 600;
	line-height: calc(20/14);

	@media screen and (min-width: 1400px) {
		gap: 12px;
	}
}

.offer-section-block-title::after {
	content: ' ';
	padding-right: 12px;
	display: block;
	width: 16px;
	height: 16px;

	background-image: url('../images/icon/information.svg');
	background-size: cover;
	background-repeat: no-repeat;
}

.offer-section-percent-btn-block {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.offer-section-percent-btn-parent {
	width: 100%;
}

.offer-section-percent-btn {
	padding: 5px;

	cursor: pointer;

	text-align: center;
	color: var(--btn-light-text-color);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 20px;

	border-radius: 8px;
	border: 1px solid var(--btn-secondary-border-color);
	background: var(--btn-light-background-color);
	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.offer-section-percent-btn:hover,
.offer-section-percent-btn:focus {
	background-color: #d3d4d5;
}

.offer-section-percent-btn.active {
	color: var(--btn-dark-text-color);
	background: var(--btn-dark-background-color);
}

.offer-section-percent-btn::placeholder {
	font-size: 10px;
}

.offer-section-block-radio-conrainer {
	padding: 0;
	display: flex;
	align-items: center;
	column-gap: 20px;

	@media screen and (min-width: 992px) {
		column-gap: 65px;
	}
}

.offer-section-block-radio {
	padding: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.form-check-label.offer-apply {
	font-size: 12px;
	line-height: calc(18/12);
}

.offer-section-block-btn-container {
	display: flex;
	align-items: center;
	gap: 17px;
}

.offer-section-block-btn-container.general-offer {
	display: flex;
	justify-content: space-between;
}

.offer-section-block-btn {
	padding-left: 18px !important;
	padding-right: 18px !important;
	padding: 0;
	height: 40px;
	background-color: var(--btn-thirdly-background-color);
}

.offer-section-block-btn.deactivate {
	color: var(--primary-text-color);
	border: 1px solid var(--btn-light-border-color);
	background: var(--btn-light-background-color);
}

.offer-section-text-after-btn {
	margin-bottom: 0;

	color: #FE566B;
	display: inline-block;

	font-family: Inter;
	font-size: 12px;
	font-weight: 400;
	line-height: calc(18/12);
}

.offer-main-content-header-plugin-block {
	display: flex;
	align-items: center;
	gap: 10px;
}

.offer-main-content-header-plugin-block-install {
	padding: 4px 12px;
	border-radius: 8px;

	color: var(--btn-dark-text-color);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;

	border: 1px solid var(--btn-thirdly-border-color);
	background: var(--btn-dark-background-color);
}

.offer-main-content-header-plugin-block-installed {
	padding: 4px 12px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 10px;

	color: var(--primary-text-color);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;

	background-color: var(--primary-background-color);
	border: 1px solid var(--btn-thirdly-border-color);
}

.offer-main-content-header-plugin-block-installed::before {
	content: ' ';
	display: inline-block;
	width: 15px;
	height: 15px;

	border-radius: 50%;
	background-color: var(--btn-dark-background-color);
}


/* Modals */
.modal-dialog.offer {
	margin-top: 200px;
	width: 90%;
	padding: 0;

	@media screen and (min-width: 576px) {
		width: 100%;
		max-width: 430px;
	}

}

.modal-content.offer-new-freelancer {
	width: 456px;
	max-width: 456px !important;
}

.modal-dialog.offer-new-freelancer {
	margin-top: 100px;
	max-width: 456px !important;
}

.modal-dialog.custom-offer-new-freelancer {
	margin-top: 100px;
	max-width: 550px !important;
}

.modal-content.custom-offer-new-freelancer {
	width: 550px;
	max-width: 550px !important;
}

.offer-modal-new-freelancer-block {
	flex-direction: column;
	gap: 10px;

	margin-bottom: 42px;
}

.offer-modal-new-freelancer-text {
	margin: 0;
	text-align: center;
}

.offer-section-copy-link-block {
	height: 40px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding-right: 24px;
	padding-left: 24px;

	color: var(--primary-text-color);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;

	background-color: var(--header-background-color);
}

.offer-section-copy-link-block>.normal {
	margin: 0;
	display: none;

	@media screen and (min-width: 992px) {
		display: inline-block;
	}
}

.offer-section-copy-link-block>.mobile {
	margin: 0;
	display: inline-block;

	@media screen and (max-width: 404px) {
		display: none;
	}

	@media screen and (min-width: 992px) {
		display: none;
	}
}

.offer-section-copy-link-btn {
	padding: 8px 12px;

	color: var(--btn-dark-text-color);
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: 18px;

	border: none;
	border-radius: 4px;
	background: var(--btn-thirdly-background-color);
	box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.08);
}

/* Offer table */
.project-page-section-contracts-table-header-item.offer-table-discount {
	width: 21.8%;
	padding: 0;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 222px;
	}
}

.project-page-section-contracts-table-header-item.offer-table-reward {
	width: 23%;
	padding: 0;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 249px;
	}
}

.project-page-section-contracts-table-header-item.offer-table-registrations {
	width: 12.4%;
	padding: 0;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 127px;
	}
}

.project-page-section-contracts-table-header-item.offer-table-code {
	width: 13.1%;
	padding: 0;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 134px;
	}
}

.project-page-section-contracts-table-header-item.offer-table-projects {
	width: 13.1%;
	padding: 0;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 134px;
	}
}

.project-page-section-contracts-table-header-item.offer-table-fee {
	width: 12.6%;
	padding: 0;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 129px;
	}
}

.project-page-section-contracts-table-header-item.offer-table-discount::after,
.project-page-section-contracts-table-header-item.offer-table-reward::after,
.project-page-section-contracts-table-header-item.offer-table-registrations::after,
.project-page-section-contracts-table-header-item.offer-table-code::after,
.project-page-section-contracts-table-header-item.offer-table-projects::after {
	content: ' ';
	display: inline-block;
	width: 14px;
	height: 14px;
	position: relative;
	top: 3px;

	background-image: url('../images/icon/arrow-down.svg');
	background-repeat: no-repeat;
	background-size: contain;
}

.offer-page-table-empty {
	padding: 16px;
	text-align: center;

	background-color: var(--primary-background-color);
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	border: 1px solid var(--gray-200, #EAECF0);
	border-top: none;
}

.offer-page-table-title {
	margin-top: 25px;
	margin-bottom: 25px;

	color: var(--primary-text-color);
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 800;
	line-height: 32px;
}

.offer-page-table-empty-img {}

.offer-page-table-empty-text {
	margin: 0;
	margin-top: 11px;

	font-family: Roboto;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
}


/* Offer table */

.offer-modal-succes-btn-block {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

}

.modal-header.modal-deactivated {
	margin-bottom: 10px;
}

.offer-modal-succes-btn {
	padding: 12px;
	font-size: 12px;
	line-height: 12px;
}

.offer-modal-succes-btn.btn-light {
	background-color: #F8FAFF;
}

.offer-modal-deactivated-seccess-text {
	margin-top: 12px;
	margin-bottom: 12px;
}

/*
=====================
UNREGISTRED AFFILIATE PAGE
=====================
*/

.unregistred-affiliate-header {
	margin-bottom: 50px;
}

.unregistred-affiliate-header>div {
	@media screen and (max-width:576px) {
		margin-bottom: 15px;
	}
}

.unregistred-affiliate-cred-name {
	margin-bottom: 4px;

	color: var(--form-link-text-color);
	font-family: Rubik;
	font-size: 20px;
	font-weight: 700;
	line-height: 22px;
}

.unregistred-affiliate-cred-position {
	margin: 0;
	;

	color: rgba(0, 0, 0, 0.60);
	font-family: Rubik;
	font-size: 18px;
	font-weight: 400;
	line-height: 20px;
}


.unregistred-affiliate-rated,
.unregistred-affiliate-job-succcess {
	margin-right: 20px;

	display: flex;
	align-items: center;
	gap: 5px;

	font-family: Rubik;
	font-size: 14px;
	font-weight: 400;
}


.unregistred-affiliate-rated::before,
.unregistred-affiliate-job-succcess::before {
	content: ' ';
	display: inline-block;
	height: 30px;
	width: 30px;

	background-image: url('../images/icon/crown-in-a-round.svg');
	background-size: cover;
}

.unregistred-affiliate-stats-title {
	color: var(--input-toggle-checked);
	font-family: Rubik;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 22px;
}

.unregistred-affiliate-stats {
	margin-bottom: 74px;
}

.unregistred-affiliate-stats-text {
	color: var(--input-toggle-checked);
	font-family: Rubik;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
}

.unregistred-affiliate-work-history {
	color: var(--form-link-text-color);
	font-family: Rubik;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 22px;
}

.unregistred-affiliate-btn {
	padding: 26px 44px;

	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 800;
	line-height: 24px;
}

/* Modal part */

.modal-dialog.modal-share-offer {
	margin-top: 200px;

	@media screen and (min-width:992px) {
		max-width: 711px !important;
	}
}

.modal-content.share-offer {
	padding: 36px !important;
}

.profile-page-upwork.share-offer-modal {
	padding-top: 17px;
	padding-bottom: 17px;

	margin-bottom: 33px;
}

/*
=====================
Dashboard Freelancer PAGE
=====================
*/

.main-content-header.dashboard {
	margin-bottom: 30px;
}

.dashboard-main-content-header-btn {
	padding: 12px;
}

.dashboard-freelance-contract-container {
	margin-bottom: 27px;

	display: flex;
	gap: 27px;

	@media screen and (max-width: 992px) {
		flex-wrap: wrap;
	}
}


.dashboard-freelance-contract-block {
	width: 100%;
	padding: 24px;
}

.dashboard-freelance-contract-block>p {
	margin-bottom: 0;
}

.dashboard-freelance-contract-number {
	margin-right: 11px;

	font-size: 24px;
	font-weight: 800;
	line-height: 20px;
	letter-spacing: 1.44px;
	text-transform: uppercase;
}

.dashboard-freelance-contract-type {
	margin-right: 56px;

	display: flex;
	align-items: center;
	gap: 11px;

	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
}

.dashboard-freelance-contract-type::after {
	content: ' ';
	display: inline-block;
	height: 16px;
	width: 16px;

	background-image: url('../images/icon/information.svg');
	background-size: cover;
	background-repeat: no-repeat;
}

.dashboard-freelance-contract-link {
	display: flex;
	align-items: center;
	gap: 9px;

	cursor: pointer;

	color: inherit;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	text-decoration-line: underline;
}

.dashboard-freelance-contract-link::after {
	content: ' ';
	display: inline-block;
	height: 20px;
	width: 20px;

	background-image: url('../images/icon/arrow-up-right.svg');
	background-size: cover;
	background-repeat: no-repeat;
}

.dashboard-freelance-statistic-container {
	margin-bottom: 77px;

	display: flex;
	gap: 30px;

	@media screen and (max-width: 992px) {
		flex-wrap: wrap;
	}
}

.dashboard-freelance-statistic-item-block {
	width: 100%;
}

.dashboard-freelance-statistic-item {
	padding: 10px;

	background-color: #F1F3F7;
	border-radius: 8px;
	border: 1px solid var(--btn-light-border-color);


	@media screen and (min-width:1400px) {
		padding: 24px;
	}

}

.dashboard-freelance-statistic-number {
	margin-top: 11px;
	margin-bottom: 12px;

	font-size: 18px;
	font-weight: 600;
	line-height: 14px;
}

.dashboard-freelance-statistic-text {
	margin-bottom: 11px;

	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 14px;
}

.dashboard-freelance-start-new {
	width: 100%;
	max-width: 569px;
}

.main-content-secondary-title.dashboard-page {
	margin-bottom: 30px;

	color: var(--title-third-color);
	font-size: 36px;
	font-weight: 800;
	line-height: 36px;
}

.main-content-block-title {
	margin-bottom: 22px;

	color: var(--btn-light-text-color);
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 800;
	line-height: calc(24/18)
}

.dashboard-freelance-verify-input {
	width: 100%;
}

.dashboard-input-btn {
	padding: 10px 11px;
	position: absolute;
	right: 4px;
	bottom: 4px;

	color: var(--btn-dark-text-color);
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: 11px;

	border-radius: 4px;
	background: var(--btn-thirdly-background-color);
	box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.08);
}


.dashboard-input-btn:focus,
.dashboard-input-btn:hover {
	border: 1px solid var(--btn-thirdly-border-color);
}


.dashboard-input-btn.verify:focus,
.dashboard-input-btn.verify:hover {
	background-color: var(--btn-dark-background-color);
	color: var(--btn-dark-text-color);
	border-color: var(--btn-fourth-border-color);
}

.main-content-text.dashboard {
	max-width: 450px;

	margin-bottom: 27px
}

/* MODALS */

.modal-dialog.dashboard-modal {
	margin-top: 150px;

	@media screen and (min-width:992px) {
		max-width: 639px !important;
	}
}

.modal-header.dashboard {
	margin-bottom: 24px;
	justify-content: center;
}

.dashboard-modal-title {
	text-align: center;
	font-family: Inter;
	font-size: 18px !important;
	font-style: normal;
	font-weight: 800;
	line-height: 18px;
}

.dashboard-modal-text {
	margin-bottom: 45px;
	padding: 0 60px;

	text-align: center;
	font-size: 16px !important;
	line-height: 24px;
}

.dashboard-input-btn.generate-modal {
	right: 4px;
	bottom: 3.5px;

	background-color: var(--btn-dark-background-color);
}

.dashboard-input-btn.generate-modal:focus,
.dashboard-input-btn.generate-modal:hover {
	background-color: var(--secondary-background-color);
	color: var(--btn-light-text-color);
}

.modal-content.generated-code {
	padding-top: 22px !important;
}

.dashboard-modal-top-link {
	margin-bottom: 18px;


	text-align: end;
	cursor: pointer;
	color: var(--primary-text-color);
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 12px;
	text-decoration-line: underline;
}

.modal-header.generated-code {
	margin-bottom: 24px;
}

.main-content-block.dashboard-modal {
	padding: 24px;
}

.form-control.dashboard-modal.generated-code {
	width: 100%;
	padding-right: 70px;
}

.form-control.dashboard-modal.generated-code:disabled {
	border-color: #E9ECEF;
}

.modal-header.not-generated {
	margin-bottom: 24px;
}

.modal-dialog.dashboard-modal.payout {
	margin-top: 50px;
}

.modal-header.payout {
	margin-bottom: 24px;
}

.dashboard-payout-form-text {
	margin: 0;

	font-weight: 600;
	font-size: 14px;
}

.dashboard-payout-form-btn {
	padding: 8px 12px;

	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: 18px;/
}


.profile-page-payment-data-block.dashboard-payout>div:nth-child(odd) {
	width: 100%;

	@media screen and (min-width: 992px) {
		width: 293px;
		max-width: 293px;
	}
}

.profile-page-payment-data-block.dashboard-payout>div:nth-child(even) {
	width: 100%;

	@media screen and (min-width: 992px) {
		width: 130px;
		max-width: 130px;
	}
}

.btn-dark.dashboard-payout-modal {
	padding: 10px 18px;
}

.modal-dialog.dashboard-modal.verify {
	max-width: 569px !important;
}

.modal-title.verify {
	text-align: left;
}

.dashboard-modal-top-link.verify-success {
	font-weight: 600;
}

.dashboard-modal-title.verify-success {
	margin-bottom: 22px;
}

.form-control.verify-success-modal-div {
	padding-top: 17px;
	padding-bottom: 17px;
	box-shadow: none;
}

.dashboard-modal-successfuly-verified-first-block-tick {
	display: flex;
	align-items: center;
	gap: 5px;

	position: absolute;
	right: 17px;
	top: 17px;

	/* color: var(--btn-light-text-color); */
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: 18px;
}


.dashboard-modal-successfuly-verified-first-block-tick::before {
	content: "  ";
	width: 20px;
	height: 20px;
	display: inline-block;

	background-image: url('../images/icon/tick.svg');
	background-size: cover;
	background-repeat: no-repeat;
}


.modal-header.verify-second-block {
	margin-bottom: 22px !important;
}

.dashboard-modal-successfuly-verified-second-block-text-2 {
	margin-bottom: 12px;

	color: var(--btn-light-text-color);
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 20px;
}

.dashboard-modal-verify-secces-btn {
	padding-top: 10px;
	padding-bottom: 10px;
}

.modal-header.not-verified {
	margin-bottom: 22px;
}

.dashboard-modal-successfuly-non-verified-second-title {
	display: flex;
	align-items: center;
}


.dashboard-modal-successfuly-non-verified-second-title::after {
	content: ' ';

	margin-left: 12px;
	width: 20px;
	height: 20px;
	display: block;


	background-image: url('../images/icon/information.svg');
	background-repeat: no-repeat;
	background-size: cover;
}

.modal-content.verify-congratulation {
	padding-top: 50px !important;
}

.modal-header.verify-congratulation {
	margin-bottom: 22px;
}

.btn-dark.modal-verify-congratulation {
	padding: 8px 12px;

	font-size: 12px;
	font-weight: 600;
}

.dashboard-modal-congratulation-information-logo {
	position: absolute;
	width: 16px;
	height: 16px;
	top: 16px;
	right: 16px;
}


.dashboard-modal-congratulation-text {
	margin-bottom: 12px;
	padding: 0;

	color: var(--primary-text-color);
	font-family: Inter;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.dashboard-modal-congratulation-text>a {
	color: inherit;

}


/*
=====================
Projects page Freelancer PAGE
=====================
*/

.main-content-header.projects {
	margin-bottom: 27px;
}


.project-page-section-header {
	margin-bottom: 30px;
}

.main-content-container.project-one {
	margin-bottom: 60px;
}

.project-page-section-header-count {
	padding: 2px 6px;

	color: #344054;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	line-height: 18px;

	background-color: var(--btn-light-background-color);
	outline: 1px solid var(--btn-social-border-color);
	border-radius: 6px;
	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}


.project-page-section-contracts-header {
	padding: 12px 25px;

	display: flex;
	flex-wrap: wrap;
	align-items: center;

	border-top-right-radius: 12px;
	border-top-left-radius: 12px;
	background-color: var(--btn-dark-text-color);
	border: 1px solid #EAECF0;
}

.project-page-section-contracts-checkbox {
	width: 20px;
	height: 20px;

	border-radius: 20% !important;
	border: 1px solid var(--btn-dark-background-color);
	background: var(--header-background-color);
}

.project-page-section-contracts-checkbox-continer {
	width: 20px;
	height: 20px;
	position: relative;
}

.project-page-section-contracts-table-body-input-checkbox {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
	z-index: 100;
}

.project-page-section-contracts-selected {
	color: #344054;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
}


.project-page-section-contracts-delete,
.project-page-section-contracts-approve {
	display: flex;
	align-items: center;
	gap: 10px;

	color: var(--primary-text-color);
	text-align: center;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 18px;
}

.project-page-section-contracts-checkbox {
	margin-right: 10px;
}


.project-page-section-contracts-selected,
.project-page-section-contracts-approve {
	margin-right: 15px;

	@media screen and (min-width: 768px) {
		margin-right: 28px;
	}
}

.project-page-section-contracts-approve::before {
	background-image: url('../images/icon/check.svg');
}

.project-page-section-contracts-delete::before {
	background-image: url('../images/icon/close-bold.svg');
}

.project-page-section-contracts-approve::before,
.project-page-section-contracts-delete::before {
	content: " ";
	display: block;
	width: 16px;
	height: 16px;

	background-size: contain;
	background-repeat: no-repeat;
}

.project-page-section-contracts-selected>span,
.project-page-section-contracts-approve>span,
.project-page-section-contracts-delete>span {
	display: none;

	@media screen and (min-width: 576px) {
		display: inline;
	}
}

.project-page-section-contracts-selected>.mobile,
.project-page-section-contracts-approve>.mobile,
.project-page-section-contracts-delete>.mobile {
	display: inline;

	@media screen and (min-width: 576px) {
		display: none;
	}
}



.project-page-section-contracts-table-container {
	overflow-y: scroll;
	width: 100%;

	@media screen and (min-width:992px) {
		overflow: visible;
	}
}


/* CHECKBOX FOR PROJECTS PART */
/* .project-page-section-contracts-table-input-checkbox {
	width: 20px;
	height: 20px;
} */

/* The container */
.project-page-section-contracts-table-input-continer {
	display: block;
	position: relative;
	height: 20px;
	width: 20px;
	margin-right: 12px;

	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.project-page-section-contracts-table-input-continer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.project-page-section-contracts-table-input-checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;


	border-radius: 5px;
	border: 1px solid var(--btn-fourth-border-color);
	background-color: var(--header-background-color);
}

/* On mouse-over, add a grey background color */
/* .project-page-section-contracts-table-input-continer:hover input~.project-page-section-contracts-table-input-checkmark {
	background-color: #ccc;
} */

/* When the checkbox is checked, add a blue background */
.project-page-section-contracts-table-input-continer input:checked~.project-page-section-contracts-table-input-checkmark {
	background-color: var(--header-background-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.project-page-section-contracts-table-input-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.project-page-section-contracts-table-input-continer input:checked~.project-page-section-contracts-table-input-checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.project-page-section-contracts-table-input-continer .project-page-section-contracts-table-input-checkmark:after {
	top: 2px;
	left: 2px;
	width: 14px;
	height: 14px;

	background-image: url('../images/icon/check-checkbox.svg');
	background-repeat: no-repeat;
	background-size: contain;
}

/* CHECKBOX FOR PROJECTS PART */


.project-page-section-contracts-table-header {
	width: 100%;

	border: 1px solid var(--project-border-color);
	border-top: none;


}

.project-page-section-contracts-table-header-block {
	width: 100%;
	display: block;
	padding: 10px 24px;
}

.project-page-section-contracts-table-header-line {
	display: block;
	width: 100%;
}

.project-page-section-contracts-table-header-item {
	color: var(--project-text-color);
	font-size: 12px;
	font-weight: 500;
	line-height: 18px;
	text-align: center;
}

.project-page-section-contracts-table-header-item.projects {
	text-align: start;

	width: 56%;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 640px;
		max-width: 640px;
	}
}

.project-page-section-contracts-table-header-item.projects::after {
	content: ' ';
	display: inline-block;
	width: 16px;
	height: 16px;
	position: relative;
	top: 3px;

	background-image: url('../images/icon/arrow-down.svg');
	background-repeat: no-repeat;
	background-size: contain;
}

.project-page-section-contracts-table-header-item.date {
	width: 15%;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 123px;
		max-width: 123px;
	}
}

.project-page-section-contracts-table-header-item.date::after {
	margin-left: 4px;
	content: ' ';
	display: inline-block;

	width: 16px;
	height: 16px;
	position: relative;
	top: 3px;

	background-image: url('../images/icon/arrow-down.svg');
	background-repeat: no-repeat;
	background-size: contain;
}

.project-page-section-contracts-table-header-item.confirm {
	width: 15%;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 129px;
		max-width: 129px;
	}
}

.project-page-section-contracts-table-header-item.confirm::after {
	content: ' ';
	display: inline-block;

	width: 1px;
	height: 16px;
}

.project-page-section-contracts-table-header-item.delete {
	width: 2%;
	color: #F9FAFB;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 35px;
		max-width: 20px;
	}
}



.project-page-section-contracts.main-wrapper {
	@media screen and (max-width: 1439px) {
		overflow-y: scroll;
	}
}

.project-page-section-contracts-table {
	width: 100%;
	display: block;
	overflow: visible;

	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	background-color: var(--primary-background-color);
	border: 1px solid var(--project-border-color);
	border-top: none;
}

.project-page-section-contracts-table-body {
	width: 100%;
	display: block;
	max-height: 216px;
	overflow: scroll;

	@media screen and (min-width: 1440px) {
		width: calc(100% + 20px);
	}

}

.project-page-section-contracts-table-line {
	display: block;
	padding: 18px 24px;

	border-bottom: 1px solid var(--project-border-color);

	@media screen and (min-width:1439px) {
		width: calc(100% - 20px);
	}
}

.project-page-section-contracts-table-line:last-child {
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	border: none;
}

.project-page-section-contracts-table-item {
	display: inline-block;
	text-align: center;
}

.project-page-section-contracts-table-input-continer.main-table {
	margin-right: 7px;
}

.project-page-section-contracts-table-item.projects {
	position: relative;
	padding: 0;

	text-align: start;
	font-size: 14px;
	line-height: 20px;

	width: 57%;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 640px;
		max-width: 640px;
	}
}

.project-page-section-contracts-table-item.date {
	width: 15%;

	color: #353E5C;
	font-size: 14px;
	line-height: 20px;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 123px;
		max-width: 123px;
	}
}

.project-page-section-contracts-table-item.confirm {
	width: 15%;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 129px;
		max-width: 129px;
	}
}

.project-page-section-contracts-table-item.confirm>button {
	padding: 8px 12px;

	font-size: 12px;
	font-style: normal;
	font-weight: 600;
}

.project-page-section-contracts-table-item.confirm.pending>button {
	padding: 8px 12px;

	font-size: 12px;
	font-style: normal;
	font-weight: 600;

	background-color: var(--btn-thirdly-background-color);
}

.project-page-section-contracts-table-item.delete {
	color: #F9FAFB;
	cursor: pointer;
	height: 100%;
}

.project-page-section-contracts-wrapper-for-scroll {
	@media screen and (max-width: 1438px) {
		min-width: 600px;

		overflow: scroll;
	}
}

/* SCROLL BAR */
/* width */
.project-page-section-contracts.main-wrapper::-webkit-scrollbar {
	height: 5px;
	width: 0;
}

.project-page-section-contracts-table-body::-webkit-scrollbar {
	height: 0;
	width: 5px;
}

/* Track */
.project-page-section-contracts.main-wrapper::-webkit-scrollbar,
.project-page-section-contracts-table-body::-webkit-scrollbar-track {
	background: #EDEDED;
}

/* Handle */
.project-page-section-contracts.main-wrapper::-webkit-scrollbar,
.project-page-section-contracts-table-body::-webkit-scrollbar-thumb {
	background: #D9D9D9;
	border-radius: 10px;
}

/* Handle on hover */
/* .project-page-section-contracts-table-body::-webkit-scrollbar-thumb:hover {
	background: #555;
} */

/* END OF SCROLL BAR */

/* my projects */
.project-page-section-contracts-table-header.projects-two {
	display: block;

	border: 1px solid var(--project-border-color);

	border-top-right-radius: 15px;
	border-top-left-radius: 15px;
}

.project-page-section-contracts-table.projects-two {
	position: relative;
}

.project-page-section-contracts-table-header-block.projects-two {
	display: inline-block;
	padding-left: 0;
	padding-right: 0;
}

.project-page-section-contracts-table-header-item {
	display: inline-block;
}

.project-page-section-contracts-table-header-item.projects-two-name {
	width: 15%;
	padding-left: 20px;

	text-align: start;

	@media screen and (min-width: 1240px) {
		width: 20.8%;
	}

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 222px;
		max-width: 212px;
	}
}

.project-page-section-contracts-table-header-item.projects-two-status::after,
.project-page-section-contracts-table-header-item.projects-two-date::after,
.project-page-section-contracts-table-header-item.projects-two-budget::after,
.project-page-section-contracts-table-header-item.projects-two-discount::after,
.project-page-section-contracts-table-header-item.projects-two-name::after {
	content: ' ';
	display: inline-block;
	width: 14px;
	height: 14px;
	position: relative;
	top: 3px;

	background-image: url('../images/icon/arrow-down.svg');
	background-repeat: no-repeat;
	background-size: contain;
}

.project-page-section-contracts-table-header-item.projects-two-budget {
	width: 11.5%;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 117px;
		max-width: 117px;
	}
}


.project-page-section-contracts-table-header-item.projects-two-code {
	width: 15.6%;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 159px;
		max-width: 159px;
	}
}

.project-page-section-contracts-table-header-item.projects-two-discount {
	width: 11.2%;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 127px;
		max-width: 114px;
	}
}

.project-page-section-contracts-table-header-item.projects-two-date {
	width: 12.5%;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 138px;
		max-width: 138px;
	}
}

.project-page-section-contracts-table-header-item.projects-two-status {
	width: 12.5%;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 128px;
		max-width: 128px;
	}
}

.project-page-section-contracts-table-header-item.projects-two-fee {
	width: 12%;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 129px;
		max-width: 123px;
	}
}

.project-page-section-contracts-table-line.projects-two {
	padding-left: 0;
	padding-right: 0;
	display: inline-block;
	width: 100%;

	@media screen and (min-width:1140px) {
		width: calc(100% - 15px);
	}
}

.project-page-section-contracts-table-item.projects-two-name {
	width: 15%;
	padding: 0;
	padding-left: 20px;

	text-align: start;
	font-size: 14px;
	line-height: 20px;

	@media screen and (min-width: 1240px) {
		width: 20.8%;
	}

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 222px;
		max-width: 212px;
	}
}

.project-page-section-contracts-table-item.projects-two-budget {
	padding: 0;
	width: 11.5%;

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	color: var(--fourth-text-color);

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 117px;
		max-width: 117px;
	}
}

.project-page-section-contracts-table-item.projects-two-code {
	width: 15.6%;
	padding: 0;

	font-size: 14px;
	font-weight: 400;
	line-height: 32px;
	color: #707683;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 159px;
		max-width: 159px;
	}
}

.project-page-section-contracts-table-item.projects-two-discount {
	width: 11.2%;
	padding: 0;

	color: #707683;
	font-size: 14px;
	line-height: 32px;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 127px;
		max-width: 114px;
	}
}

.project-page-section-contracts-table-item.projects-two-date {
	width: 12.5%;
	padding: 0;

	font-size: 14px;
	line-height: 20px;
	color: var(--fourth-text-color);

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 144px;
		max-width: 138px;
	}
}

.project-page-section-contracts-table-item.projects-two-status {
	width: 12.5%;
	padding: 0;

	@media screen and (min-width: 1440px) {
		display: inline-block;
		width: 130px;
		max-width: 128px;
	}
}

.project-page-section-contracts-table-item.projects-two-fee {
	width: 12%;
	padding: 0;

	text-align: end;

	@media screen and (min-width: 1440px) {
		padding-right: 26px;
		display: inline-block;
		width: 133px;
		max-width: 123px;
	}
}

.project-page-section-contracts-table-item.projects-two-fee>button {
	padding: 8px 12px;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
}

.project-page-section-contracts-table-item-form-select {
	border: none;


	font-size: 14px;
	line-height: 20px;
	color: var(--fourth-text-color);

}

.project-page-section-contracts-table-item-form-select:focus-visible {
	outline: none;
}

.project-page-section-contracts-table-item-form-select>option {
	outline: none;
}

/* CUSTOM SELECT IN PROJECTS PAGE */
/*the container must be positioned relative:*/
.custom-select {
	font-family: Arial;

}

.custom-select select {
	display: none;
	/*hide original SELECT element:*/
}

.select-selected {
	padding: 0 !important;
	background-color: transparent;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: center;
	gap: 11px;
}

.select-selected::before {
	content: " ";
	display: block;
	height: 20px;
	width: 20px;

	background-image: url('../images/icon/tick-select-close.svg');
	background-size: contain;
	background-repeat: no-repeat;
}

.select-selected.select-arrow-active::before {
	transform: rotate(180deg);
}

/*style the arrow inside the select element:*/
.select-selected:after {
	position: absolute;
	content: "";
	top: 14px;
	right: 10px;
	width: 0;
	height: 0;

	border: 6px solid transparent;
	border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
	border-color: transparent transparent #fff transparent;
	top: 7px;
}

.select-items div {
	padding: 16px 12px;
	margin-bottom: 8px;
}

.select-items div.same-as-selected {
	background-color: #F8F9FE;
}

/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
	border-radius: 12px;
	cursor: pointer;
	user-select: none;
}

/*style items (options):*/
.select-items {
	position: absolute;
	width: 181px;
	padding: 12px;
	padding-bottom: 4px;
	background-color: var(--primary-background-color);
	border: 1px solid var(--btn-light-border-color);
	border-radius: 12px;
	top: 3%;
	right: 0;
	z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
	display: none;
}

.select-items div:hover,
.same-as-selected {
	background-color: rgba(0, 0, 0, 0.1);
}

/* END OF CUSTOM SELECT IN PROJECTS PAGE */

/* START MODALS PART */

.modal-content.projects {
	margin-left: auto;
	margin-right: auto;

	@media screen and (min-width: 576px) {
		width: 529px !important;
	}
}

.modal-header.projects {
	justify-content: center;
	flex-direction: column;
	gap: 24px;

	margin-bottom: 48px;
}

.modal-title.projects {}

.modal-header-text.projects {
	max-width: 360px;

	text-align: center;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
}


.projects-modal-informarion-block {
	margin-bottom: 20px;
}

.projects-modal-informarion-title {
	margin-bottom: 12px;

	font-size: 14px;
	font-weight: 600;
}

.projects-modal-header-text {
	max-width: 360px;
	margin: 0;

	text-align: center;

	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
}

.projects-modal-informarion-field {
	padding: 8px 12px;

	font-size: 12px;
	font-weight: 400;

	/* border: 1px solid var(--header-background-color); */
	border-radius: 6px;
	background-color: var(--header-background-color);
}

.projects-modal-informarion-input {
	padding: 8px 12px;
	width: 100%;

	font-size: 12px;
	font-weight: 400;
	color: var(--primary-text-color);

	outline: none;

	border: 1px solid var(--header-background-color);
	border-radius: 6px;
	/* background-color: var(--header-background-color); */
}

.projects-modal-informarion-input::placeholder {
	font-style: 10px;
	color: var(--thirdly-text-color);
}

.projects-modal-informarion-textara {
	width: 100%;
	padding: 14px 12px;
	height: 145px;

	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
	color: var(--primary-text-color);

	border: 1px solid var(--project-inputs-border-color);
	border-radius: 6px;
}

.projects-modal-informarion-textara::placeholder {
	color: var(--thirdly-text-color);
	font-size: 10px;
	font-weight: 400;
	line-height: 18px;
}

.projects-modal-informarion-textara:focus-visible {
	outline: none;
}

.projects-modal-btn-block {
	display: flex;
	gap: 16px;
}

.projects-modal-btn-block>button {
	width: 100%;
	padding-right: 13px;
	padding-bottom: 13px;

	line-height: calc(21/14)
}

.projects-modal-header-text-for-line {
	border-bottom: 1px solid var(--primary-text-color);
}

.projects-modal-header-text.with-warn::before {
	content: " ";
	display: inline-block;
	position: relative;
	top: 5px;
	margin-right: 5px;
	width: 22px;
	height: 22px;

	background-image: url('../images/icon/warning.svg');
	background-repeat: no-repeat;
	background-size: contain;
}

/* .projects-modal-informarion-input-date {
	padding: 8px 12px;
	width: 100%;

	font-size: 12px;
	font-weight: 400;
	color: var(--primary-text-color);

	outline: none;

	border: 1px solid var(--header-background-color);
	border-radius: 6px;
} */

/* Datepicker */
#datepicker-projects-page-modal {
	padding: 8px 12px;
	width: 100%;

	font-size: 12px;
	font-weight: 400;
	color: var(--primary-text-color);

	outline: none;

	border: 1px solid var(--header-background-color);
	border-radius: 6px;
}

.pika-single {
	border: 1px solid var(--btn-light-border-color);
	border-radius: 12px;
	box-shadow: none;
}


.pika-lendar {
	margin: 0;
	padding: 16px;
	padding-left: 10px;
	/* height: 310px; */
	width: 300px;
	max-width: 300px !important;
}

.pika-lendar>.pika-table>thead {
	height: 38px;
}

.pika-table>tr>th {
	max-height: 38px;


}

.pika-table>tr>th>abbr {

	text-decoration: none;
}

abbr[title] {
	font-family: Inter;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;

	color: #8F9098;
	text-decoration: none;
}

.pika-row {
	height: 30px;
}

.pika-label {
	position: relative;
	right: 75px;

	font-family: Inter;
	font-size: 14px;
	font-weight: 800;
	color: #1F2024;
}

.pika-prev {
	left: 220px;
	background-image: url('../images/icon/calendar-prev.svg');
}

.pika-next {
	background-image: url('../images/icon/calendar-next.svg');
}

.pika-table td,
.pika-table th {
	height: 40px;
	width: 40px;
}

.pika-button {
	height: 40px;
	width: 40px;
	padding: 0;

	text-align: center;
	color: #494A50;
	font-family: Inter;
	font-size: 12px;
	font-weight: 700;

	border-radius: 20px;
	background-color: var(--primary-background-color);
	box-shadow: none;
}

.pika-button:hover {
	border-radius: 20px;
	background-color: var(--btn-dark-background-color);
}

.is-today .pika-button {
	background-color: #F8F9FE;
	color: #494A50;
}

.is-selected .pika-button {
	border-radius: 20px;
	background-color: var(--btn-dark-background-color);
	box-shadow: none;
	color: var(--btn-dark-text-color);
}

.pika-single.is-bound {
	box-shadow: none;
}

/* Datepicker */


/* DROPZONE */

.projects-modal-informarion-block.dropzone-main-container {
	margin-bottom: 25px;
}

.dz-preview.dz-processing.dz-error.dz-complete.dz-image-preview {
	padding: 0;
	margin: 0;
}

.projects-modal-dropzone-form {
	padding: 16px;
	width: 100%;
	max-height: 234px;

	background-color: #F5F5F5;
	border: 1px dashed var(--btn-thirdly-border-color);
}

.projects-modal-dropzone-icon {
	margin-bottom: 16px;
}

.projects-modal-dropzone-title {
	margin-bottom: 4px;

	font-family: Roboto;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.projects-modal-dropzone-text {
	font-family: Roboto;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: #8C8C8C;
}

.projects-modal-dropzone-btn {
	padding: 11px 22px !important;
	display: none;

	width: 100%;
	border-radius: 8px;
	border: 1px solid var(--btn-light-border-color) !important;
	background: var(--secondary-background-color) !important;

	@media screen and (min-width: 396px) {
		display: block;
	}
}

.dz-progress {
	background-color: #EAECF0 !important;
}

.dropzone.dz-preview .dz-progress {
	background: var(--btn-dark-background-color) !important;
}

.dz-upload {
	background: var(--btn-dark-background-color) !important;
}

.dropzone.dz-started .dz-message {
	display: block !important;
	margin-bottom: 15px !important;
}

.dz-details {
	padding: 0 !important;
	opacity: 1 !important;
}

.projects-modal-header-main-your-contract {
	margin-bottom: 120px;

	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
}

.dz-size {
	display: none;
}


/* .dz-preview.dz-file-preview.dz-processing.dz-error.dz-complete.dz-image-preview {
	margin: 0;
	display: block;
	width: 459px;
	height: 76px;
	min-height: 76px !important;
	max-height: 76px !important;
	padding: 16px;
	position: relative;
	top: 150px;
	left: -18px;
} */

.dropzone.dz-started .dz-message {
	display: block;
}

.dz-preview {
	margin: 0 !important;
	width: 110% !important;
	height: 76px !important;
	min-height: 76px !important;
	max-height: 76px !important;
	padding: 16px !important;
	position: relative !important;
	top: 100px !important;
	left: -18px !important;


	border-radius: 12px;
	border: 1px solid #BCBCBC;
	background-color: var(--primary-background-color);

	@media screen and (min-width: 396px) {
		top: 80px !important;
	}

	@media screen and (min-width: 576px) {
		width: 459px !important;
	}
}

.dz-preview::before {
	content: ' ';
	display: block;
	width: 32px;
	height: 32px;
	position: absolute;
	top: 10px;
	left: 10px;

	background-image: url('../images/icon/file-logo.svg');
	background-size: contain;
	background-repeat: no-repeat;
}



.dz-error-mark {
	display: none !important;
}

.dz-image {
	display: none !important;
}

.dz-progress {
	height: 8px !important;
	opacity: 1 !important;
	top: 60px !important;
	left: 95px !important;
	width: 180px !important;
	background-color: transparent;

	z-index: 55 !important;

	@media screen and (min-width: 576px) {
		width: 334px !important;
	}
}

.dropzone.dz-preview.dz-image-preview.dz-details {
	transition: none;
}

.dz-filename {
	position: absolute;
	top: 16px !important;
	left: 50px;
	width: 60%;
	text-align: left;

	color: #344054;
	font-family: Roboto;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}

/* .dz-preview{

} */

/* DROPZONE */

.projects-modal-header-inline-link {
	color: var(--form-placeholder-text);
}

.projects-modal-informarion-congratulation-list {
	list-style: none;
	padding: 0;
}

.projects-modal-informarion-congratulation-item {
	padding-top: 16px;
	padding-bottom: 16px;

	font-size: 14px;
	font-weight: 600;
	line-height: 22px;
}

.projects-modal-informarion-congratulation-item>span {
	font-weight: 400;
}

.projects-modal-informarion-congratulation-item:not(:last-child) {
	border-bottom: 1px solid #E9E9E9;
}

.projects-modal-informarion-congratulation-text {
	margin-top: 15px;
	margin-bottom: 30px;

	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 800;
	line-height: 24px;
}

.projects-modal-informarion-congratulation-btn {
	display: block;
	width: 100%;
	padding: 16px 22px;

	font-size: 16px;
	font-weight: 600;
	line-height: 16px;
}

.projects-modal-informarion-cancel-contract-upload-file-second-file-block {
	position: relative;
	padding: 20px;
	padding-left: 60px;
	width: 100%;

	color: #344054;
	font-family: Roboto;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;

	border-radius: 12px;
	border: 1px solid #BCBCBC;
}

.projects-modal-informarion-cancel-contract-upload-file-second-file-block::before {
	content: ' ';
	display: block;
	width: 32px;
	height: 32px;
	position: absolute;
	top: 13.5px;
	left: 15px;

	background-image: url('../images/icon/file-logo.svg');
	background-size: contain;
	background-repeat: no-repeat;

}

.modal-content.delete-pay-projects {
	margin-left: auto;
	margin-right: auto;

	@media screen and (min-width: 576px) {
		width: 430px !important;
	}
}

.modal-title.delete-pay-projects {
	font-family: Inter;
	font-size: 24px;
	font-weight: 800;
	line-height: 32px;
}

.modal-title.delete-pay-projects>span {
	color: #B4B9C9;
	font-family: Inter;
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
}

.modal-header.delete-pay-projects {
	flex-direction: column;
	gap: 20px;
	margin-bottom: 60px;
}

.projects-modal-header-text.delete-pay-projects {
	font-weight: 400;
}

.btn.delete-pay-projects {
	background-color: #F8FAFF;
}

.modal-header.delete-pay-projects-pay {
	margin-bottom: 45px;
	flex-direction: column;
	gap: 35px;
}

.modal-title.delete-pay-projects-pay {
	color: var(--title-third-color);
	font-size: 30px;
	font-weight: 800;
	line-height: 36px;
}

.projects-modal-header-text.delete-pay-projects-pay {
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
}

.projects-modal-header-text.delete-pay-projects-pay>.email {
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	text-decoration-line: underline;
}

/* END OF START MODALS PART */
