﻿/*@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');*/


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

/*font-family: 'Poppins', sans-serif;*/

html, body {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    /* Disable Scrolling on Body */
    margin: 0;
    overflow: hidden;
    background: #E8EEF3;
}


a, .btn-link {
    color: #0366d6;
}

/*.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}*/

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


/* Drag And Drop*/

.dropzone {
    padding: 30px;
    border: 1px dashed #75868a;
    list-style: none;
}

.no-drop {
    border: 2px dashed red;
}

.can-drop {
    border: 2px dashed green;
}

.job-status {
    display: flex;
    flex-direction: column;
    width: 312px;
}

    .job-status ul {
        flex: 1;
    }

.draggable {
    margin-bottom: 10px;
    padding: 10px 25px;
    border: 1px solid #424d5c;
    cursor: grab;
    background: #5c6b7f;
    color: #ffffff;
    border-radius: 5px;
    width: 250px;
}

    .draggable:active {
        cursor: grabbing;
    }

.dragging {
    cursor: grabbing;
}



.container-drop-from {
    display: flex; /* or inline-flex */
}

.child_1 {
    /*  background-color: brown;*/
    height: 106px;
    width: 76%;
    padding: 0px 5px 0px 0px;
    /*   border: 2px solid rgb(0, 0, 0);*/
    /*border-radius: 1%;*/
}


.child_2 {
    height: 85%;
    width: 27%;
    /*    border: 2px solid rgb(0, 0, 0);*/
    position: fixed;
    /* top: 0; */
    right: 4%;
    /*border-radius: 1%;*/
    margin: -10px 0px 0px 5px;
    border-left: 1px solid;
    border-left-width: 2px;
    padding: 10px;
}

.drag-items {
  /*  background-color: rgb(3, 19, 241);*/
    height: 100px;
    width: 100%;
 /*   border: 2px solid rgb(0, 0, 0);*/
    /*border-radius: 1%;*/


}

    .drag-items:hover {
/*        cursor: pointer;
        cursor: hand;*/
        cursor: -webkit-grab;
    }


.drag-space {
    padding: 30px;
    border: 4px dashed #1b6ec2;
    height: 100px;
    list-style: none;
    color: #1b6ec2;
    border-radius: 10px;
}

.div1-up {
    padding: 30px;
    border: 1px dashed #75868a;
    height: 10px;
    list-style: none;
    background-color: hotpink;
}


.move-item {
    display: block;
    animation-name: move-item-animation;
    animation-duration: 1s;
    animation: MoveUpDown 1s linear infinite;
    position: absolute;
    left: 0;
    bottom: 0;
}

@keyframes move-item-animation {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-1px);
    }
}



/*
.item-form {
    flex-grow: 1;
    transition: flex-grow 1000ms linear;
}

.item-form-remove {
    flex-grow: 0.00001;
}

*/


.move-down {
    animation-name: move-item-down;
    animation-duration: 1s;
    animation-delay: 0;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes move-item-down {
    to {
        transform: translateY(1px);
    }
}

.move-up {
    animation-name: move-item-up;
    animation-duration: 1s;
    animation-delay: 0;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes move-item-up {
    to {
        transform: translateY(-1px);
    }
}


.modal-yes-button {
    margin: 0% 0% 0% 39%;
    padding: 5px 20px 5px 20px;
}

.modal-no-button {
    margin: 0% 0% 0% 5%;
    padding: 5px 20px 5px 20px;
}

.modal-margin {
    margin: 3% 0% 0% 0%;
}

/*.modal-margin-l {
    margin-right: 7%;
}*/

.menu-scroll {
    overflow-y: auto; /* Show vertical scrollbar */
    /*overflow-x: scroll;*/ /* Show horizontal scrollbar */
}

.menu-scroll-height {
    overflow-y: auto;
    height: calc(100dvh); /* 100dvh for the mobile */
}

body {
    /*    margin: 0;
    padding: 0;
    overflow: hidden;*/
    /* max-height: calc(100vh - 0.1px); */
    /* mobile viewport bug fix */
    /* min-height: -webkit-fill-available; */
}

html {
  /*  height: -webkit-fill-available;*/
}



#app {
    /*  height: 100%;*/
  /*  min-height: calc(100vh + 0.3px);*/
}


.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
    supported by Chrome, Edge, Opera and Firefox */
}


.menu-lobby-height {
    height: calc(100dvh - 60px); /* 100dvh for the mobile */
    overflow-y: scroll;
    scroll-behavior: smooth;
}


.btn-size {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    height: 42px;
}



.fab-delete-path:hover .hover-rect {
    fill: #f39e9e; /* Change this to the desired color */
}


/* Custom Tooltip Styles */
.custom-tooltip {
    position: relative;
    display: inline-block;
}

    .custom-tooltip .tooltip-text {
        visibility: hidden;
        width: 200px;
        background-color: black;
        color: white;
        text-align: center;
        border-radius: 4px;
        padding: 5px;
        position: absolute;
        z-index: 1;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        transition: opacity 0.3s;
    }

        .custom-tooltip .tooltip-text::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            border-width: 5px;
            border-style: solid;
            border-color: black transparent transparent transparent;
        }

    .custom-tooltip:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
        top: -37px;
        left: 41px;
    }
/* Custom Tooltip Styles */


/* Custom Tooltip Styles */
.lobby-tooltip {
    position: relative;
    display: inline-block;
}

    .lobby-tooltip .tooltip-text {
        visibility: hidden;
        width: 200px;
        background-color: black;
        color: white;
        text-align: center;
        border-radius: 4px;
        padding: 5px;
        position: absolute;
        z-index: 1;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        transition: opacity 0.3s;
    }

        .lobby-tooltip .tooltip-text::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            border-width: 5px;
            border-style: solid;
            border-color: black transparent transparent transparent;
        }

    .lobby-tooltip:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
        top: -61px;
        left: 17px;
    }
/* Custom Tooltip Styles */

/* Custom Tooltip for list Styles */


.tooltip-text-position {
    top: -116px !important;
    left: 20px !important;
}


/* File Upload Style */
.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px;
    background-color: white; /* White background color for each item */
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    padding: 0.375rem 0.75rem;
}

.button-group {
    display: flex;
    gap: 10px;
}
/* File Upload Style */

/* Buttons */
.btn-red {
    --bs-btn-color: #ef4444;
    --bs-btn-bg: #fef2f2;
    /* --bs-btn-border-color: #dbdbdb; */
    --bs-btn-hover-color: #ef4444;
    --bs-btn-hover-bg: #f39e9e;
    /* --bs-btn-hover-border-color: #dbdbdb; */
    --bs-btn-focus-shadow-rgb: 130,138,145;
    --bs-btn-active-color: #ef4444;
    --bs-btn-active-bg: #fef2f2;
    --bs-btn-active-border-color: #51585e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--hover-gray-color);
    --bs-btn-disabled-border-color: var(--hover-gray-color);
}

.btn-padding-10 {
    padding: 10px;
}

.btn-blue {
    --bs-btn-color: #056ad5;
    --bs-btn-bg: #dceeff;
    /* --bs-btn-border-color: #056ad5; */
    --bs-btn-hover-color: #056ad5;
    --bs-btn-hover-bg: #c0defb;
    /* --bs-btn-hover-border-color: #565e64; */
    --bs-btn-focus-shadow-rgb: 130,138,145;
    --bs-btn-active-color: #056ad5;
    --bs-btn-active-bg: #dceeff;
    --bs-btn-active-border-color: #dceeff;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--hover-gray-color);
    --bs-btn-disabled-border-color: var(--hover-gray-color);
}

.btn-yellow {
    --bs-btn-color: #facc15;
    --bs-btn-bg: #fefce8;
    /* --bs-btn-border-color: #056ad5; */
    --bs-btn-hover-color: #facc15;
    --bs-btn-hover-bg: #f9ec68;
    /* --bs-btn-hover-border-color: #565e64; */
    --bs-btn-focus-shadow-rgb: 130,138,145;
    --bs-btn-active-color: #facc15;
    --bs-btn-active-bg: #fefce8;
    /*    --bs-btn-active-border-color: #51585e;*/
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--hover-gray-color);
    --bs-btn-disabled-border-color: var(--hover-gray-color);
}

.btn-close-custom {
    /*--bs-btn-color: #facc15;*/
    /* --bs-btn-bg: #fefce8; */
    /* --bs-btn-border-color: #056ad5; */
    /* --bs-btn-hover-color: #facc15; */
    --bs-btn-hover-bg: var(--hover-gray-color);
    /* --bs-btn-hover-border-color: #565e64; */
    /* --bs-btn-focus-shadow-rgb: 130,138,145; */
    /* --bs-btn-active-color: #facc15; */
    --bs-btn-active-bg: var(--hover-gray-color);
    --bs-btn-active-border-color: var(--hover-gray-color);
    --bs-btn-active-shadow: none;
    /* --bs-btn-disabled-color: #fff; */
    /* --bs-btn-disabled-bg: #6c757d; */
    padding: 3px;
    /* --bs-btn-disabled-border-color: #6c757d;*/
}

.btn-icon-small {
    --bs-btn-padding-x: 0.45rem;
}

/* Buttons */


/* Top Back Button */
.item-diagram-icon {
    height: 40px;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .item-diagram-icon:hover {
        height: 40px;
        background-color: rgb(187, 187, 187);
        border-radius: 10%;
        transition: height 0.2s ease; /* Add a smooth transition effect */
    }

    .item-diagram-icon .icon {
        width: 100%;
        height: 100%;
    }
/* Top Back Button */

.avatar-bg {
    /*  background-color: #d2d2d2;*/
    background-color: #EBF3FC;
    width: 129px;
    color: white;
}

.gx-10 {
    --bs-gutter-x: 12.5rem;
}

@media (max-width: 982px ){


    .lobby-tr {
        border-bottom: 2px solid #E8EEF3;
        border-top: 2px solid #E8EEF3;
    }

    .lobby-tr > th {
        display: none;
    }

        .lobby-tr > td {
            display: block;
            text-align: start !important;
            border-bottom: none !important;
            border-top: none !important;
        }

        .lobby-tr > td::before {
            content: attr(data-cell);
            font-weight: 700;
            /*    text-transform:capitalize;*/
        }

}

.menu-height {
    height: calc(100dvh - 60px);
    overflow-y: scroll;
    scroll-behavior: smooth;
}

.cursor_pointer {
    cursor: pointer !important;
}

/* custom file upload */
/*input[type="file"] {
    display: none;
}
*/
/*.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}*/


/* custom file upload */
.custom-file-upload {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.custom-file-upload-file {
    position: absolute;
    height: 100%;
    opacity: 0; /*  hide the input */
    cursor: pointer;
    top: 0;
    left: -112px;
}


.words-count {
    color: gray;
    font-size: 0.8em;
    display: flex;
    align-items: baseline; /* Align the baseline of text */
    float:right;
}

.words-count-digit {
    width: 33px;
    text-align: right;
}


.alert-message {
    /* Centering text vertically and horizontally */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Styling the message with a font color and font size */
    color: white;
    font-size: 18px;
    margin-right: 5px;
}

.alert-button {
    border: none;
    /* Centering text within the button */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Optional: Styling the text color in the button */
    color: white;
    cursor: pointer;
    /* Optional: Adding some padding to the button */
    padding: 5px;
}

/*    .alert-button:hover {
        background-color: grey;
        border-radius: 5px;
    }*/

.loading-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 15;
    display: flex; /* Add this to make the modal a flex container */
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically */
}

.loading-bg-full {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #E8EEF3;
    z-index: 15;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1; /* Initial opacity */
    transition: opacity 0.5s ease; /* Add a transition for opacity */
}

    .loading-bg-full.hide {
        opacity: 0; /* Set opacity to 0 when hidden */
        pointer-events: none; /* Disable pointer events when hidden */
    }

/* Optional: Add some styles to center the spinner within the modal */
.spinner-container {
    text-align: center;
}

.true-is-invalid {
    outline: 1px solid #dc3545 !important;
}



.tooltip-lobby {
    width: 200px;
    background-color: black;
    color: white;
    text-align: center;
    border-radius: 4px;
    padding: 5px;
    position: absolute;
    top: calc(100% + 5px); /* Position below the parent element */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust to center horizontally */
    z-index: 1;
    display: none; /* Hide tooltip by default */
}

.lobby-tr:hover .tooltip-lobby {
    display: block; /* Show tooltip on hover */
}

.form-container-style {
    height: 81vh;
    overflow: auto;
    width: 73%;
    margin: 33px 0px 0px 20px;
}

/* add this the user can click to delete the links*/
.diagram-svg-layer {
    z-index: 1;
}

.w-px-100 {
    width: 100px;
}

/* */
.rounded-full {
    border-radius: 9999px;
}

.wh-9 {
    width: 2.25rem;
    height: 2.25rem;
    border: 0px;
    background-color: #EBF3FC;
}

    .wh-9:hover {
        background-color: #c0defb;
    }


.wh-10 {
    width: 2.25rem;
    height: 2.25rem;
    border: 0px;
    background-color: #ffffff00;
}

    .wh-10:hover {
        background-color: #3784df;
    }


.strikethrough {
    text-decoration: line-through;
}

.visibility_hidden {
    visibility: hidden;
}

.center_teste_diagram {
    display: flex;
    justify-content: center;
    align-items: center;
}

.choise-p{
    padding-top: 5px;
}

.diagram_buttons_p {
    padding-top: 33px;
}


.button_start{
    position: relative;
    top: -19px;
    left: 33px;
}


.gray-out {
    background-color: #dfe8ef !important;
    opacity: 0.6;
    pointer-events: none;
}




.minimal-video-player::-webkit-media-controls-panel {
    background-image: linear-gradient(transparent, transparent) !important;
}


.minimal-video-player {
    position: relative; /* Required for absolute positioning inside */
    width: 100%;
    border-radius: 20px; /* Adjust for roundness */
    overflow: hidden; /* Essential for rounded corners */
    aspect-ratio: 16/9; /* Maintain video proportions */
}

    /* Hide all controls except the timeline */


    /* Custom timeline positioning */
    .minimal-video-player::-webkit-media-controls-timeline {
        display: block !important;
        position: absolute;
        bottom: -13px; /* Adjust distance from bottom */
        width: 97%; /* Adjust width */
        height: 4px; /* Adjust thickness */
        border-radius: 2px;
       
    }

    .minimal-video-player::-webkit-media-controls-panel {
        display: absolute;
        align-items: center;
        justify-content: flex-start;
        background: transparent !important;
    }


.image-containerimage-container {
    width ="600";
    height="400";
}