.image-player,
.image-player * {
  box-sizing: border-box;
}

.image-player {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    height: 630px;
    position: relative;
    position: relative;
    padding: 10px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 26px;
    background: linear-gradient(
        175.17deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.12) 100%
    );
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    border-image: linear-gradient(
        175.17deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.2) 100%
    );
    border-image-slice: 1;
    width: 260px;
    height: 100%;
    padding: 20px 15px;
    box-shadow: 0px 4px 8px -1px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
}

.filter-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.filter-title {
  color: #18191a;
  text-align: left;
  font-family: "NotoSansTc-Regular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}

.location {
    width: 100%;
    border-radius: 8px;
    padding: 10px 15px 10px 15px;
    color: #18191a;
    text-align: left;
    font-family: "NotoSansTc-Medium", sans-serif;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    cursor: pointer;
  }
  
.location:hover {
    background: #f5f5f5;
}

.location.selected {
    background: #eef4ce;
}

.tabs {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-bottom: 3px;
}

.tabs .tab {
    width: 50%;
    text-align: center;
    color: #5a5a5a;
    padding: 1px;
    font-size: 15px;
    font-family: "NotoSansTc-Regular", sans-serif;
    font-weight: 400;
    border-width: 1px 0px 1px 1px;
    border-style: solid;
    border-color: #5a5a5a;
    cursor: pointer;
}

.tabs .tab:first-child {
    border-radius: 12px 0px 0px 12px;
}

.tabs .tab:last-child {
    border: 1px solid #5a5a5a;
    border-radius: 0px 12px 12px 0px;
}

.tabs .tab.active {
    background-color: #eef4ce;
}

select[name="time"], select[name="step"] {
    display: flex;
    flex-direction: column;
    padding: 8px 12px 8px 12px;
    border-width: 1px solid #7a7a7a;
    border-radius: 8px;
    font-family: "NotoSansTc-Regular", sans-serif;
    font-weight: 400;
}

input {
    appearance: none;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid #999;
    transition: 0.15s all linear;
    position: relative;
    top: 2px;
    cursor: pointer;
}

input:checked {
    border: 5px solid #80998F;
}

label {
    margin: 0px 12px 0px 1px;
    color: #18191a;
    font-family: "NotoSansTc-Medium", sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
}

.action-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    width: 100%;
}

button.btn-play-stop {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #80998F;
    font-size: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

button.btn-play-stop:hover {
    background-color: #748780;
}

.action-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.action-group input {
    top: 4px;
    margin-right: 1px;
}

.display-zone {
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: linear-gradient(
        101.37deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.25) 100%
    );
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    border-image: linear-gradient(
        101.64deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.2) 100%
    );
    border-image-slice: 1;
    width: 1080px;
    height: 100%;
    padding: 15px;
    box-shadow: 0px 4px 8px -1px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
}

button.btn-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #80998F;
    font-size: 26px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

button.btn-switcher:hover {
    background-color: #748780;
}

.display-zone img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}
