﻿.ld-footer {
    background: rgb(var(--smash-orange-4-rgb));
    border-radius: 100px 100px 0 0;
    text-align: center;
}

.ld-footer-about {
    width: 100%;
    max-width: 1200px;
    overflow: auto;
    padding: 3rem;
    padding-bottom: 0;
    display: inline-block;
}

.ld-footer-about-info,
.ld-footer-about-logo {
    float: left;
    width: 35%;
    text-align: center;
}

.ld-footer-about-info {
    width: 65%;
}

.ld-footer-about-logo img {
    max-width: 300px;
    display: inline-block;
}

.ld-footer-about-info-data {
    text-align: left;
    display: block;
    font-size: 1.5rem;
    color: white;
}

.ld-footer-about-info-links {
    padding: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 3rem;
    background: rgb(var(--smash-yellow-5-rgb));
    overflow: auto;
    margin-top: 2rem;
}

    .ld-footer-about-info-links .ld-footer-about-info-data {
        float: left;
        width: 40%;
        line-height: 1.2rem;
        font-size: 1.2rem;
    }

.ld-footer-about-info-wrapper .ld-ui-btn {
    font-size: 1rem;
}

.ld-footer-about-info-wrapper {
    float: left;
    width: 60%;
    text-align: right;
}

.ld-footer-terms {
    padding: 3rem;
    padding-top: 2rem;
    padding-bottom: 0;
    background: rgb(var(--smash-brown-1-rgb));
    border-radius: 100px 100px 0 0;
    text-align: center;
}

.ld-footer-terms-items {
    width: 100%;
    max-width: 1200px;
    display: inline-block;
}

.ld-footer-terms-item-list {
    width: calc(100% / 3);
    padding: 0;
    margin: 0;
    float: left;
}

    .ld-footer-terms-items ul {
        width: auto;
        display: inline-block;
        padding: 0;
        margin: 0;
        list-style: none;
        text-align: left;
    }

        .ld-footer-terms-items ul:nth-child(2) {
            width: 50%;
        }

.ld-footer-terms-item-list ul li a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
}


.ld-footer-about-info-wrapper .ld-ui-btn:nth-child(1) {
    margin-top: 0;
    margin-right: 1rem;
}

.ld-footer-about-info-wrapper .ld-ui-btn:nth-child(2) {
    margin-top: 0;
}


.ld-footer-rights {
    text-align: center; 
    padding: 2rem;
}

.ld-footer-rights h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: normal;
}


/*Create account*/

#CreateAnAccount {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background: rgba(255,205,0,1);
    background: -moz-linear-gradient(top, rgba(255,205,0,1) 0%, rgba(255,95,0,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,205,0,1)), color-stop(100%, rgba(255,95,0,1)));
    background: -webkit-linear-gradient(top, rgba(255,205,0,1) 0%, rgba(255,95,0,1) 100%);
    background: -o-linear-gradient(top, rgba(255,205,0,1) 0%, rgba(255,95,0,1) 100%);
    background: -ms-linear-gradient(top, rgba(255,205,0,1) 0%, rgba(255,95,0,1) 100%);
    background: linear-gradient(to bottom, rgba(255,205,0,1) 0%, rgba(255,95,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffcd00', endColorstr='#ff5f00', GradientType=0 );
}

    #CreateAnAccount:before {
        position: fixed;
        content: '';
        bottom: 0;
        width: 100vw;
        height: 200px;
        background-image: url('/image/general/bg_bottom.png');
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: 100% 75px;
    }

#CreateAnAccountWrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.ld-c-account-title {
    font-size: 35px;
    margin-bottom: 30px;
    color: white;
    font-weight: normal;
}

.ld-c-account-type-selection {
    background: white;
    padding: 30px;
    border-radius: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    max-width: 600px;
    position: relative;
    padding-bottom: 50px;
}


    .ld-c-account-type-selection h3 {
        font-size: 25px;
        color: rgba(255,95,0,1);
        text-align: center;
        width: 100%;
        font-weight: normal;
    }

.ld-c-account-type-student {
    margin-right: 50px;
    text-align: center;
}

.ld-c-account-type-teacher {
    text-align: center;
}

    .ld-c-account-type-student div,
    .ld-c-account-type-teacher div {
        text-align: center;
        display: inline-block;
        padding: 5px;
        height: 160px;
        line-height: 100px;
        width: 160px;
        background: white;
        font-size: 50px;
        border-radius: 10px;
        margin-top: 50px;
        cursor: pointer;
        transition-duration: 200ms;
    }

        .ld-c-account-type-student div:hover,
        .ld-c-account-type-teacher div:hover {
            transform: scale(1.2);
        }

.ld-c-account-type-student {
    padding-right: 50px;
    border-right: 2px solid rgba(255,95,0,1);
}

#CancelCreateAccount {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 100px;
    margin: 0;
    font-size: 1rem;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

#CookiesAlert {
    position: fixed;
    bottom: 75px;
    right: 10px;
    max-width: 600px;
    z-index: 990;
    background: black;
    padding: 15px;
    color: white;
    display: none;
    border-radius: 1rem;
}

    #CookiesAlert p {
        clear: both;
    }


        #CookiesAlert p span {
            color: #d8651e;
            cursor: pointer;
        }

    #CookiesAlert button {
        background: none;
        color: white;
        border: 1px solid #d8651e;
        padding: 10px;
        float: right;
        cursor: pointer;
        margin-top: 15px;
    }