﻿


.form-base {
    position: fixed;
    bottom: 0%;
    left: 0%;
    top: 0;
    width: 100%;
    background-repeat: repeat;
    overflow: auto;
    display: block;
    z-index: 5;
    background-color: rgb(0 0 0 / 70%);
    padding: 1em;
    z-index: 200;
    padding-top: 10%;
}



    .form-base .myform {
        /* clear: both; */
        margin: auto;
        max-width: 800px;
        display: block;
        padding: 0px;
        background-color: rgb(255 255 255);
        -moz-border-radius: 0px;
        -webkit-border-radius: 0px;
        -khtml-border-radius: 0px;
        padding: 1em;
        border-radius: 5px;
        border: 5px solid rgb(255 210 0);
    }


    .form-base .myform_header {
        clear: both;
        display: block;
        color: rgb(17 17 17);
        font-size: 1.5em;
    }

    .form-base .myform_body {
        background-color: white;
        clear: both;
        display: block;
        padding-bottom: 30px;
        padding-top: 10px;
        float: left;
        width: 100%;
    }

    .form-base .myform_footer {
        background-color: white;
        clear: both;
        display: block;
        padding-bottom: 10px;
        padding-top: 10px;
        padding-right: 10px;
        text-align: right;
        border-top: solid 1px #ddd;
        min-height: 20px;



    }




/*

*/

.spacer {
    display: block;
    padding: 2.2em;
}


.field-label-content {
    display: block;
    margin-bottom: 1em;
}

    .field-label-content .label {
        text-transform: uppercase;
        display: block;
    }






    /*

    */


.buttonconfirm input, .buttonnormal input, .button--outline input, .button--outline a {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-size: 1.2em;
    padding: 10px 30px;
    text-decoration: none;
    /* font-weight: bold; */
    cursor: pointer;
    display: inline-block;
    background-color: #306aff;
    border: 0;
    color: rgb(255 255 255);
}


.button--outline input, .button--outline a {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-size: 1em;
    padding: 10px 30px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    border: 2px solid #222222;
    background: transparent;
    color: #222222;
    min-width: 150px;
}


/*

*/

input[type=text], input[type=password], select, textarea {
    min-height: 28px;
    line-height: 28px;
    color: rgb(34 34 34);
    padding-bottom: 1px;
    border: solid 1px rgb(68 68 68);
    padding: 10px;
    font-size: 1.5em;
    border-radius: 4px;
}



/*
    slider
*/



.slider figure {
    position: relative;
    width: 400%;
    margin: 0;
    padding: 0;
    font-size: 0;
    left: 0;
    text-align: left;
    animation: 15s slidy infinite;
}

    .slider figure img {
        width: 25%;
        height: auto;
        float: left;
    }

.slider {
    /* width: 98%; */
    max-width: 700px;
    overflow: hidden;
    border-radius: 10px;
    /* height: 50vh; */
    margin: auto;
}




@keyframes slidy {
    0% {
        left: 0%;
    }

    20% {
        left: 0%;
    }

    25% {
        left: -100%;
    }

    45% {
        left: -100%;
    }

    50% {
        left: -200%;
    }

    70% {
        left: -200%;
    }
    /*75% {
        left: -300%;
    }

    95% {
        left: -300%;
    }
*/
}



