﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}



.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.blipFont {
    font-family: 'Roboto';
}

.blipFontHead {
    /*  
    
    filter: drop-shadow(5px 5px 3px #d6d6d6);*/
    font-weight: 800;
    font-family: 'Roboto', sans-serif;

}

.blipCopyFont {
    font-family: 'Roboto', sans-serif;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: white
}

.custom-border {
    border-width: 3px !important; /* Make border thicker */
    border-color: black !important; /* Change border color to black */
    border-radius: 10px;
    overflow: hidden;
}

.capabilities {
    background-color:#eeeeee
}

.btn-rounded {
    border-radius: 18px; 
}

.accordion-container {
    max-width: 600px;
    margin: auto;
}

/* Overlay to gray out the background */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

/* Centered form */
.formContainer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2; /* Above the overlay */
}


.vertical-separator {
    border-right: 3px solid grey;
}

@media (max-width: 767.98px) {
    .vertical-separator {
        border-right: none;
    }
}


.glassmorphism {

    background-color: rgba( 255,255,255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    border: 1px solid rgba( 255,255,255, 0.5);
}


.backGradient {
    background: linear-gradient(to bottom, #eeeeff, gray);
    background-size: 400% 400%;
    /*    height: calc(100vh - 120px); */
    min-height: 100vh;
}


.full-width-lightgrey-header {
/*    background-color: lightgrey;*/
    width: 100%;
    padding-left: 5px;
}



/* the cards */

.custom-card {
    background-color: rgba( 255,255,255, 0.6);
    border-radius: 15px;
    border: 1px solid #888;
    padding: 20px;
    box-shadow: 6px 6px 5px #666;
    margin-bottom: 20px;
}

.card-title {
    text-align: center;
    font-weight: bold;
    padding: 0px;
    margin-bottom: 5px;
    color: blue;
}

.card-text {
    margin-bottom: 10px;
}

.icon {
    height: 50px;
    width: auto;
    margin-left:20px
}

