@font-face {
  font-family: 'Nunito';
  src: url("../fonts/Nunito-Regular.woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'OfficeCode';
  src: url("/assets/fonts/officecodepro-medium.woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Young';
  src: url("/assets/fonts/young.woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'lexend';
  src: url("/assets/fonts/Lexend-SemiBold.woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'lexend';
  src: url("/assets/fonts/Lexend-ExtraBold.woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'lexend';
  src: url("/assets/fonts/Lexend-Black.woff2");
  font-weight: 900;
  font-style: normal;
}

body{
  font-family: young;
  display: flex;
align-items: center;
flex-direction: column;
background: #464BFF08;
}

.no-scroll {
  overflow: hidden;
}
header {
  position: fixed;
  display: flex;
  align-items: center;
  top: 0;
  right: 0;
  left: 0;
  height: 60px;
  box-shadow: #464BFF2E 0px 1px 4px;
  background: #fff;
  z-index: 10;
}
header img {
  width: 60px;
height: auto;
transition: .3s;
}
.home-link {
  cursor: help;
}
.header-btns-container {
  position: absolute;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .3em;
  gap: .15em;
  border-radius: .5em;
  transition: .2s;
  outline: none;
}
.quick-header-btn-design-one {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  outline: none;
  transition: .2s;
}
.quick-header-btn-design-one svg {
  fill: #4F5163;
  width: 45px;
  height: auto;
}
.search-input-wrap {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: .5em;
  height: 70px;
  transform: translateY(-100%);
  background: #fff;
  z-index: 72;
  transition: .25s;
}
.search-input-wrap.active {
  transform: translateY(0);
}
.close-search-wrap {
  width: 40px;
  height: 40px;
  margin-left: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  border: none;
  transition: .12s;
}
.close-search-wrap:hover {
  background: #9597AD1A;
}
.close-search-wrap svg {
  fill: #4F5163;
  width: 23px;
  height: 23px;
}
.search-wrapper {
  position: relative;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#searchInputIcon {
  position: absolute;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #6C6D6F;
  border: none;
  outline: none;
  transition: .4s;
}
.searchBtn-2:active {
  transform: scale(.9);
}

.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  bottom: 0;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1001;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.2);
overflow-y: auto;
font-family: 'young';
}
.side-nav.active {
  transform: translateX(0);
}

.close-nav-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  transition: .07s;
  background: transparent;
  margin-bottom: 1em;
}
.close-nav-btn:hover{
  background: #9597AD26;
}
.close-nav-btn svg {
  fill: #4F5163;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
#right-chev-svg{
  position: absolute;
  right: 0;
  fill: #4F516370;
}

.side-nav a {
  margin: .5rem 0;
  display: flex;
align-items: center;
gap: 1.1rem;
padding: .5em;
font-weight: 400;
font-size: .9em;
color: #4F5163;
text-decoration: none;
cursor: none;
transition: .3s;
border-bottom: 1px solid #4F516330;
width: 90%;
position: relative;
}
.side-nav a svg{
  width: 20px;
height: auto;
padding: .4em;
border-radius: 50%;
fill: #55606c;
display: block;
}
.favourites #favorites-svg{
  fill: #464BFF;
}
#settings-svg{
  fill: #2E32CC;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.sec-one{
  padding-top: 7em;
  width: 95%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.last-updated-text{
  font-size: .85em;
color: #42445ACC;
margin-bottom: .5em;
}
.hero-sec{
  max-width: 550px;
}
.hero-text-wrap{
  font-weight: 900;
  font-size: 2em;
}
.calculator-info-p{
  line-height: 1.5;
  font-size: .92em;
  color: #42445ACC;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  font-family: "Young";
}

.hero-sec-one {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5em 1em;
}
#hero-h1 {
  display: flex;
  align-items: baseline;
  gap: 0.3em;
  font-size: 1.7em;
  font-weight: 800;
  color: #1f1f1f;
  margin: 0;
  font-family: lexend;
}

#search-global-input{
  background: #335FCB0D;
  border: 1.5px solid #4F516324;
  padding: .5em;
  height: 2em;
  width: 90%;
  border-radius: 6px;
  outline: none;
  transition: .3s;
}
#search-global-input:focus{
  border: 1.5px solid #464BFF;
}
.result {
font-weight: 400;
color: #464BFF;
transition: .3s;
}
.result:focus{
  color: #000!important;
}
.result.flashResult{
  color: #000;
  transition: color 0.4s ease;
}

.container {
       width: 90%;
       max-width: 550px;
       position: relative;
       background: #fff;
border-radius: 20px;
border: 1px solid #42445A1C;
padding: 15px;
box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px;

 }
.container h2 {
  font-size: 1em;
}
.overlay-blocker {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: transparent;
  pointer-events: all;
}
 .checkbox-wrapper-toggle{
   transform: translate(10px);
}
  .checkbox-wrapper-toggle .for-toggle-checkbox{
    appearance: none;
    background-color: #dfe1e4;
    border-radius: 72px;
    border-style: none;
    flex-shrink: 0;
    height: 20px;
    margin: 0;
    position: relative;
    width: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    border: none!important;
  }

  .checkbox-wrapper-toggle .for-toggle-checkbox::before {
    bottom: -6px;
    content: "";
    left: -6px;
    position: absolute;
    right: -6px;
    top: -6px;
    
  }

  .checkbox-wrapper-toggle .for-toggle-checkbox, .checkbox-wrapper-toggle .for-toggle-checkbox::after {
    transition: all 100ms ease-out;
    
  }

  .checkbox-wrapper-toggle .for-toggle-checkbox::after {
    background-color: #fff;
    border-radius: 50%;
    content: "";
    height: 14px;
    left: 3px;
    position: absolute;
    width: 14px;
  }

  .checkbox-wrapper-toggle input[type=checkbox] {
    cursor: default;
  }

  .checkbox-wrapper-toggle .for-toggle-checkbox:hover {
    background-color: #c9cbcd;
    transition-duration: 0s;
    
  }

  .checkbox-wrapper-toggle .for-toggle-checkbox:checked {
    background-color: #464BFF;
    
  }

  .checkbox-wrapper-toggle .for-toggle-checkbox:checked::after {
    background-color: #fff;
    left: 13px;
    
  }

  .checkbox-wrapper-toggle :focus:not(.focus-visible) {
    outline: 0!important;
    
  }

  .checkbox-wrapper-toggle .for-toggle-checkbox:checked:hover {
    background-color: #464BFF;
    border: none!important;
  }
.expanded-input-option-svg {
  transition: transform 0.3s ease;
}

.expanded-input-option-svg.rotated {
  transform: rotate(90deg);
  fill: #464BFF;
background: #464BFF29;
}
.input-options {
  position: absolute;
  top: 35px;
  background: #fff;
  padding: 12px;
  width: 250px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 999;
  pointer-events: none;
  user-select: none;
}
.input-options label{
  color: #575865;
}
.input-options .input-options-item{
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 20px;
  transition: .2s;
  padding: 13px;
  border-radius: 8px;
}
.input-options .input-options-item:hover {
  background: #42445A12;
}

.input-options .input-options-item .description-svg{
  fill: #575865;
  height: 19px;
  pointer-events: none;

}

.input-options.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.option-name {
  font-family: "young";
  color: #575865;
font-size: 15px;
letter-spacing: .3px;
}
  #input-tip-icon{
          fill: #464BFF99;
          transition: .2s;
        }
        #input-tip-icon:active {
        
          transform: scale(.9);
      }
      .indicate-save-inputs-svg{ 
        fill: #464BFFB0;
        position: absolute;
        right: 25px;
      }
      .expanded-input-option-svg{
      fill: #55606c;
      padding: 0px;
      border-radius: 8px;
      transition: .3s;
      height: 20px;
      position: absolute;
      right: 0;
      }
      .expanded-input-option-svg:hover{
  fill: #464BFF;
  background: #464BFF29;
      }

.input-group-main-wrap{
  display: flex;
}
.input-group-main-wrap .input-group{
  overflow: hidden;
  padding: 5px;
}
.input-group-main-wrap .input-group input {
  width: 50%;
  text-align: center;
}
.input-group-main-wrap-two{
  display: flex;
  align-items: flex-start;
justify-content: flex-start;
gap: 5px;
margin-bottom: -30px;
}
.input-group-main-wrap-two label{
padding: 5px;

}
.input-group-main-wrap-two .input-group{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 50%;
  padding-right: 23px;
  padding-left: 3px;
}
.input-group-main-wrap-two .input-group input {
  
  
}
.input-group {
  margin-bottom: 1.5em;
  position: relative;
}

.input-group label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 550;
  font-family: "Young";
  color: #575865;
  font-size: 16px;
  width: 95%;
position: relative;
margin-bottom: 15px;
}

.input-group #input-tip-icon {
  transition: transform 0.25s ease;
}

.input-group #input-tip-icon.rotate {
  transform: rotate(180deg);
}


.input-tips {
  display: block;
  color: #222222DE;
  font-size: 12.5px;
  line-height: 1.4;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  white-space: normal;
  word-break: break-word;
  font-family: "Young";
}
#calc-menu {
  position: absolute;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  min-width: 170px;
  opacity: 0;
  transform: scale(0.9);
  transform-origin: top right;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
  margin-top: .2em;
}
#calc-menu.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.calc-menu-item {
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  color: #222;
  transition: background 0.2s ease;
}

.calc-menu-item:hover {
  background: #f0f0f0;
}
    .input-group input {
            width: 90%;
            padding: 13px;
            margin-bottom: .4em;
            font-size: 17px;
            border: 1.5px solid #464BFF3D;
            border-radius: 8px;
            outline: 3px solid transparent;
            outline: none;
            transition: .25s;
            font-family: "OfficeCode";
            background: #fff;
          height: 20px;
        }
        .input-group input::placeholder{
          font-size: 16px;
        }
        .input-group input:focus{
          border: 1.5px solid #464BFF;
          outline: 3px solid #464BFF14;
        }
.error-message {
  color: darkred;
  font-size: 0.875rem;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: #D91A1A1A;
  padding: 10px;
  border-radius: 6px;
  font-size: .7em;
  font-family: "young";
  user-select: none;
}
.error-message svg {
  min-width: 18px;
  height: 18px;
  fill: darkred;
  display: none;
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 99%;
  background-color: #fff;
  border: 1.5px solid #464BFF3D;
  border-radius: 6px;
  padding: 13px;
  font-family: young;
font-size: .95em;
user-select: none;
letter-spacing: .5px;
outline: none;
font-style: young;
color: #42445AED;
  transition: .1s;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30.727 30.727' xml:space='preserve'><path fill='%23464BFF' d='M29.994 10.183 15.363 24.812.733 10.184a2.5 2.5 0 1 1 3.536-3.536l11.095 11.093L26.461 6.647a2.5 2.5 0 1 1 3.533 3.536'/></svg>");
  margin-bottom: .5em;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 15px 15px;
}
select:focus{
  border: 1.5px solid #464BFF;
outline: 3px solid #464BFF14;
}
input[type="date"]{
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23464BFF'%3E%3Cpath d='M320-400q-17 0-28.5-11.5T280-440q0-17 11.5-28.5T320-480q17 0 28.5 11.5T360-440q0 17-11.5 28.5T320-400Zm160 0q-17 0-28.5-11.5T440-440q0-17 11.5-28.5T480-480q17 0 28.5 11.5T520-440q0 17-11.5 28.5T480-400Zm160 0q-17 0-28.5-11.5T600-440q0-17 11.5-28.5T640-480q17 0 28.5 11.5T680-440q0 17-11.5 28.5T640-400ZM200-80q-33 0-56.5-23.5T120-160v-560q0-33 23.5-56.5T200-800h40v-80h80v80h320v-80h80v80h40q33 0 56.5 23.5T840-720v560q0 33-23.5 56.5T760-80H200Zm0-80h560v-400H200v400Zm0-480h560v-80H200v80Zm0 0v-80 80Z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 10px center;
background-size: 20px 20px;
}
.input-select-wrap{
  display: flex;
  gap: 8px;
  width: 100%;
}
.row-input-wrap{
  display: flex;
gap: 8px;
width: 100%;
}
.row-input-label-wrap{
  display: flex;
gap: 8px;
width: 100%;
align-items: center;
justify-content: center;
}
.row-input-label-wrap label{
  display: flex;
align-items: center;
gap: 0.5em;
font-weight: 550;
font-family: "Young";
color: #575865;
font-size: 17px;
width: 95%;
position: relative;
margin-bottom: 0;
}
.currency-select-svg{
  fill: #464BFF;
  transition: .15s;
}
.currency-select-svg:active{
  transform: scale(.93);
}
.currency-or-unit-input{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .1em;
  width: 90%;
padding: 13px;
margin-bottom: .4em;
font-size: 17px;
border: 1.5px solid #464BFF3D;
border-radius: 8px;
outline: 3px solid transparent;
outline: none;
transition: .25s;
font-family: "OfficeCode";
background: #fff;
height: 20px;
overflow: hidden;
}

.currency-or-unit-input input{
  outline: none;
  border: none;
  padding: 10px;
  height: auto;
  margin-bottom: 0;
}
.currency-or-unit-input input:focus {
  outline: 3px solid transparent;
  transition: 0s;
}

.currency-or-unit-input input:focus{
  outline: none;
border: none;
}

.currency-or-unit-input:focus-within {
  border: 1.5px solid #464BFF;
  outline: 3px solid #464BFF14;
}
.currency-or-unit-display,.unit-display{
  transition: .2s;
  font-size: .9em;
  user-select: none;
outline: none;
font-style: young;
color: #42445AED;
background: #fff;
outline: none;
border: none;
}
.unit-display{
  font-family: young;
  display: flex;align-items: center;justify-content: center;
}


.currency-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}


#currencyPopup.active .currency-popup-overlay {
  opacity: 1;
  visibility: visible;
}


.currency-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
 padding: 24px;
  border-radius: 15px;
  max-height: 250px;
  width: 88%;
  overflow-y: auto;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  font-family: "Inter", sans-serif;
}


#currencyPopup.active .currency-popup {
  opacity: 1;
  visibility: visible;
}


.currency-popup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.currency-popup-header input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.2px solid #464BFF2B;
  font-size: 15px;
  transition: border 0.2s, box-shadow 0.2s;
box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
font-family: young;
outline: none;
}



#currencyCloseBtn {
  background: transparent;
  border: none;
  transition: 0.2s;
  border-radius: 10px;
  height: 35px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

#currencyCloseBtn svg {
  height: 40px !important;
  fill: #404045;
}

#currencyCloseBtn:active {
  transform: scale(.92);
}


#currencyList {
  list-style: none;
  padding: 0;
  margin: 0;
}

#currencyList li {
  padding: 12px 14px;
  display: flex;
  gap: 12px;
  border-radius: 10px;
  transition: 0.15s;
  font-size: 15px;
  align-items: center;
  user-select: none;
  font-family: young;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  margin-bottom: 10px;
}

#currencyList li:active {
  transform: scale(.98);
  background: #42445A14;
}

.symbol {
  font-weight: 600;
  width: 50px;
  font-family: officecode;
  color: #42445ACC;
}

.name {
  flex: 1;
  color: #42445ADB;
}

.currency-display-for-expanded-results{
  margin-right: 2px;
}
.currency-tooltip {
  position: absolute;
  background: #fff;
  color: #3B3C4F;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 30px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 10000;
  font-family: "young";
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.currency-tooltip.visible {
  opacity: 1;
  transform: scale(1);
}
.currency-popup-overlay {
  position: fixed;
  inset: 0; 
  background: rgba(0, 0, 0, 0.55);
   
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#currencyPopup.active .currency-popup-overlay {
  opacity: 1;
}
/*******text overflow*******/

.input-tooltip-float {
  position: absolute;
  background-color: #202427;
  color: #fff;
  font-size: 13px;
  letter-spacing: .25px;
  user-select: none;
  padding: 6px 10px;
  border-radius: 10px;
  max-width: 250px;
  z-index: 9999;
  font-family: "young";
  white-space: pre-wrap;
  word-break: break-word;
  transform-origin: bottom center;
  line-height: 1.4;
  transform: scale(0.9);
  visibility: hidden;
  transition: transform 0.16s cubic-bezier(0.4, 0, 0.2, 1);
}


.input-tooltip-float.visible {
  visibility: visible;
  transform: scale(1);
}

.input-tooltip-float::after {
 content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #202427 transparent transparent transparent;
}
/********************/
.sec-seperate{
  text-align: center;
  font-family: "young";
  font-weight: bold;
  color: #43434F;
  padding: .2em;
}
.input-select-wrap select{
  flex-basis: 30%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  border: 1.5px solid #464BFF;
}
input[type="date"]{
  appearance: none;
}

.btn-group {
            display: flex;
            gap: .5em;
            width: 100%;
            margin-bottom: .5em;
        }
       .btn-group button {
            padding: 13px 15px;
            font-size: 16px;
            border-radius: 12px;
            font-weight: 550;
            display: flex;
            align-items: center;
            transition: .1s;
            justify-content: center;
            gap: .5em;
            font-family: 'Young';
        }
     .btn-group button:active {
  scale: .98;
}
.radio-group{
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: .8em;
  user-select: none;
}
  label.radio-wrapper {
    display: block;
  }
  label.radio-wrapper input {
    display: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
  }
  label.radio-wrapper input + span {
    line-height: 22px;
    height: 22px;
    padding-left: 22px;
    display: block;
    position: relative;
  }
  label.radio-wrapper input + span:not(:empty) {
    padding-left: 30px;
  }
  label.radio-wrapper input + span:before, label.radio-wrapper input + span:after {
    content: "";
    width: 22px;
    height: 22px;
    display: block;
    border-radius: 50%;
    left: 0;
    top: 0;
    position: absolute;
  }
  label.radio-wrapper input + span:before {
    background: #D1D7E3;
    transition: background .15s ease, transform .15s cubic-bezier(0.175, 0.885, 0.32, 2);
  }
  label.radio-wrapper input + span:after {
    background: #fff;
    transform: scale(0.78);
    transition: transform .1s cubic-bezier(0.175, 0.885, 0.32, 1.4);
  }
  label.radio-wrapper input:checked + span:before {
    transform: scale(1.04);
    background: #464BFF;
  }
  label.radio-wrapper input:checked + span:after {
    transform: scale(0.4);
    transition: transform .1s ease;
  }

  label.radio-wrapper:hover input + span:after {
    transform: scale(0.74);
  }
  label.radio-wrapper:hover input:checked + span:after {
    transform: scale(0.4);
  }
  .checkbox-wrapper input[type="checkbox"] {
  display: none;
  visibility: hidden;
}

.checkbox-wrapper .checkbox-label {
  margin: auto;
  -webkit-user-select: none;
  user-select: none;
}

.checkbox-wrapper .checkbox-label span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}

.checkbox-wrapper .checkbox-label span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #9098A9;
  transition: all 0.2s ease;
}

.checkbox-wrapper .checkbox-label span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}

.checkbox-wrapper .checkbox-label span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #464BFF;
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
}

.checkbox-wrapper .checkbox-label span:last-child {
  padding-left: 8px;
}

.checkbox-wrapper .checkbox-label:hover span:first-child {
  border-color: #464BFF;
}

.checkbox-wrapper .checkbox-input:checked+.checkbox-label span:first-child {
  background: #464BFF;
  border-color: #464BFF;
  animation: checkbox-wave 0.4s ease;
}

.checkbox-wrapper .checkbox-input:checked+.checkbox-label span:first-child svg {
  stroke-dashoffset: 0;
}

.checkbox-wrapper .checkbox-input:checked+.checkbox-label span:first-child:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}

@keyframes checkbox-wave {
  50% {
    transform: scale(0.9);
  }
}

     
        #quick-actions-buttons-wrap{
  position: absolute;
  right: 0;
}
.visible-tips {
  background: #464BFF14;
  padding: 1em;
  border-radius: 10px;
  font-family: "young";
  line-height: 1.6;
  font-size: 13px;
  color: #464BFF;
  width: 90%;
  user-select: none;
  letter-spacing: .35px;
}
 #error-txt {
   background: #D118181F;
   padding: 1em;
   border-radius: 10px;
   font-family: "young";
   line-height: 1.6;
   font-size: 13px;
   color: #A81D1D;
   width: 90%;
 }
 
summary {
  display: block;
  list-style: none;
  position: relative;
  padding-left: 28px;
  transition: .13s;
  background: #fff;
  padding-top: 16px;
  padding-bottom: 16px;
  width: 90%;
  font-family: "young";
  user-select: none;
  letter-spacing: .5px;
  color: #575865;
}
summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30.727 30.727' xml:space='preserve'><path fill='%23464BFF' d='M29.994 10.183 15.363 24.812.733 10.184a2.5 2.5 0 1 1 3.536-3.536l11.095 11.093L26.461 6.647a2.5 2.5 0 1 1 3.533 3.536'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
details[open] summary::before {
  transform: translateY(-50%) rotate(180deg);
}


.quick-actions-btn{
  display: flex;
align-items: center;
gap: .5em;
margin-top: 1.5em;
max-width: 576px;
flex-wrap: wrap;
}
.quick-actions-btn button{
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: .5em;
  padding-right: .8em;
  padding-left: .8em;
  background: transparent;
  transition: .3s;
  outline: none;
  border: 1px solid #4F516357;
  font-family: "Young";
  background: #fff;
  user-select: none;
  color: #4F5163;
}
.quick-actions-btn button:hover {
  background: #4F51631C;
}
.quick-actions-btn button svg{
  height: auto;
  width: 1.4em;
  margin-right: .2em;
  fill: #55606c;
}
#share-calculator-btn{
  color: #4F5163;
}
.fav-btn{
color: #4F5163;
}
.fav-btn.fav-active {
  border: 1px solid #464BFF;
  color: #464BFF;
}
.fav-btn.fav-active:hover {
  background: #464BFF26;
}
.fav-btn.fav-active .fav-icon {
  fill: #464BFF;
}

 .similar-calculators-wrap{
   display: flex;
   flex-direction: column;
   max-width: 550px;
   background: #fff;
   padding: 15px;
   width: 90%;
   border-radius: 15px;
   border: 1px solid #42445A1C;
   margin-top: 1.5em;
   font-family: "Young";
 }
 .similar-calculators-wrap h2{
   font-size: 1em;
   display: flex;
align-items: center;
gap: .3em;
font-family: lexend;
font-weight: 400;
 }
 .similar-calculators{
   display: flex;
   flex-direction: column;
   gap: .5em;
 }
 .similar-calculators a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 35px;
  font-size: 1em;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 8px;
  position: relative;
  background: transparent;
  color: #1f1f1f;
  text-decoration: none;
  transition: .3s;
  border-radius: 10px;
  border: none;
  cursor: help;
}
.similar-calculators a::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7.4 10C7.4 10 10.9637 10 15.65 10M15.65 10L10.4 5M15.65 10L10.4 15' stroke='%23464BFF' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.9 10L4.4 10' stroke='%23464BFF' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  transition: transform 0.3s ease;
}
.similar-calculators a:hover {
 color: #464BFF;
}

.similar-calculators a:hover::after {
  transform: translateY(-50%) translateX(-20px);
}
#page-pin-icon{
  display: inline-flex;
align-items: center;
margin-left: 8px;
color: #464BFF;
position: relative;
border-radius: 50%;
padding: 1px;
transition: .2s;
}
#page-pin-icon svg{
  stroke: #464BFF61;
  transition: .2s;
}
#page-pin-icon svg:hover{
  stroke: #464BFF;
}
.tooltip-bubble {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: #fff;
  color: #1F1F1FC2;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 400;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  pointer-events: none;
  transition: transform 0.1s ease, opacity 0.1s ease;
  z-index: 1000;
  max-width: 90vw;
  overflow-wrap: break-word;
  line-height: 1.4;
  white-space: normal;
  opacity: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-family: "Young";
}
#page-pin-icon.show-tooltip .tooltip-bubble {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}
 .description-txt{
    display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
gap: 1em;
margin-top: 1em;
max-width: 550px;
border-radius: 10px;
padding: 10px;
font-family: "young";
  }
  .description-txt h3,.description-txt h2{
    font-family: lexend;
    font-weight: 400;
    font-size: 1.1em;
  }
  .description-txt strong{
    font-family: lexend;
font-weight: 400;
  }
  .description-txt a{
    transition: .3s;
    padding: .1em;
    cursor: help;
    text-decoration: none;
    color: #464BFFAB;
    background: #464BFF1A;
    border-radius: 8px;
    padding: .2em;
  }
  .description-txt a:hover{
    background: #464BFF30;
  }
  .description-txt p{
    color: #515353;
font-size: .9em;
line-height: 1.7;
  }
   .description-txt ul{
     color: #515353;
font-size: .9em;
line-height: 1.7;
display: flex;
flex-direction: column;
gap: .3em;
   }
   .description-txt strong{
     font-family: lexend;
   }
  /*****************************
  ad blockers 
  *******************************/
  .cookie-wrapper {
  position: fixed;
  bottom: 0;
  transform: translateY(120%);
  right: 0;
  left: 0;
  max-width: 345px;
  background: #fff;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  
  border: 1px solid #42445A21;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: .5em;
  transition: .5s;
}
.cookie-wrapper.show {
  transform: translateY(0);
}
.cookie-wrapper img{
  height: auto;
  width: 5em;
}
.cookie-wrapper h2 {
  color: #5B5B5C;
  font-weight: 600;
  font-size: .9em;
  margin-bottom: -1.5em;
  font-family: lexend;
}
.cookie-data {
  margin-top: 16px;
}
.cookie-data p {
  color: #6C6D6FBD;
font-size: .84em;
line-height: 1.6;
font-family: Young;
}
.cookie-data p a {
  color: #6C6D6F;
  cursor: help;
  text-decoration: none;
}
#accept-cookieBtn {
  border: none;
  color: #fff;
  padding: 14px 0;
  border-radius: 10px;
  background: #464BFF;
  width: 100%;
  transition: 0.2s;
  margin-top: 1em;
  font-family: young;
}
#accept-cookieBtn:hover {
  background-color: #4044D7;
}
#decline-cookieBtn{
  border: none;
color: #484A58;
padding: 14px 0;
border-radius: 10px;
background: #484A5817;
width: 100%;
transition: 0.2s;
font-family: young;
}
#decline-cookieBtn:hover{
  background: #484A582E;
}
footer{
  width: 100%;
  padding: .5em;
  display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1em;
margin-top: 3em;
font-family: "Nunito";
background: #fff;
margin-bottom: -10px;
box-shadow: rgba(0, 0, 0, 0.06) 0 18px 10px;
}
footer .quick-links{
  display: flex;
  padding: 12px;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
.calculator-categories-footer{
  display: grid; grid-template-columns: repeat(2, 1fr);
  padding: 10px;
  gap: .5em;
  font-family: "young";
}
.calculator-categories-footer a{
transition: .14s;
display: flex;
align-items: center;
justify-content: flex-start;
font-size: .9em;
cursor: help;
gap: 18px; 
text-decoration: none;
color: #4A4B5D;
padding: 8px 12px;
letter-spacing: .4px;
}
.calculator-categories-footer a:hover{
  color: #3135CD;
}
.calculator-categories-footer a svg{
  flex-shrink: 0;
width: 17px;
height: 17px;
fill: #3135CD;
}
.quick-links-social{
  display: flex;
align-items: center;
justify-content: center;
  flex-direction: row;
  gap: 1.4em;
  border-bottom: 1px solid #ADB0C740;
  width: 100%;
  padding: 8px;
 padding-bottom: 25px;
}
.quick-links-social a{
cursor: help;
color: #4E5065FA;
transition: .2s;
font-weight: 600;
border-radius: 12px;
background: #4E5065FA;
display: flex;
align-items: center;
justify-content: center;
}
.quick-links-social a:active {
  transform: translateY(-4px);
}
.quick-links-social a svg{
  height: 14px;
  width: 14px;
  fill: #fff;
  padding: 7px;
}

footer .quick-links a{
  text-decoration: none;
  cursor: help;
  color: #6B6E8FDB;
  font-size: .9em;
  transition: .3s;
}
footer .quick-links a:hover{
  color: #434559;
}
footer h3{
  font-family: lexend;
  font-size: 1em;
  margin-bottom: -10px;
}
footer span{
  display: flex;
align-items: center;
justify-content: center;
font-size: .95em;
color: #6B6E8FDB;
gap: .3em;
padding: 10px;
margin-top: -10px;
}
footer span svg{
  fill: red;
  width: 1.15em;
}

@media (min-width: 1400px) {
  
}

@media (min-width: 1000px) {

}

@media (min-width: 900px) {
  body{
    background: #172AFF0A;
  }
  .side-nav{
    width: 350px;
  }
 .container{
   background: #fff;
border-radius: 20px;
border: 1px solid #42445A1C;
padding: 12px;
margin-bottom: 1em;
padding-top: 2em;
 }
 .calculator-info-p{
   background: transparent;
   padding: 0;
 }
 .quick-actions-btn button{
   background: #fff;
 }
 
 select{
   width: 95%;
 }
 
 .input-select-wrap{
   width: 95%;
 }
 .currency-popup {
  width: 500px;
}
  .cookie-wrapper{
    border-radius: 30px;
    left: 2em;
    bottom: 2em;
  }
  .cookie-wrapper.show {
  bottom: 2em;
 }
 .calculator-categories-footer{
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 10px;
  
}
.calculator-categories-footer a{
  margin-right: 5em;
}
}
@media (min-width: 700px) {
  
}