html[data-theme="light"], html[data-bs-theme="light"]{
    .inmp-wrapper[widget_view = '2'] {
        background-color: white;
        
        .inmp-new, .inmp-list{
            .inmp-element{
                background-color: var(--background-color-input);
            }

            input{
                background-color: white;
            }
        }
        
    }
} 
html[data-theme="dark"], html[data-bs-theme="dark"]{
    .inmp-wrapper[widget_view = '2'] {
        background-color: var(--background-color-blank);
        
        .inmp-new, .inmp-list{
            .inmp-element{
                background-color: white;
            }

            input{
                background-color: var(--background-color-blank);
            }
        }
        
    }
}

.inmp-wrapper[widget_view = '2']{
    border-radius: 10px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1) !important;

    .inmp-new, .inmp-list{
        border-radius: 20px;
        
        .inmp-element .img:hover{
            box-shadow: none;
            left: -10px;
            top: 10px;
        } 
       
        .img{
            border-left: 8px solid #66666687;
            border-bottom: 8px solid #d5d5d5;
            border-right: 1px solid #66666687;
            border-top: 1px solid #66666687;
            margin: 20px;
            background-color: white;
            border: 1px solid #66666615;
            -webkit-box-shadow: -5px 5px 0px 0px rgba(0, 0, 0, 0.2);
            -moz-box-shadow: -5px 5px 0px 0px rgba(0, 0, 0, 0.2);
            box-shadow: -5px 5px 0px 0px rgba(0, 0, 0, 0.2);
        }
    }
}