*{
    margin: 0;
    padding: 0;
}

.alert { 
    padding: 20px; 
    border-radius: 5px; 
    background-color: #f6fcff; 
    color: #817b8b; 
} 

.textalert { 
    padding: 10px; 
    width: auto; 
    height: auto; 
    border: 2px solid hsl(0, 0%, 0%); 
    margin: 20px; 
    border-radius: 5px; 
} 

.textalert i { 
    padding: 5px; 
} 

.textalert p { 
    margin: 12px; 
} 

html, body { 
    font-family: "Roboto", sans-serif; 
    font-size: 1em; 
    background-color: #efefef; 
    line-height: 1.4; 
    height: 100%; 
    margin: 0; 
    padding: 0; 
} 

a { 
    text-decoration: none; 
    color: inherit; 
} 

.containerbox { 
    overflow: hidden; 
    zoom: 1; 
    margin: 0 10px; 
} 

.site-content { 
    padding: 20px; 
} 

.header { 
    left: 0; 
    right: 0; 
    height: 55px; 
    line-height: 55px; 
    color: #ffffff; 
    background-color: #003adb; 
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, 
                rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; 
} 

.copyright { 
    gap: 10000000px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
} 

.copyright p { 
    padding-top: 20px; 
    margin-top: 10px; 
    margin: 0px; 
    font-size: 18px; 
} 

@media only screen and (max-width: 768px) { 
    .textalert i { 
        padding: 1px; 
    } 

    .textalert p { 
        margin: 8px; 
    } 

    .copyright p { 
        font-size: 13px; 
    } 

    .site-pusher, 
    .site-container { 
        height: 100%; 
    } 

    .site-container { 
        overflow: hidden; 
    } 

    .site-pusher { 
        transition-duration: 0.3s; 
        transform: translateX(0px); 
    } 

    .site-content { 
        position: absolute; 
        top: 55px; 
        right: 0; 
        left: 0; 
        bottom: 0; 
        overflow-y: scroll; 
        -webkit-webkit-overflow-scrolling: touch; 
    } 

    .with--sidebar .site-pusher { 
        transform: translateX(250px); 
    } 

    .with--sidebar .site-cache { 
        position: absolute; 
        top: 0; 
        left: 0; 
        right: 0; 
        bottom: 0; 
        background-color: rgba(0, 0, 0, 0.6); 
    } 
} 

.block { 
    margin-top: 3px; 
    margin-bottom: 3px; 
    border-radius: 4px; 
    flex-direction: row; 
    display: block; 
    width: auto; 
    border: none; 
    background-color: #2962ff; 
    color: white; 
    padding: 10px 28px; 
    font-size: 16px; 
    cursor: pointer; 
    text-align: center; 
} 

.block:hover { 
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, 
                rgba(0, 0, 0, 0.23) 0px 3px 6px; 
    background-color: #ddd; 
    color: black; 
} 

h3 { 
    text-align: center; 
    max-width: 320px; 
} 

.button-area { 
    margin: 5px auto; 
    display: flex; 
    flex-direction: row; 
    justify-content: space-between; 
    flex-wrap: wrap; 
    max-width: 320px; 
} 

.button-area a { 
    background: #ff311f; 
    padding: 1em 2.4em; 
    font-size: 0.9em; 
    margin: 1em; 
    color: white; 
    text-decoration: none; 
    flex-grow: 1; 
    text-align: center; 
} 

.button-area-line { 
    margin: 1px auto; 
    display: -webkit-box; 
    display: -moz-box; 
    display: -ms-flexbox; 
    display: -webkit-flex; 
    display: flex; 
    -webkit-flex-direction: row; 
    -moz-flex-direction: row; 
    flex-direction: row; 
    justify-content: space-between; 
    flex-wrap: nowrap; 
    max-width: 100%; 
} 

.button-area-line a { 
    background: #0001d1; 
    padding: 1em; 
    font-size: 0.7em; 
    margin: 0.3em; 
    color: white; 
    text-decoration: none; 
    flex-grow: 1; 
    text-align: center; 
} 


.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-color: #0000007f;
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    text-align: center;
    position: relative;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    padding: 0 12px;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.app-name { 
    font-size: 20px; 
    font-weight: 600; 
    font-family: 'Roboto', sans-serif; 
    color: #ffffff; 
    text-align: center; 
    justify-items: center; 
} 

.open-button { 
    background-color: #e70000; 
    color: white; 
    padding: 10px 10px; 
    border: none; 
    border-radius: 6px; 
    cursor: pointer; 
    opacity: 0.8; 
    width: 35%; 
} 

.open-button:hover { 
    opacity: 1; 
    background-color: #cbcaca; 
    color: #000; 
} 

.form-popup { 
    display: none; 
    position: fixed; 
    bottom: 0; 
    right: 15px; 
    z-index: 9; 
} 

.form-container { 
    max-width: 300px; 
    padding: 10px; 
    border: 3px solid #000; 
    border-radius: 9px; 
    background-color: white; 
} 

.form-container input[type=text], 
.data { 
    width: 100%; 
    padding: 15px; 
    margin: 5px 0 22px 0; 
    border: none; 
    background: #f1f1f1; 
} 

.form-container input[type=text]:focus, 
.data:focus { 
    background-color: #ddd; 
    outline: none; 
} 

.form-container .btn { 
    background-color: #04AA6D; 
    color: white; 
    padding: 16px 20px; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
    width: 100%; 
    margin-bottom:10px; 
    opacity: 0.8; 
} 

.form-container .cancel { 
    background-color: red; 
} 

.form-container .btn:hover, 
.open-button:hover { 
    opacity: 1; 
}
