.images__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.images__list-item {
    padding: 0 15px 30px;
    position: relative;
}

.input-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 215px;
    height: 120px;
    background-color: rgb(215, 215, 215);;
    border-radius: 12px;
    overflow: hidden;

    font-size: 5rem;
    color: rgb(65, 125, 247);
}

label.input-wrapper {
    cursor: pointer;
}

label.input-wrapper:hover { color: #212529; }

#addFile {
    position: absolute;
    width: 55%;
    bottom: 0;
    right: 0;
    opacity: 0;
    z-index: -1;
}

.images__list-item .close-icon {
    position: absolute;
    top: -10px;
    right: 5px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    font-size: 1.1rem;
    background-color: rgb(208, 1, 27);
    color: #fff;
    cursor: pointer;
}

.images__list-item .fa-spinner {
    animation: spinner 1s linear infinite;
    /* display: none; */
}

.images__list-item .image-input {
    max-height: 100%;
    max-width: 100%;
}

.checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.checkbox__box {
    display: inline-flex;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border: solid 2px #7ED321;
    border-radius: 10px;
    color: #7ED321;

    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input[type=checkbox]:checked + .checkbox .checkbox__box::before {
    content: "\f00c";
    font-size: 28px;
    margin: auto;
}

.checkbox__label {
    margin-left: 20px;
    font-size: 20px;
    font-weight: 600;
}

.datetime-pick-wrap {
    display: none;
    margin-top: 10px;
}

.datetime-pick {
    display: flex;
    flex-wrap: wrap;
    padding-left: 55px;
}

.send-btn, .skip-btn {
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    padding: 1rem 4rem;
    border-radius: 12px;
    margin: 0 15px;
}

.send-btn, .skip-btn {
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    padding: 1rem 4rem;
    border-radius: 12px;
    margin: 0 15px;
}

.send-btn { background-color: rgb(125, 211, 33); }

.skip-btn { background-color: rgb(65, 125, 247); }

@keyframes spinner {
    to { transform: rotate(360deg); }
}

@media (max-width: 575px) {
    .lead {
        font-size: 1rem;
    }
}