.container-box-shadow {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.container-box-shadow h6 {
    font-size: 14px;
}

.container-box-shadow h1.display-4 {
    font-size: 3rem;
    color: #00b0f0;
	text-align: center;
	font-family:sans-serif;
}
.row {
    width: 1280px;
    max-width: 100% !important;
    position: relative;
    margin: 0 auto;
}
.user-input-div,
select#tools,
select#categories {
    font-size: small;
}

.clickable h6 {
    cursor: pointer;
}

#possible-solutions {
    max-height: 100px;
    overflow-y: auto;
    background: #223653;
    color: #fff;
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    border-radius: 5px;
    line-height: normal;
}

#possible-solutions li {
    list-style-type: none;
}

#possible-solutions li::before {
    content: attr(data-seq);
    margin-right: 0.5em;
    color: #888;
}

.collapse {
    min-height: 100px;
}

.terminal {
    --size: 1.5;
    --animation: terminal-glow;
    height: 35vh;
}

.skip-link {
    color: blue;
    display: none;
    text-decoration: underline;
    cursor: pointer;
    font-size: small;
}

.muted-text {
    color: #999;
}

.container {
    position: relative;
}

#loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 9999;
    display: none;
}

.loading-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.loading-content i {
    font-size: 48px;
    color: #000;
}

body .shell .terminal {
    height: calc(100% - 29px);
    --size: 1.1;
    padding-bottom: 0;
}

body .shell .terminal .cmd {
    margin-bottom: 10px;
}

.shell .typed-cursor,
.shell .cursor {
    background: transparent;
}

.shell>.status-bar .title {
    cursor: move;
}

.shell.windows .status-bar .title {
    right: 106px;
}

@supports (--css: variables) {
    .shell .terminal {
        --color: #aaa;
    }

    .shell.ubuntu .terminal {
        --background: #300924;
    }

    .shell.osx .content.terminal {
        --background: #222;
    }

    .shell.light .content.terminal {
        --background: white;
        --color: black;
    }

    .shell.windows .content.terminal {
        --background: black;
        --color: white;
        --animation: terminal-underline;
    }

    .shell.custom .content.terminal {
        --background: #292929;
        --color: #aaa;
    }
}

.cmd span.cursor {
    animation: none;
    width: auto;
    background-color: var(--background, #000);
}

.shell:not(.light) terminal.content,
.shell.osx.dark .content,
.shell.ubuntu:not(.light) .content {
    background-color: var(--background, #222) !important;
}

.shell .terminal.content {
    font-size: 12px;
}

.cmd {
    background-color: inherit;
}

@supports (--css: variables) {
    .shell .terminal.content {
        font-size: calc(var(--size, 1) * 12px);
    }
}

.terminal>.resizer,
.terminal>.font .resizer {
    visibility: visible;
    pointer-events: none;
}

.terminal::-webkit-scrollbar-track {
    border: 1px solid var(--color, #aaa);
    background-color: var(--background);
}

.terminal::-webkit-scrollbar {
    width: 10px;
    background-color: var(--color, #aaa);
}

.terminal::-webkit-scrollbar-thumb {
    background-color: var(--background, #000);
}

.terminal.windows .content {
    padding: 5px;
}

.shell .status-bar .buttons {
    display: flex !important;
    float: none !important;
    padding: 6px !important;
    position: relative !important;
    z-index: 1 !important;
}
.shell.windows .status-bar .buttons{
    display: flex;
    justify-content: flex-end !important;
}

.cp-tooltip {
    position: relative;
    display: inline-block;
}

.cp-tooltip .cp-tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #000000c7;
    color: #fff;
    text-align: center;
    font-size: 12px;
    border-radius: 5px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
	font-weight:600;
	line-height:1.3;
}

.cp-tooltip .cp-tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%; 
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #000000c7 transparent transparent transparent;
}

.cp-tooltip:hover .cp-tooltiptext {
    visibility: visible;
}


.cp-tooltip .fa.fa-info-circle {
    color: gray;
    font-size: smaller;
}

@media (max-width: 991px) {
    .cp-tooltip .cp-tooltiptext {
        width: 200px; 
        font-size: 13px; 
        bottom: 120%; 
        padding: 6px; 
    }

    .cp-tooltip .cp-tooltiptext::after {
        top: 100%; 
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 575px) {
    .cp-tooltip .cp-tooltiptext {
        width: 150px;
        font-size: 12px; 
        bottom: 100%; 
        padding: 5px;
    }
    .description{
        left: -50% !important;
        transform: translateX(-80%) !important;
    }
}

/* Basic styles for the search input and suggestions dropdown */
#auto-complete-search-input {
    width: 100%;
    padding: 5px;
    margin-right: auto;
}

.auto-complete-suggestions {
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    background-color: white;
    width: 90%;
    z-index: 1000;
    box-sizing: border-box;
    white-space: normal;
}

.auto-complete-suggestion {
    padding: 10px;
    cursor: pointer;
}

.auto-complete-suggestion:hover,
.auto-complete-suggestion.selected {
    background-color: #ddd;
}

/* add validation css */
.custom-validation-error {
    border: 2px solid red;
    background-color: rgba(255, 0, 0, 0.1); 
    outline: none;
    
}
#description-heading {
	    cursor: pointer;
}

.multiselect-container li a {
    font-size: 12px; 
}

.multiselect-selected-text {
    font-size: 12px; 
}



@media (max-width: 550px) {
    .container-box-shadow .display-4.banner-title {
         font-size: 2.5rem !important;
         color: #00b0f0;
    }

}
/* override css add */
.row .user-input-div {
        width: 100% !important;
    }
.categories-options{
	 -webkit-appearance: auto !important;
}
.multiselect-container
input[type=radio]:not(.gfield-choice-input) {
	-webkit-appearance: none;
	width: auto !important;
	display: none !important;
}
.form-check-input[type=checkbox] {
    margin-left: -1.70rem !important;
    margin-top: .3rem !important;
}

.row .scrollToQuestion {
	width: 100% !important;
    padding: 0;
}
.row .possible-solutions-collapse{
	width: 100% !important;
	padding: 0;
}
.row .commandPrompt{
	width: 100% !important ;
	padding: 0;
}
.row .command-row{
	width:100% !important;
	max-width:100% !important;
	margin-left: 0px !important;
    margin-right: 0px !important;
	 padding: 0 !important;
}
.row .description-section{
	width:100% !important;
}
.shell .status-bar .buttons a i {
    display: block !important;
    font-size: .45em !important;
}
.windows_Types {
    width: auto !important;
    padding: 2px !important;
    border-radius: 2px !important;
    -webkit-appearance: auto !important;
    border: 1px solid black !important;
}
form {
    font-size: 14px !important;
}
select {
    background: none !important;
    background-color: #fff !important;
}


