.settings {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    width: 100%;
}

.settingsMenu {
    width: 240px;
    background-color: #ad444400;
    padding: 5px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;


    button {
        cursor: pointer;
        margin: 2px;
        text-align: left;
        font-weight: bold;
        border: 0px;
        background-color: #b2b2b2;
        padding: 10px;
        border-radius: 4px;
        min-width: 200px;
        width: calc(100% - 10px);
        display: flex;
        align-items: center;


        .btnIcon {
            margin-right: 8px;
            height: 18px;
        }

        &:hover {
            background-color: #b2b2b291;
        }
    }

    .active {
        background-color: rgb(62, 62, 227) !important;
        color: #ffffff;
    }
}

.settingsBox {
    width: calc(100% - 260px);
    flex-wrap: 1;
}

.settingBox {
    height: 500px;
    border: 1px solid rgb(188, 188, 188);
    margin: 8px;
    padding: 5px;
    border-radius: 4px;
    display: none;
}

.disable {
    cursor: not-allowed !important;
}

.logOut {
    background-color: #ea621880 !important;

    &:hover {
        background-color: #ea6118d3 !important;
    }
}

#ProfileBox {
    display: block;
}

#ProfileBox,
#PasswordBox,
#ContactBox {
    text-align: center;

    .infoForm {
        label {
            display: inline-block;
            width: 300px;
        }

        input[type='text'],
        input[type='email'],
        input[type='password'] {
            max-width: 500px;
            width: calc(100% - 40px);
            padding: 0px 10px;
            outline: none;
            height: 30px;
            border-radius: 4px;
            border: 0px, solid rgb(204, 44, 44);
            margin-bottom: 20px;

            &:hover {
                background-color: #ffffff8c;
            }
        }
    }


    .saveBtn {
        width: 300px;
        padding: 0px 10px;
        outline: none;
        height: 30px;
        border-radius: 4px;
        background-color: #3a60d0bc;
        color: #efefef;
        font-weight: bolder;
        border: 0px, solid rgb(204, 44, 44);
        margin-bottom: 20px;
        font-size: larger;
        cursor: pointer;

        &:hover {
            background-color: #3a60d0;
            color: #fff;
        }
    }
}

#NotificationBox {
    h3 {
        text-align: center;
    }

    .notificationList {
        height: calc(100% - 70px);
        overflow: auto;

        a {
            text-decoration: none;
            color: black;
            font-weight: bold;
        }
    }

    .readed {
        padding: 5px;
        border-radius: 4px;
    }
}

#PasswordBox {}

#ContactBox {}


@media screen and (max-width: 780px) {
    .settingsMenu {
        width: 180px;
    }

    .settingsBox {
        width: calc(100% - 190px);
    }

    .settingsMenu {
        button {
            min-width: 150px;
        }
    }
}

@media screen and (max-width: 600px) {
    #NotificationBox {
        .notificationList {
            height: 400px;
        }
    }

    .settings {
        align-items: center;
        align-content: center;
        flex-direction: column;
    }

    .settingsMenu {
        width: calc(100% - 10px);
        justify-content: start;
        min-height: fit-content;
    }

    .settingBox {

        height: fit-content;
    }

    .settingsBox {
        flex-wrap: 1;
        width: calc(100% - 10px);
        height: fit-content;
    }

    #ProfileBox,
    #PasswordBox,
    #ContactBox {
        .infoForm {
            label {
                width: 200px;
            }
        }

        .saveBtn {
            width: 200px;
            max-width: 250px;
        }
    }
}