/*=============================================
=            KEYFRAMES            =
=============================================*/

@-webkit-keyframes grow {
    /*0% { transform: scale(1) rotate(0);}
    100% { transform: scale(2.5) rotate(15deg);}*/
    0% {
        -webkit-transform: translate(2px, 1px) rotate(0deg);
    }
    10% {
        -webkit-transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
        -webkit-transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
        -webkit-transform: translate(0px, 2px) rotate(0deg);
    }
    40% {
        -webkit-transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        -webkit-transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
        -webkit-transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
        -webkit-transform: translate(2px, 1px) rotate(-1deg);
    }
    80% {
        -webkit-transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        -webkit-transform: translate(2px, 2px) rotate(0deg);
    }
    100% {
        -webkit-transform: translate(1px, -2px) rotate(-1deg);
    }
}

@keyframes grow {
    /*0% { transform: scale(1) rotate(0);}
    100% { transform: scale(2.5) rotate(15deg);}*/
    0% {
        -webkit-transform: translate(2px, 1px) rotate(0deg);
    }
    10% {
        -webkit-transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
        -webkit-transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
        -webkit-transform: translate(0px, 2px) rotate(0deg);
    }
    40% {
        -webkit-transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        -webkit-transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
        -webkit-transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
        -webkit-transform: translate(2px, 1px) rotate(-1deg);
    }
    80% {
        -webkit-transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        -webkit-transform: translate(2px, 2px) rotate(0deg);
    }
    100% {
        -webkit-transform: translate(1px, -2px) rotate(-1deg);
    }
}

@-webkit-keyframes slideup-in {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 35px, 0);
        transform: translate3d(0, 35px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideup-in {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 35px, 0);
        transform: translate3d(0, 35px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes scale-anim {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@keyframes scale-anim {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}


/*=====  End of KEYFRAMES  ======*/


/*
    Primary Color: #e5ba5b;
    Background Color: #191919;
*/

textarea:hover, input:hover, textarea:active, input:active, textarea:focus, input:focus, button:focus, button:active, button:hover, label:focus, .btn:active, .btn.active {
    outline: none;
    border: none !important;
    box-shadow: none !important;
}

html, body {
    color: #FFF;
    font-family: 'Open Sans', 'Poppins', sans-serif;
    background-color: #000;
    padding-bottom: 30px;
    padding-top: 28px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.background {
    position: relative;
    background-image: -webkit-linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../res/background-wood-tile.jpg');
    background-image: linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../res/background-wood-tile.jpg');
    background-size: 100%;
}

.material-icons {
    font-size: 14px;
}

.material-icons.medium {
    font-size: 20px;
}

.material-icons.trash {
    color: #E64A19;
}

.pointer {
    cursor: pointer;
}


/*=============================================
=            GLOBALS            =
=============================================*/

select {
    -webkit-appearance: none;
}

.bold {
    font-weight: bold;
}

.text-center {
    text-align: center;
}

.fs-16 {
    font-size: 16px;
}

.uppercase {
    text-transform: uppercase;
}

.color {
    color: #e5ba5b;
}

.color-bg {
    background-color: #e5ba5b;
}

ul.plain {
    list-style: none;
}

ul {
    margin: 20px auto;
    padding-left: 0;
}

ul li {
    margin: 5px auto;
}

.container {
    padding: 40px 20px;
}

.table-row {
    display: table;
    width: 100%;
    border-spacing: 10px;
    margin-bottom: -10px;
}

.table-col {
    display: table-cell;
    width: 33.3333%;
    vertical-align: middle;
}

.table-col > nav {
    margin-top: 25px;
}

.table-col.color-bg {
    color: #222;
    padding: 25px 15px;
}

.flexcenter-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flexcenter-row>span {
    padding-left: 2px;
    padding-right: 2px;
}

.flexcenter-row>img {
    padding-left: 2px;
    padding-right: 2px;
}

.slideup-fadein {
    opacity: 0;
    -webkit-animation-name: slideup-in;
    animation-name: slideup-in;
    -webkit-animation-duration: 1200ms;
    animation-duration: 1200ms;
    -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.slideup-fadein:nth-child(1) {
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
}

.slideup-fadein:nth-child(2) {
    -webkit-animation-delay: 300ms;
    animation-delay: 300ms;
}

.slideup-fadein:nth-child(3) {
    -webkit-animation-delay: 600ms;
    animation-delay: 600ms;
}

.slideup-fadein:nth-child(4) {
    -webkit-animation-delay: 900ms;
    animation-delay: 900ms;
}

.slideup-fadein:nth-child(5) {
    -webkit-animation-delay: 1200ms;
    animation-delay: 1200ms;
}

.slideup-fadein:nth-child(6) {
    -webkit-animation-delay: 1500ms;
    animation-delay: 1500ms;
}

.uibtab-md {
    font-size: 20px;
}

.uibtab-lg {
    font-size: 24px;
}

.nav-tabs {
    border-bottom: 1px solid #333;
    -webkit-transition: .2s background-color linear;
    transition: .2s background-color linear;
}

.nav-tabs>li>a {
    color: #fff;
    font-weight: bold;
    border: 1px solid #e5ba5b;
}

.nav-tabs>li>a:hover, .nav-tabs>li>a:focus, .nav-tabs>li.active>a.nav-link {
    border-radius: 0;
    background-color: #e5ba5b;
    border-color: transparent;
    -webkit-transition: background-color .2s linear;
    transition: background-color .2s linear;
}

.nav-tabs.nav-justified>.active>a:hover, .nav-tabs.nav-justified>.active>a:focus {
    border-color: transparent;
}

.nav-tabs.nav-justified>li>a {
    border-radius: 0;
    border: 1px solid #e5ba5b;
}


/*=============================================
=            IDENTIFIERS INIT            =
=============================================*/

#homeheadersecond, #cateringwriteup, #checkitoutheader, #tiffin-story, #memberscornerwriteup, #joinnow {
    opacity: 0;
}


/*=====  End of IDENTIFIERS INIT  ======*/


/*=============================================
=            MARGINS & PADDINGS            =
=============================================*/

.m-b-30 {
    margin-bottom: 30px;
}

.m-lr-5 {
    margin-left: 5px;
    margin-right: 5px;
}

.m-lr-10 {
    margin-left: 10px;
    margin-right: 10px;
}

.m-lr-20 {
    margin-left: 20px;
    margin-right: 20px;
}

.m-tb-5 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.m-tb-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}


/*=====  End of MARGINS  ======*/


/*----------  Buttons  ----------*/

.btn {
    border-radius: 0;
}

.btn-primary {
    border: 0;
    text-transform: uppercase;
    font-weight: bold;
    color: #191919;
    background-color: #e5ba5b;
}

.btn-lg {
    font-size: 16px;
}

.btn-primary:hover, .btn-primary:active:hover, .btn-primary:focus {
    color: #191919;
    background-color: #e5ba5b;
}

.btn-secondary {
    border: 0;
    text-transform: uppercase;
    font-weight: bold;
    color: #e5ba5b;
    background-color: #191919;
}

.btn-secondary:hover, .btn-secondary:active:hover, .btn-secondary:focus {
    background-color: #191919;
    color: #e5ba5b;
}

.btn-fb {
    border: 0;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    background-color: #3b5998;
}

.btn-fb:hover, .btn-fb:active:hover, .btn-fb:focus {
    background-color: #3b5998;
    color: #fff;
}


/*----------  100VW Image Header  ----------*/

img.image-header {
    width: 90%;
    max-width: 600px;
    display: block;
    margin: 40px auto;
}

.image-text-wrapper {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: 50% 50%;
}

.image-text-wrapper img {
    width: 70px;
    margin-bottom: 20px;
}

.image-text-wrapper.big {
    min-height: 500px;
}

.image-text-wrapper.small {
    font-size: inherit;
    min-height: 300px;
}

.image-text-wrapper .text-wrapper {
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 0 20px;
    max-width: 500px;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.image-text-wrapper .text-wrapper .small {
    font-size: 20px;
}

.image-text-wrapper .text-wrapper .big {
    font-size: 30px;
    line-height: 32px;
    font-weight: bold;
}

.image-text-wrapper .text-wrapper .border {
    font-weight: normal;
    border: 1px solid #fff;
    width: auto;
    width: 90%;
    padding: 2px 20px;
    max-width: 350px;
    display: inline-block;
    margin-top: 10px;
}

.image-text-wrapper .overlay {
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}


/*----------  FORMS  ----------*/

.input-group-addon {
    height: 40px;
    font-size: 16px;
    border: 0;
    border-radius: 0;
    color: #FFF;
    background-color: #e5ba5b;
}

.input-group-addon i {
    font-size: 18px;
}

.form-control {
    height: 40px;
    font-size: 16px;
    border: 0;
    border-radius: 0;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.4);
}

.form-control::-webkit-input-placeholder {
    color: #191919;
}

.form-control:-moz-placeholder {
    color: #191919;
}

.form-control::-moz-placeholder {
    color: #191919;
}

.form-control:-ms-input-placeholder {
    color: #191919;
}

.form-group.btn-side {
    margin: 0 auto 40px auto;
    width: auto;
    display: table;
}

.form-group.btn-side>* {
    width: auto;
    vertical-align: top;
    height: 40px;
    display: table-cell;
}

.nowrap {
    white-space: nowrap;
}


/*=====  End of GLOBALS  ======*/


/*=============================================
=            NAVBAR            =
=============================================*/

nav.navbar {
    padding: 10px;
    background-color: #191919;
    margin-bottom: 0;
}

nav.navbar.reverse {
    padding: 10px;
    /*background-color: #191919;*/
    background-color: #e5ba5b;
    margin-bottom: 0;
}

nav.navbar.reverse .bottom .fullwidth a.active, nav.navbar.reverse .bottom .fullwidth span.active {
    color: #191919 !important;
}

nav.navbar .top {
    padding: 0 5px;
    width: 100%;
    display: table;
    height: 20px;
    table-layout: fixed;
}

nav.navbar .top>div {
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    width: 50%;
    /*width: 33.333%;*/
}

nav.navbar .top>div:last-child {
    text-align: right;
    color: #e5ba5b;
    width: 25%;
}

nav.navbar .top>div:first-child {
    text-align: left;
    font-size: 20px;
    width: 25%;
}

nav.navbar .top>div:last-child>img {
    width: 25px;
    margin: -2px 10px 0 0;
}

nav.navbar .top .member-wrapper {
    height: 29px;
}

nav.navbar .top .member-wrapper > span {
    display: inline-block;
    line-height: 29px;
    vertical-align: middle;
}

nav.navbar .top .logo-wrapper {
    margin-top: 10px;
    text-align: center;
    text-transform: uppercase;
    font-size: 90%;
    text-overflow: ellipsis;
    overflow: hidden;
}

nav.navbar .top .logo-wrapper img {
    width: 57px;
    /*margin-bottom: 10px;*/
}

nav.navbar .top .logo-wrapper span {
    color: #e5ba5b;
    line-height: 30px;
    vertical-align: middle;
}

nav.navbar .top .logo-wrapper i {
    line-height: 30px;
    vertical-align: middle;
}

nav.navbar .top .logo-wrapper .menu-title {
    font-size: 16px;
    color: #fff;
}

nav.navbar .top .username {
    font-size: 12px;
    font-weight: bold;
    color: #e5ba5b;
    white-space: nowrap;
    width: 60%;
    overflow: hidden;
    text-overflow: clip;
}

nav.navbar .bottom {
    padding: 0 5px;
    width: 100%;
    display: table;
    height: 20px;
    color: #111;
}

nav.navbar .bottom .material-icons.activestate {
    color: #fff;
}

nav.navbar .bottom .fullwidth {
    text-align: center;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

nav.navbar .bottom .fullwidth span, nav.navbar .bottom .fullwidth a {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

nav.navbar .bottom .fullwidth a:hover {
    text-decoration: none;
}

nav.navbar .bottom a.active, nav.navbar .bottom span.active {
    font-weight: bold;
    color: #000 !important;
}

nav.navbar .bottom.tablelist>div {
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    width: 50%;
    /*width: 33.333%;*/
}

nav.navbar .bottom.tablelist>div:last-child {
    text-align: right;
    width: 25%;
}

nav.navbar .bottom.tablelist>div:first-child {
    text-align: left;
    font-size: 20px;
    width: 25%;
}

nav.navbar .bottom.tablelist>div:first-child .span {
    color: #000 !important;
}

#orderCart.grow {
    -webkit-animation-name: grow;
    animation-name: grow;
    -webkit-animation-duration: 0.25s;
    animation-duration: 0.25s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 4;
    animation-iteration-count: 4;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.animate-logo {
    -webkit-animation-name: scale-anim;
    animation-name: scale-anim;
    -webkit-animation-duration: 2000ms;
    animation-duration: 2000ms;
    -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}


/*=====  End of NAVBAR  ======*/


/*=============================================
=            CONTACT FORM            =
=============================================*/

.contact-form {
    background: -webkit-linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../res/Q04A2589.jpg');
    background: linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../res/Q04A2589.jpg');
    background-size: cover;
}

form {
    max-width: 500px;
    margin: 0 auto;
}

form .input-group {
    margin: 15px 0;
}

form .input-group select {
    background-color: rgba(230, 186, 91, 0.5);
}

form .input-group select option {
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.5);
}


/*=====  End of CONTACT FORM  ======*/


/*=============================================
=            MENU            =
=============================================*/

.popular-dish {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.popular-dish img {
    width: 100%;
    max-width: none;
}

.popular-dish p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
    padding: 10px 0 10px 0;
}

.menu {
    text-align: center;
}

.menu-item {
    display: inline-block;
    vertical-align: top;
    max-width: 320px;
}

.menu-item .item-header {
    font-size: 13px;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #FFF;
    padding: 10px 8px 5px 8px;
}

.menu-item .item-bottom {
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.3);
}

.menu-item .item-bottom .item-name {
    font-size: 16px;
    display: table;
    width: 100%;
}

.menu-item .item-bottom .item-name span {
    display: table-cell;
    vertical-align: bottom;
    text-align: left;
}

.menu-item .item-bottom .item-name span.price {
    font-size: 14px;
    text-align: right;
}

.menu-item .item-description {
    text-align: left;
    font-size: 14px;
    margin: 5px 0;
}

.menu-item .hover {
    position: relative;
}

.menu-item .hover .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid #e5ba5b;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.menu-item .hover .overlay img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 60px;
}

.menu-item .hover:hover .overlay {
    opacity: 1;
}

.menu-item .menuoptions {
    overflow: hidden;
    max-height: 0px;
    top: 580px;
    background-color: #e5b85d;
    color: black;
    transition: max-height 0.4s ease-in-out;
    -moz-transition: max-height 0.4s ease-in-out;
    -o-transition: max-height 0.4s ease-in-out;
    -webkit-transition: max-height 0.4s ease-in-out;
}

.menu-item .menuoptions.open {
    height: inherit;
    max-height: 450px;
}

.menu-item .menuoptions .menucontainer {
    border-top: 1px solid black;
    padding: 12px;
    text-align: left !important;
}


/*=====  End of MENU  ======*/


/*=============================================
=            CART            =
=============================================*/

.cart-item {
    display: table;
    width: 100%;
    border-bottom: 1px solid #333;
    vertical-align: top;
    margin: 20px 0;
    padding-bottom: 10px;
}

.cart-item p {
    margin: 0;
}

.cart-item>div {
    display: table-cell;
}

.cart-item .item-name {
    text-align: left;
}

.cart-item .right {
    text-align: right;
}

.cart-item .edit-icon {
    width: 30px;
    text-align: right;
    vertical-align: middle;
}

.cart-item .right .item-price {
    font-weight: bold;
}

.cart-item .right .item-qty>span {
    /*border-radius: 50%;*/
    /*border: 1px solid #fff;*/
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 16px;
    vertical-align: middle;
    text-align: center;
    margin: 0 5px;
    /*background-color: #e5b85d;*/
    color: #e5b85d;
    font-weight: bolder;
    font-size: 24px;
    cursor: pointer;
}


/*.cart-item .right .item-qty>span:last-child {
    margin-right: 10px;
}*/

.cart .subtotal {
    text-align: right;
    padding-right: 20px;
}

.cart-total {
    text-align: center;
    font-size: 24px;
}


/*=====  End of CART  ======*/


/*=============================================
=            ORDER SUMMARY            =
=============================================*/

.order-summary {
    padding-top: 0;
}

.order-summary table {
    width: 100%;
    border-spacing: 5px;
    margin-bottom: 10px;
}

.order-summary table td {
    vertical-align: top;
    padding-bottom: 5px;
}

.order-summary textarea {
    font-size: 14px;
    text-transform: none;
    font-weight: normal;
}


/*=====  End of ORDER SUMMARY  ======*/

.order-summary .table-row {
    width: 100%;
    display: table;
}

.order-summary .table-col {
    display: table-cell;
    vertical-align: top;
}


/*=============================================
=            FOOTER            =
=============================================*/

footer {
    text-align: center;
}

footer .container {
    padding-top: 20px;
    padding-bottom: 20px;
}

footer img {
    display: block;
    margin: 0 auto 10px auto;
    width: 80px;
}

footer .line {
    border: 1px solid #333;
    width: 150px;
    display: block;
    margin: 20px auto;
}


/*=====  End of FOOTER  ======*/


/*=============================================
=            MODAL STYLES            =
=============================================*/

.tiffin-modal .modal-content {
    background: black;
    color: #e5ba5b;
    border: 1px solid #e5ba5b;
}

.tiffin-modal .modal-header {
    border: 1px solid #777;
}

.tiffin-modal .modal-footer {
    border: 1px solid #777;
}

.tiffin-modal .signup {
    text-align: right;
}

.tiffin-modal .tiffin-question {
    margin-bottom: 16px;
}

.tiffin-modal .tiffin-select {
    margin-bottom: 20px;
}

.tiffin-modal a {
    color: #e5ba5b;
}

.tiffin-modal a:hover {
    color: white;
    text-decoration: none;
}

.tiffin-modal h1, .tiffin-modal h2, .tiffin-modal h3, .tiffin-modal h4, .tiffin-modal h5, .tiffin-modal h6 {
    margin-top: 0;
}

.tiffin-modal .radio label .largeradio {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.tiffin-modal .radio label .radiotext {
    color: white;
    font-size: 18px;
    margin-left: 12px;
}

.edit-modal .modal-content {
    background: none;
    box-shadow: none;
    border: none;
}


/*=====  End of MODAL STYLES  ======*/


/*=============================================
=            FLIP CONTAINER            =
=============================================*/

.flipcard {
    perspective: 800;
    -moz-perspective: 800;
    -webkit-perspective: 800;
    margin: 1em auto;
    width: 90%;
    border-radius: 0.5em;
    /*transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;*/
    transition: 0.6s;
    -moz-transition: 0.6s;
    -webkit-transition: 0.6s;
    cursor: pointer;
    max-width: 600px;
    border: 1px solid #e5b85d;
}

.flipcard.flipped {
    transform: rotatey(-180deg);
    -moz-transform: rotatey(-180deg);
    -webkit-transform: rotatey(-180deg);
}

.flipcard .face {
    padding: 1em;
    text-align: center;
}

.flipcard .front {
    display: block;
}

.flipcard.flipped .front {
    display: none;
}

.flipcard .back {
    transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    display: none;
}

.flipcard.flipped .back {
    display: block;
}


/*=====  End of FLIP CONTAINER  ======*/

@media (max-width: 991px) {
    .table-row, .table-col {
        display: block;
        width: 100%;
        margin: 10px auto;
    }
    .table-col {
        max-width: 500px;
    }
}


/*=============================================
=            LEFT-RIGHT NAV            =
=============================================*/

.lnavwrap {
    position: fixed;
    top: 43%;
    z-index: 999;
    left: 0;
    height: 10%;
    width: 30px;
}

.rnavwrap {
    position: fixed;
    top: 43%;
    z-index: 999;
    right: 0;
    height: 10%;
    width: 30px;
}

.leftnav, .rightnav {
    position: absolute;
    opacity: 0.4;
    height: 100%;
    top: 50%;
}

.leftnav {
    left: 0;
    padding-left: 5px;
}

.leftnav .material-icons, .rightnav .material-icons {
    font-size: 24px;
}

.rightnav {
    right: 0;
    padding-right: 5px;
}


/*=====  End of LEFT-RIGHT NAV  ======*/


/*=============================================
=            SITEMAP            =
=============================================*/
.sitemap .btn {
    height: 50px;
    margin: 10px auto;
    width: 100%;
    max-width: 300px;
}


/*=====  End of SITEMAP  ======*/