#popup {
    display: none;
}
#popup.show{
    display: block;
}
#popup.full{
    position: relative;
    width: 100%;
    height: 100%;
    position: fixed;
    padding: 22px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000;
    top: 0;
    left: 0;
    background: #fff;
}
.closeBtn{
    position: absolute;
    top: 15px;
    right: 30px;
    cursor: pointer;
    z-index: 100;
    font-size: 25px;
}
#popup .block{
    height: 100%;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #C4C4C4;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 22px;
    position: relative;
}
#popup .terms{
    border: 1px solid #C4C4C4;
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
    height: calc(100% - 180px);
    padding: 15px;
    overflow:auto;
    box-sizing: border-box;
}
#popup .text{
    text-align:center;
}
#popup .tl{
    font-family: Lato;
    font-style: italic;
    font-weight: 600;
    font-size: 19px;
    line-height: 24px;
    text-align: center;
    color: #FF0000;
}
#popup .bt{
    font-family: Lato;
    font-style: italic;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    color: #000000;
}
#popup .btn{
    width: 140px;
    margin: 15px auto;
    text-align:center;
    padding: 15px;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(180deg, #2D993F 0%, rgba(0, 104, 17, 0.94) 100%);
    border-radius: 3px;
}
@media (max-width: 640px){
    #popup.full{
        padding: 0px;
    }
    #popup .tl{
        font-size: 15px;

    }
    #popup .terms{
        height: calc(100% - 200px);
    }

    #popup .btn{
        width: 100px;
        margin: 10px auto;
        padding: 7px 5px;
    }
    #popup .terms{
        padding: 10px;
        margin-top: 5px;
        margin-bottom: 5px;

    }
    .closeBtn{
        position: absolute;
        top: 0px;
        right: 10px;
        cursor: pointer;
        z-index: 100;
        font-size: 25px;
    }


}
