
@font-face {
  font-family: Droid;
  src: url(../fonts/Bahij_Janna-Regular.ttf);
}

/*---- colors ----*/

.blue-black{
  color:#3387b5;  
}
.blue{
    color:#62bbe3; 
}

.green{
    color:#69bc46; 
}
/*---- colors ----*/


.login-lang{
    text-align: start;
    font-family: Droid;
    color: #666;
    margin-bottom: 7px;
    direction: rtl;
}

.login-lang span{
    color: #005d30;
    font-size: 18px;
    padding-right: 5px;
}

.login-lang img{
    border-radius: 50%;
    width: 48px;
}

.bg-authentication {
    background-color: #ededed;
}


label {
    color: #475F7B;
    font-size: 0.8rem;
    text-transform: capitalize;
}

.wizard .steps ul li a {
    text-transform: capitalize;
    font-size: 12px;
}


/*---- Layout ----*/

.main-menu .navbar-header .navbar-brand .brand-logo {
    background: url(../../app-assets/images/logo.png) no-repeat;
    height: 70px;
    width: 150px;
}

.main-menu .navbar-header .navbar-brand {
    margin-top: 0; 
}

.main-menu .navbar-header {
    margin-bottom: 15px;
}

.language-li{
    padding: 14px 0;
}

.main-menu.menu-light .navigation > li.active:not(.sidebar-group-active) > a {
    background: #fcfcfc;
    color: #22a7f0;
    border-radius: 0.267rem;
}

.table th, .table td {
    padding: 1.15rem;
    vertical-align: middle;
    font-size: 13px;
}

.reg-checbox {
    font-size: 13px !important;
    font-weight: 400;
}

.form-control{
    font-size: 12px;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

    #snackbar.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}