:root {
    --primary-color: #AB54DB;
}

.geex-content__section ul#myTab {
    display: flex;
    width: 100%;
    gap: 1rem;
    margin-bottom: 2rem;
}

.geex-content__section ul#myTab > li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(33.33% - (1rem * 2) / 3);
}

.geex-content__section ul#myTab > li > button {
    color: #333;
    font-size: 17px;
    width: 100%;
    background-color: #ECEAF3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    padding: .8rem;
}

.geex-content__section ul#myTab > li > button.active,
.geex-content__section ul#myTab > li > button:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.geex-content__authentication__content__logo > a > img {
    width: 250px;
}

.geex-content__authentication__content__logo {
    margin-bottom: 25px;
}

.user-list .avatar > img {
    height: 62px;
}

.user-avatar-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    height: 100%;
    overflow: auto;
}

.user-avatar-content {
    display: flex;
    position: relative;
    width: calc(25% - (1.5rem * 3) / 4);
    height: 95px;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 10px;
    cursor: pointer;
    transition: .2s ease-in-out;
}

.user-avatar-content:hover {
    border-color: var(--primary-color);
}

.geex-content__modal__form__wrapper {
    height: 75vh;
    overflow: hidden;
}

.user-avatar-img {
    display: flex;
    width: 100%;
}

.user-avatar-img > img {
    display: flex;
    width: 100%;
    object-fit: contain;
}

.user-avatar-check {
    position: absolute;
    top: -5px;
    right: 0;
    color: var(--primary-color);
    transition: .2s ease-in-out;
    transform: scale(0.5);
    opacity: 0;
    visibility: hidden;
}

.user-avatar-check > i {
    font-size: 30px;
}


.user-avatar-content.active .user-avatar-check {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.avatar-select-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.avatar-select-button > button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 0.9rem;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 16px;
    border: none;
    outline: 0;
    border-radius: 20px;
}

.geex-content__modal__form {
    padding-bottom: 1rem;
}

.avatar-image-preview {
    display: flex;
    width: 150px;
    margin-bottom: 20px;
}

.avatar-image-preview > img {
    width: 100%;
}

.user-button > button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0.9rem 1.5rem;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 16px;
    border: none;
    outline: 0;
    border-radius: 20px;
}

.user-button {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 40px;
}

#permissions-wrapper > h4 {
    width: 100%;
}

.table-reviews-geex-1 tbody tr td .author-area .profile-picture {
    display: flex !important;
    overflow: hidden;
    min-width: 72px;
    height: 72px;
}

.table-reviews-geex-1 tbody tr td .author-area .profile-picture > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    min-width: 100%;
    object-position: center;
}

.geex-content__todo__header__filter > button {
    min-height: 45px;
    height: 45px;
    border: none !important;
}

.transaction-button > button,
.transaction-button > a {
    padding: 0.4rem;
    width: 100%;
}

.transaction-button {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    width: 100%;
}

.geex-content__todo {
    align-items: flex-start;
}

.form-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.upload-files-container {
	width: 100%;
	border-radius: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.drag-file-area {
	border: 2px dashed #7b2cbf;
	border-radius: 40px;
	margin: 10px 0 15px;
	padding: 30px 50px;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
}
.drag-file-area .upload-icon {
	font-size: 50px;
}
.drag-file-area h3 {
	font-size: 26px;
	margin: 15px 0;
}
.drag-file-area label {
	font-size: 19px;
}
.drag-file-area label .browse-files-text {
	color: #7b2cbf;
	font-weight: bolder;
	cursor: pointer;
}
.browse-files span {
	position: relative;
}
.default-file-input {
	opacity: 0;
	position: absolute;
	inset: 0;
}
.cannot-upload-message {
	background-color: #ffc6c4;
	font-size: 17px;
	display: flex;
	align-items: center;
	margin: 5px 0;
	padding: 5px 10px 5px 30px;
	border-radius: 5px;
	color: #BB0000;
	display: none;
}
@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.cannot-upload-message span, .upload-button-icon {
	padding-right: 10px;
}
.cannot-upload-message span:last-child {
	padding-left: 20px;
	cursor: pointer;
}
.file-block {
	color: #f7fff7;
	background-color: #7b2cbf;
  	transition: all 1s;
	width: 390px;
	position: relative;
	display: none;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin: 10px 0 15px;
	padding: 10px 20px;
	border-radius: 25px;
	cursor: pointer;
}
.file-info {
	display: flex;
	align-items: center;
	font-size: 15px;
}
.file-icon {
	margin-right: 10px;
}
.file-name, .file-size {
	padding: 0 3px;
}
.remove-file-icon {
	cursor: pointer;
}
.progress-bar {
	display: flex;
	position: absolute;
	bottom: 0;
	left: 4.5%;
	width: 0;
	height: 5px;
	border-radius: 25px;
	background-color: #4BB543;
}
.upload-button {
	font-family: 'Montserrat';
	background-color: #7b2cbf;
	color: #f7fff7;
	display: flex;
	align-items: center;
	font-size: 18px;
	border: none;
	border-radius: 20px;
	margin: 10px;
	padding: 7.5px 50px;
	cursor: pointer;
}
.contract-upload-btn-wrapper > button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0.9rem 1.5rem;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 16px;
    border: none;
    outline: 0;
    border-radius: 20px;
    gap: 0.5rem;
}

.file-dropzone-wrapper .dropzone {
    background: transparent;
    border-radius: 0;
    max-width: 100%;
    margin: 0;
    padding: 0 0;
    height: auto;
    min-height: 50px;
    border: none;
}

.file-dropzone-wrapper .dropzone.dz-clickable {
    cursor: pointer;
    background: transparent;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
}

.file-dropzone-wrapper .dropzone .camera-img {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 15px;
    position: absolute;
    left: 0;
}

.file-dropzone-wrapper .dropzone .img-circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-dropzone-wrapper .dropzone .camera-img img {
    width: 100%;
    height: 100%;
    display: block;
}

.file-dropzone-wrapper .dropzone .dz-preview .dz-details .dz-filename:hover span {
    border: 1px solid transparent; 
}

.file-dropzone-wrapper .dropzone .dz-message {
    margin: 0;
    padding: 0.8rem;
}

.file-dropzone-wrapper .dropzone .dz-preview .dz-details .dz-size {
    display: none;
}

.file-dropzone-wrapper .dropzone .dz-preview .dz-details {
    height: calc(50px + .8rem);
    min-height: calc(50px + .8rem);
    padding:0;
    padding-left: 25px;
    text-align: left;
    display: flex;
    align-items: center;
    opacity: 1;
    justify-content: space-between;
}

.file-dropzone-wrapper .dropzone .dz-preview.image__open .dz-details {
    padding-left: 32px;
}

.file-dropzone-wrapper .dropzone .dz-preview {
    width: 100%;
    height: calc(50px + .8rem);
    min-height: calc(50px + .8rem);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file-dropzone-wrapper .dropzone .dz-preview .dz-progress {
    left: 1px;
    right: 1px;
    margin: 0;
    top: 50%;
    height: 15px;
    width: auto;
    background-color: #efefef;
    transform: translateY(-50%);
    z-index: 9999999;
}

.file-dropzone-wrapper .dropzone .dz-preview .dz-image {
    height: 35px;
    width: 35px;
    border-radius: 0 !important;
    display: none;
}

.file-dropzone-wrapper .dropzone .dz-preview .dz-details .dz-filename {
    display:flex;
}

.file-dropzone-wrapper .dropzone .dz-preview:hover .dz-image img {
    -webkit-transform:none;
    -moz-transform:none;
    -ms-transform:none;
    -o-transform:none;
    transform:none; 
    -webkit-filter: none; 
    filter: none; 
}

.file-dropzone-wrapper .dropzone .dz-preview .dz-image img {
    height: 100%;
    width: 100%;
}

.file-dropzone-wrapper .dropzone .dz-preview .dz-progress .dz-upload {
    background: repeating-linear-gradient(
        45deg, /* Angle of the stripes */
        #7f4b8e, /* First color */
        #7f4b8e 10px, /* Length of the first color */
        #e0a6b5 10px, /* Second color starts after 10px */
        #e0a6b5 20px /* Length of the second color */
    );
}

.file-dropzone-wrapper .dropzone .dz-preview .dz-error-message {
    top: auto;
    left: 0;
    background: linear-gradient(to bottom, #ff0000, #ff0000);
    background: #ff0000;
}

.file-dropzone-wrapper .dropzone .dz-preview .dz-error-message:after {
    border-bottom: 6px solid #ff0000;
}

.file-dropzone-wrapper .dropzone .dz-preview .dz-remove {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0 25px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 999999;
    padding-right: 5px;
    font-size: 10px;
}

.file-dropzone-wrapper .dropzone .dz-preview .dz-remove:hover {
    text-decoration: none;
}

.file-dropzone-wrapper .dropzone .dz-preview.image__open .dz-image {
    display: block;
}

.file-dropzone-wrapper .dropzone .dz-preview.image__open .uploading {
    display: none;
}

.file-dropzone-wrapper .dropzone .img-circle > img {
    width: 40px;
}

.file-dropzone-wrapper {
    border: 1px dashed var(--primary-color);
    margin-top: 0.5rem;
    position: relative;
    width: 100%;
    padding: 1rem;
    border-radius: 25px;
}


.dropzone, .dropzone * {
    box-sizing: border-box; 
}
  
.dropzone {
    min-height: 150px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    background: white;
    padding: 20px 20px; 
}

.dropzone.dz-clickable {
    cursor: pointer; 
}

.dropzone.dz-clickable * {
    cursor: default; 
}

.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
    cursor: pointer; 
}

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

.dropzone.dz-drag-hover {
    border-style: solid; 
}

.dropzone.dz-drag-hover .dz-message {
    opacity: 0.5; 
}

.dropzone .dz-message {
    text-align: center;
    margin: 2em 0; 
}

.dropzone .dz-message .dz-button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit; 
}

.dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px; 
}

.dropzone .dz-preview:hover {
    z-index: 1000; 
}

.dropzone .dz-preview:hover .dz-details {
    opacity: 1; 
}

.dropzone .dz-preview.dz-file-preview .dz-image {
    border-radius: 20px;
    background: #999;
    background: linear-gradient(to bottom, #eee, #ddd); 
}

.dropzone .dz-preview.dz-file-preview .dz-details {
    opacity: 1; 
}

.dropzone .dz-preview.dz-image-preview {
    background: white; 
}

.dropzone .dz-preview.dz-image-preview .dz-details {
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -ms-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear; 
}

.dropzone .dz-preview .dz-remove {
    font-size: 14px;
    text-align: center;
    display: block;
    cursor: pointer;
    border: none; 
}

.dropzone .dz-preview .dz-remove:hover {
    text-decoration: underline; 
}

.dropzone .dz-preview:hover .dz-details {
    opacity: 1; 
}

.dropzone .dz-preview .dz-details {
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    font-size: 13px;
    min-width: 100%;
    max-width: 100%;
    padding: 2em 1em;
    text-align: center;
    color: rgba(0, 0, 0, 0.9);
    line-height: 150%; 
}

.dropzone .dz-preview .dz-details .dz-size {
    margin-bottom: 1em;
    font-size: 16px; 
}

.dropzone .dz-preview .dz-details .dz-filename {
    white-space: nowrap; 
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
    border: 1px solid rgba(200, 200, 200, 0.8);
    background-color: rgba(255, 255, 255, 0.8); 
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
    overflow: hidden;
    text-overflow: ellipsis; 
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
    border: 1px solid transparent; 
}

.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 0 0.4em;
    border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
    -webkit-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
    -webkit-filter: blur(8px);
    filter: blur(8px); 
}

.dropzone .dz-preview .dz-image {
    border-radius: 20px;
    overflow: hidden;
    width: 120px;
    height: 120px;
    position: relative;
    display: block;
    z-index: 10; 
}

.dropzone .dz-preview .dz-image img {
    display: block; 
}

.dropzone .dz-preview.dz-success .dz-success-mark {
    -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); 
}

.dropzone .dz-preview.dz-error .dz-error-mark {
    opacity: 1;
    -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); 
}

.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
    pointer-events: none;
    opacity: 0;
    z-index: 500;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -27px;
    margin-top: -27px; 
}

.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
    display: block;
    width: 54px;
    height: 54px; 
}

.dropzone .dz-preview.dz-processing .dz-progress {
    opacity: 1;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; 
}

.dropzone .dz-preview.dz-complete .dz-progress {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in;
    -moz-transition: opacity 0.4s ease-in;
    -ms-transition: opacity 0.4s ease-in;
    -o-transition: opacity 0.4s ease-in;
    transition: opacity 0.4s ease-in; 
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
    -webkit-animation: pulse 6s ease infinite;
    -moz-animation: pulse 6s ease infinite;
    -ms-animation: pulse 6s ease infinite;
    -o-animation: pulse 6s ease infinite;
    animation: pulse 6s ease infinite; 
}

.dropzone .dz-preview .dz-progress {
    opacity: 1;
    z-index: 1000;
    pointer-events: none;
    position: absolute;
    height: 16px;
    left: 50%;
    top: 50%;
    margin-top: -8px;
    width: 80px;
    margin-left: -40px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-transform: scale(1);
    border-radius: 8px;
    overflow: hidden; 
}

.dropzone .dz-preview .dz-progress .dz-upload {
    background: #333;
    background: linear-gradient(to bottom, #666, #444);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    -webkit-transition: width 300ms ease-in-out;
    -moz-transition: width 300ms ease-in-out;
    -ms-transition: width 300ms ease-in-out;
    -o-transition: width 300ms ease-in-out;
    transition: width 300ms ease-in-out; 
}

.dropzone .dz-preview.dz-error .dz-error-message {
    display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
    opacity: 1;
    pointer-events: auto; 
}

.dropzone .dz-preview .dz-error-message {
    pointer-events: none;
    z-index: 1000;
    position: absolute;
    display: block;
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    font-size: 13px;
    top: 130px;
    left: -10px;
    width: 140px;
    background: #be2626;
    background: linear-gradient(to bottom, #be2626, #a92222);
    padding: 0.5em 1.2em;
    color: white; 
}

.dropzone .dz-preview .dz-error-message:after {
    content: '';
    position: absolute;
    top: -6px;
    left: 64px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #be2626; 
}

.file-menager-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.page-file-title > span {
    color: #464255;
    font-weight: bold;
    font-size: 25px;
}

.page-file-title > p {
    font-size: 13px;
    color: #A3A3A3;
    margin-top: 0.2rem;
    font-weight: 500;
}

.page-file-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 1rem;
}

.contract-upload-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 2rem;
}

.contract-delete-btn > a {
    padding: 0.4rem;
    width: 100%;
    align-items: center;
    justify-content: center;
}

#contract-form {
    margin-bottom: 2rem;
}

.contract-table .profile-picture {
    min-width: 50px !important;
    height: 50px !important;
}

.contract-upload-btn-wrapper > button:disabled {
    opacity: .5;
}

.editor-container__editor {
    width: 100%;
    margin-top: 20px;
}

.bootstrap-tagsinput {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 !important;
    flex: 1 !important;
    position: relative !important;
    width: 98% !important;
    padding: 15px 24px !important;
    border: none !important;
    outline: none !important;
    border-radius: 18px !important;
    color: var(--body-color) !important;
    background-color: var(--white-color) !important;
    border: 1px solid var(--sec-color) !important;
    resize: none !important;
    box-shadow: none !important;
}

.bootstrap-tagsinput > input {
    color: var(--body-color);
    font-size: 14px;
    font-weight: 400;
}

.bootstrap-tagsinput > input::placeholder {
    color: var(--body-color);
}

.bootstrap-tagsinput > .tag {
    background-color: var(--primary-color);
    padding: 0.3rem .6rem;
    border-radius: 10px;
}

.bootstrap-tagsinput.has-focus {
    -webkit-box-shadow: 0 0, 0px 5px 20px rgba(95, 99, 242, 0.1019607843) !important;
    box-shadow: 0 0, 0px 5px 20px rgba(95, 99, 242, 0.1019607843) !important;
    border-color: var(--primary-color) !important;
}

.price-offers-pdf-wrapper {
    position: relative;
    height: 890px;
    width: 100%;
    margin-top: 3rem;
}

.price-offers-table {
    position: absolute;
    top: 20%;
    left: 15%;
    width: calc(100% - 17%);
}

.price-offers-table .table-container,
.price-offers-table .table-container > table  {
    width: 100%;
}

.price-offers-pdf-wrapper textarea {
    border: none;
    text-align: center;
    min-width: auto;
    font-size: 11px;
    padding: 11px 5px;
    box-sizing: border-box;
}

.price-offers-pdf-image {
    position: absolute;
    top: 43%;
    z-index: 9;
    width: 250px;
    left: 50%;
    transform: translate(-50%,-50%);
}

.price-offers-pdf-image > img {
    width: 100%;
}