@charset "utf-8";
/* CSS Document */

* {
    box-sizing: border-box;
		    text-transform: capitalize;

}

.grid-pad form {
    direction: rtl;
	font-family: 'IRANSansWeb';	
}
.pos2{	font-family: 'IRANSansWeb';	}
.grid-pad input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    resize: vertical;
	margin: 0;
}

.grid-pad label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

.grid-pad input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    float: right;
}

.grid-pad input[type=submit]:hover {
    background-color: #45a049;
}

.container {
    border-radius: 3px;
    background-color: #f2f2f2;
    padding: 20px;
}

.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
.grid-pad  label{    width: 100%;font-weight: bold;
    display: inline-block;
	    padding: 0;}
	 .toprow{ margin: 5px 0; }
	 .textarea {
        width: 93%;
        margin: 0 auto;
        border: solid 1px #E8DFDF;
        border-radius: 3px;
        max-height: 280px;
        min-height: 100px;
        background: #f5f2f0;
        height: max-content;
        overflow: auto;
    }
.x{  width: 100%;padding: 0;
    }	 
/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .col-25, .col-75, .grid-pad input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
}