@font-face {
    font-family: 'bnazanin';
    src: url("fonts/BNazanin.ttf");
}
*{
    border:none;
    padding:0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    color: #000;
    direction: rtl;
    font-family: bnazanin;
    float: right;
    font-size: 1.1rem;
    outline: none;
}
body{
    width: 100%;
    background-color: #f3f3f3;
    position: absolute;
}
.head{
    width: 100%;
}
.head > ul {
    width: 80%;
    margin: 0 10%;
    background-color: #feb801;
    border-radius: 0 0 5rem 5rem;
    padding: 0 3rem;
}
.head > ul > li > a{
    padding : .75rem 1rem;
    color: #fff;
    font-weight: bold;
}
.head > ul > li > a:hover{
    background: linear-gradient(180deg, #ffd87d,#feb801);
    border-radius: 0 0 1rem 1rem;
}
.main{
    width: 70%;
    margin: 0 15%;
}
.wd100{
    width: 100%;
}
.wd50{
    width: 50%;
}
.wd3{
    width: calc(100% / 3);
}
.wd25{
    width: 25%;
}
.mt2{
    margin-top: 2rem;
}
.boxDecor{
    position:relative;
}
.boxDecor::after{
    content: "";
    position: absolute;
    width: calc(100% - 2rem);
    height: 100%;
    background-color: #ffe6b1;
    top: -.5rem;
    right: 1rem;
    border-radius:5px;
    z-index: -1;
    transition: all 0.2s;
}
.boxDecor::before{
    content: "";
    position: absolute;
    width: calc(100% - 4rem);
    height: 100%;
    background-color: #feb801;
    top: -1rem;
    right: 2rem;
    border-radius:5px;
    z-index: -2;
    transition: all 0.6s;
}
.boxDecor:hover::after{
    top: 0.5rem;
    transition: all 0.2s;
}
.boxDecor:hover::before{
    top: 1rem;
    transition: all 0.6s;
}

.loginform{
    width: calc(50% - 2rem);
    margin : 2rem 1rem 1rem 1rem;
    border-radius: 5px;
    background:#fff;
    box-shadow: 0 0 10px 0 #5e5e5e;
    padding: 2rem 0;
    position: relative;
}
.loginform > h2{
    width: calc(100% - 4rem);
    border-right: 7px solid #ffa600;
    padding: .5rem 2rem;
}
.loginform > input{
    width: calc(100% - 4rem);
    margin: .5rem 2rem;
    padding : .5rem 1rem;
    background: #fff;
    border-bottom: 2px solid #d3d3d3;
    transition: all 0.2s;
    border-radius: 5px;
}
.loginform > input:focus{
    transform: scale(1.02);
    transition: all 0.2s;
    border-bottom: 2px solid #feb801;
}
.loginform > button{
    width: 40%;
    padding: .75rem 1rem;
    margin: 2rem 30%;
    border-radius: 5px;
    border: 3px solid #bbbbbb;
    background-color: #fff;
    font-weight: bold;
    color: #bbbbbb;
    transition: all 0.2s;
    font-size: 1.2rem;
}
.loginform > button:hover{
    border: 3px solid #ffa600;
    color: #ffa600;
    transition: all 0.2s;
    box-shadow: 0 0 10px 0 #feb801,
                0 0 10px 0 #e7a600 inset;
}
.info{
    width: calc(100% - 2rem);
    margin : 2rem 1rem 2rem 1rem;
    border-radius: 5px;
    background:#fff;
    box-shadow: 0 0 10px 0 #5e5e5e;
    padding: 2rem 0;
    position: relative;
}
.info > h2{
    width: 100%;
    border-right: 7px solid #ffa600;
    padding: .5rem 2rem;
}
.information{
    padding: .5rem 2rem;
}
.information:hover span:first-child{
    border-right: 2px solid #feb801;
    transition: all 0.2s;
}
.information > span{
    padding-right: .5rem;
}
.information > span:first-child{
    font-weight:bold;
    border-right: 2px solid #fff;
    transition: all 0.2s;
}
.information > span:first-child:after{
    content: " : ";
}
.information > span:last-child{
    font-family: sans-serif;
}
.list{
    width: 90%;
    margin: 2rem 5% 0 5%;
}
.list tbody{
    width:100%;
    float:none;
}
.list tr{
    width:100%;
}
.list th,.list tr, .list td{
    float: none;
    text-align: right;
}
.list th{
    background:#feb801;
    color: #000;
    padding: .25rem .75rem;
}
.list td{
    color:#fff;
    padding: .5rem .75rem;
}
.list tr{
    background:#000;
    transition: all 0.2s;
}
.list tr:nth-child(2n+1){
    background: #444444;
}
.list tr:hover{
    opacity: 80%;
    transform: scale(1.03);
    transition: all 0.2s;
}
.setScore{
    display: flex;
    justify-content: center;
}
.setScore > select,.setScore > input{
    margin: 1rem;
    padding : .25rem .75rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid #bbbbbb;
    transition: all 0.2s;
}
.setScore > select:hover,.setScore > input:hover{
    border: 2px solid #feb801;
    transition: all 0.2s;
}
.setScore > input[type=submit]{
    padding: .25rem 2rem;
    border: 2px solid #feb801;
    background-color: #fff;
    color: #feb801;
    transition: all 0.2s;
}
.setScore > input[type=submit]:hover{
    background-color: #feb801;
    color: #fff;
    transition: all 0.2s;
}
.alert{
    display:flex;
    justify-content: center;
}
.alert > p{
    padding: .5rem 2rem;
    border-radius: 1rem;
    background-color: #ffd87d;
    border: 2px solid #feb801;
}
.backBtn{
    position: fixed;
    width: 100%;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
}
.backBtn > a{
    padding: .5rem 1rem;
    background:linear-gradient(0deg,#feb801,#feb801);
    border-radius: 1rem 1rem 0 0;
    transition: all 0.2s;
    color: #fff;
    font-weight: bold;
    position: relative;
}
.backBtn > a:hover{
    padding-bottom: 1rem;
    background:linear-gradient(0deg,#ffd87d,#feb801);
    transition: all 0.2s;
}
.backBtn > a:before,.backBtn > a:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    border-radius: 1rem 1rem 0 0;
    background-color: #ffd87d;
    z-index: -1;
    transition: all 0.2s;
    opacity: 0%;
}
.backBtn > a:hover:before{
    width: calc(100% + 1rem);
    right: -.5rem;
    top: .5rem;
    transition: all 0.2s;
    opacity: 70%;
}
.backBtn > a:hover:after{
    width: calc(100% + 2rem);
    right: -1rem;
    top: 1rem;
    transition: all 0.2s;
    opacity: 40%;
}
.notification{
    position: absolute;
    top: 0;
    right: 0;
    animation-name: notif_animation;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-duration: 5s;
    width: 0px;
    height: 0px;
    overflow: hidden;
}
.notification > p{
    margin: 1rem;
    padding: .5rem 1rem;
    border-radius: 1rem;
    background-color: #fff;
    border: 3px solid #feb801;
    box-shadow: 0 0 7px 0 #5e5e5e;
}
.notification.success > p{
    border: 3px solid #28e500;
}

.d-flex{
    display: flex;
}
.justify-content-center{
    justify-content: center;
}
.p1{
    padding: 1rem;
}
.p2{
    padding: 2rem;
}
.ptb1{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.plr2{
    padding-left: 2rem;
    padding-right: 2rem;
}
.colorfeb801{
    color: #feb801;
}
.loginlink{
    width: 40%;
    border-radius: 7px;
    text-align: center;
    color: #feb801;
    padding-top: .7rem;
    padding-bottom: .7rem;
    font-weight: bold;
    transition: all .2s;
    border: 3px solid #fff;
}
.loginlink:hover{
    transition: all .2s;
    border: 3px solid #ffa600;
    color: #ffa600;
    box-shadow: 0 0 10px 0 #feb801,
    0 0 10px 0 #e7a600 inset;
}
.day{}
.day:after{
    content: " روز";
}
.selectForm{
    padding: .25rem 2rem;
    border: 2px solid #feb801;
    border-radius: 7px;
}
.selectForm > option{
    background-color: white;
}
.input{
    width: 100%;
    border-radius: 7px;
    color: #feb801;
    padding: .45rem 2rem;
    font-weight: bold;
    transition: all .2s;
    border: 3px solid #ffa600;
    background-color: #fff;
    direction: ltr;
    text-align: center;
    font-family: sans-serif;
}
.button{
    max-width: 100%;
    border-radius: 7px;
    text-align: center;
    color: #feb801;
    padding: .25rem 2rem;
    font-weight: bold;
    transition: all .2s;
    border: 3px solid #ffa600;
    background-color: #fff;
}
.button:hover{
    transition: all .2s;
    color: #fff;
    background-color: #ffa600;
}
#cost{
    font-family: sans-serif;
}
#cost:before{
    content: "مبلغ نهایی : ";
    font-family: "bnazanin";
}
#cost:after{
    content: " تومان";
    font-family: "bnazanin";
}





@keyframes notif_animation {
    0%,5%,100%{
        opacity: 0%;
        width: 0px;
        height: 0px;
    }
    25%,90%{
        opacity: 100%;
        width: unset;
        height: unset;
    }
}