/* Start: App CSS */

html,
body {
    height: 100%;
    background: url(images/bg.jpg);
    color:  rgb(7, 8, 71);
}

#content {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    top: 20px;
}

.top {
    position: absolute;
    top: 20px;
}

.card {
    background-color: transparent !important;
}

a.img-dweb{
    text-align: center !important;
    padding: 1.25rem
}

a.img-dweb img{
    width: 130px;
}


#content-top img {
    width: 80%;
}

#content-top img.logo {
    margin-top: 20px;
}

#content-top img.avatar {
    max-width: 250px;
    margin-top: 20px;
    border-radius: 50%;
}

#content-page .card-body{
    border-radius: 20px;
    background-color: #af7a7f26;
    border: #cdb1ad solid 0px;
    margin-top: 20px;
    margin-bottom: 20px;
}

#content-options {
    vertical-align: middle;
    list-style: none;
    padding: 0;
}

#content-options li img {
    width: 32px;
}

#content-options li {
    padding: 10px 5px;
}

#content-options li a{
    color: rgb(7, 8, 71);
}

#content-options li a:hover{
    text-decoration: none;
}

iframe {
    border-radius: 15px;
    margin-bottom: 15px;
}

#contact-form {
    margin-bottom: 20px;
}

/*DEFAULT LOAD*/
.ajax_load {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
}

.ajax_load_box {
    margin: auto;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.ajax_load_box_circle {
    border: 16px solid #e3e3e3;
    border-top: 16px solid #f00;
    border-radius: 50%;
    margin: auto;
    width: 80px;
    height: 80px;

    -webkit-animation: spin 1.2s linear infinite;
    -o-animation: spin 1.2s linear infinite;
    animation: spin 1.2s linear infinite;
}

.ajax_load_box_title {
    margin-top: 15px;
    font-weight: bold;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
