html {
  font-size: 14px;
}

@media print {
    .no-print {
        display: none;
    }
}
@media print {
    .print-only {
        display: block;
    }
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  font-family: "FSAlbertArabic-Regular", sans-serif;    
  /*margin:0;  width:100%;*/
}

 @font-face {
    font-family: FSAlbertArabic-Regular;
    src: url('../fonts/FSAlbertArabic-Regular.otf');
}






.home {
    padding-top: 12px;
    background: #EFEFEF;
    color: #777;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    /* width: 220px;*/
    height: 95px;
    border-radius: 8px;
    margin: 8px;
    border: solid 1px #ccc;
    border-radius: 10px
}

.home .c1 {
    margin-top: 0px;
    width: 100%;
    float: left;
    font-size: 13px
}

.home .c2 {
    margin-top: 8px;
    width: 100%;
    float: left
}

.home:hover {
    background: #CCC;
    color: #000;
}



/* Frame Added on 31/12/2024 */
.frame {
    border: 2px solid #000;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    margin: 20px auto;
    direction: rtl;
    text-align: right;
}

.frame-title {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #fff;
    padding: 0 10px;
    font-weight: bold;
}


   .error-message {
      color: red;
      font-size: 12px;
      display: none;
      margin-top: 2px;
    }

   input.invalid-field, select.invalid-field, textarea.invalid-field {
  border: 2px solid red !important;
}

input[type="radio"].invalid-field {
  outline: 2px solid red;
}


    #custom-toast {
      position: fixed;
      bottom: 20px;
      right: 20px;
      padding: 12px 18px;
      background: #333;
      color: #fff;
      border-radius: 6px;
      box-shadow: 0 0 5px rgba(0,0,0,0.3);
      font-size: 14px;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 9999;
    }