#popup-notice{
    opacity: 0;
    cursor: default;
}
.popup-notice .modal-inner-wrap{
    backdrop-filter: blur(4px);
    background-color: rgba(0, 88, 61, 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-inner-wrap:before{
    content:"";
    height: 86%;
    width: 88%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: solid 2px white;
}
.popup-notice .modal-content{
    z-index: 2;
    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: 2em;
    padding-bottom: 2em;
}
.popup-notice .close.btn.btn-secondary{
    line-height: 22px;
    padding: 7px 10px;
    background-color: #296754;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    position: absolute;
    top: 5%;
    right: 5%;
    opacity: 1;
    border: solid 2px white;
}
.popup-notice .close.btn.btn-secondary span{
    font-size: 33px;
    font-weight: 400;
    color: white;
}
.popup-notice .close{
    text-shadow: none;
}
.popup-notice .btn-continua{
    font-size: 20px;
    color: white;
    text-transform: uppercase;
    margin-right: .5em;
    font-weight: 800;
    background-color: transparent;
    border: solid 2px white;
    transition: transform .2s ease;
}
.popup-notice .btn-continua:hover{
    transform: scale(1.1);
}
.popup-notice .btn-continua:active{
    transform: scale(.95);
}
.popup-notice .btn-accedi{
    font-size: 20px;
    padding: 7px 10px;
    color: white;
    background-color: black;
    text-transform: uppercase;
    margin-left: .5em;
    font-weight: 800;
    transition: transform .2s ease;
}
.popup-notice .btn-accedi:hover{
    transform: scale(1.1);
}
.popup-notice .btn-accedi:active{
    transform: scale(.95);
}
.form-accedi{
    display: inline;
}
.popup-p-2{
    margin-top: 20px;
}
.popup-notice p{
    font-weight: 200;
    font-size: 20px;
    margin-bottom: 20px;
}
.popup-notice a{
    color: #6BC1A6;
}

@media screen and (max-width: 767px) {
    .popup-notice .modal-inner-wrap{
        background-color: rgba(0, 88, 61, 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;
    }
    .popup-notice .modal-inner-wrap:before{
        content: none;
        border: none;
    }
}