@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Roboto:wght@300;400;500;700&display=swap");
body {
    background: linear-gradient( to top, rgba(0, 0, 250, 0), rgba(0, 0, 0, 0), rgba(250, 250, 250, 0.8)), url("res/images/background.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Roboto", sans-serif;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: "Poppins", sans-serif;
}

.pointer {
    cursor: pointer;
}

.round-1 {
    border-radius: 10px;
}

.round-2 {
    border-radius: 15px;
}

.round-3 {
    border-radius: 20px;
}

.m-btn {
    margin: 15px 0px;
    /* min-height: 130px; */
    min-height: 200px;
    transition: background-color 0.2s ease;
}

.m-btn:hover {
    cursor: pointer;
    background-color: #dedede;
}

.text-shadow {
    text-shadow: 2px 2px 2px blue;
}

.text-shadow-b {
    text-shadow: 2px 2px 2px #555;
}

.smalltxt {
    font-size: 14px;
}

@media only screen and (max-width: 735px) {
    .panels {
        justify-content: start;
        height: auto;
    }
    #temp-h {
        display: none;
    }
}


/* Progress */

.step {
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    background-color: cream;
}

.v-stepper {
    position: relative;
    /*   visibility: visible; */
}


/* regular step */

.step .circle {
    text-align: center;
    font-weight: bold;
    background-color: white;
    border: 3px solid gray;
    border-radius: 100%;
    width: 25px;
    /* +6 for border */
    height: 25px;
    display: inline-block;
}

.step .line {
    top: 23px;
    left: 11px;
    /*   height: 120px; */
    height: 100%;
    position: absolute;
    border-left: 3px solid gray;
}

.step.completed .circle {
    visibility: visible;
    background-color: rgb(6, 150, 215);
    border-color: rgb(6, 150, 215);
}

.step.completed .line {
    border-left: 3px solid rgb(6, 150, 215);
}

.step.active .circle {
    visibility: visible;
    border-color: rgb(6, 150, 215);
}

.step.empty .circle {
    visibility: hidden;
}

.step.empty .line {
    /* visibility: hidden; */
    /*   height: 150%; */
    top: 0;
    height: 150%;
}

.step:last-child .line {
    visibility: hidden;
    border-left: 3px solid white;
    z-index: -1;
    /* behind the circle to completely hide */
}

.content {
    margin-left: 20px;
    display: inline-block;
}

.translucent {
    background: rgba(250, 250, 250, 0.8);
    backdrop-filter: blur(5px);
}

.translucent-1 {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}


/* toogle switch */


/* The switch - the box around the slider */

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}


/* Hide default HTML checkbox */

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}


/* The slider */

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked+.slider {
    background-color: #2196f3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196f3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(17px);
    -ms-transform: translateX(17px);
    transform: translateX(17px);
}


/* Rounded sliders */

.slider.round {
    border-radius: 10px;
}

.slider.round:before {
    border-radius: 50%;
}


/* end of toogle switch */