﻿/* MODAL */

.modal-mask {
    position: fixed;
    z-index: 99998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: table;
    transition: opacity 0.3s ease;
}

.modal-wrapper {
    display: table-cell;
    vertical-align: middle;
}

.modal-container {
    color: black;
    width: 86%;
    margin: 0px auto;
    padding: 10px 5px 10px 5px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
    transition: all 0.3s ease;
    font-family: Helvetica, Arial, sans-serif;
}

.modal-header h3 {
    margin-top: 0;
    font-weight: bold;
    color: #212323;
    font-size: 2.5rem;
}

.modal-body {
    margin: 20px 0;
}

.modal-default-button {
    float: right;
}

/*
 * The following styles are auto-applied to elements with
 * transition="modal" when their visibility is toggled
 * by Vue.js.
 *
 * You can easily play with the modal transition by editing
 * these styles.
 */

.modal-enter {
    opacity: 0;
}

.modal-leave-active {
    opacity: 0;
}

    .modal-enter .modal-container,
    .modal-leave-active .modal-container {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

.modal-footer {
    display: block;
}

    .modal-footer .btn {
        /*font-size: 1.4em !important;*/
    }

.modal-full-screen {
    color: rgb(91, 91, 91);
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 100;
    background: #1d1919e0;
}

.modal-full-screen {
    text-align: center;
}

    .modal-full-screen .modal-container {
        border-radius: 30px;
        width: 60% !important;
    }

    .modal-full-screen .modal-header {
        text-align: center;
        display: block;
    }

.modal-full-screen-large {
    text-align: center;
}

    .modal-full-screen-large .modal-container {
        border-radius: 30px;
        width: 90% !important;
    }

    .modal-full-screen-large .modal-header {
        text-align: center;
        display: block;
    }

.setting-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

    .setting-link a {
        color: gray;
    }

.blocco-setting button {
    padding: 20px;
    background: #616a75;
    color: #fff;
    font-family: 'bebas_neuebold';
    font-size: 30px;
    border-radius: 10px;
    width: 100%;
    text-align: center;
}

[v-cloak] {
    display: none;
}

.modal-small .modal-container {
    /*width: 500px !important;*/
    border-radius: 10px !important;
}

.modal-small .modal-header {
    padding: 2px;
    margin-top: -10px;
}

.modal-small .modal-footer {
    padding: 2px;
    padding-top: 10px;
}
