﻿
.imageButton {
    border: 1px solid black;
    border-radius: 15px;
    background-color: gold;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    height: 35px;
    margin: 3px 3px 3px 3px;
    line-height: 35px;
    text-align: left;
    padding-left: 5px;
    padding-right: 5px;
}

    .imageButton img {
        width: 30px;
        height: 30px;
        margin-left: 5px;
    }

    .imageButton span {
        padding-left: 5px;
        vertical-align: text-bottom;
        padding-right: 8px;
    }

a.imageButton {
    text-decoration: none;
    display: inline-block;
}

    a.imageButton img {
        margin-top: 3px;
        vertical-align: unset;
    }

button.imageButton img {
    margin-top: 3px;
    vertical-align: unset;
}


.circular-loader {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 150px;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    width: 150px;
    position: relative;
    margin: auto;
}

.loader-path {
    stroke-dasharray: 150,200;
    stroke-dashoffset: -10;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

.update_modal_center {
    position: fixed; /* or absolute */
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
    color: #ffFF00;
    font-weight: bold;
    font-size: 1.2em;
}

.update_modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    background-color: rgba(0,0,0,.5);
    z-index: 50000;
}

.form-horizontal {
    background-color: transparent;
}

.modal {
    color: #000;
}