/*
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 : 2019-feb-15, 08:37:25
    Author     : torcl
*/

div.bottom-dialog {
    position: fixed;
    z-index: 1000;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 240px 20px 20px;
    border-top: 2px solid #11aebf;
    background-color: #FFF;
}

div.bottom-dialog span a {
    display: inline-block;
    margin-left: 5px;
}

div.bottom-dialog a.close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 16px;
}

div.bottom-dialog a.close-button i {
    font-size: inherit;
}

@media (max-width: 500px) {
    div.bottom-dialog {
        padding: 10px 40px 10px 10px;
    }
    
    div.bottom-dialog span {
        font-size: 14px;
    }

    div.bottom-dialog a.close-button {
        position: static;
        margin-top: 10px;
    }
}