@font-face {
  src: url( /static/fonts/Yerevanyan-Regular.otf);
  font-family: myfonttitle;
}

@font-face {
  src: url(/static/fonts/Mardoto-Regular.ttf);
  font-family: myfonttitle1;
}

@font-face {
  src: url(/static/fonts/Nortar-Regular.otf);
  font-family: myfonttext;
}


  .myfonttitle {
    font-family: myfonttitle;
  }

  .myfonttext {
    font-family: myfonttext;
  }

  .myfonttitle1 {
    font-family: myfonttitle1;
  }
  
  .text-xs {
    font-size: 12px;
  }

  .text-sm {
    font-size: 14px;
  }

  .text-md {
    font-size: 16px;
  }

  .text-lg {
    font-size: 18px;
  }

  .text-xl {
    font-size: 20px;
  }

  .pointer {
    cursor: pointer;
  }

  .hidden {
    display: none !important;
  }

  .ajaxProgress {
    width: 100%;
    height: 100vh;
    position: fixed;
    display: none;
    top: 50%;
    left: 50%;
    margin: -50px 0px 0px -50px;
    z-index: 1000000;
  
  }

  .my_link {
    text-decoration: none;
    color: #343b43;
    -webkit-transition: color .3s;
    transition: color .3s;
  }
  
  .my_link:hover, .my_link:focus {
    color: #0099ff;
    text-decoration: none;
    background-color: transparent;
  }
  
  .my_link.active, .my_link:active {
    color: #0099ff;
    text-decoration: none;
    background-color: transparent;
  }
