/*
  Simple Grid
  Learn More - http://dallasbass.com/simple-grid-a-lightweight-responsive-css-grid/
  Project Page - http://thisisdallas.github.com/Simple-Grid/
  Author - Dallas Bass
  Site - dallasbass.com
*/

#itbAmadeus *, #itbAmadeus *:after, #itbAmadeus *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#itbAmadeus [class*='col-'] {
    float: left;
    padding-right: 20px; /* column-space */
}

#itbAmadeus .grid {
    width: 100%;
    /*max-width: 1140px;
    min-width: 755px;*/
    margin: 0 auto;
    overflow: hidden;
}

#itbAmadeus .grid .grid {
    min-width: 0;
}

#itbAmadeus .grid:after {
    content: "";
    display: table;
    clear: both;
}

#itbAmadeus .grid-pad {
    padding-top: 20px;
    padding-left: 20px; /* grid-space to left */
    padding-right: 0px; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-20px=0 */
}

#itbAmadeus .push-right {
    float: right;
}

/* Content Columns */

#itbAmadeus .col-1-1 {
    width: 100%;
}
#itbAmadeus .col-2-3, #itbAmadeus .col-8-12 {
    width: 66.66%;
}

#itbAmadeus .col-1-2, #itbAmadeus .col-6-12 {
    width: 50%;
}

#itbAmadeus .col-1-3, #itbAmadeus .col-4-12 {
    width: 33.33%;
}

#itbAmadeus .col-1-4, #itbAmadeus .col-3-12 {
    width: 25%;
}

#itbAmadeus .col-1-5 {
    width: 20%;
}

#itbAmadeus .col-1-6, #itbAmadeus .col-2-12 {
    width: 16.667%;
}

#itbAmadeus .col-1-7 {
    width: 14.28%;
}

#itbAmadeus .col-1-8 {
    width: 12.5%;
}

#itbAmadeus .col-1-9 {
    width: 11.1%;
}

#itbAmadeus .col-1-10 {
    width: 10%;
}

#itbAmadeus .col-1-11 {
    width: 9.09%;
}

#itbAmadeus .col-1-12 {
    width: 8.33%
}

/* Layout Columns */

#itbAmadeus .col-11-12 {
    width: 91.66%
}

#itbAmadeus .col-10-12 {
    width: 83.333%;
}

#itbAmadeus .col-9-12 {
    width: 75%;
}

#itbAmadeus .col-5-12 {
    width: 41.66%;
}

#itbAmadeus .col-7-12 {
    width: 58.33%
}



/* Pushing blocks */

#itbAmadeus .push-2-3, #itbAmadeus .push-8-12 {
    margin-left: 66.66%;
}

#itbAmadeus .push-1-2, #itbAmadeus .push-6-12 {
    margin-left: 50%;
}

#itbAmadeus .push-1-3, #itbAmadeus .push-4-12 {
    margin-left: 33.33%;
}

#itbAmadeus .push-1-4, #itbAmadeus .push-3-12 {
    margin-left: 25%;
}

#itbAmadeus .push-1-5 {
    margin-left: 20%;
}

#itbAmadeus .push-1-6, #itbAmadeus .push-2-12 {
    margin-left: 16.667%;
}

#itbAmadeus .push-1-7 {
    margin-left: 14.28%;
}

#itbAmadeus .push-1-8 {
    margin-left: 12.5%;
}

#itbAmadeus .push-1-9 {
    margin-left: 11.1%;
}

#itbAmadeus .push-1-10 {
    margin-left: 10%;
}

#itbAmadeus .push-1-11 {
    margin-left: 9.09%;
}

#itbAmadeus .push-1-12 {
    margin-left: 8.33%
}


@media handheld, only screen and (max-width: 767px) {
    #itbAmadeus .grid {
        width: 100%;
        min-width: 0;
        margin-left: 0px;
        margin-right: 0px;
        padding-left: 20px; /* grid-space to left */
        padding-right: 10px; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-10px=10px */
    }

    #itbAmadeus [class*='col-'] {
        width: auto;
        float: none;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 10px;
        margin-bottom: 10px;
        padding-left: 0px;
        padding-right: 10px; /* column-space */
    }


    /* Mobile Layout */

    #itbAmadeus [class*='mobile-col-'] {
        float: left;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
        margin-bottom: 10px;
        padding-left: 0px;
        padding-right: 10px; /* column-space */
        padding-bottom: 0px;
    }

    #itbAmadeus .mobile-col-1-1 {
        width: 100%;
    }
    #itbAmadeus .mobile-col-2-3, #itbAmadeus .mobile-col-8-12 {
        width: 66.66%;
    }

    #itbAmadeus .mobile-col-1-2, #itbAmadeus .mobile-col-6-12 {
        width: 50%;
    }

    #itbAmadeus .mobile-col-1-3, #itbAmadeus .mobile-col-4-12 {
        width: 33.33%;
    }

    #itbAmadeus .mobile-col-1-4, #itbAmadeus .mobile-col-3-12 {
        width: 25%;
    }

    #itbAmadeus .mobile-col-1-5 {
        width: 20%;
    }

    #itbAmadeus .mobile-col-1-6, #itbAmadeus .mobile-col-2-12 {
        width: 16.667%;
    }

    #itbAmadeus .mobile-col-1-7 {
        width: 14.28%;
    }

    #itbAmadeus .mobile-col-1-8 {
        width: 12.5%;
    }

    #itbAmadeus .mobile-col-1-9 {
        width: 11.1%;
    }

    #itbAmadeus .mobile-col-1-10 {
        width: 10%;
    }

    #itbAmadeus .mobile-col-1-11 {
        width: 9.09%;
    }

    #itbAmadeus .mobile-col-1-12 {
        width: 8.33%
    }

    /* Layout Columns */

    #itbAmadeus .mobile-col-11-12 {
        width: 91.66%
    }

    #itbAmadeus .mobile-col-10-12 {
        width: 83.333%;
    }

    #itbAmadeus .mobile-col-9-12 {
        width: 75%;
    }

    #itbAmadeus .mobile-col-5-12 {
        width: 41.66%;
    }

    #itbAmadeus .mobile-col-7-12 {
        width: 58.33%
    }

    #itbAmadeus .hide-on-mobile {
        display: none !important;
        width: 0;
        height: 0;
    }
}