html {
  font-size: 14px;
}

.btn-primary{
    background-color: #152e56!important;
    border-color: #152e56!important;
}

#info_import {
    border-left: solid;
    border-width: 1px;
    border-color: lightgray;
    padding-left: 16px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

#supportoptions {
    border-left: solid;
    border-left-width: 1px;
    border-left-color: lightgray;
    padding-left: 8px;
}

body {
    margin-bottom: 120px;
    margin-top: 120px;
}

.disabled {
    cursor: not-allowed;
}

.visibleonmobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .visibleonmobile {
        display: inline-block;
    }

    .w-100-onsmallscreen{
        width: 100%;
    }
}

.logo {
    width: 80px;
    height: auto;
}

.icon-large{
    width: 48px;
    height: auto;
}

.icon {
    width: 24px;
    height: auto;
}

.pointer {
    cursor: pointer;
}

.btn-orange {
    background-color: #db9912;
    color: #fff;
}

.btn-green {
    background-color: #42ba56;
    color: #fff;
}

.shadow {
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);
}

.card {
    min-height: 190px!important;
}

.color-yellow{
    color: #db9912;
}

.visibleonsmallscreen {
    display: none;
}

#btn_addwp:focus,
#btn_calc:focus {
    background-color: #db9912;
    border: none;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}


@media only screen and (max-width: 600px) {
    .visibleonsmallscreen {
        display: block;
    }
}

@media only screen and (min-width: 1000px) {
    .loadercontainer {
        padding-top: 80px;
    }
}

.loadercontainer {
    padding-top: 20px;
}

.loader {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    perspective: 800px;
}

.inner {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.inner.one {
    left: 0%;
    top: 0%;
    animation: rotate-one 1s linear infinite;
    border-bottom: 3px solid #152e56;
}

.inner.two {
    right: 0%;
    top: 0%;
    animation: rotate-two 1s linear infinite;
    border-right: 3px solid #152e56;
}

.inner.three {
    right: 0%;
    bottom: 0%;
    animation: rotate-three 1s linear infinite;
    border-top: 3px solid #152e56;
}

@keyframes rotate-one {
    0% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@keyframes rotate-two {
    0% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@keyframes rotate-three {
    0% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}