/*** Global ***/
* {
    outline: none !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

a {
    color: #020202;
}

p {
    font-size: .875rem;
}

/*** Forms ***/
form > .container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

label {
    font-size: .875rem;
}

label.required:after {
    content: "*";
    padding-left: .25rem;
    font-weight: 600;
    color: red;
    position: relative;
}

.form-control,
.form-check-input
{
    box-shadow: none !important;
}

.form-control {
    background-color: #f9f9f9;
    border: 1px solid #f9f9f9;
}

.form-control:focus {
    background-color: #f1f1f4;
    border: 1px solid #f1f1f4;
}

.form-control.big {
    padding: .75rem 1rem;
}

.form-check-input:checked {
    background-color: #020202;
    border-color: #020202;
}

.form-check-input:focus {
    border-color: #dee2e6;
}

.btn {
    padding-top: .375rem;
    padding-bottom: .4375rem;
    font-size: .875rem;
}

.btn-lg {
    padding: .75rem 1.5rem;
    font-size: 1rem;
}

.btn-primary {
    background-color: #020202;
    border: 1px solid #020202;
}

.btn-primary.active,
.btn-primary:active,
.btn-primary:focus-visible,
.btn-primary:hover {
    background-color: #202020 !important;
    border: 1px solid #202020 !important;
}

.btn-danger {
    background-color: #d10072;
    border: 1px solid #d10072;
}

.btn-danger.active,
.btn-danger:active,
.btn-danger:focus-visible,
.btn-danger:hover {
    background-color: #b10072 !important;
    border: 1px solid #b10072 !important;
}

.btn-light {
    background-color: #d5d5d5;
    border: 1px solid #d5d5d5;
}

.btn-light.active,
.btn-light:active,
.btn-light:focus-visible,
.btn-light:hover {
    background-color: #b5b5b5 !important;
    border: 1px solid #b5b5b5 !important;
}

.btn.multiplier-remove {
    margin-top: 2rem;
}

.template-box label img {
    margin-left: -1.5rem;
}

/*** Header ***/
.header {
    padding: 1.25rem;
    background: #020202;
}

/*** Header - Steps ***/
.header .step {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    text-decoration: none;
}

.header .step:hover {
    text-decoration: underline;
    opacity: 1 !important;
}

.header .step.active {
    text-decoration: underline;
}

.header .step.active:hover {
    text-decoration: none;
}

.header .step i {
    font-size: 2rem;
    color: #d10072;;
}

/*** Content ***/
.template-preview {
    border: 19px solid #f9f9f9;
    border-radius: 10px;
}

.template-preview img {
    width: 100%;
}

.upload-file a {
    padding: 0.75rem 1rem;
    display: block;
    background: #f9f9f9;
}

.upload-file a.remove {
    background-color: #f1f1f4;
}

/*** Sticky footer ***/
.sticky {
    position: sticky;
    bottom: 0;
    background-color: #fff;
    filter: drop-shadow(0px -4px 24px #e0e0e0)
}

/*** Nette Forms Modal ***/
body .netteFormsModal {
    margin: auto;
    padding: 2rem;
    border: none;
    border-radius: .375rem;
    text-align: center;
}

body .netteFormsModal button {
    padding: .375rem .75rem .4375rem .75rem;
    border: 1px solid #020202;
    border-radius: .375rem;
    font-size: .875rem;
    color: #fff;
    background-color: #020202;
}

/*** Alerts ***/
.alert {
    border: none;
}

/*** Datagrid ***/
.datagrid .table th,
.datagrid .table td {
    padding: .75rem;
    font-size: .875rem;
    vertical-align: middle;
    white-space: nowrap;
}

.datagrid .col-action {
    width: 1%;
}

.datagrid .form-control {
    padding: .375rem .75rem;
}

.datagrid .row-grid-bottom {
    font-size: 0 !important;
}

.datagrid .row-grid-bottom .col-items {
    width: 25%;
    font-size: .875rem;
    display: inline-block;
}

.datagrid .row-grid-bottom .col-pagination {
    width: 50%;
    font-size: .875rem;
    display: inline-block;
}

.datagrid .row-grid-bottom .col-per-page {
    width: 25%;
    font-size: .875rem;
    display: inline-block;
    text-align: right;
}

.datagrid .row-grid-bottom .col-per-page .form-control {
    width: auto;
    display: inline-block;
}

.datagrid .row-grid-bottom .datagrid-per-page-submit {
    display: none !important;
}

/*** AJAX spinner ***/
#overlay {
    position: fixed;
    top: 0;
    z-index: 100000;
    width: 100%;
    height: 100%;
    display: none;
    background: transparent;
}
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px #020202 solid;
    border-top: 4px #fff solid;
    border-radius: 50%;
    animation: sp-anime .8s infinite linear;
}
@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

/*** Responsive ***/
@media (max-width: 991.98px) {

    /*** Forms ***/
    .btn.multiplier-remove {
        margin-top: 0;
    }

    /*** Content ***/
    .template-preview img {
        height: 350px;
        object-fit: cover;
        object-position: 100% 0;
    }
}
