/*Mobile Menu :: Start*/
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.bottom-nav .nav-item {
    flex-grow: 1;
    text-align: center;
    padding: 10px;
    color: #333;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bottom-nav .nav-item i {
    font-size: 20px;
    margin-bottom: 5px;
}

.bottom-nav .nav-item.active {
    color: #007bff;
}

@media (min-width: 1200px) {
    .bottom-nav {
        display: none;
    }
}

/*Mobile Menu :: End*/

/*stepper*/
.stepper-wrapper {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}

.stepper-item::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 20px;
  left: -50%;
  z-index: 2;
}

.stepper-item::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 2;
}

.stepper-item .step-counter {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ccc;
  margin-bottom: 6px;
}

.stepper-item.active {
  font-weight: bold;
}

.stepper-item.completed .step-counter {
  background-color: #00A693;
  color:#fff;
}

.stepper-item.completed::after {
  position: absolute;
  content: "";
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 3;
}

.stepper-item:first-child::before {
  content: none;
}
.stepper-item:last-child::after {
  content: none;
}

/*color*/    
.bg-teal {
    background-color:#00A693;
    color:#ffffff;
}
.bg-teal:hover {
    background-color:#009180;
    color:#ffffff;
}

.text-teal {
    color:#00A693;
}

/* Rdio Style */
.containerRadio {
  display: block;
  position: relative;
  padding-right: 35px;
  margin-bottom: 12px;
  cursor: pointer;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.containerRadio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmarkRadio {
  position: absolute;
  top: 0;
  right: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}
.containerRadio:hover input ~ .checkmarkRadio {
  background-color: #ccc;
}
.containerRadio input:checked ~ .checkmarkRadio {
  background-color: #2196F3;
}
.checkmarkRadio:after {
  content: "";
  position: absolute;
  display: none;
}
.containerRadio input:checked ~ .checkmarkRadio:after {
  display: block;
}
.containerRadio .checkmarkRadio:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

.text_left_logo {
    margin:20px 60px;
}
@media (max-width: 650px) {
  .text_left_logo {
    display:none;
  }

}

