@keyframes circleanimation {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
.loading-screen {
    min-height: 300px;
}
.loading-screen .loading-circle {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 2px solid transparent;
    border-left-color: #ababab;
    animation: circleanimation .45s linear infinite;
}
.calculator-wrapper {
    padding: 15px 0 30px;
}
.calc_cont li {
    padding: 5px 15px;
    list-style: none;
}
.list_check li.bordered-block {
    border: 1px solid #ddb100;
    border-radius: 3px;
    padding: 0;
    margin-bottom: 20px;
}
.list_check li.bordered-block > div.title {
    padding: 10px 15px;
    background: #ddb100;
    color: #000;
    font-size: 20px;
    font-family: AleksandraC;
    font-weight: 600;
}
.calculator-wrapper .list_check_drop {
    padding: 15px 0;
}
.calculator-wrapper .calc_cont label {
    display: inline;
    cursor: pointer;
}
.calculator-wrapper .calc_cont label.disabled {
    text-decoration: line-through;
}
.calc-sidebar .calc-sidebar-wrapper {
    border: 1px solid #ddb100;
    border-radius: 3px;
}
.calc-sidebar .title {
    padding: 10px 15px;
    margin-bottom: 20px;
    background: #ddb100;
    color: #000;
    font-size: 20px;
    font-family: AleksandraC;
    font-weight: 600;
}
/* .calc-sidebar .title::before {
    content: "";
    width: 20px;
    height: 25px;
    background: url(/local/templates/directpage/img/calc_ico_black.png) 0 0 no-repeat;
    display: inline-block;
    background-size: contain;
    margin-right: 15px;
    position: absolute;
    left: 15px;
} */
.calc-sidebar .sidebar-wrapper .hours-total {
    border-bottom: 2px solid #757575;
    padding: 7px 0;
}
.calc-sidebar .sidebar-wrapper .total-sum .hours-total {
    border: none;
}
.calc-sidebar .sidebar-wrapper .total-sum {
    padding: 15px 0;
    font-size: 22px;
}
.calc-sidebar .calc-sidebar-wrapper .btn {
    font-family: AleksandraC;
    font-weight: 600;
    padding: 15px;
}
.calculator-wrapper input[type="checkbox"]:disabled {
    background: #ccc;
}
.fade-up-enter-active,
.fade-up-leave-active {
    transition: all 0.3s ease-in-out;
}
.calc-sidebar .calc-sidebar-wrapper.fixed {
    position: static;
    position: sticky;
    top: 10px;
}

/* checkbox castom ui */
.checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
    margin: 10px 0 0 20px;
}
.checkbox + label {
    position: relative;
    padding: 0 0 0 20px;
    cursor: pointer;
}
.checkbox + label:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: #FFF;
    transition: .2s;
}
.checkbox + label:after {
    content: ' ';
    position: absolute;
    border: solid #FFF;
    border-width: 0 0 4px 4px;
    height: 8px;
    width: 11px;
    left: 4px;
    top: 3px;
    border-radius: 0 0 0 2px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.checkbox:checked + label:before {
    background: #FFF;
}
.checkbox:checked + label:after {
    left: 3px;
    border-color: #009900;
}
.checkbox:disabled + label:after {
    border-color: #8c8c8c;
    display: none;
}
.checkbox:checked:disabled + label:after {
    /* background: #8c8c8c; */
    display: block;
}
/* radiobuttons */
.radiobutton {
    position: absolute;
    z-index: -1;
    opacity: 0;
    margin: 10px 0 0 20px;
}
.radiobutton + label {
    position: relative;
    padding: 0 0 0 20px;
    cursor: pointer;
}
.radiobutton + label:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 13px;
    background: #FFF;
    transition: .2s;
}
.radiobutton + label:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #FFF;
}
.radiobutton:checked + label:before {
    background: #FFF;
}
.radiobutton:checked + label:after {
    left: 3px;
    background: #009900;
}
.radiobutton:disabled + label:before,
.radiobutton:disabled + label:after {
    background: #eaeaea;
}
.radiobutton:checked:disabled + label:after {
    background: #8c8c8c;
}
/* increase and decrease hourse value */
.calculator-wrapper .counter_plus,
.calculator-wrapper .counter_minus {
    display: inline-block;
    padding: 0 5px;
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
}

/* modal window */
.modal-mask {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    display: table;
    transition: opacity .3s ease;
}
.modal-wrapper {
    display: table-cell;
    vertical-align: middle;
}
.modal-container {
    max-width: 450px;
    margin: 0px auto;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
    transition: all .3s ease;
    position: relative;
    color: #000;
}
.modal-header h3 {
    margin-top: 0;
    color: #42b983;
}
.disclaimer {
    padding-bottom: 50px;
    font-size: 14px;
}
.sidebar-wrapper .table {
    margin-bottom: 0;
}
@media (min-width: 1400px) {
    .container {
        max-width: 1340px !important;
    }
}
@media (min-width: 576px) and (max-width: 1339px) {
    .container {
        max-width: 100% !important;
    }
}
