@media screen and (min-width: 900px)
{
    .ContentBox
    {
        background-color: white;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        /*margin-top:-50%;
        margin-left:-50%;*/
        padding: 20px;
        padding-top: 50px;
        box-sizing: border-box;
        box-shadow: 0 0 50px black;
        border-radius: 25px;
        z-index: 1000;
        color: black;
        font-family: "Segoe UI Light 8", "Segoe UI Light", Arial;
        font-size: 10pt;
        text-align: right;
    }

}

    .ContentBox .Title
    {
        border-top-left-radius:22px;
        border-top-right-radius:22px;
        box-sizing:border-box;
        padding:10px;
        color:white;
        text-align:center;
        width:100%;
        position:absolute;
        top:0;
        left:0;
        background-color:#B06B33;

    }

    .ContentBox .ContentButton
    {
        background-color:#B06B33;
    }


.ContentBoxCover
{
    background-color:#CDA4C2;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:999;
    opacity:0.4;
}

@media screen and (max-width: 899px)
{
    .ContentBox
    {
        background-color:white;
        position:absolute;
        padding-top:0;
        margin-top:0;
        top:0;
        right:0;
        min-width:100%;
        max-width:100%;
        padding: 20px;
        padding-top: 50px;
        border-radius: 0px;
        z-index:1000;
        color: black;
        font-family: "Segoe UI Light 8", "Segoe UI Light", Arial;
        font-size: 10pt;
        text-align: right;
        box-sizing:border-box;
    }

    .ContentBox .Title
    {
        border-top-left-radius:0px;
        border-top-right-radius:0px;
    }

}


.ContentBox span.Label
{
    width:130px;
    display:inline-block;
    text-align:right;
    line-height:40px;
}

.ContentBox span.Block
{
    display:block;
    text-align:right;
    line-height:40px;
}

.ContentBox input[type="text"],
.ContentBox input[type="password"],
.ContentBox textarea,
.ContentBox select
{
    width:200px;
    height:20px;
    border-radius:10px;
    padding:4px 7px;
    font-family:Arial;
    border-width:1px;
    border-style:solid;
    border-color:#41692D;
}

.ContentBox select
{
    height:30px;
    width:217px;
}

.ContentBox input[type="text"]:focus,
.ContentBox input[type="password"]:focus,
.ContentBox textarea:focus,
.ContentBox select:focus
{
    box-shadow:0 0 10px #E0DAC6;
    outline:none;
}

.ContentBox input[type="checkbox"]
{
    height:16px;
    width:16px;
}

.ContentBox label
{
    padding-right:10px;
    position:relative;
    top:-3px;
   
}