
/* PC 사이즈에 대한 스타일 */
.header {
    background-image: url('img/pcfull3.png');
    background-size: cover; /* 배경 이미지가 화면에 꽉 차게 표시됩니다. */
    background-position: center; /* 배경 이미지의 위치를 중앙에 맞춥니다. */
    height: 300px;
    position: relative;
  }
  
/* 모바일 세로 모드 */
@media only screen and (max-width: 600px) and (orientation: portrait) {
  .header {
    background-image: url('img/mofull4.png');
    background-size: cover; /* 배경 이미지가 화면에 꽉 차게 표시됩니다. */
    background-position: center; /* 배경 이미지의 위치를 중앙에 맞춥니다. */
    height: 220px;
  }
}

/* 모바일 가로 모드 */
@media only screen and (max-width: 600px) and (orientation: landscape) {
  .header {
    background-image: url('img/mofull4.png');
    background-size: cover; /* 배경 이미지가 화면에 꽉 차게 표시됩니다. */
    background-position: center; /* 배경 이미지의 위치를 중앙에 맞춥니다. */
    height: 220px;
  }
}

/* 아이패드 및 태블릿 세로 모드 */
@media only screen and (min-width: 601px) and (max-width: 1024px) and (orientation: portrait) {
  .header {
    background-image: url('img/mofull4.png');
    background-size: cover; /* 배경 이미지가 화면에 꽉 차게 표시됩니다. */
    background-position: center; /* 배경 이미지의 위치를 중앙에 맞춥니다. */
    height: 300px;
  }
}

/* 아이패드 및 태블릿 가로 모드 */
@media only screen and (min-width: 601px) and (max-width: 1024px) and (orientation: landscape) {
  .header {
    background-image: url('img/mofull4.png');
    background-size: cover; /* 배경 이미지가 화면에 꽉 차게 표시됩니다. */
    background-position: center; /* 배경 이미지의 위치를 중앙에 맞춥니다. */
    height: 300px;
  }
}
  
  .textbox {
      position: absolute;
      top: 48%;
      left: 40%;
      transform: translate(-50%, -50%);
      background-color: transparent;
      padding: 40px;
      border-radius: 10px;
      color: white;
      display: grid;
      grid-template-columns: auto auto;
      gap: 10px;
      align-items: center;
  }
  
  
  /* 버튼 스타일 */
  .container {
    width:360px;
    margin: 0 auto; /* 수평 가운데 정렬을 위한 스타일 */
    display: flex;
    justify-content: space-between; /* 좌우 간격을 맞추기 위해 각 버튼 사이에 공간을 균등하게 배분합니다. */
  }
  .btn {
      position: relative; /* 버튼 상대 위치 설정 */
      background-color: transparent;
      border: none;
      color: gray;
      padding: 10px 5px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      margin: 4px 2px;
      cursor: pointer;
      transition: color 0.3s ease; /* 텍스트 색상 변경 시 transition 효과 추가 */
  }
  
  .btn:hover {
      color:black;
  }
  
  .btn::after {
      content: ''; /* 가상 요소 내용 없음 */
      position: absolute; /* 절대 위치 설정 */
      bottom: -2px; /* 버튼 아래로 이동 */
      left: 0; /* 왼쪽 정렬 */
      width: 100%; /* 가로 전체 너비 */
      height: 2px; /* 선의 두께 */
      background-color: transparent; /* 선의 기본 색상 */
      transition: background-color 0.3s ease; /* 선의 색상 변경 시 transition 효과 추가 */
  }
  
  .btn:hover::after {
      background-color: black; /* hover 시 선의 색상 변경 */
    
  }
  
  
  /* 첫 번째 버튼의 색상을 미리 지정 */
  #btn1 {
      color: black;
  }
  
  /* 설명 초기 표시 */
  .description {
      display: block;
  }
  
  .max{
    max-width:600px;
  }
  
  .playbox {
    
    border-radius: 10px;
    box-shadow:  0 0.5px 4px 0 rgb(0, 0, 0, 0.4);
    max-width: 600px;
    padding:5px;
  }
  
  .linkbtn {
    border:none;
    border-radius: 30px;
    background-color: #B91F23;
    color:white;
    width:250px;
    font-size: 25px;
    padding: 10px 10px;
    font-family: 'Noto Sans Thai', sans-serif;
  
  }
  

  .linkbtn-1 {
    border:none;
    border-radius: 30px;
    background-color: black;
    color:white;
    width:150px;
    font-size: 20px;
    padding: 5px 5px;
    font-family: 'Noto Sans Thai', sans-serif;
  
  }
  
  
      /* 숨겨진 메뉴 스타일 */
      .hidden-menu {
          display: none;
      }
  
  
  
  
  
  
  
  
  .updownbtn {
    border: none;
    background-color: white;
     font-size: 18px; /* 기본 크기 */
      color: black; /* 기본 색상 */
      font-family: 'Noto Sans Thai', sans-serif;
      padding: 2px 20px;
      position: relative;
   
    background: none;
  }
  
  .updownbtn:hover {
    color: brown; /* hover 시 텍스트 색상 변경 */
    border-bottom: 2px solid brown;
  }


  .updownbtnint {
    border: none;
    background-color: white;
     font-size: 18px; /* 기본 크기 */
      color: black; /* 기본 색상 */
      font-family: 'Noto Sans Thai', sans-serif;
      padding: 2px 20px;
      position: relative;
   
    background: none;
  }
  
  .updownbtnint:hover {
    color: #941DA3; /* hover 시 텍스트 색상 변경 */
    border-bottom: 2px solid #941DA3;
  }
  
  
  
  .dropdown-container {
    display: flex;
    flex-direction: column;
  }
  
  .dropdown {
    position: relative;
    margin-bottom: 10px;
  }
  
  .dropdown-content {
    display: none;
    background-color: white;
    padding: 15px;
    border: 1px solid #ccc;
  }
  
  .dropdown-btn::after {
    content: "⌄";
    margin-left: 25px;
    font-size: 20px;
  
  
  }
  
  .dropdown-btn.open::after {
    content: "⌃";
    font-size: 20px;
  
  
  }
  
  .dropdown-btn {
    border: none;
    background-color: #f9f9f9;
    font-size: 15px;
    width: 100%;
    text-align: left;
  
  }
  
  .dropdown-btn:hover {
    color: brown; /* hover 시 텍스트 색상 변경 */
  
  }
  
  
  .dropdown-box {
    margin: 0 auto;
    max-width: 600px; /* PC 버전에서 최대 폭 지정 */
    padding: 0 10px; /* 좌우 간격 조정 */
    box-shadow:  0 0.5px 4px 0 rgb(0, 0, 0, 0.4);
    background-color: #f9f9f9;
  
  }
  
  .dropdown-container {
    display: flex;
    flex-direction: column;
  
    
  }
  
  .dropdown {
    position: relative;
    margin-bottom: 10px;
  
  }
  
  .dropdown-divider {
    height: 1.5px;
    background-color: gray;
  }
  


  * {
    box-sizing: border-box;
  }
  
  img {
    vertical-align: middle;
  }
  
  /* Position the image container (needed to position the left and right arrows) */
  .gcontainer {
    position: relative;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  
  /* Add a pointer when hovering over the thumbnail images */
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 25%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: black;
    font-weight: bold;
    font-size: 40px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  .prev {
    left: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(212, 182, 182, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* Container for image text */
  .caption-container {
    text-align: center;
    background-color: gray;
    padding: 2px 16px;
    color: white;
  }
  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Six columns side by side */
  .column {
    float: left;
    width: 10%;
  }
  
  /* Add a transparency effect for thumnbail images */
  .demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }
  
  .backbtn{
    width: 160px;
   
      cursor: pointer; 
      font-family:Tahoma; 
      font-weight: bold;
      background-color:black;
      border: none;
      border-color: black;
      padding: 4px 15px;
      box-shadow: 0 1px 1px 0 rgba(0,0,0,0.2), 0 2px 2px 0 rgba(0,0,0,0.19);
      border-radius: 10px;
      font-family: 'Mitr', sans-serif;
      font-family: 'Noto Sans Thai', sans-serif;
    }
  
    .max {
      max-width: 800px;
  
    }


    .reviewbox {
    
      padding: 5px;
      box-shadow:  0 0.5px 4px 0 rgb(0, 0, 0, 0.4);
    }


    .pricebtn {
      background-color: white;
      border: none;
    }







    .backbtn{
      width: 160px;
        cursor: pointer; 
        font-family:Tahoma; 
        font-weight: bold;
        background-color:brown;
        border:none;
        padding: 2px 2px;
        border-radius: 15px;
        font-family: 'Mitr', sans-serif;
        font-family: 'Noto Sans Thai', sans-serif;
        color:white;
      }
    

/*

    .pricebtn {
      background-color: white;
      border: none;
    }
*/



    
      .rwbtn{
        width: 180px;
        cursor: pointer; 
        font-family:Tahoma; 
        font-weight: bold;
        background-color:black;
        padding: 2px 6px;
        box-shadow: 0 1px 1px 0 rgba(0,0,0,0.2), 0 2px 2px 0 rgba(0,0,0,0.19);
        border-radius: 20px;
        font-family: 'Mitr', sans-serif;
        font-family: 'Noto Sans Thai', sans-serif;
      }
    
    
    /* Center the image and position the close button */
    .imgcontainer {
      text-align: center;
       margin: 1px;
      position: relative;
    }
    
    img.avatar {
      width: 40%;
      border-radius: 50%;
    }




    .modalcontainer {
      padding: 8px;
    }
    
    span.psw {
      float: right;
      padding-top: 16px;
    }
    
    /* The Modal (background) */
    .modal {
      display: none; /* Hidden by default */
      position: fixed; /* Stay in place */
      z-index: 1; /* Sit on top */
      left: 0;
      top: 0;
      width: 100%; /* Full width */
      height: 100%; /* Full height */
      overflow: auto; /* Enable scroll if needed */
      background-color: rgb(0,0,0); /* Fallback color */
      background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
      padding-top: 2px;  /*위로부터 간격*/
    }
    
    /* Modal Content/Box */
    .modal-content {
      background-color: #fefefe;
      margin: 2% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
      border: 1px solid #888;
      width: 80%; /* Could be more or less, depending on screen size */
      border-radius: 10px;
      max-width: 800px;
    }
    
    /* The Close Button (x) */
    .close {
      position: absolute;
      right: 15px;
      top: 0;
      color: #000;
      font-size: 35px;
      font-weight: bold;
      padding: 3px;
    }
    
    .close:hover,
    .close:focus {
      color: red;
      cursor: pointer;
    }
    


    .myDiv {
      border: 0px;
      width:280px;
      background-color: brown;    
      text-align: center;
      color: white;
      border-radius: 35px;
      padding: 5px 5px;
    }
    
    
 