@font-face {
  font-family: "rubik";
  src: url("/wp-includes/fonts/Rubik-VariableFont_wght.ttf");
}

body {
  margin: 0;
  font-family: "rubik", arial;
  box-sizing: border-box;
  overflow: hidden;
}

.div-container {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
}

table {
  border-collapse: collapse;
}

#top-table,
.bottom-table {
  width: 100%;
}

/* #field-table-head>tr {
    background: #e3f0ff80;
} */

td {
  direction: ltr;
  text-align: center;
}

#field-table-body td:not(:last-child) span {
  direction: rtl;
  font-size: 14px;
}

.red {
  color: red;
  direction: ltr !important;
}

.green {
  color: green;
}

.field-container {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.arrows {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.tabs-btns-container {
  display: flex;
  position: relative;
  justify-content: center;
  /* background: #f7f7f7; */
  height: 46px;
  direction: rtl;
  list-style-type: none;
  margin-top: 0;
  top: 17px;
  width: 100%;
}

.long-short-box-small-table {
  position: absolute;
  top: 500px;
}

/* .tab-btn {
  padding: 10px;
  width: 50%;
  border: none;
  cursor: pointer;
  border-bottom: 3px solid #eaeaea;
  background: #efeded;
  font-size: 18px;
} */

/* .tab-btn.active {
  box-shadow: 0 -1px 2px #d4d4d4;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
   border-bottom: none;
  border:1px solid #000; 
} */

#top-green-btn {
  /* transition: 0.5s;
  text-shadow: 0 0 15px #FF0000; */
  margin-left: -29px;
  position: absolute;
  /*relative*/
  top: 11%;
  left: 48%;
  margin-top: -30px;
  display: inline-block;
  font-size: 15px;
  color: #008000;
  text-align: center;
  width: 58px;
  /*100px*/
  height: 25px;
  /*60px*/
  line-height: 30px;
  border: 1px solid #008000;
  border-radius: 8px;
  overflow: hidden;
  text-transform: uppercase;
  cursor: pointer;
  transition: width 1s * 0.5 ease-in-out, margin 1s * 0.5 ease-in-out, border-radius 1s * 0.25 ease-in-out, color 1s * 0.25 ease-in-out;

  &:hover,
  &.auto {
    width: 50px;
    margin-right: -10px;
    border-radius: 70%;
    /*40px*/
    color: rgba(#008000, 0);
    transition: width 0.5s ease-in-out, margin 0.5s ease-in-out, border-radius 0.25s ease-in-out;
    /* color 0.25s ease-in-out 1s*.25; */

    &:before {
      animation: lineUp 1s cubic-bezier(0, 0.6, 1, 0.4) infinite 0.5s;
    }

    &:after {
      animation: tipUp 1s cubic-bezier(0, 0.6, 1, 0.4) infinite 0.5s;
    }
  }

  &:before {
    position: absolute;
    display: inline-block;
    content: "";
    background: #008000;
    width: 4px;
    /*5*/
    height: 24px;
    /*30px*/
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -3px;
    transform: translateY(50px);
  }

  &:after {
    position: relative;
    /*absolute*/
    display: inline-block;
    content: "";
    width: 8px;
    height: 8px;
    color: #008000;
    border-top: 3px solid;
    border-left: 3px solid;
    transform: rotateZ(45deg);
    top: -20%;
    left: 10%;
    /*40%*/
    margin-top: -6px;
    margin-left: -13px;
    transform: translateY(50px) rotateZ(45deg);
  }
}

.text-flip-container-buttons {
  display: flex;
  justify-content: start;
}

#top-red-btn {
  /* transition: 0.5s;
  text-shadow: 0 0 15px #FF0000; */
  margin-left: -26px;
  position: absolute;
  /*relative*/
  top: 11%;
  left: 56%;
  margin-top: -30px;
  /* margin-left: -60px; */
  display: inline-block;
  font-size: 15px;
  color: #ff0000;
  text-align: center;
  width: 58px;
  /*100px*/
  height: 25px;
  /*60px*/
  line-height: 30px;
  color: #ff0000;
  border: 1px solid;
  border-radius: 8px;
  overflow: hidden;
  text-transform: uppercase;
  cursor: pointer;
  transition: width 0.5s ease-in-out, margin 0.5s ease-in-out, border-radius 0.25s ease-in-out, color 0.25s ease-in-out;

  &:hover,
  &.auto {
    width: 50px;
    margin-left: -10px;
    border-radius: 70%;
    /*40px*/
    color: rgba(#ff0000, 0);
    transition: width 0.5s ease-in-out, margin 0.5s ease-in-out, border-radius 0.25s ease-in-out;
    /* color 0.25s ease-in-out 1s*.25; */

    &:before {
      animation: lineDown 1s cubic-bezier(0, 0.6, 1, 0.4) infinite 0.5s;
    }

    &:after {
      animation: tipDown 1s cubic-bezier(0, 0.6, 1, 0.4) infinite 0.5s;
    }
  }

  &:before {
    position: absolute;
    display: inline-block;
    content: "";
    background: #ff0000;
    width: 3px;
    height: 24px;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -3px;
    transform: translateY(-50px);
  }

  &:after {
    position: relative;
    /*absolute*/
    display: inline-block;
    content: "";
    width: 8px;
    height: 8px;
    color: #ff0000;
    border-top: 3px solid;
    border-left: 3px solid;
    transform: rotateZ(225deg);
    top: 44%;
    /*51%*/
    left: 10%;
    /*41%*/
    margin-top: -4px;
    margin-left: -13px;
    transform: translateY(-50px) rotateZ(225deg);
  }
}

@keyframes tipUp {
  0% {
    transform: translateY(50px) rotateZ(45deg);
  }

  100% {
    transform: translateY(-70px) rotateZ(45deg);
  }
}

@keyframes lineUp {
  0% {
    transform: translateY(50px);
  }

  100% {
    transform: translateY(-70px);
  }
}

@keyframes tipDown {
  0% {
    transform: translateY(-70px) rotateZ(225deg);
  }

  100% {
    transform: translateY(50px) rotateZ(225deg);
  }
}

@keyframes lineDown {
  0% {
    transform: translateY(-70px);
  }

  100% {
    transform: translateY(50px);
  }
}

.top-green-btn-active {
  border: 2px solid #008000 !important;
}

.top-red-btn-active {
  border: 2px solid #ff0000 !important;
}

.field-head {
  padding: 5px;
}

.field-td {
  padding: 5px;
  font-size: 14px;
  border: 2px solid white;
}

tr {
  width: 100%;
  height: 34px;
}

.green-stock {
  color: red;
}

.red-stock {
  color: green;
}

#fields-container {
  margin: 5px 15px;
}

.emoji-btns-container {
  display: flex;
  justify-content: center;
  background: #fff;
  margin: 10px auto;
  gap: 15px;
}

.emoji-img {
  height: 35px;
  width: 35px;
}

.emoji-tab-btn.active {
  background-color: rgb(171 188 188);
  box-shadow: 0 -1px 2px #d4d4d4;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom: none;
  border: 1px solid #000;
}

.small-text {
  align-self: start;
  font-size: 14px;
}

#field-select {
  height: fullLineShortLongInfo;
  direction: rtl;
  font-weight: bold;
  outline: none;
  border: none;
  border-bottom: 2px solid #000;
  text-align: center;
  font-size: 18px;
}

#field-table-head th,
#field-table-head td,
#table-body td {
  font-size: 14px;
}

#table-body tr:nth-child(odd) {
  text-align: center;
}

.table-head {
}

.table-head.active .header-text::before {
  /* content: "*";
  color: #ffb752;
  font-weight: 600;
  font-size: 28px; */
}

.field-container > span {
  font-size: 14px;
}

.title-tooltip-container,
.tooltip-container {
  position: relative;
}

.title-tooltip-container .title-name-tooltip,
.tooltip-container .name-tooltip {
  position: absolute;
  top: 0px;
  right: 9999px;
  width: fit-content;
  min-width: 96px;
  margin-left: -30px;
  color: #000;
  background: #fff;
  -webkit-box-shadow: 2px 2px 5px #aaa;
  -moz-box-shadow: 2px 2px 5px #aaa;
  box-shadow: 2px 2px 5px #aaa;
  opacity: 0;
  -webkit-transition: opacity 250ms ease-out;
  -moz-transition: opacity 250ms ease-out;
  -ms-transition: opacity 250ms ease-out;
  -o-transition: opacity 250ms ease-out;
  transition: opacity 250ms ease-out;

  z-index: 999;
}

.title-tooltip-container .title-name-tooltip:before,
.tooltip-container .name-tooltip:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: -16px;
  width: 0;
  height: 0;
  /* border:8px solid transparent;
  border-right-color:#fff; */
}

.field-td.title-tooltip-container {
  direction: rtl;
}

.tooltip-container:hover .name-tooltip {
  right: 4px;
  opacity: 1;
}

.name-tooltip a{
  text-decoration: none;
  color: #000;
}

.title-tooltip-container:hover .title-name-tooltip {
  opacity: 1;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}

@keyframes appear {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

.top-red-btn {
  transition: 0.5s;
  /* text-shadow: 0 0 15px red; */
}

.top-green-btn {
  transition: 0.5s;
  /* text-shadow: 0 0 15px green; */
}

#top-red-btn,
#top-green-btn {
  cursor: pointer;
}

.etf-full-page-link {
  display: flex;
  justify-content: flex-start;
  margin-right: 5px;
  position: fixed;
  height: 12px;
  width: 22px;
  bottom: 1px;
  left: 10px;
}

#fullLine {
  display: flex;
  height: 60px;
  text-align: center;
}

.fullLine {
  width: 100%;
  display: flex;
  margin-top: 50px;
  direction: ltr;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.details-table-data span {
  cursor: pointer;
}

.width-th-etf {
  text-wrap-mode: nowrap;
  width: 18%;
}

.width-th-fund {
  text-wrap-mode: nowrap;
  width: 15%;
}

/* #shortLine {
  background-color: rgba(255, 0, 0, 1);
} */

/* #longLine {
  background-color: rgba(0, 174, 106, 1);
} */

#shortLine,
#longLine {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.long-short-container {
  margin-top: 25px;
}

.etf-title {
  margin: 0;
}

#shortLine h2,
#longLine h2 {
  margin: 0;
  font-size: 16px;
}

#fullLine span {
  font-size: 14px;
}

#open-tab-btn:hover:after {
  width: 20% !important;
}

#open-tab-btn.active::after,
#open-tab-btn:focus:after {
  /* left: 535% !important; */
  /* right: 34% !important; */
  width: 130px !important;
}

#open-tab-btn span,
#close-tab-btn span {
  font-weight: 700;
  font-size: 18.1px;
}

.tab-btn.active {
  color: #00367c;
}

#top-top-btns-container {
  margin-bottom: 25px;
}

#close-tab-btn.active::after {
  /* left: 40% !important; */
  /*9%*/
  /* right: 40% !important; */
  /*39%*/
  width: 130px !important;
  /*92px*/
}

.tab-btn {
  font-size: 18px;
  /* color: #3d7fb8; */
  color: #006bb7;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  transition: color 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#close-tab-btn {
  background-color: transparent !important;
}

.tab-btn:after {
  content: "";
  position: absolute;
  bottom: 0px;
  /* left: 50%; */
  width: 0%;
  height: 3px;
  /* background-color: #e5b485; */
  background-color: #ffa527;
  transition: width 400ms cubic-bezier(0.25, 0.8, 0.25, 1), left 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}

/* chnged from px to % after the css broke - for future - try to change back to pixles */
.tab-btn.active::after {
  /* left: 40%; */
  /* width: 20%; */
  /* width: 63px;
  right: 168px; */
}

.tab-btn:hover:after,
.tab-btn:focus:after {
  width: 20%;
  /* width: 63px;
  right: 168px; */
  /* left: 40%; */
}

#top-top-btns-container::after {
  content: "";
  position: absolute;
  background-color: #00367c21;
  width: 90%;
  height: 3px;
  bottom: 0px;
  right: 2px;
  width: 99.5%;
}

#top-buttons-etf {
  position: relative;
  /* top: 10px; */
  flex-direction: column;
  gap: 5px;
  margin: 2px;
  /* 1px auto*/
}

.topButton.not-active-top-button,
.topButton.active-top-button,
.downButton.not-active-top-button,
.downButton.active-top-button {
  transition: none;
}

.topButton.not-active-top-button,
.downButton.not-active-top-button {
  opacity: 0.5;
  box-shadow: none !important;
}

#top-button-etf,
#down-button-etf {
  width: 25px;
  height: 25px;
  transition: none;
}

#top-button-etf.topButton.active-top-button,
#down-button-etf.downButton.active-top-button {
  width: 25px !important;
  border-radius: 50% !important;
}

.topButton.active-top-button .iconWrapper,
.downButton.active-top-button .iconWrapper {
  display: inline-flex !important;
}

/* .topButton.active-top-button .iconWrapper .svgIcon.iconHover, */
.downButton.active-top-button .iconWrapper .svgIcon.iconHover {
  opacity: 1;
  transform: translateY(0%) rotate(180deg);
}

.topButton.active-top-button .iconWrapper .svgIcon.iconDefault,
.downButton.active-top-button .iconWrapper .svgIcon.iconDefault {
  opacity: 0;
}

.topButton.active-top-button .iconWrapper .svgIcon.iconHover {
  opacity: 1;
  transform: translateY(0%);
}

#down-button-etf.not-active-top-button .svgIcon.iconDefault {
  opacity: 1;
  transform: rotate(180deg);
}

#down-button-etf.not-active-top-button .svgIcon.iconHover {
  transform: translateY(-100%);
}

/* #down-button-etf.active-top-button .svgIcon.iconHover, */
#down-button-etf.not-active-top-button .svgIcon.iconHover {
  opacity: 0;
  transform: translateY(-100%) rotate(180deg);
}

#down-button-etf.not-active-top-button:hover .svgIcon.iconHover {
  opacity: 1;
  transform: translateY(0%) rotate(180deg);
}

#down-button-etf.not-active-top-button:hover .svgIcon.iconDefault {
  opacity: 0;
}

#down-button.not-active-top-button:hover .iconWrapper .svgIcon.iconHover {
  transform: translateY(0%);
}

/* #down-button-etf.active-top-button .svgIcon .iconHover {
  opacity: 1;
  transform: translateY(0%) rotate(180deg);
} */

/* .tab-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #fadaba;
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: none;
} */

/* .tab-btn {
  padding: 10px;
  width: 50%;
  border: none;
  cursor: pointer;
  border-bottom: 3px solid #eaeaea;
  font-size: 18px;
} */

/* .tab-btn:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: #01459d;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
  left: 0;
} */

/* .tab-btn.right-btn:after {
  right: 0;
} */

/* .tab-btn.right-btn.active::after {
  right: 0;
  left: auto;
  width: 100%;
} */

/* .tab-btn.active::after {
  left: 0;
  right: auto;
  width: 100%;
} */

/* .tab-btn span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 18px 25px;
  color: #fff;
  color:#3d7fb8;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.3em;
  z-index: 20;
  transition: all 0.3s ease-in-out;
} */

/* .tab-btn.active span {
  color:#3d7fb8 !important;
  animation: scaleUp 0.3s ease-in-out;
} */

/* #open-tab-btn::after{
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 0%;
  height: 5px;
  background-color: #e5b485;
  transition: width 400ms cubic-bezier(0.25, 0.8, 0.25, 1),
    left 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
} */

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

#table-body tr td:first-child {
  /* text-align: right; */
  width: 240px;
  height: 1.188rem;
  direction: rtl;
  text-overflow: ellipsis;
}

.frame-title > h3 {
  margin: 0;
}

.fullLine {
  width: 100%;
  display: flex;
  margin-top: 20px;
  margin-bottom: 20px;
  direction: ltr;
  height: 0px;
  box-shadow: rgb(0 0 0 / 19%) 0px 10px 20px, rgb(0 0 0 / 23%) 0px 6px 6px;
}

.fullLineShortLong {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  direction: ltr;
  box-shadow: rgb(0 0 0 / 19%) 0px 10px 20px, rgb(0 0 0 / 23%) 0px 6px 6px;
  border-radius: 5px;
  overflow: hidden;
  height: 18px;
  align-items: center;
}

.frame-etfs .fullLineShortLong {
  padding: 0;
}

.fullLineShortLong > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.4s;
}

.fullLineShortLongInfo {
  display: flex;
  justify-content: space-between;
}

.fullLineShortLongInfo > div {
  display: flex;
  align-items: center;
}

.fullLineShortLongInfo > div > h3 {
  font-size: 1.3em;
  margin: 0;
}

#long-part,
#short-part {
  font-size: 14px;
  padding: 5px;
  color: white;
}

.box * {
  padding: 0 5px;
}

.box {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.frame-title {
  display: block;
  position: relative;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.frame-title h2 {
  margin: 0;
  padding-bottom: 0;
  padding-top: 0;
  font-size: 18px;
}

.frame-title h3 {
  margin: 0;
  margin-top: 3px;
}

#red1,
#red2,
#red3,
#red4,
#partline5 {
  background-color: #f26657;
}

#shortLine {
  background-color: #ff5359;
}

#longLine {
  background-color: #54de8f;
}

.fullLineShortLongInfo {
  display: flex;
  justify-content: space-between;
  padding: 0;
}

.fullLineShortLongInfo > div {
  display: flex;
  align-items: center;
  padding-top: 5px;
}

.fullLineShortLongInfo > div > h3 {
  font-size: 15px;
  margin: 0;
}

.fullLineShortLongInfo span {
  font-size: 14px;
  cursor: auto;
}

.full-page-link {
  margin-left: 2px;
  margin-right: auto;
}

.read-more-icon {
  height: 12px;
}

.move-to-full-link-container {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.table-container {
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .tab-btn span {
    font-size: 0.95em;
  }

  #field-table-body td:not(:last-child) span {
    font-size: 0.8rem;
  }

  #field-table-body tr td:first-child {
    position: sticky;
    right: 0;
    z-index: 5;
    background: white;
  }

  .field-td {
    padding: 0;
    font-size: 0.7rem;
    border: 2px solid white;
  }
}

@media only screen and (max-width: 768px) {
  .tabs-btns-container {
    top: 0;
  }

  #top-top-btns-container {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 600px) {
  #table-head tr th:first-child,
  #table-body tr td:first-child {
    position: sticky;
    right: 0;
    z-index: 99;
    background: #f1f7ff !important;
    width: 120px;
  }

  #top-table,
  .bottom-table {
    width: 600px;
  }

  .table-container {
    overflow-x: auto;
    width: 100%;
  }

  .title-tooltip-container .title-name-tooltip,
  .tooltip-container .name-tooltip {
    display: none;
  }

  .fullLineShortLong {
    box-shadow: none;
    margin-top: 10px;
  }

  #long-part,
  #short-part {
    color: black;
  }

  .frame-title {
    font-weight: 500;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  #dropDownBar {
    z-index: 100;
  }
}

/* for the top arrows START */
.toparrow {
  position: relative;
  display: inline-block;
  font-size: 16px;
  text-align: center;
  width: 40px;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  text-transform: uppercase;
  cursor: pointer;
  transition: width 0.5s ease-in-out, margin 0.5s ease-in-out, border-radius 0.25s ease-in-out, color 0.25s ease-in-out;
}

.top-btn-container {
  margin: auto;
  padding: 10px;
  width: 50px;
  display: flex;
  justify-content: center;
}

.toparrow.green {
  color: #399918;
  border: 2px solid #399918;
  border-radius: 5px;
}

.toparrow.red {
  color: #fd5e53;
  border: 2px solid #fd5e53;
  border-radius: 5px;
}

.toparrow.red.toparrow-active {
  font-weight: bold;
  box-shadow: 0 0 0 1px #fd5e53;
}

.toparrow.green.toparrow-active {
  font-weight: bold;
  box-shadow: 0 0 0 1px #399918;
}

.top-btn-container:hover .toparrow,
.toparrow:hover {
  width: 20px;
  border-radius: 40px;
  color: rgba(179, 195, 58, 0);
  transition: width 0.5s ease-in-out, margin 0.5s ease-in-out, border-radius 1s 0.25 ease-in-out, color 0.25s ease-in-out 0.25s;
}

.top-btn-container:hover .toparrow:before,
.toparrow:hover:before {
  animation: lineUp 1s cubic-bezier(0, 0.6, 1, 0.4) infinite 0.5s;
}

.top-btn-container:has(.toparrow.red):hover .toparrow.red:before,
.toparrow.red:hover:before {
  animation: lineUp 1s cubic-bezier(0, 0.6, 1, 0.4) infinite reverse 0.5s;
}

.top-btn-container:hover .toparrow:after,
.toparrow:hover:after {
  animation: tipUp 1s cubic-bezier(0, 0.6, 1, 0.4) infinite 0.5s;
}

.top-btn-container:has(.toparrow.red):hover .toparrow.red:after,
.toparrow.red:hover:after {
  animation: tipUpRed 1s cubic-bezier(0, 0.6, 1, 0.4) infinite reverse 0.5s;
}

.toparrow:before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 3px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -2px;
  transform: translateY(50px);
}

.toparrow.green:before {
  background: #399918;
}

.toparrow.green:after {
  color: #399918;
}

.toparrow.red:before {
  background: #fd5e53;
}

.toparrow.red:after {
  color: #fd5e53;
}

.toparrow:after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid;
  border-left: 3px solid;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -7px;
  transform: translateY(50px) rotateZ(45deg);
}

.toparrow.red:after {
  transform: translateY(50px) rotateZ(-135deg);
  top: 90%;
}
#selectedRegionDisplay{
  line-height: 14px;
}

@keyframes tipUp {
  0% {
    transform: translateY(50px) rotateZ(45deg);
  }

  100% {
    transform: translateY(-70px) rotateZ(45deg);
  }
}

@keyframes tipUpRed {
  0% {
    transform: translateY(50px) rotateZ(-135deg);
  }

  100% {
    transform: translateY(-70px) rotateZ(-135deg);
  }
}

@keyframes lineUp {
  0% {
    transform: translateY(50px);
  }

  100% {
    transform: translateY(-70px);
  }
}

/* for the top arrows END */

/* New Design */

#field-table-head {
  border: 3px solid #d9d9d9;
}

#field-table-body {
  border: 3px solid #d9d9d9;
}

.bottom-table {
  border-collapse: collapse;
  border: 2px solid #d9d9d9;
}

#table-body tr:hover {
  background-color: #e9e9e9;
}

.table-head {
  border-bottom: 2px solid #d9d9d9;
  /* padding-right: 4%; */
}

#table th:nth-child(1) {
  /* padding-right: 3%; */
}

#table th:nth-child(3),
#table th:nth-child(5) {
  /* padding-right: 4.5%; */
}

#table th:nth-child(4) {
  /* padding-right: 5.5%; */
}

.arrow-component-container {
  margin: auto;
}

.bottom-table td {
  border-bottom: 1px solid #d9d9d9;
}

.title-link {
  text-decoration: none;
  color: #000;
}

.field-td {
  font-size: 15px;
}

.header-text {
  font-size: 14px;
}
