@import 'normalize.css';
@import 'fonts.css';
html{
    font-family: 'vazir-web'
}
*{
    box-sizing: border-box;
    outline: none;
}

body{
    color: azure;
    background-image: linear-gradient(to top, #256d7b 20%,  #80c5de 80%);
    min-height: 100vh;
}

/***********navbar**********/
#navbar{
    padding: 15px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    
}
#navbar a{
    margin-right: 15px;
    text-decoration: none;
    color: #fff;
    font-weight: normal;
    
}
#navbar img{
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    vertical-align: middle;  
}
.panel-link{
    flex-grow: 1
}
/*********main-wrapper**********/
#main-wrapper {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc( 100vh - 100px );
}
.headline{
    color: #fff;
    font-weight: bold;
    font-size: 50px;
    padding: 5px 15px;
    margin-bottom: 50px;
    letter-spacing: -3px;
}
#todo-wrapper{
    width: 100%;
    max-width: 600px;
}
#todo-wrappertable{
    
    max-width: 1200px;
}
#todo-wrappertable2{
    width: 100%;
    max-width: 1400px;
    display: block;
    align-items: center;
    align-content: center;
}
.todo-links{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    justify-content: space-between;
    
}
.todo-links .todo-link{
    text-decoration: none;
    color: #fff;
    padding: 5px;
    opacity: 0.7;
}
.todo-links .todo-link:hover{
    opacity: 1;
}
#todo-form{
    position: relative
}
.todo-entry{
    width: 100%;
    min-width: 200px;
    height: 60px;
    background-color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 18px;
    font-weight: 300;
    box-shadow: 0px 20px 50px -20px #325357;
    margin-bottom: 15px;
    padding-left: 40px;
    
    
}
.todo-send{
    width: 30px;
    height: 30px;
    background-color: #1fbbca;
    border: none;
    border-radius: 30px;
    font-size: 19px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    position: absolute;
    top: 15px;
    left:15px;
    text-align:center;
}
.todo-list-items{
    widows: 100%;
    color: rgba(117,117,117,0.9);
}
.todo-list-items ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.todo-item{
    background-color: #fff;
    padding: 10px;
    margin: 10px 10px;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    box-shadow: 0px 20px 50px -20px #325357;
}
.todo-subject{
    flex-grow: 1;
    margin: 0px 10px;
    font-size: 14px;
}

.btn-sub,#btn-sub2{
    width: 30px;
    height: 30px;
    background-color: #1fbbca;
    border: none;
    border-radius: 30px;
    font-size: 19px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    top: 15px;
    left:15px;
    text-align:center;
    text-decoration: none;
}
.btn-sub a{
    font-size: 19px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    top: 15px;
    left:15px;
    text-align:center;
    text-decoration: none;
}
.todo-item lable{
    line-height: 0;
}
.todo-label-box a {
    width: 20px;
    height: 20px;
    border: 2px solid #1fbbca;
    border-radius: 2px;
    display: block;
    position: relative; 
    margin-right: 5px;
    cursor: pointer;
}
.todo-item input[type='checkbox']:checked + .todo-label-box a:after{
    content: "";
    display: block;
    width: 6px;
    height: 12px;
    border: solid #1fbbca;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
    right: 4px;
}
.todo-item input[type='checkbox']{
    display: none;
}
.todo-item.done .todo-subject{
    opacity: 0.7;
    text-decoration: line-through;
}
/**********footer**********/
#FOOTER{
    padding=10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
#FOOTER p{
    font-size: 14px;
    font-weight: 300px;
}
/**********profile************/
.avatar-edit{
   margin-top: 20px;
    margin-bottom: 50px;
    text-align: center;
    position:relative;
    height: 150px;
    width: 150px;
    margin-left: auto;
    margin-right: auto;
}
#avatar-select{
    display: none;
    
}
.avatar-edit img{
    justify-content: center;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    border: 3px #fff solid;
    margin-bottom: 10px;
}
.avatar-edit label{
    height: 150px;
    width: 150px;
    position: absolute;
    line-height: 150px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
}
.avatar-edit:hover img{
    opacity: 0.3;
}
.form-wrapper{
    width: 100%;
    max-width: 300px;
}
.link{
    padding: 10px;
    font-size: 18px;
    color: darkslategray;
    margin-bottom: 15px;
    font-weight: 300;
    text-decoration: none;
}
.link:hover{
    opacity: 0.6;
}
.sanaz{
    margin-bottom: 25px;
    align-items: center;
    align-content: center;
    text-align: center;
}
.form-input,.link-btn{
    height: 50px;
    width: 100%;
    min-width: 200px;
    padding: 10px;
    margin-bottom: 15px;
    font-weight: 300;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 25px 40px -22px #3c4a56;
    
}

.form input[type="submit"],.link-btn{
    background-color: #1fbbca;
    color: #fff;
    height: 50px;
    cursor: pointer;
}
.form input[type="submit"]:hover{
    opacity: 0.6;
}
span.circle {
    display: block;
    background-color: #1fbbca;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: solid 2px #fff;
    text-align: center;
    line-height: 50px;
    margin: 30px auto;
}
.link-btn{
    display: block;
    text-align: center;
    text-decoration: none;
    line-height: 25px;
}
.link-btn:hover{
    opacity: 0.6;
}
a.link-btn2{
    display: block;
    text-align: center;
    text-decoration: none;
    line-height: 25px;
    height: 50px;
    width: 30%;
    min-width: 200px;
    padding: 10px;
    margin-bottom: 15px;
    font-weight: 300;
    border: none;
    border-radius: 5px;
    background-color: #900404;
    color: #fff;
    box-shadow: 0 25px 40px -22px #3c4a56;
}
.link-btn2:hover{
    opacity: 0.6;
}
#alert-box{
    margin-top: 100px;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    height: 50px;
    text-align: center;
    box-shadow: 0px 20px 40px -11px #3c4a56;
}
#alert-box.success{
        background-color: #1a1d3b;
}
#alert-box.fail{
        background-color: #e10000;
}
#alert-box p{
    padding-left: 10px;
    font-size: 15px;
    text-shadow: 0px 5px 5px -5px  black;
    
}
#alert-box #btn-sub2:hover{
    opacity: 0.7;
}
#alert-box #btn-sub2{
    background-color: #fff;
    color: black;
}
.input-error{
    margin: -8px 0 15px;
    font-size: 14px;
    font-weight: 300;
    color: #e10000;
}

.input-error2{
    margin: -8px 0 15px;
    font-size: 14px;
    font-weight: 300;
    color: #e10000;
    display: inline-block;
}
.kks-num{
    color: aliceblue;
    font-size: 14px;
}
.headline-table{
    color: white;
    font-weight: bold;
    font-size: 20px;
    padding: 5px 15px;
    margin-bottom: 10px;
    margin-left: auto;
    align-content: center; 
}
.kks-table{
    align-items: center;
    align-content: center;
    text-align: center;
}
.salam{
    width: 100px;
    height: 100px;
    background-color: brown;
    text-align:center;
    margin: 10px 10px;
    display: inline-block;
}

/* The sorrounding chart box */
.chartbox {
	display:block;
	height:800px;
	font-family:vazir-web;
	font-size: 11px;
	color:#333;
	text-align: center;
	margin-right:auto;
	margin-left:auto;
	margin-bottom:15px;
	border:1px solid #333;
	overflow:hidden;
	background-color:#f9f9f9;
	padding:4px;
    
}
.chartbox h2{
	font-size: 11px;
	padding:0px;
	margin:10px 0px 0px 0px;
}
/* Vertical chart elements */
.barv{
	margin: 2px;
	display:inline-block;
	float:right;
}
.barvvalue {
	padding:0px;
	margin:0px;
	font-size: 11px;
	text-align: center;
    line-height: normal;
}
/* Horizontal chart elements */
.barh{
	margin: 4px;
	text-align:left;
	clear:both;
}
.barhvalue {
	padding:0px;
	margin:0px 5px;
	font-size: 12px;
	text-align: left;
	overflow:hidden;
	float:left;
}
.barhcaption {
	padding:0px;
	margin:0px 5px;
	font-size: 12px;
	text-align: right;
	overflow:hidden;
	float:left;
}
.barhimage {
    float:left;
}
.permit{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.headlinepermit{
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    padding: 5px 15px;
    margin-bottom: 50px;
    letter-spacing: -1px;
}
.accept{
    display: inline-block;
    background-color: forestgreen;
    width: 40px;
    height: 20px;
    border: none;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    text-align:center;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    opacity: 0.7;
}
.deny{
    display: inline-block;
    width: 40px;
    height: 20px;
    background-color:darkred;
    border: none;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    color:white;
    cursor: pointer;
    text-align:center;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    opacity: 0.7;
}
.deny:hover{
    opacity: 1;
    text-decoration: none;
    text-underline-position: none;
}
.danger{
    display: inline-block;
    width: 40px;
    height: 20px;
    background-color:darkgoldenrod;
    border: none;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    color:white;
    cursor: pointer;
    text-align:center;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    opacity: 0.7;
}
.danger:hover{
    opacity: 1;
    text-decoration: none;
    text-underline-position: none;
}
.start{
    display: inline-block;
    width: 40px;
    height: 20px;
    background-color:darkolivegreen;
    border: none;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    color:white;
    cursor: pointer;
    text-align:center;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    opacity: 0.7;
}
.start:hover{
    opacity: 1;
    text-decoration: none;
    text-underline-position: none;
}
.accept:hover{
    opacity: 1;
    text-decoration: none;
    text-underline-position: none;
}
.form-permit{
    display: ruby;
    align-content: center;
    align-items: center;
}
.admin-a{
    display: inline-block;
    width: 180px;
    height: 100px;
    background-color:#1fbbca;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: bold;
    color:white;
    cursor: pointer;
    text-align:center;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    opacity: 0.7;
    padding: 10px;
    margin: 5px;
    line-height: 80px;
}
.admin-a:hover{
    opacity: 1;
    text-decoration: none;
    text-underline-position: none;
}
.headline-admin{
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    padding: 5px 15px;
    margin-bottom: 50px;
    letter-spacing: -1px;
    text-align: center;
}
.headline-admin2{
    color: #fff;
    font-weight: lighter;
    font-size: 17px;
    padding: 5px 15px;
    margin-bottom: 20px;
    text-align: center;
}
@media print {
   #header, #sideBar, #footer, .dont-print{
      display: none;
   }
}