
.split-form{
    position: relative;
    width:100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-left: 1px;
  }
  
  .form-wrapper{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 50px;
  }
  
  .form-title{
    text-align: center;
    color: rgb(154,188,22);
    font-size: 35pt;
    font-weight: lighter;
    letter-spacing: 1pt;
  }
  
  .form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80%;
  background-color: #fff;
  padding: 50px;
  border-radius: 10px;
  position: relative;
  }
  
  .message {
  color: rgba(88, 87, 87, 0.822);
  font-size: 14px;
  }
  
  .flex {
  display: flex;
  width: 100%;
  gap: 6px;
  }
  
  .form label {
  position: relative;
  }
  
  .form label .input {
  width: 100%;
  padding: 10px 10px 20px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 5px;
  }
  
  .form label .input + span {
  position: absolute;
  left: 10px;
  top: 15px;
  color: grey;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
  }
  
  .form label .input:placeholder-shown + span {
  top: 15px;
  font-size: 0.9em;
  }
  
  .form label .input:focus + span,.form label .input:valid + span {
  top: 35px;
  font-size: 0.7em;
  font-weight: 600;
  }
  
  .form label .input:valid + span {
  color: rgb(154,188,22);
  }
  
  .input01 {
  width: 100%;
  padding: 10px 10px 20px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 5px;
  }
  
  .form label .input01 + span {
  position: absolute;
  left: 10px;
  top: 50px;
  color: grey;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
  }
  
  .form label .input01:placeholder-shown + span {
  top: 40px;
  font-size: 0.9em;
  }
  
  .form label .input01:focus + span,.form label .input01:valid + span {
  top: 75%;
  font-size: 0.7em;
  font-weight: 600;
  }
  
  .form label .input01:valid + span {
  color: rgb(154,188,22);
  }
  
  .input02 {
  width: 100%;
  padding: 10px 10px 20px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 5px;
  }
  
  .form label .input02 + span {
  position: absolute;
  left: 10px;
  top: 30px;
  color: grey;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
  }
  
  .form label .input02:placeholder-shown + span {
  top: 40px;
  font-size: 0.9em;
  }
  
  .form label .input02:focus + span,.form label .input01:valid + span {
  top: 75%;
  font-size: 0.7em;
  font-weight: 600;
  }
  
  .form label .input02:valid + span {
  color: rgb(154,188,22);
  }
  
  .fancy {
  background-color: rgb(154,188,22);
  border: 2px solid #cacaca;
  border-radius: 0px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: 390;
  letter-spacing: 2px;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 8px 30px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transition: all 0.3s ease-in-out;
  user-select: none;
  font-size: 13px;
  }
  
  .fancy::before {
  content: " ";
  width: 1.7rem;
  height: 2px;
  background: #cacaca;
  top: 50%;
  left: 1.5em;
  position: absolute;
  transform: translateY(-50%);
  transform: translateX(230%);
  transform-origin: center;
  transition: background 0.3s linear, width 0.3s linear;
  }
  
  .fancy .text {
  font-size: 15pt;
  line-height: 1.33333em;
  padding-left: 2em;
  display: block;
  text-align: left;
  transition: all 0.3s ease-in-out;
  text-transform: lowercase;
  text-decoration: none;
  color: #ffffff;
  transform: translateX(30%);
  margin-left: 20%;
  }
  
  .fancy .top-key {
  height: 2px;
  width: 1.5625rem;
  top: -2px;
  left: 0.625rem;
  position: absolute;
  background: white;
  transition: width 0.5s ease-out, left 0.3s ease-out;
  }
  
  .fancy .bottom-key-1 {
  height: 2px;
  width: 1.5625rem;
  right: 1.875rem;
  bottom: -2px;
  position: absolute;
  background: white;
  transition: width 0.5s ease-out, right 0.3s ease-out;
  }
  
  .fancy .bottom-key-2 {
  height: 2px;
  width: 0.625rem;
  right: 0.625rem;
  bottom: -2px;
  position: absolute;
  background: white;
  transition: width 0.5s ease-out, right 0.3s ease-out;
  }
  
  .fancy:hover {
  color: white;
  background: #38741c;
  }
  
  .fancy:hover::before {
  width: 1.5rem;
  background: white;
  }
  
  .fancy:hover .text {
  color: white;
  padding-left: 1.5em;
  }
  
  .fancy:hover .top-key {
  left: -2px;
  width: 0px;
  }
  
  .fancy:hover .bottom-key-1,
  .fancy:hover .bottom-key-2 {
  right: 0;
  width: 0;
  }
  
  .preview{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 2px solid rgba(105, 105, 105, 0.397);
  }
  
  .custum-file-upload {
  height: 200px;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: space-between;
  gap: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(105, 105, 105, 0.397);
  background-color: rgba(255, 255, 255, 1);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0px 48px 35px -48px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  }
  
  .custum-file-upload .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  }
  
  .custum-file-upload .icon svg {
  margin-top: 50px;
  height: 50px;
  fill: #818181;
  }
  
  .custum-file-upload .text {
  display: flex;
  align-items: center;
  justify-content: center;
  }
  
  .custum-file-upload .text span {
  font-weight: 400;
  color: rgba(75, 85, 99, 1);
  }
  
  .custum-file-upload input {
  display: none;
  }
  
  /*  */
  
  .modal-wrapper{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000b8;
    z-index: 1000;
  }
  
  .restaurant-thmb{
    width: 150px;
    height: 200px;
    object-fit: cover;
  }
  .restaurant-img{
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #266200;
  }
  .table-card{
    width: 100%;
    background-image: linear-gradient(#EEE, #ffffff,#eeeeee,#EEE);
    border: 2px solid #cecece;
    border-radius: 20px;
  }
  .btn-theme{
    background: rgb(154, 188, 22);
    color: #fff;
  }
  .btn-theme:hover{
    background: #38741c;
    color: #fff;
  }
  .restaurant-table-wrapper{
    margin-top: 50px;
  }
  
  .restaurant-wrapper{
    position: relative;
    top: .5vh;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 90%;
    display: flex;
  }
  
  .slider-wrapper{
    position: relative;
    width: 100%;
    padding-left: 50px;
  }
  
  .restaurant-card {
  --main-color: #fff;
  --sub-color: #5b5b5b;
  --bg-color: rgb(154, 188, 22);
  --accent-color: #242C88;
  position: relative;
  display: flex;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  width: 270px;
  height: 370px;
  padding: 25px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-color);
  transition: all 0.2s;
  cursor: pointer;
  box-shadow: 0px 0px 5px -1.5px #000;
  margin: 20px 20px;
  }
  
  .restaurant-card::before {
  content: '';
  width: 99%;
  height: 99%;
  background: var(--sub-color);
  position: absolute;
  z-index: -1;
  top: 1px;
  left: 1px;
  border-radius: 25px;
  transition: all 0.3s;
  }
  
  .card__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  }
  
  .card__img {
  width: 100%;
  }
  
  .card__title {
  color: var(--main-color);
  font-weight: 900;
  font-size: 20px;
  }
  
  .card__subtitle {
  color: var(--sub-color);
  font-weight: 600;
  font-size: 20px;
  }
  
  .card__icon {
  width: 40px;
  height: 40px;
  transform: rotate(-45deg);
  transition: all 0.3s;
  }
  
  .card__icon svg {
  width: 100%;
  height: 100%;
  }
  
  .card__icon g {
  fill: var(--main-color);
  }
  
  .card__icon circle, polyline, line {
  stroke: var(--main-color);
  }
  
  .card:hover .card__icon {
  transform: rotate(0);
  }
  
  .card:hover .card__icon circle, .card:hover .card__icon polyline, .card:hover .card__icon line {
  stroke: var(--accent-color);
  }
  
  .card:hover .card__icon g {
  fill: var(--accent-color);
  }
  
  .card:hover {
  box-shadow: 0px 0px 20px -5px #000;
  }
  
  .card:hover::before {
  transform: rotate(10deg);
  box-shadow: 0px 0px 20px -5px #000;
  }
  
  /* remove svg from class ="card__img" and last styles below css code before use */
  .st1 {
  fill: #fff
  }
  
  .st2 {
  fill: none;
  stroke: #242c88;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10
  }
  
  .st7 {
  fill: #589fff
  }
  
  .st9 {
  fill: #bc8d66
  }
  
  .st15,.st16 {
  opacity: .4;
  fill: #242c88
  }
  
  .st16 {
  opacity: .2
  }
  
  .st18 {
  fill: #ffc408
  }
  
  .st53 {
  fill: none;
  stroke: #242c88;
  stroke-width: 1.848;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10
  }
  
  .nav-selector {
  position: relative;
  left: 20px;
  display: flex;
  flex-wrap: wrap;
  border-radius: 0.5rem;
  background-color: #EEE;
  box-sizing: border-box;
  box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.06);
  padding: 0.25rem;
  width: 300px;
  font-size: 14px;
  margin-bottom: -40px;
  }
  
  .nav-selector .radio {
  flex: 1 1 auto;
  text-align: center;
  }
  
  .nav-selector .radio input {
  display: none;
  }
  
  .nav-selector .radio .name {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: none;
  padding: .5rem 0;
  color: rgba(51, 65, 85, 1);
  transition: all .15s ease-in-out;
  }
  
  .nav-selector .radio input:checked + .name {
  background-color: #fff;
  font-weight: 600;
  }

  .content-wrapper{
    padding-bottom: 50px;
  }

  .title-text{
      font-size: 30pt;
      font-weight: bolder;
      margin-bottom: 30px;
      margin-left: 20px
  }
  
  .theme-btn{
    background: #38741c;
    line-height: 42px;
    padding-left: 30px;
    padding-right: 30px;
    -webkit-clip-path: polygon(0 0,0 0,100% 0,100% 0,100% calc(100% - 15px),calc(100% - 15px) 100%,15px 100%,0 100%);
    clip-path: polygon(0 0,0 0,100% 0,100% 0,100% calc(100% - 15px),calc(100% - 15px) 100%,15px 100%,0 100%);
    border: none;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    position: relative;
  }
  .theme-btn:is(:hover, :active){
    background: #0b2600;
    color: #fff;
    border-radius: 30px;
  }
  /*  */
  