@import url("font.css");
/* @import url("scroll-bar.css"); */
@import url('https://fonts.googleapis.com/css?family=Tajawal');


body{
    font-family: 'Tajawal', droid, tahoma;
    background-color: #13334c;
}

*:focus{
    outline: none;		
}

.ltr{
    direction: ltr;
}

a:hover{
    text-decoration: none;
}

#push-wrapper{
    min-height: calc(100vh - 125px);
}

a.unstyled-link, a.unstyled-link:hover{
    text-decoration: none;
    color:black;
    cursor: text;
}
.transition-5{
    transition: 0.5s all;
}
.hover-primary:hover{
    color: white;
    background-color: #007bff;
}

a.link-disabled{
    cursor: default;
    pointer-events: none;
}

.form-control{
    font-size: 0.82rem;
}

.custom-table-responsive .table{
    width: max-content;
    max-width: max-content;
}
.CopyToClip, .CopyToClip .ClipMe{
    cursor: copy;
}

.button-orange{
    background-color: #287b78;
}

.button-orange:hover{
    background-color: #1c6966 !important;
}
.rtl .dropdown-menu {
    right:unset;
    left: 0;
}

.rtl .navbar-nav .nav-item+.nav-item, .rtl .navbar-nav .nav-item {
    margin-right: auto;
    margin-left: auto;
}

.rtl .page-item .page-link{
    border-radius: 0;
    margin:0;
}

input, select{
    height:39px;
}

.height-unset{
    height: unset;
}

.modal-content{
    border-radius: 0;
}

.navbar .dropdown .dropdown-menu {
    transition: all 0.5s;
    max-height: 0;
    display: block;
    overflow: hidden;
    opacity: 0;
}

.navbar .dropdown.show .dropdown-menu {
transition: max-height 1s;
max-height: 100vh;
opacity: 1;
}

.heading-hover-block .heading-hover-text{
    transition: 0.3s all;
}                                

.heading-hover-block .heading-hover-text:before{
 content: "";
 position: absolute;
 z-index: 1;
 left: 100%;
 right: 15px;
 top:25px;
 bottom: 50%;
 background: #e21c11; /*** COLOR OF THE LINE ***/
 height: 2px; /*** THICKNESS OF THE LINE ***/
 -webkit-transition-property: left;
 transition-property: left;
 -webkit-transition-duration: 0.3s;
 transition-duration: 0.3s;
 -webkit-transition-timing-function: ease-out;
 transition-timing-function: ease-out;
}
.heading-hover-block:hover .heading-hover-text:before{
 left: 15px;
}
.heading-hover-block:hover .heading-hover-text{
    color: #e21c11;
    border-right: #e21c11 10px solid;
    padding-right: 5px;
}
.heading-hover-block:hover .card, .heading-hover-block:focus .card{
    box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.2);
}


.dataTable_wrapper .dataTables_length{
    text-align: right;
}

.fixed-button{
    position: fixed;
    left:20px;
    bottom: 17px;
    background-color: #499491;
    z-index: 9;
    border-radius: 50%;
    width:40px;
    height: 40px;
    box-sizing: border-box;
    font-size:1em;
    text-align: center;
    box-shadow: -2px 0px 1px #397573;
    transition: 0.2s all;
    line-height: 2.6em;
}

.fixed-button:hover{
    box-shadow: 0px 0px 1px #336e6c;
    background-color: #40afaa;
    left:19px;
}

#RegistrationWizardContent textarea{
    width: 100%;
    height: 350px;
    line-height: 2em;
}


#RegistrationWizardNav.nav-tabs .nav-link{
    border-radius: 0;
    border: 2px solid transparent;
    color:#333333;
}

#RegistrationWizardNav.nav-tabs .nav-item.show .nav-link, #RegistrationWizardNav.nav-tabs .nav-link.active {
    color: #007bff;
    background-color: #fff;
    border-color: #fff #fff #007bff;
}

footer{
    background-color: white;
    padding-top:25px;
    padding-bottom:30px;
}

.selectpicker+button.btn-light{
    background-color: #ffffff;
    border-color: #ced4da;
    color: #495057 !important;
}

.selectpicker+button.btn-light:hover {
    background-color: #efefef;
}

.shipment_status_radio{
    display: none;
}

.shipment_status_radio:checked+.shipment_status_label{
    background-color: #007bff;
    border-color: #007bff;
    font-weight: bold;
}
.shipment_status_radio:checked+.col-md-2{
    background-color: #007bff;
    border-color: #007bff;
    font-weight: bold;
}
#bill-image-upload-container .gallery img{
    height: 350px;
    width: 100%;
    object-fit: cover;
}