/* Default styles for the modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  overflow: hidden;
  padding: 18px;
  box-sizing: border-box;
}

/* Media query for mobile devices */
@media (max-width: 767px) {
  .modal {
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: auto;
  }
}

/* Wrapper for the modal content to enable scrolling */
.modal-content-wrapper {
  max-height: 100%;
  overflow: auto;
  padding-right: 17px; /* Add some padding to compensate for scrollbar width */
}

/* Style for the modal content */
.modal-content {
  background-color: #1C1C1C;
  color: aliceblue;
  max-width: 300px;
  margin: 5px auto;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
}



/* Style for the select element */
.modal-content select {
 width: 90%;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: #343636;
  color: #CCC;
  border: none;
  outline: none;
  padding: 8px;
  font-size: 14px;
}


  
  .modal h2 {
    margin-top: 0;
  }
  
  .modal-buttons {
    margin-top: 20px;
  }
  
  /* Style for the translate button */
  .translate-btn {
    
      z-index: 9999;
      background-color: #262a33;
  color: #CCCCCC;
  padding: 4px;
  border-radius: 8px;
  cursor: pointer;
  width: 40px;
  font-size: 16px;
  }
.translate-btn-pc {
    display: none;
   z-index: 9999;
      background-color: #6996E6;
      color: #fff;
      padding: 4px;
      border-radius: 10px;
      cursor: pointer;
      width: 40px;
}

@media screen and (min-width: 768px) {
    .translate-btn-pc {
        display: block;
    }
}
  
  .translate-icon {
    width: 30px;
    height: 30px;
    margin: 15px;
  }
  button {
    border: none;
  }
  form {
    margin-top: 20px;
        
    max-width: 600px;
    width: 100%;
}

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

.form-control {
    width: 100%;
    padding: 6px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
      height: 70px;
}


textarea.form-control {
    resize: vertical;
      height: 70px;
}
.btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #3e3e3e;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}
.close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover {
    color: #f00; 
    
  }

 .function-table {
        border: none;
        border-collapse: collapse;
        width: 100%;
        border-spacing: 10px; /* Add spacing between rows */
      }
      
      .function-table td {
        padding-left: 10px;
      }
      
     
      


























	   html {
  zoom: 100%;
			 
}
		  body {
      zoom: 1; /* Set the zoom level to 100% */
    }
	
	@keyframes rotate-01 {
		from {
			transform: rotate(0);
		}
		to {
			transform: rotate(360deg);
		}
	}

	@keyframes rotate-02 {
		from {
			transform: rotate(0);
		}
		to {
			transform: rotate(-360deg);
		}
	}

	@keyframes rotate-03 {
		from {
			transform: rotate(0);
		}
		to {
			transform: rotate(360deg);
		}
	}

	@keyframes rotate-04 {
		from {
			transform: rotate(0);
		}
		to {
			transform: rotate(-360deg);
		}
	}

	/* Add more keyframes for each hero-figure-box */

	.hero-figure-box {
		animation-duration: 60s; /* Adjust the duration as per your preference */
		animation-iteration-count: infinite;
		animation-timing-function: linear;
	}

	.hero-figure-box-01 {
		animation-name: rotate-01;
	}

	.hero-figure-box-02 {
		animation-name: rotate-02;
	}

	.hero-figure-box-03 {
		animation-name: rotate-03;
	}

	.hero-figure-box-04 {
		animation-name: rotate-04;
	}

	.hero-figure-box-05 {
		animation-name: rotate-01;
	}

	.hero-figure-box-06 {
		animation-name: rotate-02;
	}

	.hero-figure-box-07 {
		animation-name: rotate-03;
	}

	.hero-figure-box-08 {
		animation-name: rotate-04;
	}

	.hero-figure-box-09 {
		animation-name: rotate-01;
	}

	.hero-figure-box-10 {
		animation-name: rotate-02;
	}

	/* Assign the appropriate animation name to each hero-figure-box */

 @media only screen and (max-width: 767px) {
      .desktop-only {
        display: none;
      }
    }


#loading-screen {
  background-color: #1c1d22;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loading-text {
  color: white;
  font-size: 18px;
  margin-bottom: 10px;
}

#loader-bar {
  width: 200px;
  height: 20px;
  background-color: #fff;
	border-radius: 4px;
  position: relative;
}

#loader-progress {
  width: 0%;
  height: 100%;
background-color: #222222;
  border-radius: 4px;
  position: absolute;
}

#loader-text {
  color: black;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#content {
  animation: fade-in 2s ease-in-out;
}

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




		
	  .subline {
            border-bottom: 1px solid #6996E6;
        }
		
		
		
	@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

		
		.error {
  color: red;
}

		
		
		@keyframes showSuccess {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%);
  }
}

.copy-success {
  
  transform: translateY(-50%);
  animation: showSuccess 1s forwards;
}

		


@media (max-width: 767px) {
  .image-container {
    display: flex;
    justify-content: left;
    align-items: center;
   
  }
}

@media only screen and (max-width: 767px) {
      .hero-paragraph {
        font-size: 16px;
      }
    }
		
		 #qrcode-canvas {
     background-color: #ffffff;
  border-radius: 8px;
  padding: 4px;
  margin: 5px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  width: 180px;
  height: auto;
    }
		
		
		
		
		
		
		
		.phone {
  display: none;
}

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

	.hero-paragraph{
			font-size: 18px
		}
  .phone {
    display: block;
  }
 
}
		
#menu-options {
    background-color: #222325;
    border: 1px solid #141313;
    border-radius: 7px;
    padding: 8px;
 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }


button {
	border-radius: 7px;
}










	
  .filter-select {
                    padding: 5px;
                    border: 1px solid #222222;
                    border-radius: 5px;
                    font-size: 14px;
                    width: 120px;
                    margin-right: 10px;
                  }
                  
                  .filter-input {
                    padding: 5px;
                    border: 1px solid #222222;
                    border-radius: 5px;
                    font-size: 14px;
                    width: 100px;
                    margin-right: 10px;
                  }
                  
                  
                 
                  




                  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');


::selection{
  background-color: #293031; /* Blue/cyan color code */
  color: #fff;
}

input[type="text"] {
  width: 80%;
  max-width: 500px; /* Optional: set a maximum width */
}




.wrapper .search-input{
  background: #333333;
  color: #f5f5f5;
  width: 100%;
  border-radius: 8px;
  position: relative;
  box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.12);
}

.search-input input {
  height: 45px;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 6px;
  padding: 0 60px 0 20px;
  font-size: 20px;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
  background: #2c2d35;
  color: #f5f5f5;
}

.search-input.active input{
  border-radius: 5px 5px 0 0;
}

.search-input .autocom-box{
	overflow: auto;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
}

.search-input.active .autocom-box{
	overflow: auto;
  padding: 10px 8px;
  opacity: 1;
  pointer-events: auto;
background-color: #2c2d35;
}

.autocom-box li{
	overflow: auto;
  list-style: none;
  padding: 8px 7px;
  opacity: 1;
  pointer-events: auto;
  background-color: #2c2d35;
  font-size: 16px;
  display: none;
  width: 100%;
  cursor: default;
  border-radius: 4px;
	font-size: 16px;
}

.search-input.active .autocom-box li{
  display: block;
}
.autocom-box li:hover {
  background: #1c1d22;
}

.search-input .icon{
  position: absolute;
  right: 0px;
  top: 0px;
  height: 45px;
  width: 45px;
  border-radius: 6px;
  line-height: 45px;
  background-color: #2c2d35;
  font-size: 15px;
  color: #f5f5f5;
  cursor: pointer;
}




.bottom-left {
  position: fixed;
  bottom: 8px;
  left: 16px;
}

.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

.top-right-near {
  position: absolute;
  top: 8px;
  right: 20px;
}

.bottom-right {
  position: fixed;
  bottom: 8px;
  right: 16px;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



/*body {
        background-color: #20201F;
        color: #FFFFFF;
      }*/
	    
        .logo{
            width: 50px;
            height: auto;
            position: relative;
	    /*animation: fadeIn 0.1s ease-in-out;*/
        }
        .logo2{
            width: 40px;
            height: auto;
            position: relative;
           
            border-color: aliceblue;
        }


.phone {
  display: none;
}

    
	    
@media only screen and (max-width: 768px) {
  .phone {
    display: block;
  }
 
}
	    
	    
.menu-icon-hidden {
  opacity: 0;
}


.alert {
  padding: 20px;
  background-color: #1e90ff;
  color: black;
}

.close {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: red;
}
		  
		  
		  /*body {
  overflow: hidden;
}*/
		  
		  		  .menu-icon {
  position: relative; /* make the menu button's position relative */
  z-index: 1; /* set a high z-index to ensure that the menu button appears on top of other elements */
}





.center {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh; /* Set height to center vertically */
    }

.modal-image {
    max-width: 100%;
    max-height: 80vh;
	  border-radius: 10px
  }

  .modal-text {
    margin-top: 20px;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
  }

  

  /* Add animation effects */
  .modal-content {
    animation-name: zoomIn;
    animation-duration: 0.3s;
  }

.modal-content-img-pc {
    animation-name: zoomIn;
    animation-duration: 0.3s;
  }

  @keyframes zoomIn {
    from {
      transform: scale(0);
    }
    to {
      transform: scale(1);
    }
  }
