/*============================================================================================*/


/* Your custom styles below */


/*============================================================================================*/

.alert {
    margin: 10px 0px;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
}

.alert-danger {
    background-color: #F8D7DA;
    color: #964E55;
}

input[type="checkbox"][id^="photox"] {
    display: none;
}

.img_active {
    list-style-type: none;
    padding: unset;
}

.img_active li {
    display: inline-block;
}

.breadcrumb {
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    background-color: #e9ecef;
    border-radius: .25rem;
    margin: 10px;
}

.photo_label {
    border: 1px solid #fff;
    padding: 10px;
    display: block;
    position: relative;
    margin-right: 10px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.photo_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;
    transition-duration: 0.4s;
    transform: scale(0);
}

.photo_label img {
    height: 150px;
    width: 150px;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
}

 :checked+.photo_label {
    border-color: #ddd;
}

 :checked+.photo_label::before {
    content: "✓";
    background-color: grey;
    transform: scale(1);
    z-index: 1;
    padding-top: 2px;
}

 :checked+.photo_label img {
    transform: scale(0.9);
    box-shadow: 0 0 1px #333;
    z-index: -50;
}