/*Custom checkbox, radio */
/*Use
	<label class="radio-section">
	  	<input type="radio">
	  	<div class="check-mark"></div>
	    <span>title</span>
	</label>*/
.radio-section input {
  display: none;
}

.radio-section .check-mark {
  position: relative;
  float: left;
  width: 12px;
  height: 12px;
  border: 1px solid var(--border-color);
  margin: 5px;
}

.radio-section input:checked~.check-mark::before {
  content: "";
  top: 1px;
  left: 1px;
  width: 8px;
  height: 8px;
  background-color: var(--main-color);
  display: block;
  position: absolute;
}

/*Custom normal Input*/
.normal-input {
  outline: none;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid var(--border-color);
  padding-left: 10px;
  padding-bottom: 3px;
}

.button-red {
  width: 140px;
  height: 30px;
  display: inline-block;
  vertical-align: top;
}

.button-default {
  width: 140px;
  height: 30px;
  display: inline-block;
  vertical-align: top;
  color: #000000;
  background-color: #e8ecef;
  border: 1px solid #c9cbcf;
  border-radius: 100px;
  line-height: 30px;
  cursor: pointer;
}

.title-input {
  /* display: block; */
  text-transform: uppercase;
  /* border-bottom: 1px solid #c2c2c2; */
  /* padding-bottom: 5px; */
  font-family: OpenSansSemiBold;
  margin: 15px 0px;
}

.title-input i {
  color: var(--main-color);
}

.normal-input-ct {
  outline: none;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid var(--border-color);
  padding-left: 10px;
  padding-bottom: 3px;
  width: 100%;
}

/*Custom arrow select*/
/*Use
      <div class="arrow-select">
        <label>title</label>
        <select>
        </select>
      </div>*/
.arrow-select {
  position: relative;
  display: inline;
}

.arrow-select select {
  appearance: none;
  z-index: 1;
  position: relative;
  background: transparent;
}

.arrow-select::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: transparent;
  top: 5px;
  right: 0px;
  transform: rotate(45deg);
  border-right: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
  z-index: 0;
}

/*Custom Input Search*/
.custom-input {
  width: 100%;
  height: 40px;
  border-radius: 30px;
  outline: none;
  padding-left: 15px;
  border: 1px solid var(--border-color);
}

.custom-input::placeholder {
  font-style: italic;
  color: #808181;
}

/*Custom Button*/
.button-red {
  color: white;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 100px;
}

.button-red:hover {
  background-color: #193a8d;
  transition: 0.3s;
}

.button-white {
  color: var(--main-color);
  background-color: white;
  border: 1px solid var(--main-color);
  border-radius: 100px;
}

.button-white:hover {
  background-color: var(--light-color);
  transition: 0.3s;
}

/*Custom Scrollbar*/
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  display: none;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #ccc9c9;
  height: 70px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a7a5a5;
}

::-webkit-scrollbar-button {
  display: none;
}

/* Custom show-more div */
.show-more-section .show-more-button {
  color: rgb(126, 126, 126);
  font-style: italic;
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
}

/*Custom table border*/
.table-border-custom {
  border: 1px solid #c2c2c2;
  border-radius: 5px;
}

.table-border-custom table {
  width: 100%;
}

.table-border-custom table th,
.table-border-custom table td {
  border: 1px solid #c2c2c2;
  height: 50px;
  padding: 0px 10px;
}

.table-border-custom table thead tr:first-child th {
  border-top: none;
}

.table-border-custom table tbody tr td:first-child,
.table-border-custom table thead tr:first-child th:first-child {
  border-left: none;
  text-align: center;
}

.table-border-custom table tbody tr td:last-child,
.table-border-custom table thead tr:first-child th:last-child {
  border-right: none;
}

.table-border-custom table tbody tr:last-child td {
  border-bottom: none;
}

.hover-pdf {
  font-size: 20px;
  transition: all .2s ease-in-out;
}

.hover-pdf:hover {
  transform: scale(1.3);
}

.text-2-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
}

.text-4-line {
  text-align: justify;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  cursor: pointer;
}

.display-inital {
  display: initial;
}

.show-hide {
  display: inherit;
}

.ui-datepicker {
  background-color: #fff;
}

.ui-datepicker-header {
  background-color: #616eff;
}

.ui-datepicker-title {
  color: white;
}

.ui-widget-content .ui-state-default {
  border: 0px;
  text-align: center;
  background: #fff;
  font-weight: normal;
  color: #000;
}

.ui-widget-content .ui-state-default:hover {
  border: 0px;
  text-align: center;
  background: #000;
  font-weight: normal;
  color: #fff;
}

.ui-widget-content .ui-state-active {
  border: 0px;
  background: #616eff;
  color: #fff;
}
.display-initial{
  display: initial;
}
.notify-success{
  color: #2d663a;
}
.notify-warning{
  color:#f1b44c;
}
.notify-success-header{
  background-color: #d1e7dd;
}
.notify-warning-header{
  background-color: #f1b44c;
}
.cursor-pointer{
  cursor: pointer;
}
