.custom-file-input {
    color: transparent;
    border: none !important;
}

.custom-file-input::-webkit-file-upload-button {
    visibility: hidden;
}

.custom-file-input::before {
    content: "Browse";
    color: black;
    display: inline-block;
    background: -webkit-linear-gradient(top, #f9f9f9, #e3e3e3);
    border: 1px solid #999;
    border-radius: 3px;
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    font-weight: 700;
    font-size: 10pt;
}

.custom-file-input:hover::before {
    border-color: black;
}

.custom-file-input:active,
.custom-file-input:focus {
    outline: 0;
}

.custom-file-input:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

.pagination .page-link{
    color: #444;
    background-color: #fff;
    margin: 0 -1px 0 0;
    border-color: #ccc;
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    text-decoration: none;
    border: 1px solid #ddd;
}
.pagination .page-item:focus,
.pagination .page-item:active{
	outline: none !important;
	box-shadow: none !important;
    text-shadow: 0 -1px 0 rgba(0,0,0,.25);
    cursor: default;
    z-index: 3;
    border-width: 1px;
}

.pagination .page-item.active .page-link,
.pagination .page-item .page-link:focus,
.pagination .page-item .page-link:active {
    background-color: #2dc3e8;
    border-color: #2dc3e8;
    color: #ffffff;
    -webkit-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* select2 custom css for vue */
.select2-selection__arrow b:before {
    content: none !important;
}
.select2-container .select2-selection--single {
    height: 34px !important;
}
/* datepicker css for vue */
.dp__input, .dp__instance_calendar {
    font-size: 16px !important;
}

/*---------------------------------------
 End New CSS for Project Basis
-----------------------------------------*/

.switchToggle input[type="checkbox"] {
    height: 0;
    width: 0;
    visibility: hidden;
    position: absolute;
}

.switchToggle label {
    cursor: pointer;
    text-indent: -9999px;
    width: 60px;
    max-width: 70px;
    height: 20px;
    background: #d1d1d1;
    display: block;
    border-radius: 100px;
    position: relative;
    margin-bottom: 0px;
}

.switchToggle label:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 16px;
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
}

.switchToggle input:checked + label,
.switchToggle input:checked + input + label {
    background: #3e98d3;
}

.switchToggle input + label:before,
.switchToggle input + input + label:before {
    content: "EN";
    position: absolute;
    top: 0px;
    left: 32px;
    width: 18px;
    height: 20px;
    border-radius: 90px;
    transition: 0.3s;
    text-indent: 0;
    color: #fff;
}

.switchToggle input:checked + label:before,
.switchToggle input:checked + input + label:before {
    content: "BN";
    position: absolute;
    top: 0px;
    left: 10px;
    width: 18px;
    height: 20px;
    border-radius: 90px;
    transition: 0.3s;
    text-indent: 0;
    color: #fff;
}

.switchToggle input:checked + label:after,
.switchToggle input:checked + input + label:after {
    left: calc(100% - 2px);
    transform: translateX(-100%);
}

.switchToggle label:active:after {
    width: 60px;
}

.toggle-switchArea {
    margin: 10px 0 10px 0;
}

/*---------------------------------------
 Start Responsive css

 Non-Mobile First Method
-----------------------------------------*/

/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {
}

/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
}

/* Small Devices, Custom */
@media only screen and (max-width: 767px) {
    .vue-table-info,
    .vue-table-pagination {
        text-align: center;
    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {
}

/*---------------------------------------
 End Responsive css
-----------------------------------------*/

@media screen and (max-width: 600px) {
    .custom-responsive-table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .custom-responsive-table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        /*margin-bottom: .625em;*/
    }

    .custom-responsive-table td {
        border-bottom: 1px solid #ddd;
        display: block;
        /*font-size: .8em;*/
        text-align: right;
    }

    .custom-responsive-table td::before {
        /*
        * aria-label has no advantage, it won't be read inside a table
        content: attr(aria-label);
        */
        content: attr(data-label);
        float: left;
        font-weight: bold;
        /*text-transform: uppercase;*/
    }

    .custom-responsive-table td:last-child {
        border-bottom: 0;
    }
}
.input_disabled {
    background-color: #E9ECEF !important;
    pointer-events: none;
}
