
body {
    background-color: black;
    height: 100%;
    font-family: 'Courier New', Courier, monospace;
}





.saved-notif {
    /* position: absolute; */
    /* right: 0px; */
    opacity: 0%;
    color: #33FF33;
    text-align: center;
    margin: 5px 0px 20px 0px;
}

.sn-slide {
    animation: fadein 1s linear infinite;
}

.sn-fadeout {
    animation: fadeout 1s linear infinite;
}

@keyframes fadein {
    100% {
        opacity: 100%;
    }
}

@keyframes fadeout {
    100% {
        opacity: 0%;
    }
}




.selected {
    border-color: #33FF33 !important;
    box-shadow: 1px 1px 5px #33FF33;
}




.choices-wrapper {
    width: 200px;
    position: fixed;
    top: 60px;
    left: 50%;
    z-index: 90;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(calc(-50%), -50%);
}

.choices-wrapper > div {
    border: 1px solid white;
    display: inline-block;
    width: 30px;
    height: 50px;
}


.ac-labels {
    color: white;
    text-align: center;
}

.abilities-wrapper {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10px;
}

.a-text {
    color: white;
}

.a-save {
    display: inline-block;
    color: white;
    border: 1px solid white;
    padding: 5px;
    margin: 20px;
    width: fit-content;
    transition-duration: 0.2s;
}

.a-save:hover {
    background-color: white;
    color: black;
    cursor: pointer;
}

.a-back {
    display: inline-block;
    color: white;
    border: 1px solid white;
    padding: 5px;
    margin: 20px;
    width: fit-content;
    transition-duration: 0.2s;
    text-decoration: none;
}

.a-back:hover {
    background-color: white;
    color: black;
    cursor: pointer;
}

#ac-1 {
    border-top: 1px solid tomato;
    padding: 10px;
}

#ac-2 {
    border-top: 1px solid gold;
    padding: 10px;
}

#ac-3 {
    border-top: 1px solid orchid;
    padding: 10px;
}





.acc::before {
    content: "[";
    color: #33FF33;
    animation: blink 2s linear infinite;
}

.acc::after {
    content: "]";
    color: #33FF33;
    animation: blink 2s linear infinite;

}

@keyframes blink {

    50% {
        opacity: 0%;
    }

}

.adc-1 {
    color: green;
    text-shadow: 1px 1px rgb(125, 125, 125);
}

.adc-2 {
    color: yellow;
    text-shadow: 1px 1px rgb(125, 125, 125);
}

.adc-3 {
    color: orange;
    text-shadow: 1px 1px rgb(125, 125, 125);
}

.adc-4 {
    color: orangered;
    text-shadow: 1px 1px rgb(125, 125, 125);
}

.adc-5 {
    color: red;
    text-shadow: 1px 1px rgb(125, 125, 125);
}

.adc-6 {
    color: red;
    text-shadow: 1px 1px orangered;
}





/* 
.abilities-wrapper {
    border: 1px solid blue;
    margin-left: 25%;
    width: 100%;
   margin-top: 30px;
} */

.available {
    opacity: 100% !important;
}

.ability-box {
    color: white;
    font-family: 'Courier New', Courier, monospace;
    width: 140px;
    height: 180px;
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    vertical-align: top;
    border: 1px solid white;
    opacity: 50%;
}

.ability-box:hover {
    cursor: pointer;
    border: 1px solid;
    animation: blink 1s linear infinite;
}
  
@keyframes blink {
    0% {
        border-color: #33FF33;
    }
    50% {
        border-color: transparent;
    }
    100% {
        border-color: #33FF33;
    }
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}


.ability-label {
    padding: 3px;
    height: 20px;
    border-bottom: 1px solid #33FF33;
}

/* .ability-label:hover {
    cursor: pointer;
    background-color: white;
    color: black;
    
} */

.ability-label-name {
    font-size: 14px;
    font-style: italic;
}

.ability-label-class {
    float: right;
}

.ability-data {
    padding: 5px;
    height: 62px;
    border-bottom: 1px solid grey;
    padding-bottom: 18px;
}

.ability-data-label {
    font-size: 12px;
}

.infinity {
    font-size: 22px;
}

.max-distance-data {
    /* font-size: 20px; */

}

.ability-data-value {
    font-size: 16px;
    float: right;
}

.adv-text {
    font-size: 12px !important;
}

.ability-data-cost {

}

.ability-data-type {

}

.ability-data-damage {

}

.ability-data-distance {

}

.ability-info {
    font-size: 12px;
    /* border: 1px solid orchid; */
    padding: 5px;
    height: 56px;
    overflow: scroll;
}

.ability-info {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
.ability-info::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}