/* @import url(./bootstrap.css); */

footer {
    background-color: #222222;
    color: #ffffff;
    font-size: 14px;
}

footer a {
    color: #ffffff;
    display: block;
    padding: 5px 10px 5px 0px;
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

li {
    display: inline-block;
}

input[type="radio"][id^="cb"] {
    display: none;
}

label {
    border: 1px solid #fff;
    /* padding: 5px; */
    display: block;
    position: relative;
    margin: 3px;
    cursor: pointer;
}

label:before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    border-radius: 50%;
    border: 1px solid grey;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
}

label img {
    height: 80px;
    width: 80px;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
}

:checked + label {
    border-color: rgb(10, 148, 33);
}

:checked + label:before {
    content: "✓";
    background-color: rgb(10, 148, 33);
    transform: scale(1);
}

:checked + label img {
    transform: scale(0.9);
    box-shadow: 0 0 5px #333;
    z-index: 10;
}

.cardbutton {
    background-color: #023b08;
    color: #ffffff;
}

.cardbutton:hover {
    background-color: #023b0850;
    color: #023b08;
}

small {
    font-size: 12px;
    padding: 5px 0px;
}

.bouncing {
    display: none;
}

.pcard:hover .bouncing {
    display: block;
}

.div-pointer {
    padding: 10px;
    position: relative;
    margin-top: -20px;
}

.div-pointer::before {
    content: "";
    position: absolute;
    top: -10px; /* Position the arrow above the div */
    left: 5%;
    transform: translateX(-5%); /* Center the arrow horizontally */

    /* The triangle is created by making 3 borders transparent */
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff3cd; /* Color of the arrow */
}
