* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    /* transition: 0.3s; */    
}

:root {
    --primary-1: rgb(34,48,78);
    --primary-2: rgb(250,166,39);
    --primary-3: rgb(212,220,225);
    --secondary-1: rgb(245,130,41);
    --secondary-2: rgb(43,159,187);
    
    --blue-transparent: #2f3fdf25;
    --bluish-gray: #696c8a;
    --bluish-gray-transparent: #696c8a25;
    --light-gray: #bfc9d4;
    --black-transparent: #00000033;

    --primary-1-transparent: rgb(34 48 78 / 17%);
    --primary-2-transparent: rgb(250 166 39 / 26%);
    --secondary-1-transparent: rgb(245 130 41 / 17%);

    --font-size-xsm: 10px;
    --font-size-sm: 14px;
    --font-size-md: 16px;

    --border-radius-xsm: 5px;
    --border-radius-sm: 7px;
    --border-radius-md: 15px;
    --border-radius-lg: 30px;
}

.bg-color {
    background-color: rgb(34,48,78);
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -9999;
    width: 100vw;
}

.bg-video {
    overflow: hidden;
    height: 100%;
    width: 100%;
    height: auto;
    z-index: 0;
    opacity: .4;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.bg-video video {
    /*background: url(../images/meeting-min.jpg);*/
/*    background-size: 110%;
    background-position-y: center;
    background-position-x: right;
    background-repeat: no-repeat;*/

    min-height: 100vh;
    min-width: 100vw;
    object-fit: cover;

}

.logo {
    position: absolute;
    z-index: 1;
}

.logo img {
    margin-top: 30px;
    margin-left: 30px;
    height: 120px;
}

.logo-sm {
    position: relative;
    z-index: 1;
}

.logo-sm img {
    margin: 12px auto;
    height: 50px;
}

.button-1, .button-2, .button-3, .button-4 {
    border-radius: var(--border-radius-sm);
    transition: 0.2s;
    cursor: pointer;
}

.button-1 {
    background-color: var(--primary-1);
    width: 100%;
    height: 50px;
    border: none;
    color: white;
    font-size: var(--font-size-md);
    font-weight: bold;
}

.button-1:hover {
    background-color: var(--primary-2);
}

.button-2, .button-3, .button-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 10px;
    margin-right: 5px;
    /*height: 25px;*/
    border: 1px solid var(--blue-transparent);
}

.button-2 {
    background-color: white;
    color: var(--primary-1);
}

.button-3 {
    background-color: var(--primary-1);
    color: white;
}

.button-4 {
    background-color: var(--primary-2);
    color: white;
    border: none !important;
}

.button-2:hover {
    background-color: var(--primary-1);
    color: white;
}

.button-3:hover, .button-4:hover {
    /*background-color: var(--secondary-2);*/
    background-image: linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2));
    color: white;
}

.button-name {
    margin-left: 5px;
}

.button-close {
    background-color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-1);
    cursor: pointer;
    transition: 0.2s;
    height: 25px;
    scale: 1.2;
}

.button-close:hover {
    color: var(--primary-2);
}

.card-container {
    /*max-width: 100%;*/
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    /*height: 155px;*/
}

.card-inner-row {
    display: flex;
}

.card-button:hover > .icon-title-container .bi-title {
    height: 100%;
}

.card-button {
    width: 100%;
    margin: 0;
    min-width: 250px;
    border: 1px solid var(--primary-3);
    border-top: 5px solid var(--primary-1);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    background-color: white;
    color: var(--primary-1);
    box-shadow: 1px 5px 10px var(--primary-3);
    /*align-items: center;*/
    text-align: left;
    height: 100%;
    overflow: hidden;
    transition: 0.15s;
}

.card-button hr {
    margin-top : 0;
    margin-bottom : 10px;
}

.icon {
    width: 40px;
    color: var(--primary-2);
    margin-left: 5px;
    margin-top: 16px;
}

.bi-details-container, .user-management-container {
    position: absolute;
    background-color: var(--black-transparent);
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.bi-details {
    position: absolute;
    padding: 30px;
    height: auto;
    width: 600px;
    background-color: white;
    border-radius: var(--border-radius-md);
}

.bi-title {
    margin: 17px 0;
    width: calc(100% - 109px);
    font-size: 20px;
    transition: 0.15s !important;
    height: 46px;
    max-height: 46px;
    overflow: hidden;
    line-height: 22px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-button img {
    width: 95%;
    height: 180px;
}

.card-data {
    margin: 0 21px 10px 21px;
}

.bi-description {
    opacity: 0;
    height: 0px;
    overflow-y: hidden;
    position: absolute;
    margin: 5px 0px;
    background-color: var(--black-transparent);
    backdrop-filter: blur(4px);
    box-shadow: 1px 5px 10px var(--primary-3);
    color: white;
    border-radius: var(--border-radius-sm);
    padding: 0;
    width: 100%;
    z-index: 1;
    transition: 0.15s;
    transition-property: opacity;
}

.info {
    position: absolute;
    right: 12px;
    top: 20px;
    color: var(--primary-3);
    transition: 0.15s;

}

.info:hover + .bi-description {
    padding: 20px 25px;
    height: auto;
    opacity: 1;
    transition: 0.15s;
    transition-property: opacity;
}

.bi-description:hover {
    padding: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
}

.tags {
    color: white;
    background-color: var(--primary-2);
    width: 100px;
    margin: 10px;
    padding: 5px;
    border-radius: 5px;
}

.user-management-container {
    display: none;
}

.user-management {
    background-color: white;
    max-height: 80vh;
    height: auto;
    width: 800px;
    padding: 35px;
    border-radius: var(--border-radius-lg);
}

.search-bar {
    height: 34px;
    width: 50%;
    border: 1px solid #bfc9d4;
    border-radius: var(--border-radius-sm);
    margin: 5px 10px;
    padding-left: 5px;
}

.filters-bar {
    background-color: var(--primary-1);
    padding: 5px;
    border-radius: var(--border-radius-sm);
}

.filters-bar label {
    margin-right: 1.5%;
    position: relative;
    bottom: 1px;
    color: white;
}

/*Checkbox*/

.custom-checkbox {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.checkbox-style {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-style {
    background-color: var(--primary-2);
    border-color: var(--primary-2);
}

/* TABLE */

.table-container {
    height: auto;
    max-height: 35vh;
    overflow: auto;
}

    .table-container tr:not(:first-child):hover {
        background: #DCDCDC;
    }

.table-head {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1;
    /*box-shadow: 1px 1px 2px var(--light-gray);*/
}

.table-elements {
    height: auto;
    max-height: 500px;
    overflow-y: scroll;
    width: 100%;
}

.userRow, .userRow td {
    height: 0;
    position: relative;
}

#backgroundPhone {
    display: none;
}

@media only screen and (max-width: 920px) {
    .button-close {
        margin-right: 14px !important;
    }
}
@media only screen and (max-width: 767px) {


    .logo img {
        height: 65px;
    }

    .table-container td {
        font-size: 12px !important;
    }

    #backgroundPhone {        
        position: absolute;
        top: 0;
    }

    th {
        font-size: 12px !important;
    }

    #bi-title {
        font-size: 20px !important;
        margin-top: 13px !important;
    }
    
    h2 {
        font-size: 18px !important;
    }

    h3 {
        font-size: 16px !important;
    }

    h5, p, label {
        font-size: 12px !important;
    }

    .logo-sm img {
        height: 36px !important;
    }

    #bi-details {
        width: 100vw !important;
        max-height: 100vh !important;
        height: 100vh !important;
        position: absolute;
        z-index: 2 !important;
        border-radius: 0px !important;
    }

    #bi-details-input-tile {
        max-width: 80% !important;
    }

    #bi-details-edit {
        margin: 0 15px !important;
    }

    #bi-details-controls button {
        padding: 0 10px !important;
        height: 50px !important;
    }

    .card-inner-row button {
        padding: 0 18px !important;
        height: 40px !important;
        margin: 0 15px !important;
    }

    .user-management {
        width: 100vw !important;
        max-height: 100vh !important;
        height: 100vh !important;
        position: absolute;
        z-index: 2 !important;
        border-radius: 1px !important;
        padding: 15px !important;
    }

    .mobile-hidden {
        display: none !important;
    }

    .user-partial {
        z-index: 10001 !important;
    }
}