@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&family=Roboto:wght@100;300;400;500;700;900&family=Space+Mono&display=swap');

* {
    margin: 0;
    border: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

:root {
    --text-main-color: #000;
    --text-main-color2: #3a3a3a;
    --text-secondary-color: #fff;
    --text-secondary-color2: #bdbdbd;
    --color1: rgba(255, 166, 0, 1);
    --color1-darker: rgb(200, 130, 0);
    --color2: rgba(200,0,0,1);
    --color2-darker: rgba(151, 0, 0, 1);
    --color2-darker2: rgba(100,0,0,1);
    --color3: rgb(255, 0, 0);

    --assigned-text-color: var(--text-main-color);
    --due-soon-text-color: rgb(204, 133, 0);
    --expired-text-color: rgba(200,0,0,1);
    --assigned-color: rgb(6, 179, 0);
    --due-soon-color: rgba(255, 166, 0, 1);
    --expired-color: rgba(200,0,0,1);
}

/* Links */
a,
a:hover,
a:visited {
    color: black;
    text-decoration: none;
}

/* Buttons */ 

.btn-primary {
    text-align: center;
    width: fit-content;

    cursor: pointer;
    background-color: rgba(0,255,255,.5);
    border-radius: 1em;
    border: 2px solid rgba(0,255,255,.5);
    padding: 10px 20px;
    font-size: 1em;
    width: fit-content;
    height: fit-content;
    text-align: center;
    vertical-align: middle;
    transition: all .2s;
}
.btn-primary:hover {
    background-color: rgba(0,255,255,.6)
}
.btn-secondary {
    text-align: center;
    width: fit-content;

    cursor: pointer;
    background-color: rgba(0,0,0,0);
    border-radius: 1em;
    border: 2px solid rgba(0,255,255,.5);
    padding: 10px 20px;
    font-size: 1em;
    transition: all .2s;
}
.btn-secondary:hover {
    border: 2px solid rgba(0,200,200,.9);
}
.btn-tertiary {
    text-align: center;
    width: fit-content;

    cursor: pointer;
    background-color: rgba(0,0,0,0);
    border-bottom: 2px solid rgba(0,200,200,.9);
    padding: 10px 20px;
    font-size: 1em;
    transition: all .2s;
}
.btn-tertiary:hover {
    border-bottom: 2px solid rgba(0, 122, 122, 0.9);
}

.has_h_sep {
    background-image: linear-gradient(#000,#000);
    background-size: 2px 60%;
    background-position: 100% 50%;
    background-repeat: no-repeat;
}
.has_h_sep.sep_white {
    background-image: linear-gradient(#fff,#fff);
}
.has_vu_sep {
    background-image: linear-gradient(#000,#000);
    background-size: 60% 2px;
    background-position: 50% 0;
    background-repeat: no-repeat;
}
.has_vu_sep.sep_white {
    background-image: linear-gradient(#fff,#fff);
}
.has_vd_sep_bg {
    background-image: linear-gradient(#000,#000);
    background-size: 60% 2px;
    background-position: 50% 100%;
    background-repeat: no-repeat;
}
.has_vd_sep_bg.sep_white {
    background-image: linear-gradient(#fff,#fff);
}
.has_vd_sep::after {
    content: "";
    width: 100;
    height: 2px;
    position: relative;
    bottom: 0;

    background-image: linear-gradient(#000,#000);
    background-size: 60% 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.has_vd_sep.sep_white::after {
    background-image: linear-gradient(#fff,#fff);
}

.field {
    display: inline;
}
.field .field-name {
    color: var(--text-main-color2);
    font-weight: 900;
    font-size: 1.1em;
}
.field .field-val {
    color: var(--text-main-color);
    font-size: 0.95em;
}


.flip-box {
    width: fit-content;
    height: fit-content;
    perspective: 1000px;
}
.flip-box-inner {
    text-align: center;
    transition: transform 1s;
    transform-style: preserve-3d;
    display: grid;
}
.flip-box:hover .flip-box-inner {
    transform-origin: center;
    transform: rotateY(180deg);
}
.flip-box-front,
.flip-box-back {
    display: block;
    grid-column: 1 / 1;
    grid-row: 1 / 1;

    width: fit-content;
    height: fit-content;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.flip-box-back {
    transform: rotateY(180deg);
}
/* .flip-box {
    background-color: transparent;
    width: 300px;
    height: 300px;
    border: 1px solid #f1f1f1;
    perspective: 1000px;
}
.flip-box-inner {
    text-align: center  ;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}
.flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.flip-box-front {
    color: black;
}
.flip-box-back {
    color: white;
    transform: rotateY(180deg);
} */