html, body {
    overflow-x: hidden;
}

body {
    padding: 180px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/bg.png') repeat top left;
}

#controls {
    padding: 15px 0;    
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #fff;
}

#crop-area {
    position: absolute;
    overflow: hidden;
    border: 6px dashed rgba(0, 0, 0, 0.6);
    background-color: rgba(255, 255, 255, 0.6);
}

#crop-area .crop {
    position: relative;
    width: 100%;
    clear: both;
}

#crop-area .crop.active {
    background-color: rgba(0, 0, 0, 0.4);
}

#crop-area .crop .childs {
    height: 100%;
    width: 100%;
}

#crop-area .crop .childs .crop-child {
    position: relative;
    height: 100%;
    width: 100%;
    float: left;
}

#crop-area .crop .childs .crop-child a {
    display: block;
    width: 25px;
    height: 25px;
    margin: 5px;
    opacity: 0.6;
    cursor: pointer;
    background: url(../images/link.png) no-repeat center center;
    background-size: contain;
}

#crop-area .crop .resize_handle {
    position: absolute;
    cursor: ns-resize;
    font-size: 0.1px;
    display: block;
    background: url(../images/hor_line.png) repeat-x center center;
    width: 100%;
    height: 15px;
    bottom: -5px;
    opacity: 0.6;
}

#crop-area .crop .childs .crop-child .c_resize_handle {
    position: absolute;
    cursor: ew-resize;
    font-size: 0.1px;
    display: block;
    background: url(../images/ver_line.png) repeat-y center center;
    height: 100%;
    width: 15px;
    right: -5px;
    top: 0;
    opacity: 0.6;
}

.btn.disabled {
    cursor: default;
    outline: none;
}

.custom-file-label::after {
    content: "Buscar";
}

.input-group>.custom-file:not(:last-child) .custom-file-label, .input-group>.custom-file:not(:last-child) .custom-file-label::after {
    border-top-right-radius: .25rem; 
    border-bottom-right-radius: .25rem;
}