@import url("https://fonts.googleapis.com/css?family=Baloo Bhai 2:300,300i,400,400i,700,700i&display=swap");
:root{
	--main-color: #037957;
	--main-color-alpha: rgb(4 150 105 / 50%);
	--circle-color: #049669;
	--progess-bar-color: rgba(4 150 105 / 100%);
	--color-white: #f9f9f9;
	--border-blue: #0077C0;
	--main-bg: url('./images/hapy_girl.jpg');
	/* --person-image: url('./images/traveler.png'); */
	--logo-image: url('./images/logo.svg');
	--font-sans: "Baloo Bhai 2", "Odoo Unicode Support Noto", sans-serif;
	--body-font-family: var(--font-sans);
}

body{
	margin: 0px;
	/* height: 100%; */
	overflow-x: hidden;
	font-family: var(--body-font-family);
	background-repeat: no-repeat;
	background-size: cover;
	background-color: var(--main-color-alpha)
}

body:not(:has(.img-container)){
	background-image: var(--main-bg);

}

.home {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
	height: 100%;
}

.home-container {
  display: grid;
  grid-template-columns: 70% 30%;
	width: 100%;
	height: 100vh;
}

img.background-img {
	/* content: var(--main-bg); */
	content: none;
	display: none;
}

div.container::before, div.container-frame::before{
    content: '\00a0';
    background-image: var(--person-image);
    position: absolute;
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    width: 100%;
    height: 50%;
	bottom: 0;
}

.img-container {
  background-image: var(--main-bg);
  display: grid;
  height: 100%;
  width: 100%;
  grid-template-rows: 1fr 2fr 1fr;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.bottom-text-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.bottom-text {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-white);
  margin: 0;
  font-weight: normal;
}

.title {
  align-self: center;
  font-size: 3rem;
  color: var(--color-white);
  margin: 0;
  font-weight: bold;
}

.title-gray {
  color: gray;
}

.title-dark {
  color: black;
}

.subtitle {
  align-self: center;
  font-size: 3rem;
  color: var(--color-white);
  margin: 0;
  font-weight: normal;
}

.form-container {
  background-color: var(--color-white);
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 30px 0px 30px;
  z-index: 99;
}

.pig-image {
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.input-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.input-text-container {
  display: flex;
  flex-direction: column;
  margin: 10px;
  width: 100%;
}

.input-group {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem 0rem;
  font-size: 1rem;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border-radius: 0.25rem 0 0 0.25rem;
  border-top: 1px solid;
  border-left: 1px solid;
  border-bottom: 1px solid;
  border-color: #ced4da;
}

.input-text {
  width: 100%;
  height: 35px;
  text-indent: 10px;
  cursor: pointer;
  border-radius: 5px;
  outline: none;
  line-height: 1.5;
  color: #212529;
  border: 1px solid #ced4da;
}

.input-group > .input-text {
  position: relative;
  flex: 1 1 auto;
  border-radius: 0 0.25rem 0.25rem 0;
  width: 1%;
  min-width: 0;
}

.form-span {
  padding: 15px;
  font-size: 15px;
  text-align: center;
}

.checkbox-text-offer {
  font-size: 15px;
}

.checkbox {
  cursor: pointer;
}

.button-finish {
  margin: 5px;
  width: 140px;
  padding: 10px;
  cursor: pointer;
  background-color: white;
  border-radius: 5px;
  color: black;
  border: 1px solid black;
  font-size: 1.2rem;

}

.form-span-title {
  padding: 15px;
  font-size: 1.2rem;
  text-align: center;
}

.form-data-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.form-home-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.input-text-fullName {
  width: 80%;
  height: 35px;
  text-indent: 10px;
  cursor: pointer;
  border-radius: 5px;
  outline: none;
  line-height: 1.5;
  color: #212529;
  border: 1px solid #ced4da;
}

.label-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.label-value {
  border-radius: 5px;
  font-size: 15px;
  text-align: center;
  height: 40px;
  align-items: center;
  display: flex;
  justify-content: center;
  color: black;
  font-weight: bold;
}

.slider-home {
  appearance: none;
  width: 100%;
  background: #dee2e6;
  height: 5px;
  border-radius: 10px px;
  cursor: pointer;
}

.span-value {
  padding: 0px 0px 5px 0px;
  font-size: 15px;
  text-align: center;
}

.logo-img {
  width: auto;
  height: 100%;
}

.logo-img-form {
  position: absolute;
  margin: 30px;
  width: 120px;
  margin-top: 1.5rem !important;
}

iframe#CirFrame {
  height: 100%;
  width: 100%;
  background-color: white;
  border: none;
}

.logo-header {
  display: flex;
  justify-content: center;
  z-index: 2;
}

.checkbox-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.checkbox-text {
  font-size: 16px;
  padding-left: 5px;
}

.checkbox-text-title {
  font-size: 15px;
}

.button-container {
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-home {
  font-weight: 400;
  line-height: 1.5;
  color: white;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  width: 100%;
  background-color: var(--main-color);
  border: 1px solid transparent;
  font-size: 16px;
  border-radius: 0.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  z-index: 1;
}

.info-container {
  font-size: 0.9rem;
  margin: 15px;
  display: flex;
  width: 100%;
}

.info-text {
  text-align: center;
  color: #ccc;
  font-size: 0.875em;
}

.user-data-title {
  font-size: 16px;
  text-align: center;
  padding: 10px;
}

.user-data-span {
  font-size: 15px;
  text-align: center;
  padding: 10px;
  font-weight: normal;
}

.background-img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.bank-container {
  width: 100%;
  max-width: 35rem;
  height: 800px;
  min-height: 600px;
  display: flex;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  flex-direction: column;
	padding: 20px;
}

.bank-header {
  position: absolute;
  top: 0;
  margin: 30px;
  left: 0;
}

.data-container {
  display: grid;
  align-items: center;
  z-index: 1;
  background-color: white;
  height: 100%;
  width: 100%;
  grid-template-rows: 1fr 2fr 1fr;
}

.confirm-container {
  display: grid;
  align-items: center;
  z-index: 1;
  background-color: white;
  height: 100%;
  width: 100%;
  grid-template-rows: 1fr 1fr 1fr 1fr;
}

.button-redirect-container {
  display: flex;
  align-items: start;
  justify-content: center;
  height: 100%;
}

.button-redirect-back {
  margin: 5px;
  width: 140px;
  padding: 10px;
  cursor: pointer;
  background-color: #0092cd;
  border-radius: 5px;
  color: white;
  border: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-redirect-next {
  margin: 5px;
  width: 140px;
  padding: 10px;
  cursor: pointer;
  background-color: var(--main-color);
  border-radius: 5px;
  color: white;
  border: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-text-work {
  text-indent: 15px;
  width: 100%;
  height: 30px;
  border-radius: 5px;
}

.widget-container {
  width: 100%;
  height: 100%;
}

.widget-container-mbbx {
  width: 100%;
  height: 100%;
  position: relative;
}

.container-frame {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  align-items: center;
  overflow-x: hidden;
  flex-direction: column;
}

#mbbx-container {
  background: none !important;
  z-index: 1 !important;
  position: absolute;
}

.mobbex-container {
  display: flex;
  width: 600px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 600px;
  padding: 30px;
  z-index: 1;
  margin-top: 70px;
  flex-direction: column;
}

.mobbex-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: white;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 10px;
}

.img-header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.frame {
  display: flex;
  align-items: center;
  z-index: 1;
  background-color: white;
  height: 100%;
  width: 100%;
  flex-direction: column;
  position: relative;
}

.range-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-responsive {
	display: none;
	justify-content: start;
	/* background-color: var(--color-white); */
	background-color: transparent;
	text-align: start;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	height: auto;
}

.header-responsive a.navbar-brand{
	text-decoration: none;
	color: #F5F9F9;
	font-size: 1.54166667rem;
	font-weight: bolder;
	margin-bottom: 5px;
	padding-left: 1rem;
	padding-top: 0.5rem;
	padding-right: 1rem;
	padding-bottom: 0.5rem;
}

.header-responsive-error {
  display: none;
}

.header-responsive-home {
  display: none;
  grid-column: 1;
}

.question-container {
  width: 100%;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.question-home-container {
  width: 100%;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}

.span-container-offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.span-offer-title {
  font-size: 16px;
  text-align: center;
  padding: 10px;
  font-weight: normal;
}

.user-data-container {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  width: 80%;
  height: 50%;
  grid-gap: 10px;
}

.user-data {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.error-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.error-span {
  color: red;
  font-size: 12px;
  padding-top: 5px;
  transition: all 1s;
}

.offer-status {
  appearance: none;
  width: 50%;
  background: #dee2e6;
  height: 5px;
  border-radius: 10px;
  margin-right: 10px;
  cursor: pointer;
}

.offer-details-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.offer-details {
  width: 100%;
  height: 100%;
}

.offer-value {
  background: #37a7de;
  width: 60px;
  border-radius: 5px;
  font-size: 15px;
  text-align: center;
  height: 40px;
  align-items: center;
  display: flex;
  justify-content: center;
  color: white;
}

.description-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
}

.modal-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.modal {
  position: absolute;
  background-color: white;
  width: 80%;
  height: 85%;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 10px;
  transition-delay: 2s;
}

.modal-content {
  display: grid;
  grid-template-rows: 1fr 12fr 1fr;
  height: 100%;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem 1rem;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.tabs-container {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin-top: 0;
}

.tablink {
  padding: 0.5rem 1rem;
  color: var(--main-color);
  font-size: 16px;
  font-weight: normal;
  cursor: pointer;
  border-bottom: 1px solid #dee2e6;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}

.tablink:hover {
  border: 1px solid #dee2e6;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.tab-selected {
  background: 0 0;
  border: 1px solid #dee2e6;
  border-bottom: 1px solid white;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.tabcontent {
  display: grid;
  grid-template-rows: 0fr 1fr;
  overflow-y: scroll;
}

.modal-title-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
}

.modal-title {
  padding-left: 20px;
  font-size: 1.2rem;
  text-align: center;
}

.modal-text-container {
  text-align: start;
  padding: 0px 30px 0px 30px;
}

.modal-text {
  font-size: 15px;
  font-weight: normal;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.close-button {
  background-color: #6c757d;
  cursor: pointer;
  color: #fff;
  font-weight: normal;
  padding: 10px 20px;
  border-radius: 7px;
  border: none;
  font-size: 16px;
}

.end-container {
  background-color: white;
  height: 100%;
  width: 100%;
  /* grid-template-rows: 1fr 1fr 1fr; */
  /* display: grid; */
  display: flex;
  justify-content: center; 
  flex-direction: column;
}

.end-text-container {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
  margin: 0;
  height: 100%;
}

.end-pig-container {
  display: flex;
  justify-content: center;
  margin: 0;
  align-items: baseline;
}

.end-pig-image {
  display: flex;
  justify-content: center;
  width: 70px;
  padding: 20px;
}

.image-gray {
  filter: grayscale(100%);
}

.end-subtitle-container {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.logo-responsive.nav {
  height: 100px;
}

.logo-responsive:not(.nav){
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 1.5rem !important;
}

.logo-responsive, .logo-image, .logo-img-form{
	content: var(--logo-image);
	height: 75%;
}

.end-subtitle {
  padding: 15px;
  font-size: 1.2rem;
  text-align: center;
  font-weight: normal;
}

.bottom-offer-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.button-text {
  text-align: center;
  font-weight: normal;
}

.terms-text {
  color: var(--main-color);
  cursor: pointer;
  font-weight: bold;
}

.custom-loader-load {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(farthest-side, white 94%, #0000) top/4px 4px
      no-repeat,
    conic-gradient(#0000 30%, white);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 4px), #000 0);
  animation: s3 1s infinite linear;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes s3 {
  100% {
    transform: rotate(1turn);
  }
}

.container-frame .steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.form-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

.form-header .steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  height: 100%;
}

.step-container {
  max-width: 400px;
  width: 100%;
  z-index: 1;
}

.container .steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.steps .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: #e9ecef;
  border-radius: 50%;
  font-size: 1.2rem;
}

.steps .circle-active {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: var(--circle-color);
  border-radius: 50%;
  font-size: 1.2rem;
  color: white;
}

.steps .circle-active .svg-check {
  display: var(--fa-display, inline-block);
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
}
.steps .progress-bar {
  position: absolute;
  height: 4px;
  width: 100%;
  background: #e9ecef;
  z-index: -1;
}

.progress-bar .indicator {
  position: absolute;
  height: 100%;
  width: 0%;
  background: var(--progess-bar-color);
}

.progress-bar .indicator-step-2 {
  position: absolute;
  height: 100%;
  width: 50%;
  background: var(--progess-bar-color);
}

.progress-bar .indicator-step-3 {
  position: absolute;
  height: 100%;
  width: 100%;
  background: var(--progess-bar-color);
}

.progress-bar .indicator-step-4 {
  position: absolute;
  height: 100%;
  width: 100%;
  background: var(--progess-bar-color);
}

.progress-bar .indicator-step-5 {
  position: absolute;
  height: 100%;
  width: 100%;
  background: var(--progess-bar-color);
}


@media only screen and (max-width: 821px) {
  .header-img {
    width: 115px;
    margin-top: 1.5rem !important;
  }
  .container-frame {
    justify-content: flex-end;
  }

  .header-responsive {
    width: 100%;
    max-height: 150px;
    display: flex;
    z-index: 1;
  }

  .header-responsive-error {
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: fixed;
    top: 0;
  }

  .tabs-container {
    justify-content: center;
  }

  .modal-title {
    font-size: 14px;
    padding: 0;
  }

  .modal-text {
    font-size: 12px;
  }

  .modal-title-container {
    justify-content: center;
  }

  .modal-footer {
    justify-content: center;
  }

  .logo-img {
    display: none;
  }

  .step-container {
    width: 70%;
    position: relative;
    padding-top: 0px;
  }

  .logo-img-form {
    display: none;
  }

  .home-container {
    display: flex;
    flex-direction: column;
    order: 1;
  }

  .info-container {
    position: inherit;
  }

  .form-container {
    padding: 0px 30px 30px 30px;
  }

  .logo-responsive{
	height: 110px;
  }

  .checkbox-container {
    width: auto;
    padding: 20px;
  }

  .pig-image {
    position: inherit;
    padding: 10px;
  }

  .button-home {
    width: 60%;
  }

  .img-container {
	display: none;
    order: 2;
  }

  .background-img {
    position: absolute;
  }

  .bank-container {
    bottom: 0;
    justify-content: center;
    align-items: center;
  }

  .mobbex-container {
    width: 80%;
    height: 70%;
    margin: 20px;
    bottom: 0;
    justify-content: center;
    align-items: center;
  }

  .offer-value {
    width: 50px;
    height: 35px;
    font-size: 12px;
  }

  .span-offer-title {
    font-size: 15px;
  }

  .form-span-title {
    font-size: 15px;
  }
  .form-span {
    font-size: 12px;
  }

  .button-redirect {
    width: 120px;
    font-size: 14px;
  }

  .button-finish {
    width: 120px;
  }

  .mobbex-embed-fw-content {
    z-index: 1;
  }

  .frame {
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .form-header {
    flex-direction: column;
  }

	.home-container, .form-container{
		height: 100%;
	}
}

@media only screen and (max-width: 1200px) {
	.home-container{
		grid-template-columns: 50% 50%;
	}
}

@media only screen and (max-width: 1005px) {
	div.container::before, div.container-frame::before{
		display: none;
	}

	.home-container{
		grid-template-columns: auto;
	}

	.logo-header {
		display: flex;
		justify-content: center;
		display: none;
	}

	.logo-img {
		width: 50%;
	}


	.bank-header{
		display: none;
	}

  .bank-container {
    bottom: 0;
		justify-content: center;
    align-items: center;
    display: flex;
  }

  .mobbex-container {
    height: 70%;
    margin: 10px;
    bottom: 0;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .header-responsive {
    width: 100%;
    max-height: 150px;
    display: flex;
    z-index: 1;
  }

  .checkbox-text {
    font-size: 14px;
  }

  .header-container {
    width: 100%;
  }

  .background-img {
    position: absolute;
  }

  .form-header {
    flex-direction: column;
  }

  .step-container {
    width: 80%;
    position: relative;
    padding-top: 0px;
  }

  .logo-img-form {
    margin: 0;
    margin-top: 0 !important;
  }

  .title {
    font-size: 45px;
  }

  .subtitle {
    font-size: 45px;
  }
}

@media only screen and (max-width: 600px) {
	.header-responsive {
		justify-content: center;
	}

	.home{
		height: auto;
	}

  .bank-container {
    justify-content: center;
    align-items: center;
		padding: 0;
  }

  .mobbex-container {
    width: 90%;
    height: 65%;
    padding: 20px;
    margin: 20px;
    bottom: 0;
    justify-content: center;
    align-items: center;
  }

  .header-responsive {
    width: 100%;
    max-height: 150px;
    display: flex;
    z-index: 1;
  }

  .header-responsive a.navbar-brand{
	padding-left: 0;
	padding-right: 0;
  }

  body {
    overflow-x: hidden;
    overflow-y: visible;
  }

  .span-offer-title {
    padding: 0;
  }

  .frame {
    height: 100%;
  }

  .mobbex-embed-fw-content {
    z-index: 1;
    padding-bottom: 20px;
  }

  .steps .circle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .steps .circle-active {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 375px) {
	.home-container{
		height: auto;
	}
  .widget-container {
    width: 100%;
  }

  .button-redirect-next {
    width: 90px;
    font-size: 12px;
  }

  .button-redirect-back {
    width: 90px;
    font-size: 12px;
  }

  .form-span-title {
    font-size: 14px;
  }

  .user-data-span {
    font-size: 12px;
  }

  .user-data-title {
    font-size: 14px;
  }

  .input-text-fullName {
    font-size: 12px;
  }

  .mobbex-container {
    margin: 10px;
    height: 70%;
  }

  .user-data-container {
    grid-gap: 0px;
  }

  .mobbex-embed-fw-content {
    z-index: 1 !important;
  }
}



/******** Chrome, Safari, Opera and Edge Chromium styles ********/

/* slider thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  margin-top: -4px; /* Centers thumb on the track */
  background-color: var(--circle-color);
  border-radius: 0.5rem;
  height: 1rem;
  width: 1rem;
}

input[type="range"]:focus::-webkit-slider-thumb {
  outline: 3px solid var(--circle-color);
  outline-offset: 0.125rem;
}

/*********** Firefox styles ***********/
/* slider thumb */
input[type="range"]::-moz-range-thumb {
  background-color: var(--circle-color);
  border: none; /*Removes extra border that FF applies*/
  border-radius: 0.5rem;
  height: 1rem;
  width: 1rem;
}

input[type="range"]:focus::-moz-range-thumb{
  outline: 3px solid var(--circle-color);
  outline-offset: 0.125rem;
}