@charset "UTF-8";

* {
    box-sizing: border-box;
}

.dropdown {
    position: relative;
    margin-bottom: 20px;
}

    .dropdown .dropdown-list {
        padding: 25px 20px;
        background: #fff;
        position: absolute;
        top: 50px;
        left: 0;
        right: 0;
        border: 1px solid rgba(0, 0, 0, 0.2);
        max-height: 223px;
        overflow-y: auto;
        background: #e5e5e5;
        display: none;
        z-index: 10;
    }

    .dropdown .checkbox {
        opacity: 0;
        transition: opacity 0.2s;
    }

    .dropdown .dropdown-label {
        display: block;
        height: 44px;
        font-size: 16px;
        line-height: 42px;
        background: #e5e5e5;
        /* border: 1px solid rgba(0, 0, 0, 0.2); */
        border-radius: 5px;
        padding: 0 40px 0 20px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

        .dropdown .dropdown-label:before {
            content: "▼";
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            transition: transform 0.25s;
            transform-origin: center center;
        }

    .dropdown.open .dropdown-list {
        display: block;
    }

    .dropdown.open .checkbox {
        transition: 2s opacity 2s;
        opacity: 1;
    }

    .dropdown.open .dropdown-label:before {
        transform: translateY(-50%) rotate(-180deg);
    }

.checkbox {
    margin-bottom: 20px;
}

    .checkbox:last-child {
        margin-bottom: 0;
    }

    .checkbox .checkbox-custom {
        display: none;
    }

    .checkbox .checkbox-custom-label {
        display: inline-block;
        position: relative;
        vertical-align: middle;
        cursor: pointer;
    }

    .checkbox .checkbox-custom + .checkbox-custom-label:before {
        content: "";
        background: transparent;
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
        text-align: center;
        width: 20px;
        height: 20px;
        border: 1px solid rgba(0, 0, 0, 0.3);
        border-radius: 2px;
        margin-top: -2px;
    }

    .checkbox .checkbox-custom:checked + .checkbox-custom-label:after {
        content: "";
        position: absolute;
        top: 2px;
        left: 7px;
        height: 13px;
        padding: 2px;
        transform: rotate(45deg);
        text-align: center;
        border: solid #000;
        border-width: 0 2px 2px 0;
    }

    .checkbox .checkbox-custom-label {
        line-height: 16px;
        font-size: 16px;
        margin-right: 0;
        margin-left: 0;
        color: black;
    }


/*profile image css*/

.profile-pic {
    color: transparent;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    transition: all 0.3s ease;
}

    .profile-pic input {
        display: none;
    }

    .profile-pic img {
        position: absolute;
        object-fit: cover;
        width: 165px;
        height: 165px;
        box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.35);
        z-index: 0;
    }

    .profile-pic .-label {
        cursor: pointer;
        height: 165px;
        width: 165px;
    }

    .profile-pic:hover .-label {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 1000;
        color: #fafafa;
        transition: background-color 0.2s ease-in-out;
        border-radius: 100px;
    }

.changeImg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center
}
