@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Verdana, sans-serif;
}

body {
  background: #F6F6F6;
}

.chat-container {
  margin: 0 auto;
  background: #FFFFFF;
  min-height: 100vh;
}

.language-dropdown {
  position: relative;
  width: 100%;
  color: #002E6C;
}
.language-dropdown .dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #FFFFFF;
  border: 1px solid #E9E9E9;
  border-radius: 4px;
  cursor: pointer;
}
.language-dropdown .dropdown-header.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: #4DB5FF;
  border-width: 1px;
}
.language-dropdown .dropdown-header .arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.language-dropdown .dropdown-header .arrow-icon.active {
  transform: rotate(180deg);
}
.language-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #E9E9E9;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  overflow-y: auto;
  max-height: calc(5 * 48px + 2px);
  display: none;
  z-index: 1000;
}
.language-dropdown .dropdown-menu.show {
  display: block;
}
.language-dropdown .dropdown-menu .dropdown-item {
  padding: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.language-dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #4DB5FF;
  color: #FFFFFF;
}
.language-dropdown .dropdown-menu .dropdown-item.selected {
  background-color: #E9E9E9;
}

.logo-section {
  background: #001E45;
  text-align: center;
  color: #FFFFFF;
  height: 100px;
  position: relative;
  overflow: hidden;
}
.logo-section .logo-container {
  display: flex;
  background-color: #002E6C;
  padding: 24px 16px;
  align-items: center;
  justify-content: center;
  max-width: 210px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
}
.logo-section .logo-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 92px;
  width: 100px;
  height: 100%;
  background-color: #002E6C;
  -webkit-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  transform: skewX(-20deg);
  z-index: 2;
  pointer-events: none;
}
.logo-section .logo-container .logo-sbotop {
  height: 56px; /* if sponsored FC add back should adjust to 28px */
  z-index: 2;
}
.logo-section .logo-container .logo-sbobet {
  height: 56px;
  z-index: 3;
}
.logo-section .logo-container .line {
  width: 1px;
  height: 30px;
  background-color: white;
  margin: 0 8px;
  z-index: 2;
}
.logo-section .livechat-right-container {
  position: absolute;
  right: -30px;
  top: 0;
  z-index: 0;
}

.support-text {
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  text-align: center;
  z-index: 2;
  font-weight: bold;
}

.time {
  font-size: 24px;
  margin-bottom: 4px;
}

.phone-icon {
  width: 24px;
  height: 24px;
}

/* 表單區域 */
.form-container {
  padding: 20px;
}

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

.form-label {
  display: block;
  color: #777777;
  margin-bottom: 8px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #E9E9E9;
  border-radius: 4px;
  font-size: 16px;
}
.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #4DB5FF;
}

.form-select {
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg fill="%23000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
}

/* 提示信息框 */
.info-box {
  background: #F0F7FF;
  border-radius: 4px;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  color: #002E6C;
  font-size: 14px;
  line-height: 1.5;
}
.info-box .info-icon {
  color: #002E6C;
  font-weight: bold;
  width: 24px;
  height: 24px;
}
.info-box a {
  color: #002E6C;
  text-decoration: underline;
}

/* 提交按鈕 */
.submit-button {
  width: 100%;
  padding: 14px;
  background: #002E6C;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
.submit-button:hover {
  color: #F6F6F6;
}

@media screen and (min-width: 320px) {
  .logo-section .logo-container::before {
    left: 112px;
  }
  .logo-section .logo-container .logo {
    height: 28px;
  }
}
.chat-name:disabled {
  border: 1px solid #D6D6D6;
  background-color: #E9E9E9;
  color: #B3B1B1;
  cursor: not-allowed;
}

@media screen and (min-width: 768px) {
  .logo-section .logo-container::before {
    left: 124px;
  }
  .logo-section .logo-container .logo {
    height: 32px;
  }
}

/*# sourceMappingURL=NewLiveChatComPreChatSurvey.css.map */
