* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

.option-icon-cont {
    width: 3rem;
    height: 3rem;
    background-color: #bababa;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 2rem;
    left: 2rem;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.option-icon-cont .material-symbols-outlined {
    font-size: 35px;
}

.tools-cont {
    /* border: 3px solid black; */
    display: none;
    flex-direction: column;
    width: 65px;
    justify-content: space-around;
    height: 30rem;
    background-color: #bababa;
    align-items: center;
    position: absolute;
    left: 1.5rem;
    top: 7rem;
    border-radius: 6px;
}

.animation {
    animation-name: scale-tool-cont;
    animation-duration: 0.4s;
}

@keyframes scale-tool-cont {
    0% {
        transform: scaleY(0.1);
    }

    100% {
        transform: scaleY(1);
    }
}

.tool-item {
    /* border: 3px solid red; */
    font-size: 3rem;
    cursor: pointer;
}

.pencil-tool-cont {

    /* border: 3px solid black; */
    position: absolute;
    top: 7.7rem;
    left: 6rem;
    width: 11.8rem;
    /* display: flex; */
    align-items: center;
    background-color: #bababa;
    height: 3rem;
    border-radius: 6px;
    display: none;
}

.pencil-thickness-cont {
    /* border: 3px solid red; */
    display: flex;
}

.pencil-color-cont {
    position: relative;
    display: flex;
    justify-content: center;
    /* border: 3px solid green; */
    cursor: pointer;
    margin-left: 0.6rem;

}

.pencil-color-cont>* {
    font-size: 2.5rem;
}

.pencil-color-cont input {
    /* visibility:hidden; */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
}

.eraser-tool-cont {
    position: absolute;
    top: 11.7rem;
    left: 6rem;
    width: 8.8rem;
    /* display: flex; */
    align-items: center;
    background-color: #bababa;
    height: 3rem;
    border-radius: 6px;
    display: none;

}

/* //Note  */

.note-cont, .note-contP{
    background-color: #bababa;
    /* border: 3px solid black; */
    position: absolute;
    top: 10rem;
    left: 20rem;
    display: flex;
    flex-direction: column;
    /* padding: 0.1rem; */
    border-radius: 6px;
}

.note-heading, .note-headingP {
    border-radius: 6px;
    /* border: 3px solid red; */
    height: 1.7rem;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    background-color: #545454;
    width: 247px;
    height: 30px;
}

.note-minimize, .note-minimizeP {
    background-color: green;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    margin-right: 0.4rem;
    cursor: pointer;
}

.note-remove, .note-removeP {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: red;
    margin-right: 0.4rem;
    cursor: pointer;
}

.note-textP{
    width: 247px;
    height: 168px;
}

.note-text textarea {
    /* border: 3px solid blue; */
    background-color: #bababa;
    border: none;
    width: 247px;
    height: 168px;
}

.draw-board {

    /* width: 100vw;
    height: 100vh; */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

/* file */
.note-textP .file{
    width: 100%;
    height: 100%;
    border-radius: 6px ;
}