.full-gal-2 i {
    display: block;
    font-size: 30px;
    margin: 10px 0px 0px 10px;
}

.full-gal-2 h5 {
    font-size: 25px;
}

.new-date {
    width: 100%;
}

.new-date input {
    width: 100%;
    height: 46px;
    border: 1px solid #fff;
    background: transparent;
    padding: 0px 24px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
}

.new-date .input-group-addon {
    position: absolute;
    background: transparent;
    width: 100%;
    height: 46px;
    text-align: right;
    line-height: 33px;
    z-index: 2;
    border: none;
    color: #fff;
}

.new-date input:focus {
    box-shadow: none;
    border-color: #fff;
}

.new-date input::placeholder {
    color: #fff;
    opacity: 1;
}

.new-date input::-ms-input-placeholder {
    color: #fff;
}

.check-container {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-top: 5px;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 400;
}

.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: transparent;
    border: solid 1px #fff;
    color: #fff;
}

.check-container:hover input~.checkmark {
    background-color: #fff;
}

.check-container input:checked~.checkmark {
    background-color: #fff;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.check-container input:checked~.checkmark:after {
    display: block;
}

.check-container .checkmark:after {
    left: 4px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #07c561;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}