html {
    min-width: 320px;
    min-height: 400px;
    width: 100%;
    height: 100%;
}

body {
    min-width: 320px;
    min-height: 400px;
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}


/*========== Start Default ==========*/
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px; 
}

h1 {
    margin: 0 0 40px;
    font-size: 30px;
    color: rgb(22, 153, 206);   
}

h2 {
    font-size: 25px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

a,
a:hover, 
a:focus {
    text-decoration: none;
    transition: 400ms ease;
    outline: none;
}

.form-control,
.form-control:focus {
    box-shadow: none;
}

ul {
    list-style: none;
}

.scroll-off {
    overflow: hidden;
}
/*========== End Default ==========*/
/*==== Start Loader ====*/
.loader-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fff;
    z-index: 9999;
}

.loader {
    width: 144px;
    height: 98px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -72px;
    margin-top: -49px;
}

.loader img {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -72px;
    margin-top: -49px;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    100% {
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
    }
}

@-webkit-keyframes rotate {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    100% {
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
    }
}

.rotate {
    animation-name: rotate;
    animation-iteration-count: infinite;
    animation-duration: 1600ms;
    transition-timing-function: linear;
}

@keyframes scale {
    0% {
        transform: scale(.9);
        -webkit-transform: scale(.9);
        opacity: 1;
    }
    50% {
        transform: scale(0);
        -webkit-transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(.9);
        -webkit-transform: scale(.9);
        opacity: 1;
    }
}

@-webkit-keyframes scale {
    0% {
        transform: scale(.9);
        -webkit-transform: scale(.9);
        opacity: 1;
    }
    50% {
        transform: scale(0);
        -webkit-transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(.9);
        -webkit-transform: scale(.9);
        opacity: 1;
    }
}

.scale {
    animation-name: scale;
    animation-iteration-count: infinite;
    animation-duration: 1600ms;
}

/*========== End Loader ==========*/
/*==== Start Default Table ====*/
.table-responsive {
    margin: 0;
    border: none;
}

table.table {
  color: rgb(119, 119, 119);
}

table.table thead tr th {
    background: rgb(52,170,217);
    background: -moz-linear-gradient(top, rgb(52,170,217) 0%, rgb(23,154,206) 100%);
    background: -webkit-linear-gradient(top, rgb(52,170,217) 0%,rgb(23,154,206) 100%);
    background: linear-gradient(to bottom, rgb(52,170,217) 0%,rgb(23,154,206) 100%);
    color: rgb(255, 255, 255);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#34aad9', endColorstr='#179ace',GradientType=0 );
}

table.table thead tr th:first-child {
    border-top-left-radius: 5px;
}

table.table thead tr th:last-child {
    border-top-right-radius: 5px;
}

table.table thead tr th,
table.table tbody tr td {
    padding: 10px 15px;
    border: none;
}

table.table thead tr,
table.table tbody tr {
    border: none;
}

table.table tbody tr {
    border-bottom: 1px solid rgb(204, 204, 204);
}

table.table tbody tr td a {
    display: inline-block;
    margin: 0 5px 0 0;
    text-decoration: underline;
}

table.table tbody tr td a img {
    width: 24px;
}

table.table tbody tr td a:last-child {
    margin: 0;
}
/*==== Start Default Table ====*/

/*==== Start Form and Select Default ====*/
.default-form {
    width: 100%;
    display: inline-block;
    padding: 15px;
    background-color: rgb(249, 249, 249);
    border: 1px solid rgb(221, 221, 221);
    border-radius: 5px;
}

.default-form .row:last-child .form-group {
    margin-bottom: 0;
}

.default-form .form-group {
    position: relative;
}

.default-form .form-control {
    padding: 5px 10px;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 3px;
}

.default-form .form-control.date-pick {
    padding: 5px 30px 5px 10px;
}

.default-form i {
  bottom: 10px;
  position: absolute;
  right: 10px;
}

.default-form .form-control:focus {
    border: 1px solid rgb(221, 221, 221);
    box-shadow: none;
}

.default-form input[type="submit"] {
    padding: 5px 20px;
    border: none;
    border-radius: 3px;
    background: rgb(24,154,207);
    background: -moz-linear-gradient(top, rgb(24,154,207) 0%, rgb(25,155,207) 100%);
    background: -webkit-linear-gradient(top, rgb(24,154,207) 0%,rgb(25,155,207) 100%);
    background: linear-gradient(to bottom, rgb(24,154,207) 0%,rgb(25,155,207) 100%);
    color: rgb(255, 255, 255);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#189acf', endColorstr='#199bcf',GradientType=0 );
    float: right;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.5);
    transition: 400ms ease;
}

.default-form input[type="submit"]:hover,
.default-form input[type="submit"]:focus {
    box-shadow: none;
}

.select2-container--default .select2-selection--single {
    height: 34px;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 3px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 2px 10px 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.select2-container--open .select2-dropdown--below {
    border: 1px solid rgb(204, 204, 204);
    border-top: none;
    border-radius: 3px;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: rgb(20, 125, 167);
    color: rgb(255, 255, 255);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: rgb(53, 170, 217);
}
/*==== End Form and Select Default ====*/

/*========== Start Main Nav ==========*/
/*==== Start Responsive Nav Toggler ===*/
.menu-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(0,0,0,.5);
    z-index: -1;
}

.menu-overlay-on {
    opacity: 1;
    z-index: 1;
}

#menu-toggler {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
}

#menu-toggler span {
    width: 25px;
    height: 3px;
    display: block;
    margin: 0 0 3px;
    background-color: rgb(31, 158, 209);
    transition: 400ms ease;
}

#menu-toggler.active span {
    background-color: rgb(255, 255, 255);
}

#menu-toggler.active .arrow-top{
    width: 15px;
    transform: rotate(140deg);
    -webkit-transform: rotate(140deg);
}

#menu-toggler.active .arrow-middle {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

#menu-toggler.active .arrow-bottom {
    width: 15px;
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
}
/*==== End Responsive Nav Toggler ===*/

#main-nav {
    width: 250px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 40px 15px 0;
    color: rgb(244, 245, 246);
    background: -moz-linear-gradient(left, rgb(53,170,217) 0%, rgb(22,153,206) 100%);
    background: -webkit-linear-gradient(left, rgb(53,170,217) 0%,rgb(22,153,206) 100%);
    background: linear-gradient(to right, rgb(53,170,217) 0%,rgb(22,153,206) 100%);
    background: rgb(53,170,217);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#35aad9', endColorstr='#1699ce',GradientType=1 );
    float: left;
    opacity: 0;
    box-shadow: 9px 0 18px 0 rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 30px 30px 0;
    -ms-transform-origin: 30px 30px 0;
    -o-transform-origin: 30px 30px 0;
    transform-origin: 30px 30px 0;
    transition: 400ms ease;
    z-index: 1;
    overflow: auto;
}

#main-nav:before {
    width: 300px;
    height: 100%;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    background: -moz-linear-gradient(left, rgb(53,170,217) 0%, rgb(22,153,206) 100%);
    background: -webkit-linear-gradient(left, rgb(53,170,217) 0%,rgb(22,153,206) 100%);
    background: linear-gradient(to right, rgb(53,170,217) 0%,rgb(22,153,206) 100%);
    background: rgb(53,170,217);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#35aad9', endColorstr='#1699ce',GradientType=1 );
    content: "";
    z-index: -1;
}

#main-nav.active {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    z-index: 2;
}

#user-info {
    position: relative;
    padding: 0 0 15px;
    border-bottom: 1px solid rgb(16, 133, 180);
    box-shadow: 0 1px 0 0 rgb(76, 194, 242);
    text-align: center;
    opacity: 0;
    transition: 1s ease;
}

#main-nav.active #user-info {
    opacity: 1;
}

#main-nav ul {
    padding: 0;
    opacity: 0;
    transition: 2s ease;
}

#main-nav.active ul {
  opacity: 1;
}

#main-nav ul li a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: rgb(244, 245, 246);
    border-bottom: 1px solid rgb(16, 133, 180);
    box-shadow: 0 1px 0 0 rgb(76, 194, 242);
}

li a.active {
    position: relative;
}

li a.active:after {
    display: none;
    position: absolute;
    right: -45px;
    top: 50%;
    border-bottom: 15px solid rgba(0, 0, 0, 0);
    border-left: 15px solid rgb(22, 153, 206);
    border-top: 15px solid rgba(0, 0, 0, 0);
    content: "";
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

#profile-img-holder {
    width: 148px;
    height: 148px;
    display: flex;
    justify-content: center;
    margin: 0 auto 20px;
    border: 5px solid rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

#user-info h4 {
  margin: 0 0 5px;
}

#user-info span {
  display: block;
  margin: 0 0 5px;
}

#user-info a {
    position: absolute;
    bottom: 50px;
    right: 0;
    color: rgb(255, 255, 255);
    border: none;
    box-shadow: none;
}

#user-info a i {
    font-size: 20px;
}

.status-count {
    width: 40px;
    display: block;
    position: relative;
    background-color: rgb(20, 125, 167);
    border-radius: 5px;
    text-align: center;
    float: right;
}

.status-count:before {
    position: absolute;
    left: -6px;
    top: 50%;
    border-bottom: 6px solid rgba(0, 0, 0, 0);
    border-right: 6px solid rgb(20, 125, 167);
    border-top: 6px solid rgba(0, 0, 0, 0);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -otransform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
}

ul#user-option {
    position: absolute;
    right: 0;
    top: 10px;
    margin: 0;
    color: rgb(0, 0, 0);
    z-index: 1;
    overflow: hidden;
    transition: 400ms ease;
}

ul#user-option li a {
    padding: 5px 15px;
    position: relative;
    right: auto;
    bottom: auto;
    border: none;
    box-shadow: none;
    font-size: 16px !important;
    text-align: left;
}

ul#user-option li a:hover,
ul#user-option li a:focus {
    text-shadow: 1px 2px 1px;
}

@media(min-width: 1024px) {
    #menu-toggler {
        display: none;
    }
    
    #main-nav {
        width: 300px;
        height: auto;
        position: relative;
        left: auto;
        padding: 80px 30px 0;
        background: transparent;
        overflow: visible;
        box-shadow: none;
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
    
    #main-nav:before {
        display: block;
    }
    
    #user-info {
        opacity: 1;
    }
    
    #main-nav ul {
        opacity: 1;
    }
    
    #main-nav ul li a {
        font-size: 16px;
    }
    
    li a.active:after {
        display: block;
    }
}

/*==== Start Submenu ====*/
#main-nav li .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: 400ms ease;
}
#main-nav li .sub-menu.open {
    overflow: visible;
}

#main-nav .sub-menu.open {
    max-height: 500px;
    transition: 1s ease;
}

#main-nav li .sub-menu a {
    padding: 10px 0 10px 15px;
}
/*==== End Submenu ====*/
/*========== End Main Nav ==========*/

/*========== Start main-content ==========*/
#main-content {
    min-height: 100%;
    margin: 0;
    padding: 50px 15px 0;
    background-color: rgb(255, 255, 255);
}

.default-content-wrap {
    margin: 0 0 30px;
}

.content-title {
    position: relative;
    margin: 0 0 35px;
}

.content-title:after {
    width: 140px;
    height: 5px;
    position: absolute;
    bottom: -15px;
    left: 0;
    background-color: rgb(22, 153, 206);
    content: "";
}

.default-listing-view {
    width: 100%;
    display: inline-block;
    margin: 0 0 10px;
    border-bottom: 1px solid rgb(204, 204, 204);
    font-size: 14px;
}

.default-listing-view span {
    width: 47%;
    display: inline-block;
    padding: 0 0 10px;
    color: rgb(119, 119, 119);
    text-align: left;
    vertical-align: top;
}

.default-listing-view span:last-child {
    width: 53%;
}

.default-listing-view p {
    color: rgb(119, 119, 119);
}

.default-listing-view .employee-detail-title {
    color: rgb(22, 153, 206);    
    text-align: left;
}

.btn-approve,
.btn-disapprove,
.btn-back {
    padding: 5px 20px;
    border: none;
    border-radius: 3px;
    color: rgb(255, 255, 255);
    /*float: right;*/
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.3);
    transition: 400ms ease;
}

.btn-approve:hover,
.btn-approve:focus,
.btn-disapprove:hover,
.btn-disapprove:focus,
.btn-back:hover,
.btn-back:focus {
    box-shadow: none;
}

.btn-approve,
.btn-back {
    margin: 0 0 0 0;
    background: rgb(52,169,217);
    background: -moz-linear-gradient(top, rgb(52,169,217) 0%, rgb(24,154,207) 100%);
    background: -webkit-linear-gradient(top, rgb(52,169,217) 0%,rgb(24,154,207) 100%);
    background: linear-gradient(to bottom, rgb(52,169,217) 0%,rgb(24,154,207) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#34a9d9', endColorstr='#189acf',GradientType=0 );
}

.btn-disapprove {
    background: rgb(226,51,50);
    background: -moz-linear-gradient(top, rgb(226,51,50) 0%, rgb(209,45,26) 100%);
    background: -webkit-linear-gradient(top, rgb(226,51,50) 0%,rgb(209,45,26) 100%);
    background: linear-gradient(to bottom, rgb(226,51,50) 0%,rgb(209,45,26) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e23332', endColorstr='#d12d1a',GradientType=0 );
    float: right;
}

#main-content #print-area {
    width: 100%;
    display: inline-block;
}

@media(min-width: 1024px) {
    #main-content {
        margin: 0 0 0 300px;
        padding: 50px 30px;
    }
    
    .default-listing-view {
        font-size: 14px;
    }
}
/*========== End main-content ==========*/

/*========== Start Pagination ==========*/
.pagination.pagination-default {
    margin: 0 0 15px;
    padding: 0 0 0 30px;
}

.pagination.pagination-default li a {
    background-color: rgb(46, 167, 215);
    border: medium none;
    color: rgb(255, 255, 255);
    transition: 100ms ease;
}

.pagination.pagination-default li a:hover,
.pagination.pagination-default li.active a {
    background-color: rgb(35, 152, 198);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    box-shadow: 0 -3px 2px -1px rgba(0, 0, 0, 0.2);
    height: 34px;
    transform: translateY(-6px);
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    -o-transform: translateY(-6px);
    z-index: 1;
}

.pagination.pagination-default li.disabled a {
    background-color: rgb(170, 170, 170);
}

.pagination.pagination-default li.disabled a:hover {
    height: auto;
    background-color: rgb(170, 170, 170);
    color: rgb(255, 255, 255);
    box-shadow: none;
    border-radius: 0;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.table-responsive + .pagination.pagination-default {
    margin: 20px 0 0;
}

@media (min-width: 768px) {
    .pagination.pagination-default {
        float: right;
        padding: 0;
    }
}
/*========== End Pagination ==========*/

/*========== Start Search Custom ==========*/
.search-table-wrap input {
    width: 200px;
    margin: 0 auto 25px;
    background-color: rgb(249, 249, 249);
    border: 1px solid rgb(238, 238, 238);
    border-radius: 0;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2) !important;
    transition: all 300ms ease 0s;
}

.search-table-wrap input:focus {
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgb(238, 238, 238);
    box-shadow: 0 3px 2px -1px rgba(0, 0, 0, 0.2) !important;
}

@media(min-width:768px) {
    .search-table-wrap input {
        margin: 0;
    }
}
/*========== Start Search Custom ==========*/

.leave-action{
    width: 120px;
}
.help-block{
    color:rgb(226,51,50);
}
/* print button */
.btn-print {
    background-color: rgb(39, 163, 212);
    border-radius: 6px;
    color: rgb(255, 255, 255);
    float: right;
    border: 1px solid rgb(39, 163, 212);
    padding: 5px 10px;
    cursor: pointer;
}

.btn-print:hover,
.btn-print:focus {
    background-color: rgb(255, 255, 255);
    color: rgb(39, 163, 212);
}
/* print button */


/*Logged COmpany
=================*/
.logged-company span{
    font-size: 20px;
}

.select2-selection__clear {
    display: none;
}