:root {
  --color-primary: black;
}

.etl_tab {
  overflow: hidden;
  /* border: 1px solid #ccc;
  background-color: #f1f1f1; */
  box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.1);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border-top: 2px solid black;
  background: black;
  display: flex;
  justify-content: center;
}

.etl_tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 16px;
  transition: 0.3s;
  font-size: 0.95em;
  /* color: black; */

  color: white;
  background: var(--color-primary);
  border-right: 1px solid white;
  /* border-right: 1px solid white; */
  border-bottom: 2px solid var(--color-primary);
}

.etl_tab button:hover {
  background-color: white;
  color: var(--color-primary);
  /* border-top-right-radius: 10px;
  border-top-left-radius: 10px; */
  border-bottom: 2px solid white;
}

.etl_tab button.active {
  /* background-color: #ccc; */
  background-color: white;
  border-bottom: 2px solid white;
  color: black;
  /* border-top-right-radius: 10px;
  border-top-left-radius: 10px; */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  /* border-bottom: 1px dashed var(--color-primary); */
}

.etl_tabcontent {
  display: none;
  transition: opacity 1s ease-out;
  opacity: 0;
  padding: 6px 12px;
  border-top: none;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: white;
  border-bottom: 2px solid var(--color-primary);
  padding: 40px;
}

.user_feedback_form {
  max-width: 1100px !important;
}
.rb-row-container {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.rb-row-heading {
  width: 30%;
  font-size: 16px;
}
.rb-box {
  width: 80%;
  max-width: 420px;
  margin: 50px auto;
  padding: 1.3em;
  background: #292942;
  border-radius: 0.75em;
  -webkit-filter: drop-shadow(1px 2px 5px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(1px 2px 5px rgba(0, 0, 0, 0.3));
  box-shadow: 0 2px 2px rgba(243, 49, 128, 0.5),
    0 0px 5px rgba(243, 49, 128, 0.15), 0 0px 4px rgba(0, 0, 0, 0.35),
    0 5px 20px rgba(243, 49, 128, 0.25), 0 15px 50px rgba(243, 49, 128, 0.75),
    inset 0 0 15px rgba(255, 255, 255, 0.05);
}

.rb {
  /* padding: 16px 0; */
  text-align: center;
  border-radius: 0.3em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 70%;
}

/* .rb-tab { */
/* display: inline-block; */
/* position: relative; */
/* width: 20%; */
/* } */

.rb-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.9em;
  color: black;
}

.rb-spot {
  position: relative;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 100%;
  cursor: pointer;
  transition: ease 0.5s;
  padding: 15px;
}

.rb-tab-active .rb-spot {
  /* background: rgba(0,0,0,.35); */
  /* border: 3px solid rgba(5, 56, 255, 0.6); */
  background-color: var(--color-primary);
}

.rb-tab-active .rb-spot .rb-txt{
    color: white;
}

/* Submit Button */
.button-box {
  padding: 10px 0;
  text-align: center;
}

.form-button {
  margin-top: 1.2em;
  /* padding: 0.5em; */
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.1em;
  float: right;
  padding: 12px 25px;
  margin: 10px 0;
}

.form-button:hover {
  box-shadow: 0 3px 5px -5px rgba(0, 0, 0, 0.3);
}

.etl_info,
.etl_success,
.etl_warning,
.etl_error,
.etl_validation {
  border: 1px solid;
  margin: 10px 0px;
  padding: 15px 10px 15px 50px;
  background-repeat: no-repeat;
  background-position: 10px center;
  max-width: 970px !important;
  font-weight: bold;
}
.etl_info {
  color: #00529b;
  background-color: #bde5f8;
  /* background-image: url('https://i.imgur.com/ilgqWuX.png'); */
}
.etl_success {
  color: #4f8a10;
  background-color: #dff2bf;
  /* background-image: url('https://i.imgur.com/Q9BGTuy.png'); */
}
.etl_warning {
  color: #9f6000;
  background-color: #feefb3;
  /* background-image: url('https://i.imgur.com/Z8q7ww7.png'); */
}
.etl_error {
  color: #d8000c;
  background-color: #ffbaba;
  /* background-image: url('https://i.imgur.com/GnyDvKN.png'); */
}
.etl_validation {
  color: #d63301;
  background-color: #ffccba;
  /* background-image: url('https://i.imgur.com/GnyDvKN.png'); */
}

.etl_container_detail {
  background-color: white;
  width: 50%;
  max-width: 350px;

  display: none;
  margin: 5px 0;
}

.etl_container_detail .etl_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.etl_container_detail .etl_row p {
  font-family: Arial, Helvetica, sans-serif;
}

.etl_container_detail .etl_row .etl_label {
  color: rgba(0, 0, 0, 0.5);
  font-size: 17px;
  font-weight: bold;
}

.etl_container_detail .etl_row .etl_data {
  font-weight: bold;
  font-size: 17px;
  margin-left: 4em;
}

.etl_container_detail .etl_row .etl_cb {
  background-color: #f2f2f2;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 10px 5px 0 5px;
}

.etl_container_detail .etl_row .etl_cb p {
  color: rgba(0, 0, 0, 0.7);
  padding: 0;
  margin: 0;
}

.etl_container_detail .etl_cb_wrap {
  margin: 15px 0;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.etl_container_detail .etl_cb_wrap p {
  font-size: 13px;
}
