.v-carousel__item {
  height: auto !important;
}

.radio_to_button .v-input--selection-controls__input {
  display: none;
}

.radio_to_button label {
  display: block;
  padding: 0.6rem;
  border-radius: 4px;
  box-sizing: border-box;
  background: #fff;
  color: #2f5f8a;
  font-size: 0.9rem;
  font-weight: bold;
  border: solid 1px #2f5f8a;
  cursor: pointer;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.radio_to_button.v-item--active label {
  background-color: #2f5f8a;
  color: #ffffff;
}

.open-options_button {
  justify-content: center;
  font-weight: bold;
}

fieldset {
  color: rgb(221, 221, 221) !important;
}

.v-select--is-menu-active fieldset {
  color: rgb(135, 135, 135) !important;
}

.v-input--is-focused fieldset {
  color: rgb(135, 135, 135) !important;
}

.submit_btn {
  position: relative;
  width: 65%;
  border-radius: 8px;
  box-shadow: none;
  background: #2f5f8a;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#31b970),
    color-stop(0.5, #31b970),
    color-stop(0.5, #dd183b),
    to(#dd183b)
  );
  background: -moz-linear-bgradient(
    to top,
    #2f5f8a 0%,
    #2f5f8a 50%,
    #2f5f8a 50%,
    #2f5f8a
  );
  background: linear-gradient(
    to top,
    #2f5f8a 0%,
    #2f5f8a 50%,
    #2f5f8a 50%,
    #2f5f8a
  );
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  overflow: hidden;
}

.submit_btn.v-btn--disabled {
  opacity: 1;
  border: 1px solid rgba(200, 200, 200, 0.5);
  box-shadow: none;
  background: rgba(200, 200, 200, 0.5);
}

.submit_btn::before {
  content: "";
  display: block;
  position: absolute;
  top: -50% !important;
  left: -30%;
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  transform: rotate(30deg);
  width: 50px;
  height: 100px;
  opacity: 1 !important;
  background-color: transparent !important;
  background-image: linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-image: -webkit-gradient(
    linear,
    left bottom,
    right bottom,
    color-stop(0%, rgba(255, 255, 255, 0)),
    color-stop(50%, rgba(255, 255, 255, 1)),
    color-stop(100%, rgba(255, 255, 255, 0))
  );
  background-image: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    #ffffff rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-animation: shiny 3s infinite linear;
  -moz-animation: shiny 3s infinite linear;
  animation: shiny 3s infinite linear;
}

@keyframes shiny {
  0% {
    left: -30%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

@-webkit-keyframes shiny {
  0% {
    left: -30%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

@-moz-keyframes shiny {
  0% {
    left: -30%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

.submit_btn.v-btn--disabled::before {
  content: none;
}

.action-buttons_container {
  bottom: 30px;
  position: fixed;
  display: flex;
  align-items: center;
  margin-left: -12px;
}

.v-toolbar__title {
  line-height: 1 !important;
}

.fixed-scrollable {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.fixed-scrollable .fixed-scrollable-header, .fixed-scrollable .fixed-scrollable-footer{
  flex: none;
}
.fixed-scrollable-footer {
  margin-bottom: 30px;
}
.fixed-scrollable-content, .fixed-scrollable-content > *{
  display:flex;
  flex: 1;
  align-content: baseline;
  height: inherit !important;
}
.fixed-scrollable-content .v-window,
.fixed-scrollable-content .v-window__container,
.fixed-scrollable-content .v-window-item,
.fixed-scrollable-content .v-carousel__item,
.fixed-scrollable-content .v-responsive__content,
.fixed-scrollable-content .v-card__text,
.fixed-scrollable-content .v-form {
  height: inherit !important;
  display: flex;
  flex-direction: column;
  flex:1;
}
.fixed-scrollable-content .v-form > * {
  flex:none;
}
.fixed-scrollable-content .v-form .v-input--radio-group--column {
  flex: 1 1 0 !important;
  overflow-y: auto;
}
.fixed-scrollable-content .v-form h2:nth-child(n+2) {
  margin-top: 20px !important;
}