/*
 * Project: Matrix Update
 * Author: IDH-media
 * Comments: Core File
 *
 *
 */

    /* General Purpose CSS */
    html, body { height: 100%; width: 100%; -webkit-overflow-scrolling:touch;  }
    .animate {
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .gpu_force {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .main_section { position:relative; display:block; height:100%; }

    .fullsize { position: absolute; top:0px; left:0px; right:0px; bottom:0px; padding:0px; margin:0px; overflow:hidden; z-index:1; }
    /*  .fullsize > iframe { min-width: 100%; min-height: 100%; height: auto; width: auto; position: absolute; } */

    @media (max-width:1025px){
      .fullsize + .fullsize { display:none; }
    }

    .highlight { border: 1px dotted maroon; box-shadow:0px 0px 5px maroon; }


    /* Action Flyer */
    .action_flyer_wrapper { position:fixed; top:0px; left:0px; right:0px; bottom:0px; z-index:9999;
      -webkit-transform: translatez(0);
       -moz-transform: translatez(0);
       -ms-transform: translatez(0);
       -o-transform: translatez(0);
       transform: translatez(0);
       -webkit-transition: all 1.2s;
        -moz-transition: all 1.2s;
        -ms-transition: all 1.2s;
        -o-transition: all 1.2s;
        transition: all 1.2s;
    }
    .action_flyer_wrapper:before { content:''; display:block; position:fixed; top:0px; left:0px; right:0px; bottom:0px; background:#000; z-index:9998; }
    .action_flyer {
      position:fixed; top:0px; left:0px; right:0px; bottom:0px; z-index:9999;
      background-position:center center;
      background-repeat: no-repeat;
      background-size:cover !important;
      -webkit-transform: translatez(0);
       -moz-transform: translatez(0);
       -ms-transform: translatez(0);
       -o-transform: translatez(0);
       transform: translatez(0);
       -webkit-transition: all 1.2s;
        -moz-transition: all 1.2s;
        -ms-transition: all 1.2s;
        -o-transition: all 1.2s;
        transition: all 1.2s;
    }
    .action_flyer_wrapper.go_away { opacity:0; }

    @media (orientation: portrait){
        .action_flyer { background-size: contain !important ; }
    }


    /* Scroller Settings */
    ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); background-color: #555; }
    ::-webkit-scrollbar { width: 6px; background-color: #555; }
    ::-webkit-scrollbar-thumb { background-color: #000000; }
    .section::-webkit-scrollbar { width:3px; }
    body::-webkit-scrollbar { width:12px; }

    ::-moz-scrollbar-track { -moz-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); background-color: #555; }
    ::-moz-scrollbar { width: 6px; background-color: #555; }
    ::-moz-scrollbar-thumb { background-color: #000000; }
    .section::-moz-scrollbar { width:3px; }
    body::-moz-scrollbar { width:12px; }
