/* =======================================================================
 * CONFIG
 * -----------------------------------------------------------------------
 * File used to import custom and vendors variables
 * ===================================================================== */
/* =======================================================================
 * BREAKPOINTS
 * -----------------------------------------------------------------------
 * Breakpoints are used for responsive design. You can define here
 * the breakpoints required for the design.
 * ===================================================================== */
/* =======================================================================
 * COLORS VARIABLES
 * -----------------------------------------------------------------------
 * Define all the colors used in the website. You can use
 * http://chir.ag/projects/name-that-color/ to generate human readable
 * names for each color.
 * ===================================================================== */
/* =======================================================================
 * BASE VARIABLES
 * -----------------------------------------------------------------------
 *
 * ===================================================================== */
/* =======================================================================
 * VENDORS VARIABLES
 * -----------------------------------------------------------------------
 * Import here vendors configurations files for them to be automatically
 * loaded into the app.config file
 * ===================================================================== */
/* =======================================================================
 * MIXINS
 * -----------------------------------------------------------------------
 * File used to import custom and vendors mixins
 * ===================================================================== */
@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fixedZindexUp {
    from {
        z-index: -9999;
    }
    to {
        z-index: 5;
    }
}

@keyframes fixedZindexUp {
    from {
        z-index: -9999;
    }
    to {
        z-index: 5;
    }
}

@-webkit-keyframes fixedZindexDown {
    from {
        z-index: 5;
    }
    to {
        z-index: -9999;
    }
}

@keyframes fixedZindexDown {
    from {
        z-index: 5;
    }
    to {
        z-index: -9999;
    }
}

@-webkit-keyframes burgerOpenFirstLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
}

@keyframes burgerOpenFirstLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
}

@-webkit-keyframes burgerOpenRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
}

@keyframes burgerOpenRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
}

@-webkit-keyframes burgerOpenLastLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
}

@keyframes burgerOpenLastLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
}

@-webkit-keyframes burgerOpenRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
}

@keyframes burgerOpenRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
}

@-webkit-keyframes burgerCloseFirstLine {
    from {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes burgerCloseFirstLine {
    from {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@-webkit-keyframes burgerCloseRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
}

@keyframes burgerCloseRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
}

@-webkit-keyframes burgerCloseLastLine {
    from {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes burgerCloseLastLine {
    from {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@-webkit-keyframes burgerCloseRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
}

@keyframes burgerCloseRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
}

@-webkit-keyframes submitRotate {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-7200deg);
                transform: rotate(-7200deg);
    }
}

@keyframes submitRotate {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-7200deg);
                transform: rotate(-7200deg);
    }
}

@-webkit-keyframes submitShrink {
    from {
        width: 100%;
    }
    to {
        width: 54px;
        height: 54px;
        padding: 0 0;
        border-top-color: #F39600;
    }
}

@keyframes submitShrink {
    from {
        width: 100%;
    }
    to {
        width: 54px;
        height: 54px;
        padding: 0 0;
        border-top-color: #F39600;
    }
}

@-webkit-keyframes submitShrinkUp {
    from {
        width: 0;
        padding: 20px 25px;
        border-top-color: #F39600;
    }
    to {
        width: 100%;
        height: auto;
        padding: 20px 45px;
        border-top-color: #ed1d24;
    }
}

@keyframes submitShrinkUp {
    from {
        width: 0;
        padding: 20px 25px;
        border-top-color: #F39600;
    }
    to {
        width: 100%;
        height: auto;
        padding: 20px 45px;
        border-top-color: #ed1d24;
    }
}

/* =======================================================================
 * VENDORS VARIABLES
 * -----------------------------------------------------------------------
 * Import here vendors mixins files for them to be automatically
 * loaded into the app.mixins file
 * ===================================================================== */
.section .centered-content .side-menu-mobile.skinMe.select, .section .centered-content .schedule-menu-mobile.skinMe.select, .section .centered-content .documents-menu-mobile.skinMe.select {
    width: 100%;
}

.section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn {
    height: auto;
}

.section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu, .section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu, .section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu {
    background-color: #FFFFFF;
    border-radius: 2px;
    color: #383838;
    text-transform: uppercase;
    border: 0;
    position: relative;
    line-height: 1;
    height: auto;
}

.section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu .toggler, .section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu .toggler, .section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu .toggler, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu .toggler, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu .toggler, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu .toggler, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu .toggler, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu .toggler, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu .toggler {
    top: 17.5px;
    right: 20px;
}

.section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu .active-choice, .section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu .active-choice, .section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu .active-choice, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu .active-choice, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu .active-choice, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu .active-choice, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu .active-choice, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu .active-choice, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu .active-choice {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 1;
    padding: 10px;
    position: relative;
    height: auto;
    overflow: visible;
    text-align: center;
    border: #818181 1px solid;
    border-radius: 2px;
}

.section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu .skinme-select-choices, .section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu .skinme-select-choices, .section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu .skinme-select-choices, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu .skinme-select-choices, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu .skinme-select-choices, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu .skinme-select-choices, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu .skinme-select-choices, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu .skinme-select-choices, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu .skinme-select-choices {
    border: none;
    border-radius: 0;
    margin: 25px 0;
    background: #FFFFFF;
}

.section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu .skinme-select-choices .choice, .section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu .skinme-select-choices .choice, .section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu .skinme-select-choices .choice, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu .skinme-select-choices .choice, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu .skinme-select-choices .choice, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu .skinme-select-choices .choice, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu .skinme-select-choices .choice, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu .skinme-select-choices .choice, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu .skinme-select-choices .choice {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    color: #383838;
    background: transparent;
    padding: 10px;
    text-align: center;
}

.section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu .skinme-select-choices .choice:hover, .section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu .skinme-select-choices .choice:hover, .section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu .skinme-select-choices .choice:hover, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu .skinme-select-choices .choice:hover, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu .skinme-select-choices .choice:hover, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu .skinme-select-choices .choice:hover, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu .skinme-select-choices .choice:hover, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu .skinme-select-choices .choice:hover, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu .skinme-select-choices .choice:hover {
    background-color: #ed1d24;
    color: #FFFFFF;
}

.section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu:hover, .section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu:hover, .section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu:hover, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu:hover, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu:hover, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu:hover, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.sideMenu:hover, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.schedule-menu:hover, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn .select.documents-menu:hover {
    background: none !important;
}

.section .centered-content .side-menu-mobile.skinMe.select .skinme-select-ctn select, .section .centered-content .schedule-menu-mobile.skinMe.select .skinme-select-ctn select, .section .centered-content .documents-menu-mobile.skinMe.select .skinme-select-ctn select {
    border: none;
    padding: 0;
    margin: 0;
    padding-right: 17px;
}

@media (min-width: 0) and (max-width: 1023px) {
    .section .centered-content .side-menu-mobile.skinMe.select .select.default .active-choice, .section .centered-content .schedule-menu-mobile.skinMe.select .select.default .active-choice, .section .centered-content .documents-menu-mobile.skinMe.select .select.default .active-choice {
        font-size: 28px;
    }
    .section .centered-content .side-menu-mobile.skinMe.select .select.default .skinme-select-choices .choice, .section .centered-content .schedule-menu-mobile.skinMe.select .select.default .skinme-select-choices .choice, .section .centered-content .documents-menu-mobile.skinMe.select .select.default .skinme-select-choices .choice {
        font-size: 16px;
    }
}

@media (min-width: 0) and (max-width: 959px) {
    .section .centered-content .side-menu-mobile.skinMe.select, .section .centered-content .schedule-menu-mobile.skinMe.select, .section .centered-content .documents-menu-mobile.skinMe.select {
        width: 80%;
    }
}

@media (min-width: 0) and (max-width: 767px) {
    .section .centered-content .side-menu-mobile.skinMe.select .select.default .active-choice, .section .centered-content .schedule-menu-mobile.skinMe.select .select.default .active-choice, .section .centered-content .documents-menu-mobile.skinMe.select .select.default .active-choice {
        font-size: 24px;
    }
    .section .centered-content .side-menu-mobile.skinMe.select .select.default .skinme-select-choices .choice, .section .centered-content .schedule-menu-mobile.skinMe.select .select.default .skinme-select-choices .choice, .section .centered-content .documents-menu-mobile.skinMe.select .select.default .skinme-select-choices .choice {
        font-size: 14px;
    }
}

/*# sourceMappingURL=plugin.me.skin.select-side-menu.css.map */
