﻿.error {   
    color: red !important;
}


.profile {
    width: 100px;
    position: relative;
    margin: 0 auto;
}

form i {
    position: absolute;
    top: 50%;
    right: 4%;
    cursor: pointer;
    color: #4c4549;
    /* background-color: green*/
}

.cam-icon .photo-upload-icon {
    top: inherit;
}

.cam-icon .photo-upload-icon {
    position: absolute;
    bottom: -9px;
    left: 0;
    right: 0;
    margin: auto;
    line-height: 0;
    max-width: 25px;
}

.photo-upload-icon > input[type=file] {
    font-size: 0;
    position: absolute;
    height: 26px;
    width: 26px;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.photo-upload-icon > input[type=file] {
    font-size: 0;
    position: absolute;
    height: 26px !important;
    width: 26px !important;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.profile .profile-image {
    display: flex;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid #d6e1e6;
    overflow: hidden;
}

img {
    vertical-align: middle;
    border-style: none;
    max-width: 100%;
}
#cropImagePop .result img {
    width: 100% !important;
}

#cropImagePop #cropImageBtn {
    padding: 8px 10px;
    background: #2385d9;
    color: #fff;
    border: transparent;
    border-radius: 4px;
    border-color: #2385d9;
}

#cropImagePop #UploadImageBtn {
    padding: 8px 10px;
    border-radius: 4px;
    margin-left: 5px;
    
}

.profile .profile-image {
    width: 150px !important;
    height: 150px !important;
}

.cam-icon .photo-upload-icon {
    bottom: 0 !important;
    max-width: 30px !important;
    left: 50px!important;
}
    .cam-icon .photo-upload-icon.photo-upload-icons {
        bottom: 0 !important;
        max-width: 30px !important;
        left: 0px !important;
    }

ul.dropdown-menu.drop-menu.show {
    width: 90% !important;
    right: 0 !important;
}


.profile .profile-images {
    display: flex;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid #d6e1e6;
    overflow: hidden;
}

.DropdownRole {
    height: 42px;
    width: 170px;
    margin-top: 11px;
    justify-content: center;
    /*   text-align: center;*/
    border: 2px solid;
    font-size: 17px;
    border-radius: 5px;
}
.DropdownDepartment {
    height: 42px;
    width: 170px;
    margin-top: 11px;
    justify-content: center;
    /*   text-align: center;*/
    border: 2px solid;
    font-size: 17px;
    border-radius: 5px;
}
.rightMargin{
    cursor:pointer
}
.edit-form-section {
    border: 2px solid;
    padding: 28px;
    margin: 30px;
    box-shadow: snow;
    box-shadow: 2px 3px 5px 6px;
}
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
/* Radio Button Group */
.radio-group {
    display: flex;
    flex-direction: column;
}

/* Radio Item Styling */
.radio-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .radio-item input[type="radio"] {
        appearance: none;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 2px solid #007bff;
        outline: none;
        cursor: pointer;
        position: relative;
        margin-right: 10px;
        transition: background-color 0.3s, border-color 0.3s;
    }

        .radio-item input[type="radio"]:checked {
            background-color: #007bff;
            border-color: #007bff;
        }

            .radio-item input[type="radio"]:checked::after {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 10px;
                height: 10px;
                background-color: #ffffff;
                border-radius: 50%;
                transform: translate(-50%, -50%);
            }

    /* Label for Radio Button */
    .radio-item label {
        font-size: 1em;
        color: #333;
        margin: 0;
    }