* { box-sizing: border-box; }
body {
  margin: 0;
  overscroll-behavior-x: none;
}
.fit { display: inline-block; }
.grid { display: grid; }
.flex { display: flex; }
.pool { display: grid; }
.insert { outline: 0; }
.dropdown {
  cursor: pointer;
  outline: 0;
}
.handle {
  cursor: pointer;
  outline: 0;
}
.full-height { height: 100%; }
.tip { position: relative; }
.tip .tip-tip {
  position: absolute;
  display: none;
}
.tip:hover .tip-tip { display: block; }
.profit-red { color: red; }
.profit-green { color: green; }
.gamer-workers { position: relative; }
.worker-select-placeholder-name {
  padding-right: 7px;
}
.worker-select-overlay {
  position: fixed;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 2;
}
.worker-select-container {
  position: absolute;
  max-height: 200px;
  width: 100%;
  white-space: normal;
  overflow: auto;
  z-index: 3;
}
.worker-select-option {
  display: block;
  padding: 7px;
  width: 100%;
  cursor: pointer;
}
.modal-aux button {
  position: absolute;
  border-radius: 10px;
}
.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 11;
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.modal-content {
  display: grid;
  align-items: center;
  justify-items: center;
  width: 100%;
  height: 100%;
}
.confirmation-container {
  background: white;
  width: 100%;
  max-width: 300px;
  padding: 20px;
  border: 1px solid black;
  color: black;
}
.confirmation-text { padding-bottom: 10px; }
.confirmation-buttons { text-align: end; }
.confirmation-yes { background: white; }
.confirmation-no {
  background: black;
  color: white;
}
.confirmation-yes, .confirmation-no {
  border: 0;
  padding: 5px 10px;
  font-weight: bold;
}
.confirmation-yes:hover { background: #dddddd; }
.confirmation-no:hover { background: #343434; }
.account-wrapper { position: relative; }
.account-overlay {
  position: fixed;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 2;
}
.accounts-container {
  position: absolute;
  width: 100%;
  z-index: 3;
  white-space: normal;
  left: 0;
  top: 14px;
}
.account-option { padding: 7px; }
.courses {
  padding: 10px;
}
.courses-product-name {
  display: block;
  font-size: 20px;
  padding: 10px;
}
.courses-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.course-item {
  position: relative;
  min-height: 90px;
  margin-right: 10px;
  cursor: pointer;
  background-color: #434343;
  color: #ffffff;
}
.course-item-image {
  display: block;
  width: 100%;
  height: auto;
}
.course-texts {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto min-content min-content;
  grid-gap: 10px;
  padding: 10px;
  text-align: center;
  top: 0;
}
.unavailable-course-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background: #00000059;
  backdrop-filter: blur(1px);
  font-size: 30px;
  display: grid;
  align-content: center;
  justify-content: center;
  text-decoration: none;
}
.course-container {
  display: grid;
  position: fixed;
  grid-template-rows: min-content auto;
  width: 100vw;
  height: 100svh;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #ffffff;
  white-space: normal;
}
.course-wrapper {
  display: grid;
  height: 55px;
  grid-template-columns: min-content auto;
  grid-gap: 20px;
  padding: 10px 20px;
  border-bottom: 1px solid #3e4143;
  color: #ffffff;
  background-color: #1c1d1f;
  align-items: center;
  color: white;
  text-align: start;
}
.course-image {
  height: calc(55px - 20px);
}
.course-name {
  padding-left: 10px;
  border-left: 1px solid #3e4143;
}
.course-grid {
  display: grid;
  grid-template-columns: 73% 27%;
  grid-template-areas: 'a c' 'b c';
  max-height: calc(100svh - 55px);
}
.course-video-container {
  height: 100%;
  grid-area: a;
  background: black;
  display: grid;
  align-content: center;
}
.course-video {
  width: 70%;
  aspect-ratio: 16 / 9;
  display: block;
  margin: 0 auto;
}
.tutorial-description-container {
  grid-area: b;
  overflow: auto;
}
.tutorial-description-grid {
  display: grid;
  grid-gap: 20px;
  padding: 10px 20px;
}
.tutorial-name {
  display: block;
  font-size: 22px;
  color: black;
  border-bottom: 1px solid lightgray;
  padding-bottom: 5px;
}
.tutorial-name a {
  color: #ffee0a;
}
.tutorial-description {
  display: block;
  color: black;
}
.tutorial-description a {
  color: #ffee0a;
  text-decoration: none;
}
.tutorial-list-container {
  display: grid;
  height: 100%;
  overflow: auto;
  font-size: 19px;
  grid-area: c;
  max-height: calc(100svh - 55px);
  grid-template-rows: min-content auto;
}
.close-course-grid {
  display: grid;
  grid-template-columns: auto min-content;
  padding: 15px;
  grid-gap: 15px;
  align-items: center;
  position: sticky;
  top: 0;
  border-bottom: 1px solid #d1d7dc;
  font-weight: bold;
  background-color:#ffffff;
}
.close-course-text {
  color: black;
  text-align: center;
}
.close-course-container {
  border: 0;
  cursor: pointer;
  background-color: #ffffff;
  color: #000000;
  padding: 0;
}
.module-wrapper {
  display: grid;
  padding: 15px;
  border-top: 1px solid #d1d7dc;
  background-color: #f7f9fa;
  font-weight: bold;
  cursor: pointer;
  grid-template-columns: min-content auto;
  grid-gap: 15px;
  color: black;
  text-align: start;
}
.tutorial-name-list-wrapper {
  display: grid;
  padding: 15px;
  cursor: pointer;
  grid-gap: 15px;
  grid-template-columns: min-content auto;
  color: black;
  text-align: start;
  width: 100%;
}
.tutorial-active { color: gray; }
.tutorial-thumbnail {
  width: 120px;
  height: 70px;
}
.tutorial-name-list {
  white-space: initial;
}
  @media only screen and (max-width: 802px) {
      .courses-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .course-grid {
    grid-template-areas: 'a' 'b' 'c';
    grid-template-columns: 1fr;
  }
  }
#alert {
  color: black;
  font-size: 16px;
  bottom: 20px;
  position: absolute;
  left: 20px;
  padding: 10px;
  z-index: 10001 !important;
  display: none;
  background: white;
  border: 1px solid gray;
}
#alert.alert-error {
  color: white;
  background: #b10c0c;
  border: 1px solid darkred;
}
#alert.alert-success {
  color: white;
  background: green;
  border: 1px solid darkgreen;
}
#alert.alert-active { display: block; }
.loading-container {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 11;
  backdrop-filter: blur(10px);
  display: grid;
  align-items: center;
  justify-items: center;
}
.loading-aux button {
  position: absolute;
  background: red;
  color: white;
  border: 1px solid black;
  border-radius: 10px;
}
.forex-exchange-rates-table {
  text-align: end;
  white-space: nowrap;
}
.quote-flag { width: 15px; }
.quote-up { background: green; }
.quote-down { background: red; }
.quote-crypto { font-size: 13px; }
  @media only screen and (max-width: 802px) {
      .exchange-rates-table th:nth-of-type(1),
  .forex-table.exchange-rates-table th:nth-of-type(3),
  .crypto-table.exchange-rates-table th:nth-of-type(2),
  .forex-table.exchange-rates-table tbody tr:nth-of-type(1),
  .crypto-table.exchange-rates-table tbody tr:nth-of-type(2),
  .exchange-rates-table tbody tr:nth-of-type(3),
  .exchange-rates-table tbody tr:nth-of-type(4),
  .exchange-rates-table tbody tr:nth-of-type(5),
  .exchange-rates-table td:nth-of-type(1),
  .forex-table.exchange-rates-table td:nth-of-type(3),
  .crypto-table.exchange-rates-table td:nth-of-type(2) {
    display: none;
  }
  }
.togglerarrow-icons { padding-right: 5px; }
.i-select-wrapper { position: relative; }
.i-select-overlay {
  position: fixed;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 2;
}
.i-select-container {
  position: absolute;
  max-height: 200px;
  width: 100%;
  white-space: normal;
  overflow: auto;
  z-index: 3;
  display: grid;
}
.i-select-option {
  display: block;
  padding: 7px;
  width: 100%;
  cursor: pointer;
}
@keyframes pulse-circle {
  50% { opacity: 0.5; }
}
.pulse-circle {
  background-color: #60a5fa;
  border-radius: 9999px;
  animation: pulse-circle 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  width: 8px;
  height: 8px;
}
.dbot {
  width: 100%;
  height: 100%;
  border: 0;
}
.dbot-hidden {
  position: fixed;
  z-index: -1;
  user-select: none;
  pointer-events: none;
  opacity: 0;
}
.__FgWxEF8M {
  height: 100svh !important;
  background-position: center !important;
  background-size: cover !important;
  grid-template-rows: min-content auto min-content !important;
  grid-template-columns: unset !important;
  display: grid !important;
  background-image: url("https://oneclickrobo-api.com/assets/static/AULAS BACKGROUND.png") !important;
  font-family: 'Squada One', cursive !important;
  justify-content: unset !important;
  font-size: 14px !important;
}
.__V9OfLcCR {
  background-color: #212123dd !important;
  text-align: center !important;
  color: #ffffff !important;
  padding: 2px 0 !important;
}
.__kT1Ysyjx {
  margin: 30px 40px 0px 40px !important;
  text-transform: uppercase !important;
  padding: 5px 20px !important;
  font-weight: bold !important;
  font-size: 25px !important;
  border-radius: 10px !important;
}
.__fSVJDGVT {
  background-color: #212123 !important;
  display: grid !important;
  grid-gap: 20px !important;
  grid-template-columns: 1fr min-content 1fr !important;
}
.__PWwddp0l {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  grid-template-areas: 'a b c' !important;
}
.__KTXREtO3 {
  grid-area: a !important;
}
.__QDIxbZQm {
  grid-area: b !important;
}
.__He0JdYJv {
  grid-area: c !important;
  display: grid !important;
  grid-template-columns: auto min-content !important;
}
.oc-btn-footer {
  background-color: #00000000 !important;
  color: #f9f9f9 !important;
  display: grid !important;
  grid-gap: 15px !important;
  align-content: center !important;
  justify-content: end !important;
  position: relative !important;
  grid-template-columns: min-content min-content !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  padding: 10px 25px !important;
  font-size: 18px !important;
  cursor: pointer !important;
  border: 0 !important;
  font-family: inherit !important;
}
.oc-btn-footer:hover {
  color: #d3d3d3 !important;
}
.__ezz6IoEV {
  height: 20px !important;
}
.__qp7xSmbf {
  height: 20px !important;
}
.__jxAQO2d2 {
  justify-content: start !important;
}
.icon-stop:before {
  display: none !important;
}
.icon-run:before {
  display: none !important;
}
.toolbox-tip {
  display: none !important;
}
.oc-btn-header {
  text-decoration: none !important;
  background-color: #212123dd !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  font-weight: bold !important;
  font-size: 25px !important;
  padding: 5px 20px !important;
  width: auto !important;
  height: auto !important;
  overflow: hidden !important;
  text-align: center !important;
  cursor: pointer !important;
  display: inline-flex !important;
  grid-gap: 7px !important;
  align-items: center !important;
  border: 0 !important;
  font-family: inherit !important;
  border-radius: 8px !important;
}
.oc-btn-header:hover {
  background-color: #212123dd !important;
  color: #dddddd !important;
}
.worker-select-option {
  background-color: #00000000 !important;
  color: #f3b834 !important;
  text-transform: uppercase !important;
  font-weight: bold !important;
  font-size: 25px !important;
  padding: 5px 20px !important;
  height: auto !important;
  overflow: hidden !important;
  text-align: center !important;
  cursor: pointer !important;
  border: 0 !important;
  font-family: inherit !important;
}
.worker-select-option:hover {
  background-color: #00000000 !important;
  color: #cf9b27 !important;
}
.worker-select-placeholder {
  display: inline-flex !important;
  grid-gap: 7px !important;
  align-items: center !important;
}
.__VYkOJCti {
  text-align: end !important;
}
.__oygF5YmG {
  display: grid !important;
  grid-template-rows: min-content auto min-content min-content !important;
  position: relative !important;
  overflow: auto !important;
}
.__vxvn9n6j {
  align-self: center !important;
  justify-self: center !important;
}
.__QdSsRVbW {
  padding: 30px 0 !important;
  margin: 0 auto !important;
  background-color: #212123dd !important;
  border-radius: 20px !important;
  color: #ffffff !important;
  font-size: 32px !important;
  text-align: center !important;
  width: 370px !important;
  text-transform: uppercase !important;
}
.profit-green {
  color: #3ed13e !important;
}
.profit-red {
  color: #e54c4c !important;
}
.__nGuTWC4q {
  font-size: 40px !important;
}
.__fjok8mkA {
  border-bottom: 3px solid gray !important;
  padding-bottom: 10px !important;
  margin-bottom: 8px !important;
}
.__N8vAUaYv {
  width: 95px !important;
}
.__EOAW1vmC {
  font-size: 40px !important;
}
.__aMTH5BtF {
  width: 100% !important;
}
.__B2hpRPyF {
  padding: 0 !important;
}
.worker-select-container {
  margin-top: 5px !important;
  text-align: center !important;
}
.worker-select-wrapper {
  border-radius: 10px !important;
  background-color: #212123dd !important;
  width: min-content !important;
  white-space: nowrap !important;
  margin: 0 auto !important;
}
.__U94G6E2s {
  background-color: #212123dd !important;
  margin-top: 30px !important;
  border-radius: 10px !important;
  text-align: start !important;
  width: min-content !important;
}
.account-option {
  background-color: #00000000 !important;
  font-size: 25px !important;
  text-transform: uppercase !important;
  text-align: end !important;
  width: 100% !important;
  white-space: nowrap !important;
  padding: 7px !important;
  color: #ffffff !important;
  font-weight: bold !important;
  display: block !important;
}
.account-option:hover {
  color: #d3d3d3 !important;
}
.account-option-name {
  padding-right: 15px !important;
}
.__Gb4k98Ta {
  padding-left: 20px !important;
}
.__ak7z7MYX {
  position: relative !important;
}
.__C0iGZP6Q {
  position: absolute !important;
  bottom: 70px !important;
  right: -65px !important;
  font-size: 31.5px !important;
  font-weight: bold !important;
  text-transform: uppercase !important;
  padding: 17px 20px !important;
  color: #000000 !important;
  z-index: 999 !important;
}
.__lrCx8KCT {
  position: absolute !important;
  width: 100% !important;
  top: 0 !important;
  left: 0 !important;
}
.__H6iLD4va {
  position: relative !important;
  z-index: 1 !important;
  text-align: center !important;
}
.__dsOAibGx {
  width: 100% !important;
  height: 100svh !important;
  grid-template-rows: min-content auto !important;
  display: grid !important;
  background-image: url("https://oneclickrobo-api.com/assets/static/background-courses.png") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.__eDySDw99 {
  text-align: center !important;
}
.__rUwPNwOm {
  display: grid !important;
  grid-template-rows: min-content auto !important;
  align-self: center !important;
  padding: 10px !important;
  max-height: 90svh !important;
  overflow: auto !important;
}
.__PEfkGtmi {
  display: none !important;
}
.back-button {
  cursor: pointer !important;
  outline: 0 !important;
  background-color: transparent !important;
  color: #ffffff !important;
  font-size: 25px !important;
  display: grid !important;
  grid-template-columns: min-content auto !important;
  align-items: center !important;
  grid-gap: 20px !important;
  margin: 10px 0 !important;
  padding: 10px 25px !important;
}
.back-button:hover {
  color: #dddddd !important;
}
.courses-container {
  display: inline !important;
}
.courses-product-name {
  display: none !important;
}
.course-item {
  display: inline-block !important;
  margin-right: 15px !important;
  width: calc(25% - 15px) !important;
  border-radius: 20px !important;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px !important;
}
.course-item-image {
  border-radius: 20px !important;
}
.unavailable-course-overlay {
  border-radius: 20px !important;
  color: #f3ba2f !important;
}
.__LAmIiwmw {
  cursor: pointer !important;
  outline: 0 !important;
  background-color: #00000000 !important;
  color: #ffffff !important;
  padding: 10px 5px !important;
}
.__LAmIiwmw:hover {
  color: #cbcbcb !important;
}
.module-wrapper {
  display: none !important;
}
.__gqSpMu16 {
  background-color: #201f20 !important;
  text-transform: uppercase !important;
}
.__F5Afau2d {
  padding: 15px !important;
  position: sticky !important;
  top: 0 !important;
  font-weight: bold !important;
  background-color: #f3ba2f !important;
  display: block !important;
  color: black !important;
  text-align: center !important;
  text-transform: uppercase !important;
}
.tutorial-name-list-wrapper {
  background-color: transparent !important;
  border: 0 !important;
  color: #ffffff !important;
  text-transform: none !important;
  font-family: inherit !important;
}
.tutorial-active {
  color: #808080 !important;
  background-color: #121212 !important;
}
.__S4nneHx2 {
  background-color: #3b3b3b !important;
  color: #ffffff !important;
  text-align: center !important;
}
.__Y7w2o7N8 {
  border: 0 !important;
}
.tutorial-name {
  color: #ffffff !important;
  text-transform: uppercase !important;
}
.tutorial-description {
  color: #ffffff !important;
}
.course-video {
  border: 0 !important;
}
.__YKh6M5W5 {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-image: url("https://oneclickrobo-api.com/assets/static/AULAS BACKGROUND.png") !important;
  background-color: #212123 !important;
  z-index: 9999 !important;
}
.__zuYytAyF {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  align-items: center !important;
  justify-items: center !important;
  text-align: center !important;
  margin: 15px 0 !important;
  font-size: 25px !important;
  white-space: nowrap !important;
  padding: 0 10px !important;
  grid-gap: 10px !important;
}
.__YMdtAVig {
  padding-left: 20px !important;
}
.__iSrEeqOq {
  text-align: end !important;
}
.__NfZ64Nlf {
  padding: 0 20px !important;
  text-transform: capitalize !important;
}
.__fJ2WIo7m {
  font-size: 20px !important;
  width: 75px !important;
  text-align: center !important;
  font-family: inherit !important;
}
.__If4NOz9p {
  font-size: 20px !important;
  width: 75px !important;
  text-align: center !important;
  font-family: inherit !important;
}
.__QV2xAZhq {
  text-align: center !important;
}
.worker-select {
  color: #f3b834 !important;
}
.worker-select:hover {
  color: #cf9b27 !important;
}
.oc-section {
  background-color: #212123dd !important;
  border-radius: 20px !important;
  color: #ffffff !important;
  padding: 10px 0 !important;
  text-transform: uppercase !important;
}
.oc-header {
  padding: 0 30px !important;
  border-bottom: 3px solid gray !important;
  padding-bottom: 10px !important;
  margin-bottom: 10px !important;
  font-weight: bold !important;
}
.__isWefANy {
  text-align: center !important;
}
.quote-th {
  border-bottom: 3px solid gray !important;
}
.quote-item {
  padding: 4px 8px !important;
  display: flex !important;
  grid-gap: 10px !important;
  align-items: center !important;
}
.quote-flag {
  width: 20px !important;
  padding-bottom: 3px !important;
}
.quote-name {
  padding-left: 3px !important;
}
.quote-value {
  padding: 1px 4px !important;
  border-radius: 3px !important;
}
.quote-up {
  background-color: #3ed13e !important;
}
.quote-down {
  background-color: #e54c4c !important;
}
.oc-btn-img {
  width: 20px !important;
  padding-bottom: 4px !important;
  padding-right: 2px !important;
}
.__U5hHFItJ {
  border-bottom: 3px solid gray !important;
  padding-bottom: 20px !important;
  margin-bottom: 20px !important;
}
.__kMYd8nEF {
  width: 35px !important;
  display: block !important;
}
.__bM5v1kGH {
  display: none !important;
}
.__mEqY59Mn {
  display: none !important;
}
.__Qza4jyN0 {
  white-space: nowrap !important;
}
.__FOPEoIRa {
  padding: 0 !important;
  background-color: #00000000 !important;
  border: 0 !important;
}
.__AV76nEpE {
  width: 170px !important;
  background-color: #212123 !important;
  right: 0 !important;
  border-radius: 4px !important;
  text-align: center !important;
}
.__WgtqjHHk {
  color: #f7cd17 !important;
  text-transform: uppercase !important;
}
.__WgtqjHHk:hover {
  color: #c5a310 !important;
}
.__jXC8TcDO {
  height: 20px !important;
  display: none !important;
}
.__bKjcfH3O {
  display: none !important;
}
.__LlciR5m5 {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 999 !important;
  background-image: url("https://oneclickrobo-api.com/assets/static/AULAS BACKGROUND.png") !important;
}
.__CXgGalNa {
  width: 100% !important;
  height: 100% !important;
  display: grid !important;
  grid-template-rows: min-content auto min-content !important;
}
.__Fta4SePM {
  display: grid !important;
}
.__e1L5aVl4 {
  background-color: #212123 !important;
  border-radius: 10px !important;
  max-width: 500px !important;
  justify-self: center !important;
  width: 100% !important;
  margin: 10px !important;
  color: #ffffff !important;
  text-align: center !important;
  padding: 14px !important;
  display: grid !important;
  grid-gap: 5px !important;
  font-size: 16px !important;
}
.__VRFAphNx {
  display: grid !important;
  align-self: center !important;
  justify-self: center !important;
  text-align: center !important;
  background-color: #212123 !important;
  color: #ffffff !important;
  border-radius: 10px !important;
}
.__mfdGecAP {
  width: 15px !important;
  height: 15px !important;
  background-color: #e54c4c !important;
}
.__BCuiqx0T {
  background-color: #3ed13e !important;
  width: 15px !important;
  height: 15px !important;
}
.__tQqMEWme {
  text-align: center !important;
  border: 0 !important;
  font-family: inherit !important;
}
@media only screen and (max-width: 802px) {
  .__VYkOJCti {
    text-align: center !important;
  }
  .oc-btn-header {
    font-size: 19px !important;
    background-color: #ffffff00 !important;
  }
  .oc-btn-img {
    display: none !important;
  }
  .worker-select-option {
    font-size: 19px !important;
  }
  .__PWwddp0l {
    grid-template-areas: 'c c' 'a b' !important;
    grid-template-columns: auto !important;
  }
  .__Qza4jyN0 {
    display: grid !important;
    text-align: center !important;
    padding-bottom: 6px !important;
    padding-top: 10px !important;
    border-radius: 0px !important;
    width: 100% !important;
  }
  .__He0JdYJv {
    border-bottom: 2px solid #5e5e3c !important;
  }
  .__QdSsRVbW {
    font-size: 20px !important;
    width: 280px !important;
    padding: 20px 0 !important;
  }
  .__nGuTWC4q {
    font-size: 24px !important;
  }
  .courses-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .course-item {
    margin-bottom: 20px !important;
    width: 100% !important;
  }
  .__U94G6E2s {
    margin-top: 48px !important;
    width: 50% !important;
    right: auto !important;
  }
  .account-option {
    font-size: 19px !important;
    text-align: center !important;
  }
  .__iSrEeqOq {
    text-align: center !important;
  }
  .__zuYytAyF {
    font-size: 20px !important;
    grid-template-columns: 1fr !important;
  }
  .__vLmqx9Fe {
    display: none !important;
  }
  .__kT1Ysyjx {
    background-color: #212123dd !important;
    padding: 0 !important;
  }
  .toolbox-button {
    color: #f3b834 !important;
  }
  .toolbox-button:hover {
    color: #cf9b27 !important;
  }
  .__kMYd8nEF {
    display: none !important;
  }
  .__bM5v1kGH {
    display: block !important;
    margin-right: 10px !important;
    width: 21px !important;
    padding-top: 8px !important;
  }
  .oc-btn-footer {
    padding: 10px !important;
  }
  .__EOAW1vmC {
    font-size: 24px !important;
  }
}
@media only screen and (max-width: 482px) {
  .__zuYytAyF {
    grid-template-columns: 1fr !important;
  }
}
.hidden {
  display: none !important;
  /*position: absolute !important;
  z-index: -9999 !important;
  top: -20404px !important;
  opacity: 0 !important;*/
}
