﻿/********  Buttons   **********/
.dialog-style-export-opr .button,
.button {
    text-align: center;
    font-family: 'Roboto';
    border: 1px solid #f89938;
    background: #f93;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,.5);
    cursor: pointer;
    font-size: 14px;
    height: 34px;
}

    .button:hover {
        background: #FF8710;
    }

    .button:disabled, .button:disabled:hover {
        background: #B8B8B8;
        border: 1px solid #ACACAC;
        cursor: not-allowed;
    }

    .button i,
    .button img {
        transition: all .2s ease-in-out;
    }

.button-sm {
    font-size: 12px;
    height: 26px;
}

.button-bg {
    font-size: 18px;
    height: 40px;
    line-height: 30px;
}

.button-popup {
    font-weight: bold;
    width: 100px;
}

.btnConfirm {
    display: flex;
    width: 35px;
    margin: 20px 10px 0 10px;
    float: right;
}

    .btnConfirm p {
        margin: auto;
    }

.flex-button {
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.polis-bootstrap .button:not(.linkButton):not(.invertedButton):not(.search-page-link):not(.btnSwitch):not(.tab-not-selected) {
    color: #fff;
}


/********  Link Buttons   **********/
button.linkButton {
    color: #FF9933;
    transition: all .2s ease-in-out;
    background-color: #FFF;
    box-shadow: none;
    border: none;
}

    button.linkButton:hover {
        background-color: #FF9933;
        color: #FFF;
    }

/********  Inverted Buttons   **********/
.polis-bootstrap button.invertedButton {
    color: #f93;
    background-color: #fff;
    box-shadow: none;
    width: 100%;
}

    .polis-bootstrap button.invertedButton:hover {
        background-color: #FF9933;
        color: #FFF;
    }

    .polis-bootstrap button.invertedButton.greyButton {
        color: #4C4C4C;
    }

        .polis-bootstrap button.invertedButton.greyButton:hover {
            color: #FFF;
        }

/* Animated link underline */
.polis-bootstrap .animate-underline {
    padding-bottom: 4px;
    background-image: linear-gradient(#FFF, #FFF);
    -ms-background-position: 0 100%;
    background-position: 0 100%; /*OR bottom left*/
    -ms-background-size: 0% 2px;
    background-size: 0% 2px;
    -ms-background-repeat: no-repeat;
    background-repeat: no-repeat;
    -ms-transition: background-size 0.3s, background-position 0s 0.3s;
    -o-transition: background-size 0.3s, background-position 0s 0.3s;
    -webkit-transition: background-size 0.3s, background-position 0s 0.3s;
    transition: background-size 0.3s, background-position 0s 0.3s, color 0.3s; /*change after the size immediately*/
}

    .polis-bootstrap .animate-underline:hover {
        -ms-background-position: 0% 100%;
        background-position: 0% 100%; /*OR bottom right*/
        -ms-background-size: 100% 2px;
        background-size: 100% 2px;
        text-decoration: none;
    }
/* END Animated link underline */