[data-theme="light"] {
    --bg-color: #ffffff;
    --togglebg: rgb(185, 166, 255);
    --toggleslider: #303030;
    --roundcolor: rgb(55, 0, 255);
    --color: rgb(55, 0, 255);
    --cbg: rgba(200, 200, 200);
    --sliderAni: sliderLeft;
}

[data-theme="dark"] {
    --bg-color: #1b1b1b;
    --togglebg: rgba(0, 161, 139, 0.274);
    --toggleslider: #e9dcdc;
    --roundcolor: rgb(0, 216, 187);
    --color: rgb(0, 216, 187);
    --cbg: rgba(90, 90, 90);
    --sliderAni: sliderRight;
}
@keyframes dropdown {
    0% {
        opacity: 0;
        transform: rotateX(-90deg);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }
}
@keyframes dropup {
    0% {
        opacity: 1;
        transform: rotateX(0deg);
    }

    100% {
        opacity: 0;
        transform: rotateX(-90deg);
    }
}
.mainWorkBody .rightNotch::-webkit-scrollbar{
    -webkit-appearance: none;
    appearance: none;
    width:2px;
    height:2px;
}
.mainWorkBody .rightNotch::-webkit-scrollbar-track{
    background-color: transparent;
}
.mainWorkBody .rightNotch::-webkit-scrollbar-thumb {
    background-color: var(--color);
    border-radius: 5px;
    outline:none;
}
.mainWorkBody .rightNotch {
    width: 25%;
    height: 100%;
    background-color: transparent;
    color: var(--color);
    overflow: hidden;
    overflow-y: auto;
    z-index: 1;
    box-shadow: -0.5px 0px 5px 0px black;
    padding: 5px;
}
input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

input[type="color"]::-webkit-color-swatch {
    border: none;
}
input[type="color"]{
    width:1rem;
    height:1rem;
    padding:0;
    margin:0;
    border-radius: 100%;
    outline:none;
    cursor:pointer;
    overflow: hidden;
    border: 0.5px solid var(--color);
    background-color: transparent;
}
input[type="checkbox"]{
    width:1rem;
    height:1rem;
    padding:0;
    margin:0;
    border-radius: 5px;
    outline:none;
    cursor:pointer;
    overflow: hidden;
    border: 0.5px solid var(--color);
    background-color: transparent;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}
input[type="number"]{
    width:3rem;
    height:1.25rem;
    border:2px solid var(--color);
    background-color: transparent;
    color:var(--color);
    padding:2px 5px;
    text-align: center;
    overflow:auto;
}
input[type="range"]{
    -webkit-appearance: none;
    appearance: none;
    width:50%;
    height: 7px;
    background: var(--toggleslider);
    border-radius: 5px;
    background-size: 70% 100%;
    background-repeat: no-repeat;
    margin-right: 10px;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--color);
    cursor: pointer;
    transition:all .3s ease-in-out;
}

input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    box-shadow: none;
    border: none;
    width:7px;
}
input[type="text"]{
    border:none;
    border-radius: 5px;
    outline:none;
    width:50%;
    height:1.25rem;
    margin-right: 10px;
    padding:2px 5px;
}
.fontStyle{
    border:none;
    border-radius: 5px;
    outline:none;
    width:50%;
    height:1.25rem;
    margin-right: 10px;
    cursor: pointer;
}
.mainWorkBody .rightNotch .dropicon{
    transition:all 0.5s ease;
    transform-origin: center center;
}
.mainWorkBody .rightNotch .body1{
    padding:2px 0;
    width:100%;
    height:fit-content;
    overflow: hidden;
    padding:0 0 2px 0;
    border-bottom: 1px solid var(--color);
    margin: 5px 0;
}
.mainWorkBody .rightNotch .body1 .rntitle1,
.mainWorkBody .rightNotch .body2 .rntitle1 {
    width:fit-content;
    text-align: left;
    font-size: 1rem;
    letter-spacing: 2px;
    color:var(--color);
    margin-bottom: 5px;
    padding:2px 5px;
    border:2px solid var(--color);
    border-radius: 50px;
    outline:none;
    background-color: var(--togglebg);
}
.mainWorkBody .rightNotch .body1 table{
    width:100%;
}
.mainWorkBody .rightNotch .body1 table tr{
    display: flex;
}
.mainWorkBody .rightNotch .body1 table tr .td1{
    width:50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1rem;
}
.mainWorkBody .rightNotch .body1 table tr .td2{
    width: 50%;
    display: flex;
    justify-content:flex-start;
    align-items: center;
    border:none;
}

/* body 2 */




.mainWorkBody .rightNotch .body2 {
    padding: 2px 0;
    width: 100%;
    height: fit-content;
    overflow: hidden;
    padding: 0 0 2px 0;
    border-bottom: 1px solid var(--color);
    margin: 5px 0 0 0;
}

.mainWorkBody .rightNotch .body2 table {
    width: 100%;
}

.mainWorkBody .rightNotch .body2 table tr {
    display: flex;
}

.mainWorkBody .rightNotch .body2 table tr .td1 {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: rgb(255, 89, 89);
    cursor: pointer;
}

.mainWorkBody .rightNotch .body2 table tr .td2 {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    cursor: pointer;
    border: none;
    transition: all 0.5s ease-in-out;
}
.mainWorkBody .rightNotch .body2 table tr .td1:hover{
    transform: scale(0.75);
}

/* body3 */

.mainWorkBody .dropdownBody .content{
    animation: dropdown 300ms ease-in-out forwards;
    transform-origin: top center;
}
.mainWorkBody .dropdownBody{
    width: 100%;
    height: fit-content;
    padding:0;
}
.mainWorkBody .dropdownBody .fullDiv{
    width:100%;
    height:fit-content;
    padding:5px 0;
    border-bottom: 2px solid var(--color);
}
.mainWorkBody .dropdownBody .title:hover{
    background-color: var(--togglebg);
}
.mainWorkBody .dropdownBody .title{
    width:100%;
    display:flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding:5px 10px 5px 0;
}

.mainWorkBody .rightNotch .body3 .body3Content{
    overflow:hidden;
}

.mainWorkBody .rightNotch table {
    width: 100%;
}

.mainWorkBody .rightNotch table tr {
    display: flex;
}

.mainWorkBody .rightNotch table tr .td1,
.mainWorkBody .rightNotch table tr .td2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    line-height: 1.5rem;
    align-items: center;
    font-size: 1rem;
}
.mainWorkBody .rightNotch table tr .td2 {
    border:2px solid var(--color);
    width:fit-content;
    padding:2px 5px;
}

/* body4 */

.mainWorkBody .rightNotch .body4 .body4Content {
    overflow:hidden;
}

.mainWorkBody .rightNotch .body4 table tr .td2{
    justify-content: flex-start;
}

/* body5 */

.mainWorkBody .rightNotch .body5 .body5Content {
    overflow:hidden;
}

.mainWorkBody .rightNotch .body5 table tr .td2 {
    justify-content: flex-start;
}

/* body6 */

.mainWorkBody .rightNotch .body6 .body6Content {
    overflow:hidden;
}

@media screen and (max-width:1000px){
    .mainWorkBody .rightNotch{
        width:100%;
        height: fit-content;
        /* overflow-y:auto; */
        overflow:hidden;
    }
}


