/*
Theme Name: Satisfyc 1.0
Theme URI: http://www.ansonika.com/satisfyc/
Author: Ansonika
Author URI: http://themeforest.net/user/Ansonika/

[Table of contents] 

1. SITE STRUCTURE and TYPOGRAPHY
- 1.1 Typography
- 1.2 Buttons
- 1.3 Structure

2. CONTENT
- 2.1 Wizard
- 2.2 Success submit

3. COMMON
- 3.1 Misc
- 3.2 Spacing

/*============================================================================================*/
/* 1.  SITE STRUCTURE and TYPOGRAPHY */
/*============================================================================================*/
/*-------- 1.1 Typography --------*/
/* rem reference
10px = 0.625rem
12px = 0.75rem
14px = 0.875rem
16px = 1rem (base)
18px = 1.125rem
20px = 1.25rem
24px = 1.5rem
30px = 1.875rem
32px = 2rem
*/
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 0.875rem;
  line-height: 1.4;

  color: #444;
}
body.style_1 {
  background: #227E9B url(../images/main/pattern_3.svg) no-repeat center left;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body.style_2 {
  background: #9933ff url(../images/main/pattern_3.svg) no-repeat center left;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (max-width: 767px) {
  body.style_2 {
    background: #9933ff;
  }
}
body.style_3 {
  background: #454de5 url(../images/main/pattern_3.svg) no-repeat center left;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (max-width: 767px) {
  body.style_3 {
    background: #454de5 url(../images/main/pattern_3.svg) no-repeat right center;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #111;
}

p {
  margin-bottom: 25px;
}

strong {
  font-weight: 500;
}

label {
  font-weight: 400;
  margin-bottom: 3px;
  color: #676767;
}

hr {
  margin: 30px 0 30px 0;
  border-color: #ddd;
}

ul, ol {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0;
}

/*General links color*/
a {
  color: #fff;
  text-decoration: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none;
}
a:hover, a:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}

a.animated_link {
  position: relative;
  text-decoration: none;
}

a.animated_link {
  position: relative;
  text-decoration: none;
}
a.animated_link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  opacity: 1;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a.animated_link:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

a.animated_link.active {
  position: relative;
  text-decoration: none;
  color: #434bdf;
}
a.animated_link.active:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -5px;
  opacity: 1;
  left: 0;
  background-color: #434bdf;
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/*-------- 1.2 Buttons --------*/
a.btn_1,
.btn_1 {
  border: none;
  color: #fff;
  background: #434bdf;
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  padding: 12px 25px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  font-size: 0.875rem;
}
a.btn_1:hover,
.btn_1:hover {
  background-color: #4ccd6a;
}

/*-------- 1.3 Structure --------*/
/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
}

[data-loader="circle-side"] {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  -webkit-animation: circle infinite .95s linear;
  -moz-animation: circle infinite .95s linear;
  -o-animation: circle infinite .95s linear;
  animation: circle infinite .95s linear;
  border: 2px solid #333;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-right-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
}

#loader_form {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 999999;
  display: none;
}

[data-loader="circle-side-2"] {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  -webkit-animation: circle infinite .95s linear;
  -moz-animation: circle infinite .95s linear;
  -o-animation: circle infinite .95s linear;
  animation: circle infinite .95s linear;
  border: 2px solid #333;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-right-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
input#website {
  display: none;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

header {
  padding: 15px 10px;
  width: 100%;
  height: 90px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  header {
    padding: 10px 0;
  }
}

.footer2 {
  color: #fff;
  width: 100%;
  padding: 0 10px;
  height: 35px;
  clear: both;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .footer2 {
    height: auto;
    padding: 0 0 20px 0;
    position: static;
  }
}
.footer2 ul {
  float: right;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  .footer2 ul {
    float: none;
    margin-top: 10px;
  }
}
.footer2 ul li {
  float: left;
  margin-right: 15px;
}
.footer2 ul li:after {
  content: "|";
  font-weight: 300;
  position: relative;
  left: 9px;
  color: #fff;
}
.footer2 ul li:last-child {
  margin-right: 0;
}
.footer2 ul li:last-child:after {
  content: "";
}
.footer2 ul li a {
  color: #fff;
}
.footer2 ul li a:hover {
  color: #fff;
}

.wrapper_centering-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 20px;
}

.wrapper_centering {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.wrapper_centering {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.container_centering {

  margin: 0 auto;
  width: 95%;
  max-width: 1200px;
  height: 680px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;

}

.container_centering #bgvideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: -1; 
}


.container_centering .promo_container {
  position: relative;
  text-align:center; 
  margin-bottom:40px; 
  height: 100%;
  padding: 100px 0;
}

@keyframes slide-up {
  0%   { opacity: 0; transform: translateY(100px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  0%   { opacity: 0; }
  30%   { opacity: 0; }
  100% { opacity: 1; }
}

.container_centering .promo_container h2 { 
  font-weight: 600;
}

/* 공통 fade-in 효과 */
.container_centering .promo_container h2.welcome,
.container_centering .promo_container h2.vip,
.container_centering .promo_container h2.customer {
  opacity: 0; /* 초기 숨김 */
  animation: fade-in 4s ease-in-out forwards;
  animation-delay: 2s;
  color: #fff;
}

.container_centering .promo_container h2.title {
  color: #fff;
  animation: slide-up 2s ease-in-out forwards;
  font-size: 3rem;
  margin-bottom: 50px;
}
.container_centering .promo_container h2.welcome {
  font-size: 7rem;
}
.container_centering .promo_container h2.vip {
  font-size: 10.5rem;
  letter-spacing: 0.2em;
}
.container_centering .promo_container h2.customer {
  font-size: 7.3rem;
}

.container_centering .promo_container button{
  position: absolute;
  bottom:100px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.785rem;
}




@media (max-width: 767px) {

  .wrapper_centering-col {
    padding: 10px 20px 40px;
  }

  .wrapper_centering {
      padding: 20px 0;
  }
  .container_centering{
    height: 100%;
  }


  .container_centering .promo_container h2.title {
    font-size: 1.8rem;
  }
  .container_centering .promo_container h2.welcome {
    font-size: 2.7rem;
  }
  .container_centering .promo_container h2.vip {
    font-size: 7rem;
  }
  .container_centering .promo_container h2.customer {
    font-size: 2.7rem;
  }

}


#wizard_container {

  display: flex;
  color: #fff;
  width: 100%;
  height: 100%;

}

#wizard_container .wizard_left {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  text-align: center;
  width: 50%;
  height: 100%;
  background: linear-gradient(to bottom, #d32f2f 0%, #fab8c2 60%, #1d7c9a 100%);
  box-sizing: border-box;
  font-family: "notokr-bold";
}

.wizard_left .main_cont {
    width: 95%;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    text-align: center;
}


.wizard_left .main_cont .main_tit{

  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  font-family: "notokr-bold";
  font-size: 4.9em;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  width: 100%;
  padding: 15px 15px;
}



.wizard_left .main_cont .sub_tit {
    color: #222;
    height: 40px;
    line-height: 40px;
    width: 200px;
    margin: 0 auto;
    font-size: 1.6em;
    border-radius: 50px;
}
.wizard_left .main_cont p {
  font-size: 3.3em;
  background: linear-gradient(to right, #052c38, #205566); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 25px;
  font-family: 'notokr-regular';
}


.wizard_left .main_tit h1:nth-child(2) {
    color: #ffd511;
}
.wizard_left .main_bg {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    height: 100%;
    align-items: flex-end;
}
.wizard_left .main_bg img {
    margin-bottom: 50px;
}
.wizard_left .main_bg .car_right {
    margin: 0 auto 10% auto;
    width: 90%;
}



#wizard_container .wizard_right {
  width: 50%;
  height: 100%;
  box-sizing: border-box;
  padding: 20px;
  background-color: #FFF;
  color: #000;
  text-align: center;
}



@media (max-width: 767px) {

  #wizard_container{
    flex-direction: column;
  }
  #wizard_container .wizard_left, #wizard_container .wizard_right {
    width: 100%;
    height: 50%;

  }

  #wizard_container .wizard_right {
    padding: 10px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: 100vh;
  }

}


@media screen and (max-width:1000px) {
    .wizard_left {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        text-align: center;
        background-image: url(../resources/rent/sdcar7/banner_bg.jpg);
        height: 100%;
        padding: 30px 0;
    }
    .wizard_left .main_cont {
        padding: 30px 0;
    }
    .wizard_left .main_cont .main_tit {
        font-size: 3.8em;
    }
    .wizard_left .main_cont p {
        font-size: 24px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .wizard_left .main_bg .car_right {
        margin: 0;
        margin-right: -80px;
        width: 120%;
    }
}
@media screen and (max-width:900px) {
    .wizard_left .main_cont .main_tit h1 {
        font-size: 40px;
    }
    .wizard_left .main_bg .car_right {
        width: 100%;
        margin: 0;
    }
}



@media screen and (max-width:800px) {
    .wizard_left {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        text-align: center;
        background-image: url(../resources/rent/sdcar7/banner_bg.jpg);
        height: 100%;
        padding: 30px 0;
    }
    .wizard_left .main_cont .main_tit {
        font-size: 3.43em;
    }
    .wizard_left .main_cont .main_tit h1 {
        font-size: 36px;
    }
    .wizard_left .main_bg .car_right {
        width: 90%;
        max-width: 450px;
        padding-top: 10px;
    }
    .wizard_left .main_cont p {
        font-size: 20px;
        margin-top: 18px;
        margin-bottom: 18px;
    }
    .wizard_left .main_cont {
        padding: 0px;
    }
    .wizard_left .main_cont .sub_tit {
        height: 36px;
        line-height: 36px;
        width: 180px;
        margin: 0 auto 10px auto;
        font-size: 18px;
    }
}



@media screen and (max-width:767px) {
  .wizard_left .main_bg {

    height: auto;

  }

  .wizard_left .main_cont .main_tit {
    font-size: 2.8em;
    padding: 5px 5px;
  }
}





@media screen and (max-width:500px) {
    .wizard_left {
        padding: 15px 0 10px 0;
    }
    .wizard_left .main_cont .main_tit {
        font-size: 2.5em;
        padding: 5px 5px;
    }

    .wizard_left .main_cont .main_tit h1 {
      font-size: 30px;
    }
    .wizard_left .main_bg .car_right {
        width: 80%;
        max-width: 220px;
        padding-top: 0px;
    }
    .wizard_left .main_cont .sub_tit {
        height: 24px;
        line-height: 25px;
        width: 130px;
        margin: 0 auto 5px auto;
        font-size: 14px;
    }

    .wizard_left .main_cont p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}




#top-wizard {
  padding-bottom: 20px;
  padding-top: 30px;
}


#top-wizard #progressbar {
  background: linear-gradient(to right, #ff9a7c, #ffb369);
  height: 4px;
  width: 0px;
}


#middle-wizard {
  padding-top: 30px;
  display: flex;
  gap: 5px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  flex-direction: column;
}

#middle-wizard .step_box {
  margin: 0 auto; 
  border-radius: 50px;
  background-color: #1d7c9A;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  width: 120px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  margin-bottom: 20px;
  text-align: center;
}

#bottom-wizard {
  padding-top: 30px;
  display: flex;
  gap: 5px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}



@media (max-width: 991px) {
  #middle-wizard {
    min-height: inherit;
  }
}


@media (max-width: 767px) {
  #top-wizard {
    padding-bottom: 5px;
    padding-top: 10px;
  }

  #middle-wizard {
    padding-top: 10px;
  }



  #middle-wizard .step_box {
    font-size: 14px;
    width: 90px;
    height: 28px;
    line-height: 28px;
  }

  #bottom-wizard {
    padding-top: 10px;
  }


}



#social ul {
  float: right;
  margin: 0;
  padding: 0;
}
#social ul li {
  float: left;
  margin: 10px 15px 0 0;
  list-style: none;
}
#social ul li a {
  color: #fff;
  opacity: 1;
  text-align: center;
  line-height: 35px;
  display: block;
  font-size: 17px;
  font-size: 1.0625rem;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#social ul li a:hover {
  opacity: 0.8;
}
#social ul li:last-child {
  margin-right: 0;
}

/*============================================================================================*/
/* 2.  CONTENT */
/*============================================================================================*/
/*-------- 2.1 Wizard --------*/
.main_title_1 {
  color: #fff;
}

.main_title_1 small {
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  display: block;
  font-weight: 500;
  letter-spacing: 3px;
}

.main_title_1 h1, .main_title_1 h3 {
  color: #fff;
  margin: 0 0 25px 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 62px;
  font-size: 3.875rem;
}

.main_title_1 p {
  font-size: 18px;
  font-size: 1.125rem;
}


.main_title_1 p em {
  font-family: 'Caveat', cursive;
  font-style: normal;
  font-size: 30px;
  font-size: 1.875rem;
}


h3.main_question {
  margin: 0 0 25px 0;
  padding: 0;
  font-weight: 500;
  font-size: 2.8rem;
  display: inline-block;
}
h3.main_question strong {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  opacity: 0.5;
}




@media (max-width: 991px) {
  .main_title_1 img {
    display: none;
  }
}


@media (max-width: 767px) {

  .main_title_1 {
    text-align: center;
  }


  .main_title_1 h1, .main_title_1 h3 {
    font-size: 42px;
    margin-bottom: 20px;
  }


  .main_title_1 p {
    font-size: 16px;
    margin-bottom: 15px;
  }

  h3.main_question {
    font-size: 1.5rem;
    margin: 0 0 10px 0;
  }


}



/* Wizard Buttons*/
button.backward,
button.forward,
button.submit {
  border: none;
  color: #ededed;
  text-decoration: none;
  transition: background .5s ease;
  -moz-transition: background .5s ease;
  -webkit-transition: background .5s ease;
  -o-transition: background .5s ease;
  display: inline-block;
  cursor: pointer;
  outline: none;
  text-align: center;
  background: #1d7c9A;
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  line-height: 1;
  padding: 12px 30px;
}

button.backward {
  color: #777;
  background: #e8e8e8;
}

button[disabled] {
  display: none;
}

.backward:hover,
.forward:hover,
button.submit:hover {
  background: #d32f2f;
  color:#ededed;
}



.ui-widget-content {
  background-color: transparent;
}

.ui-widget-content a {
  color: #222222;
}

.ui-widget-header {
  background: #6C3;
}

.ui-widget-header a {
  color: #222222;
}

.ui-progressbar {
  height: 2px;
  width: 100%;
}

.ui-progressbar .ui-progressbar-value {
  height: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.summary ul {
  margin: 0;
  padding: 0;
}
.summary ul li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  padding-left: 45px;
  margin-bottom: 25px;
}
.summary ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.summary ul li strong {
  display: block;
  line-height: 26px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  border: 2px solid #ddd;
}
.summary ul li h5 {
  padding-top: 6px;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
}
.summary ul li ul {
  margin: 20px 0 25px 0;
  padding: 0;
}
.summary ul li ul li {
  margin: 0;
  padding: 0;
  border-bottom: 0;
}
.summary label {
  font-weight: 500;
}

/*-------- 2.2 Success submit --------*/
#success {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 190px;
  margin-top: -85px;
  margin-left: -150px;
  text-align: center;
  color: #444;
}
#success h4 {
  font-weight: 400;
  margin: 20px 0 0 0;
  color: #222;
  font-size: 18px;
  font-size: 1.125rem;
}
#success h4 span {
  display: block;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 21px;
  font-size: 1.3125rem;
}

@-webkit-keyframes checkmark {
  0% {
    stroke-dashoffset: 50px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-ms-keyframes checkmark {
  0% {
    stroke-dashoffset: 50px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes checkmark {
  0% {
    stroke-dashoffset: 50px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 240px;
  }
  100% {
    stroke-dashoffset: 480px;
  }
}
@-ms-keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 240px;
  }
  100% {
    stroke-dashoffset: 480px;
  }
}
@keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 240px;
  }
  100% {
    stroke-dashoffset: 480px;
  }
}
.inlinesvg .svg svg {
  display: inline;
}

.icon--order-success svg path {
  -webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
  animation: checkmark 0.25s ease-in-out 0.7s backwards;
}

.icon--order-success svg circle {
  -webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
  animation: checkmark-circle 0.6s ease-in-out backwards;
}

/*============================================================================================*/
/* 3.  COMMON */
/*============================================================================================*/
/*-------- 3.1 Misc --------*/
.modal-content {
  border: none;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 10px;
}

.form-group {
  position: relative;
}
.form-group.terms {
  padding: 12px 0 0 0;
}
.form-group.terms label {
  line-height: 1.5;
}
.form-group i {
  font-size: 18px;
  font-size: 1.125rem;
  position: absolute;
  right: 5px;
  top: 11px;
  color: #ccc;
  width: 25px;
  height: 25px;
  display: block;
  font-weight: 400 !important;
}

span.error {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 12px;
  position: absolute;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  top: -20px;
  right: -15px;
  z-index: 2;
  height: 25px;
  line-height: 1;
  background-color: #ff0066;
  color: #fff;
  font-weight: normal;
  display: inline-block;
  padding: 6px 8px;
  font-weight: 500;
}
span.error:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 0 6px 6px 0;
  border-color: transparent #ff0066;
  display: block;
  width: 0;
  z-index: 1;
  bottom: -6px;
  left: 20%;
}

.radio_input .error {
  left: -15px;
  top: -30px;
  right: inherit;
}

.terms span.error {
  top: -30px;
  left: -15px;
  right: inherit;
}

.form-control {
  border: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  height: calc(7rem + 2px);
  color: #333;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.4);
}
.form-control:focus {
  box-shadow: none;
  border: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
}


.form-control-2 {
  border: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  height: calc(7rem + 2px);
  color: #fff;
  font-weight: 500;
  background-color: rgba(1, 1, 1, 0.1);
}


select.form-control-2 {
  background-color: rgba(1, 1, 1, 0.1);
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 10px;
}


select.form-control-2 option {
  background-color: #1d7c9A;
  color: #fff;
}

.review_message {
  height: 250px !important;
}
@media (max-width: 767px) {
  .review_message {
    height: 200px !important;
  }

  .form-control {
    height: calc(5rem + 2px);
  }



}

.checkbox_radio_container {
  margin-bottom: 10px;
  position: relative;
}
.checkbox_radio_container input[type="checkbox"] {
  display: none;
}
.checkbox_radio_container input[type="radio"] {
  display: none;
}
.checkbox_radio_container label {
  cursor: pointer;
}

.checkbox_radio_container .radio,
.checkbox_radio_container .checkbox {
  display: inline-block;
  width: 25px;
  height: 25px;
  padding: 5px;
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  z-index: 9;
  left: 8px;
  top: 7px;
}
.checkbox_radio_container .radio:after,
.checkbox_radio_container .checkbox:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 3px;
  background: #4ccd6a;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  transform: translate(4px, 11px) rotate(-45deg);
  transform-origin: left;
  transition: all 150ms;
  transition-delay: 0ms;
}
.checkbox_radio_container .radio:before,
.checkbox_radio_container .checkbox:before {
  content: "";
  position: absolute;
  width: 0px;
  height: 3px;
  background: #4ccd6a;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  transform: translate(1px, 6px) rotate(45deg);
  transform-origin: left;
  transition: all 150ms;
  transition-delay: 150ms;
}
.checkbox_radio_container .checkbox {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
.checkbox_radio_container .wrapper {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.4);
  /* OPACITY AND COLOR OF THE RADIO AND CHECKBOX*/
  position: relative;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  padding: 10px 10px 10px 44px;
  font-weight: 500;
  cursor: pointer;
}

.checkbox_radio_container input[type="checkbox"]:checked ~ .checkbox:before, .checkbox_radio_container input[type="checkbox"]:checked ~ .radio:before, .checkbox_radio_container input[type="radio"]:checked ~ .checkbox:before, .checkbox_radio_container input[type="radio"]:checked ~ .radio:before {
  width: 7px;
  transition-delay: 0ms;
}
.checkbox_radio_container input[type="checkbox"]:checked ~ .checkbox:after, .checkbox_radio_container input[type="checkbox"]:checked ~ .radio:after, .checkbox_radio_container input[type="radio"]:checked ~ .checkbox:after, .checkbox_radio_container input[type="radio"]:checked ~ .radio:after {
  width: 13px;
  transition-delay: 150ms;
}
.checkbox_radio_container input[type="checkbox"]:checked ~ .wrapper, .checkbox_radio_container input[type="radio"]:checked ~ .wrapper {
  transition: all 450ms;
  background-color: #4ccd6a;
  color: #fff;
}

/* Checkbox style */
.container_check {
  display: block;
  position: relative;
  font-size: 14px;
  font-size: 1.5rem;
  padding-left: 30px;
  line-height: 1.4;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: left;
}
.container_check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.container_check input:checked ~ .checkmark {
  background-color: #fff;
}
.container_check .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: none;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.container_check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #111;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.container_check input:checked ~ .checkmark:after {
  display: block;
}

/* Radio buttons */
.container_radio {
  display: block;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  padding-left: 30px;
  line-height: 1.3;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.container_radio input {
  position: absolute;
  opacity: 0;
}
.container_radio input:checked ~ .checkmark:after {
  opacity: 1;
}
.container_radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 50%;
}
.container_radio .checkmark:after {
  display: block;
  content: "";
  position: absolute;
  opacity: 0;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.radio_input .container_radio {
  display: inline-block;
  margin: 15px 0 0 12px;
}

.review_block p {
  margin-bottom: 20px;
  font-weight: 500;
}
.review_block ul {
  padding: 0;
  margin: 0 0 20px 0;
}
.review_block ul li {
  display: block;
  margin: 0 0 5px 0;
}
.review_block ul li.last-child {
  margin-right: 0;
}

.review_block_smiles ul, .review_block_numbers ul {
  padding: 0;
  margin: 0 -3px;
  list-style-type: none;
  display: flex;
  justify-content: center;
}
.review_block_smiles ul li, .review_block_numbers ul li {
  display: list-item;
  margin: 0 3px;
  width: 100%;
}

.container_smile {
  margin-bottom: 5px;
  position: relative;
}
.container_smile input[type="radio"] {
  display: none;
}
.container_smile label {
  cursor: pointer;
}
.container_smile .radio {
  position: relative;
  background: #dedede;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 25px;
  display: block;
  text-align: center;
  transition: all 3ms;
  border: 0px;
}
@media (max-width: 575px) {
  .container_smile .radio {
    padding: 10px;
  }
}
.container_smile .radio:after {
  font-family: 'smiles';
  font-size: 42px;
  font-size: 2.625rem;
}
@media (max-width: 1199px) {
  .container_smile .radio:after {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media (max-width: 575px) {
  .container_smile .radio:after {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.container_smile .radio span {
  display: none;
}
.container_smile .radio.smile_1:after {
  content: '\0041';
}
.container_smile .radio.smile_2:after {
  content: '\0042';
}
.container_smile .radio.smile_3:after {
  content: '\0043';
}
.container_smile .radio.smile_4:after {
  content: '\0044';
}
.container_smile .radio.smile_5:after {
  content: '\0045';
}

.container_smile .radio {
  transition: all 450ms;
}
.container_smile .radio.smile_1:hover {
  background-color: #ff0033;
  color: #fff;
}
.container_smile .radio.smile_2:hover {
  background-color: #ff5f7f;
  color: #fff;
}
.container_smile .radio.smile_3:hover {
  background-color: #94b49b;
  color: #fff;
}
.container_smile .radio.smile_4:hover {
  background-color: #68cd7f;
  color: #fff;
}
.container_smile .radio.smile_5:hover {
  background-color: #4ccd6a;
  color: #fff;
}

.container_smile input[type="radio"]:checked ~ .radio {
  transition: all 450ms;
  color: #fff;
}
.container_smile input[type="radio"]:checked ~ .radio:after {
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  transition: all 0.6s ease;
  display: block;
  transform: rotateY(360deg);
}
.container_smile input[type="radio"]:checked ~ .radio.smile_1 {
  background-color: #ff0033;
}
.container_smile input[type="radio"]:checked ~ .radio.smile_2 {
  background-color: #ff5f7f;
}
.container_smile input[type="radio"]:checked ~ .radio.smile_3 {
  background-color: #94b49b;
}
.container_smile input[type="radio"]:checked ~ .radio.smile_4 {
  background-color: #68cd7f;
}
.container_smile input[type="radio"]:checked ~ .radio.smile_5 {
  background-color: #4ccd6a;
}

.container_numbers {
  margin-bottom: 5px;
  position: relative;
}
.container_numbers input[type="radio"] {
  display: none;
}
.container_numbers label {
  cursor: pointer;
}
.container_numbers .radio {
  position: relative;
  background-color: rgba(0, 0, 0, 0.4);
  /* OPACITY AND COLOR */
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 15px;
  display: block;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media (max-width: 575px) {
  .container_numbers .radio {
    padding: 10px;
  }
}

.container_numbers input[type="radio"]:checked ~ .radio {
  transition: all 450ms;
  color: #fff;
}
.container_numbers input[type="radio"]:checked ~ .radio.very_bad {
  background-color: #ff0033;
}
.container_numbers input[type="radio"]:checked ~ .radio.bad {
  background-color: #ff5f7f;
}
.container_numbers input[type="radio"]:checked ~ .radio.average {
  background-color: #94b49b;
}
.container_numbers input[type="radio"]:checked ~ .radio.good {
  background-color: #68cd7f;
}
.container_numbers input[type="radio"]:checked ~ .radio.very_good {
  background-color: #4ccd6a;
}

/*-------- 3.2 Spacing --------*/
.add_bottom_10 {
  margin-bottom: 10px;
}

.add_bottom_15 {
  margin-bottom: 15px;
}

.add_bottom_25 {
  margin-bottom: 25px;
}

.add_bottom_30 {
  margin-bottom: 30px;
}

.add_bottom_45 {
  margin-bottom: 45px;
}

.add_bottom_60 {
  margin-bottom: 60px;
}

.add_bottom_75 {
  margin-bottom: 75px;
}

.add_top_10 {
  margin-top: 10px;
}

.add_top_15 {
  margin-top: 15px;
}

.add_top_20 {
  margin-top: 20px;
}

.add_top_30 {
  margin-top: 30px;
}

.add_top_60 {
  margin-top: 60px;
}

.more_padding_left {
  padding-left: 40px;
}

.nomargin_top {
  margin-top: 0;
}

.nopadding {
  margin: 0 !important;
  padding: 0 !important;
}

.nomargin {
  margin: 0 !important;
}

.margin_30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.margin_60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.margin_60_35 {
  padding-top: 60px;
  padding-bottom: 35px;
}

/*!
 * Float Labels
 * @version: 3.3.9
 * @author: Paul Ryley (http://geminilabs.io)
 * @url: https://pryley.github.io/float-labels.js
 * @license: MIT
 */
.fl-form .fl-wrap {
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fl-form input.fl-input,
.fl-form select.fl-select,
.fl-form textarea.fl-textarea {
  width: 100%;
  outline: 0;
  font-size: 1.65rem;
  line-height: 1.4;
  border-radius: 3px;
  border: 1px solid none;
  background-color: rgba(1, 1, 1, 0.1);
  box-sizing: border-box;
  transition: all 0.5s ease-in-out;
  margin-bottom: 0;
}
.fl-form input.fl-input:-moz-placeholder,
.fl-form select.fl-select:-moz-placeholder,
.fl-form textarea.fl-textarea:-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.fl-form input.fl-input::-moz-placeholder,
.fl-form select.fl-select::-moz-placeholder,
.fl-form textarea.fl-textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.fl-form input.fl-input:-ms-input-placeholder,
.fl-form select.fl-select:-ms-input-placeholder,
.fl-form textarea.fl-textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  color: #FFF !important;
}
.fl-form input.fl-input::-webkit-input-placeholder,
.fl-form select.fl-select::-webkit-input-placeholder,
.fl-form textarea.fl-textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.fl-form select.fl-select {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.fl-form select.fl-select::-ms-expand {
  display: none;
}

.fl-form .fl-is-active input.fl-input,
.fl-form .fl-is-active select.fl-select,
.fl-form .fl-is-active textarea.fl-textarea {
  color: #fff;
  background-color: rgba(154, 154, 124, 0.4);
  border-color: none;
}

.fl-form .fl-has-focus input.fl-input,
.fl-form .fl-has-focus select.fl-select,
.fl-form .fl-has-focus textarea.fl-textarea {
  background-color: rgba(154, 154, 124, 0.4);
  border-color: none;
}

.fl-form label.fl-label {
  opacity: 0;
  visibility: hidden;
  display: block;
  position: absolute;
  top: -11px;
  left: 0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  border-top-left-radius: 3px;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

body[dir=rtl] .fl-form label.fl-label {
  left: unset;
  right: 0;
}

.fl-form .fl-is-active label.fl-label {
  opacity: 1;
  visibility: visible;
}

.fl-form .fl-has-focus label.fl-label {
  color: #333;
}

.fl-form .fl-is-required:before {
  opacity: 1;
  content: '';
  display: block;
  position: absolute;
  top: 1px;
  right: 18px;
  font-size: 14px;
  line-height: 1.75;
  color: #fff;
  transition: all 0.5s ease-in-out;
  padding: 8px 0 0;
  z-index: 1;
}

body[dir=rtl] .fl-form .fl-is-required:before {
  right: unset;
  left: 18px;
}

.fl-form .fl-is-required.fl-is-active:before {
  opacity: 0;
}

.fl-form.fl-style-1 input.fl-input,
.fl-form.fl-style-1 select.fl-select,
.fl-form.fl-style-1 textarea.fl-textarea {
  padding: 8px 16px;
}
.fl-form.fl-style-1 select.fl-select {
  height: 46px;
}
.fl-form.fl-style-1 .fl-is-active input.fl-input,
.fl-form.fl-style-1 .fl-is-active select.fl-select,
.fl-form.fl-style-1 .fl-is-active textarea.fl-textarea {
  padding: 8px 16px;
}
.fl-form.fl-style-1 label.fl-label {
  top: 1px;
  left: 13px;
  background-color: transparent;
  padding: 16px 4px;
}
.fl-form.fl-style-1 label.fl-label:before {
  content: '';
  display: block;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.fl-form.fl-style-1 .fl-is-active label.fl-label {
  top: -10px;
  padding: 4px;
}
.fl-form.fl-style-1 .fl-is-active label.fl-label:before {
  top: 10px;
}

body[dir=rtl] .fl-form.fl-style-1 label.fl-label {
  left: unset;
  right: 13px;
}

.fl-form.fl-style-2 input.fl-input,
.fl-form.fl-style-2 select.fl-select,
.fl-form.fl-style-2 textarea.fl-textarea {
  padding: 16px;
}
.fl-form.fl-style-2 select.fl-select {
  height: 62px;
}
.fl-form.fl-style-2 .fl-is-active input.fl-input,
.fl-form.fl-style-2 .fl-is-active select.fl-select,
.fl-form.fl-style-2 .fl-is-active textarea.fl-textarea {
  padding: 24px 16px 8px;
}
.fl-form.fl-style-2 label.fl-label {
  top: 1px;
  left: 9.8px;
  padding: 8px 4px 4px;
}
.fl-form.fl-style-2 .fl-is-required:before {
  padding-top: 16px;
}

body[dir=rtl] .fl-form.fl-style-2 label.fl-label {
  left: unset;
  right: 13px;
}

.fl-form .fl-wrap-select:after {
  content: '';
  position: absolute;
  display: block;
  top: 1px;
  right: 6px;
  height: calc(100% - 2px);
  width: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 16'%3E%3Cpath fill='rgba(255, 255, 255, 0.8)' d='M 4 0 L 0 6.5 L 8 6.5 L 4 0 z M 0 9.5 L 4 16 L 4 16 L 8 9.5 z'/%3E%3C/svg%3E") no-repeat;
  background-position: 100% 50%;
  background-size: 7px 14px;
  z-index: 2;
}

body[dir=rtl] .fl-form .fl-wrap-select:after {
  right: unset;
  left: 6px;
}




@media screen and (max-width:767px) {
  .fl-form.fl-style-2 label.fl-label {
    top: 1px;
    left: 9.8px;
    padding: 0px 4px 2px;
  }
}




/*============================================================================================*/
/* 추가
/*============================================================================================*/

.wizard_left {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.wizard_left .main_cont{
  z-index: 2;
}


img.sky_bg{
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  z-index: 1;
}


.container_smile {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container_smile input[type="radio"] {
  display: none;
}

.container_smile label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, filter 0.3s ease-in-out;
  background-color: #f8f9fa;
  padding: 10px;
}

.container_smile label img {
  width: 60px;
  height: 60px;
  transition: filter 0.3s ease-in-out;
}

.container_smile label p {
  margin-top: 8px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease-in-out;
}

.container_smile label:hover {
  background-color: #ffb369;
}


.container_smile label:hover img {
  filter: brightness(1) invert(0);
}

.container_smile input[type="radio"]:checked + label {
  background-color: #ffb369;
}


.container_smile input[type="radio"]:checked + label img {
  filter: brightness(1) invert(0);
}

.container_smile input[type="radio"]:checked + label p,
.container_smile label:hover p {
  color: #222;
}


.request-form{

  display: flex;
  flex-direction: column;
  color: #fff;
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
}

.request-form label{
  color: #fff;
}

.style_3 h1 {
  font-size: 3rem;
  color: #fff;
  font-family: "notokr-bold";
  margin-bottom: 30px;
  margin-top: 35px;
  }


.style_3 {
  font-family: Arial, sans-serif;
  margin: 40px auto;
  max-width: 600px;
}
.style_3 label {
  display: block;
  margin: 15px 0 5px;
}
.style_3 input[type="text"], select, textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}
.style_3 .radio-group {
  margin: 10px 0;
}
.style_3 .radio-group label {
  display: inline-block;
  margin-right: 15px;
}
.style_3 .checkbox-group {
  margin: 15px 0;
}
.style_3 button {
  padding: 10px 20px;
  cursor: pointer;
}
.style_3 .btn-submit {
  background-color: rgba(0, 0, 0, 0.4); 
  color: #fff;
  border-radius: 4px;
  padding: 15px 20px;
}



.style_3 .fl-form.fl-style-2 .fl-is-active input.fl-input,
.style_3 .fl-form.fl-style-2 .fl-is-active select.fl-select,
.style_3 .fl-form.fl-style-2 .fl-is-active textarea.fl-textarea {
  padding: 34px 16px 8px;
}





.fl-form.fl-style-2 textarea.fl-textarea{
  height: 150px;
}



@media screen and (max-width:900px) {

  .container_smile label {
    width: 130px;
    height: 130px;
  }

  .container_smile label img {
    width: 40px;
    height: 40px;
  }

  .container_smile label p {
    font-size: 1.3rem;
  }
}



@media screen and (max-width:800px) {

}



@media screen and (max-width:767px) {

  .style_3 h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    margin-top: 10px;
  }


  .container_smile label {
    width: 80px;
    height: 80px;
  }

  .container_smile label img {
    width: 35px;
    height: 35px;
  }


  .style_3 .fl-form.fl-style-2 .fl-is-active input.fl-input{
    height: 70px;
  }

}


