.cust-select {
    width: 100%;
    border: 1px solid var(--separator);
    border-radius: var(--border-radius-md);
    background-color: var(--foreground);
    min-height: var(--input-height);
    transition: border-color .15s ease-in-out;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    font-size: 14px;
    
    color: white;
    text-align: left;
    padding: 10px;
    position: fixed;
    z-index: 1;
    right: 70px;
    bottom: 50px;
    border-radius:15px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s;
    animation: fadein 0.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 50px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 50px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 50px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 50px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

.btn-in-form{
    background: transparent;
    border: none;
}
.img-pre{
    /* height:80px;
    width: -webkit-fill-available; */
    height: auto;
    width: 80px;
}

