/*
COLOURS:

Fellowes Yellow: #febe10
Fellowes Text Grey: #4D555B
Fellowes Light Text Grey: #CCC
Fellowes Footer Grey: #4d555b

*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;     /* All borders and padding are NOT added to total height or width of elements*/
}

html {
    font-size: 10px;
}


body {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #4D555B;
    padding: 30px 0 0 0;
}

.absolute-centre {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}




.mid-section {
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.section-cashback {
    height: auto;
    overflow: hidden;
}

.section-video {
}

.section-report {
}

.report {
    width: 90%;
    margin: auto 10%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media only screen and (max-width: 37.5em){
    .report {
        margin: auto 5%;}
}



  

.logo-box {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translate(-50%);
    display: block;
}

.logo {
    height: 55px;
    cursor: pointer;
}


.language-box {
    position: absolute;
    top: 3rem;
    right: 10%;
    display: block;
}

@media only screen and (max-width: 37.5em){
    .language-box {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-wrap: wrap;
        right: 3%;
    }

}



.uk-flag {
    display: inline-block;
    padding: 10px;
    margin: 0 5px;
    width: 44px;
    border-radius: 50%;
    height: 44px;
    background-image:
        url(../img/uk.png);
    background-position: center;
    background-size: cover;
}

    .uk-flag:hover {
        opacity: 0.5;
        border: none!important;
    }


.de-flag {

    display: inline-block;
    padding: 10px;
    width: 44px;
    border-radius: 50%;
    height: 44px;
    background-image:
        url(../img/de.png);
    background-position: center;
    background-size: cover;
    }
    
        .de-flag:hover {
            opacity: 0.5;
            border: none!important;
        }



.ire-flag {
    height: 30px;
    width: 30px;
    float: left;
    background-image:
        url(../img/ire.png);
    background-size: cover;
}

    .ire-flag:hover {
        opacity: 0.5;
    }

.nohover {
    opacity: 1!important;
}    





/* CARD FLIP FRONT*/



.offer-flash {
   position: absolute;
   padding: 0.2rem;
   width: 12rem;
   height: 12rem;
   background-color: #f79730;
   color: white;
   top: 0;
   right: 0;
}

.offer-flash2 {
    position: absolute;
    padding: 1.2rem 0.2rem;
    width: 12rem;
    height: 12rem;
    background-color: #f79730;
    color: white;
    top: 0;
    right: 0;
 }

.offer-text {
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-top: -2rem;
}

.offer-value {
    font-size: 5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.offer-value2 {
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 700;
}

.shredder-icon {
    width: 30%;
    height: auto;
    margin: 2rem 33%;
    display: inline-block;
}

.shredder-icon2 {
    width: 30%;
    height: auto;
    margin: 2rem auto;
    display: inline-block;
}

.leftpad {
    margin-left: 0.8rem;
}



.shredder-icon3 {
    width: 30%;
    height: auto;
    margin: 2rem auto;
    display: inline-block;
}





/* SWITCHING PRODUCTS */

.product-view {
    position: relative;
}

    .product-subhero {
        width: 45%;
        /*box-shadow: 0 0.5rem 4rem rgba(0, 0, 0, 0.5);*/
        border-radius: 2px;
        position: absolute; 
    }

        .product1 {
            left: 0;
            top: 0;
            width: 40%;
            z-index:10;
            transition: all.2s;
        }

        .product2 {
            left: 25%;
            top: 5rem;
            width: 42%;
            z-index: 12;
            transition: all.2s;
        }

        .product3 {
            right: 5%;
            width: 40%;
            top: 0;
            z-index:10;
            transition: all.2s;
        }


        .product1:hover, .product2:hover, .product3:hover {
            transform: scale(1.05);
            z-index: 20;

        }


       
       