body{
    background-color: #FDFDFD;
    font-family: 'Ubuntu';
}

.site-title{
    font-size: 20px;
    font-family: 'Ubuntu-Medium';
    margin-bottom: 80px;
    margin-top: 0;
}

.container{
    margin-left: 355px;
    padding: 75px;
    padding-top: 70px !important;
    position: relative;
}

.button-menu{
    position: fixed;
    display: none;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    border: 6px solid white;
    background-color: #EB8043;
    background-image: url("img/icon_menu.svg");
    transform: rotate(180deg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 8px;
    top: 50px;
    right: 5vw;
    transition: 0.5s;
    z-index: 2;
    transition: 0.5s;
}

.button-menu-close{
    right: 88vw;
    transform: rotate(0deg);
}

.menu{
    position: fixed;
    height: 100vh;
    width: 355px;
    background-color: #271C17;
    padding: 50px;
    box-sizing: border-box;
    left: 0;
    top: 0;
    overflow: hidden;
    transition: 0.5s;
}

.menu img{
    margin-bottom: 70px;
    width: 100%;
}

.menu li{
    list-style: none;
    padding: 0;
}

.menu ul{
    margin: 0;
    padding: 0;
}

.menu a{
    text-decoration: none;
    color: white;
    padding: 10px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 10px;
    transition: 0.5s;
}

.menu a:hover, .menu a.active{
    background-color: #322823;
    border-radius: 7px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.menu a:after{
    content: "";
    display: block;
    background-color: #EB8043;
    border-radius: 4px;
    height: 100%;
    width: 10px;
    position: absolute;
    right: -60px;
    top: 0;
    transition: 0.5s;
}

.menu a:hover:after, .menu a.active:after{
    right: -56px;
}

.menu p{
    color: #63534B;
    font-size: 12px;
    margin-top: 35px;
}

.login-container{
    text-align: center;
    width: 600px;
    max-width: 100%;
    margin: auto;
    padding: 0 40px;
    box-sizing: border-box;
    margin-top: 10vh;
}

.text-right{
    text-align: right;
}

.text-left{
    text-align: left;
}

.login-container h2{
    font-family: 'Ubuntu-Medium';
}

.login-input{
    display: block;
    width: 100%;
    padding: 20px 15px 20px 60px;
    border-radius: 10px;
    border: 1px solid #F3F4F6;
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.03);
    margin-bottom: 10px;
    border: 1px solid #F3F4F6;
    position: relative;
    box-sizing: border-box;
    font-size: 14px;
}

.login-submit{
    display: block;
    width: 100%;
    border-radius: 7px;
    margin-top: 50px;
    border: 0;
    text-align: center;
    background-color: #2C2926;
    color: #F8F8FA;
    padding: 15px;
    font-size: 12px;
    letter-spacing: 3px;
    transition: 0.5s;
    cursor: pointer;
}

.login-submit:hover{
    background-color: #EB6207;
}

.login-logo{
    margin: auto;
    margin-bottom: 100px;
    width: 90%;
}

.icon1{
    background-image: url("img/koperta.png");
    background-position: left 20px center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.icon2{
    background-image: url("img/klodka.png");
    background-position: left 20px center;
    background-repeat: no-repeat;
    background-size: 17px;
}

.forgot{
    color: lightgrey;
    text-decoration: none;
    transition: 0.5s;
    cursor: pointer;
}

.forgot:hover{
    color: #2C2926;
}

.alert{
    margin-top: 15px;
    color: #2C2926;
}

.row{
    display: inline-block;
    width: 100%;
}

.collumn, .column{
    display: inline;
    float: left;
    width: 50%;
    height: auto;
    transition: 0.5s;
}

.edit-button{
    position: absolute;
    display: block;
    border-radius: 50%;
    border-color: white;
    width: 45px;
    height: 45px;
    border: 1px solid #F3F4F6;
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.03);
    background-color: white;
    background-image: url("img/edit-icon.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 17px;
    border-width: 0;
    top: 125px;
    right: 75px;
    transition: 0.5s;
}

.submit-button{
    margin: auto;
    margin-top: 35px;
    text-align: center;
    color: white;
    width: 480px;
    height: 45px;
    background-color: #271C17;
    border-radius: 7px;
    letter-spacing: 7px;
    transition: 0.5s;
    border: none;
    font-size: 12px;
}

.submit-button:hover{
    cursor: pointer;
    background-color: #EB8043;
}


.line{
    width: 100%;
    background-color: #F3F4F6;
    height: 1px;
    margin: 25px 0 35px 0;
}

.wrapperinput{
    margin-bottom: 15px;
}

.wrapperinput label{
    display: block;
    margin-bottom: 15px;
    font-size: 13px;
}

.wrapperinput input{
    display: block;
    width: 350px;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eb8043;
    margin-bottom: 20px;
    position: relative;
    box-sizing: border-box;
    box-shadow: none;
    font-size: 14px;
    transition: 0.5s;
}

input:disabled{
    color: black !important;
    background-color: white !important;
    border: 1px solid #F8F8FA;
}

.permdisabled input{
    background-color: #F8F8F8 !important;
    border: 1px solid #F8F8FA;
}

.title{
    font-size: 16px;
    font-family: 'Ubuntu-Medium';
    margin-bottom: 20px;
}

.hello, .hello:after{
    text-align: center;
    padding: 0 20px;
    height: 45px;
    border-radius: 24px;
    background-color: white;
    border: 1px solid #F3F4F6;
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.03);
    font-family: 'Ubuntu-Medium';
    position: absolute;
    top: 55px;
    right: 50px;
    transition: 0.5s;
    text-decoration: none;
    color: black;
    line-height: 45px;
    transition: 0.1s;
}

.hello p{
    margin: 14px;
}

button{
    border: none !important;
}

.hello:after{
    content: "WYLOGUJ";
    width: 100%;
    padding: 0;
    display: block;
    top: 0;
    right: 0;
    background-color: #eb8043;
    color: white;
    opacity: 0;
}

.hello:hover:after{
    opacity: 1;
}

/* .header-block{
    width: 100%;
    background-color: #F8F7F1;
    border-radius: 7px;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    box-sizing: border-box;
} */

.header-img{
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.header-img img{
    width: 100%;
    border-radius: 7px;
}

.upper-header{
    padding-top: 52px;
    margin-bottom: 27px;
    letter-spacing: 20px;
    font-family: 'Ubuntu-Medium';
}

.header{
    font-size: 57px;
    font-family: 'Abril Fatface';
    margin: 0;
}

.orange{
    color: #E9691F;
    font-size: 18px;
    font-family: 'Ubuntu-Medium';
    margin-top: 16px;
    padding-bottom: 52px;
}

.date{
    background-color: #EB8043;
    border-radius: 24px;
    width: 111px;
    height: 45px;
    position: absolute;
    top: 25px;
    right: 25px;
}

.date p{
    color: white;
    font-size: 14px;
    font-family: 'Ubuntu-Medium';
}

.news-row{
    margin-bottom: 50px;
    box-sizing: border-box;
    width: 100%;
    height: 300px;
    display: inline-block;
}

.column-big{
    float: left;
    width: 50%;
    box-sizing: border-box;
}

.column-small{
    float: right;
    width: 50%;
    box-sizing: border-box;
}

.bigger-box{
    color: white;
    overflow: hidden;
    box-sizing: border-box;
    height: auto;
    width: 95%;
    margin-right: 100px;
    background-repeat: no-repeat;
    display: inline-block;
    position: relative;
}

.bigger-box img{
    width: 100%;
    border-radius: 7px;
}

.date-box{
    background-color: #EB8043;
    border-radius: 24px;
    width: 111px;
    height: 45px;
    position: absolute;
    bottom: 25px;
    right: 100px;
    text-align: center;
}

.date-box-text{
    color: white;
    font-size: 14px;
    font-family: 'Ubuntu-Medium';
}

.smaller-box{
    margin-left: 0px;
    width: 95%;
    float: right;
    height: 296px;
    border-radius: 7px;
    box-sizing: border-box;
    background-repeat: no-repeat;
    border: 1px solid #F3F4F6;
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.smaller-box p{
    font-size: 14px;
    margin-left: 40px;
    margin-right: 40px;
}

.smaller-box h2{
    margin-left: 40px;
    margin-right: 40px;
}

.img3{
    height: auto;
}

.img3 img{
    border-radius: 7px;
    width: 100%;
    float: right;
}

.orders-title{
    margin-bottom: 15px !important;
}

.site-subtitle{
    font-family: 'Ubuntu';
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 35px;
}

.side-name{
    float: left;
    margin-right: 20px;
}

.sum{
    display: inline-block;
    box-sizing: border-box;
    width: 80%;
    margin-right: 10px;
    background-color: white;
    border: 1px solid #F3F4F6;
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.03);
    border-radius: 7px;
    height: 45px;
}

.orders-win{
    background-color: #EB8043;
    color: white;
}

.sum p{
    margin-top: 15px;
    margin-left: 25px;
    font-family: 'Ubuntu-Medium';
}

.table-orders{
    width: 90%;
    margin-top: 20px;
    overflow: hidden;
    max-height: 2000px;
    transition: 0.5s;
}



.table-orders-main{
    width: 90%;
    margin-top: 20px;
    max-height: 2000px;
    transition: 0.5s;
}

.column-order{
    overflow: hidden;
    max-height: 2000px;
    transition: 0.5s;
}

.close{
    max-height: 390px;
}


.more-button{
    text-align: center;
    color: #2C2926;
    font-size: 10px;
    box-sizing: border-box;
}

.table-rows{
    background-color: #F8F8F8;
    margin-bottom: 10px;
    border: 1px solid #F3F4F6;
}

.table-rows td{
    padding: 15px;
    text-align: center;
}

.table-exchange{
    width: 95%;
    margin: 0;
}

td:first-child {
    border-left-style: solid;
    border-top-left-radius: 10px; 
    border-bottom-left-radius: 10px;
    border-left-color: #F8F8F8;
}

td:last-child {
    border-right-style: solid;
    border-bottom-right-radius: 10px; 
    border-top-right-radius: 10px; 
    border-right-color: #F8F8F8;
}

th{
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

table{
    border-spacing: 0 15px;
}
.more{
    width: 100%;
    height: auto;
    margin-top: 10px;
    display: inline-block;
    font-size: 14px;
    color: lightgray;
    text-align: center;
}

.more p{
    margin: auto;
    font-family: 'Ubuntu-Medium';
    transition: 0.5s;
}

.more:hover{
    cursor: pointer;
    color: #EB8043;
}

.counters{
    width: auto;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
}

.story .site-title{
    margin-top: 50px;
    margin-bottom: 25px !important;
}
.story-table{
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
}

.prow{
    text-align: center;
    background-color: white;
    border-radius: 7px;
    border: 1px solid #F3F4F6;
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;

}

.points-now{
    margin-right: 25px;
    margin-left: 10px;
}

.prize-now{
    margin-left: 25px;
    margin-right: 10px;
}

.prow h2{
    padding-top: 30px;
    font-family: 'Ubuntu-Medium';
    font-size: 20px;
}

.prow p{
    padding-bottom: 30px;
    margin-top: 0px;
}

.prow h1{
    margin-top: 20px;
    margin-bottom: 10;
    color: #E9691F;
    font-size: 35px;
    font-family: 'Ubuntu-Medium';
}

.convertrelative{
    position: relative;
}

.convert-points{
    margin: auto;
    margin-top: 35px;
    text-align: center;
}

.convert-points button, .convert-points:after{
    font-family: 'Ubuntu-Medium';
    font-size: 12px;
    box-sizing: border-box;
    padding: auto;
    padding-left: 50px;
    padding-right: 50px;
    color: white;
    width: 480px;
    height: 45px;
    background-color: lightgray;
    border-radius: 7px;
    letter-spacing: 6px;
    margin: auto;
    transition: 0.5s;
}

/* .convert-points:after{
    content: "W TERMINIE OD 8 DO 30 LISTOPADA";
    position: absolute !important;
    line-height: 45px;
    width: 480px;
    padding: 0;
    display: block;
    top: 0;
    right: 23.4vw;
    background-color: #eb8043;
    color: white;
    opacity: 0;
    transition: 0.1s !important;
}

.convert-points:hover:after{
    opacity: 1;
} */

.convert-points button:hover{
    cursor: pointer;
    background-color: #EB8043;
    border: none;
}

.button-off{
    background-color: #BCBAB9 !important;
    border: none !important;
}

button.button-off:hover{
    cursor: not-allowed;
}

.table-prizes{
    width: 100%;
}

.head-box{
    width: 100%;
    height: auto;
}

.head-box img{
    border-radius: 7px;
    width: 100%;
}

.head-box-mobile{
    display: none;
}

.rules-row{
    width: 100%;
    display: inline-block;
}

.rules-row .number{
    font-family: 'Ubuntu-Medium';
    color: #EB8043;
    float: left;
    width: 5%;
    margin-bottom: 20px;
}

.rules-row p{
    line-height: 25px;
}

.rules-row .bbignumber{
    margin-bottom: 50px !important;
}

.table-rules{
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
}

.title2{
    margin-top: 40px;
    margin-bottom: 20px;
}

.big-box-img{
    width: 100%;
    height: auto;
    display: inline-block;
}

.big-box-img img{
    width: 100%;
    border-radius: 7px;
}

.big-box-img-mobile{
    display: none;
}

.big-box{
    background-color: #F8F7F1;
    border-radius: 7px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    display: block;
}

.big-box-row{
    display: inline-block;
    width: 100%;
}

.big-box-row:last-child{
    text-align: center;
    margin-bottom: 20px;
}

.konkursoff{
    display: none;
}

.brak{
    text-align: center;
    background-color: #F8F7F1;
    border-radius: 7px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    display: block;
    height: 700px;
}

.brak .braktext{
    margin: auto;
}

.braktext{
    margin-top: 35px;
}


.braktext p:last-child{
    color: #EB8043;

}

.img-box{
    width: 30%;
}

.center{
    width: 40%;
    text-align: center;
}

.img-box, .center{
    float: left;
    margin: 0;
}

div .right{
    float: right;
}

div .right img{
    float: right;
}

.center img{
    width: 80%;
}

.small-box{
    width: 96.5%;
    margin: 20px;
    position: relative;
    background-color: #FFFFFF;
    border-radius: 7px;
    overflow: hidden;
    box-sizing: border-box;
    display: inline-block;
}

.small-box .site-title{
    margin-top: 30px;
    margin-left: 40px;
}

.small-box .rules-row, .small-box h1{
    margin-left: 40px;
}

.small-box h1{
    margin-top: 20px;
    margin-bottom: 30px !important;
}

.small-box .rules-row:last-child{
    margin-bottom: 30px !important;
}

.download-rules{
    background-color: #271C17;
    color: white;
    max-width: 470px;
    border-radius: 7px;
    margin: auto;
    margin-top: 25px;
    margin-bottom: 50px;
}

.download-rules h2{
    padding: 14px;
    font-size: 14px;
    font-family: 'Ubuntu-Bold';
}

#pointsChart{
    display: block;
}

.knowlage{
    padding-bottom: 0px !important;
}

.pdf{
    max-width: 470px;
    background-color: #2C2926;
    border-radius: 7px;
    color: white;
    font-size: 12px;
    font-family: 'Ubuntu-Medium';
    letter-spacing: 6px;
    padding: 20px;
    text-align: center;
}

.pdf a{
    text-decoration: none;
    color: white;
    padding: 20px;
}

.above{
    margin-top: 50px;
    margin-bottom: 25px;
}

.knowlage-title{
    margin-top: 35px;
    font-size: 20px;
    font-family: 'Ubuntu-Medium';
}

.banner{
    width: 100%;
    height: 320px;
    color: white;
    margin-top: 50px;
    margin-bottom: 35px;
    text-align: center;
    background-image: url("img/masz-pytania.png");
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 7px;
}

.banner h2{
    padding-top: 35px;
    letter-spacing: 20px;
    font-size: 16px;
    font-family: 'Ubuntu-Bold';
}

.questions{
    margin-bottom: 17px !important;
}

.info{
    width: 95%;
    height: 125px;
    background-color: white;
    border-radius: 7px;
    text-align: center;
    border: 1px solid #F3F4F6;
    float: left;
}

.contact{
    margin-top: 25px;
    display: inline-block;
    text-align: center;
    width: 100%;
    height: 125px;
    border: 1px solid #F3F4F6;
    border-radius: 7px;
    background-color: white;
}

.info .right{
    float: right;
}

.info-head{
    font-size: 18px;
    font-family: 'Ubuntu-Medium';
    margin-top: 30px;
}

.info p:last-child, .contact p:last-child{
    font-size: 18px;
    font-family: 'Ubuntu-Bold';
    margin-top: 16px;
    color: #EB8043;
}

.wdate{
    margin-bottom: 10px !important;
}

.today-date{
    font-size: 14px;
    font-family: 'Ubuntu-Medium';
    color: #BBBBBB;
    margin-bottom: 40px;
}

.row-main{
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
}

.box{
    width: 95%;
    background-color: white;
    border-radius: 4px;
    border: 1px solid #F3F4F6;
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.03);
    float: left;
    text-align: center;
}

.box-second{
    float: right !important;
}

.box .box-title{
    padding-top: 20px;
    font-size: 20px;
    font-family: 'Ubuntu-Medium';
}

.box-value{
    margin-top: 20px;
    font-size: 35px;
    font-family: 'Ubuntu-Bold';
    padding-bottom: 20px;
}

.column60{
    width: 60%;
    float: left;
}

.column40{
    width: 40%;
    float: left;
    height: 100%;
}

.box1{
    margin: 20px;
    margin-left: 0px;
    border: 1px solid #F3F4F6;
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
}

.box2{
    height: 473px;
    margin: 20px;
    margin-right: 0px;
    border: 1px solid #F3F4F6;
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
}

.box2 canvas{
    margin: 10px;
    padding: 10px;
}

.column60 .row{
    padding-top: 35px;
}

.column60 .site-title{
    float: left;
    margin: 0;
    margin-left: 30px;
}

.show-more{
    float: right;
    color: #2C2926;
    letter-spacing: 3px;
    margin: 0;
    margin-right: 35px;
    font-size: 10px;
    text-decoration: none;
}

.column60 .table-orders-main{
    margin: auto !important;
}

.column60 .column-order{
    padding-bottom: 30px;
}

.logout{
    position: absolute;
    display: block;
    border-radius: 50%;
    border-color: red;
    width: 45px;
    height: 45px;
    border: 1px solid #F3F4F6;
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.03);
    background-color: white;
    background-image: url("img/off.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 17px;
    border-width: 0;
    top: 75px;
    right: 75px;
    transition: 0.5s;
}

.headerimg{
    display: none;
}

input[type="date" i] {
    font-family: 'Ubuntu' !important;
}

@media only screen and (max-width: 1200px) {
    
    .headerimg{
        display: inline-block;
        width: 100%;
        height: auto;
    }

    .headerimg img{
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 7px;
    }

    .smaller-box img, .bigger-box img{
        display: none;
    }

    .big-box-img{
        display: none;
    }
    
    .big-box-img-mobile{
        display: inline-block;
        width: 100%;
        height: auto;
    }

    .big-box-img-mobile img{
        width: 100%;
        border-radius: 7px;
    }

    .login-logo{
        width: 90%;
    }

    .hello{
        right: 3vw;
        top: 20vw;
    }

    .menu{
        z-index: 1;
        overflow-y: auto;
        white-space: nowrap;
        width: 90vw;
    }

    .menu img{
        width: 80%;
    }

    .header-img{
        display: none;
    }

    .menu-close{
        left: -82vw;
    }

    body .container{
        margin-left: 0 !important;
        z-index: 0;
        padding: 90px 15px 30px 30px !important;
    }

    .button-menu{
        display: block !important;
    }

    .column, .collumn{
        float: none;
        display: inline-block;
        width: 100%;
        box-sizing: border-box;
    }

    .info{
        width: 100%;
        margin: auto;
    }

    .number{
        margin-right: 10px;
        margin-bottom: 40px;
    }

    .bignumber{
        margin-bottom: 90px !important;
    }

    .rules-row .bbignumber{
        margin-bottom: 200px !important;
    }

    .head-box h2{
        font-size: 10px;
    }

    .head-box{
        display: none;
    }
    
    .head-box-mobile{
        display: inline-block;
        width: 100%;
        height: auto;
    }

    .head-box-mobile img{
        width: 100%;
        border-radius: 7px;
    }

    .small-box{
        width: 88%;
    }

    .small-text{
        margin-left: 20px;
        margin-right: 20px;
    }

    .download-rules {
        max-width: 400px;
    }

    .img-box, .center, .right {
        float: none;
        display: inline-block;
        width: 100%;
    }

    .points-now {
        margin: auto;
    }

    .prize-now {
        margin: auto;
        margin-top: 35px;
    }

    .convert-points button {
        font-size: 12px;
        width: 100%;

    }

    .convert-points form{
        padding: auto;
        padding-top: 20px;
    }

    .wrapperinput input{
        width: 100%;
    }

    .submit-button{
        width: 100%;
    }

    .more{
        display: none;
    }

    .column60, .column40{
        width: 100%;
        float: none;
    }

    .box{
        width: 100%;
        margin-top: 35px;
    }

    .box1, .box2{
        margin: 20px 0 20px 0;
    }

    .column-big, .column-small{
        float: none;
        width: 100%;
        margin-top: 30px;
    }

    .bigger-box, .smaller-box {
        height: 350px;
        margin: 0;
        width: 100%;
        float: none;
        border-radius: 7px;
    }

    .img1{
        background-image: url("img/img1_mobile.png");
        background-size: 100%;
    }

    .img2{
        background-image: url("img/img2_mobile.png");
        background-position: center center;
        background-size: 100%;
    }

    .img3{
        background-image: url("img/img3_mobile.png");
        background-position: center center;
        background-size: 100%;
    }

    .questions-row .column{
        margin-top: 25px;
    }

    .news-row .column-small .smaller-box{
        overflow: scroll;
    }

    
}