/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 11.01.2018, 11:56:05
    Author     : Nico
*/

.owlmodal,
.owlmodal-overlay{
    transition: opacity 0.5s, visibility 0.5s;
}

.owlmodal{
    position: fixed;
    top: 50%;
    left: 50%;
    background: white;
    border-radius: 3px;
    box-shadow: 0 0 7px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    min-height: 100px;
    overflow: hidden;
    z-index: 1000001; /* need > mm-blocker 999999 and overlay */
    text-align: left;
}
.owlmodal.owlmodal-open{
    opacity: 1;
    visibility: visible;
}


.owlmodal .owlmodal-close{
    position: absolute;
    width: 20px;
    height: 20px;
    /*background: lightgray;*/
    top: 5px;
    right: 5px;
    cursor: pointer;
    border-radius: 3px;
    
}
.owlmodal .owlmodal-close:before {
    content: "\e61c";
    font-family: icon;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    letter-spacing: 0;
    -moz-font-feature-settings: liga;
    -ms-font-feature-settings: liga 1;
    -o-font-feature-settings: liga;
    font-feature-settings: liga;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    color: white;
    line-height: 19px;
    width: 20px;
    text-align: center;
    display: block;
}
.owlmodal .owlmodal-close:hover{
    /*background: gray;*/
}
.owlmodal .owlmodal-title{
    background: #0d5396;
    height: 30px;
    padding: 0 25px 0 15px;
    vertical-align: middle;
    line-height: 29px;
    color: #ffffff;
}

.owlmodal .owlmodal-body{
    padding: 15px;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/*
 * ---------------------
 */

.owlmodal.owlmodal-mobile{
    height: calc(100% - 10px) !important;
    left: 5px !important;
    top: 5px !important;
    width: calc(100% - 10px) !important;
}
.owlmodal.owlmodal-mobile .owlmodal-body{
    height: calc(100% - 80px);
    overflow-y: scroll;
}
.owlmodal.owlmodal-mobile .owlmodal-title{
    height: 50px;
    line-height: 50px;
}
.owlmodal.owlmodal-mobile .owlmodal-close{
    height: 40px;
    width: 40px;
}
.owlmodal.owlmodal-mobile .owlmodal-close:before {
    font-size: 24px;
    line-height: 39px;
    width: 40px;
}

/*
 * ---------------------
 */
.owlmodal-overlay{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0px;
    left: 0px;
    opacity: 0;
    visibility: hidden;
    z-index: 1000000; /* need > mm-blocker 999999 */
}
.owlmodal-overlay.owlmodal-overlay-open{
    opacity: 1;
    visibility: visible;
}