body {
    background: rgb(6,14,23);
    background: radial-gradient(circle, rgba(6,14,23,1) 0%, rgba(17,5,22,1) 100%);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    margin: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}
.responsive {
    display: none!important;
}
.background {
    position: fixed;
    top: 200px;
    right: 0;
    width: 50vw;
    z-index: -1000;
}
* {
    font-family: 'Poppins', sans-serif;
}
button, input, a {
    border-radius: 0!important;
}
.customInput {
    border: 0;
    background-color: transparent!important;
    margin: 5px!important;
}
.select2-container input {
    border: 1px solid #aaa!important;
    margin: 0!important;
}
.icon_edit {
    position: absolute;
    right:  -32px;
    height: 32px;
    filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(306deg) brightness(104%) contrast(101%);
    top: 50%;
    transform: translateY(-50%);
}
button img, label img {
    width: 20px;
    filter: invert(93%) sepia(7%) saturate(27%) hue-rotate(264deg) brightness(106%) contrast(107%);
}
button:hover img, label:hover img {
    filter: invert(93%) sepia(7%) saturate(27%) hue-rotate(264deg) brightness(106%) contrast(107%);
}
button .icon_success, label .icon_success {
    filter: invert(39%) sepia(44%) saturate(839%) hue-rotate(100deg) brightness(96%) contrast(81%)
}
button .icon_primary, label .icon_primary {
    filter: invert(34%) sepia(89%) saturate(3533%) hue-rotate(207deg) brightness(99%) contrast(106%);
}
button .icon_danger, label .icon_danger {
    filter: invert(30%) sepia(100%) saturate(1226%) hue-rotate(327deg) brightness(86%) contrast(101%);
}
.customModal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    z-index: 110;
    display: none;
    opacity: 0;
    border-radius: 5px;
    padding: 15px;
}

.buttonModalImportImage {
    position: fixed;
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
    width: 50px;
    height: 50px;
    background: url(../img/plus.png) no-repeat center center;
    filter: invert(100%);
    background-size: contain;
    cursor: pointer;
}
#modalImportImage, #modalRecrop {
    text-align: center;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    max-width: 80vw;
    max-height: 60vh;
    background-color: white;
    z-index: 100;
    display: none;
    opacity: 0;
    border-radius: 5px;
}
#modalImportImage {
    z-index: 120;
    top: auto;
}
#modalImportImage #labelInputFileRecrop {
    border: #198754 1px solid;
    border-radius: 0;
    margin: 15px 0;
}
#modalImportImage #labelInputFileRecrop:hover {
    background-color: #198754;
}
#modalRecrop {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 130;
    background-color: transparent;
    height: fit-content;
}
#modalRecrop img {
    max-width: 80vw;
    max-height: 60vh;
    object-fit: contain;
}
#generalVoile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
    display: none;
}
.checkMark {
    position: absolute;
    top: -10px;
    width:20px;
    height: 20px;
    opacity: 0;
    transition: opacity 1s;
}
@-webkit-keyframes blinker {
    from {opacity: 1.0;}
    to {opacity: 0.0;}
}
.blink{
    text-decoration: blink;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 0.6s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:ease-in-out;
    -webkit-animation-direction: alternate;
}
