@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: local('Montserrat Italic'), local('Montserrat-Italic'), url(Montserrat-Italic.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Montserrat Light'), local('Montserrat-Light'), url(Montserrat-Light.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Montserrat Regular'), local('Montserrat-Regular'), url(Montserrat-Regular.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Montserrat Bold'), local('Montserrat-Bold'), url(Montserrat-Bold.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /*overflow: hidden;*/
    background-color: #0d2b45;
    color: #ffecd6;
    margin: 0;
    padding: 0;
    user-select: none;
}

#container {
    display: flex;
    justify-content: center;
}

.list-loader {
    max-width: 850px;
    /*overflow: auto;
    max-height: calc(100vh - 40px);*/
    margin: 15px 0;
}

.load-error {
    background-color: #544e68;
    color: #ff9e9e;
    border-radius: 20px;
    padding: 20px 30px;
    position: relative;
    margin: 15px;
}

.load-error ul {
    padding-inline-start: 10px;
}

.load-error li {
    margin-bottom: 5px;
}

.load-error::before {
    content: "\002716\0000A0Error(s)";
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 17px;
    top: -13px;
}

.list-logo {
    width: 240px;
    margin-left: 15px;
}

.logo-title {
    width: 615px;
}

.step-subtitle {
    font-weight: 200;
}

.step {
    background-color: #203c56;
    border-radius: 20px;
    padding: 20px 30px;
    margin: 15px;
}

.skulist {
    column-count: 5;
    column-width: 125px;
}

.found {
    color: #0a0;
}

.found::before {
    content: "\002714\0000A0";
}

.not-found {
    color: #c00;
}

.not-found::before {
    content: "\002716\0000A0";
}

label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

label.btn {
    display: inline-block;
    margin: 0;
}

select, input {
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 5px;
    font-size: 1rem;
    margin-bottom: 10px;
    display: block;
    background-color: #ffecd6;
    color: #0d2b45;
    border: solid 2px #d08159;
    border-radius: 5px;
}

select:focus, input:focus {
    outline: none;
    border-color: #ffaa5e;
}

input:disabled {
    background-color: #203c56;
    border-color: #0d2b45;
}

.full {
    width: 100%;
}

.btn:hover {
    background-color: #ffd4a3;
}

.btn:active {
    background-color: #d08159;
    color: #ffecd6;
}

.btn:disabled {
    background-color: transparent;
    border: solid 1px #0d2b45;
    cursor: not-allowed;
}

.btn {
    margin-top: 15px;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    background-color: #ffaa5e;
    border: solid 1px transparent;
    font-family: inherit;
    font-weight: bold;
    font-size: 1rem;
    color: #0d2b45;
    text-decoration: none;
    cursor: default;
    outline: 0;
}

.btn.block {
    display: block;
}

table {
    width: 100%;
    margin-bottom: 15px;
}

th {
    text-align: left;
}

td > input {
    max-width: 100px;
}

td input, td .btn, .btn.small {
    padding: 5px 10px;
    font-size: 0.9rem;
    margin: 0;
}

.remove-all {
    overflow: auto;
    margin-bottom: 15px;
}

.remove-all .btn {
    float: right;
}

.arrow {
    border: solid #0d2b45;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}

.up {
    transform: rotate(-135deg);
}

.down {
    transform: rotate(45deg);
}

.spin-button {
    margin-right: 5px;
    display: inline-block;
}

.spin-button .btn:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.spin-button .btn:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

a {
    color: #ffaa5e;
}

a:hover {
    color: #ffd4a3;
}

a:active {
    color: #d08159;
}

.mr-15 {
    margin-right: 15px;
}

#loading {
    position: fixed;
    width: 100vw;
    height: 100vh;
    font-size: 50px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: none;
    text-align: center;
    font-family: 'Montserrat', 'Helvetica Neue', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1000;
}

#loading.show {
    display: flex;
}

.sk-folding-cube {
    margin: 20px auto;
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
    animation: sk-foldCubeAngle 2.4s infinite linear both;
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
    -webkit-transform: scale(1.1) rotateZ(90deg);
    transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
    -webkit-transform: scale(1.1) rotateZ(180deg);
    transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
    -webkit-transform: scale(1.1) rotateZ(270deg);
    transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {

    0%,
    10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%,
    75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%,
    100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes sk-foldCubeAngle {

    0%,
    10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%,
    75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%,
    100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

.lds-dual-ring {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 22px;
    height: 22px;
    margin: 2px;
    border-radius: 50%;
    border: 4px solid #ffecd6;
    border-color: #ffecd6 transparent #ffecd6 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.pdfdoc {
    width: 50vw;
    height: calc(100vh - 40px);
    border: none;
    margin: 15px;
    border-radius: 20px;
}