* {
    font-family: Dana;
}

body{
    background-color: #f5f5f2;
}

/* start sidebar =========================================== */

.sidebar {
    /* -webkit-filter: blur(5px); */
    /* -moz-filter: blur(5px); */
    /* -o-filter: blur(5px); */
    /* -ms-filter: blur(5px); */
    /* filter: blur(2px); */

    width: 250px;
    height: 100%;
    position: fixed;
    top: 0;
    right: -230px;
    background-color: #1f3753e3;
    /* border-radius: 6px 0 0 6px; */
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    overflow-y: auto;
}
.sidebar:hover{
    right: 0px;
}

.sidebar nav a {
    margin: 2px 10px;
    color: #F5F5F5;
    border-radius: 2px;
    background-color: #0c0c0c54;
}

.sidebar nav a:hover {
    background-color: #F5F5F5;
    color: #364F6B;
}


/* end sidebar ============================================= */


/* buttons style =========================================== */

.form-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    
    height: 35px;
    width: 100%;
    padding: 0 20px;
    /* margin: 0 7px 20px 7px; */
    border-radius: 6px;
    font-size: 15px;
    border: none;
    position: relative;
    overflow: hidden;
    background-color: #eceff6;
    /* z-index: 1; */
    box-shadow: 6px 6px 12px #c5c5c599, -6px -6px 12px #ffffffa6;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.btn-danger{
    background-color: #f15d8a;
}
.btn-danger:hover{
    background-color: #d63263 !important;
    transition: 0.2s;
}

.btn-disable{
    background-color: transparent !important;
}

.shahin-btn-disabled {
    height: 3em;
    width: 200px;
    padding: 0 20px;
    margin: 0 7px 20px 7px;
    border-radius: 6px;
    font-size: 15px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 6px 6px 12px #c5c5c599, -6px -6px 12px #ffffffa6;
}

.shahin-btn {
    height: 3em;
    width: 200px;
    padding: 0 20px;
    margin: 0 7px 20px 7px;
    border-radius: 6px;
    font-size: 15px;
    border: none;
    position: relative;
    overflow: hidden;
    background-color: #eceff6;
    z-index: 1;
    box-shadow: 6px 6px 12px #c5c5c599, -6px -6px 12px #ffffffa6;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.shahin-btn:hover , .form-btn:hover {
    /* font-weight: bold; */
    /* color: #161d3c; */
    background-color: #d5def3;
    transition: 0.2s;
}

@media only screen and (max-width: 1500px) {
    .shahin-btn , .shahin-btn-disabled{
        height: 32px !important;
        width: 170px !important;
        font-size: 12px  !important;
    }
}

/* end buttons style ======================================= */

.wrapper {
    margin-right: 50px;
    margin-left: 50px;
    padding-right: 5px;
    padding-left: 5px;
    margin-top: 3vh;
    padding-top: 20px;
    border-radius: 6px;
    background-color: #F5F5F5;
}

.header {
    border-bottom: 1px solid #364F6B;
    color: #364F6B;
}

.headerNG {
    border-bottom: 2px solid rgb(199 223 233);
}

.header h5 {
    /* border-right: 1px solid gray; */
}

mark {
    background-color: #0d6efd;
    color: white;
    transition: 1s;
}

.btn2{
    border: #00000029 solid 1px;
    background-color: #f0f4f9;
    width: 90px;
}
.btn2:hover{
    background-color: #fafafa;
}

.btn3{
    border: #00000029 solid 1px;
    background-color: #e5f2ff;
    width: 90px;
}
.btn3:hover{
    background-color: #eff6ff;
}

.btn4{
    border: #00000029 solid 1px;
    background-color: #0e6fd1;
    color: #eff6ff;
    width: 90px;
}
.btn4:hover{
    background-color: #2e8ceb;
    color: #eff6ff;
}

@media screen and (max-width:1220px) {
    .sidebar {
        right: -230px;
    }
    .wrapper {
        margin-right: 50px;
        padding-right: 5px;
    }
}