body {
font-family: 'Lora', sans-serif;
background: #fff;
margin: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
overflow-x: hidden;
position: relative;
}
.top-bar {
height: 30px;
max-width: 960px;
margin: auto;
background: #242c5e;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 1000;
border-bottom-left-radius: 25px;
}
footer {
height: 60px;
max-width: 960px;
margin: auto;
background: #242c5e;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 1000;
border-top-left-radius: 25px;
}


.main-content {
display: flex;
flex: 1;
overflow: hidden;
max-width: 960px;
margin: 30px auto 0;
width: 100%;
background: linear-gradient(to bottom, #242c5e, #242c5e calc(100% - 60px), #fff calc(100% - 60px), #fff);
box-sizing: border-box;
}
.primary-btn {
display: block;
cursor: pointer;
-webkit-appearance: none;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 10px;
font-weight: 600;
border-radius: 5px;
font-size: 16px;
position: relative;
text-align:center;
-webkit-transition: all 300ms;
transition: all 300ms;
border: 0;
background: #089aa5;
color: #fff;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.left-side {
flex: 1;
display: flex;
flex-direction: column;
overflow-y: auto;
align-items: center;
padding: 20px;
background: #f1f1f1;
border-top-right-radius: 70px;
border-bottom-right-radius: 70px;
margin-bottom: 60px;
}
.right-side {
width: 300px;
background: #edf6f7;
color: white;
padding: 20px;
overflow-y: auto;
}
#resultVAT,
#resultLeft {
font-weight: 500;
font-size: 18px;
border-bottom: 2px dashed #0b9aa5;
}
@media (min-width: 768px) {
.mobile-d-mode {
display: none !important;
}
}
@media (max-width: 768px) {
.main-content {
max-width: 100%;
padding: 0 10px;
}
body:not(.dark-theme) .main-content {
background: #fff !important;
}
body.dark-theme .main-content {
background: #1c1c21 !important;
}
body.dark-theme .mobile-switch-toggle #theme-label-mobile {
color: #fff !important;
}
.right-side {
display: none;
}
.left-side {
overflow: hidden;
border-top-left-radius: 8px;
}
.primary-btn {
display: none;
}
.container {
padding: 15px;
margin-top: 10px;
}
h2 {
font-size: 20px;
}
.vat-rate label {
font-size: 14px;
}
input[type="number"] {
font-size: 14px;
padding: 8px;
}
.result p {
font-size: 14px;
}
.copy-button {
font-size: 12px;
padding: 4px 6px;
}
}
.left-side {
flex: 1;
display: flex;
flex-direction: column;
overflow-y: auto;
align-items: center;
padding: 20px;
background: #ffffff;
}
.right-side {
width: 300px;
background: #242c5e;
color: white;
padding: 20px;
overflow-y: auto;
}
.container {
background: var(--background-color);
padding: 20px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
max-width: 400px;
width: 100%;
margin-bottom: 20px;
}
h2 {
text-align: center;
margin-bottom: 20px;
color: #1a1a1a;
font-size: 24px;
}
.vat-rate {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 15px;
}
.vat-rate-options {
display: flex;
justify-content: space-between;
}
.vat-rate-custom {
display: flex;
align-items: center;
gap: 10px;
}
.vat-rate label {
font-size: 15px;
color: #555;
}
input[type="radio"], input[type="number"] {
margin-right: 10px;
}
input[type="number"] {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ddd;
border-radius: 8px;
font-size: 16px;
box-sizing: border-box;
}
input[type="number"]:focus {
border-color: #0b9aa5;
outline: none;
}


.result > div {
flex-direction: column;
align-items: flex-start;
gap: 10px;
}
.result > div > div {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
.result > div > div > span {
margin-left: auto;
margin-right: 10px;
}
.result > div > div > .copy-button {
margin-left: 0;
}
.copy-button {
background: transparent;
border: 1px solid #242c5e;
padding: 5px 7px;
border-radius: 5px;
cursor: pointer;
font-size: 10px;
margin-left: 10px;
transition: all 0.3s ease;
}
.copy-button:hover {
background: #2c3675;
color: #fff;
transform: translateY(-2px);
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.copy-button:active {
transform: scale(0.95);
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.copy-button:hover {
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}
.copy-button.copied {
background-color: #edf6f7;
color: #17828a;
transform: scale(1.05);
}
.copy-button.copied::after {
content: "✓";
color: #17828a;
margin-left: 8px;
display: inline-block;
animation: bounce 0.5s ease;
}
@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-5px);
}
}
@media (max-width: 600px) {
.container {
padding: 15px;
max-width: 99%;
margin-left: 4px;
margin-right: 4px;
background: #f1f1f1;
border-top-right-radius: 50px;
margin-top: 20px;
}
.primary-btn {
display: none;
}
.top-bar {
height: 40px;}
.left-side {
padding: 0 20px 20px 20px;
}
h2 {
font-size: 20px;
}
.vat-rate label {
font-size: 14px;
}
input[type="number"] {
font-size: 14px;
padding: 8px;
}
.result p {
font-size: 14px;
}
.copy-button {
font-size: 12px;
padding: 4px 6px;
}
}
.checkbox-wrapper-19 {
box-sizing: border-box;
--background-color: #f2f2f2;
--checkbox-height: 25px;
display: inline-flex;
align-items: center;
margin-right: 12px;
}
@-moz-keyframes dothabottomcheck-19 {
0% {
height: 0;
}
100% {
height: calc(var(--checkbox-height) / 2);
}
}
@-webkit-keyframes dothabottomcheck-19 {
0% {
height: 0;
}
100% {
height: calc(var(--checkbox-height) / 2);
}
}
@keyframes dothabottomcheck-19 {
0% {
height: 0;
}
100% {
height: calc(var(--checkbox-height) / 2);
}
}
@keyframes dothatopcheck-19 {
0% {
height: 0;
}
50% {
height: 0;
}
100% {
height: calc(var(--checkbox-height) * 1.2);
}
}
@-webkit-keyframes dothatopcheck-19 {
0% {
height: 0;
}
50% {
height: 0;
}
100% {
height: calc(var(--checkbox-height) * 1.2);
}
}
@-moz-keyframes dothatopcheck-19 {
0% {
height: 0;
}
50% {
height: 0;
}
100% {
height: calc(var(--checkbox-height) * 1.2);
}
}
.checkbox-wrapper-19 input[type="radio"] {
display: none;
}
.checkbox-wrapper-19 .check-box {
height: var(--checkbox-height);
width: var(--checkbox-height);
background-color: transparent;
border: calc(var(--checkbox-height) * .1) solid #1a1a1a;
border-radius: 5px;
position: relative;
display: inline-block;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-moz-transition: border-color ease 0.2s;
-o-transition: border-color ease 0.2s;
-webkit-transition: border-color ease 0.2s;
transition: border-color ease 0.2s;
cursor: pointer;
}
.checkbox-wrapper-19 .check-box::before,
.checkbox-wrapper-19 .check-box::after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
position: absolute;
height: 0;
width: calc(var(--checkbox-height) * .2);
background-color: #2c3675;
display: inline-block;
-moz-transform-origin: left top;
-ms-transform-origin: left top;
-o-transform-origin: left top;
-webkit-transform-origin: left top;
transform-origin: left top;
border-radius: 5px;
content: " ";
-webkit-transition: opacity ease 0.5;
-moz-transition: opacity ease 0.5;
transition: opacity ease 0.5;
}
.checkbox-wrapper-19 .check-box::before {
top: calc(var(--checkbox-height) * .72);
left: calc(var(--checkbox-height) * .41);
box-shadow: 0 0 0 calc(var(--checkbox-height) * .05) var(--background-color);
-moz-transform: rotate(-135deg);
-ms-transform: rotate(-135deg);
-o-transform: rotate(-135deg);
-webkit-transform: rotate(-135deg);
transform: rotate(-135deg);
}
.checkbox-wrapper-19 .check-box::after {
top: calc(var(--checkbox-height) * .37);
left: calc(var(--checkbox-height) * .05);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.checkbox-wrapper-19 input[type="radio"]:checked + .check-box,
.checkbox-wrapper-19 .check-box.checked {
border-color: #2c3675;
}
.checkbox-wrapper-19 input[type="radio"]:checked + .check-box::after,
.checkbox-wrapper-19 .check-box.checked::after {
height: calc(var(--checkbox-height) / 2);
-moz-animation: dothabottomcheck-19 0.2s ease 0s forwards;
-o-animation: dothabottomcheck-19 0.2s ease 0s forwards;
-webkit-animation: dothabottomcheck-19 0.2s ease 0s forwards;
animation: dothabottomcheck-19 0.2s ease 0s forwards;
}
.checkbox-wrapper-19 input[type="radio"]:checked + .check-box::before,
.checkbox-wrapper-19 .check-box.checked::before {
height: calc(var(--checkbox-height) * 1.2);
-moz-animation: dothatopcheck-19 0.4s ease 0s forwards;
-o-animation: dothatopcheck-19 0.4s ease 0s forwards;
-webkit-animation: dothatopcheck-19 0.4s ease 0s forwards;
animation: dothatopcheck-19 0.4s ease 0s forwards;
}
.checkbox-wrapper-19 .percentage-label {
margin-left: 8px;
cursor: pointer;
font-size: 16px;
}
.input-wrapper {
margin-bottom: 15px;
}
.input-container {
display: flex;
align-items: center;
}
.input-container input[type="number"] {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 8px;
font-size: 16px;
box-sizing: border-box;
margin-right: 10px;
}
.input-container input[type="number"]:focus {
border-color: #007bff;
outline: none;
}
.clear-button {
background: none;
border: none;
font-size: 20px;
color: #999;
cursor: pointer;
padding: 0;
margin: 0;
line-height: 1;
}
.clear-button:hover {
color: #333;
}
.paragraph {
margin-top: 20px;
font-size: 16px;
color: #333;
line-height: 1.6;
}
.logo {
margin-top: 0px;
margin-bottom: 20px;
padding: 10px;
text-align: center;
}
.mobile-logo img {
width: 164px;
height: auto;
text-align: left;
}
.ad {
margin-top: 50px;
margin-bottom: 20px;
padding: 10px;
background: #edeff1;
color: #242c5e;
border-radius: 8px;
text-align: center;
}
.mobile-header {

}

@media (max-width: 768px) {
.mobile-header {
display: block;
}
.right-side {
display: none;
}
}
.faq_1 .text-blk {
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
line-height: 25px;
}
.faq_1 a {
text-decoration-line: none;
text-decoration-thickness: initial;
text-decoration-style: initial;
text-decoration-color: initial;
color: inherit;
}
.faq_1 .text-blk.faq-heading1 {
font-size: 36px;
font-weight: 800;
line-height: 45px;
text-align: left;
margin-top: 0px;
margin-right: auto;
margin-bottom: 20px;
margin-left: auto;
}
.faq_1 .responsive-container-block.big-container {
max-width: 1200px;
justify-content: flex-start;
padding-top: 0px;
margin-top: 20px;
margin-right: auto;
margin-bottom: 20px;
margin-left: auto;
}
.faq_1 .text-blk.faq-subheading {
font-size: 24px;
font-weight: 700;
margin-top: 0px;
margin-right: 0px;
margin-left: 0px;
line-height: 30px;
}
.faq_1 .responsive-container-block.text-container {
display: block;
flex-direction: column;
margin-top: 0px;
margin-right: 0px;
margin-left: 0px;
}
.faq_1 .text-blk.faq-questions {
font-size: 19px;
font-weight: 700;
color: #444053;
line-height: 30px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 10px;
margin-left: 0px;
}
.faq_1 .text-blk.faq-answer {
font-size: 17px;
line-height: 28px;
color: #6c6c6c;
}
.faq_1 .question-container {
margin-top: 0px;
margin-right: 0px;
margin-left: 0px;
}
.faq_1 .back-link {
color: #03a9f4;
font-size: 18px;
float: none;
}
.faq_1 .back-link:hover {
cursor: pointer;
}
.faq_1 .back-svg {
transform: rotateX(0deg) rotateY(180deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(1);
margin-top: 0px;
margin-right: 10px;
margin-bottom: 0px;
margin-left: 0px;
}
@media (max-width: 768px) {
.faq_1 .text-blk.faq-questions {
line-height: 26px;
font-size: 18px;
}
.faq_1 .text-blk.faq-answer {
font-size: 16px;
line-height: 26px;
}
.faq_1 .text-blk.faq-heading1 {
font-size: 32px;
}
}
@media (max-width: 500px) {
.faq_1 .text-blk.faq-heading1 {
text-align: center;
line-height: 32px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 30px;
margin-left: 0px;
font-size: 26px;
}
.faq_1 .text-blk.faq-questions {
font-size: 17px;
line-height: 22px;
}
.faq_1 .text-blk.faq-answer {
font-size: 16px;
line-height: 23px;
}
.faq_1 .text-blk.faq-subheading {
margin-top: 0px;
margin-right: 0px;
margin-top: 20px;
margin-bottom: 20px;
margin-left: 0px;
font-size: 20px;
line-height: 30px;
}
.faq_1 .back-link {
font-size: 16px;
}
}
.theme-switch-wrapper {
position: relative;
z-index: 1001;
display: block;
text-align: center;
align-items: center;
gap: 10px;
}
body.dark-theme .theme-switch-wrapper {
position: relative;
z-index: 1001;
display: block;
text-align: center;
align-items: center;
gap: 10px;
color: red;
}
.theme-switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
.theme-switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
transition: 0.4s;
border-radius: 34px;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
transition: 0.4s;
border-radius: 50%;
}
input:checked + .slider {
background-color: #089aa5;
}
input:checked + .slider:before {
transform: translateX(26px);
}
body.dark-theme .left-side,
body.dark-theme {
background: #1c1c21;
color: #e0e0e0;
}
body.dark-theme .top-bar,
body.dark-theme footer {
background: #232b5c;
}
body.dark-theme .main-content {
background: linear-gradient(to bottom, #232b5c, #232b5c calc(100% - 60px), #1c1c21 calc(100% - 60px), #1c1c21);
}
body.dark-theme .right-side,
body.dark-theme .container {
background: #232b5c;
}
body.dark-theme h2,
body.dark-theme .vat-rate label,
body.dark-theme .result p {
color: #e0e0e0;
}
body.dark-theme input[type="number"] {
background: #1c1c21;
border-color: #1c1c21;
color: #edeff1;
}
body.dark-theme .copy-button {
border-color: #fff;
color: #fff;
}
body.dark-theme .copy-button:hover {
background: #089aa5;
color: #fff;
}
body.dark-theme .copy-button.copied {
background-color: #0b9aa5;
}
body.dark-theme #theme-label-desktop,
body.dark-theme #theme-label-mobile {
color: #e0e0e0;
display: block;
position: relative;
margin-top:5px;
}
body.dark-theme .checkbox-wrapper-19 .check-box::before,
body.dark-theme .checkbox-wrapper-19 .check-box::after, {
background-color: #3fbeb6;
}
body.dark-theme .checkbox-wrapper-19 .check-box{
border: calc(var(--checkbox-height) * .1) solid #FFF;
}
body.dark-theme .checkbox-wrapper-19 .check-box::before,
body.dark-theme .checkbox-wrapper-19 .check-box::after{
background-color:#0b9aa5;
box-shadow: none;
}
body.dark-theme .paragraph {
color: #bfbfbf;
border: 2px dashed #3fbeb6 !important;
}
body.dark-theme .ad {
background-color: #edeff1;
}
body.dark-theme .faq_1 .text-blk.faq-questions{
color: #bfbfbf;
}
body.dark-theme .faq-subheading {
color: #089aa5;
}
body:not(.dark-theme) {
background: #fff;
color: #1a1a1a;
}
body:not(.dark-theme) .top-bar,
body:not(.dark-theme) footer {
background: #242c5e;
}
body:not(.dark-theme) .main-content {
background: linear-gradient(to bottom, #242c5e, #242c5e calc(100% - 60px), #fff calc(100% - 60px), #fff);
}
body:not(.dark-theme) .left-side {
background-color: #FFF;
}
body:not(.dark-theme) .container {
background: #f1f1f1;
}
body:not(.dark-theme) .right-side {
background: #242c5e;
}
body:not(.dark-theme) h2,
body:not(.dark-theme) .vat-rate label,
body:not(.dark-theme) .result p {
color: #1a1a1a;
}
body:not(.dark-theme) input[type="number"] {
background: #fff;
border-color: #ddd;
color: #1a1a1a;
}
body:not(.dark-theme) .copy-button {
border-color: #242c5e;
color: #242c5e;
}
body:not(.dark-theme) .copy-button:hover {
background: #242c5e;
color: #fff;
}
body:not(.dark-theme) #theme-label-desktop,
body:not(.dark-theme) #theme-label-mobile {
color: #fff;
display: block;
position: relative;
margin-top:5px;
}
body:not(.dark-theme) .mobile-switch-toggle #theme-label-mobile {
color: #1a1a1a !important;
}