

:root {
    /*--main-bg-color: #3e8e41;*/
    --main-bg-color: 69, 70, 69;
}

.menu-vert-tab {
    height: 97vh;
    background-color: rgb(var(--main-bg-color));
    border-radius: 4px;
}

.main-frame{
    height: 90vh;
    border-radius: 4px;
    min-width: 100%;
}

.menu-parent{
    cursor: pointer;
    color: #fff;
    text-shadow: 2px 2px 3px #000000;
}

.menu-icon{
    margin-top:10px;
    margin-left: 8px;
    cursor: pointer;
}

.menu-name{
    margin-top:10px;
    padding-left: 5px;
    cursor: pointer;
}

.menu-title-line{
    height:10px;
    border-bottom: 1px solid white;
}

.title-panel {
    display: inline-block;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: rgb(var(--main-bg-color));
    border: none;
    border-radius: 6px;
    text-shadow: 2px 2px 4px #000000;

}


.smd-details > :not(:first-child) {
    background-color:  rgba(var(--main-bg-color), 0.15); /* rgb(235, 245, 226);*/
}

.grid-2-3{
    float: left;
    width: 35px;
    
}
.grid-97-6{
    float: left;
    width: calc(100% - 36px);
    
}

.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 20px;
}

.switch input {display:none;}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .3s;
    transition: .3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .3s;
    transition: .3s;
}

input:checked + .slider {
    background-color: rgb(161, 97, 102);
}

input:focus + .slider {
    box-shadow: 0 0 1px rgb(161, 97, 102);
}

input:checked + .slider:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 20px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Rounded sliders */
.slider.square {
    border-radius: 1px;
}

.slider.square:before {
    border-radius: 2%;
}

.row-odds{
    display: block;
}
.row-odds > :nth-child(odd) {
    background-color: rgba(var(--main-bg-color), 0.2);/* rgb(194, 209, 181);*/
}

.row-odds > :hover  {
    background-color: rgba(var(--main-bg-color), 0.5);
    transform: translateX(2px);
    /*color: rgba(var(--main-bg-color), 0.75);*/
    filter: brightness(50%);

}

tr:hover{
    background-color: rgba(var(--main-bg-color), 0.1);
    filter: brightness(50%);

}