/*
 Theme Name:   Application Ezeecam
 Theme URI:    https://www.ezeecam.com/
 Description:  Ezeecam application
 Author:       Digimeo
 Author URI:   https://www.app.ezeecam.com/
 Version:      1.0
*/
@charset "UTF-8";
/* main colors
white : #fff
light grey : #f5f5f7
purple : #7451ebs
light purple : #e2daff
yellow : #fdc500
grey : #3e3e3e
50% grey : #c1c1c1
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800&display=swap');


/*draw pannel*/
.draw-pannel {
    height: calc(100vh - 65px);
    z-index: 99999999999999;
    width: 286px;
    position: absolute;
    top: 65px;
    right: 0;
    /* background-color: #fffffff7;
 	backdrop-filter: blur(8px); */
    /* background-color: #f5f6f987; */
    background-color: #f5f6f9e1;
    backdrop-filter: blur(3px);
    box-shadow: -8px 0 8px -8px #e0e0e0;
}

.draw-pannel h3 {
    display: block;
    font-size: 12px;
    color: #4a5a6d;
    font-weight: 600;
    letter-spacing: -.5px;
    margin: 0;
    padding: 8px 16px;
}

/* 
.pannel-header {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    max-width: 286px;
    background-color: #f7f8fa;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
}

.pannel-header h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin: 0;
    padding: 0;
} */

.draw_block {
    margin: 22px 0 32px;
}

.draw-tools {
    margin: 4px 4px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* border: 1px solid #7451eb;
    border-radius: 5px; */
}

.draw-tools .container_draw_tools {
    margin: 0 16px;
    display: grid;
    grid-auto-flow: row dense;
    grid-template-columns: repeat(3, 65px);
    grid-template-rows: repeat(auto-fit, 65px);
    ;
    gap: 16px;
}

.draw-tools .draw_disable {
    opacity: .4;
}

.draw-tools .container_draw_tools>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #7451eb;
    padding: 10px;
    cursor: pointer;
}

.draw-tools div img {
    width: 32px;
}

.draw-tools div span {
    font-size: 10px;
}

.draw-list {
    max-height: 490px;
}

.list_draw ul {
    padding: 0 16px;
}

.list_draw ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list_draw ul li span {
    font-size: 12px;
    line-height: 1;
}

.list_draw ul li span.id-draw {
    font-weight: 600;
}

.list_draw ul li span.infos_item_eye,
.list_draw ul li span.infos_item_delete {
    -ms-flex-preferred-size: 20px;
    -webkit-flex-basis: 20px;
    flex-basis: 20px;
    max-width: 20px;
    cursor: pointer;
}

.list_draw ul li span.id-draw,
.list_draw ul li span.titre-draw,
.list_draw ul li span.info_item_number {
    -ms-flex-preferred-size: 71px;
    -webkit-flex-basis: 71px;
    flex-basis: 71px;
    max-width: 71px;
}

.list_draw ul li span.infos_item_delete span {
    color: #ff5470;
}



/**/


/**/

.subFreePaintMenu {
    /* padding: 4px 8px 4px; */
    width: 100%;
    position: static;
    border-radius: 1px;
    background: rgba(255, 254, 248, 0.84);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .6s;
    gap: 8px;
    padding: 4px 8px;
}

#linewidthInput input {
    width: 100%;
    margin: 0 8px;
}

#brush-accordion>div {
    min-width: 36px;
    max-width: 36px;
}





#linewidthInput {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#colorPalette {
    grid-area: colorPalette;
    display: flex;
    justify-content: center;
    align-items: center;
}

#colorPick {
    grid-area: colorPick;
    display: flex;
    justify-content: center;
    align-items: center;
}

#brush-accordion {
    grid-area: brush-accordion;
    display: flex;
    justify-content: center;
    align-items: center;
}

#colorInput {
    grid-area: colorInput;
    display: flex;
    justify-content: center;
    align-items: center;
}