/*--------------  GLOBAL STYLES --------------*/
@font-face{
    font-family: Futura;
    src: url(../fonts/FuturaBd.ttf);
    src: url(../fonts/FuturaBdlt.ttf);
    src: url(../fonts/FuturaMd.ttf);
    src: url(../fonts/FuturaMdlt.ttf);
    src: url(../fonts/FuturaBoldBT.ttf);
    src: url(../fonts/FuturaMediumBT.ttf);
}
html, body {
    font: 16px/26px Futura,  Arial, sans-serif;
    width:100%;
    height:100%;
    margin:0;
}
article {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
main {
    flex-grow: 1;
    margin:40px 0px;
}
header, main, footer {
    flex-shrink: 0;
}
p{
    font-size:16px;
    line-height: 26px;
}
h1{
    font-size:40px;
    line-height: 40px;
    text-align:center;
    font-family:Futura,  Arial, sans-serif;
}
h2{
    font-size:25px;
    line-height: 30px;
    text-align:center;
    margin-bottom:-20px;
    font-family:Futura,  Arial, sans-serif;
}
h3{
    font-size:16px;
    line-height: 24px;
    margin:0px auto;
    text-align:center;
    margin-bottom:-20px;
    margin-top:15px;
    font-weight:normal;
    width:300px;
}
h3 strong{
    font-family: Arial, sans-serif;
}

strong{
    font-family:Futura,  Arial, sans-serif;
}
.inputbox{
    border:0;
    outline: 0;
    background: transparent;
    border-bottom:3px solid #172547;
    width:300px;
}
.inputbox_big{
    border: 3px solid #172547;
    outline:0;
    border-radius: 5px;
    background:transparent;
    width:300px;
    height: 100px;
}
/*------------FOOTER---------------------*/
footer {
    background-color: #fff;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.footer_bottom {
    position:relative;
    width: 100%;
    margin: 0px auto;
    bottom: 0;
}
.footer_priv {
    border-top:1px solid #090f0f;
    background-color:#000;
    padding:20px 0px;
    color:#000;
    text-align:center;
    line-height: 25px;
}
.footer_priv p {
    font-size:14px;
    color:#777;
    margin-top:2px;
    margin-left:0
}
.footer_priv a {
    color:#eaeded;
    font-size:15px;
    line-height: 25px;
    text-decoration: none;
}
.footer_priv a:hover {
    color:#fff;
    font-weight: bold;
}
.logo_footer{
    width:50%;
    max-width:150px;
    padding-bottom:10px;
    text-align: center;
}
/*--------------HEADER --------------*/
.header{
    display:flex;
    align-items:center;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.page_header {
    display:flex;
    align-items:center;
    justify-content:space-between;
    order:1;
    background: #000;
    height: 80px;
    min-width:100%;
    color: #fff;
}
.logo_holder{
    display:flex;
    box-sizing:content-box!important;
    justify-content:center;
    order:1;
    margin:auto;
}
.logo{
	margin-left:40px;
	width:80%;
    max-width:250px;
    padding:3px;
}
.icons_header{
    display:flex;
    box-sizing:border-box;
    justify-content:flex-end;
    order:2;
    margin-right:4%;
    margin-top:-35px;
}
.flags{
    width:22px;
    margin-left: 15px;
    display:flex;
    flex-wrap:wrap;
    max-width:20px;
    -webkit-filter: brightness(75%);
    filter: brightness(75%);
}
/*--------full brightness when selected language------*/
.flags:hover{
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
}
/*-------------- MENU --------------*/
.menu{
    position: fixed;
    padding:3px;
    right:6%;
    top:50px;
    background-color: #000;
    border:2px solid #fff;
    border-radius:50%;
    z-index:1;
}
.menu_line{
    position:relative;
    width:45px;
    height:45px;
}
.line_top{
    position:absolute;
    margin:0px auto;
    left:0;
    right:0;
    top:10px;
}
.line_middle{
    position:absolute;
    margin:0px auto;
    left:0;
    right:0;
    top:20px;
}
.line_bottom{
    position:absolute;
    margin:0px auto;
    left:0;
    right:0;
    top:30px;
}
/*-----------------on click turns lines into an x-----------------------*/
.menu_x .line_top {
    -webkit-transition: transform 200ms ease 0s;
    -ms-transition: transform 200ms ease 0s;
    -moz-transition: transform 200ms ease 0s;
    -o-transition: transform 200ms ease 0s;
    transition: transform 200ms ease 0s;
    -webkit-transform: translate(0px, 10px)rotate(-45deg);
    -ms-transform: translate(0px, 10px)rotate(-45deg);
    -moz-transform: translate(0px, 10px)rotate(-45deg);
    -o-transform: translate(0px, 10px)rotate(-45deg);
    transform: translate(0px, 10px)rotate(-45deg);
}
.menu_x .line_middle {
    opacity: 0;
}
.menu_x .line_bottom {
    -webkit-transition: transform 200ms ease 0s;
    -ms-transition: transform 200ms ease 0s;
    -moz-transition: transform 200ms ease 0s;
    -o-transition: transform 200ms ease 0s;
    transition: transform 200ms ease 0s;
    -webkit-transform: translate(0px, -10px)rotate(45deg);
    -ms-transform: translate(0px, -10px)rotate(45deg);
    -moz-transform: translate(0px, -10px)rotate(45deg);
    -o-transform: translate(0px, -10px)rotate(45deg);
    transform: translate(0px, -10px)rotate(45deg);
}
/*-------------------hide menu----------------------*/
.menu_options{
    display:none;
}
/*--------------display menu-----------------------*/
.menu_options_show{
    display:block;
    position:fixed;
    right:8%;
    top:80px;
    width:180px;
    padding:0px 10px 0px 25px;
    background-color:#000;
    border:2px solid #fff;
    border-radius:10px;
    color:#fff;
    text-align:left;
    font-size:18px;
    line-height: 45px;
}
.menu_options_show > ul{
    list-style:none;
    padding:0px;
}
.menu_options_show  a{
    text-decoration: none;
    color: #fff;
}
.menu_options_show  a:hover{
    font-weight: bold;
}
/*-------------------INDEX PAGE------------*/
.index_table{
    display:flex;
    flex-wrap:wrap;
    margin:50px auto;
    width:90%;
    max-width:1400px;
    text-align:center;
}
.index_cell_half{
    width:50%;
    min-width:275px;
    max-width:500px;
    margin:0px auto;
    text-align:center;
}
.index_cell_half > p{
    font-size:2.5em;
    line-height:1.2em;
    font-weight: bold;
    text-align: left;
}
.authonet_admin{
    width:90%;
    text-align:left!important;
}
.index_bg_color{
    display:flex;
    flex-flow: column wrap;
    margin-top:50px;
    margin-bottom:50px;
    width:100%;
    background-color:#40587a;
    color:#fff;
    padding:25px 0px;

}
.index_bg_color > p{
    text-align:center;
    font-size:2em;
    line-height:1.5em;
    margin:0px auto;
    margin-left:10px;
    margin-right:10px;
}
.index_bg_color .button{
    font-size:20px;
    padding:15px 25px;
    margin:10px;
}
.button{
    background-color:#000;
    color:#fff;
    border:none;
    width:180px;
    border-radius:15px;
    padding:10px;
    text-align:center;
    text-decoration:none;
    display:inline-block;
    font-family: Futura,  Arial, sans-serif;
    font-size:18px;
}
.button_holder{
    margin:0px auto;
    margin-top:15px;
    text-align:center;
}
.button_holder a:hover {
    box-shadow: 0 1px 10px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.index_cell_third{
    width:30%;
    min-width:280px;
    max-width:450px;
    margin:20px auto;
    text-align:center;
}
.index_cell_third > p{
    font-family: Arial, sans-serif;
    font-size:1em;
    line-height:1.2em;
    font-weight: bold;
    margin:0% 10%;
}
.index_cell_third > h1{
    font-size:1.2em;
    line-height:1em;
}
.index_cell_third  a{
    text-decoration: underline;
    color:#000;
}
.index_cell_third  a:hover{
    color:#40587a;
}
.index_cell_third img{
    width:100px;
    margin:20px 0px;
}
.feature_icons{
    min-height:100px;
    margin:auto;
}
.index_cell_third .fa-arrow-right{
    font-size:0.8em;
    vertical-align: middle;
}
/*----------------------FEATURES and FIREWALL PAGE----------------*/
.change_font p{
    font-family: Arial, sans-serif;
    margin:auto;
    vertical-align: middle;
}
.table{
    display:flex;
    flex-wrap:wrap;
    margin:60px auto 0px;
    width:90%;
    max-width:1400px;
    align-items: center;
    justify-content: center;
    text-align:center;
    height: 100%;
}
.table_connectors{
    margin:40px auto 60px;
}
.cell{
    display:flex;
    flex-wrap:wrap;
    width:100%;
     align-items: center;
}
.cell_half{
    width:45%;
    min-width:280px;
    max-width:600px;
    margin:0px auto;
    margin-bottom:6em;
    text-align:center;
}
.cell_half > h1{
    font-size:24px;
    line-height:30px;
}
.cell_third{
    width:30%;
    min-width:180px;
    max-width:430px;
    margin:0px auto;
    text-align:center;
}
.spec > ul{
    list-style:none;
    padding:0px;
    font-family: Arial, sans-serif;
}
.spec{
    margin-bottom:0px;
}
.image{
    width:80%;
    padding:5px 10px 0px;
}
.connectors{
    max-width:550px;
}
.connectors_2{
    max-width:750px;
}
.image_long{
    width:100%;
    max-width:1000px;
    padding:5px 10px 0px;
}
.image_long_2{
    width:750%;
    max-width:750px;
    padding:5px 10px 0px;
}
.image_qsg{
    width:80%;
    max-width:850px;
    padding:5px 10px 0px;
}
.margin{
    margin:100px 0px;
}
.small_margin{
    margin-top:-10px;
}
.smaller_margin{
    margin-top:-80px;
}
.spec_table{
    margin-bottom:150px;
}
.product_image{
    width:50%;
    max-width:500px;
    margin-bottom:10px;
}
.product_image_2{
    width:100%;
    max-width:800px;
    margin-bottom:10px;
}
.product_image_iam{
    width:80%;
    margin:20px 0px -80px 0px;
}
/*-------------------unboxing video--------------------*/
.video-container{
    width:100%;
    max-width:800px;
    margin:50px auto;
}
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top:0px;
    height: 0;
    overflow: hidden;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
/*------------------WHAT IS A FIREWALL--------*/
.gif_image{
    width:80%;
    max-width:1000px;
    margin-top:-50px;
    margin-bottom:50px;
}
.firewall{
    font-family: Arial, sans-serif;
    margin:0% 10%;
}
/*-------------- BUY --------------*/
.table_buy{
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    justify-content: center;
    text-align:center;
    margin:0px auto;
    margin-bottom: 80px;
    width:100%;
}
.third_buy{
    display:flex;
    flex-wrap:wrap;
    width:33%;
    min-width:300px;
    margin:0px auto;
    align-items: center;
    justify-content: center;
    text-align:center;
    padding:5% 0%;
}
.table_buy a{
    text-decoration: none;
}
.product_holder {
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    justify-content: center;
    padding:20px;
    width: 270px;
    height:180px;
    margin: 0px auto;
    background-color: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    overflow: hidden;
    -webkit-box-shadow: 3px 3px 3px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 3px 3px 3px 0px rgba(0,0,0,0.1);
    box-shadow: 3px 3px 3px 0px rgba(0,0,0,0.1);
}
.product_holder:hover {
    -webkit-box-shadow: 5px 5px 5px 2px rgba(0,0,0,0.2);
    -moz-box-shadow: 5px 5px 5px 2px rgba(0,0,0,0.2);
    box-shadow: 5px 5px 5px 2px rgba(0,0,0,0.2);
}
.logo_buy{
    width:80%;
    margin-bottom:10px;
}
.text_blue {
    color: #1f2655;
    font-size: 24px;
    font-weight: bold;
    font-family: Futura,  Arial, sans-serif;
}
.text_small {
    font-family: Futura,  Arial, sans-serif;
    color: #505050;
    font-size: 16px;
    padding:10px;
}
/*---------------------CONTACT,SUPPORT, POLICY, TERMS---------*/
form p{
    font-size:14px;
}
.table_contact{
    display:flex;
    flex-wrap:wrap;
    margin:60px auto;
    width:70%;
    max-width:1000px;
    min-width:280px;
    align-items: center;
    justify-content: center;
    text-align:center;
}
.cell_half_contact{
    width:50%;
    min-width:275px;
    margin:10px auto;
    text-align:center;
}
.button_support{
    background-color:#000;
    color:#fff;
    border:none;
    width:220px;
    border-radius:15px;
    padding:10px;
    text-align:center;
    text-decoration:none;
    display:inline-block;
    font-family: Futura,  Arial, sans-serif;
    font-size:18px;
}
.policy_terms{
    font-family: Arial, sans-serif;
    margin:0% 10%;
}
.table_success_error{
    display:flex;
    flex-wrap:wrap;
    margin:-60px auto 0px;
    width:70%;
    max-width:650px;
    min-width:280px;
    align-items: center;
    justify-content: center;
    text-align:center;
}
.success{
    margin:30px 0px;
   
}
.error{
    margin:30px 0px;
}

/*----------------------------------------------DOCS-----------------------------------------------------*/
.side_menu_fixed{
    width:200px;
    height: -webkit-calc(100vh - 295px);
    height:    -moz-calc(100vh - 295px);
    height:         calc(100vh - 295px);
    position:fixed;
    overflow-y: auto;
    padding-top:10px;
    padding-left:20px;
    margin-top:80px;
    top:0px;
    background-color: #000;
    color:#fff;
    font-size: 16px;
    line-height:30px;
}
.side_menu_content a{
    text-decoration: none;
    color:#fff;
    padding:5px 10px;
    font-size:15px;
    display: inline-block;
    width: -webkit-calc(100% - 20px);
    width:    -moz-calc(100% - 20px);
    width:         calc(100% - 20px);
}

/*---------------------------------------------------MEDIA TAGS----------------------------------------------------*/
@media (max-width:800px){
    h1{
        margin-top:10px;
    }
    .index_table{
        margin:0px auto;
    }
    .index_cell_half{
        width:90%;
    }
    .index_cell_half > p {
        font-size: 2em;
        line-height: 1.2em;
        text-align: center;
    }
    .authonet_admin {
        min-width:270px;
        max-width:390px;
    }
    .cell_half{
        width:90%;
        margin-bottom:10px;
    }
    .three{
        display:flex;
        flex-wrap:wrap;
        order:1;
        align-items: center;
        justify-content: center;
        margin: 60px 0px 0px;
    }
    .four{
        display:flex;
        flex-wrap:wrap;
        order:2;
        align-items: center;
        justify-content: center;
    }
    .five{
        display:flex;
        flex-wrap:wrap;
        order:3;
        align-items: center;
        justify-content: center;
        margin: 60px 0px 0px;
    }
    .six{
        display:flex;
        flex-wrap:wrap;
        order:4;
        align-items: center;
        justify-content: center;
    }
    .seven{
        display:flex;
        flex-wrap:wrap;
        order:5;
        align-items: center;
        justify-content: center;
        margin: 60px 0px 0px;
    }
    .eight{
        display:flex;
        flex-wrap:wrap;
        order:6;
        align-items: center;
        justify-content: center;
    }
    .nine{
        display:flex;
        flex-wrap:wrap;
        order:7;
        align-items: center;
        justify-content: center;
        margin: 60px 0px 0px;
    }
    .ten{
        display:flex;
        flex-wrap:wrap;
        order:8;
        align-items: center;
        justify-content: center;
    }
    .eleven{
        display:flex;
        flex-wrap:wrap;
        order:8;
        align-items: center;
        justify-content: center;
        margin: 60px 0px 0px;
    }
    .twelve{
        display:flex;
        flex-wrap:wrap;
        order:10;
        align-items: center;
        justify-content: center;
    }
    .image{
        width:70%;
        min-width:280px;
        max-width:400px;
        padding:10px 0px 10px;
    }
    .image_long{
        min-width:300px;
        max-width:500px;
    }
    .smaller_margin{
        margin-top:0px;
    }
    .firewall{
        margin:0% 5%;
    }
    .gif_image{
        margin-top:-20px;
        margin-bottom:10px;
        width:100%;
        min-width:300px;
    }
    .product_image{
        width:90%;
    }
    .product_image_iam{
        width:90%;
        margin:0px;
    }
    .cell_third{
        width:55%;
    }
    .spec{
        margin-bottom:0px!important;
    }
}
