﻿.footer {
    padding-top: 2px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    font-size: 9pt;
    text-align: left;
    height: 120px;
}

header1 {
    background: #f5b335;
    height: 40px;
    position: fixed;
    bottom: 0;
    transition: top 0.2s ease-in-out;
    width: 100%;
    z-index: 99999;
}

.nav-up {
    bottom: -40px;
}

.sizeButton {
    min-width: 50px;
    height: 50px;
    border-radius: 25px;
    display: inline-block;
    margin: 0;
    text-align: center;
    line-height: 52px;
    color: #212121;
    background: none;
    font-weight: 500;
    border: 0;
    outline: none;
    font-size: 14px;
    font-family: "Rubik", sans-serif;
    padding: 0 15px;
    -webkit-box-shadow: 0 2px 2px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 5%);
}

    .sizeButton:active {
        background-color: #081A2A;
        color: #fff !important;
        box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
    }


.mainButton {
    background: #081A2A none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    font-family: Poppins;
    font-size: 15px;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    transition: 0.3s;
    margin-top: 20px;
}

.mainButtonSmall {
    background: #081A2A none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    font-family: Poppins;
    font-size: 15px;
    height: 38px;
    line-height: 40px;
    padding: 0 9px;
    transition: 0.3s;
    margin-top: 1px;
}

.BuyButton {
    background: #337ab7 none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    font-family: Poppins;
    font-size: 15px;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    transition: 0.3s;
    margin-top: 20px;
}


/*
* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    list-style: none;
    text-decoration: none;
}

.middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.menu {
    width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.item {
    border-top: 1px solid #18dcff;
    overflow: hidden;
}

.btn {
    display: block;
    padding: 16px 20px;
    background: #17c0eb;
    color: white;
    position: relative;
}

    .btn::before {
        content: "";
        position: absolute;
        width: 14px;
        height: 14px;
        background: #17c0eb;
        left: 20px;
        bottom: -7px;
        transform: rotate(45deg);
    }

    .btn i {
        margin-right: 10px;
    }

.smenu {
    background: #333;
    overflow: hidden;
    transition: max-height 0.3s;
    max-height: 0;
}

    .smenu a {
        display: block;
        padding: 16px 26px;
        color: white;
        margin: 4px 0;
        position: relative;
    }

        .smenu a::before {
            content: "";
            position: absolute;
            width: 6px;
            height: 100%;
            background: #18dcff;
            left: 0;
            top: 0;
            transition: .3s;
            opacity: 0;
        }

        .smenu a:hover::before {
            opacity: 1;
        }

.item:target .smenu {
    max-height: 10em;
}
*/