/* 폼예제 css */
    .re_input {
        width: 100%;
        height: 40px;
        border: 0px;
        border-radius: 4px;
        background-color: #f3f3f3;
        padding-left: 10px;
        line-height: 40px;
        color: #666 !important;
        font-size: 12px;
    }

    .re_input::placeholder {
        color: #999 !important;
        font-size: 12px;
    }

    .re_input2 {
        width: 97%;
        height: 150px;
        border: 0px;
        border-radius: 4px;
        background-color: #f3f3f3;
        padding: 10px;
        color: #666 !important;
        font-size: 12px;
    }

    .re_input2::placeholder {
        color: #999 !important;
        font-size: 12px;
    }

    .re_div {
        margin-top: 20px
    }

    .re_div2 {
        margin-top: 10px
    }

    .re_div3 {
        margin-top: 40px;
        color: #999;
        text-align: left;
    }

    .re_input3 {
        display: block;
        border: 0px;
        border-radius: 4px;
        background-color: #FFCC00;
        line-height: 40px;
        color: #000 !important;
        font-size: 14px;
        text-align: center;
        cursor: pointer;
    }

    .re_div3 h1 {
        font-size: 22px;
        letter-spacing: -1px;
        color: #333;
    }

    .re_div3 span {
        color: #333
    }

    .radio {
	      display: inline-flex;
		  overflow: hidden;
		  border-radius: 15px;
		  box-shadow: 0 0 5px rgba(0,0,0,0.25);
		  }
      .radio__input {
          display: none;
	  }
       .radio__label {
          padding: 8px 14px;
		  font-size: 14px;
		  font-family: sans-serif;
		  color: #ffffff;
		  background: #009578;
		  cursor : pointer;
		  transition: background 0.1s;
	  }

	  .radio__label:not(:last-of-type){
		  border-right: 1px solid #006B56;
	  }

	  .radio__input:checked + .radio__label {
	       background: #08ceb0;
		   color: #000;

	  }

	  .