em {
    color: red;
}

.error_message {
    color: red !important;
}

.field_label {
    font-size: 14px;
    font-weight: 600;
    color: #232323;
}
/*Changes Done by kanishka to resolve CSS issue*/
/*body {
    height: 1000px;
    margin-top: 100px;
    margin-left: 50px;
}*/
/*Changes Done by kanishka to resolve CSS issue*/
.ui-tooltip {
    width: 200px;
    text-align: center;
    box-shadow: none;
    padding: 0;
}
.ui-tooltip-content {
    position: relative;
    padding: 0.5em;
}
.ui-tooltip-content::after, .ui-tooltip-content::before {
    content: "";
    position: absolute;
    border-style: solid;
    display: block;
    left: 90px;
}
.bottom .ui-tooltip-content::before {
    bottom: -10px;
    border-color: #AAA transparent;
    border-width: 10px 10px 0;
}
.bottom .ui-tooltip-content::after {
    bottom: -7px;
    border-color: white transparent;
    border-width: 10px 10px 0;
}
.top .ui-tooltip-content::before {
    top: -10px;
    border-color: #AAA transparent;
    border-width: 0 10px 10px;
}
.top .ui-tooltip-content::after {
    top: -7px;
    border-color: white transparent;
    border-width: 0 10px 10px;
}
.file-upload {
    position: relative;
    display: inline-block;
    cursor:pointer;
}

.file-upload__label {
  display: block;
  padding: 5px;
  color: #fff;
  background: #2fb5d2;
  border-radius: .4em;
  transition: background .3s;
  cursor:pointer;
  &:hover {
     cursor: pointer;
     background: #000;
  }
}
    
.file-upload__input {
    cursor:pointer;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    font-size: 1;
    width:0;
    height: 100%;
    opacity: 0;
}
.kb_divider{
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.kb_div{
    /*width:30%;*/
    padding-top:2%;
    padding-bottom:2%;
}

.kb_tooltip {
    position: relative;
    display: inline-block;
    background: url('../../img/front/icon.png');
    vertical-align:middle;
    margin-left:1%;
    width: 15px;
    height: 15px;
}

.kb_tooltip .tooltiptext {
    visibility: hidden;
    width: 180px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px 0;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -60px;
}

.kb_tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.kb_tooltip:hover .tooltiptext {
    visibility: visible;
}