.calc-again,
.error-msg-container a {
  text-decoration: none;
}
#err-msg,
#selected-province,
.list-cotainer.list-modal {
  display: none;
}
.cal-input-label,
.country-and-flag,
.list-items,
.tooltiptext-top {
  text-align: left;
}
.error-msg-container,
.switch div {
  text-align: center;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: inherit;
 
}

:root {
  --switches-bg-color: #edf2fa;
  --switches-label-color: #17324b;
  --switch-bg-color: #1c83fc;
  --switch-text-color: white;
  --primary-text-color-breakup: #111639;
  --seconday-text-color-semibold: #1a204a;
  --seconday-text-color-accordian: #656c76;
}
.switches-container {
  display: flex;
  padding: 0;
  position: relative;
  background: white;
  line-height: 2.5rem;
  border-radius: 3rem;
  margin-left: auto;
  margin-top: 24px;
  width: 184px;
  border: 1px solid #25252629;
}
.switches-container input {
  visibility: hidden;
  position: absolute;
  top: 0;
}
.switches-container label {
  width: 50%;
  padding: 0;
  margin: 0;
  text-align: center;
  cursor: pointer;
  color: var(--switches-label-color);
  font-weight: 400;
  font-size: 14px;
  -webkit-tap-highlight-color: transparent;
}
.switch-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  padding: 0.15rem;
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.switch {
  border-radius: 3rem;
  background: linear-gradient(90deg, #9064DA 0%, #2171E0 49.37%, #844EB4 100%);
  height: 100%;
  /* background-color: #252526; */
}
.switch div {
  width: 100%;
  opacity: 0;
  display: block;
  color: var(--switch-text-color);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1) 0.125s;
  will-change: opacity;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
}
.switches-container input:first-of-type:checked ~ .switch-wrapper {
  transform: translateX(0);
}
.switches-container input:nth-of-type(2):checked ~ .switch-wrapper {
  transform: translateX(100%);
}
.switches-container
  input:first-of-type:checked
  ~ .switch-wrapper
  .switch
  div:first-of-type,
.switches-container
  input:nth-of-type(2):checked
  ~ .switch-wrapper
  .switch
  div:nth-of-type(2) {
  opacity: 1;
}
.info-icon-container:hover .tooltiptext-top,
.tool-tip:hover .tooltiptext {
  visibility: visible;
}
.error-text {
  font-weight: 500;
  font-size: 24px;
  line-height: 40px;
  color: rgba(0, 0, 0, 0.87) !important;
  margin-top: 24px;
}
#err-msg {
  color: rgba(0, 0, 0, 0.87);
  font-weight: 500;
  background-color: #fff;
}
.calc-again {
  font-size: 14px;
  color: #0092F4;
  font-weight: 600;
}


.calc-again:hover svg {
  transform: translateX(5px);
}
.calc-again svg {
  transition: all .2s ease-in-out;
  margin-left: 8px;
}

.home-calc-container {
  background-color: transparent !important;
  max-width: 1080px;
  margin: 0 auto;
}
.current-country-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cal-result-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  padding: 24px 30px;
  border-radius: 20px;
  /* border: 1px solid #e4e7ec; */
  column-gap: 60px;
  font-size: 16px;
  color: var(--primary-text-color-breakup);
  line-height: 150%;
  margin-top: 24px;
background-color: white;
box-shadow: 0px 4px 20px -5px #0834521F;

}
div#calculation-wrapper > :first-child:after {
  content: "";
  border-right: 1px solid #e4e7ec;
  height: 80%;
  position: absolute;
  right: 50%;
}
.accordian-section,
.salary-contribution {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.calc-select,
li.ml-auto {
  font-weight: 600;
  text-wrap: nowrap;
}


.salary-contribution h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 12px;
  font-family: Avenirnextworld, Arial, sans-serif;

}

.d-flex-new.justify-content-space-between.acc-item-container {
  padding-left: 8px;
}
.province-input-wrapper,
.sal-cal-country-wrapper {
  position: relative;
}
li.list-items.active {
  font-weight: 600;
  background-color: #ddd;
}
.list-cotainer {
  position: absolute;
  top: 50px;
  width: 100%;
  max-height: 200px;
  list-style-type: none;
  overflow-y: auto;
  background: #fff;
  padding-left: 0;
  border: 1px solid rgba(6, 19, 45, 0.15);
  border-radius: 4px;
  z-index: 1;
}
.breakups-main,
.list-modal {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--seconday-text-color-accordian);
}
.list-cotainer li {
  padding-left: 20px;
}
.list-items {
  margin: 10px 0;
  color: #000;
  opacity: 0.6;
  font-size: 16px;
  line-height: 1.5;
  padding: 5px 0 5px 5px;
}
.cont-breakup,
ul.d-flex-new.justify-content-space-between.acc-item-container {
  padding-top: 0;
}
.list-cotainer li:hover {
  background-color: #add8e6;
  cursor: pointer;
}
.list-items:hover {
  color: #17324b;
  opacity: 1;
  cursor: pointer;
}
#currency-input {
  cursor: pointer;
  line-height: normal;
  font-weight: 600;
}
.tool-tip {
  position: relative;
  display: flex;
  align-items: center;
}
.tool-tip .tooltiptext {
  visibility: hidden;
  width: 340px;
  background-color: #0092F4;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: -77px;
  font-size: 14px;
  line-height: 140%;
}
.tool-tip svg {
  margin-top: 0 !important;
}
.d-flex-align-center img:hover {
  background: #e2e4f0;
}
.d-flex-align-center img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  padding: 3px;
  cursor: pointer;
  margin-left: 2px;
}
.cost-label-align,
.d-flex-align-center,
.employment-cost,
.new-heading-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 8px;
}
.cost-label-align {
  display: flex;
}
.accordian-main.d-flex-new > .d-flex-new,
.cost-label-align > .d-flex-new,
.employment-cost > .d-flex-new {
  font-size: 16px;
  font-weight: 600;
  color: var(--seconday-text-color-semibold);
}
.inner-breakup {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #838d95;
  gap: 8px;
}
.inner-breakup ul{
  width: 100%;
}
.cont-breakup {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s linear;
  height: 0;
  overflow: hidden;
  padding-bottom: 0;
  margin: 16px 0 0;
}
.cont-breakup.hidden {
  border: 0;
  margin-top: 0;
}
.rotate-180 {
  transition: 0.4s;
  transform: rotate(180deg);
}
ul.d-flex-new.justify-content-space-between.acc-item-container li {
  list-style: none;
  line-height: 150%;
}
.skuad-offer-label {
  background: linear-gradient(85.91deg, #faf4fd -31.4%, #f0f9fd 57.96%, #f1fcfb 146.43%);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 12px;
  color: var(--_payo-variables---payo-body-color);
  font-weight: 600;
}
.d-flex-new.offer-active {
  flex-direction: column;
  column-gap: 10px;
  flex-direction: row-reverse;
  align-items: center;
}
.old-skuad-fee {
  text-decoration: line-through;
  color: #656c76;
  font-size: 12px;
  line-height: 15.12px;
}
.country-and-flag {
  display: flex;
  gap: 16px;
}
.country-and-flag h4 {
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-family: Avenirnextworld, Arial, sans-serif;
}

.employment-cost-label {
  font-weight: 600;
}
#current-country-flag {
  width: 28px;
  height: 28px;
  margin-left: 8px;
}
input#calc-amount-input {
  background-image: unset !important;
  border-left: 1px solid #e4e7ec;
}
.province {
  border: 0;
  border-left: 1px solid #e4e7ec;
}
.color-dark.active {
  color: #1a204a;
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.lm-toggle-text {
  color: #1a204a66;
}
.download-pdf-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  /* background-color: #edf2fa; */
  padding: 16px 30px;
  border-radius: 10px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}

.download-pdf-wrapper:after {
    content: "";
    width: 300px;
    height: 100px;
    background: linear-gradient(252.93deg, #D054CE 33.59%, #0092F4 59.88%, #20DC86 87.87%);
    position: absolute;
    right: 0;
    filter: blur(140px);
    z-index: -1;
}
.download-pdf-wrapper:before {
    content: "";
    width: 300px;
    height: 100px;
    background: linear-gradient(252.93deg, #D054CE 33.59%, #0092F4 59.88%, #20DC86 87.87%);
    position: absolute;
    /* right: 0; */
    filter: blur(140px);
    z-index: -1;
}

.download-pdf-dsc {
  font-size: 16px;
  line-height: 24px;
  max-width: 70%;
}
.calculator-dsc span,
.download-pdf {
  line-height: 16.94px;
  font-size: 14px;
  font-weight: 600;
}
.download-pdf {
  background-color: #252526;
  border-radius: 60px;
  color: #fff;
  padding: 6px 16px;
  text-decoration: none;
  align-items: center;
  min-width: 153px;
}

.download-pdf:before {
    content: "";
    background: url(https://cdn.prod.website-files.com/663a4b8…/67d9990…_half-rounded-light-redish.svg);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    z-index: -1;
}
.download-pdf img {
  margin-right: 8px;
  width: 16.67px;
  height: 16px;
}
.salary-contribution > :last-child {
  border-top: 1px dashed #1a204a;
  padding-top: 12px;
  margin-top: auto;
}
.calculator-dsc-container {
  margin-top: 43px;
  color: #111639;
}
.calculator-dsc-container ul {
  padding-left: 0;
}
.calculator-dsc {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  margin-top: 5px;
  list-style: none;
}
.is-expat-text{
  color: #252526 !important;
}
.is-expat-radio > input[type="radio"] {
  position: relative;
  appearance: none;
  border: 1.5px solid #d9dade;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  background-color: transparent;
}
.is-expat-radio > input[type="radio"]:checked {
  border-color: var(--_payo-variables---payo-btn-hover);
}
.is-expat-radio > input[type="radio"]:checked:after {
  position: absolute;
  content: "";
  background-color: var(--_payo-variables---payo-btn-hover);
  width: 10px;
  border-radius: 50%;
  height: 10px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.is-expat-radio > span {
  font-size: 14px;
  font-weight: 600;
}
#read-more-container {
  display: none !important;
}
.currecny-select {
  border-right: 0 !important;
}
input::-webkit-contacts-auto-fill-button {
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}
input::-webkit-textfield-decoration-container {
  visibility: hidden;
}
.currency-amt-container{
  border: unset !important;
}
.w-input, .w-select,.province,.currency-amt-container-2{
  border-color: #252526 !important;
}
input#state-input{
  border: 1px solid #252526;
}

.calc-select:focus, .currency-amt-container-2:focus, .w-input:focus,.w-select:focus {
  border-color: unset;
}

.calc-select.calc-form-input::placeholder, .calc-select::placeholder, .calc-select.province::placeholder{
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
}
@media only screen and (max-width: 1140px) {
  .cal-result-container {
    column-gap: 48px;
  }
  .d-flex-new.justify-content-space-between.acc-item-container {
    display: flex;
  }
}
@media only screen and (max-width: 940px) {
  .cal-result-container {
    column-gap: 16px;
  }
}
@media only screen and (max-width: 820px) {
  div#calculation-wrapper > :first-child:after {
    content: "";
    border: none;
  }
  #current-country-flag {
    width: 24px;
    height: 24px;
  }
  .salary-contribution {
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #e4e7ec;
  }
  .duration-salary,
  .right-side-value {
    white-space: nowrap;
  }
  .cal-result-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    row-gap: 16px;
    border: none;
    padding: 0;
    border-radius: 0;
  }
  .country-and-flag h4 {
    display: block;
  }
}
@media only screen and (max-width: 568px) {
  .current-country-wrapper,
  .download-pdf-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .download-pdf-wrapper,
  .salary-contribution {
    padding: 16px;
  }
  .country-and-flag {
    text-align: center;
  }
  .country-and-flag span {
    font-size: 26px;
  }
  .currecny-select {
    min-width: 90px;
  }
  .cal-result-container {
    font-size: 14px;
    overflow: hidden;
  }
  .accordian-main.d-flex-new > .d-flex-new,
  .cost-label-align > .d-flex-new,
  .employment-cost > .d-flex-new {
    font-size: 14px;
  }
  .salary-contribution h2 {
    font-size: 18px;
  }
  .accordian-main,
  .cost-label-align,
  .d-flex-align-center,
  .employment-cost,
  .new-heading-wrapper {
    gap: 5px;
  }
  .dis-offer-active {
    align-items: flex-start;
    gap: 4px;
  }
  .breakups-main,
  .list-modal {
    font-size: 12px;
  }
  .switches-container {
    margin-right: auto;
  }
  .tool-tip .tooltiptext {
    width: 250px;
  }
  .d-flex-align-center.dis-offer-active{
    flex-direction: column;
  }
  .d-flex-new.offer-active {
    flex-direction: column-reverse;
    align-items: end;
}
  .salary-contribution:last-child:nth-child(2) .accordian-main {
    align-items: center;
  }
  .salary-contribution:last-child:nth-child(2) .skuad-fee {
    max-width: 125px;
  }
  .country-and-flag h4 {
    column-gap: 5px;
  }

  .download-pdf-dsc{
    max-width: 100%;
  }

  .home-calc-container{
    padding-top: 48px;
  }
}
