.utip {
    position: absolute;
}
.utip-overlay {
    position:fixed;
    width:100%;
    height:100%;
    top:0;
    left:0;
    z-index:9994;
    overflow:hidden;
    background: #FFF;
    opacity: 0.2;
}

.utip-wrapper {
    z-index: 10000;
    position: relative;
    background: #fff;
    border-radius: 3px;
    box-shadow: 3px 3px 3px 0 #7E7E7D;
    /*box-shadow: 0 1px 1px #000 inset;*/
    border: 1px solid #000;
    border-color: #7E7E7D;
}

.utip-popup-content {
    padding: 5px;
}

.utip-arrow {
    top:-20px;
    position: absolute;
    width:0;
    height: 0;
    border: solid;
    border-width: 10px 10px;
    border-color: transparent transparent #000 transparent;

}
.utip-arrow:after {
    content: '';
    position: absolute;
    display: inline-block;
    width:0;
    height: 0;
    border: solid;
    border-width: 10px 10px;
    border-color: transparent transparent #fff transparent;
    left: -10px;
    top: -9px;

}

.utip-confirm .button {
    background: #000;
   	display: inline-block;
   	text-transform: uppercase;
   	font-size: 11px;
   	padding: 5px 30px;
   	color: #fff;
   	margin: 0 0 0 10px;
   	vertical-align: middle;
    cursor: pointer;
    border-radius: 3px;
}
.utip-confirm .button:hover {
    background-color: #D90F00;
}

.utip-confirm {
    margin: 0 10px 10px 0;
    white-space: nowrap;
    }
    .utip-confirm .question {
        display: block;
        margin: 5px 0 10px 10px;
    }

.utip-loader:before {
    display: inline-block;
    font: normal normal normal 35px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f110";
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.utip .close-button {
    width: 12px;
    height: 12px;
    background: url('/img/utip/close.png');
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}
