* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

body{
    overflow: hidden;
}

.tools-container {
    height: 100px;
    /* background: aquamarine; */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.tools-content {
    height: 70%;
    width: 70%;
    /* border: 1px solid; */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background: aliceblue;
    border-radius: 10px;
}

.tool {
    height: 55%;
    width: 10%;
    position: relative;
}

.tool img {
    height: 100%;
    width: 100%;
}

.drawing-container {
}

/*-----------Sticky css----------*/

.sticky {
    position: absolute;
    top: 200px;
    left: 300px;
    height: 200px;
    width: 250px;
    /* background: bisque; */
}

.sticky-header {
    height: 13%;
    background: linear-gradient(45deg, purple, yellow);
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.sticky-header div {
    height: 70%;
    width: 7%;
    margin-right: 10px;
    border-radius: 50px;
}

.minimize i{
    color: dimgray;
    font-size: 20px;
}
.close i{
    color: red;
    font-size: 20px;
}

.sticky-content {
    height: 87%;
    /* border: 1px solid; */
    border-bottom-right-radius: 20px;
    background: palegoldenrod;
    outline: none;
    padding: 10px;
}

.sticky-image-div {
    height: 87%;
}

.sticky-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*------------Pen & Eraser CSS-----------*/

.active-tool {
    /* transform: scale(1.2); */
}

.fade {
    opacity: 0.5;
}

.pen-tool-options {
    height: 100px;
    width: 100px;
    position: absolute;
    /* background: aquamarine; */
    top: 60px;
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 2px;
    background: aliceblue;
}

.eraser-tool-options {
    height: 40px;
    width: 100px;
    position: absolute;
    top: 65px;
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 2px;
    background: aliceblue;
}

.hide {
    display: none;
}

.pen-size {
}

.pen-size input {
    width: 100%;
}

.eraser-size input{
    width: 100%;
}

.pen-colors {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

.pen-colors div {
    height: 15px;
    width: 14px;
    border-radius: 50px;
}

.black {
    background: black;
}
.yellow {
    background: yellow;
}
.blue {
    background: blue;
}
.green {
    background: green;
}
.red {
    background: red;
}

/*#############################################################*/

/*========Toggle theme CSS & EXTRA CSS BY SP===========*/

/*------------redo css------------*/

.fade{
    opacity: 0.5;
}

/*--------sticky taskbar & div css--------*/

.msdiv{
    height: 35px;
    width: 35px;
    position: relative
}
.s-taskbar{
    position: absolute;
    height: 80%;
    width: 50px;
    border: 1px solid darkgray;
    border-radius: 20px;
    top: 15%;
    right: 1%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.s-img{
    height: 100%;
    width: 100%;
}

/*-------CheckBox Css------------*/

.checkbox {
	opacity: 0;
	position: absolute;
}

.label {
	background-color: #111;
	border-radius: 50px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px;
	position: relative;
	height: 26px;
	width: 50px;
	transform: scale(1.5);
}

.label .ball {
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: 2px;
	height: 22px;
	width: 22px;
	transform: translateX(0px);
	transition: transform 0.2s linear;
}

.ball{
    background-color: #fff;
}

.checkbox:checked + .label .ball {
	transform: translateX(24px);
}

.fa-moon {
	color: #f1c40f;
}

.fa-sun {
    color: #f39c12;
}

.night{
    background-color: darkslategray ;
}
.dark-ball{
    background-color: black;
}

/*------Tools and drawing containers css-------*/

.tools-content-dark{
    background: darkslategray;
}
.canvas-dark{
    background: black;
}
.tools-container-dark{
    background: black;
}

/*--------Taskbar css---------*/

.light-s-taskbar{
    background-color: aliceblue;
}
.dark-s-taskbar{
    background-color: darkslategray;
}

/*------pen and eraser css------*/

.tool-options-dark{
    background-color: darkslategray;
}

.white{
    background: white;
}

/*-------- Copyright--------*/
.copyright{
    position: absolute;
    bottom: 2%;
    right: 2%;
    font-style: italic;
    font-size: 17px;
}

.cr-color{
    color: white;
}