/*------------------------------------------------------------------
[Master Stylesheet]

Project:	Tuna Signup Form Wizard
Version:	1.0
Last change:	30/06/17 [first release]
Assigned to:	Wmedya
Primary use:	Signup, Login, Reservation etc. 
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]

1. Body 
2. Input & Labels
3. Buttons
    4. Loader / .tuna-loader-container
    5. Signup Container / .tuna-signup-container
        5.1. Left Panel / .tuna-signup-left
            5.1.1. Logo / .tuna-signup-logo
            5.1.2. Testimonial Slider / .tuna-slider-container
        5.2. Right Panel / .tuna-signup-right
            5.2.1. Steps Counts / .steps-count
            5.2.2. Steps / .tuna-steps
            5.2.2.1 Step Content / .step
            5.2.2.2 Confirm Step / .step-confirm
            5.2.3. Buttons / .button-container
6. Animations
7. Theme Options
    7.1. Green Theme
    7.2. Yellow Theme
    7.3. Darkblue Theme
8. Responsive Styles
9. Bootstrap Select

-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[1. Body / body]
*/
body {
  font-size: 13px;
  font-family: "Open Sans", arial, helvetica, sans-serif;
  color: #333;
  background: #137abf;
}

/*------------------------------------------------------------------
[2.Input & Labels ]
*/
.formLabel {
  display: block;
  color: rgba(255, 255, 255, 1);
  position: absolute;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 300;
  transition: all 0.2s;
}
.formLabel.active {
  -webkit-transform: translateY(-140%);
  transform: translateY(-140%);
  font-size: 20px;
}
.formInput {
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  font-size: 32px;
  width: 100%;
  color: #fff;
  display: block;
}
.formInput:focus {
  outline: none;
  border-bottom: 2px solid #fff;
  -webkit-transition: border-bottom 0.5s;
  -moz-transition: border-bottom 0.5s;
  -ms-transition: border-bottom 0.5s;
  -o-transition: border-bottom 0.5s;
  transition: border-bottom 0.5s;
}
.formInput.input-error {
  border-bottom-color: /*rgba(0, 0, 0, 0.5)*/ #f99f20;
}
.help-error {
  font-size: 14px;
  font-style: italic;
  /*color: rgba(0, 0, 0, 0.5);*/
  color: #f99f20;
  font-weight: bold;
  padding: 10px 0;
  display: none;
  text-align: right;
}
.help-error i {
  font-weight: bold;
  font-size: 16px;
  vertical-align: middle;
  float: right;
  margin-left: 20px;
}
.help-info {
  text-align: right;
  font-size: 13px;
  font-style: italic;
  font-weight: 600;
  padding: 10px 0;
}

/*------------------------------------------------------------------
[3. Buttons ]
*/
.btn {
  font-weight: 700;
  font-size: 15px;
}
.btn-rounded {
  border-radius: 30px;
}
.btn-white {
  background: #fff;
  color: #777;
  padding: 10px 30px !important;
}
.btn-white:hover {
  background: #eee;
  color: #333;
}
.btn-white-transparent {
  border: 2px solid #fff;
  background: none;
  color: #fff;
  padding: 10px 30px !important;
}
.btn-white-transparent:hover {
  background: #fff;
  color: #777;
}

/*------------------------------------------------------------------
[4. Loader / .tuna-loader-container]
*/
.tuna-loader-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: #fff;
  z-index: 1000;
}
.tuna-loader {
  position: absolute;
  top: 50%;
  margin-top: -25px;
  left: 50%;
  margin-left: -25px;
  border: 4px solid #f3f3f3; /* Light grey */
  border-top: 4px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

/*------------------------------------------------------------------
[5. Signup Container / .tuna-signup-container]
*/
.tuna-signup-container {
  display: none;
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: url(../images/backgrounds/bg.png) no-repeat #f7f7f7;
}
.tuna-signup-container:after {
  z-index: -1;
  position: absolute;
  height: 2000px;
  display: block;
  content: "";
  top: 0;
  right: 0;
  width: 40%;
  background: #137abf;
}

/*------------------------------------------------------------------
[5.1 Left Panel / .tuna-signup-left]
*/
.tuna-signup-left {
  padding: 60px 30px 30px;
}
.tuna-signup-left p {
  font-size: 18px;
  line-height: 30px;
  color: #999;
}
.tuna-trial {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  font-weight: bold;
}

/*------------------------------------------------------------------
[5.1.1. Logo / .tuna-signup-logo]
*/
.tuna-signup-logo {
  margin-bottom: 20px;
}

/*------------------------------------------------------------------
[5.1.2. Testimonial Slider / .tuna-slider-container]
*/
.bx-wrapper {
  background: none;
  border: none;
  box-shadow: none;
}
.tuna-signup-left .bx-wrapper {
  margin-top: 30px;
}
.tuna-signup-testimonial .bx-wrapper img {
  margin: 0 auto;
}
.tuna-signup-testimonial {
  margin-top: 0px;
  /*height: 300px;*/
  min-height: 150px;
}

.tuna-signup-left .bx-viewport {
  min-height: 200px;
}

.tuna-signup-testimonial:after {
  clear: both;
  content: "";
  display: block;
}
.tuna-signup-testimonial img {
  height: 60px;
  float: right;
}
.tuna-signup-testimonial b {
  font-size: 16px;
  color: #999;
  display: block;
  margin-top: 20px;
}
.tuna-signup-testimonial b span {
  font-size: 14px;
  color: #ccc;
  display: block;
  font-weight: normal;
  margin-top: 3px;
}
.tuna-signup-testimonial i {
  font-size: 30px;
}
.tuna-signup-testimonial p {
  color: #666;
  font-weight: 600;
  font-size: 16px;
  margin-top: 15px;
  line-height: normal;
  margin-bottom: 18px;
}

.tuna-slider-container .bx-wrapper .bx-controls-auto,
.tuna-slider-container .bx-wrapper .bx-pager {
  bottom: -15px;
}

.custom-radio-type span.icon-cu svg path {
  fill: #fff;
}
.custom-radio-type span.icon-cu svg {
  width: 35px;
  height: 35px;
  display: inline-block;
  vertical-align: middle;
  fill: current-color;
}

/*------------------------------------------------------------------
[5.2. Right Panel / .tuna-signup-right]
*/
.tuna-signup-right {
  color: #fff;
  background: #137abf;
  position: relative;
  overflow-y: auto;
  padding: 60px 30px 0 0;
}

/*------------------------------------------------------------------
[5.2.1 Steps Counts / .steps-count]
*/
.steps-count {
  font-weight: bold;
  font-size: 13px;
  text-align: right;
}

/*------------------------------------------------------------------
[5.2.2 Steps / .tuna-steps]
*/
.tuna-steps .step {
  padding-left: 50px;
  position: absolute;
  width: 100%;
  top: 50%;
  margin-top: -80px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}
.step.step-active {
  transform: none;
  visibility: visible;
  opacity: 1;
}
.step-hide {
  -webkit-transform: translateY(-50px) !important;
  transform: translateY(-50px) !important;
}
.tuna-steps .step-confirm {
  position: initial;
  top: initial;
  margin-top: 0;
  padding-top: 30px;
  overflow-x: hidden;
  display: none;
}
.tuna-steps .step-confirm.step-active {
  display: block;
}
.step-label {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 32px;
}

.tuna-steps .checkbox-inline,
.tuna-steps .radio-inline {
  font-size: 16px;
  font-weight: 300;
  padding-left: 25px;
  line-height: 20px;
  margin-right: 20px;
  margin-bottom: 10px;
}
.checkbox-inline + .checkbox-inline,
.radio-inline + .radio-inline {
  margin-left: 0;
}

/*------------------------------------------------------------------
[5.2.2.2 Confirm Step / .step-confirm]
*/
.step-confirm .form-group {
  opacity: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 20px 0;
}
.step-confirm.step-active .form-group {
  animation: animateInput 0.3s forwards;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}
.step-confirm .form-group:nth-of-type(1) {
  animation-delay: 0.1s;
}
.step-confirm .form-group:nth-of-type(2) {
  animation-delay: 0.3s;
}
.step-confirm .form-group:nth-of-type(3) {
  animation-delay: 0.5s;
}
.step-confirm .form-group:nth-of-type(4) {
  animation-delay: 0.7s;
}
.step-confirm .form-group:nth-of-type(5) {
  animation-delay: 0.9s;
}
.step-confirm .control-label {
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-size: 20px;
}
.step-confirm input {
  box-shadow: none;
  background: none;
  border: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  padding: 10px 20px;
  height: auto;
  transition: all 0.35s ease;
  font-weight: 600;
}
.step-confirm input:hover {
}
.step-confirm input:focus {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.5);
  color: #333;
}
.step-confirm .input-container {
  position: relative;
}
.step-confirm .input-container > a {
  position: absolute;
  top: 15px;
  right: 0;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.step-confirm .input-container > a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}
.step-confirm .input-container > a.showPass {
  right: 60px;
}
.step-confirm-buttons {
  text-align: right;
  margin-top: 35px;
}
.step-confirm-buttons a {
  display: block;
  margin-bottom: 10px;
}
.step-confirm-buttons > div {
  display: inline-block;
  text-align: center;
  padding-bottom: 10px;
}
.step-confirm .confirm-input-error,
.step-confirm .confirm-input-error:focus {
  background: #b74950 !important;
  color: #fff;
}

.step-confirm .bootstrap-select button {
  border-bottom: none;
  font-weight: 600;
  font-size: 20px;
  padding: 10px 20px;
}

.step-confirm .bootstrap-select.btn-group .dropdown-toggle .caret {
  display: none;
}

.agreement {
  font-size: 14px;
}
.agreement a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

/*------------------------------------------------------------------
[5.2.3 Buttons / .button-container]
*/
.button-container {
  position: absolute;
  bottom: 100px;
  right: 0;
  text-align: right;
  width: 100%;
}
.button-container > div {
  display: inline-block;
  text-align: center;
  float: right;
  margin-left: 10px;
}
.button-container > div a {
  margin-bottom: 10px;
  display: block;
}
.prevStep {
  outline: none;
  display: none;
}
.button-container a,
.button-container a:hover,
.button-container a:focus,
.button-container a:active,
.button-container a:active:focus {
  outline: none;
}

/*------------------------------------------------------------------
[6. Animations]
*/

.tuna_loading {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 20px;
  display: block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes animateInput {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes animateInput {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*------------------------------------------------------------------
[7. Theme Options]

[7.1 Green Theme]
*/
.body-green {
  background: #00b2b2;
}
.tuna-green {
}
.tuna-green .tuna-signup-right {
  background: #00b2b2;
}
.tuna-green:after {
  background: #00b2b2;
}

/*------------------------------------------------------------------
[7.2 Yellow Theme]
*/
.body-yellow {
  background: #de991a;
}
.tuna-yellow {
  background: url(../images/backgrounds/yellow-bg.jpg);
}
.tuna-yellow .tuna-signup-right {
  background: #de991a;
}
.tuna-yellow:after {
  background: #de991a;
}
.tuna-yellow .tuna-signup-left p {
  color: #cacaca;
}
.tuna-yellow .tuna-signup-testimonial i {
  color: #ffc926;
}

/*------------------------------------------------------------------
[7.3 DarkBlue Theme]
*/
.body-darkblue {
  background: #364bb7;
}
.tuna-darkblue {
  background: url(../images/backgrounds/darkblue-bg.jpg);
}
.tuna-darkblue .tuna-signup-right {
  background: #364bb7;
}
.tuna-darkblue:after {
  background: #364bb7;
}
.tuna-darkblue .tuna-signup-left p {
  color: #fff;
}
.tuna-darkblue .tuna-signup-testimonial i {
  color: #ccc;
}
.tuna-darkblue .bx-wrapper .bx-pager.bx-default-pager a {
  background: #fff;
}
.tuna-darkblue .bx-wrapper .bx-pager.bx-default-pager a.active,
.tuna-darkblue .bx-wrapper .bx-pager.bx-default-pager a:focus,
.tuna-darkblue .bx-wrapper .bx-pager.bx-default-pager a:hover {
  background: rgba(0, 0, 0, 0.6);
}

/*****=========== addition ===========*****/
.info-block-custom ul li.welcome-plan-li, .info-block-custom ul li.baby-plan-li{
  border: 3px solid rgb(254, 184, 28, 0.3);
  cursor: pointer;
}

.info-block-custom ul li.welcome-plan-li.active,
.info-block-custom ul li.welcome-plan-li:hover,
 .info-block-custom ul li.baby-plan-li.active,
  .info-block-custom ul li.baby-plan-li:hover {
  border: 3px solid rgb(254, 184, 28);
}
.glyphicon.glyphicon-calendar {
  color: #df8f2a;
}

.glyphicon.glyphicon-time {
  color: #df8f2a;
}
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #df8f2a !important;
}

/*** additions ends ****/

/*------------------------------------------------------------------
[8. Responsive Styles]
*/

@media only screen and (max-width: 990px) {
  .tuna-signup-left {
    padding: 60px 15px 30px;
  }

  .tuna-signup-testimonial {
    height: 360px;
  }
}

@media only screen and (max-width: 760px) {
  .container {
    width: 100%;
  }

  .tuna-signup-container:after {
    display: none;
  }
  .tuna-signup-left {
    padding: 15px;
  }
  .tuna-signup-left hr {
    display: none;
  }
  .tuna-signup-right {
    min-height: 400px;
    padding: 15px 0;
  }
  .tuna-steps .step {
    padding: 0 15px;
  }
  .steps-count,
  .button-container {
    padding-right: 15px;
  }
  .step-confirm .form-group {
    margin-bottom: 0;
    padding: 10px 0;
  }
  .step-confirm .control-label {
    font-size: 16px;
  }
  .step-confirm input,
  .step-confirm .bootstrap-select button {
    padding: 6px 15px;
    font-size: 16px;
  }

  .button-container {
    bottom: 15px;
  }

  .formLabel,
  .formInput,
  .step-label {
    font-size: 20px;
  }
}

/*------------------------------------------------------------------
[9. BootStrap Select]
*/
.bootstrap-select.form-control {
  background: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
}

.bootstrap-select button {
  border: none;
  background: none;
  color: #fff;
  border-bottom: 2px solid #fff;
  border-radius: 0;
  box-shadow: none;
  outline: none !important;
  font-size: 16px;
  font-weight: 300;
}

.bootstrap-select .btn-default:hover,
.bootstrap-select.open > .dropdown-toggle.btn-default:hover {
  background: none;
  border-color: #fff;
  color: #fff;
  box-shadow: none !important;
}

.btn-group.open .dropdown-toggle {
  box-shadow: none;
}

.bootstrap-select .btn-default.active,
.bootstrap-select .btn-default:active,
.bootstrap-select.open > .dropdown-toggle.btn-default,
.bootstrap-select .btn-default.focus,
.bootstrap-select .btn-default:focus {
  background: none;
  outline: none !important;
  border-color: #fff;
  color: #fff;
}

.bootstrap-select .dropdown-menu {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  background-color: #fff;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu a:focus {
  outline: none;
}

.bootstrap-select.btn-group .dropdown-menu li a {
  padding: 6px 20px;
}

.bootstrap-select.btn-group .dropdown-menu li.selected a {
  color: #fff;
  background: #f89a21;
}

span.icon-cu img {
  max-width: 35px;
}

.hide {
  display: none;
}

.custom-radio-type .radio,
.custom-radio-type .radio input,
.custom-radio-type .radio span {
  width: 100%;
  height: 100%;
  border-radius: 0%;
  margin: 0;
}

.custom-radio-type .radio span {
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.custom-radio-type .radio span.checked,
.custom-radio-type .radio.hover span {
  border-color: #fff;
}

.tuna-steps .custom-radio-type .radio-inline {
  padding: 8px 20px;
}

.custom-radio-type .radio span:after {
  display: none;
}

span.icon-cu {
  margin-right: 5px;
}

/*------servive-steps-css----*/

.custom-service-type label.radio-inline svg {
  width: 30px;
  height: 30px;
  fill: #fff !important;
  object-fit: cover;
}
.custom-service-type label.cleaning-radio svg {
  width: 36px;
  height: 36px;
}

.custom-service-type label.radio-inline svg path {
  fill: #fff !important;
}

.cleaning label.radio-inline svg {
  width: 30px;
  height: 30px;
  fill: #fff !important;
  object-fit: cover;
}

.cleaning label.radio-inline svg path {
  fill: #fff;
}

.custom-service-type span.icon-cu,
.extra.service.cleaning span.icon-cu {
  margin-right: 5px;
  vertical-align: middle;
  display: inline-block;
}
.tuna-steps .custom-service-type label.radio-inline,
.tuna-steps .extra.service.cleaning label.radio-inline {
  padding: 6px 16px;
  vertical-align: middle;
  margin-right: 12px;
}

.tuna-steps .extra.service.cleaning label.radio-inline {
  padding: 6px 20px;
}

.custom-service-type .radio,
.custom-service-type .radio input,
.custom-service-type .radio span {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  top: 0;
  left: 0;
}

.extra.service.cleaning .checker,
.extra.service.cleaning .checker input,
.extra.service.cleaning .checker span {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  top: 0;
  left: 0;
}

.extra.service.cleaning .checker {
  position: absolute;
}

.custom-service-type .radio span,
.extra.service.cleaning .checker span {
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.extra.service.cleaning .checker span.checked,
.extra.service.cleaning .checker:hover span {
  border-color: #fff;
}

.custom-service-type .radio span.checked,
.custom-service-type .radio:hover span {
  border-color: #fff;
}

.custom-service-type .radio span:after,
.extra.service.cleaning .checker span:after {
  display: none;
}

.datepickerr div {
  color: #333;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #f55661;
}

.welcomepack .step-label a {
  color: #ffc926;
  font-size: 20px;
  /* text-decoration: underline; */
  font-weight: 500;
}
.info-block-custom p {
  padding: 10px 0 0 0;
  font-size: 15px;
  font-weight: 300;
}
.plans-inner-custom strong {
  display: block;
  padding-bottom: 10px;
}
.info-block-custom ul {
  list-style: none;
  padding-left: 0;
  font-size: 0;
}
.info-block-custom ul li {
  display: inline-block;
  width: calc(33.33% - 10px);
  font-size: 16px;
  font-weight: 300;
  margin: 0px 10px 10px 0;
  /* background: #fff; */
  border: 2px solid #feb81c;
  text-align: center;
  padding: 10px 15px;
}
.price-pack-custom h3 {
  font-size: 35px;
  font-weight: 300;
  margin-bottom: 0;
  margin-top: 10px;
}

span.include-plan-custom {
  font-weight: 600;
  /* color: #feb81c; */
}
span.include-plan-custom .custom-add-plan {
  display: inline-block;
  background: #feb81c;
  width: 20px;
  height: 20px;
  border-radius: 30px;
  /* vertical-align: middle; */
  font-size: 18px;
  text-align: center;
  line-height: 20px;
}
form .form-group.active {
  z-index: 999;
  position: relative;
}

.tuna-signup-left .tuna-signup-logo {
  max-width: 250px;
  width: 100%;
}

.step-confirm .answerspan {
  font-size: 20px;
  /* padding-top: 7px; */
  padding: 10px 20px;
  display: inline-block;
  color: #fff;
  font-weight: 600;
}

.cleaning label.radio-inline svg path.st0 {
  fill: none;
  stroke: #fff;
}

.step-confirm .answer .input-container .input-group-addon {
  transition: all 0.35s ease;
  opacity: 0;
  visibility: hidden;
}

.step-confirm .answer.active .input-container .input-group-addon,
.step-confirm .active .input-group-addon {
  opacity: 1 !important;
  visibility: visible !important;
}

.step-confirm .answer.active a.editInput,
.step-confirm .active a.editInput {
  opacity: 0;
  visibility: hidden;
}

/* For Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
/* Webkit browsers like Safari and Chrome */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media only screen and (min-width: 760px) and (max-width: 1366px) {
  .tuna-steps .step.welcomepack {
    top: 28%;
  }
}

@media only screen and (max-width: 760px) {
  .tuna-steps .step.custom-service-type {
    top: 35%;
  }
  .tuna-steps .custom-service-type label.radio-inline {
    margin-right: 10px;
  }

  .tuna-steps .custom-service-type label.radio-inline {
    padding: 4px 16px;
  }
  .welcomepack .step-label a {
    display: inline-block;
  }

  .step.servicequestion.welcomepack {
    position: static;
    margin-top: 50px;
    max-height: 700px;
    overflow: auto;
    padding-bottom: 100px;
  }

  .info-block-custom ul li {
    width: 100%;
    margin-right: 0;
  }

  .tuna-steps .carrental.step {
    top: 42%;
  }

  .tuna-steps .step.custom-service-type.airport {
    top: 50%;
  }

  .tuna-steps .step.extra.service.cleaning {
    top: 42%;
  }

  .step-confirm .answerspan {
    font-size: 16px;
    padding: 6px 15px;
  }
}

@media only screen and (max-width: 479px) {
  .tuna-steps .custom-radio-type .radio-inline {
    margin-right: 10px;
  }
  .tuna-steps .extra.service.cleaning label.radio-inline {
    padding: 6px 14px;
    margin-right: 10px;
  }
  .custom-service-type span.icon-cu,
  .extra.service.cleaning span.icon-cu {
    margin-right: 3px;
  }
}

@media only screen and (max-width: 400px) {
  .tuna-steps .custom-radio-type .radio-inline {
    padding: 8px 17px;
    font-size: 14px;
  }
  span.icon-cu img {
    max-width: 30px;
  }

  .btn-white,
  .btn-white-transparent {
    padding: 10px 24px !important;
  }

  .tuna-steps .custom-service-type label.radio-inline {
    margin-right: 10px;
    font-size: 14px;
  }
  .help-error {
    font-size: 12px;
  }
}

@media only screen and (max-width: 365px) {
  .tuna-steps .custom-service-type label.radio-inline {
    padding: 6px 12px;
  }

  .custom-service-type label.radio-inline svg {
    width: 32px;
    height: 32px;
  }
  .custom-service-type span.icon-cu {
    margin-right: 3px;
  }

  .tuna-steps .custom-radio-type .radio-inline {
    padding: 6px 10px;
    font-size: 13px;
  }

  .tuna-steps .custom-service-type label.radio-inline {
    padding: 6px 10px;
    margin-right: 7px;
    font-size: 13px;
  }
  .custom-radio-type span.icon-cu svg {
    width: 30px;
  }
}
a#submitbutton {
  font-size: 20px;
}
