.dropdown-menu {
    border: none;
}

.box {
    display: flex;
    flex-flow: column;
    height: 100%;
    padding: 10px;
}
.box .row.header {
    padding-top: 60px;
    flex: 0 1 auto;
}
.box .row.content {
    display: flex;
    flex: 0 1 auto;
    overflow-y: scroll;
}
@media only screen and (min-width: 375px)
and (max-width: 500px){
    .box .row.content {
        flex-flow: column;
    }
}
.box .row.summary {
    display: flex;
    flex-flow: row wrap;
    flex-grow: 1;
    align-content: flex-start;
    gap: 15px;
    padding-left: 15px;
    overflow-y: scroll;
}
.summary-card {
    width: auto;
    padding: 0;
    border: 1px solid black;
}
.summary-card .card-body{
    padding: 15px;
}
.table-summary td {
    background-color: transparent;
    border: 1px solid rgb(200, 200, 200);
}

.normal {
    color: rgb(255, 225, 101) !important;
}
.holo {
    color: rgb(155, 107, 255) !important;
}
.reverse {
    color: rgb(50, 181, 255) !important;
}
.pokeball {
    color: rgb(232, 62, 52) !important;
}
.masterball {
    color: rgb(232, 100, 185) !important;
}
.type_else {
    color: rgb(127, 133, 150) !important;
}
.ex {
    background-color: rgb(152, 250, 233) !important;
}

.variants {
    display: flex;
    flex-direction: row;
    -webkit-box-pack: end;
    justify-content: flex-end;
    margin: 0;
    width: 95%;
    min-height: 30px;
}
.variant {
    display: flex;
    flex-direction: row;
    -webkit-box-pack: end;
    justify-content: flex-end;
    margin-left: 3px;
    margin-right: 3px;
}
.variant_label {
    display: flex;
    flex-direction: row;
    -webkit-user-select: none;
    cursor: pointer;
    z-index: 8;
}
.variant_label .checkbox::after {
    width: 10px;
    height: 19px;
    border-style: solid;
    border-color: rgb(31, 35, 45);
    border-image: none;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.variant_input_checkbox {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
    display: flex;
    -webkit-box-pack: center;
    place-content: center;
    -webkit-box-align: center;
    align-items: center;
}
.variant_input_checkbox:checked ~ .checkbox::after {
    display: block;
}
.variant_checkbox {
    background-color: rgb(255, 255, 255);
    border-radius: 4px;
    width: 29px;
    height: 29px;
    cursor: pointer;
}
.variant_checkbox::after {
    margin-left: 7px;
    margin-top: 1px;
    content: "";
    display: none;
}

.variant_normal {
    border: 2px solid rgb(255, 225, 101);
}
.variant_reverse {
    border: 2px solid rgb(50, 181, 255);
}
.variant_holo {
    border: 2px solid rgb(155, 107, 255);
}
.variant_pokeball {
    border: 2px solid rgb(232, 62, 52);
}
.variant_masterball {
    border: 2px solid rgb(232, 100, 185);
}
.variant_else {
    border: 2px solid rgb(127, 133, 150);
}

.variant_input_checkbox_normal:checked ~ .checkbox {
    background-color: rgb(255, 225, 101);
}
.variant_input_checkbox_reverse:checked ~ .checkbox {
    background-color: rgb(50, 181, 255);
}
.variant_input_checkbox_holo:checked ~ .checkbox {
    background-color: rgb(155, 107, 255);
}
.variant_input_checkbox_pokeball:checked ~ .checkbox {
    background-color: rgb(232, 62, 52);
}
.variant_input_checkbox_masterball:checked ~ .checkbox {
    background-color: rgb(232, 100, 185);
}
.variant_input_checkbox_else:checked ~ .checkbox {
    background-color: rgb(127, 133, 150);
}

.img_type {
    width: 21px;
}

.img_fav_pkmn {
    max-height: 30px;
}

.img_summary_title {
    margin-right: 5px;
    min-width: 80px;
}
.img_rarity {
    width: 29px;
}
.img_rarity_c, .img_rarity_u {
    padding-left: 8px;
    padding-right: 8px;
}
.img_rarity_r, .img_rarity_mur {
    padding-left: 6px;
    padding-right: 6px;
}
.img_rarity_ar, .img_rarity_ace, .img_rarity_s {
    padding-left: 4px;
    padding-right: 4px;
}
.img_rarity_rr, .img_rarity_sr, .img_rarity_ssr, .img_rarity_sar, .img_rarity_bwr {
    padding-left: 3px;
    padding-right: 3px;
}
.img_rarity_ur, .img_rarity_promo {
    padding-left: 2px;
    padding-right: 2px;
}

.img_log_set {
    width: 33px;
    min-width: 33px;
}
