
:root {
  --black: #000;
  --yellow: #FFCE00;
  --gray: #f5f5f5;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
    font-family: 'Questrial', sans-serif;
    color: var(--black);
    background-color: var(--gray);
}

textarea{
    resize: none;
}

.logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 10px;
  height: 7rem;
}

.logo-box a img {
  width: 100%;
}

.main-title {
  /* background-color: yellow; */
  text-align: right;
}

.pointer {
  cursor: pointer;
}

.main-title h1 {
  font-size: 1.5rem;
}

.main-title p {
  margin-bottom: .5rem;
  line-height: normal;
  opacity: .6;
}

.main-title-box {
  /* background-color: lightblue; */
  display: flex;
  justify-content: flex-end;
}

.main-title-box .left {
  text-align: left;
  margin-right: 2rem;
}

.form-control {
    border-radius: 5px;
}

.card {
    -webkit-box-shadow: 0 4px 9.4px .6px rgba(3, 39, 61, .1);
    box-shadow: 0 4px 9.4px .6px rgba(3, 39, 61, .1);
    margin-top: 23px
}

.card, .card .card-header {
    background-color: #fff;
    border: 0;
    border-radius: 16px;
}

.card .card-header {
    font-size: 1.2em;
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
}

.card-body{
    padding: 2.3rem;
}

.card-body h4 {
    font-weight: 600;
    padding-bottom: 1rem;
}

.card-header {
    padding : 2.25rem 2.25rem 0.00rem 2.25rem;
}

.fa-calendar-alt:before {
    vertical-align: middle;
}

.btn{
    padding: .5rem 1.5rem;
    border-radius: 25px;
}

.btn-primary-bee {
    background-color: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
}

.btn-primary-bee:hover {
  box-shadow: 0 0 7px var(--yellow);
  background-color: var(--black);
  color: var(--yellow);
}

.btn-secondary {
  background-color: #005391;
  border-color: #005391;
}

.btn-secondary:hover {
  background-color: #003257;
  border-color: #003257;
}

hr{
    border: 1px solid var(--yellow);
}

/* label {
    color: #042d6f;
} */

input[type=checkbox] {
    position: absolute;
    top: .25rem;
    left: -0.5rem;
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0rem;
}

input[type=radio] {
    position: absolute;
    top: .25rem;
    left: -0.5rem;
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0rem;
}

input[type=file] {
    background-color: white !important;
    cursor: text !important;
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    background: red;
    cursor: inherit;
    display: block;
}

.file-input-label {
    padding: 7.5px 10px;
    display: table-cell;
    vertical-align: middle;
    border-radius: 4px;
}

.btn-file {
    position: relative;
    overflow: hidden;
}

button.close {
    padding: 9px 2px 2px 2px;
}

#loading-screen {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../images/preloader.gif') 50% 50% no-repeat white;
    opacity: .9;
}

.lbast {
    color: #E50846;
    font-weight: bold;
    font-size: 17px;
}

.t_tooltip {
    position: relative;
    display: inline-block;
    /* border-bottom: 1px dotted black; */
}

.t_tooltip .t_tooltiptext {
    visibility: hidden;
    width: 220px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 5px 5px 5px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;

    /* Fade in t_tooltip - takes 1 second to go from 0% to 100% opac: */
    opacity: 0;
    transition: opacity 1s;
}

.t_tooltip:hover .t_tooltiptext {
    visibility: visible;
    opacity: 1;
}

.p_tc {
    text-align: justify;
    font-size: 14px;
    color : black;
}
.h_tc{
    text-align: center;
    color : black;
}

.h_tc_l{
    text-align: left;
    color : black;
}

.ul_tc{
    font-size: 14px;
    color : black;
}