@import "Default.css";
@import "Variables.css";


/*========================================
  Section: ICONS
========================================*/
.icon::before, .icon::after {
    font-family: Unicons;
    display: inline-block;
}
.icon-menu::before {
    content: "\EBAC" !important;
    font-size: 1rem;
    border: none !important;
    margin-right:0 !important;
}
.icon-user::before {
    content: "\EA0D";
    font-size: 1.5rem;
    padding-right: .5rem;
}
.icon-history::before {
    content: "\EAF5";
    padding-right: .5rem;
    font-size: 1.2rem;
    line-height: 1;
}
.icon-comment::before {
    content: "\E805";
    font-size: 1.2rem;
    padding-right: .5rem;
    line-height: 1;
}
.icon-cancel::before {
    content: "\E9B5";
    font-size: 1.2rem;
}
.icon-edit::before {
    content: "\E98E";
    font-size: 1rem;
}
.icon-save::after {
    content: "\E963";
    font-size: 1.5rem;
    padding-left: 1rem;
}
.icon-check-circle::before {
    content: "\E9C2";
    font-size: 1.2rem;
}
.icon-delete::before {
    content: "\E989";
    font-size: 1.5rem;
}
.icon-external-link::before {
    content: "\EBB8";
    font-size: 1rem;
}
.icon-update::before {
    content: "\EB3D";
    font-size: 1rem;
    line-height: 1;
    padding-right: .5rem;
}
.icon-check::before {
    content: "\E9C3";
    line-height:1;
    font-size: 1rem;
    padding-right: .5rem;
}
.icon-exclamation-circle::before {
    content: "\E9B0";
    line-height: 1;
    font-size: 1rem;
    padding-right: .2rem;
    color: var(--bs-dark) !important;
}
.icon-plus::before{
    content: "\E9B8";
    transform: rotate(45deg);
    font-size: 1rem;
}
.icon-calendar::before {
    content: '\E8DC';
    font-size: 1.5rem;
    line-height: 1.2;
}

/*========================================
  Section: GLOBAL
========================================*/
.z-index-top {
    z-index: 99;
}

.offcanvas-backdrop {
    background: rgba(var(--bs-black-rgb), .2) !important;
}

.visibility-hidden {
    visibility: hidden;
}

.box-shadow {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px -5px, rgba(0, 0, 0, 0.04) 0px 5px 5px -5px;
}

.text-gray {
    color: var(--bs-gray-600) !important
}

.disable {
    cursor: default;
    pointer-events: none;
    text-decoration: none;
}

.pb-5rem {
    padding-bottom: 5rem !important;
}

.island {
    background: var(--bs-white);
    border-radius: .5rem;
    padding: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 2px 10px 2px;
}
    .island.tab {
        box-shadow: rgba(149, 157, 165, 0.2) 1px 5px 10px 2px;
    }

#horizonFilters{
    /*resize: horizontal;*/
	z-index:8;
    overflow-y: auto;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgb(158 158 158 / 80%);
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);*/
}



/*========================================
  Section: MEDIA QUERIES
========================================*/
@media (min-width: 320px) {
    .container-horizon{
	    padding: 0 1.5rem;
    }
    
    #horizonFilters
    {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        border-radius: .5rem;
        background: white !important;
        z-index: 8;
    }
    #tableDataHeader:has(>tr>th:first-child) th:first-child, #tableDataHeader:has(>tr>td:first-child) td:first-child {
        min-width: 5rem;
    }
}  
      
@media (min-width: 768px)  
{    
    .h-md-100{
        height: 100%;
    }

    #horizonFilters
    {
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        margin-top: 0 !important;
    }
}

@media (min-width: 768px) and (max-width: 1200px)
{
    .container-horizon{
	    padding: 0 1rem;
    }
 
}

@media (min-width: 1200px)
{
    .container-horizon{
	    padding: 0 52px;
    }
}

@media (max-width: 576px) {
    .d-below-sm-none {
        display: none !important;
    }

    .d-below-sm-table-cell {
        display: table-cell !important;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .d-below-md-none {
        display: none !important;
    }

    .d-below-md-table-cell {
        display: table-cell !important;
    }
}