html {
  font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: smaller;
    }
}

.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;
}
/* Style for the outer div */

/* Style for the button box */
.button-box button {
    border-radius:20px;

}

.mytoast {
    position: absolute;
    z-index: 3;
    bottom: 1vh;
    right: 1vw;
}
.hidetoggle{
    
    overflow:hidden;
    max-height:0px;
    transition:all 2s ease-in-out; 
}
.showtoggle {
    display: contents;
    max-height: fit-content;
}
#flexselector {
    flex-wrap: wrap;
    justify-content: space-around;
}
    #flexselector .selector {
        padding: 4px;
        width: 7vw;
        max-height: 40px;
    overflow-y: auto;
   
        border: 0.5px solid #bfbeaa;
    }
#form-control .selector{
    width:fit-content;
    padding:5px;
    margin:10px;
}
/* Style for the buttons */
.button-box button {
    flex-direction: column;
    margin-right: 10px;
    padding: 5px 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}

        .button-box button:last-child {
            margin-right: 0;
        }


    .sidenav ul{
        list-style:none;
    }
.prod_view {

    display: flex;
    align-items: center;
  
    width: 70vw;
    justify-content: space-evenly;
    height: 80vh;
}
.helper {
    height: 0;
    overflow: hidden;
    display: block; 
    transition: height 0.3s ease; 
}

.helperV1 {
    height: 15px; 
    position:relative;
   
}
.tour {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    display: none;
    position: absolute;
    background: #05514a;
    color: snow;
    border-radius: 20px;
    max-width: 20%;
    max-height: fit-content;
    overflow: auto;
    box-shadow: 1px 1px 20px 0px green;
    left: 10%;
    z-index: 10;
    transition: opacity 0.3s ease, transform 0.1s ease-out;
    opacity: 0;
}
    .tour p {
        padding:3px 10px;
    }
.tour p:nth-child(odd) {
    background-color:black;
}
.helperV1:hover + .tour {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
