.disclamer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1200;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.disclamer.hidden {
    display: none;
}
.disclaimer-wrapper {
    width: 350px;
    font-family: arial !important;
    border: 1px solid #888;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.disclamer h2 {
    padding: 4px;
    text-align: center;
    /*color:#fff6f1;*/
    font-weight: bold;
    font-size: 16px;
    margin: 0 !important;
}

.disclInner {
    padding: 10px;
    padding-bottom: 0;
    color: #444;
    font-weight: normal;
    text-align: left;
    font-size: 14px;
    max-height: 80vh;
    overflow-y: auto;
}

.actButtons {
    padding: 10px;
    text-align: right;
}

.actButtons span {
    display: inline-block;
    padding: 5px 10px;
    font-size: 12px;
    background-color: #000;
    font-weight: bold;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#222222', endColorstr='#000');
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(75, 75, 75, 0.9)), to(rgba(0, 0, 0, 0.9)));
    background: -moz-linear-gradient(top, rgba(75, 75, 75, 0.9), rgba(0, 0, 0, 0.9));
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    margin-left: 10px;
}

.hidder {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    filter: alpha(opacity=80); /* internet explorer */
    -khtml-opacity: 0.8; /* khtml, old safari */
    -moz-opacity: 0.8; /* mozilla, netscape */
    opacity: 0.8; /* fx, safari, opera */
    z-index: 900;
    display: none;
}

.notAllowed {
    font-size: 20px;
    color: red;
    text-align: center;
    z-index: 1800;
    display: none;
    font-family: arial !important;
    position: fixed;
    top: 50px;
    padding: 10px;
    left: 0;
    right: 0;
}


@media screen and (max-width : 380px) {
    .disclaimer-wrapper {
        width: 100%;
        border-radius: 0;
    }
    .disclamer h2 {
        border-radius: 0;
    }
}