/* Your custom styles */

/* @import "style.scss"; */
:root {
    --overlay-color: rgba(0, 0, 0, .7);
    --dialog-color: #e9ecef;
    --dialog-border-radius: 20px;
    --icon-color: rgba(73, 80, 87, .6);
    --dialog-padding: 20px;
    --drag-over-background: #e3e5e8;
}

body.main-bg {
    background: url(../img/gccc.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

}

.side-nav {
    background-color: rgb(255, 240, 240);
}

.sidenav-bg .mask-strong {
    color: rgb(100, 10, 0);
}

.info-content {
    margin: auto;
}

.divider-text {
    position: relative;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.divider-text span {
    padding: 7px;
    font-size: 12px;
    position: relative;
    z-index: 2;
}

.divider-text:after {
    content: "";
    position: absolute;
    width: 100%;
    border-bottom: 1px solid #ddd;
    top: 55%;
    left: 0;
    z-index: 1;
}

#text-color {
    color: #6f1f03;
}

.btn.btn-red-button {
    background-color: #b71540;
    color: #f1f2f6;
}

footer.page-footer {
    /* position: absolute; */
    bottom: 0;
    align-items: center;
    align-content: center;
    display: flex;
    width: 100%;
}

.file-container .file-wrapper .file-content .file-name .file-name {
    position: absolute;
    width: 100%;
    text-align: middle;
    left: 0;
    bottom: var(--dialog-padding);
    right: 0;
    font-weight: bold;
    font-size: 15pt;
    margin: auto;
    text-align: center;
}

.file-overlay {

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    /* background-color: var(--overlay-color); */
}

.file-wrapper {
    /* position: fixed; */
    display: block;
    top: 0;
    height: 300px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: var(--dialog-color);
    z-index: 20;
    border-radius: var(--dialog-border-radius);
    padding: var(--dialog-padding);
}

.file-container .file-wrapper .file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgb(21, 16, 16);
    z-index: 10;
    cursor: pointer;
    opacity: 0;
}

.file-content {
    background: var(--drag-over-background);
}

.file-content .file-icon {
    opacity: .5;
}

.file-content .file-icon i {
    animation-name: bounce;
    animation-duration: .6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

.file-content .file-icon .icon-shadow {
    animation-name: shrink;
    animation-duration: .6s;
    animation-iteration-count: infinite;
}

.file-content {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border: 4px dashed var(--icon-color);
    border-radius: var(--dialog-border-radius);
    transition: .2s;
}

.file-container .file-wrapper .file-content .file-infos {
    position: absolute;
    display: flex;
    width: 50%;
    height: 50%;
    /* min-width: 400px; */
    min-height: 200px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    flex-direction: column;
    justify-content: center;
}

.file-icon>i {
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.file-icon>.icon-shadow {
    position: relative;
    display: block;
    width: 95px;
    height: 7px;
    border-radius: 100%;
    background-color: var(--drag-over-background);
    top: -17px;
    margin-left: auto;
    margin-right: auto;
}

.file-container .file-wrapper .file-content .file-infos .file-icon {
    /* display: flex; */
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    color: var(--icon-color);
    background-color: #f1f1f1;
    border-radius: var(--dialog-border-radius);
    padding: var(--dialog-padding);
    box-shadow: inset 0px 0px 6px 0px #ccc;
    transition: .2s;
}

.file-icon>span {
    position: relative;
    bottom: var(--dialog-padding);
    /* width: calc(100% - var(--dialog-padding) * 2); */


}

.file-icon span span {
    display: none;
}

.file-icon span .has-drag {
    display: inline;
}

.file-icon span i,
span {
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

@keyframes bounce {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes shrink {
    0% {
        width: 95px;
    }

    50% {
        width: 75px;
    }

    100% {
        width: 95px;
    }
}
