@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap');

* {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-red: #ff7675;
    --color-blue: #0984e3;
    --color-green: #00b894;
    --color-yellow: #fdcb6e;
    --color-orange: #e68c00;
}

body {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    align-content: center;
    padding: 30px 0;
}

/*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 #1dd1a1;
    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);
    }
}

.content {
    width: calc(100% - 60px);
    height: 100%;
    border-radius: 4px;
    margin: auto;
    background: #ffffff;
    padding: 30px;
    overflow: auto;
}

.create {
    padding: 30px;
    background: #eeeeee;
    border-radius: 4px;
    margin-bottom: 10px;
}

.message {
    display: block;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #636e72;
    border-left-width: 10px;
    border-radius: 4px;
    color: #636e72;
    font-size: 1em;
    font-weight: 100;
}
.message a:link{
    color: var(--color-green);
    font-weight: bold;
}
.message a:hover{
    color: #0984e3;
    font-weight: bold;
}
.message a {
    font-size: 1em;
    font-weight: 100;
    font-weight: bold;
    color: var(--color-green);
    text-decoration: none;
}
.message.alert {
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.message.info {
    border-color: var(--color-blue);
    color: var(--color-blue);
}
.message.error {
    border-color: var(--color-red);
    color: var(--color-red);
}

.message.success {
    border-color: var(--color-green);
    color: var(--color-green);
}




.form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 1em;
}

button {

    width: 50px;
    padding: 10px;
    color: var(--color-green);
    border: 1px solid var(--color-green);
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    background: none;
    transition-duration: 0.3s;

}

button:hover {
    background: var(--color-green);
    color: #ffffff;
}

.users_user {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    align-items: center;
    padding: 20px;
    margin-bottom: 10px;
    background: #eeeeee;
    border-radius: 4px;
}

.users_user h3 {
    font-size: 1em;
    color: #888888;
}

.users_user h3 span {
    font-weight: 300;
}

.users_user a {
    font-size: 0.8em;
    font-weight: bold;
    color: var(--color-red);
    text-align: center;
    text-decoration: none;
    transition-duration: 0.3s;
    display: block;
    width: 100%;
    padding: 5px 0;
    border: 2px solid var(--color-red);
    border-radius: 4px;
}

.users_user a:hover {
    background: var(--color-red);
    color: #ffffff;
}