.profile-main-container {
    margin: 50px 100px;
}

.profile-header {
    margin-bottom: 20px;
}

.profile-header .back {
    font-weight: 700;
    font-size: 30px;
    line-height: 20px;
    margin-right: 12px;
}

.profile-header .heading {
    font-weight: 700;
    font-size: 30px;
    line-height: 20px;
    margin-right: 10px;
}


.profile-header .btn,
.profile-section .btn {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FFF;
    background-color: #CF0A0A;
    padding: 16px 32px;
    display: flex;
    align-items: center;
}

.profile-section {
    border-top: 2px solid #0000BA;
    padding: 25px 0 35px;
}

.profile-section .profile-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
}

.profile-section .profile-section-label {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
}

.profile-section .profile-section-content {
    padding-left: 80px;
}

.profile-section .profile-section-content .account-container {
    display: flex;
    flex-direction: row;
}

.profile-section .profile-section-content .account-picture {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 100px;
}

.profile-section .profile-section-content .user-picture {
    width: 200px;
    height: 200px;
    background-color: #EEE;
    border-radius: 50%;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
}

.profile-section-content .user-picture+.btn {
    /* width: 200px; */
    margin-top: 30px;
}

.profile-section-content .account-info {
    flex-grow: 1;
}

.profile-section-content .account-info .account-info-item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) 25px;
    margin: 20px 0 40px;
}

.profile-section-content .account-info .label {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
}

.profile-section-content .account-info .data {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.profile-section-content .account-info .action {
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #CF0A0A;
}

@media screen and (max-width: 576px) {
    .profile-section-content .account-info .account-info-item {
        grid-template-columns: minmax(0, 1fr) 25px;
        margin: 20px 0 20px;
    }

    .profile-section-content .account-info .account-info-item .data {
        order: 3;
        grid-column: 1/3;
        margin-top: 8px;
    }

    .profile-section-content .account-info .account-info-item .icon {
        order: 2;
    }
}

.profile-section .note {
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 25px;
}

.profile-section-content .field-container {
    max-width: 540px;
    margin-bottom: 25px;
}

.profile-section-content .last-suffix {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 20px;
    width: 100%;
    max-width: 540px;
}

@media screen and (max-width: 400px) {
    .profile-section-content .last-suffix {
        grid-template-columns: 1fr 100px;
        /* gap: 0; */
    }
}

.profile-section-content .field-container .option-tooltip {
    position: relative;
    color: #00005C;
    margin-left: 2px;
    align-self: center;
    display: inline-block;
}

.profile-section-content .field-container .option-tooltip .tooltiptext {
    transition: opacity 0.3s;
    opacity: 0;
    visibility: hidden;
    width: 200px;
    background-color: #E5E5EE;
    border: 1px solid #7272A4;
    border-radius: 10px;
    padding: 8px;
    margin-right: -100px;

    position: absolute;
    z-index: 2;
    bottom: calc(100% + 5px);
    right: 0%;
}

.profile-section-content .field-container .option-tooltip .tooltiptext p {
    text-align: left;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #000;
    margin-bottom: 0;
    user-select: none;
}

.profile-section-content .field-container .option-tooltip .tooltiptext p .bold {
    font-weight: 700;
}

.profile-section-content .field-container .option-tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.profile-section-content .field-container .option-tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%;
    right: 50%;
    margin-right: 2px;
    border-width: 5px;
    border-style: solid;
    border-color: #7272A4 transparent transparent transparent;
}

.profile-section-content .form-label {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    margin-right: 8px;
}

.profile-section-content .error-message,
.note .error-message {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #CF0A0A;
    margin-bottom: 0.5rem;
}

.profile-section-content .form-control {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    padding: 12px 28px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.profile-section .select-selected {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #000;
}

.profile-section-content .form-control.error {
    border: 0.8px solid #CF0A0A;
}

.profile-section-content .form-select.error+.select-selected {
    border: 0.8px solid #CF0A0A;
}

.profile-section-content .form-control-group {
    position: relative;
}

.profile-section-content .form-control-group .form-control {
    padding-left: 60px;
}


.profile-section-content .form-control-group .addon {
    position: absolute;
    top: 1px;
    left: 1px;
    background-color: #F1F1F1;
    color: rgba(0, 0, 0, 0.6);
    width: 50px;
    height: calc(100% - 1.5px);
    border-radius: 10px 0 0 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.profile-section-content .btn-upload-prc {
    color: #000;
    background-color: #C2C2C2;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 12px;
    cursor: pointer;
}

.profile-section-content .btn-prc {
    width: fit-content;
    background-color: #CF0A0A;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 12px;
    cursor: pointer;
}

.profile-section-content .btn-prc a {
    text-decoration: none;
    color: #FFF;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}

.profile-section-content .uploaded-prc-id {
    display: none;
    justify-content: space-between;
    align-items: center;
    border: 3px dashed rgba(0, 0, 92, 0.5) !important;
    background-color: rgba(0, 0, 92, 0.1);
    color: #000;
    margin-bottom: 12px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 500;
}

.profile-section-content .uploaded-prc-id.file-uploaded {
    display: flex;
}

.profile-section-content .uploaded-prc-id a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-section-content .uploaded-prc-id span {
    margin-left: 12px;
    cursor: pointer;
}

.profile-section-content .upload-note {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.5);
}

.profile-section.form-actions {
    border-top: none;
}

.profile-section .btn.btn-cancel {
    background-color: #808080;
}

.profile-section .btn.btn-cancel,
.profile-section .btn.btn-confirm {
    margin: 0 12px;
}

@media screen and (max-width: 1200px) {
    .profile-main-container {
        margin: 50px 50px;
    }

    .profile-section .profile-grid {
        grid-template-columns: 250px 1fr;
    }

    .profile-section .profile-section-content {
        padding-left: 30px;
    }

    .profile-section .profile-section-content .account-picture {
        margin-right: 80px;
    }

    .profile-section .profile-section-content .user-picture {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 992px) {
    .profile-section .profile-section-content {
        padding-left: 0;
    }

    .profile-section .profile-section-content .account-container {
        flex-direction: column;
    }

    .profile-section .profile-section-content .account-picture {
        margin-right: 0;
    }

    .profile-section-content .account-info {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .profile-main-container {
        margin: 50px 30px;
    }

    .profile-section .profile-grid {
        grid-template-columns: 1fr;
    }

    .profile-section .profile-section-label {
        margin-bottom: 40px;
    }


}

.profile-container {
    background-color: white;
    margin: 100px;
    width: 700px;
    min-width: 300px;
    border-radius: 10px;
    padding: 50px 100px;
    position: relative;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.profile-container .back {
    position: absolute;
    left: 40px;
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

@media screen and (max-width: 768px) {
    .profile-container {
        padding: 20px;
        margin: 20px 20px 50px;
        filter: none;
    }

    .profile-container .back {
        position: relative;
        left: 0;
        align-self: flex-start;
        margin-bottom: 20px;
    }

}

.profile-container .heading {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 6px;
}

.profile-container .subheading {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 25px;
}

.profile-container .note {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.profile-container .status {
    color: #18C615;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.profile-container .field-container {
    margin-bottom: 30px;
}

.profile-container .form-label {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    min-width: max-content;
}

.profile-container .error-message {
    font-weight: 400;
    font-size: 12px;
    color: #CF0A0A;
    margin-bottom: 0.5rem;
    margin-left: 6px;
}

.profile-container .form-control {
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 20px;
}

.profile-container .form-control.error {
    border: 0.8px solid #CF0A0A;
}

.profile-container .password-field {
    position: relative;
}

.profile-container .password-field .form-control {
    padding-right: 50px;
}

.profile-container .password-field .addon {
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px 20px;
    cursor: pointer;
}

.profile-container .btn {
    color: white;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    padding: 16px 32px;
    background: #CF0A0A;
    border-radius: 10px;
    margin-top: 20px;
}

.custom-modal-change-pic {
    border: 1px solid #000;
    max-width: 400px;
    min-width: 300px;
    width: 100%;
}

.custom-modal-change-pic .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.custom-modal-change-pic .modal-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
}

.custom-modal-change-pic .modal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 10px;
}

.custom-modal-change-pic .upload-profile-picture {
    border: 3px dashed rgba(0, 0, 92, 0.5);
    background-color: rgba(0, 0, 92, 0.1);
    max-width: 300px;
    width: 90%;
    aspect-ratio: 1/1;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-align: center;
}

.custom-modal-change-pic .upload-profile-picture i {
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    color: rgba(0, 0, 92, 0.5);
    margin-bottom: 5px;
}

.custom-modal-change-pic .upload-profile-picture span {
    font-weight: 700;
    font-size: 22px;
    line-height: 22px;
    color: rgba(0, 0, 92, 0.5);
}

.custom-modal-change-pic .picture-container {
    border: 1px solid #000;
    max-width: 300px;
    width: 100%;
    aspect-ratio: 1 !important;
    border-radius: 10px;
    margin-bottom: 40px;
}

.custom-modal-change-pic .picture-container.croppie-container .cr-boundary {
    border-radius: 10px;
    max-width: 300px;
    width: 100%;
    aspect-ratio: 1;
}

.custom-modal-change-pic .picture-container.croppie-container .cr-vp-circle {
    border: 3px dashed #FFF;
    width: calc(300px *0.9) !important;
    aspect-ratio: 1;
}

.custom-modal-change-pic .picture-container.croppie-container .cr-slider-wrap {
    margin: 10px auto;
}

.custom-modal-change-pic .picture-container.croppie-container .cr-slider:focus {
    outline: none;
}

.custom-modal-change-pic .picture-container.croppie-container .cr-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: #1D1D79;
    border-radius: 10px;
}

.custom-modal-change-pic .picture-container.croppie-container .cr-slider::-webkit-slider-thumb {
    border: 1px solid #1D1D79;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #FFFFFF;
    cursor: pointer;
    -webkit-appearance: none;
}

.custom-modal-change-pic .picture-container.croppie-container .cr-slider:focus::-webkit-slider-runnable-track {
    background: #1D1D79;
}

.custom-modal-change-pic .picture-container.croppie-container .cr-slider::-moz-range-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: #1D1D79;
    border-radius: 10px;
}

.custom-modal-change-pic .picture-container.croppie-container .cr-slider::-moz-range-thumb {
    border: 1px solid #1D1D79;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #FFFFFF;
    cursor: pointer;
}

.custom-modal-change-pic .picture-container.croppie-container .cr-slider::-ms-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

.custom-modal-change-pic .picture-container.croppie-container .cr-slider::-ms-fill-lower {
    background: #1D1D79;
    border-radius: 10px;
}

.custom-modal-change-pic .picture-container.croppie-container .cr-slider::-ms-fill-upper {
    background: #1D1D79;
    border-radius: 10px;
}

.custom-modal-change-pic .picture-container.croppie-container .cr-slider::-ms-thumb {
    margin-top: 1px;
    border: 1px solid #1D1D79;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #FFFFFF;
    cursor: pointer;
}

.custom-modal-change-pic .picture-container.croppie-container .cr-slider:focus::-ms-fill-lower {
    background: #1D1D79;
}

.custom-modal-change-pic .picture-container.croppie-container .cr-slider:focus::-ms-fill-upper {
    background: #1D1D79;
}

.custom-modal-change-pic .actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

@media screen and (max-width: 768px) {
    .custom-modal-change-pic .actions {
        flex-direction: column;
    }

    .custom-modal-change-pic .actions .btn {
        width: 100%;
    }
}

.custom-modal-change-pic .actions .btn {
    font-weight: 400;
    font-size: 16px;
    padding: 10px 32px;
    color: white;
    margin: 8px;
}

.custom-modal-change-pic .actions .btn.btn-cancel {
    background-color: #808080;
}

.custom-modal-change-pic .actions .btn.btn-confirm {
    background-color: #CF0A0A;
}

/* View User */

.view-user-container {
    margin: 50px auto;
}

.view-user-container .header {
    padding: 0 20px 20px;
    border-bottom: 2px solid #0000BA;
    display: flex;
    align-items: center;
}

.view-user-container .header .image-wrap {
    background-color: #EEE;
    height: 100px;
    width: 100px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    margin-right: 30px;
}

.view-user-container .header .user-wrap {
    display: flex;
    flex-direction: column;
    align-items: start;
    height: 100%;
    text-align: center;
}

.view-user-container .header .user-wrap .user-name {
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.view-user-container .header .user-wrap .user-name .verified {
    margin-left: 5px;
    font-size: 20px;
    color: #60D25E;
}

.view-user-container .header .user-wrap .user-company {
    font-size: 16px;
    font-weight: 500;
}

.view-user-container .header .user-wrap .user-date {
    font-size: 16px;
    font-weight: 500;
    color: #7272A4;
}

.view-user-container .no-ads {
    font-size: 24px;
    font-weight: 600;
    padding: 20px;
}

@media screen and (max-width: 576px) {
    .view-user-container .header {
        flex-direction: column;
    }

    .view-user-container .header .image-wrap {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .view-user-container .header .user-wrap {
        align-items: center;
    }

    .view-user-container .header .user-wrap .user-name {
        font-size: 20px;
    }

    .view-user-container .header .user-wrap .user-name .verified {
        font-size: 16px;
    }

    .view-user-container .header .user-wrap .user-company {
        font-size: 14px;
    }

    .view-user-container .header .user-wrap .user-date {
        font-size: 14px;
    }

    .view-user-container .no-ads {
        font-size: 20px;
    }
}