/*
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 : 6 nov. 2018, 17:44:39
    Author     : Iloo Tech
*/

.modal {
    z-index: 999999;
    background-color: rgba(0, 0, 0, 0.9);
    padding-top: 20px;
}
.modal-backdrop {
    z-index:0;
}
.modal-dialog {
    width: 100%;
    margin: auto;
}
.modal .close {
    font-size: 30px;
    webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -ms-animation-delay: 1s;
    animation-delay: 1s;
    background-color: rgba(214,15,2,.5);
    background-image: url(images/close-button-book-min.png);
    background-position: center;
    background-size: cover;
    cursor: pointer;
    display: block;
    height: 48px;
    position: absolute;
    right: 24px;
    top: 24px;
    width: 48px;
    z-index: 4000;
    color: #fcf1f0;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    opacity: 1 !important;
}
.modal-content {
    background-color: #fdf2f1;
}
a.ml-footer {
    display: inline-block;
    cursor: pointer;
}
.modal-header {
    border-bottom: 1px solid #bdbdbd !important;
    margin-bottom:2%;
}
@media (min-width: 1024px) {
    .modal-dialog {
        max-width: 1024px !important;
    }
}
@media (max-width: 1023px) {
    .modal-dialog {
        width: 95%;
    }
    .modal .close {
        width:24px;
        height: 24px;
    }
}
