form.dropzone {
    border-style: dashed;
}

.gallery-box {
    position: relative;
    width: 100%;
    height: 110px;
    margin-bottom: 30px;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-box .over-layer {
    background: rgba(132, 135, 183, 0.9);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.40s linear;
}

.gallery-box .links {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    text-align: center;
}

.gallery-box .links li {
    display: inline-block;
    list-style: none;
    margin-right: 5px;
}

.gallery-box .over-layer .links li button,
.gallery-box .over-layer .links li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    color: #fff;
    border: 2px solid #fff;
    transition: all 0.40s linear;
}

.gallery-box .links li a:hover,
.gallery-box .links li button:hover {
    text-decoration: none;
    background: #fff;
    color: #7d7bac;
}

.gallery-box:hover .over-layer,
.gallery-box:hover .links li a {
    opacity: 1;
}

.gallery-box .links li .fa-search {
    transform: translateX(-70px) rotate(-350deg);
    transition: all 0.20s linear;
}

.gallery-box .links li .fa-link {
    transform: translateX(70px) rotate(-350deg);
    transition: all 0.20s linear;
}

.gallery-box:hover .links li .fa-search,
.gallery-box:hover .links li .fa-link {
    transform: translateY(0px) rotate(0deg);
}
