@font-face {
    /* font-family: 'DroidArabicKufiRegular';
    src: url("../../fonts/DroidArabicKufiRegular.ttf"); */
    font-family: 'calibri';
    src: url("../../fonts/calibriRegular.ttf");    
    font-weight: normal;
    font-style: normal;
}

body{
    font-family: 'Calibri';
}

#logo {
    height: 48px;
  }

#brand a{
    float: right;
}

#download{
    direction: rtl;
    text-align: right;
}

.btn{
    font-size: 19px;
    font-weight: bold;
}

#msg{
    direction: rtl;
    text-align: right;
    color: red;
}


footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
}

input[type=file] {
  width: 350px;
  max-width: 100%;
  color: #444;
  padding: 5px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #555;
}

input[type=file]::file-selector-button {
    margin-right: 20px;
    border: none;
    background: #2a579a;
    padding: 5px 10px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

input[type=file]::file-selector-button:hover {
      background: #0d45a5;
}

#congrat {
    position: absolute;
    top: 0;
    left: 0;
    width: 512px;
    height: 512px;
    opacity: 0;
    z-index: -1;
}

#login-btn, #logout-btn{
    font-size: 12px;
    font-weight: 500;
}

#navbarIcon {
    display: none;
}

@media screen and (max-width: 768px) {

    .login-form{
        width: 100%;
    }

    #content {
        margin-right: 0px;
        padding: 4px;
    }

    #content.active {
        margin-right: 0px;
    }

    #navbarIcon {
        display: block;
    }

    #user-info {
        display: none;
    }

    #sidebar {
        transform: translateX(100%);
    }

    #sidebar.active {
        transform: translateX(0%);
    }
}