
.rcorners {
    border-radius: 10px;
    border: 1px solid #73AD21;
}
.align{
    text-align: center;
    align-content: center;
}
.heading{
    font-size: 20px;
    font-weight: bold;
}
.required{
    color:red;
}
.hidefeild{
    display:none;
}
.whitebackground{
    background-color: white;
    border-radius: 5px;
    border: 1px solid #CCCCCC;   
    padding: 20px;
}

#close {
    float:right;
    display:inline-block;
    padding:0px 7px;
    background:red;
    color:white;
    cursor:pointer;
    border-radius: 4px;
}

.imgborder {
    border-radius: 5px;
    border: 1px solid #73AD21;
    background:#3199cc;
}



.toggle-box {
        display: none;
    }
    .toggle-boxgrid + label {
        width:100%;
   }
   
   .toggle-boxnongrid + label{
margin-left: 10px;        
        width:98.5%;
   }
   
    .toggle-box + label {
        cursor: pointer;
        display: flex;
        font-weight: bold;
        line-height: 21px;
        padding-top:5px;
        padding-bottom:5px;
        background-color: #4F5150;
       
    }

    .toggle-box + label + div {
        display: none;
        /*  margin-bottom: 10px;*/
    }

    .toggle-box:checked + label + div {
        display:flex;
    }

    @media only screen and (max-width:1025px) 
    {
        .toggle-box:checked + label + div {
            display:block;
        }
    }



    .toggle-box + label:before {
        background-color: #4F5150;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        color: #fff;
        content: "+";
        display: flex;
        /*float: left;*/
        font-weight: bold;
        height: 20px;
        line-height: 20px;
        margin-right: 5px;
        text-align: center;
        width: 20px;
    }

    .toggle-box:checked + label:before {
        content: "\2212";
    } 