﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
/*Pop In*/
@keyframes animate-pop{
    from{
        opacity:0;
        transform:scale(0.2);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}
@keyframes animate-slide-out {
    from {
        opacity: 1;
        transform:scale(1);
    }

    to {
        opacity: 0;
        transform:scale(0);
    }
}
/*Slide In*/
@keyframes animate-slide-in{
    from{
        margin-right:100%;
        opacity:0;
    }
    50%{
        opacity:0.1;
    }
    to{
        margin-right:0;
        opacity:1;
    }
}
@keyframes dialog-container-entry {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.component-title{
    display:flex;
    flex-direction:row-reverse;
    margin-bottom:30px;
}

.bordered-shadow-container {
    display: auto;
    border: 1px solid gray;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    position:relative;
}
.topmenu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: row-reverse;
    border-bottom: 1px solid gray;
    margin-bottom:5px;
}

    .topmenu-container > span {
        margin: 5px;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.1s ease-out;
        text-align: center;
    }
#close-box {
    color: darkgray;
    transition: 0.1s ease-out;
    cursor: pointer;
    font-size: 1.3rem;
}

    #close-box:hover {
        color: red !important;
        transform: scale(1.02);
    }

    .topmenu-container span:hover {
        transform: scale(1.02);
    }

.dialog-container{
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background-color:rgba(255,0,0,0.5);
    
    z-index:2000;
    display:flex;
    animation:dialog-container-entry 1s;
}

.dialog {
    background-color: white;
    box-shadow: 0 0 12px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    z-index: 2000;
    align-self: center;
    margin: auto;
    width: 300px;
    max-height: calc(100% - 3rem);
    animation: dialog-entry 0.4s;
    animation-timing-function: cubic-bezier(0.075, 0.820, 0.165, 1.000);
}

@keyframes dialog-entry {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateX(0px) scale(1.0);
    }
}
.dialog-title {
    background-color: #444;
    color: #fff2cc;
    padding: 1.3rem 2rem;
}

    .dialog-title h2 {
        color: white;
        font-size: 1.4rem;
        margin: 0;
        font-family: 'Bahnschrift', Arial, Helvetica, sans-serif;
        text-transform: uppercase;
        line-height: 1.3rem;
    }
.dialog-body {
    display:flex;
    flex-grow: 1;
    padding:10px 0;
    justify-content:center;
}
.dialog-buttons {
    height: 4rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content:space-around;
    background-color: #eee;
}

.div-h3 {
    display:flex;
    flex-direction:row-reverse;
    margin-top:30px;
}
.div-full-page{
    margin:0px;
    padding:0px;
    display:flex;
    justify-content:space-around;
    align-items:center;
}
.div-center-of-page {
    display:flex;
    align-items:center;
    margin: 0px;
    padding: 15px;
    width: 100%;
    max-width:600px;
}
.wrap-login {
    width: 100%;
    background-color:rgb(128, 21, 141) ;
    border-radius: 10px;
    position: relative;
    padding:10px;
}
.login-form {
    width: 100%;
    display:block;
}
.form-title {
    width: 100%;
    display: block;
    font-size: 1.2rem;
    color: #fff2cc;
    line-height: 1.2;
    text-align: center;
    padding-bottom:50px;
}
.file-input-zone {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: blue;
    color: white;
    cursor: pointer;
    position: relative;
    width: 130px;
    height: 40px;
    border-radius: 5px;
}
.txt1 {
    font-family: Montserrat-SemiBold;
    font-size: 1.5rem;
    color: white;
    line-height: 1.5;
}
.wrap-input {
    width: 100%;
    position: relative;
    background-color: #f7f7f7;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    margin-bottom:50px;
}
    .wrap-input-label {
        display:flex;
        justify-content:right;
        color:gray;
        padding-right:10px;
    }
.phoneNumber-input-wraper{
    display:flex;
    align-items:center;
    justify-content:left;
}
label.countryCode{
    font-size:18px;
    padding-right:5px;
    padding-left:10px;
}
 .wrap-input input{
    color: #333333;
    line-height: 1.2;
    font-size: 18px;
    width: 100%;
    background: transparent;
    height: 40px;
    outline: none;
    border: none;
}
.input100{
    font-family: Poppins-Regular;
    color: #333333;
    line-height: 1.2;
    font-size: 18px;
    width: 100%;
    background: transparent;
    height: 60px;
    padding: 20px 0 0 35px;
    outline:none;
    border:none;
}

.myinput {
    outline: none;
    border: none;
}

    .file-input-zone:hover {
        background-color: lightblue;
    }

    .file-input-zone input[type=file] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }
.test-cards{
    display:flex;
    flex-direction:row-reverse;
    justify-content:center;
}
    .test-cards > li {
        display:flex;
        flex-direction:row-reverse;
        justify-content:center;
        width: 20rem;
        height: 10rem;
        border-radius: 0.5rem;
        list-style-type: none;
        box-shadow: 0 3px 4px rgba(0,0,0,0.4);
        transition: 0.2s ease-out;
        padding: 30px;
        background: linear-gradient(rgba(232, 234, 21,0.7) 30%, rgba(232, 234, 21,0) 80%);
        cursor: pointer;
        margin:5px;
    }
    .test-cards>li:hover{
            transform:scale(1.02);
        }
            .test-cards>li>a{
                float:right;
                font-size:1.2rem;

            }

.test-info {
    border-radius: 0.8rem;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background: linear-gradient(rgba(0,0,0,0.7) 30%, rgba(0,0,0,0) 80%);
    padding: 1rem 1rem;
    color: #aaf2cc;
    cursor: pointer;
    text-shadow: 0 2px 2px rgba(0,0,0,0.5);
    line-height: 1.25rem;
}

.test-info .title {
    color: white;
    font-size: 1.2rem;
    display: block;
    text-align:center;
    margin: 0.2rem 0 0.4rem 0;
}

.inquiry-cards{
    display:block;
    padding-left:0px;
}
    .inquiry-cards > li {
        position: relative;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        border:1px solid gray;
        transition:0.1s ease-out;
        margin:15px 0px;
        list-style-type:none;
        font-size:0.8rem;
    }
    .inquiry-cards > li:hover{
        transform:scale(1.02);
        border:3px solid brown;
    }
.inquiry-info {
    border-bottom: 1px solid;
    background-color: brown;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    color: white
}


/*users-cards*/
.users-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill,20rem);
    grid-gap: 2rem;
    justify-content: center;
    padding-left: 0
}
.users-cards > li {
    height: 10rem;
    position: relative;
    background-size: cover;
    border-radius: 0.5rem;
    list-style-type: none;
    box-shadow: 0 3px 4px rgba(0,0,0,0.4);
    transition: 0.1s ease-out;
}
    .users-cards > li:hover {
        transform: scale(1.02);
    }

.users-info {
    border-radius: 0.8rem;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background: linear-gradient(rgba(50,0,0,0.7) 30%, rgba(0,0,0,0) 80%);
    padding: 1rem 1rem;
    color: #aaf2cc;
    cursor: pointer;
    text-shadow: 0 2px 2px rgba(0,0,0,0.5);
    line-height: 1.25rem;
}
    .users-info .title {
        color: white;
        font-size: 1.2rem;
        display: block;
        direction: rtl;
        margin: 0.2rem 0 0.4rem 0;
        text-align: center;
    }

    .users-info .namesuffix {
        color: yellow;
        font-size: 1rem;
        display: block;
        direction: rtl;
        margin: 0.2rem 0 0.4rem 0;
        text-align: center;
    }

    .users-info .phonenumber {
        color: black;
        font-size: 1.5rem;
        display: block;
        direction: ltr;
        margin: 1rem .2rem 0 0.4rem 0;
        text-align: center;
    }
    .users-info .pic{
        width:50px;
        height:50px;
        float:left;
    }
/*end users-cards*/
/*taskbox*/
.roles-list-table >tr:nth-child(even){
    background-color:#f2f2f2
}
.taskboxrow::after{
    content:"";
    display:table;
    clear:both;
}
    .taskboxrow .column{
        float:right;
        padding:10px;
    }
    .taskboxrow .left{
        width:75%;
        background-color:#bbb;
    }
    .taskboxrow .right{
        width:25%;
    }
    /*TaskSubject-cards*/
    .tasksubject-cards {
        display: grid;
        grid-template-columns: repeat(auto-fill,20rem);
        grid-gap: 2rem;
        justify-content: center;
        padding-left: 0
    }
    .tasksubject-cards > li {
        height: 5rem;
        position: relative;
        background-size: cover;
        border-radius: 0.5rem;
        list-style-type: none;
        box-shadow: 0 3px 4px rgba(0,0,0,0.4);
        transition: 0.1s ease-out;
    }
        .tasksubject-cards > li:hover {
            transform: scale(1.02);
        }
.tasksubject-info {
    border-radius: 0.8rem;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background: linear-gradient(rgba(200,0,0,0.7) 30%, rgba(0,0,0,0) 80%);
    padding: 1rem 1rem;
    color: #aaf2cc;
    cursor: pointer;
    text-shadow: 0 2px 2px rgba(0,0,0,0.5);
    line-height: 1.25rem;
}
    .tasksubject-info .title {
        color: white;
        font-size: 1.2rem;
        display: block;
        direction: rtl;
        margin: 0.2rem 0 0.4rem 0;
        text-align: center;
    }
    .tasksubject-info .items {
        color: black;
        font-size: 1.5rem;
        display: block;
        direction: ltr;
        margin: 1rem .2rem 0 0.4rem 0;
        text-align: center;
    }

/*end tasksubject-cards*/

/*bank-cards*/
.bank-cards{
    display:grid;
    grid-template-columns:repeat(auto-fill,20rem);
    grid-gap:2rem;
    justify-content:center;
    padding-left:0
}

    .bank-cards > li {
        height: 10rem;
        position: relative;
        background-size: cover;
        border-radius: 0.5rem;
        list-style-type: none;
        box-shadow: 0 3px 4px rgba(0,0,0,0.4);
        transition: 0.1s ease-out;
    }

    .bank-cards > li:hover {
        transform: scale(1.02);
    }


.bank-info{
    border-radius:0.5rem;
    top:0;
    left:0;
    right:0;
    bottom:0;
    position:absolute;
    background:linear-gradient(rgba(0,0,0,0.7) 30%, rgba(0,0,0,0) 80%);
    padding:1rem 1rem;
    color:#fff2cc;
    cursor:pointer;
    text-shadow:0 2px 2px rgba(0,0,0,0.5);
    line-height:1.25rem;
}
    .bank-info .title{
        color:white;
        font-size:1.4rem;
        display:block;
        direction:rtl;
        margin:0.2rem 0 0.4rem 0;
        text-transform:uppercase;
    }

    .bank-info .price{
        position:absolute;
        bottom:0.5rem;
        right:1rem;
        font-size:1.1rem;
        font-weight:700;
        padding:0rem 0.7rem;
        border-radius:4px;
        background-color:#08af08;
        color:white;
        line-height:2rem;
    }
    .bank-info .transactiondate{
        position:absolute;
        bottom:0.5rem;
        left:1rem;
        font-size:1rem;
        font-weight:500;
        padding:0rem 0.7rem;
        border-radius:4px;
        background-color:chocolate;
        color:white;
        line-height:2rem;
    }
.price::after{
    content:'ریال';
    font-weight:300;
    font-size:1.0rem;
    margin-right:0.2rem
}