/* @import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap'); */
@import url('/site/assets/fonts/neue-helvetica.css');

body {
    font-family: "Neue Helvetica", Arial, Roboto, sans-serif;
}
.bg-success {
    background-color: #89D329 !important;
}
.navbar-light .navbar-nav .nav-link, .nav-link.active, .nav-link:hover {
    color: #FFF !important;
}
.nav-link:hover {
   text-decoration: underline;
}
/* white menu icon */
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* question list */

 .tab {
     display: none
 }

 button:hover {
     opacity: 0.8
 }

 #prevBtn {
     background-color: #bbbbbb
 }

 .step {
     height: 15px;
     width: 15px;
     margin: 0 2px;
     background-color: #bbbbbb;
     border: none;
     border-radius: 50%;
     display: inline-block;
     opacity: 0.5
 }

 .step.active {
     opacity: 1
 }

 .step.finish {
     background-color: #4CAF50
 }

 .all-steps {
     text-align: center;
     margin-top: 30px;
     margin-bottom: 30px
 }

 .thanks-message {
     display: none
 }
 .container ul.nav {
    display: grid;
 }
 .container ul.nav > li {
    margin-bottom: 20px;
 }

 /* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 400px;
}

.flip-card-inner img {
   width: 100%;
   border-radius: 30px 30px 0px 0px;

}
/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #fff;
  color: black;
}

/* Style the back side */
.flip-card-back {
  background-color: #89D329;
  color: white;
  transform: rotateY(180deg);
  padding: 1em;
  overflow-y: auto;
}


input[type=standard], input.standard {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
}

input[type=standard]:focus, input.standard:focus {
    background-color: #ddd;
    outline: none;
}

hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
}

/* Set a style for all buttons */
button:not(.accordion-button) {
    background-color: #04AA6D;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

button:not(.accordion-button):hover {
    opacity: 1;
}

/* Add padding to container elements */
.container {
    padding: 16px;
}

/* Clear floats */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}