/* ##################################################################### */
/* font */
/* ##################################################################### */
@font-face {
    font-family: CPBold;
    /*src: url('/css/CircularProBold.otf');*/
    src: url('/css/PlusJakartaSans-Bold.ttf');
}
@font-face {
    font-family: CPBlack;
    /*src: url('/css/CircularProBlack.otf');*/
    src: url('/css/PlusJakartaSans-ExtraBold.ttf');
}
@font-face {
    font-family: CPBook;
    /*src: url('/css/CircularProBook.otf');*/
    src: url('/css/PlusJakartaSans-Regular.ttf');
}


*{
    box-sizing: border-box;
    margin:0;
    font-family:CPBook;
}

/* ##################################################################### */
/* main page structure items */
/* ##################################################################### */

body, html{
    height:100%;
    font-family:CPBook;
}

body{
    display:flex;
    flex-direction: column;
}
/* main container */
#main_container{
    width:100%;
    flex:1;
}

h1{
    font-family:CPBlack;
    font-size:3em;
    color:#00ade9;
}

h2{
    font-family:CPBold;
    font-size:3em;
    color:#00ade9;
}

.margin_bottom_1em{
    margin-bottom:1em;
}

.large_body_text{
    font-family:CPBook;
    color:#013356;
    font-size:1.8em;
}

p{
    font-size:1.5em;
    color:#1b335a;
}

ul {
    margin-left: 0;
    margin-top:2em;
    padding-inline-start:1em;
}
ul li {
    font-size:1.5em;
    line-height:1.5em;
    color:#1b335a;
}

.small_text{
    color:#1b335a;
    line-height:1.5em;
}

.small_text span{
    font-family:CPBold;
}
hr{
    margin-top:10px;
    margin-bottom:10px;
}

.line_breaker{
    display:none;
}




/* ##################################################################### */
/* mobile menu */
/* ##################################################################### */
#menu_mobile{
    display:none;
    background-color: #00ade9;
    color:#FFFFFF;
    padding:.5em;
    font-size:1em;
    border-bottom:1px solid #000000;
    z-index:30;
}

#menuItems{
    display:none;
}

#menuButton{
    font-size:2em;
}

/*
#menuLogoSmall{
    float:right;
    margin-top:.5em;
    line-height:1.8em;
}
*/

#menuLogoSmall{
    float:right;
    margin-top:.5em;
    background-image:URL('/images/mobile_menu_logo.png');
    background-repeat:no-repeat;
    background-size:contain;
    height:35px;
    width:50px;
}

.smallMenuItem{
    line-height:3em;
}


/* ##################################################################### */
/* menu */
/* ##################################################################### */
#menu_outer_container{
    width:100%;
}

#menu_inner_container{
    width:80%;
    margin:auto;
    display:flex;
    flex-direction:row;
    justify-content: space-evenly;
    align-items:center;
    height:130px;
}

.menu_item_container{
    color:#FFFFFF;
    padding:10px;
}

.menu_item{
    font-size:1.5em;
    font-family:CPBold;
}

.menu_item a{
    font-family:CPBold;
    color:#FFFFFF;
    text-decoration: none;
}

.menu_item a:hover{
    color:#DDDDDD;
}


#menu_logo_container{
    display:flex;
    flex-direction: row;
    align-content: center;
}

#menu_logo_words{
    color:#FFFFFF;
    font-family:CPBold;
    text-align:right;
    padding-top:28px;
}

#menu_logo_image{
    background-image:URL('/images/menu_logo.png');
    background-repeat: no-repeat;
    width:80px;
    height:100px;
    background-size:contain;
    margin-left:10px;
}

#header_mobile{
    display:none;
}

/* ##################################################################### */
/* spacers */
/* ##################################################################### */
.section_spacer{
    width:100%;
    margin:0;
}


/* ##################################################################### */
/* panels */
/* ##################################################################### */

.three_panel_container_outer{
    width:100%;
    display:flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.three_panel_container_inner{
    flex-basis: 33.3%;
    padding:1em;
}

.three_panel_panel{
    border:2px solid #00ade9;
    display:flex;
    flex-direction: column;
    border-radius:20px;
    height:100%;
}

.three_panel_top_block{
    background-color: #00ade9;
    color:#FFFFFF;
    padding:1em;
    font-family:CPBook;
    font-size:2em;
    text-align:center;
    border-top-right-radius: 19px;
    border-top-left-radius: 19px;
}
.three_panel_top_block_yellow{
    color:#fdc706;
    text-align:center;
    font-family:CPBlack;
}

.three_panel_mid_block{
    display:flex;
    flex-direction:column;
    background-color:#FFFFFF;
    padding:1em;
    text-align: center;
    border-bottom-right-radius: 19px;
    border-bottom-left-radius: 19px;
}

.three_panel_mid_block_upper{
    padding-top:1em;
    color:#1b335a;
    font-family: CPBold;
    font-size:1.5em;
}

.three_panel_mid_block_upper span{
    font-family:CPBlack;
    font-size:3em;
}

.three_panel_mid_block_middle{
    padding-top:1em;
    color:#1b335a;
    font-family: CPBold;
    flex:1;
    text-align: center;
    font-size:1.5em;
    line-height:1.8em;
}

.three_panel_mid_block_lower{
    
}

.three_panel_button{
    width:80%;
    margin:auto;
    font-family:CPBold;
    font-size:1.5em;
    border-radius:.8em;
    line-height:2.5em;
    margin-bottom:1em;
}

.three_panel_button_large{
    width:80%;
    margin:auto;
    font-family:CPBold;
    font-size:1.5em;
    border-radius:.8em;
    line-height:2.5em;
    margin-bottom:1em;
}

.blue_button{
    color:#FFFFFF;
    background-color: #00ade9;
    font-family:CPBold;
}

.smaller{
    font-size:1.1em;
}

.yellow_button{
    color:#1b335a;
    background-color: #fdc706;
    font-family:CPBold !important;
}

.back_to_cart_button{
    float: left;
    width: auto;
    padding-left: 1em;
    padding-right: 1em;
    color: #FFFFFF !important;
    font-family: CPBold !important;
    font-size: 1.2em;
}

.big_sim_button{
    width:50%;
    text-align:center;
}

.yellow_button:hover, .blue_button:hover{
    cursor:pointer;
}

/* spinner */
#spinnerCurtain {
    background-color: black;
}

#spinner {
    background-image: url('/images/spinner.gif');
    background-repeat: no-repeat;
    background-size: contain;
    height: 150px;
    width: 150px;
    z-index: 2000;
}

/* floating panels */

.floating_panel{
    width:80%;
    background-color: #FFFFFF;
    border:2px solid #1b335a;
    margin:auto;
    position:relative;
}

.floating_panel_close_button{
    position:absolute;
    top:-20px;
    right: -20px;
    width:40px;
    height:40px;
    background-color:#1b335a;
    color:#FFFFFF;
    font-family:CPBold;
    line-height:24px;
    text-align:center;
    font-size:3em;
    border: 1px solid #000000;
}

.floating_panel_close_button:hover{
    cursor:pointer;
    background-color:#009ed8;
}

.floating_panel_outer_container{
    
}

.floating_panel_inner_container{
    padding:2em;
}

.floating_panel .three_panel_top_block_yellow{
    font-size:3em;
}

.floating_panel .three_panel_top_block_yellow span.small{
    font-size:.4em;
    font-family:CPBlack;
}

.floating_panel .three_panel_top_block_yellow span.small.superscript{
    font-size: .4em;
    font-family: CPBlack;
    display: inline-block;
    margin-top: 19px;
    position: absolute;
    margin-left: -70px;
}

.floating_panel .three_panel_mid_block_middle span.small{
    font-size:3em;
    font-family:CPBlack;
}
.floating_panel .three_panel_mid_block_middle span.small.superscript{
    font-size: 1.5em;
    font-family: CPBlack;
    display: inline-block;
    margin-top: -11px;
    position: absolute;
    margin-left: -70px;
}

#panel1, #panel2, #panel3{
    display:none;
    z-index:30;
}

/* plan tables */
.plan_table_outer{
    width:100%;
    border:2px solid #1b335a;
    display:flex;
    flex-direction: row;
    font-family:CPBook;
    font-size:1.5em;
    color:#1b335a;
}

.plan_table_column{

}

.plan_table_column_header{
    text-align:center;
    font-family:CPBold;
    font-size:1.5em;
}

.plan_table_column{
    text-align:center;
    flex-basis:16.6%
}

.yellow_bar{
    height:2px;
    width:80%;
    margin:auto;
    background-color:#fdc706;
}

.grey_bar{
    height:2px;
    width:100%;
    background-color:#e6e6e6;
}
.all_monthly_plans_table{
    margin:auto;
}
.all_monthly_plans_table img{
    display:block;
    width:100%;
    margin:auto;
}

#all_plans_info{
    padding:2em;
}




/* header 'hero graphic' container */
#header_graphic_container{
    /*background-image:URL('/images/hero_background.png');*/
    background-size:contain;
    background-position:center right;
    background-repeat: no-repeat;
    height:350px;
}

#header_graphic_words{
    width:70%;
    margin:auto;
    display:flex;
    height:350px;
    align-items: center;
    line-height:8em;
    justify-content: space-between;
}

#header_graphic_words_inner{
    color:#FFFFFF;
    font-family:CPBlack;
    font-size:10em;
}

#header_graphic_words_inner span{
    display:block;
    font-family:CPBlack;
    font-size:.47em;
}

#freedatahour{
    float:right;
    height:250px;
    background-image:URL('/images/freedatahour.png');
    background-size:contain;
    background-repeat:no-repeat;
    width:25%;
}

#freedatahour img{

}

/* main body content */
#body_content{
    
}

.body_content_outer_container{
    width:100%;
}

.body_content_section{
    width: 70%;
    margin:auto;
    padding-top:50px;
    padding-bottom:50px;
}

/* footer */
#footer_outer_container{
    width:100%;
}

#footer_inner_container{
    width: 80%;
    margin:auto;
    display:flex;
    flex-direction: row;
    padding:30px;
    justify-content: space-evenly;
}

.footer_column_container{
    display:flex;
    /*flex-basis:33.33%*/
}

.footer_column{
    color:#FFFFFF;
    line-height:1.8em;
}

.footer_column .column_item a{
    color:#FFFFFF !important;
    text-decoration:none !important;
}

.footer_column .column_item a:hover{
    cursor:pointer !important;
    color:#00B5ef !important;
}

.footer_column_header{
    font-size:1.3em;
    font-family:CPBold;
}

#footerlogo{
    background-image:URL("/images/footerlogo.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size:contain;
    width:100px;;
    height:150px;
    
}

#copyright{
    width:60%;
    color:#FFFFFF;
    margin:auto;
}

.copyright_m{
    display:none;
}

/* ##################################################################### */
/* blog */
/* ##################################################################### */
.blog_list_wrapper{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    /*flex-basis:30%;*/
}

.blog_list_container{
    display:flex;
    flex-direction: column;
    align-items: stretch;
    /*padding: 10px;*/
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-bottom: 3px solid #fdc706;
    /* border-bottom: 3px solid #F0F0F0; */
    background: linear-gradient(0deg, rgba(230,221,221,1) 4%, rgba(255,255,255,1) 16%);
    margin-bottom:3%;
    width:30%;
    margin-left:3%;
    box-shadow: 3px 3px 3px rgba(0,0,0,.2);
}

.blog_list_thumbnail{
    width:100%;
    margin-right:20px;
    border:none !important;
}

.blog_list_inner_container{
    width:100%;
}

.blog_list_date{
    font-size:.8em;
    font-weight:bold;
    margin-bottom:20px;
    padding:0px 10px 0px 10px;
}

.blog_list_title{
    text-transform: uppercase;
    font-family: CPBlack;
    margin-bottom: 10px;
    font-size: 1.8em;
    padding:0px 10px 0px 10px;
}
.blog_list_thumbnail img{
    width:100%;
    /*border:1px solid #666666;*/
}

.blog_list_preview{
    margin-bottom:20px;
    padding:0px 10px 0px 10px;
}

.blog_list_read_button{
    margin: 0 0 20px 20px;
    height: 35px;
    line-height: 35px;
    background-color:#fdc706;
    /* color: #caa449; */
    color: #000000;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    font-family: CPBook;
    font-size: .8em;
    width: 130px;
    bottom: 30px;
}

.blog_list_read_button:hover{
    cursor: pointer;
    background-color:#fdc706;
    /* box-shadow: inset 3px 3px 3px;*/
}

.blog_header img{
    margin-top:20px;
    width:100%;
    margin-bottom:30px;
    border: 1px solid #000000;
}

.blog_content{
    margin-bottom:40px;
}

.blog_title{
    max-width: 1000px;
    font-family: CPBlack;
    /*color: #caa449;*/
    color:#000000;
    font-size: 3em;
    margin: auto;
    text-align: left;
    margin-bottom: 5px;
}

.blog_meta{
    color:#00B5ef;
    font-size:.8em;
    margin-bottom:40px;
}

.blog_back_button{
    height: 35px;
    line-height: 35px;
    background-color:#fdc706;
    /* color: #caa449; */
    color: #000000;
    text-transform: uppercase;
    text-align: center;
    font-weight: normal;
    font-family: CPBook;
    font-size: .8em;
    width: 180px;
    bottom: 30px;
    margin-bottom: 50px;
}

.blog_back_button:hover{
    cursor: pointer;
    background-color: #fdc706;
}

/* Order form */
#sendForm{
    width:750px;
}

.sendFormLabel{
    float:left;
    width:350px;
    height:35px;
    line-height:35px;
    font-size:1.1em;
    font-family:CPBold;
    color:#1b335a;
}
.sendFormField{
    float:right;
    width:390px;
    height:35px;
}

.sendFormTextField{
    width:100%;
    height:35px;
    border:none;
    background-color:#e6e6e6;
    font-family:CPBook;
    font-size:1.1em;
    padding-left:10px;
}

.sendFormSelectField{
    width:100%;
    height:35px;
    border:none;
    background-color:#e6e6e6;
    font-family:CPBook;
    font-size:1.1em;
    padding-left:10px;
}

.sendFormSpacer{
    height:5px;
    width:100%;
    clear:both;
}

.optInDiv{
    /*float:left;*/
    width:350px;
    font-family:CPBook;
    font-size:.9em;
    color:#1b335a;
    margin-top:30px;
}

#optinYesDiv:hover, #optinYesSpan:hover, #optinNoDiv:hover, #optinNoSpan:hover{
    cursor:pointer;
}

#sendFormButton{
    /*float:right;*/
    /*background-image:url('/images/2018site/Submit_button.png');
    background-repeat:no-repeat;
    background-size:contain;
    */
    width:140px;
    height:54px;
    margin-top:30px;
    text-align:center;
    font-family: CPBold;
    font-size: 1.5em;
    border-radius: 0.8em;
    line-height: 2.2em;
    margin-bottom: 1em;
}

#optinYesDiv{
    height:20px;
    width:20px;
    background-color:#FFC628;
    border-radius:50%;
    border:2px solid #666666;
    display:inline-block;
    margin-top:20px;
    margin-right:10px;
    margin-bottom:-5px;
}

#optinNoDiv{
    height:20px;
    width:20px;
    background-color:#CCCCCC;
    border-radius:50%;
    border:2px solid #666666;
    display:inline-block;
    margin-right:10px;
    margin-top:5px;
    margin-bottom:-5px;
}

.urgent_message {
    font-family: CPBook;
    color: #1b335a;
    background-color: #f4c3c3;
    padding: 15px;
    width: 100%;
    display: inline-block;
    margin-bottom:10px;
    border-radius:0.8em;
}

#urgent_message_panel{
    display:none;
}


/*faqs */
.question{
    font-family:CPBook;
    font-weight:bold;
    font-size:1.3em;
    margin-bottom:10px;
}
.answer{
    font-family:CPBook;
    font-weight:normal;
    font-size:.9em;
    margin-bottom:25px;
}

.answer p{
    font-size:1em;
}

.answer a{
    color:#00B5EF;
}

#pdfs_container{
    display:flex;
    flex-direction: row;
}

.pdf_container{
    display:flex;
    flex-direction: column;
    flex-basis: 33%;
    padding:1em;
}

.pdf_image_container{
    width:80%;
    margin:auto;
}

.pdf_image{
    display:block;
    width:80%;
    margin:auto;
}

.pdf_wording{
    text-align: center;
}





/* Contact Forms */
.formField{
    height: 40px;
    color: #000000;
    border: none;
    width: 75%;
    float: right;
    padding: 10px;
    border: 1px solid #2b9cc6;
    font-size: 1em;
}

.formLabel {
    font-weight: bold;
    float: left;
    width: 25%;
    height: 30px;
    line-height: 30px;
    min-width: 60px;
}

.formSendButton {
    background-color: #000000;
    color: #FFFFFF;
    font-size: .9em;
    width: 60px;
    height: 30px;
    line-height: 31px;
    text-align: center;
    text-transform: uppercase;
    margin: auto;
}

.formSpacer {
    clear: both;
    height: 10px;
}

#thanksMessage{
    display:none;
    position:absolute;
    z-index:100;
    background-color:#FFFFFF;
    width:100%;
    height:100%;
    text-align:center;
    padding:1em;
    color:#000000;
    top:0px;
    left:0px;
}

#thanksMessageInner{
    display:table;
    vertical-align: middle;
    margin:auto;
}

#thanksButton{
    background-color:#000000;
    font-weight:bold;
    font-size:1.5em;
    background-image:URL('/images/M-sendbutton.png');
    background-repeat:no-repeat;
    width:168px;
    height:62px;
    line-height:62px;
    text-align:center;
    text-transform:uppercase;
    color:#FFFFFF;
    margin:auto;
}

#thanksButton:hover, .formSendButton:hover{
    cursor:pointer;
}


/* CART PAGE */
.cartRow,.cartCheckOutRow{
    display:flex;
    padding: 10px;
}

.cartCheckOutRow{
    text-align:right;
}

.cartSpacerRow{
    height:1px;
    background-color:#AAAAAA;
}

.cartRowProduct{
    flex-basis:65%;
}

.cartRowQty{
    flex-basis:15%;
}

.cartRowPrice{
    flex-basis:15%;
    text-align:right;
}

.cartRowRemove{
    flex-basis:5%;
    text-align:right;
}

.cartHeaderRow{
    background-color: #EEEEEE;
    padding: 10px;
    border-radius: 5px;
    font-weight:bold;
}

#checkOutButton{
    background-color:#ffc528;
    color:#FFFFFF;
    font-family:CPBold;
    text-align:center;
    font-size:1.2em;
    height:35px;
    border-radius:5px;
    line-height:36px;
    float:right;
    flex-basis:100%;
    padding-left:20px;
    padding-right:20px;
    width:170px;
}

#checkOutButton:hover{
    cursor:pointer;
}

.removeButton{
    background-color: #ffc528;
    border-radius:5px;
    height:20px;
    width:20px;
    text-align:center;
    line-height:20px;
    float:right;
}

.removeButton:hover{
    cursor:pointer;
}

/* CHECKOUT PAGE */
#checkoutContainer{
    display:flex;
}

.checkoutPanelLeft{
    flex-basis:50%;
    background-color: #EEEEEE;
    padding:30px;
    border-radius: 30px;
    /*
    background: rgb(249,249,249);
    background: linear-gradient(180deg, rgba(249,249,249,1) 0%, rgba(0,158,216,0.25) 100%);
    */
    /*
    background: rgb(249,249,249);
    background: linear-gradient(180deg, rgba(249,249,249,1) 0%, rgba(255,197,40,0.25) 100%);
    */
    background: rgb(249,249,249);
    background: linear-gradient(180deg, rgba(249,249,249,1) 0%, rgba(238,238,238,1) 100%);
}

.checkoutPanelRight{
    flex-basis:50%;
    padding-left:30px;
}

.checkoutPanelFieldLabel{
    margin-top:20px;
}

.noTopMargin{
    margin-top:0 !important;
}

.checkoutField{
    height:35px;
    border:1px solid #CCCCCC;
    border-radius:5px;
    width:100%;
    padding-left:10px;
    font-family:CPBook;
}

.checkOutPrice{
    float:right;
    font-weight:bold;
    font-size:2em;
}

#payButton{
    background-color:#ffc528;
    color:#FFFFFF;
    font-family:CPBold;
    text-align:center;
    font-size:1.2em;
    height:35px;
    border-radius:5px;
    line-height:36px;
    float:right;
    flex-basis:100%;
    padding-left:20px;
    padding-right:20px;
    width:170px;
    margin-top:20px;
}

#payButton:hover{
    cursor:pointer;
}

/* product output */
.productBlock{
    flex-basis: 33%;
    padding:10px;
    
    
}

.productBlockInner:hover{
    transform: scale(1.02);
    box-shadow:0 3px 5px rgba(0,0,0,.3);

}

.productBlockInner{
    position:relative;
    border-radius:10px;
    padding:10px;
    border:1px solid #CCCCCC;
    transition: transform .2s; /* Animation */
    background-color:#FFFFFF;
}

.productDescriptionHeader{
    color:#ffc528;
    margin-bottom:10px;
    border-bottom:2px solid #009ed8;
    font-family:CPBlack;
}



.productDescription{
    font-size:.8em;
}

.productDescription ul{
    margin-left:0px;
    margin-inline-start: 0;
    padding-inline-start: 15px;
}

.productDescription ul li{
    margin-bottom:15px;
    border-bottom:1px solid rgba(255,197,40,.5);
    list-style:none;
    padding-left:0;
}

.productDetailHeader{
    color:#009ed8;
    /*
    background-color:#ffc528;
    padding:5px;
    border-radius:5px;
    */
}
.productDetailValue{
    font-size:1.5em;
    font-family:CPBold;
    /*
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(250,253,254,1) 42%, rgba(0,158,216,0.2) 100%);
    */
}


/* ##################################################################### */
/* background colour classes */
/* ##################################################################### */

.background_blue{
    background-color:#1b335a;
}

.background_lightblue{
    background-color:#00ade9;
}

.background_grey{
    background-color:#e6e6e6;
}

.background_lightestblue{
    background-color:#e8f4f4;
}

.background_white{
    background-color:#FFFFFF;
}

.background_yellow{
    background-color:#fdc706;
}


/* ##################################################################### */
/* menu curtain */
/* ##################################################################### */
#menu_curtain, #panel_curtain{
    display:none;
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    z-index:20;
    background-color:rgba(0,0,0,.3);
}


/* ##################################################################### */
/* lazy shortcuts */
/* ##################################################################### */
.height_10px{
    height:10px;
}
.height_20px{
    height:20px;
}
.height_30px{
    height:30px;
}


/* PLAN TABLES */
.dataplantable{
    border:2px solid #1b335a;
    width:100%;
}

.dataplantable th,td{
    padding:10px;
    text-align:center;
    font-size:1.5em;
    font-family:CPBold;
    color:#1b335a;
}

.dataplantable th{
    font-family:CPBold;
    font-size:1.5em;
    color:#1b335a;
}

.dataplantable .bigmoney{
    font-family:CPBlack;
    font-size:2.5em;
    font-weight:bold;
    color:#1b335a;
    display:inline-block;
    margin-top:.2em;
}
.dataplantable .bigmoney span{
    font-family:CPBold;
    font-size:.4em;
    font-weight:bold;
    color:#1b335a;
}

.dataplantable td.divider{
    border-bottom:3px solid #EEEEEE;
}

.dataplantable .headerbase{
    height:5px;
    background-color:#fdc706;
    margin:auto;
    width:90%;
}

.dataplantable .big{
    font-size:3em;
}

span.nz{
    display: inline-block;
    margin-top: 10px;
    position: absolute;
    font-size: 1.5em;
    margin-left: -50px;
}


@media all and (max-width: 1080px) {
    #menu_outer_container{
        display:none;

    }
    #menu_mobile{
        display:block;
        position:fixed;
        width:100%;
    }

    #main_container {
        margin-top: 50px;
    }

    #header_graphic_container{
        display:none;
    }

    #header_mobile{
        display:block;
    }

    #header_mobile img{
        display:block;
        width:100%;
    }
    
    .three_panel_container_outer{
        flex-direction:column;
    }

    .three_panel_button{
        width:95%;
    }

    .floating_panel{
        width:90%;
    }

    .floating_panel_close_button {
            position: fixed;
            top: 65px;
            right: 15px 
    }
    .floating_panel_inner_container {
        padding:.5em;
    }

    #footer_inner_container{
        flex-direction:column;
    }

    .floating_panel .three_panel_top_block_yellow {
        font-size: 2em;
    }

    .floating_panel .three_panel_top_block_yellow span.small.superscript {
        font-size: .4em;
        margin-top: 10px;
        margin-left: -15px;
    }

    .panel_mobile{
        font-size:1.2em !important;
        padding-top:20px !important;
        padding-bottom:20px !important;
    }

    .mobile_table_text{
        display:block;
        margin:auto;
        margin-top:10px;
        width:90%;
        font-size:.8em;
    }

    .copyright_desktop{
        display:none;
    }

    .copyright_m{
        display:block;
        color:#FFFFFF;
    }

    h1{
        font-size:1.7em;
    }

    h2{
        font-size:1.8em;
    }

    p{
        font-size:1em;
    }

    ul li {
        font-size: 1em;
        line-height: 1.5em;
    }

    .large_body_text {
        font-size: 1.1em;
    }

    .body_content_section{
        padding-top:25px;
        padding-bottom:25px;
        width: 90%;
    }

    .blog_list_container{
        width:auto;
    }

    .three_panel_top_block {
        padding: .5em;
        font-size: 1.5em;
        
    }

    .three_panel_mid_block {
        padding:1em;
        padding-top: .0em;
        padding-bottom:.5em;
    }

    .three_panel_mid_block_upper {
        padding:1em;
        padding-top: .5em;
        color: #1b335a;
        font-family: CPBold;
        font-size: 1.1em;
    }

    .three_panel_mid_block_middle {
        padding-top: 0em;
        font-size: 1.4em;
        line-height: 1.4em;
        padding-bottom:1em;
    }

    .three_panel_button {
        font-size: .9em;
        border-radius: 0.8em;
        line-height: 1.9em;
        margin-bottom: 1em;
    }

    .mobile_br{
        display:none;
    }

    .formLabel{
        float:none;
        width:auto;
    }

    .formField{
        width:95%;
    }

    .three_panel_container_inner{
        padding:.5em;
    }

    .big_sim_button {
        width: 90%;
        text-align: center;
        font-size:.9em;
    }

    .line_breaker{
        display:inline;
    }

    #checkoutContainer {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    
    .checkOutPrice, #checkoutheader{
        font-size:1.5em !important;
    }

    .checkoutPanelRight {
        margin-top:1em;
    }

    #sendForm{
        width:auto;
    }

    .sendFormLabel {
        float:none;
        width:100%;
    }

    .sendFormField {
        float:none;
        width:95%;
    }

    .special_button{
        line-height:1.5em !important;
    }

    #pdfs_container{
        display:flex;
        flex-direction: column;
    }
    
    .pdf_container{
        display:flex;
        flex-direction: column;
        flex-basis: 33%;
        padding:1em;
    }
    
    .pdf_image_container{
        width:100%;
        margin:auto;
    }
    
    .pdf_image{
        display:block;
        width:80%;
        margin:auto;
    }

    .dataplantable{
        border:2px solid #1b335a;
        width:100%;
    }

    .dataplantable th,td{
        padding:5px;
        text-align:center;
        font-size:.8em;
        font-family:CPBold;
        color:#1b335a;
    }

    .dataplantable th{
        font-family:CPBold;
        font-size:.8em;
        color:#1b335a;
    }

    .dataplantable .bigmoney{
        font-family:CPBlack;
        font-size:2.5em;
        font-weight:bold;
        color:#1b335a;
        display:inline-block;
        margin-top:.2em;
    }
    .dataplantable .bigmoney span{
        font-family:CPBold;
        font-size:.4em;
        font-weight:bold;
        color:#1b335a;
    }

    .dataplantable td.divider{
        border-bottom:3px solid #EEEEEE;
    }

    .dataplantable .headerbase{
        height:5px;
        background-color:#fdc706;
        margin:auto;
        width:90%;
    }

    .dataplantable .big{
        font-size:2em;
    }

    span.nz{
        display: inline-block;
        margin-top: 10px;
        position: absolute;
        font-size: 1.5em;
        margin-left: -35px;
    }

    .floating_panel .three_panel_mid_block_middle span.small.superscript{
        font-size: 1.5em;
        font-family: CPBlack;
        display: inline-block;
        margin-top: -11px;
        position: absolute;
        margin-left: -55px;
    }

    .floating_panel .three_panel_top_block_yellow span.small.superscript {
        font-size: .4em;
        margin-top: 10px;
        margin-left: -40px;
    }
}

@media all and (max-width: 1080px) {
    .dataplantable th,td{
        padding:1px;
        text-align:center;
        font-size:.6em;
        font-family:CPBold;
        color:#1b335a;
    }

    .dataplantable th{
        font-family:CPBold;
        font-size:.6em;
        color:#1b335a;
    }

    .dataplantable .bigmoney{
        font-family:CPBlack;
        font-size:2.5em;
        font-weight:bold;
        color:#1b335a;
        display:inline-block;
        margin-top:.2em;
    }
    .dataplantable .bigmoney span{
        font-family:CPBold;
        font-size:.4em;
        font-weight:bold;
        color:#1b335a;
    }

    .dataplantable td.divider{
        border-bottom:3px solid #EEEEEE;
    }

    .dataplantable .headerbase{
        height:5px;
        background-color:#fdc706;
        margin:auto;
        width:90%;
    }

    .dataplantable .big{
        font-size:1em;
    }
}


