﻿/*
    -------------------------------- Dialog -------------------------------
*/

.aspire-dialog {
    z-index: 1000;
    border: thin solid #888 !important;
}

.aspire-dialog-header {
    background-color: #003399;
    color: white;
    font-weight: normal;
}

.aspire-dialog-content {
    top: 29px !important;
    left: 0px !important;
    right: 0px !important;
    padding-left: 20px;
    padding-right: 20px;
}

.aspire-dialog-bottom button {
    font-size: 12px !important;
    line-height: 26px !important;
    height: 28px !important;
    color: #fff;
    background-color: #003399;
    background-image: none;
    float: right;
    min-width: 88px;
    padding: 0 16px 0 16px;
    border: 0;
    border-radius: 2px;
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.2s;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),0 3px 1px -2px rgba(0, 0, 0, 0.2),0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.dialog-bottom div {
    display: inline-block;
}

.dialog-warning {
    height: 100%;
    padding: 10px;
    font-style: italic;
}

/*
    ----------------------------- Tab Control -----------------------------
*/

.aspire-tabcontrol-caption-container {
    position: absolute;
    top: 5px;
    right: 2px;
    height: 30px;
    padding: 0px;
    margin: 0px;
}

.aspire-tabcontrol-caption-item {
    display: inline-block;
    border: 1px solid #808080;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding-left: 6px;
    padding-right: 6px;
    height: 21px;
    padding-bottom: 0px;
    cursor: pointer;
    margin-bottom: 0px;
}

.aspire-tabcontrol-caption-item-not-selected {
    background-color: white;
    color: #808080;
}

.sdk-tabcontrol-caption-item-not-selected:hover {
    background-color: #003399;
    color: white;
}

.aspire-tabcontrol-caption-item-selected {
    background-color: #428bca;
    color: white;
    font-weight: normal;
}

.sdk-tabcontrol-caption-item-selected:hover {
    background-color: #003399;
}

.aspire-tabcontrol-page-container {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 27px;
    bottom: 0px;
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
}

.aspire-tabcontrol-page {
    position: absolute;
    left: 2px;
    right: 2px;
    top: 2px;
    bottom: 2px;
    overflow: auto;
    display: none;
}

/*
    ----------------------------- Pager ----------------------------
*/

.aspire-pager-next {
    background-image: url(../Images/Icons/Tools/next-blue.png);
    background-repeat: no-repeat;
    background-size: 22px 22px;
    opacity: 0.8;
    width: 22px;
    height: 22px;
    display: inline-block;
    cursor: pointer;
}

    .aspire-pager-next:hover {
        opacity: 1;
    }

.aspire-pager-previous {
    background-image: url(../Images/Icons/Tools/previous-blue.png);
    background-repeat: no-repeat;
    background-size: 22px 22px;
    opacity: 0.8;
    width: 22px;
    height: 22px;
    display: inline-block;
    cursor: pointer;
}

    .aspire-pager-previous:hover {
        opacity: 1;
    }

input[type="checkbox"] {
    margin-top: 8px;
    margin-bottom: 7px;
}

.hide-overflow {
    overflow: hidden;
}

.aspire-dialog-content input[type="checkbox"],
.aspire-dialog-content input[type="radio"] {
    border: none;
}