﻿/*corrections*/


.table {
    display: table;
}

    .table .row {
        display: table-row
    }

        .table .row .cell {
            display: table-cell;
        }

.tabletwo {
    width: 100%;
}

    .tabletwo .cell {
        width: 50%;
        vertical-align: top;
    }

        

.tablethree {
    width: 100%;
}

    .tablethree .cell {
        width: 33%;
        vertical-align: top;
        text-align: center;
    }

.button {
    border-radius: 5px;
    background-color: #f6814e;
    padding: 15px;
    margin-top: 5px;
    color: #FFF;
    height: 60px;
    cursor: pointer;
    max-width: 360px;
}

    .button:hover {
        border-radius: 5px;
        background-color: #ec500c !important;
        padding: 15px;
        margin-top: 5px;
        color: #FFF;
        height: 60px;
        cursor: pointer;
    }
.btnpop {width:100%; max-width:100%;}
.warning {color:#FF0000;}
    .warning p {margin:2px;padding:0; font-size:16px;
    }
.checkbox label {
    margin-left: 10px;
}
.breadcrumb {
    max-width: 1120px;
    margin: 25px auto;
    font-size: .9em;
    color: #0a2387;
}
.clear {
    clear: both;
}

.maincontact {
    opacity: 0;
    position: absolute;
    top: -200px;
}


.cookiepolicy {
    background-color: #000;
    padding: 10px;
    text-align: center;
    color: #fff;
    position: fixed;
    bottom: 0;
    z-index: 9999999999;
    width: 100%;
}

.policybtns {
    text-align: center;
    margin: 10px 0 10px 0;
}

.cookiepolicy .btnaccept {
    color: #ffffff;
    margin: 0px 10px 0 0;
    background-color: #F6814E;
    text-transform: capitalize;
    border: medium none;
    box-sizing: border-box;
    height: 30px;
    width: 150px;
    text-transform: uppercase;
    font-size: 14px;
    padding: 5px;
    transition: .3s;
    cursor: pointer;
    display: inline-block;
    float: none;
}

.cookiepolicy .btnreject {
    color: #464646;
    margin: 0px 0 0 10px;
    background-color: #ccc;
    text-transform: capitalize;
    border: medium none;
    box-sizing: border-box;
    height: 30px;
    width: 150px;
    text-transform: uppercase;
    font-size: 14px;
    padding: 5px;
    transition: .3s;
    cursor: pointer;
    display: inline-block;
    float: none;
}

 

@media only screen and (max-width: 600px) {


    .table, .table .row, .table .row .cell, .tabletwo .cell, .tablethree .cell, .tablethree .cell:first-child, .tablethree .cell:last-child {
        display: block;
        padding-left: 0px;
        padding-right: 0px;
        width: 100%;
    }
}

/*corrections*/
