:root {
    --primary: #17b3b8;
    --light: #F3F6F9;
    --dark: #191C24;
    --secondary: #fe7200;
}

::-webkit-scrollbar {
    width: 8px;
    /* background-color: #cffcf0 */
}

::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background-color: var(--primary)
}

::-webkit-scrollbar-thumb:hover {
    background-color: #007ae1
}

::-webkit-scrollbar-thumb:active {
    background-color: #015497
}

* {
   
    scrollbar-width: thin;
    scroll-behavior: smooth;
    /* scrollbar-color: var(--primary) #cffcf0; */
}
.transition-fade{
    animation: fadeIn ease .3s;
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

.form-select,
input[type=date],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=text] {
    background-color: light;
    border: 1px solid light;
    color: #252525;
    outline: 0;
    border-radius: 0
}

.form-select:active,
.form-select:focus,
input[type=checkbox]:active,
input[type=checkbox]:focus,
input[type=date]:active,
input[type=date]:focus,
input[type=email]:active,
input[type=email]:focus,
input[type=number]:active,
input[type=number]:focus,
input[type=password]:active,
input[type=password]:focus,
input[type=search]:active,
input[type=search]:focus,
input[type=text]:active,
input[type=text]:focus {
    outline: 0;
    border: 1px solid #009cff;
    box-shadow: none
}

.bg-disable {
    padding: 15px 15px 10px;
    background-color: #e9ecef
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary)
}

a {
    cursor: pointer;
    color: #191c24
}

.formBtn {
    background-color: var(--white)
}

.formbtn:hover {
    background-color: #009dff2c
}

.formbtn i {
    background: 0 0
}

.formbtn div p {
    background: 0 0
}

.activeformBtn {
    background-color: var(--primary);
    color: #fff
}

.activeformBtn:hover {
    color: #fff
}

.activeformBtn i {
    color: #fff
}

.activeformBtn p {
    background: 0 0
}

body {
    background-color: #fff
}

thead {
    background-color: var(--light)
}

tr,
td {
    text-transform: capitalize !important
}

.main-app {
    height: calc(100vh - 60px);
    overflow-y: scroll
}

@media (min-width:991.98px) {
    main {
        padding-left: 240px
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1
}

.btn {
    transition: .5s
}

.btn.btn-primary {
    color: #fff
}

.btn-square {
    width: 38px;
    height: 38px
}

.btn-sm-square {
    width: 32px;
    height: 32px
}

.btn-lg-square {
    width: 48px;
    height: 48px
}

.btn-lg-square,
.btn-sm-square,
.btn-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    border-radius: 50px
}

.icn-bg {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f3f6f9;
    display: flex;
    justify-content: center;
    align-items: center
}


/* ++++++++++++++++++   */
.button2 {
    display: inline-block;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--dark);
    font-size: 14px;
    font-weight: 900;
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
    cursor: pointer;
  }
  
  .button2:active {
    color: #666;
    box-shadow: inset 4px 4px 12px #c5c5c5,
               inset -4px -4px 12px #ffffff;
  }
  
  .button2:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.2s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .button2:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: var(--primary);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.0s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .button2:hover, .button2.activeformBtn {
    color: #ffffff;
    border: 1px solid var(--primary);
    background-color: var(--primary) !important;
  }
  

  .activeformBtn.button2:before {
    background-color: var(--primary);
  }

  .button2:hover:before {
    top: -35%;
    background-color: var(--primary);
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  
  .button2:hover:after {
    top: -45%;
    background-color: var(--primary);
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
/* ++++++++++++++++++   */

#wrapper {
    overflow-x: hidden;
    height: 100vh;
    overflow-y: auto
}

#sidebar-wrapper {
    height: 100vh;
    margin-left: -16rem;
    transition: margin .25s ease-out
}

.nav-menu {
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    scrollbar-color: var(--white)
}

.nav-menu .nav-menu-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 700 !important;
    padding: 10px 0
}

#sidebar-wrapper .sidebar-heading {
    /* padding: .875rem 1.25rem; */
    font-size: 1.2rem
}

#sidebar-wrapper .list-group {
    width: 15rem
}

#page-content-wrapper {
    min-width: 100vw
}

body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
    margin-left: 0
}

@media (min-width:768px) {
    #sidebar-wrapper {
        margin-left: 0
    }

    #page-content-wrapper {
        min-width: 0;
        width: 100%
    }

    body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
        margin-left: -16rem
    }
}

.logo-wrapper {
    height: 50px
}

.header {
    height: 50px
}


.navbar-humber {
    width: 3rem;
    height: 1rem;
    background-color: transparent;
    padding: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer
}

.navbar-humber .bar-line {
    width: 100%;
    height: .2rem;
    background-color: #747474;
    position: relative;
    transition: all .5s
}

.navbar-humber .bar-line::after,
.navbar-humber .bar-line::before {
    content: '';
    position: absolute;
    left: 0;
    width: 80%;
    height: .2rem;
    background-color: #747474;
    transition: all .5s
}

.navbar-humber .bar-line::before {
    transform: translateY(-.5rem)
}

.navbar-humber .bar-line::after {
    transform: translateY(.5rem)
}

.main-data{
    overflow-y: scroll;
    height: calc(100vh - 70px);
    width: 100%;
    overflow-x: hidden;
}



.bootstrap-datetimepicker-widget.bottom {
    top: auto !important
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary)
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary)
}

.progress .progress-bar {
    width: 0;
    transition: 2s
}


#passenger-name {
    border-top: none
}

#passenger-passport {
    border-bottom: none
}

.account-settings .user-profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px
}

.account-settings .user-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background-image: url(../img/u/bg-icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 2px var(--primary) solid
}

.account-settings .p-card .user-avatar {
    width: 100px !important;
    height: 100px !important
}

.account-settings .user-avatar img {
    height: 100%;
    background-color: #e9ecef
}

.account-settings h5.user-name {
    margin: 1rem 0 .3rem 0
}

.account-settings h6.user-email {
    margin: 0;
    font-size: .8rem;
    font-weight: 400;
    color: #9fa8b9
}

.company .company-logo {
    width: 100%;
    height: 200px;
    border: dashed 1px #007ae1
}

.company .company-logo img {
    height: 80px
}

.upload-icn {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #00c3ff7a;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .3s;
    cursor: pointer
}

.upload-icn:hover {
    opacity: 1
}

.upload-icn i {
    font-size: 2.5rem;
    color: #fff;
    user-select: none;
    cursor: pointer;
    padding: 20px;
    border-radius: 50%
}

.upload-icn i:hover {
    color: var(--primary)
}

.invoicerepeat {
    border: 1px dotted #007ae1
}

.another-invoice {
    position: relative
}

input.btn {
    border-radius: none
}

.btn:active {
    box-shadow: none !important;
    outline: 0;
    border: 1px solid #000;
    opacity: .5;
    background-color: var(--primary) !important;
}

.btn:focus {
    box-shadow: none !important;
    outline: 0
}

.add-btn,
.close-btn {
    font-size: 24px;
    font-weight: 700;
    padding: 10px 20px
}

.add-btn:focus,
.close-btn:focus {
    background: #fff
}

.add-btn:active,
.close-btn:active {
    border: 1px solid #000;
    opacity: .5
}

#bankformopener:active,
#companyformopener:active {
    border: none;
    background-color: none;
    opacity: 1
}

.formChanger:hover {
    color: #009cff
}

.active-form-button {
    background-color: var(--light);
    position: relative;
    color: var(--primary)
}

.active-form-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105%;
    border-top: 1px solid var(--primary);
    border-left: 1px solid var(--primary);
    border-right: 1px solid var(--primary);
    border-bottom: 2px solid var(--light);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.active-form-button::after:hover {
    color: #007ae1
}

.vh-100 {
    height: 100vh
}

.txt1 {
    font-size: 14px;
    line-height: 1.4;
    color: #555
}

a {
    color: #666;
    margin: 0;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s
}