    /*Tax Calculator*/
.calc-tab-container{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 45px 0;
}
.calc-main-cats{
/*main tab nav*/
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    background-color: #f8f8f8;
    border: 1px solid #f2f3f5;
    border-radius: 10px 10px 0 0;
}
.calc-main-cats li{
    border-radius: 10px 10px 0 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    margin-bottom: 0 !important;
    position: relative;
}
@media screen and (max-width: 500px){ 
    .calc-main-cats li{
        width: 50%;
    }
}
.calc-main-cats li:after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    right: 0;
    width: 1px;
    background-color: #bea98a;
}
.calc-main-cats li:last-child:after{
    content: none;
}
.calc-main-cats li a{
    display: block;
    width: 100%;
    text-decoration: none;
    padding: 10px 10px;
    font-size: 19px;
    text-align: center;
    color: #354649;
}
.calc-main-cats li a span{
    color: #bda98a;
}
.calc-main-cats li.active{
    /*background: #2e828c;
    background: -webkit-linear-gradient(135deg, #2e828c 0%, #0e0e0e 33%, #2e828c 66%, #0e0e0e 100%);
    background: -moz-linear-gradient(135deg, #2e828c 0%, #0e0e0e 33%, #2e828c 66%, #0e0e0e 100%);
    background: -ms-linear-gradient(135deg, #2e828c 0%, #0e0e0e 33%, #2e828c 66%, #0e0e0e 100%);
    background: -o-linear-gradient(135deg, #2e828c 0%, #0e0e0e 33%, #2e828c 66%, #0e0e0e 100%);
    background: linear-gradient(135deg, #2e828c 0%, #0e0e0e 33%, #2e828c 66%, #0e0e0e 100%);
    background-size: 500% 100%;*/
    /*-webkit-animation: errorBg 2s linear infinite;
    -moz-animation: errorBg 2s linear infinite;
    animation: errorBg 2s linear infinite;*/
    height: 75px;
    background: linear-gradient(to bottom, #e5cda9 0%, #ae9b7e 100%);
}
.calc-main-cats li:hover{
    background-color: #ebebeb;
}
.calc-main-cats li:hover a{
    color: #2e828c;
}

@-webkit-keyframes errorBg {
    0% {
        background-position: 100% 0%
    }
    100% {
        background-position: 15% 100%
    }
}

@-moz-keyframes errorBg {
    0% {
        background-position: 100% 0%
    }
    100% {
        background-position: 15% 100%
    }
}

@keyframes errorBg {
    0% {
        background-position: 100% 0%
    }
    100% {
        background-position: 15% 100%
    }
}



.calc-main-cats li.active:after{
    content: none;
}
.calc-main-cats li.active a{
    /* color: #fff; */
}
.calc-main-cats li.active a:hover{
     color: #000; 
}

.calc-cats-wrap{
 background-color: #fdfdfd;
 border: 1px solid #eff2f4;
 margin-bottom: 50px;
 border-radius: 10px;
overflow: hidden;
}

.main-tab{
    display: none;
}
.main-tab.active{
    display: block;
}

/*nav*/
.calc-tab-container .tabs-nav-wrap{
}
.calc-tab-container .tabs-nav{
    list-style: none;
    padding: 20px 0 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    max-width: 700px;
}
.calc-tab-container .tabs-nav li{
    margin-bottom: 0px !important;
    transition: all 0.5s ease-out;
    width: 33.33%;
    padding: 10px;
}
.calc-tab-container .tabs-nav li:last-child{
    margin-bottom: 0;
}
.calc-tab-container .tabs-nav li a{
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 20px;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
    padding-top: 10%;
    aspect-ratio: 12 / 10;
    background-image: url(https://www.wohnsitz-ausland.com/wp-content/uploads/2023/10/calc-item-bg-scaled.jpg);
    background-size: auto 500%;
    justify-content: flex-start;
    border-radius: 10px;
    overflow: hidden;
}
.calc-tab-container .tabs-nav li:nth-child(1) a{
    background-position: 62% 40%;
}
.calc-tab-container .tabs-nav li:nth-child(2) a{
    background-position: 81% 40%;
}
.calc-tab-container .tabs-nav li:nth-child(3) a{
    background-position: 100% 40%;
}
.calc-tab-container .tabs-nav li:nth-child(4) a{
    background-position: 62% 70%;
}
.calc-tab-container .tabs-nav li:nth-child(5) a{
    background-position: 81% 70%;
}
.calc-tab-container .tabs-nav li:nth-child(6) a{
    background-position: 100% 70%;
}
.calc-tab-container .tabs-nav li:nth-child(7) a{
    background-position: 62% 100%;
}
.calc-tab-container .tabs-nav li:nth-child(8) a{
    background-position: 81% 100%;
}
.calc-tab-container .tabs-nav li:nth-child(9) a{
    background-position: 100% 100%;
}
.calc-tab-container .tabs-nav li a:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #2f4c4c;
    opacity: 0.9;
}
.calc-tab-container .tabs-nav li.active a:before,
.calc-tab-container .tabs-nav li:hover a:before{
    background-color: #e5cda9;
}
.calc-tab-container .tabs-nav li.active a, 
.calc-tab-container .tabs-nav li:hover a{
}
.calc-tab-container .tabs-nav li a .menu-icon{
    width: 100px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 13px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #f8f8f8; */
    position: relative;
}
.calc-tab-container .tabs-nav li a .menu-icon:after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 0;
}
.calc-tab-container .tabs-nav li:hover a .menu-icon{
    /*opacity: 0.8;*/
}
/*.calc-tab-container .tabs-nav li.active a .menu-icon:after{
    opacity: 1;
}*/
.calc-tab-container .tabs-nav li.active a .menu-icon{
    /* background-color: #2f828c; */
}
.calc-tab-container .tabs-nav li a .menu-icon i{
    font-size: 49px;
    color: #D0C2AE;
}
.calc-tab-container .tabs-nav li a .menu-icon img{
    width: 65%;
}
.calc-tab-container .tabs-nav li.active a .menu-icon img,
.calc-tab-container .tabs-nav li:hover a .menu-icon img{
    filter: brightness(0) saturate(100%) invert(24%) sepia(14%) saturate(670%) hue-rotate(141deg) brightness(93%) contrast(90%);
}
.calc-tab-container .tabs-nav li a .menu-name{
    padding-left: 3px;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 600;
    color: #fff;
    text-align: center;
    position: relative;
}
.calc-tab-container .tabs-nav li a .menu-name .highlighted2{
    color: #fff !important;
}
.calc-tab-container .tabs-nav li:hover a .menu-name,
.calc-tab-container .tabs-nav li.active a .menu-name{
    color: #354649;
}
.calc-tab-container .tabs-nav li:hover a .menu-name .highlighted2,
.calc-tab-container .tabs-nav li.active a .menu-name .highlighted2{
    color: #354649 !important;
}

/*tab*/
.calc-tab-container .tabs {
    display: flex;
    overflow-y: auto;
    flex-wrap: wrap;
}
.calc-tab-container .tabs .tab-content {
    display: none;
    width: 100%;
    background-color: #FDFDFD;
    border: 1px solid #F6F7F9;
    border-radius: 10px;
    padding: 40px 45px;
}
.calc-tab-container .tabs .tab-content.active {
    display: block;
}
.calc-tab-container .tabs .tab-title{
    font-size: 30px;
    text-align: left;
    margin-bottom: 10px;
}
.calc-tab-container .tabs .form {}
.calc-tab-container .tabs .form .form-wrap{
    margin-bottom: 20px;
}
.calc-tab-container .tabs .form label{
    font-weight: 500;
    /*font-size: 20px;*/
    display: inline-block;
    text-align: left;
}
.calc-tab-container .tabs .form .form-wrap input[type=text]{
    width: 100%;
    display: block;
    border: 1px solid #bfa98a;
    border-radius: 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    color: #2f828c;
    font-size: 20px;
    font-weight: 500;
}
/*.calc-tab-container .tabs .form .form-wrap input::-webkit-input-placeholder,
.calc-tab-container .tabs .form .form-wrap input::-moz-placeholder,
.calc-tab-container .tabs .form .form-wrap input:-ms-input-placeholder,
.calc-tab-container .tabs .form .form-wrap input:-moz-placeholder,
.calc-tab-container .tabs .form .form-wrap input::placeholder {
    color: #E5E5E5;
}*/

.calc-tab-container .tabs .form .form-wrap input[type=radio]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.calc-tab-container .tabs .form .form-wrap input[type="radio"]:checked + label,
.calc-tab-container .tabs .form .form-wrap input[type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    margin: 10px 0;
    font-weight: 400;
}
.calc-tab-container .tabs .form .form-wrap input[type="radio"]:checked + label:before,
.calc-tab-container .tabs .form .form-wrap input[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
.calc-tab-container .tabs .form .form-wrap input[type="radio"]:checked + label:after,
.calc-tab-container .tabs .form .form-wrap input[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #BEA98A;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.calc-tab-container .tabs .form .form-wrap input[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.calc-tab-container .tabs .form .form-wrap input[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.calc-tab-container .tabs .form .form-wrap p {
    font-size: 16px;
}


.calc-tab-container .tabs .form button{
    border: 1px solid #2E828C;
    background-color: #2E828C;
    border-radius: 8px;
    color: #fff;
    padding: 10px 25px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.calc-tab-container .tabs .form button:hover{
    border-color: #2E828C;
    background-color: #fff;
    color: #2E828C;
}
.calc-tab-container .tabs .form button .icon{
    display: inline-block;
    height: 30px;
    width: 30px;
    margin-right: 10px;
    background-image: url(/wp-content/uploads/2023/05/icon-calc.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.calc-tab-container .tabs .form button:hover .icon{
    background-image: url(/wp-content/uploads/2023/05/icon-calc-hover.png);
}
.calc-tab-container .tabs .form .btn-note{
    font-size: 10px;
    padding-top: 5px;
    display: block;
}
.calc-tab-container .tabs .form hr{
    margin: 60px 0;
}
.calc-tab-container .tabs .form .calc-result{
    border: 1px solid #bfa98a;
    background-color: transparent;
    border-radius: 10px;
    color: var(--awb-text-color);
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}
.calc-tab-container .tabs .form .calc-result.tax{
    color: #2E828C;
}
.calc-tab-container .tabs .form .calc-result.total{}
.calc-tab-container .tabs .calc-note{
    margin: 50px auto 20px;
    border-radius: 10px;
    padding: 30px 20px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    background-color: #6D7A8A;
    color: #fff;
    line-height: 25px;
}
.calc-tab-container .tabs .calc-note:after{
    content: "";
    position: absolute;
    bottom: 100%;
    left: 100px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 30px 20px;
    border-color: transparent transparent #6D7A8A transparent;
}
.calc-tab-container .tabs .calc-note ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.calc-tab-container .tabs .calc-note ul li{
    padding-left: 20px;
    position: relative;
    margin: 5px 0;
    text-align: left;
}
.calc-tab-container .tabs .calc-note ul li:before{
    content: "";
    position: absolute;
    left: 0;
    transform: translateY(-50%);
    top: 50%;
    background-color: #fff;
    height: 7px;
    width: 7px;
    border-radius: 50%;
}
.calc-tab-container .tabs .calc-note b,
.calc-tab-container .tabs .calc-note strong{
    color: #fff;
}
.calc-tab-container .tabs .btn-wrap{
    width: 100%;
}
.calc-tab-container .tabs .btn-wrap a{
    border: 1px solid #e9d1b1;
    background-color: #e8d1b1;
    border-radius: 8px;
    color: #2E828C;
    padding: 10px 25px;
    font-size: 20px;
    display: inline-block;
    float: right;
    cursor: pointer;
    font-weight: 600;
    margin: 10px;
}
.calc-tab-container .tabs .btn-wrap a:hover{
    color: #000;
    border-color: #2f828c;
}
/*Tax Calculator end*/

.notax {
    text-align: center;
    margin: 20px auto;
    border: 1px solid #bfa98a;
    padding: 30px 0px;
    border-radius: 10px;
}
.vatformrow label {
  /*color: #4a4a4a;*/
  font-weight: 600;
  text-align: center;
  padding: 0px 0px 15px 2px;
  display: block;
}
.vatformrow .fields {
  width: 100%;
}
.cntr, .vatformrow.cntr label {
  /*text-align: center;*/
}
#taxamount, #tax01, #tax02, #tax03, #tax04, #taxpropertyamount, #taxsalesamount, #taxtouristamount, #taxtouristx {
  font-size: 15px;
  display: table;
  margin: 0 auto;
  padding: 3px 15px;
  border: 1px solid  #cbec6d;
  border-radius: 20px;
}
#content .trformula p {
  text-align: center;
}
#content p {
  /*line-height: 20px;*/
  margin: 10px 0px 15px;
}
.vatformrow.cntr label.formula {
  font-style: italic;
  font-weight: normal;
}
.vatformrow .productradio label {
  display: inline-block;
  padding: 0px 0px 0px 2px;
}

.calc-result{
  width: 100%;
}