table{
    font-size: 12px;
}
.is-divider, .is-divider-vertical {
    display: block;
    position: relative;
    border-top: .1rem solid #dbdbdb;
    height: .1rem;
    margin: 2rem 0;
    text-align: center;
}

.is-divider-vertical {
    display: block;
    flex: none;
    width: auto;
    height: auto;
    padding: 2rem;
    margin: 0;
    position: relative;
    border-top: none;
    min-height: 2rem;
}

.is-divider[data-content]::after, .is-divider-vertical[data-content]::after {
    background: #fff;
    color: #b5b5b5;
    content: attr(data-content);
    display: inline-block;
    font-size: .75rem;
    padding: .4rem .8rem;
    -webkit-transform: translateY(-1.1rem);
    -ms-transform: translateY(-1.1rem);
    transform: translateY(-1.1rem);
    text-align: center;
}

.scroll-x{
	overflow: auto;
	overflow-x: auto;
	overflow-y: hidden;
}

.scroll-y{
	overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

.custom-scroll {
	scroll-behavior:smooth;
}

.custom-scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #eff1f2;
    box-shadow: inset 0 0 6px #eff1f2
}

.custom-scroll::-webkit-scrollbar {
    width: 5px
}

.custom-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(28,157,234,0.15)
}

.field.dropdown-item{
  padding: 0px;
  margin-bottom: 0px;
}

.field.dropdown-item input{
  border: none;
  border-radius: 0px;
  box-shadow: none;
  margin-bottom: 0px;
}
.dropdown.is-fullwidth{
    width: 100%;
}
.dropdown-trigger.is-fullwidth{
    width: 100%;
}


.tag.is-loading::after{
    animation: spinAround .5s infinite linear;
    border: 2px solid #dbdbdb;
    border-radius: 9999px;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    display: block;
    height: 1em;
    position: relative;
    width: 1em;
}

.tag.is-info.is-light.is-loading::after{
    border-color: transparent transparent #3e8ed0 #3e8ed0!important;
}