.side-nav-bar {
  display: none;
  height: 100%;
}

.side-nav-bar * {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.side-nav-bar::-webkit-scrollbar {
  display: none;
}

.side-nav-bar-overlay {
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  opacity: 0;

  transition: opacity 0.3s;
  will-change: opacity;
  background-color: #000;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.side-nav-bar-header {
  /* Optional */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

.side-nav-bar-icon {
  /* Optional */
  margin-top: 20px;
  margin-right: 20px;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.side-nav-bar-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 200;
  overflow: auto;

  transition: transform 0.3s;
  will-change: transform;
  background-color: #fff;

  display: flex;
  flex-direction: column;

  -webkit-transform: translate3d(103%, 0, 0);
  transform: translate3d(103%, 0, 0);
  /* extra 3% because of box-shadow */

  -webkit-overflow-scrolling: touch;
  /* enables momentum scrolling in iOS overflow elements */
}

.side-nav-bar-content {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  flex-grow: 1;
  /* Optional */
  padding: 1.5rem;
  /*height: 800px;*/
}

.side-nav-bar-left .side-nav-bar-wrapper {
  left: 0;
  right: auto;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.side-nav-bar.is-active {
  display: block;
}

.side-nav-bar.is-visible .side-nav-bar-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.side-nav-bar.is-visible .side-nav-bar-overlay {
  opacity: 0.5;
}


/* new css 영역 */
.new-side-nav-bar-container {
  background: #237BC4;
}

.new-side-nav-bar-header {
  /* Optional */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /*padding-bottom: 20px;*/
}

.new-side-nav-bar-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke-width: 1px;
  stroke: #FFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Cpath d='M21 1L1 21M1 1L21 21' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  margin: 20px 20px 0px 0px;
}

.new-side-nav-bar-top-title {
  margin-top: -10px;
  width: 80%;
}

.new-side-nav-bar-top-title>p>span.new-side-nav-bar-top-title-text-1 {
  color: #FFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-align: justify;
  font-family: Pretendard, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding-left: 20px;
}

.new-side-nav-bar-top-title>p>span.new-side-nav-bar-top-title-text-2 {
  color: #FFF;
  text-align: justify;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: Pretendard, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-left: 20px;
}

.new-side-nav-bar-top-title>p>span.new-side-nav-bar-top-title-username {
  color: #FFF;
  text-align: justify;
  font-family: Pretendard, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-left: 20px;
}

.new-side-nav-bar-top-title>p>span.new-side-nav-bar-top-title-welcome {
  color: #FFF;
  text-align: justify;
  font-family: Pretendard, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  /*padding-left: 20px;*/
}

.new-side-nav-bar-top-login {
  padding: 20px 0px 43px 20px;
}

.new-side-bar-login-btn {
  color: #FFF;
  text-align: justify;
  font-family: Pretendard, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.new-side-nav-bar-content {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  flex-grow: 1;
  /* Optional */
  padding: 0rem 1.5rem 1.5rem 1.5rem;
  height: 800px;
}

.new-side-nav-bar-content-body-menu-list {
  padding: 1.5rem 0 0 0;
  /*border-top: 1px solid #545454;*/
}

.new-side-nav-bar-content-body-menu-list>.new-category-title>.new-category-line {
  border-bottom: 1px solid #D9D9D9;
  width: 80%;
}


.new-side-nav-bar-content-body-menu-list>.new-category-title>p {
  color: #000;
  text-align: justify;
  font-family: Pretendard, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 5px;
}

.new-side-nav-bar-content-body-menu-list>.new-category-detail {
  padding: 5px 0;
  /*border-top: 0.5px solid #545454;*/
}

.new-side-nav-bar-content-body-menu-list>.new-category-detail>a {
  color: #000;
  text-align: justify;
  font-family: Pretendard, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.new-side-nav-bar-content-body-menu-list>.new-category-title>.new-link-btn {
  border-radius: 12px;
  background: linear-gradient(96deg, #1370C5 2.74%, #A9D5BF 100%);
  box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

.new-side-nav-bar-content-body-menu-list>.new-category-title>.new-link-btn>.new-link-img>img {
  width: 100%;
  padding: 22px 0px 22px 0px;
}

.new-side-nav-bar-content-body-menu-list>.new-category-title>.new-link-btn>.new-link-text>p>span.new-link-text-1 {
  color: #FFF;
  text-align: justify;
  font-family: Pretendard, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.new-side-nav-bar-content-body-menu-list>.new-category-title>.new-link-btn>.new-link-text>p>span.new-link-text-2 {
  color: #FFF;
  text-align: justify;
  font-family: Pretendard, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.user-service-top-title-menu-list {
  display: flex;
  justify-content: space-evenly;
  align-items:flex-end;
  padding: 30px 0px 30px 0px;
}

.user-service-top-title-menu-list>div {
  display: flex;
  flex-direction: column;
  align-items:center;
}

.user-service-top-title-menu-list>div>p>span {
  color: #FFF;
  text-align: justify;
  font-family: Pretendard, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}


.user-service-top-title-menu {
  display: flex;
  flex-direction: column;
  align-items:center;
}



/**/
.renewal-common-side-nav-bar-icon {
  /* Optional */
  /*margin-top: 20px;*/
  margin-right: 20px;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.renewal-common-side-nav-bar-content {
  padding: 47px 30px 0 30px;
  height: 90vh;
}

.renewal-common-side-nav-bar-sub-content {
  padding: 0 0 20px 0;
}

.renewal-common-side-nav-bar-content>div>p {
  color: #000;
  text-align: justify;
  font-family: Pretendard, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding:0 0 6px 0;
}

.renewal-common-side-nav-bar-content>div>input {
  font-family: Pretendard, sans-serif;
}

.input-default {
  /*width: 100%;*/
  min-height: 36px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 0.5px solid #A3A3A3;
  background: #FFF;
  padding: 6px 15px 6px 15px;
}

.renewal-common-side-nav-bar-sub-content>button {
  border-radius: 4px;
  border: 0.5px solid #35D1D1;
  background: #FFF;

  color: #35D1D1;
  text-align: justify;
  font-family: Pretendard, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.side-nav-bar-no-bgcolor-btn {
  height: 40px;
  flex-shrink: 0;
  /*padding: 10px 17px 10px 17px;*/
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.renewal-common-side-nav-bar-email-content {
  display: flex;
  align-items: center;
}


.renewal-common-side-nav-bar-email-id {
  width: 50%;
  min-height: 36px;
  flex-shrink: 0;
  border-radius: 4px;
  /*border: 0.5px solid #A3A3A3;*/
  background: #FFF;
  display: flex;
}

.renewal-common-side-nav-bar-email-content>span {
  padding:10px;
  color: #000;
  text-align: justify;
  font-family: Pretendard, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}


.renewal-common-side-nav-bar-address-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.renewal-side-nav-bar-address-btn {
  min-height: 36px;
  flex-shrink: 0;
  padding: 10px 17px 10px 17px;
  border-radius: 4px;
  border: 0.5px solid #35D1D1;

  color: #35D1D1;
  text-align: justify;
  font-family: Pretendard, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.renewal-common-side-nav-bar-email-name {
  width: 50%;
  min-height: 36px;
  border-radius: 4px;
  /*border: 0.5px solid #A3A3A3;*/
  background: #FFF;
  display: flex;
}

.email-id-field {
  padding: 0 15px 0 15px;
  border-radius: 4px;
  border: 0.5px solid #A3A3A3;
}

.input-address {
  padding: 0 15px 0 15px;
  width: 90%;
  min-height: 36px;
}



.renewal-phone-number {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between
}

.input-phone-number {
  /*width: 100%;*/
  min-height: 36px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 0.5px solid #A3A3A3;
  background: #FFF;
  padding: 6px 15px 6px 15px;
  text-align: center;
  flex: 1;
  width: 20%;
}


.form-save-btn {
  border-radius: 4px;
  background: #35D1D1;
  box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.04);
  min-height: 40px;
  padding: 10px 20px 10px 20px;

  color: #FFF;
  text-align: justify;
  font-family: Pretendard, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.form-footer-cotainer {
  display: flex;
  justify-content:center;
  padding-bottom: 70px;
}















.layerpop-address-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
}

.layerpop-address-popup {
  position: fixed;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -107%);
  background: #FAFAFA;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: top 0.5s ease-out;
  /*width: 90%;*/
  height: 90%;
  flex-shrink: 0;
}

.layerpop_address_popup_close {
  border-radius: 4px;
  background: #35D1D1;
  box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.04);
  /*padding:10px 20px 10px 20px;*/

  color: #FFF;
  text-align: center;
  font-family: Pretendard, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  min-width: 100px;
  height: 40px;
}

.layerpop_address_popup_close.disabled {
  background: #A3A3A3;
}

.layerpop-address-popup-bottom {
  display: flex;
  justify-content: center;
  padding: 10px;
}



/**/
.layerpop-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.layerpop-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FAFAFA;
  padding: 30px 20px 30px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: top 0.5s ease-out;
}

.layerpop-popup.password {
  width: 300px;
  height: 350px;
}

/*.layerpop-popup.vehicle {*/
/*  width: 300px;*/
/*  height: 380px;*/
/*}*/

.layerpop-popup.join-vehicle {
  /*top: 115%;*/
  width: 300px;
  height: 560px;
}




.layerpop-popup.password>p {
  color: #000;
  text-align: justify;
  font-family: Pretendard, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding-bottom: 6px;
}

.input-password {
  border-radius: 4px;
  border: 0.5px solid #A3A3A3!important;
  background: #FFF;
  min-height: 36px;
  flex-shrink: 0;
  padding: 0 15px 0 15px;
}

.layerpop-password-container {
  padding-bottom: 20px;
}

.layerpop-footer {
  display: flex;
  justify-content: center;
}

.layerpop_password_popup_close {
  border-radius: 4px;
  background: #A3A3A3;
  box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.04);
  padding:10px 20px 10px 20px;
  min-height: 40px;
  min-width: 100px;

  color: #FFF;
  text-align: center;
  font-family: Pretendard, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.layerpop_password_popup_ok {
  border-radius: 4px;
  background: #35D1D1;
  box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.04);
  padding:10px 20px 10px 20px;
  min-height: 40px;
  min-width: 100px;

  color: #FFF;
  text-align: center;
  font-family: Pretendard, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/**/
.modify-vehicle-content {
  display: flex;
  align-items: center;
  /*justify-content: space-between;*/
}


.modify-vehicle-content>button {
  border-radius: 4px;
  border: 0.5px solid #35D1D1;
  background: #FFF;

  color: #35D1D1;
  text-align: justify;
  font-family: Pretendard, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}