#popup-notice{
    opacity: 0;
}
.popup-notice .modal-inner-wrap{
    background-color: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    margin: 0;
    color: white;
    max-height: none !important;
    text-align: center;
    display: flex;
    flex-direction: row !important;
    align-items: center;
}
.popup-notice .modal-content{
    width: 100%;
}
.popup-notice .popup-it-heading, .popup-notice .popup-en-heading{
    font-weight: 800;
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: .7em
}
.popup-notice{
    color: white;
}
.popup-notice .modal-footer{
    background-color: transparent;
}
.popup-notice .popup-hr{
    padding-top: 1em;
    padding-bottom: 1em;
}
.popup-notice .close.btn.btn-secondary{
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    position: absolute;
    top: 5%;
    right: 5%;
}
.popup-notice .close.btn.btn-secondary span{
    font-size: 33px;
    font-weight: 400;
    color: #7d7d7d;
}
.popup-notice .btn-continua{
    color: #e01837;
    text-transform: uppercase;
    margin-right: .5em;
    font-weight: 800;
    transition: background-color .3s ease-in-out, transform .2s ease-in-out;
}
.popup-notice .btn-continua:hover{
    background-color: rgb(182, 182, 182);
}
.popup-notice .btn-continua:active{
    transform: scale(.95);
}
.popup-notice .btn-accedi{
    color: white;
    background-color: #e01837;
    text-transform: uppercase;
    margin-left: .5em;
    font-weight: 800;
    transition: background-color .3s ease-in-out, transform .2s ease-in-out;
}
.popup-notice .btn-accedi:hover{
    background-color: #ad182f
}
.popup-notice .btn-accedi:active{
    transform: scale(.95);
}
.form-accedi{
    display: inline;
}

@media screen and (max-width: 767px) {
    .popup-notice .modal-inner-wrap{
        background-color: rgba(0,0,0,0.7) !important;
        text-align: left;
    }
    .popup-notice .btn-accedi, .popup-notice .btn-continua{
        margin-right: 0;
        margin-left: 0;
        margin-top: 0.5em;
        margin-bottom: 0.5em;
    }
    .popup-notice .modal-footer{
        display: none;
    }
}