﻿.aosMsgBoxBgFade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    background: rgb(9,54,117);
    background: rgba(0,0,0,.5);
}
.aosMsgBoxBg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    box-shadow: 10px 10px 15px 10px rgba(3, 18, 41, .7);
    padding: 5px;
    background: #5f7aa1;
    font-size: 16px;
    z-index: 101;
}
.aosMsgBoxTblClassTop {
    display: table;
    background: #C4D7F2;
    border-radius: 5px 5px 0 0;
    width: 100%;
    height: 44px;
    padding: 3px 0;
}
.aosMsgBoxTblClassBottom {
    display: table;
    background: white;
    width: 100%;
}
.aosMsgBoxTrClass {
    display: table-row;
}
.aosMsgBoxTdClass {
    display: table-cell;
    vertical-align: middle;
    padding: 3px 7px;
    text-align: left;
}
.aosMsgBoxTdRClass {
    display: table-cell;
    vertical-align: middle;
    padding: 3px 7px;
    text-align: right;
}
.aosMsgBoxTdRClass .aosMsgBoxCloseImg:last-child {
    display: none;
}
.aosMsgBoxTdRClass:hover .aosMsgBoxCloseImg:last-child {
    display: inline;
}
.aosMsgBoxTdRClass:hover .aosMsgBoxCloseImg:first-child {
    display: none;
}
.aosMsgBoxTitle {
    font-size: 16px;
    font-weight: bold;
    overflow: visible;
}
/*.aosMsgBoxCloseImg {
    height: 24px;
    width: 24px;
    border: none;
    padding: 0px;
    margin-top: auto;
    margin-bottom: auto;
    cursor: pointer;
}*/
.aosMsgBoxDividerClass {
    background: rgba(0, 0, 0, 0.6);
    height: 1px;
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.aosMsgBoxContent {
    padding: 5px;
}
.aosMsgBoxContent ol {
    margin: 2px;
}
.aosMsgBoxButtonClass {
    text-align: center;
    margin-top: 3px;
    padding-top: 5px;
    padding-bottom: 5px;
    background: lightgrey;
    border-radius: 0 0 5px 5px;
}
.aosTabIndexClass {
    border: none;
}
.aosButton {
    padding: 3px 8px;
    border-radius: 20px;
    border: ridge #B8B8B8 2px;
    display: inline-block;
    background: linear-gradient(#B8B8B8, white);
    box-shadow: rgba(0, 0, 0, .7) 2px 2px 5px;
    font-size: 18px;
    margin: 3px 0;
    white-space: normal;
    max-width: 99%;
}
.aosButton:hover {
    cursor: pointer;
    border: ridge #787878 2px;
    background: linear-gradient(#787878, whitesmoke);
    box-shadow: rgba(0, 0, 0, .7) 1px 2px 0;
}
.aosButton:focus {
    outline: none;
    border: ridge green 2px;
    background: linear-gradient(lightgreen, whitesmoke);
    box-shadow: rgba(0, 255, 0, .3) 1px 2px 0;
}
.aosButton:active {
    outline: none;
    border: ridge darkgreen 2px;
    background: linear-gradient(darkgreen, lightgrey);
    box-shadow: rgba(0, 255, 0, .7) 1px 2px 0;
}
.aosMsgBoxContent input[type=text], .aosMsgBoxContent input[type=email], .aosMsgBoxContent input[type=tel], .aosMsgBoxContent textarea {
    border: 2px inset #EBE9ED;
}