:root {
    --rb-main-color: #151414;
    --rb-secondary-color: #2DAAE2;
    --rb-bizmo-color: #C60C35;
    --rb-marina-color: #435DA7;
    --rb-bg-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F9F9F9;

    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

input:focus,
input:focus-visible {
    box-shadow: none !important;
    background-color: #fff !important;
}

.divider-s { height: 15px; clear: both; }
.divider-m { height: 20px; clear: both; }
.divider-l { height: 30px; clear: both; }


/* 
    --------------------------------------
    --- LOGIN PAGE
    --------------------------------------
*/
#login {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    width: 350px;
    height: 500px;
    padding: 75px 45px;

    background: #FFFFFF;
    box-shadow: 0px 34px 70px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
 }
 #login img {
    display: block;
    width: 60%;
    margin: 0 auto;
 }
 #login p {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    color: #828282;
 }
 #login form {
    width: 85%;
 }
 #login form button {
    background-color: #435DA7;
    color: #FFF;
    font-weight: 500;
    font-size: 15px;
    font-family: 'Inter';
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 5px;
    letter-spacing: 1px;
 }
 #login .input-group > input {
     background: #FFFDFD;
     border: 1px solid #EEF1F3;
     border-radius: 5px;
     height: 38px;
     font-size: 13px;
     font-weight: 300;
     border-right: none;
 }
 #login .input-group .input-group-prepend > span {
    background: none;
    border: 1px solid #EEF1F3;
    border-left: none;
 }



/* 
    --------------------------------------
    --- HEADER
    --------------------------------------
*/

@media only screen and (max-width: 992px) {
    #header .desktop { display: none; }
    #header .mobile { display: block; }
}
@media only screen and (min-width: 992px) {
    #header .desktop { display: flex; }
    #header .mobile, #sidebar { display: none; }
}

#header .desktop {
    height: 120px;
    padding: 0rem 3.5rem;
    background-color: #FFF;
}
#header .logo img {
    width: auto;
    height: 80px;
}
#header .logo img:hover {
    cursor: pointer;
}

#header .user > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}
#header .user .name {
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: .75px;
    text-transform: capitalize;
}
#header .user .type {
    font-size: 14px;
    color: #828282;
}
#header .user > img {
    width: auto;
    height: 50px;
    margin: 0 1.4rem;
}
#header .user .logout {
    position: relative;
}
#header .user .logout::before {
    content: "";
    position: absolute;
    top: -25px;
    left: -0.7rem;
    height: 85px;
    width: 0.7px;
    background-color: #E0E7ED;
}
#header .user .logout span {
    color: #828282;
    font-size: 36px;
}


#header .menu {
    height: 100%;
    list-style-type: none;
    text-align: center;
    margin: 0;
    padding: 0;
}
 #header .menu > li {
    display: inline-block;
    padding: 0 10px;
    height: 100%;
}
 #header .menu > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-decoration: none;
}
 #header .menu > li a {
    color: #828282;
    font-weight: 400;
    font-size: 20px;
    font-family: 'Roboto';
    border: none;
    background: transparent;
    text-transform: uppercase;
}
#header .menu > li.current-page > a,
#header .menu > li:hover > a {
    color: #435DA7;
    position: relative;
}

#header .menu > li.current-page > a::before,
#header .menu > li:hover > a::before {
    content: "";
    position: absolute;
    bottom: 0rem;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #435DA7;
}


.toggler-icon {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.toggler-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.toggler-icon span {
    background: #000000;
}
.toggler-icon span:nth-child(1) {
    top: 0px;
}
.toggler-icon span:nth-child(2), .toggler-icon span:nth-child(3) {
    top: 10px;
}
.toggler-icon span:nth-child(4) {
    top: 20px;
}
.toggler-icon.open span:nth-child(1) {
    top: 11px;
    width: 0%;
    left: 50%;
}
.toggler-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.toggler-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.toggler-icon.open span:nth-child(4) {
    top: 11px;
    width: 0%;
    left: 50%;
}


/* Mobile */
#header .mobile {
    margin: 0;
    background-color: #FFF;
}

#sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 280px;
    z-index: 996;
    transition: all 0.3s;
    padding: 20px;
    overflow: hidden;
    scrollbar-width: thin;
    scrollbar-color: #aab7cf transparent;
    background-color: var(--rb-bg-color);
    box-shadow: -9px 3px 20px 0px;
}
#sidebar.open { left: 0; }
#sidebar > * { position: absolute; width: 100%; }

#sidebar .logo { top: 1rem; }
#sidebar .user { bottom: 2rem; }
#sidebar .user img { display: block; width: 50px; height: 50px; }

#sidebar .menu {
    top: 150px;
}
#sidebar .menu li {
    display: block;
    width: fit-content;
    text-align: left;
    padding: 0 10px;
}
#sidebar#sidebar .menu,
#sidebar#sidebar .menu li,
#sidebar#sidebar .menu li a {
    height: 35px;
    display: block;
}

@media only screen and (min-width: 992px) and (max-width: 1366px) {
    #header .desktop .menu {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        height: 70%;
        margin-top: revert;
    }
    #header .desktop .menu li {
        padding: 0 25px;
    }
    #header .desktop .menu li,
    #header .desktop .menu li a {
        height: fit-content;
    }
}


/* header dropdown */
.menu li.dropdown {
    position: relative;
}
.menu li.dropdown:hover .dropdown-content {
    display: block;
}
.menu li.dropdown .dropdown-content {
    display: none;
    position: absolute;
    left: 0px;
    background-color: #435da7;
    padding: 10px 10px;
    text-align: left;
    border-radius: 3px;
    z-index: 100;
    bottom: -60px;
    width: 150px;
}
.menu li.dropdown .dropdown-content li {
    display: block;
    padding: 0 10px;
}
  
.menu li.dropdown .dropdown-content li:hover {
    background-color: var(--rb-marina-color);
}

#header .menu .dropdown .dropdown-content li a { 
    font-size: 16px;
}

#header .menu .dropdown .dropdown-content li:hover a {
    color: #fff;
    text-decoration: none;
}

#sidebar .menu li.dropdown:focus .dropdown-content {
    display: block;
}
#sidebar .menu li.dropdown {
    position: relative;
    height: fit-content !important;
}
#sidebar .menu li.dropdown .dropdown-content {
    position: relative;
    left: 15px;
    margin-top: 0;
    box-shadow: none;
}




/* 
    --------------------------------------
    --- FOOTER
    --------------------------------------
*/
#footer {
    position: relative;
    width: 100%;
    background-color: #FFF;
    text-align: center;
    padding: 15px;
}
#footer p {
    margin: 0;
    font-size: 14px;
}
#footer a {
    color: var(--rb-bizmo-color);
}

#main {
    margin: 2rem 0;
    flex-grow: 1;
}




/* 
    --------------------------------------
    --- CHECK IN BUTTON
    --------------------------------------
*/
.new-checkin-btn {
    width: 100%;
    text-align: center;
}
.new-checkin-btn button {
    width: 200px;
    line-height: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: var(--rb-marina-color);
    border: none;
    border-radius: 25px;
}

/* 
    --------------------------------------
    --- CHECK IN TABLE
    --------------------------------------
*/
.todays-date {
    font-size: 15px;
    font-weight: 400;
}
.todays-date p {
    margin-bottom: 0;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #E0E7ED;
    line-height: 0.1em;
    margin: 10px 0 20px;
    color: #333333;
}
.todays-date span {
    background: #f9f9f9;
    padding: 0 10px 0 0;
}

.table {
    border-bottom: none;
    background-color: #FFF;
}
table, th, td {
    border: 1px solid #E0E7ED;
    text-align: center;
}
.table thead th {
    font-weight: 600;
    color: #333333;
    font-size: 13px;
    line-height: 47px;
    padding: 0;
    min-width: 115px;
    border-bottom: 1px solid #E0E7ED;
    user-select: none;
    vertical-align: middle;
}
.table tbody td {
    color: #828282;
    font-size: 12px;
    line-height: 45px;
    font-weight: 400;
    padding: 0;
    min-width: 115px;
    border-bottom: 1px solid #E0E7ED;
}
.table tbody td.view {
    cursor: pointer;
}
.table tr > td:nth-child(1) {
    font-weight: 600;
    color: #333333;
}
.table thead > tr {
    background-color: #F9F9F9;
}
td.status span {
    display: none;
    text-transform: uppercase;
}
td.status.in .si {
    display: initial;
    background-color: #FFF0F0;
    color: #EB5757;
    padding: 10px 12px;
    border-radius: 8px;
}
td.status.out .so {
    display: initial;
    background-color: #F0FFF8;
    color: #18AB56;
    padding: 10px 17px;
    border-radius: 8px;
}

.table-responsive.empty {
    text-align: center;
    font-weight: bold;
}

/* responsive table */
@media only screen and (max-width: 760px){

    .btr table,
    .btr thead,
    .btr tbody,
    .btr th,
    .btr td, 
    .btr tr {
        display: block;
    }

    .btr thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .btr tbody tr { margin: 0 0 1rem 0; }
    
    .btr tbody tr:nth-child(odd) { background: #ccc; }

    .btr tbody td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        text-align: left;
    }

    .btr tbody td:before {
        position: absolute;
        top: 0;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }

    /* Admin Users Table */
    #users-list tbody tr td:nth-of-type(1):before { content: "Emër Mbiemër"; }
    #users-list tbody tr td:nth-of-type(2):before { content: "Niveli i aksesit"; }
    #users-list tbody tr td:nth-of-type(3):before { content: "Kompania"; }
    #users-list tbody tr td:nth-of-type(4):before { content: "Veprime"; }
    #users-list tbody tr td:nth-of-type(5):before { content: "Veprime"; }

    /* Companies Employees Table */
    #company-employees tbody tr td:nth-of-type(1):before { content: "Emër Mbiemër"; }
    #company-employees tbody tr td:nth-of-type(2):before { content: "INr. Cel"; }
    #company-employees tbody tr td:nth-of-type(3):before { content: "ID"; }
    #company-employees tbody tr td:nth-of-type(4):before { content: "Shto Hyrje"; }

    /* Individuals Table */
    .cis-individuals .io-day tbody tr td:nth-of-type(1) { display: none; }
    .cis-individuals .io-day tbody tr td:nth-of-type(2):before { content: "Emër Mbiemër"; }
    .cis-individuals .io-day tbody tr td:nth-of-type(3):before { content: "ID"; }
    .cis-individuals .io-day tbody tr td:nth-of-type(4):before { content: "Nr. Cel"; }
    .cis-individuals .io-day tbody tr td:nth-of-type(5):before { content: "Kompania"; }
    .cis-individuals .io-day tbody tr td:nth-of-type(6):before { content: "Arsyeja"; }
    .cis-individuals .io-day tbody tr td:nth-of-type(7):before { content: "Hyri"; }
    .cis-individuals .io-day tbody tr td:nth-of-type(8):before { content: "Doli"; }
    .cis-individuals .io-day tbody tr td:nth-of-type(9):before { content: "Kohë qëndrimi"; }
    .cis-individuals .io-day tbody tr td:nth-of-type(10):before { content: "Tarifa"; }
    .cis-individuals .io-day tbody tr td:nth-of-type(11):before { content: "Statusi"; }
    .cis-individuals .io-day tbody tr td:nth-of-type(12):before { content: "Përdoruesi"; }
    .cis-individuals .io-day tbody tr td:nth-of-type(13):before { content: "Modifiko"; }     

    /* Cars Table */
    .cis-cars .io-day tbody tr td:nth-of-type(1) { display: none; }
    .cis-cars .io-day tbody tr td:nth-of-type(2):before { content: "Emër Mbiemër"; }
    .cis-cars .io-day tbody tr td:nth-of-type(3):before { content: "ID"; }
    .cis-cars .io-day tbody tr td:nth-of-type(4):before { content: "Nr. Cel"; }
    .cis-cars .io-day tbody tr td:nth-of-type(5):before { content: "Kompania"; }
    .cis-cars .io-day tbody tr td:nth-of-type(6):before { content: "Marka"; }
    .cis-cars .io-day tbody tr td:nth-of-type(7):before { content: "Modeli"; }
    .cis-cars .io-day tbody tr td:nth-of-type(8):before { content: "Targa"; }
    .cis-cars .io-day tbody tr td:nth-of-type(9):before { content: "Përmbajtja"; }
    .cis-cars .io-day tbody tr td:nth-of-type(10):before { content: "Pesha"; }
    .cis-cars .io-day tbody tr td:nth-of-type(11):before { content: "Hyri"; }
    .cis-cars .io-day tbody tr td:nth-of-type(12):before { content: "Doli"; }
    .cis-cars .io-day tbody tr td:nth-of-type(13):before { content: "Aktiviteti"; }
    .cis-cars .io-day tbody tr td:nth-of-type(14):before { content: "Kohë qëndrimi"; }
    .cis-cars .io-day tbody tr td:nth-of-type(15):before { content: "Kohë zgjatja"; }
    .cis-cars .io-day tbody tr td:nth-of-type(16):before { content: "Tarifa"; }
    .cis-cars .io-day tbody tr td:nth-of-type(17):before { content: "Statusi"; }
    .cis-cars .io-day tbody tr td:nth-of-type(18):before { content: "Përdoruesi"; }
    .cis-cars .io-day tbody tr td:nth-of-type(19):before { content: "Modifiko"; }         

    /* Yachts Table */
    .cis-yachts .io-day tbody tr td:nth-of-type(1) { display: none; }
    .cis-yachts .io-day tbody tr td:nth-of-type(2):before { content: "Emri i anijes"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(3):before { content: "Flamuri"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(4):before { content: "P. i regj"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(5):before { content: "I.M.O"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(6):before { content: "Sinjali i thirrjes"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(7):before { content: "Porti ku mbërrin"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(8):before { content: "Porti ku niset"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(9):before { content: "Porti ku shkon"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(10):before { content: "Data & Ora e mbërritjes"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(11):before { content: "Data & Ora e largimit"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(12):before { content: "Gjatësia e anijes"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(13):before { content: "Gjerësia e anijes"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(14):before { content: "Zhytja e anijes max."; }
    .cis-yachts .io-day tbody tr td:nth-of-type(15):before { content: "Zhytja e anijes min."; }
    .cis-yachts .io-day tbody tr td:nth-of-type(16):before { content: "N.R.T"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(17):before { content: "B.R.T"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(18):before { content: "D.W"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(19):before { content: "Qëllimi i vizitës"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(20):before { content: "Pritësi"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(21):before { content: "Furnitori"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(22):before { content: "Kohë qëndrimi"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(23):before { content: "Kohë zgjatja"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(24):before { content: "Tarifa"; }
    /* .add-yachts .io-day tbody tr td:nth-of-type(25):before { content: "Statusi"; } */
    .cis-yachts .io-day tbody tr td:nth-of-type(25):before { content: "Përdoruesi"; }
    .cis-yachts .io-day tbody tr td:nth-of-type(26):before { content: "Modifiko"; }
}



/* ICONS */
.material-symbols-outlined {
    vertical-align: middle;
}
td>a, .user_logout > a {
    color: #435da7;
}
/* YACHTS CHECK-IN */
.yachts-checkin .container-fluid .row>.col-3 {
    text-align: right;
}
.yachts-checkin table {
    width: 100%;
}
.yachts-checkin th>.inner-table {
    border: none;
    border-top: 1px solid #E0E7ED;
}
.yachts-checkin table td>.inner-table tr {
    background-color: #fff;
}
.yachts-checkin td>.inner-table, .yachts-checkin .inner-table th, .yachts-checkin table td>.inner-table tr td {
    border: none;
}
.yachts-checkin .inner-table th:nth-child(1), .yachts-checkin .inner-table th:nth-child(3) {
    border-top: 1px solid #E0E7ED;
}
.yachts-checkin .inner-table th:nth-child(1), .yachts-checkin .inner-table td:nth-child(1) {
    border-right: 1px solid #E0E7ED;
}
.yachts-checkin .inner-table th:nth-child(3), .yachts-checkin .inner-table td:nth-child(3) {
    border-left: 1px solid #E0E7ED;
}
.table .inner-table tr>td:nth-child(1) {
    font-weight: 400;
    color: #828282;
}
.yachts-checkin .main, .yachts-checkin #header {
    margin: 0 5rem;
}

/* 
    --------------------------------------
    --- MODAL
    --------------------------------------
*/
.modal {
    background-color: #000000ba;
}
.modal-content {
    padding: 0 2rem;
}
.modal-header {
    display: inline-block;
    border: none;
    padding-top: 3rem;
}
.modal-header h1 {
    color: #000000;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 0;
}
.modal-header p {
    color: #828282;
    font-size: 14px;
    font-weight: 400;
}
.modal-header .close {
    padding: 5px;
    margin: -7rem -2.5rem;
}
.modal-header h1,
.modal-header p {
    text-align: center;
    margin-bottom: 0;
}
.modal-body {
    padding-bottom: 0;
}
.modal-footer {
    border: none;
    justify-content: center;
    padding-bottom: 3rem;
}

.modal-body legend {
    margin: 0 0.45rem;
    padding: 0 0.5rem;
    background-color: #FFF;
    border-radius: 5px;
    border-bottom: 0;
    font-size: 15px;
    font-weight: 400;
}

.brfs > label {
    margin: 0 0.45rem;
    padding: 0 0.5rem;
    background-color: #FFF;
    border-radius: 5px;
    border-bottom: 0;
    font-size: 15px;
    font-weight: 400;
}
.brfs > label > span {
    color: #2CABE2;
}
.brfs > input,
.brfs > select {
    margin-top: -13px !important;
    font-size: 14px;
    font-weight: 300;
}

.modal .form-control {
    height: calc(1.5em + 0.75rem + 13px);
    border: 2px solid #CED4DA;
    border-radius: 15px;
}
.modal .form-control:focus {
    border: 2px solid #CED4DA;
    background-color: #fff;
}

.action-btn.update {
    background-color: #C60C35;
}
.action-btn.delete {
    background-color: #ffc107;
}

.action-btn.dismiss {
    background-color: #343a40;
}

.action-btn {
    background-color: var(--rb-marina-color);
    color: #FFF;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Inter';
    width: 188px;
    height: 49px;
    border: none;
    border-radius: 15px;
    text-transform: uppercase;
}

.action-btn.filter {
    background-color: #fff;
    color: #000000;
    width: 125px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Roboto',sans-serif;
    margin-right: 15px;
}

.cis-users .action-btn .material-symbols-outlined {
    font-size: 17px;
    height: 17px;
}


/* Disable Modal - View Only */
.modal.br-view-only input,
.modal.br-view-only select { pointer-events: none; }

.modal.br-view-only .modal-header .close { margin: 0; }

.modal.br-view-only .modal-header > *:not(button) { display: none; }
.modal.br-view-only .modal-footer { visibility: hidden; }



/* YACHTS */
@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        max-width: 1400px;
   }
}
fieldset {
    display: flex;
    border: 2px solid #CED4DA;
    padding: 25px 10px;
}
legend {
    width: auto;
    text-align: center;
}
fieldset .form-control {
    margin: 0 5px;
    border: none;
    border-bottom: 1px solid #CED4DA;
    border-radius: 0;
}


/*--------------------------------------------------------------
# N O T I F I C A T I O N S
--------------------------------------------------------------*/
.br-notifications {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1100;
    overflow-x: hidden;
}

.br-notification {
    display: block;
    width: 100%;
    height: fit-content;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    word-wrap: break-word;
    box-sizing: border-box;
    padding: .75rem 1.25rem;
    border: 1px solid transparent;
    color: #155724;
    transition: all 3s;
    text-align: center;
}
.br-notification > p { margin: 0; }

.br-notification.is--success { background-color: #d4edda; border-color: #c3e6cb; }
.br-notification.is--danger { background-color: #f8d7da; border-color: #f5c6cb; }
.br-notification.is--warning { background-color: #fff3cd; border-color: #ffeeba; }


/*--------------------------------------------------------------
# CONFIRMATION DIALOG BOX
--------------------------------------------------------------*/
.br-confirmation {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;

    width: 100%;
    height: 100%;
    background-color: #15141423;
}
.br-confirmation .dialog {
    position: relative;
    width: auto;
    max-width: 500px;
    margin: 1.75rem auto;
    pointer-events: none;
}
.br-confirmation .content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    padding: 1rem;
}
.br-confirmation .message {
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,.2);
    padding-bottom: .5rem;
}
.br-confirmation .actions {
    padding: .25rem .5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.br-confirmation .actions span {
    display: inline-block;

}

.br-confirmation .actions span:hover { cursor: pointer; }


/* admin */
.perdorues-page {
    background-color: #F5F5F5;
}
.perdorues-page #header {
    background-color: #FFF;
}




/* View Cars */
@media only screen and (max-width: 576px) {
    .cis-view-yachts h2,
    .cis-view-cars h2,
    .cis-view-individuals .h2 {
        text-align: center;
        margin: 8px 0;
    }

    .new-checkin-btn button {
        margin: 0 auto;
        display: block;
    }
}




/* CUSTOM DATE PICKER */
.dp-content .dpc {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.dp-content .dpc-dates {
    overflow: auto;
    white-space: nowrap;
}
.dp-content .dpc-dates .date-item {
    display: inline-block;
    min-width: 70px;
    min-height: 90px;
    border: 1px solid #EBF2FB;
    margin: 15px 5px;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
}
.dp-content .dpc-dates .date-item.active {
    border: 2px solid #435DA7;
}
.dp-content .dpc-dates .date-item:hover {
    cursor: pointer;
}
.dp-content .dpc-dates .date-item span {
    display: block;
    width: 100%;
}

.cis-view-cars .date-item span:nth-child(1), .cis-view-yachts .date-item span:nth-child(1), .cis-view-individuals .date-item span:nth-child(1) { 
    margin-top: 25px;
    color: #333333;
    font-size: 15px;
    font-weight: 300;
    font-family: 'Roboto';
    line-height: 15px;
    text-transform: uppercase;
}

.date-item span:nth-child(2) {
    font-size: 25px;
    font-weight: 700;
    color: #000;
    font-family: 'Roboto';
    line-height: 25px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #fff;

}

::-webkit-scrollbar-thumb {
    background: #2CABE2; 
    border-radius: 10px;
}

.cis-view-cars .new-checkin-btn,
.cis-view-yachts .new-checkin-btn,
.cis-view-individuals .new-checkin-btn {
    text-align: right;
}

#date-picker {
    margin-top: 15px;
}

/* USERS PANEL */
.users-count {
    display: inherit;
}

.users-count > div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}


@media only screen and (max-width: 768px) {
    .users-count > div { margin: 0 auto; }
    .users-act { justify-content: space-evenly !important; }
}

.users-count h2,
.cis-view-cars .h2,
.cis-view-yachts .h2,
.cis-companies .h2,
.cis-finance .h2,
.cis-view-individuals .h2,
.cis-status .h2 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 500;
    color: #000000;
    font-family: 'Roboto';
}

.users-count h2 {
    position: relative;
    margin-right: -20px;
    margin-bottom: 0;
}

.users-count h2::after {
    content: "";
    display: block;
    width: 1px;
    height: 30px;
    background-color: #000;
    position: absolute;
    top: -3px;
    right: -10px;
}
.users-count span {
    margin-left: 20px;
    color: #828282;
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 300;
    line-height: 60px;
}

.cis-users .input-group-text {
    border: 1px solid #6F6F6F;
    border-left: none;
    background: transparent;
    border-top-right-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
    border-radius: 0;
}

.input-group > .form-control {
    border: 1px solid #6F6F6F;
    border-right: none;
    background: transparent;
}

.cis-users .col-6 .dropdown {
    display: inline-block;
}

.cis-users .col-6 {
    text-align: right;
}

#users-list {
    margin-top: 25px;
}


/* COMPANIES */
#user-companies {
    list-style-type: none;
    margin: 0;
    padding: 0;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 1.5rem;
    background-color: #fff;
}
#user-companies > li {
    padding: 0 10px;
    margin-bottom: 0px;
    line-height: 47px;
    border-radius: 0;
    font-size: 15px;
    border: 1px solid #E0E7ED;
}

#user-companies > li:hover,
#user-companies > li.active {
    cursor: pointer;
    color: #fff;
    background-color: #435DA7;
}

#company-name .h2 { 
    display: inline;
    vertical-align: middle;
    position: relative;
    margin-right: 15px;
}
#company-name .h2::after {
    content: "";
    display: block;
    width: 1px;
    height: 30px;
    background-color: #000;
    position: absolute;
    top: -3px;
    right: -10px;
}

#company-employees-nr {
    display: inline-block;
}

@media only screen and (max-width: 768px) {
    #company-name,
    #company-employees-nr {
        text-align: center;
    }
}


/* TARIFAT */

.cis-finance .nav-pills .nav-link.active,
.cis-finance .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #435DA7;
}

.cis-finance #pills-tab {
    background-color: #FFF;
}
.cis-finance .nav-pills .nav-link {
    color: black;
    border-radius: 0;
    border: 1px solid #CED4DA;
}

.nav-link {
    padding: 0.8rem 1rem;
}

/* STATUS PAGE */
.cis-status .material-symbols-outlined {
    font-size: 15px;
}