.link-decoration{text-decoration: none;}
.link-decoration:hover{text-decoration: underline;}
.link-none-underline, .link-none-underline:hover{text-decoration: none;}


.text-justify{text-align: justify;}

.bg-liveChat{background: #eee;}
.bg-liveChatMe{background: #bffff1;}


.btn-outline-secondary{border-color: #ced4da !important;}
.btn-outline-secondary:hover, .btn-outline-secondary:active{border-color: #6C757D !important;}


*{
    scrollbar-width: thin;
    scrollbar-color: #999 #DDD;
}
*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
*::-webkit-scrollbar-track {
    background: #DDD; 
    border-radius: 2px;
}
*::-webkit-scrollbar-thumb {
    background: #999; 
    border-radius: 2px;
}
*::-webkit-scrollbar-thumb:hover {
    background: #555; 
}


.dropdown-toggle::after {
    vertical-align: middle;
}
.removecaret.dropdown-toggle::after {
    display: none;
}
.dropdown-menu {
    box-shadow: 1px 1px 5px #666;
    z-index: 2000;
}
.dropdown-menu .dropdown-item{
    padding-left: 15px !important;
    padding-right: 15px !important;
    /*border-bottom: 1px solid #E9ECEF;*/
}
.dropdown-menu .dropdown-item-text{
    padding-left: 15px !important;
    padding-right: 15px !important;
    /*border-bottom: 1px solid #E9ECEF;*/
}
/* .dropdown-menu > .dropdown-item:first-child{ */
    /*border-top: 1px solid #E9ECEF;*/
/* } */
.dropdown-item:focus, .dropdown-item:hover{
    background-color: #fee188;
}


table.table-main{
    border-collapse: collapse;
    width: 99% !important;
    border: 1px solid #000 !important;
    color: #000;
}

table.table-main > thead > tr > th{
    text-align: center;
    vertical-align: middle;
    padding: 3px !important;
}
table.table-main th, table.table-main td{
    border: 1px solid #000 !important;
    padding: 3px !important;
}

table.table-none-border{
    margin-bottom: 0px !important;
}
table.table-none-border th, table.table-none-border td{
    border: 0px !important;
}


.badge-notification{
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 9px;
}


span.highlight {
    background: #FFFF00;
    color: #000;
}


#loadingLayer{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}


.crop-text-1 {
    -webkit-line-clamp: 1;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.crop-text-2 {
    -webkit-line-clamp: 2;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.crop-text-3 {
    -webkit-line-clamp: 3;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.crop-text-4 {
    -webkit-line-clamp: 4;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.crop-text-5 {
    -webkit-line-clamp: 5;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}


.breadcrumb-home{
    padding: 0;
    margin: 0 15px 15px 15px;
    background-color: transparent !important;
}
.breadcrumb-home .breadcrumb-item+.breadcrumb-item::before{
    font-family: "Font Awesome 5 Pro";
    content: "\f101";
    padding-right: 5px;
}




.parallax-bg{
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #005d80;
}
.parallax-bg h2{
    font-weight: 300;
}
.parallax-bg ul{
    font-weight: 300;
    font-style: italic;
}



.card-img-wrap {
    overflow: hidden;
    position: relative;
}
.card-img-wrap:after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.3);
    opacity: 0;
    transition: opacity .25s;
}
.card-img-wrap img {
    transition: transform .25s;
    width: 100%;
}
.card-img-wrap:hover img {
    transform: scale(1.2);
}
.card-img-wrap:hover:after {
    opacity: 1;
}