.vmOptionStyle {
    width: 80%;
    align-self: center;
    text-align: start;
    padding: 20px;
}

.vmBtnIcon > svg {
    width: 30px !important;
    font-size: 25px;
    padding-right: 15px;
    padding-left: 5px;
}

.justifyCenter {
    display: flex;
    justify-content: center;
}

.loadingOverlay {
    text-align: center;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    color: #3366FF;
    z-index: 99999;
    width: 100%;
    height: 100vh;
    text-align: center;
    background-size: cover;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .loadingOverlay h3 {
        z-index: 100000;
        padding-left: 10px;
    }

.loader {
    z-index: 100000;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    text-align: center;
    width: 30px;
    height: 30px;
}

    .loader > svg {
        align-self: center;
        font-size: 30px;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.fade {
    opacity: 0.7;
}
.navbar {
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    border-top: 2px solid #215e89;
    box-shadow: 0 1px 5px -2px #888;
    background: #f1f1f1;
    z-index: 1000;
}

    .navbar > img {
        max-height: 20px;
        padding-left: 20px;
    }

.dropbtn {
    color: #3366FF;
    font-size: 1em;
    border: none;
    cursor: pointer;
}

.dropbtn svg {
    padding: 16px;
}

.dropbtn:hover, .dropbtn:focus {
    color: #000ACC;
    transition: color 0.2s linear, background-color 0.2s linear;
}

.dropdown {
    float: right;
    position: relative;
    display: inline-block;
}

    .dropdown a:hover {
        background-color: #ddd;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 200px;
    overflow: auto;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.2);
    right: 2px;
    z-index: 1;
    top: 50px;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

.show {
    display: block;
}

