﻿/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@font-face {
    font-family: 'Jost Light';
    src: url('../fonts/jost-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Jost Book';
    src: url('../fonts/jost-book.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Jost Medium';
    src: url('../fonts/jost-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Jost Bold';
    src: url('../fonts/jost-bold.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Roboto";
    src: url("../fonts/RobotoRegular.eot");
    src: url("../fonts/RobotoRegular.eot") format("embedded-opentype"), url("../fonts/RobotoRegular.woff2") format("woff2"), url("../fonts/RobotoRegular.woff") format("woff"), url("../fonts/RobotoRegular.ttf") format("truetype"), url("../fonts/RobotoRegular.svg#RobotoRegular") format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/RobotoMedium.eot");
    src: url("../fonts/RobotoMedium.eot") format("embedded-opentype"), url("../fonts/RobotoMedium.woff2") format("woff2"), url("../fonts/RobotoMedium.woff") format("woff"), url("../fonts/RobotoMedium.ttf") format("truetype"), url("../fonts/RobotoMedium.svg#RobotoMedium") format("svg");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RobotoCondensedBold';
    src: url('../fonts/RobotoCondensedBold.eot');
    src: url('../fonts/RobotoCondensedBold.eot') format('embedded-opentype'), url('../fonts/RobotoCondensedBold.woff2') format('woff2'), url('../fonts/RobotoCondensedBold.woff') format('woff'), url('../fonts/RobotoCondensedBold.ttf') format('truetype'), url('../fonts/RobotoCondensedBold.svg#RobotoCondensedBold') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 35px 0 0 102px;
    font-family: 'Roboto', sans-serif;
}
/* -------------- Header Start --------------- */
header {
    padding: 12px 15px;
    position: fixed;
    z-index: 2;
    left: 0;
    right: 0;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    z-index: 3;
}

.logo-wrapper, .logo-wrapper img {
    line-height: 0;
}

.user-profile-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.profile-icon-n-name-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-icon {
    width: 47px;
    height: 47px;
    border-radius: 47px;
    background-color: #D9D9D9;
    overflow: hidden;
}

.user-name {
    font-size: 18px;
    font-weight: 400;
    color: #54534D;
}

.dropdown .icon {
    font-size: 7.5px;
    border-color: #4e4f55;
}

.dropdown-arrow:before {
    content: "";
    display: inline-block;
    border: 12px #A8A8A8 solid;
    border-left: 7px transparent solid;
    border-bottom: 0;
    border-right: 7px transparent solid;
    width: 0;
    height: 0;
}

.select-option {
    background: #fff;
    position: absolute;
    top: 80%;
    width: 200px;
    right: 0;
    z-index: 999999;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    visibility: hidden;
}

@media screen and (min-width:991.1px)
{
    .user-profile-wrapper:hover .select-option {
        visibility: visible;
    }
}

.select-option ul {
    padding: 0;
    list-style: none;
}

    .select-option ul li, .select-option ul li.active {
        padding: 1.25rem 0 0 1.8rem !important;
        position: relative;
        background-color: white !important;
    }

        .select-option ul li a, .select-option ul li.active a {
            display: block;
            color: #54534A !important;
            font-family: "Jost Book";
            text-decoration: none;
            font-weight: 400;
            font-size: 12pt;
            line-height: 32px;
            text-align: left;
        }

        .select-option ul li:hover::before {
            content: "";
            left: 0;
            top: 60%;
            position: absolute;
            border-style: solid;
            border-width: 7px 0 7px 10px;
            border-color: transparent transparent transparent #F47920;
        }
/* ---------------- Header End ----------------- */
/* --------------------------------------------- */
/* -------------- Sidebar Start ---------------- */
.sidebar {
    position: fixed;
    left: 0;
    top: 72px;
    height: calc(100vh - 72px);
    background-color: #F2F2F2;
    padding:0px;
    z-index: 9;
    bottom: 0;
    width: 92px;
    transition: all 0.3s ease;
}

.sidebar ul {

    padding:10px 16px !important;

}
    .sidebar.active {
        width: 228px;
        transition: all 0.3s ease;
    }

    .sidebar:before {
        content: "";
        position: fixed;
        left: 0;
        bottom: 0;
        top: 0;
        background-color: #F2F2F2;
        z-index: -1;
        transition: all .2s ease-in;
    }

    .sidebar.active:before {
        /**width: 228px;*/
    }

    .sidebar .close-icon-wrapper {
        display: flex;
        justify-content: flex-end;
        margin: 10px;
        padding-right:10px;
    }

    .sidebar .icon-close {
        color: #54534D;
        font-size: 19px;
    }

    .sidebar .user-profile-wrapper {
        gap: 10px;
        margin: 25px 0 20px;
    }

    .sidebar .profile-icon-n-name-wrapper {
        gap: 10px;
    }

    .sidebar .dropdown .icon {
        color: #54534D;
    }

    .sidebar .user-name {
        font-size: 20px;
    }

    .sidebar ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .sidebar ul li {
            margin: 0;
            padding: 0;
            display: flex;
            padding: 11px 22px;
            border-radius: 10px;
        }

            .sidebar ul li a {
                display: flex;
                align-items: center;
                color: #54534D;
                font-family: 'Roboto Condensed', sans-serif;
                font-weight: 500;
                transition: all .2s ease-in;
                overflow: hidden;
                white-space: nowrap;
                font-size: 1;
                text-decoration: none;
            }

    .sidebar.active ul li {
        padding-right: 22px;
    }

        .sidebar.active ul li a {
            text-decoration: none;
        }

    .sidebar li:hover, .sidebar li.active {
        background-color: #E6E6E6;
        color: #F47920;
        cursor: pointer;
    }

        .sidebar li:hover a, .sidebar li.active a {
            color: #F47920;
            cursor: pointer;
        }

main {
    width: 100%;
    min-height: calc(100vh - 212px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-wrapper {
    position: absolute;
    left: 30px;
    top: 50%;
    color: black;
    transform: translateY(-50%);
    font-size: 14px;
}

@media (max-width: 767px) {
    .hidden-mobile {
        display: none !important;
    }

    body {
        padding: 52px 0 0;
    }

    header {
        justify-content: center;
        min-height: 52px;
    }

    .logo-wrapper, .logo-wrapper img {
        /*max-height: 25px;*/
        width: auto;
        padding-top: 2px;
        padding-bottom: 5px !important;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,.5);
        z-index: 1;
    }

    .show {
        display: block;
    }

    .sidebar {
        top: 20px !important;
        left: -262px;
        min-height: 100vh;
        z-index: 9;
        transition: all .3s ease-in;
    }

        .sidebar:before {
            left: -262px;
            width: 171px;
        }

        .sidebar.active {
            left: 0;
        }

            .sidebar.active:before {
                left: 0;
                width: 301px;
            }

            .sidebar.active ul li a {
                width: 225px;
                font-size: 16px;
            }

        .sidebar ul li a span {
            font-size: 18px;
        }

    .select-option {
        width: 270px;
        top: 100%;
        left: 20px;
        right: inherit;
    }

        .select-option ul {
            margin-bottom: 1rem;
            overflow: hidden;
        }
}

@media (min-width: 768px) {
    .hidden-desktop {
        display: none !important;
    }
}

/* ODFC menu css*/


@media only screen and (min-width: 360px) and (max-width: 767px) {

    .menu-wrapper {
        color: black;
        transform: translateY(-50%);
        font-size: 14px;
        display: contents;
    }

    .logo-wrapper, .logo-wrapper img {
        left: 0;
        right: 0;
        margin: 0 auto;
        height: 32px !important;
        /*padding-bottom: 10px;*/
    }

    header {
        flex-wrap: wrap;
        width: 100%;
    }

    .WellableHeader-module_nav-bar_2rCuP {
        justify-content: space-between !important;
        font-size: 14px;
        gap: 0 !important;
    }

    .WellableHeader-module_vl-header_1V1sk {
        top: 72px;
        width: 100%;
        margin-top: 5px;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img + img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP1 > button {
        width: min-content;
        padding: 0 3vw;
    }

    .WellableHeader-module_nav-bar_2rCuP a.active:after {
        content: "";
        left: 0;
        right: 0;
        height: 2px;
        background-color: red;
        position: absolute;
        bottom: -15px !important;
    }

    body {
        margin: 0;
        padding: 30px 0 0 0px;
        font-family: 'Roboto', sans-serif;
    }

    header {
        /*padding: 12px 20px !important;*/
        /*padding:12px 20px 12px 12px !important;*/
        padding-left: 12px !important;
        padding-right: 12px !important;
        position: fixed;
        z-index: 2;
        left: 0;
        right: 0;
        top: 0;
        background-color: white;
        box-shadow: 0 2px 6px 0 rgba(0,0,0,.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 72px;
        z-index: 3;
        width: 100%;
    }
}

/*@media (max-width: 290px) 
{
    .menu-wrapper {
        color: black;
        transform: translateY(-50%);
        font-size: 14px;
        display: contents;
    }

    .logo-wrapper, .logo-wrapper img {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    header {
        flex-wrap: wrap;
        width: 100%;
    }

    .WellableHeader-module_nav-bar_2rCuP {
        display: flex;
        align-items: center;
        justify-content: center;*/
/* gap: 25px !important;
        font-size: 14px;
        margin-left: -3px !important;*/
/*gap: 15px !important;
        font-size: 11px;
        padding:0 10px !important;
    }

    .WellableHeader-module_vl-header_1V1sk {
        top: 72px;
        width: 100%;
        margin-top: 10px;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img + img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP1 > button {
        width: min-content;
        padding: 0 3vw;
    }

    .WellableHeader-module_nav-bar_2rCuP a.active:after {
        content: "";
        left: 0;
        right: 0;
        height: 2px;
        background-color: red;
        position: absolute;
        bottom: -15px !important;
    }
    body {
        margin: 0;
        padding: 30px 0 0 0px;
        font-family: 'Roboto', sans-serif;
    }
    header {
        padding: 12px 20px !important;
        position: fixed;
        z-index: 2;
        left: 0;
        right: 0;
        top: 0;
        background-color: white;
        box-shadow: 0 2px 6px 0 rgba(0,0,0,.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 72px;
        z-index: 3;
        width: 100%;
    }
}
@media only screen and (max-width: 320px) and (min-width: 291px) {

    .menu-wrapper {
        color: black;
        transform: translateY(-50%);
        font-size: 14px;
        display: contents;
    }

    .logo-wrapper, .logo-wrapper img {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    header {
        flex-wrap: wrap;
        width: 100%;
    }

    .WellableHeader-module_nav-bar_2rCuP {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 22px !important;
        font-size: 14px;
        margin-left: -12px !important;
    }

    .WellableHeader-module_vl-header_1V1sk {
        top: 72px;
        width: 100%;
        margin-top: 5px;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img + img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP1 > button {
        width: min-content;
        padding: 0 3vw;
    }

    .WellableHeader-module_nav-bar_2rCuP a.active:after {
        content: "";
        left: 0;
        right: 0;
        height: 2px;
        background-color: red;
        position: absolute;
        bottom: -17px !important;
    }

    body {
        margin: 0;
        padding: 30px 0 0 0px;
        font-family: 'Roboto', sans-serif;
    }

    header {
        padding: 12px 20px !important;
        position: fixed;
        z-index: 2;
        left: 0;
        right: 0;
        top: 0;
        background-color: white;
        box-shadow: 0 2px 6px 0 rgba(0,0,0,.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 72px;
        z-index: 3;
        width: 100%;
    }
}
@media only screen and (max-width: 360px) and (min-width: 321px) {

    .menu-wrapper {
        color: black;
        transform: translateY(-50%);
        font-size: 14px;
        display: contents;
    }

    .logo-wrapper, .logo-wrapper img {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    header {
        flex-wrap: wrap;
        width: 100%;
    }

    .WellableHeader-module_nav-bar_2rCuP {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px !important;
        font-size: 14px;
        margin-left: -1px !important;
    }

    .WellableHeader-module_vl-header_1V1sk {
        top: 72px;
        width: 100%;
        margin-top: 5px;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img + img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP1 > button {
        width: min-content;
        padding: 0 3vw;
    }

    .WellableHeader-module_nav-bar_2rCuP a.active:after {
        content: "";
        left: 0;
        right: 0;
        height: 2px;
        background-color: red;
        position: absolute;
        bottom: -15px !important;
    }

    body {
        margin: 0;
        padding: 30px 0 0 0px;
        font-family: 'Roboto', sans-serif;
    }

    header {
        padding: 12px 20px !important;
        position: fixed;
        z-index: 2;
        left: 0;
        right: 0;
        top: 0;
        background-color: white;
        box-shadow: 0 2px 6px 0 rgba(0,0,0,.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 72px;
        z-index: 3;
        width: 100%;
    }
}
@media only screen and (max-width: 375px) and (min-width: 361px) {

    .menu-wrapper {
        color: black;
        transform: translateY(-50%);
        font-size: 14px;
        display: contents;
    }

    .logo-wrapper, .logo-wrapper img {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    header {
        flex-wrap: wrap;
        width: 100%;
    }

    .WellableHeader-module_nav-bar_2rCuP {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px !important;
        font-size: 14px;
        margin-left: -6px !important;
    }

    .WellableHeader-module_vl-header_1V1sk {
        top: 72px;
        width: 100%;
        margin-top: 5px;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img + img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP1 > button {
        width: min-content;
        padding: 0 3vw;
    }

    .WellableHeader-module_nav-bar_2rCuP a.active:after {
        content: "";
        left: 0;
        right: 0;
        height: 2px;
        background-color: red;
        position: absolute;
        bottom: -17px !important;
    }

    body {
        margin: 0;
        padding: 30px 0 0 0px;
        font-family: 'Roboto', sans-serif;
    }

    header {
        padding: 12px 20px !important;
        position: fixed;
        z-index: 2;
        left: 0;
        right: 0;
        top: 0;
        background-color: white;
        box-shadow: 0 2px 6px 0 rgba(0,0,0,.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 72px;
        z-index: 3;
        width: 100%;
    }
}
@media only screen and (max-width: 399px) and (min-width: 376px) {

    .menu-wrapper {
        color: black;
        transform: translateY(-50%);
        font-size: 14px;
        display: contents;
    }

    .logo-wrapper, .logo-wrapper img {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    header {
        flex-wrap: wrap;
        width: 100%;
    }

    .WellableHeader-module_nav-bar_2rCuP {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 26px !important;
        font-size: 14px;
        margin-left: -1px !important;
    }

    .WellableHeader-module_vl-header_1V1sk {
        top: 72px;
        width: 100%;
        margin-top: 5px;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img + img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP1 > button {
        width: min-content;
        padding: 0 3vw;
    }

    .WellableHeader-module_nav-bar_2rCuP a.active:after {
        content: "";
        left: 0;
        right: 0;
        height: 2px;
        background-color: red;
        position: absolute;
        bottom: -15px !important;
    }

    body {
        margin: 0;
        padding: 30px 0 0 0px;
        font-family: 'Roboto', sans-serif;
    }

    header {
        padding: 12px 20px !important;
        position: fixed;
        z-index: 2;
        left: 0;
        right: 0;
        top: 0;
        background-color: white;
        box-shadow: 0 2px 6px 0 rgba(0,0,0,.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 72px;
        z-index: 3;
        width: 100%;
    }
}
@media only screen and (max-width: 411px) and (min-width: 400px) {

    .menu-wrapper {
        color: black;
        transform: translateY(-50%);
        font-size: 14px;
        display: contents;
    }

    .logo-wrapper, .logo-wrapper img {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    header {
        flex-wrap: wrap;
        width: 100%;
    }

    .WellableHeader-module_nav-bar_2rCuP {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 29px !important;
        font-size: 14px;
        margin-left: -4px !important;
    }

    .WellableHeader-module_vl-header_1V1sk {
        top: 72px;
        width: 100%;
        margin-top: 5px;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img + img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP1 > button {
        width: min-content;
        padding: 0 3vw;
    }

    .WellableHeader-module_nav-bar_2rCuP a.active:after {
        content: "";
        left: 0;
        right: 0;
        height: 2px;
        background-color: red;
        position: absolute;
        bottom: -17px !important;
    }

    body {
        margin: 0;
        padding: 30px 0 0 0px;
        font-family: 'Roboto', sans-serif;
    }

    header {
        padding: 12px 20px !important;
        position: fixed;
        z-index: 2;
        left: 0;
        right: 0;
        top: 0;
        background-color: white;
        box-shadow: 0 2px 6px 0 rgba(0,0,0,.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 72px;
        z-index: 3;
        width: 100%;
    }
}
@media only screen and (max-width: 429px) and (min-width: 412px) {

    .menu-wrapper {
        color: black;
        transform: translateY(-50%);
        font-size: 14px;
        display: contents;
    }

    .logo-wrapper, .logo-wrapper img {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    header {
        flex-wrap: wrap;
        width: 100%;
    }

    .WellableHeader-module_nav-bar_2rCuP {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 32px !important;
        font-size: 14px;
        margin-left: -1px !important;
    }

    .WellableHeader-module_vl-header_1V1sk {
        top: 72px;
        width: 100%;
        margin-top: 5px;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img + img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP1 > button {
        width: min-content;
        padding: 0 3vw;
    }

    .WellableHeader-module_nav-bar_2rCuP a.active:after {
        content: "";
        left: 0;
        right: 0;
        height: 2px;
        background-color: red;
        position: absolute;
        bottom: -14px !important;
    }

    body {
        margin: 0;
        padding: 30px 0 0 0px;
        font-family: 'Roboto', sans-serif;
    }

    header {
        padding: 12px 20px !important;
        position: fixed;
        z-index: 2;
        left: 0;
        right: 0;
        top: 0;
        background-color: white;
        box-shadow: 0 2px 6px 0 rgba(0,0,0,.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 72px;
        z-index: 3;
        width: 100%;
    }
}
@media only screen and (max-width: 530px) and (min-width: 430px) {

    .menu-wrapper {
        color: black;
        transform: translateY(-50%);
        font-size: 14px;
        display: contents;
    }

    .logo-wrapper, .logo-wrapper img {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    header {
        flex-wrap: wrap;
        width: 100%;
    }

    .WellableHeader-module_nav-bar_2rCuP {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 31px !important;
        font-size: 15px;
        margin-left: -5px !important;
    }

    .WellableHeader-module_vl-header_1V1sk {
        top: 72px;
        width: 100%;
        margin-top: 5px;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img + img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP1 > button {
        width: min-content;
        padding: 0 3vw;
    }

    .WellableHeader-module_nav-bar_2rCuP a.active:after {
        content: "";
        left: 0;
        right: 0;
        height: 2px;
        background-color: red;
        position: absolute;
        bottom: -15px !important;
    }

    body {
        margin: 0;
        padding: 30px 0 0 0px;
        font-family: 'Roboto', sans-serif;
    }

    header {
        padding: 12px 20px !important;
        position: fixed;
        z-index: 2;
        left: 0;
        right: 0;
        top: 0;
        background-color: white;
        box-shadow: 0 2px 6px 0 rgba(0,0,0,.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 72px;
        z-index: 3;
        width: 100%;
    }
}
@media only screen and (max-width: 760px) and (min-width: 531px) {

    .menu-wrapper {
        color: black;
        transform: translateY(-50%);
        font-size: 14px;
        display: contents;
    }

    .logo-wrapper, .logo-wrapper img {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    header {
        flex-wrap: wrap;
        width: 100%;
    }

    .WellableHeader-module_nav-bar_2rCuP {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px !important;
        font-size: 11px;
        margin-left: -50px !important;
    }

    .WellableHeader-module_vl-header_1V1sk {
        top: 72px;
        width: 100%;
        margin-top: 5px;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img + img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP1 > button {
        width: min-content;
        padding: 0 3vw;
    }

    .WellableHeader-module_nav-bar_2rCuP a.active:after {
        content: "";
        left: 0;
        right: 0;
        height: 2px;
        background-color: red;
        position: absolute;
        bottom: -17px !important;
    }

    body {
        margin: 0;
        padding: 30px 0 0 0px;
        font-family: 'Roboto', sans-serif;
    }

    header {
        padding: 12px 20px !important;
        position: fixed;
        z-index: 2;
        left: 0;
        right: 0;
        top: 0;
        background-color: white;
        box-shadow: 0 2px 6px 0 rgba(0,0,0,.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 72px;
        z-index: 3;
        width: 100%;
    }
}
@media only screen and (max-width: 819px) and (min-width: 761px) {
    .menu-wrapper {
        color: black;
        transform: translateY(-50%);
        font-size: 17px;
        display: contents;
    }

    .logo-wrapper, .logo-wrapper img {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    header {
        width: 100%;
    }

    .WellableHeader-module_nav-bar_2rCuP {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 25px !important;
        width: 100%;
    }

    .WellableHeader-module_vl-header_1V1sk {
        top: 72px;
        width: 100%;
        margin-top: 10px;
    }


    .WellableHeader-module_nav-bar_2rCuP a {
        font-size: 17px;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img + img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP a > img {
        display: none !important;
    }

    .WellableHeader-module_nav-bar_2rCuP1 > button {
        width: min-content;
        padding: 0 3vw;
    }

    .WellableHeader-module_nav-bar_2rCuP a.active:after {
        content: "";
        left: 0;
        right: 0;
        height: 2px;
        background-color: red;
        position: absolute;
        bottom: -21px !important;
    }

}
@media only screen and (max-width: 911px) and (min-width: 820px) {
}
@media only screen and (max-width: 1023px) and (min-width: 912px) {
}
@media only screen and (max-width: 1279px) and (min-width: 1024px) {
}
@media (min-width: 1280px) {*/

/*.WellableHeader-module_nav-bar_2rCuP {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 45px !important;
        width: 100%;
        margin-left: -1px !important;
        font-size: 18px;
    }

    .WellableHeader-module_nav-bar_2rCuP a.active:after {
        content: "";
        left: 0;
        right: 0;
        height: 2px;
        background-color: red;
        position: absolute;
        bottom: -14px !important;
    }

    .WellableHeader-module_vl-header_1V1sk {
        top: 72px;
        width: 100%;
        margin-top: 15px;
    }*/
/*}*/






















@charset "UTF-8";

:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

a.dropdown-toggle,
a.nav-link {
    outline: none
}

@-ms-viewport {
    width: device-width
}

article,
aside,
dialog,
figcaption,
figure,
hgroup,
main,
nav,
section {
    display: block
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #54534A;
    text-align: left;
    background-color: #fff
}

[tabindex="-1"]:focus {
    outline: 0 !important
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

abbr[title],
abbr[data-original-title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem
}

    ol ol,
    ul ul,
    ol ul,
    ul ol {
        margin-bottom: 0
    }

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote {
    margin: 0 0 1rem
}

dfn {
    font-style: italic
}

b,
strong {
    font-weight: bolder
}

small {
    font-size: 80%
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    color: #F47920;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

    a:hover {
        color: #F47920;
        text-decoration: underline
    }

    a:not([href]):not([tabindex]) {
        color: inherit;
        text-decoration: none
    }

        a:not([href]):not([tabindex]):hover,
        a:not([href]):not([tabindex]):focus {
            color: inherit;
            text-decoration: none
        }

        a:not([href]):not([tabindex]):focus {
            outline: 0
        }

pre,
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar
}

figure {
    margin: 0 0 1rem
}

img {
    vertical-align: middle;
    border-style: none
}

.disp_images img {
    vertical-align: middle;
    border-style: none;
    margin-bottom: 15px;
}

svg:not(:root) {
    overflow: hidden
}

table {
    border-collapse: collapse
}

caption {
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom
}

th {
    text-align: inherit
}

label {
    display: inline-block;
    margin-bottom: .5rem
}

button {
    border-radius: 0
}

    button:focus {
        outline: 1px dotted;
        outline: 5px auto -webkit-focus-ring-color
    }

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button
}

    button::-moz-focus-inner,
    [type="button"]::-moz-focus-inner,
    [type="reset"]::-moz-focus-inner,
    [type="submit"]::-moz-focus-inner {
        padding: 0;
        border-style: none
    }

input[type="radio"],
input[type="checkbox"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
    -webkit-appearance: listbox
}

textarea {
    overflow: auto;
    resize: vertical
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal
}

progress {
    vertical-align: baseline
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none
}

    [type="search"]::-webkit-search-cancel-button,
    [type="search"]::-webkit-search-decoration {
        -webkit-appearance: none
    }

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

output {
    display: inline-block
}

summary {
    display: list-item;
    cursor: pointer
}

template {
    display: none
}

[hidden] {
    display: none !important
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit
}

h1,
.h1 {
    font-size: 2.5rem
}

h2,
.h2 {
    font-size: 2rem
}

h3,
.h3 {
    font-size: 1.75rem
}

h4,
.h4 {
    font-size: 1.5rem
}

h5,
.h5 {
    font-size: 1.25rem
}

h6,
.h6 {
    font-size: 1rem
}

.lead {
    font-size: 1.25rem;
    font-weight: 300
}

.display-1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2
}

.display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2
}

.display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1)
}

small,
.small {
    font-size: 80%;
    font-weight: 400
}

mark,
.mark {
    padding: .2em;
    background-color: #fcf8e3
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    padding-left: 0;
    list-style: none
}

.list-inline-item {
    display: inline-block
}

    .list-inline-item:not(:last-child) {
        margin-right: .5rem
    }

.initialism {
    font-size: 90%;
    text-transform: uppercase
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem
}

.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #6c757d
}

    .blockquote-footer::before {
        content: "\2014 \00A0"
    }

.align-baseline {
    vertical-align: baseline !important
}

.align-top {
    vertical-align: top !important
}

.align-middle {
    vertical-align: middle !important
}

.align-bottom {
    vertical-align: bottom !important
}

.align-text-bottom {
    vertical-align: text-bottom !important
}

.align-text-top {
    vertical-align: text-top !important
}

@-webkit-keyframes bounce {
    from, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes bounce {
    from, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes flash {
    from, 50%, to {
        opacity: 1
    }

    25%, 75% {
        opacity: 0
    }
}

@keyframes flash {
    from, 50%, to {
        opacity: 1
    }

    25%, 75% {
        opacity: 0
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

@-webkit-keyframes shake {
    from, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

@keyframes shake {
    from, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes wobble {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes wobble {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes jello {
    from, 11.1%, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
        transform: skewX(0.39062deg) skewY(0.39062deg)
    }

    88.8% {
        -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
        transform: skewX(-0.19531deg) skewY(-0.19531deg)
    }
}

@keyframes jello {
    from, 11.1%, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
        transform: skewX(0.39062deg) skewY(0.39062deg)
    }

    88.8% {
        -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
        transform: skewX(-0.19531deg) skewY(-0.19531deg)
    }
}

.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.heartBeat {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

@-webkit-keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.bounceIn {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

.bounceOut {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    to {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    to {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

@-webkit-keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

.flipOutX {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
    from {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    from {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-name: hinge;
    animation-name: hinge
}

@-webkit-keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.jackInTheBox {
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox
}

@-webkit-keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

@keyframes rollOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
    from {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    from {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

    .animated.infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite
    }

    .animated.delay-1s {
        -webkit-animation-delay: 1s;
        animation-delay: 1s
    }

    .animated.delay-2s {
        -webkit-animation-delay: 2s;
        animation-delay: 2s
    }

    .animated.delay-3s {
        -webkit-animation-delay: 3s;
        animation-delay: 3s
    }

    .animated.delay-4s {
        -webkit-animation-delay: 4s;
        animation-delay: 4s
    }

    .animated.delay-5s {
        -webkit-animation-delay: 5s;
        animation-delay: 5s
    }

    .animated.fast {
        -webkit-animation-duration: 800ms;
        animation-duration: 800ms
    }

    .animated.faster {
        -webkit-animation-duration: 500ms;
        animation-duration: 500ms
    }

    .animated.slow {
        -webkit-animation-duration: 2s;
        animation-duration: 2s
    }

    .animated.slower {
        -webkit-animation-duration: 3s;
        animation-duration: 3s
    }

@media (prefers-reduced-motion) {
    .animated {
        -webkit-animation: unset !important;
        animation: unset !important;
        -webkit-transition: none !important;
        transition: none !important
    }
}

.bg-primary {
    background-color: #007bff !important
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
    background-color: #0062cc !important
}

.bg-secondary {
    background-color: #6c757d !important
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
    background-color: #545b62 !important
}

.bg-success {
    background-color: #28a745 !important
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
    background-color: #1e7e34 !important
}

.bg-info {
    background-color: #17a2b8 !important
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
    background-color: #117a8b !important
}

.bg-warning {
    background-color: #ffc107 !important
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
    background-color: #d39e00 !important
}

.bg-danger {
    background-color: #dc3545 !important
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
    background-color: #bd2130 !important
}

.bg-light {
    background-color: #f8f9fa !important
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
    background-color: #dae0e5 !important
}

.bg-dark {
    background-color: #343a40 !important
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
    background-color: #1d2124 !important
}

.bg-gradient-primary {
    background: #007bff -webkit-gradient(linear, left top, left bottom, from(#268fff), to(#007bff)) repeat-x !important;
    background: #007bff linear-gradient(180deg, #268fff, #007bff) repeat-x !important
}

.bg-gradient-secondary {
    background: #6c757d -webkit-gradient(linear, left top, left bottom, from(#828a91), to(#6c757d)) repeat-x !important;
    background: #6c757d linear-gradient(180deg, #828a91, #6c757d) repeat-x !important
}

.bg-gradient-success {
    background: #28a745 -webkit-gradient(linear, left top, left bottom, from(#48b461), to(#28a745)) repeat-x !important;
    background: #28a745 linear-gradient(180deg, #48b461, #28a745) repeat-x !important
}

.bg-gradient-info {
    background: #17a2b8 -webkit-gradient(linear, left top, left bottom, from(#3ab0c3), to(#17a2b8)) repeat-x !important;
    background: #17a2b8 linear-gradient(180deg, #3ab0c3, #17a2b8) repeat-x !important
}

.bg-gradient-warning {
    background: #ffc107 -webkit-gradient(linear, left top, left bottom, from(#ffca2c), to(#ffc107)) repeat-x !important;
    background: #ffc107 linear-gradient(180deg, #ffca2c, #ffc107) repeat-x !important
}

.bg-gradient-danger {
    background: #dc3545 -webkit-gradient(linear, left top, left bottom, from(#e15361), to(#dc3545)) repeat-x !important;
    background: #dc3545 linear-gradient(180deg, #e15361, #dc3545) repeat-x !important
}

.bg-gradient-light {
    background: #f8f9fa -webkit-gradient(linear, left top, left bottom, from(#f9fafb), to(#f8f9fa)) repeat-x !important;
    background: #f8f9fa linear-gradient(180deg, #f9fafb, #f8f9fa) repeat-x !important
}

.bg-gradient-dark {
    background: #343a40 -webkit-gradient(linear, left top, left bottom, from(#52585d), to(#343a40)) repeat-x !important;
    background: #343a40 linear-gradient(180deg, #52585d, #343a40) repeat-x !important
}

.bg-white {
    background-color: #fff !important
}

.bg-transparent {
    background-color: transparent !important
}

.border {
    border: 1px solid #dee2e6 !important
}

.border-top {
    border-top: 1px solid #dee2e6 !important
}

.border-right {
    border-right: 1px solid #dee2e6 !important
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important
}

.border-left {
    border-left: 1px solid #dee2e6 !important
}

.border-0 {
    border: 0 !important
}

.border-top-0 {
    border-top: 0 !important
}

.border-right-0 {
    border-right: 0 !important
}

.border-bottom-0 {
    border-bottom: 0 !important
}

.border-left-0 {
    border-left: 0 !important
}

.border-primary {
    border-color: #007bff !important
}

.border-secondary {
    border-color: #6c757d !important
}

.border-success {
    border-color: #28a745 !important
}

.border-info {
    border-color: #17a2b8 !important
}

.border-warning {
    border-color: #ffc107 !important
}

.border-danger {
    border-color: #dc3545 !important
}

.border-light {
    border-color: #f8f9fa !important
}

.border-dark {
    border-color: #343a40 !important
}

.border-white {
    border-color: #fff !important
}

.rounded {
    border-radius: 0.25rem !important
}

.rounded-top {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important
}

.rounded-right {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important
}

.rounded-bottom {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important
}

.rounded-left {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important
}

.rounded-circle {
    border-radius: 50% !important
}

.rounded-0 {
    border-radius: 0 !important
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.d-none {
    display: none !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
}

@media (min-width:576px) {
    .d-sm-none {
        display: none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-sm-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:768px) {
    .d-md-none {
        display: none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:992px) {
    .d-lg-none {
        display: none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-lg-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:1200px) {
    .d-xl-none {
        display: none !important
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-xl-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media print {
    .d-print-none {
        display: none !important
    }

    .d-print-inline {
        display: inline !important
    }

    .d-print-inline-block {
        display: inline-block !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-table {
        display: table !important
    }

    .d-print-table-row {
        display: table-row !important
    }

    .d-print-table-cell {
        display: table-cell !important
    }

    .d-print-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-print-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden
}

    .embed-responsive::before {
        display: block;
        content: ""
    }

    .embed-responsive .embed-responsive-item,
    .embed-responsive iframe,
    .embed-responsive embed,
    .embed-responsive object,
    .embed-responsive video {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0
    }

.embed-responsive-21by9::before {
    padding-top: 42.85714%
}

.embed-responsive-16by9::before {
    padding-top: 56.25%
}

.embed-responsive-4by3::before {
    padding-top: 75%
}

.embed-responsive-1by1::before {
    padding-top: 100%
}

.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important
}

.flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important
}

.flex-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important
}

.flex-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important
}

.flex-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important
}

.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important
}

.justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important
}

.align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important
}

.align-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important
}

.align-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important
}

@media (min-width:576px) {
    .flex-sm-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-sm-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-sm-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-sm-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-sm-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-sm-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-sm-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-sm-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-sm-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-sm-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width:768px) {
    .flex-md-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-md-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-md-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-md-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-md-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-md-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-md-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-md-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-md-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-md-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-md-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width:992px) {
    .flex-lg-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-lg-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-lg-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-lg-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-lg-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-lg-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-lg-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-lg-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-lg-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-lg-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width:1200px) {
    .flex-xl-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-xl-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-xl-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-xl-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-xl-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-xl-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-xl-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-xl-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-xl-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-xl-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-xl-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-xl-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-xl-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

.float-left {
    float: left !important
}

.float-right {
    float: right !important
}

.float-none {
    float: none !important
}

@media (min-width:576px) {
    .float-sm-left {
        float: left !important
    }

    .float-sm-right {
        float: right !important
    }

    .float-sm-none {
        float: none !important
    }
}

@media (min-width:768px) {
    .float-md-left {
        float: left !important
    }

    .float-md-right {
        float: right !important
    }

    .float-md-none {
        float: none !important
    }
}

@media (min-width:992px) {
    .float-lg-left {
        float: left !important
    }

    .float-lg-right {
        float: right !important
    }

    .float-lg-none {
        float: none !important
    }
}

@media (min-width:1200px) {
    .float-xl-left {
        float: left !important
    }

    .float-xl-right {
        float: right !important
    }

    .float-xl-none {
        float: none !important
    }
}

.position-static {
    position: static !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal
}

.shadow-sm {
    -webkit-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important
}

.shadow {
    -webkit-box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important
}

.shadow-lg {
    -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important
}

.shadow-none {
    -webkit-box-shadow: none !important;
    box-shadow: none !important
}
/*<--Taken this code Start  -->*/
.w-25 {
    width: 25% !important
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.h-25 {
    height: 25% !important
}

.h-50 {
    height: 50% !important
}

.h-75 {
    height: 75% !important
}

.h-100 {
    height: 100% !important
}

.h-auto {
    height: auto !important
}

.mw-100 {
    max-width: 100% !important
}

.mh-100 {
    max-height: 100% !important
}

.m-0 {
    margin: 0 !important
}

.mt-0,
.my-0 {
    margin-top: 0 !important
}

.mr-0,
.mx-0 {
    margin-right: 0 !important
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important
}

.ml-0,
.mx-0 {
    margin-left: 0 !important
}

.m-1 {
    margin: 0.25rem !important
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important
}

.ml-1,
.mx-1 {
    margin-left: 0.25rem !important
}

.m-2 {
    margin: 0.5rem !important
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important
}

.ml-2,
.mx-2 {
    margin-left: 0.5rem !important
}

.m-3 {
    margin: 1rem !important
}

.mt-3,
.my-3 {
    margin-top: 1rem !important
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.mt-5,
.my-5 {
    margin-top: 3rem !important
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important
}

.p-0 {
    padding: 0 !important
}

.pt-0,
.py-0 {
    padding-top: 0 !important
}

.pr-0,
.px-0 {
    padding-right: 0 !important
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important
}

.pl-0,
.px-0 {
    padding-left: 0 !important
}

.p-1 {
    padding: 0.25rem !important
}

.pt-1,
.py-1 {
    padding-top: 0.25rem !important
}

.pr-1,
.px-1 {
    padding-right: 0.25rem !important
}

.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important
}

.pl-1,
.px-1 {
    padding-left: 0.25rem !important
}

.p-2 {
    padding: 0.5rem !important
}

.pt-2,
.py-2 {
    padding-top: 0.5rem !important
}

.pr-2,
.px-2 {
    padding-right: 0.5rem !important
}

.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important
}

.pl-2,
.px-2 {
    padding-left: 0.5rem !important
}

.p-3 {
    padding: 1rem !important
}

.pt-3,
.py-3 {
    padding-top: 1rem !important
}

.pr-3,
.px-3 {
    padding-right: 1rem !important
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important
}

.pl-3,
.px-3 {
    padding-left: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.pt-5,
.py-5 {
    padding-top: 3rem !important
}

.pr-5,
.px-5 {
    padding-right: 3rem !important
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important
}

.pl-5,
.px-5 {
    padding-left: 3rem !important
}

.m-auto {
    margin: auto !important
}

.mt-auto,
.my-auto {
    margin-top: auto !important
}

.mr-auto,
.mx-auto {
    margin-right: auto !important
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important
}

.ml-auto,
.mx-auto {
    margin-left: auto !important
}

@media (min-width:576px) {
    .m-sm-0 {
        margin: 0 !important
    }

    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important
    }

    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important
    }

    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important
    }

    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important
    }

    .m-sm-1 {
        margin: 0.25rem !important
    }

    .mt-sm-1,
    .my-sm-1 {
        margin-top: 0.25rem !important
    }

    .mr-sm-1,
    .mx-sm-1 {
        margin-right: 0.25rem !important
    }

    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: 0.25rem !important
    }

    .ml-sm-1,
    .mx-sm-1 {
        margin-left: 0.25rem !important
    }

    .m-sm-2 {
        margin: 0.5rem !important
    }

    .mt-sm-2,
    .my-sm-2 {
        margin-top: 0.5rem !important
    }

    .mr-sm-2,
    .mx-sm-2 {
        margin-right: 0.5rem !important
    }

    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: 0.5rem !important
    }

    .ml-sm-2,
    .mx-sm-2 {
        margin-left: 0.5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important
    }

    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important
    }

    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important
    }

    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important
    }

    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important
    }

    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important
    }

    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important
    }

    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important
    }

    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important
    }

    .p-sm-0 {
        padding: 0 !important
    }

    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important
    }

    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important
    }

    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important
    }

    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important
    }

    .p-sm-1 {
        padding: 0.25rem !important
    }

    .pt-sm-1,
    .py-sm-1 {
        padding-top: 0.25rem !important
    }

    .pr-sm-1,
    .px-sm-1 {
        padding-right: 0.25rem !important
    }

    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: 0.25rem !important
    }

    .pl-sm-1,
    .px-sm-1 {
        padding-left: 0.25rem !important
    }

    .p-sm-2 {
        padding: 0.5rem !important
    }

    .pt-sm-2,
    .py-sm-2 {
        padding-top: 0.5rem !important
    }

    .pr-sm-2,
    .px-sm-2 {
        padding-right: 0.5rem !important
    }

    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: 0.5rem !important
    }

    .pl-sm-2,
    .px-sm-2 {
        padding-left: 0.5rem !important
    }

    .p-sm-3 {
        padding: 1rem !important
    }

    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important
    }

    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important
    }

    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important
    }

    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem !important
    }

    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important
    }

    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important
    }

    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem !important
    }

    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important
    }

    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important
    }

    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important
    }

    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important
    }

    .m-sm-auto {
        margin: auto !important
    }

    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important
    }

    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important
    }

    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important
    }

    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important
    }
}

@media (min-width:768px) {
    .m-md-0 {
        margin: 0 !important
    }

    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important
    }

    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important
    }

    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important
    }

    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important
    }

    .m-md-1 {
        margin: 0.25rem !important
    }

    .mt-md-1,
    .my-md-1 {
        margin-top: 0.25rem !important
    }

    .mr-md-1,
    .mx-md-1 {
        margin-right: 0.25rem !important
    }

    .mb-md-1,
    .my-md-1 {
        margin-bottom: 0.25rem !important
    }

    .ml-md-1,
    .mx-md-1 {
        margin-left: 0.25rem !important
    }

    .m-md-2 {
        margin: 0.5rem !important
    }

    .mt-md-2,
    .my-md-2 {
        margin-top: 0.5rem !important
    }

    .mr-md-2,
    .mx-md-2 {
        margin-right: 0.5rem !important
    }

    .mb-md-2,
    .my-md-2 {
        margin-bottom: 0.5rem !important
    }

    .ml-md-2,
    .mx-md-2 {
        margin-left: 0.5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important
    }

    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important
    }

    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important
    }

    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important
    }

    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important
    }

    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important
    }

    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important
    }

    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important
    }

    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important
    }

    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important
    }

    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important
    }

    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important
    }

    .p-md-1 {
        padding: 0.25rem !important
    }

    .pt-md-1,
    .py-md-1 {
        padding-top: 0.25rem !important
    }

    .pr-md-1,
    .px-md-1 {
        padding-right: 0.25rem !important
    }

    .pb-md-1,
    .py-md-1 {
        padding-bottom: 0.25rem !important
    }

    .pl-md-1,
    .px-md-1 {
        padding-left: 0.25rem !important
    }

    .p-md-2 {
        padding: 0.5rem !important
    }

    .pt-md-2,
    .py-md-2 {
        padding-top: 0.5rem !important
    }

    .pr-md-2,
    .px-md-2 {
        padding-right: 0.5rem !important
    }

    .pb-md-2,
    .py-md-2 {
        padding-bottom: 0.5rem !important
    }

    .pl-md-2,
    .px-md-2 {
        padding-left: 0.5rem !important
    }

    .p-md-3 {
        padding: 1rem !important
    }

    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important
    }

    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important
    }

    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important
    }

    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem !important
    }

    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important
    }

    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important
    }

    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem !important
    }

    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important
    }

    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important
    }

    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important
    }

    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important
    }

    .m-md-auto {
        margin: auto !important
    }

    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important
    }

    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important
    }

    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important
    }

    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important
    }
}

@media (min-width:992px) {
    .m-lg-0 {
        margin: 0 !important
    }

    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important
    }

    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important
    }

    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important
    }

    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important
    }

    .m-lg-1 {
        margin: 0.25rem !important
    }

    .mt-lg-1,
    .my-lg-1 {
        margin-top: 0.25rem !important
    }

    .mr-lg-1,
    .mx-lg-1 {
        margin-right: 0.25rem !important
    }

    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: 0.25rem !important
    }

    .ml-lg-1,
    .mx-lg-1 {
        margin-left: 0.25rem !important
    }

    .m-lg-2 {
        margin: 0.5rem !important
    }

    .mt-lg-2,
    .my-lg-2 {
        margin-top: 0.5rem !important
    }

    .mr-lg-2,
    .mx-lg-2 {
        margin-right: 0.5rem !important
    }

    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: 0.5rem !important
    }

    .ml-lg-2,
    .mx-lg-2 {
        margin-left: 0.5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important
    }

    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important
    }

    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important
    }

    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important
    }

    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important
    }

    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important
    }

    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important
    }

    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important
    }

    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important
    }

    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important
    }

    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important
    }

    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important
    }

    .p-lg-1 {
        padding: 0.25rem !important
    }

    .pt-lg-1,
    .py-lg-1 {
        padding-top: 0.25rem !important
    }

    .pr-lg-1,
    .px-lg-1 {
        padding-right: 0.25rem !important
    }

    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: 0.25rem !important
    }

    .pl-lg-1,
    .px-lg-1 {
        padding-left: 0.25rem !important
    }

    .p-lg-2 {
        padding: 0.5rem !important
    }

    .pt-lg-2,
    .py-lg-2 {
        padding-top: 0.5rem !important
    }

    .pr-lg-2,
    .px-lg-2 {
        padding-right: 0.5rem !important
    }

    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: 0.5rem !important
    }

    .pl-lg-2,
    .px-lg-2 {
        padding-left: 0.5rem !important
    }

    .p-lg-3 {
        padding: 1rem !important
    }

    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important
    }

    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important
    }

    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important
    }

    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem !important
    }

    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important
    }

    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important
    }

    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem !important
    }

    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important
    }

    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important
    }

    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important
    }

    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important
    }

    .m-lg-auto {
        margin: auto !important
    }

    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important
    }

    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important
    }

    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important
    }

    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important
    }
}

@media (min-width:1200px) {
    .m-xl-0 {
        margin: 0 !important
    }

    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important
    }

    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important
    }

    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important
    }

    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important
    }

    .m-xl-1 {
        margin: 0.25rem !important
    }

    .mt-xl-1,
    .my-xl-1 {
        margin-top: 0.25rem !important
    }

    .mr-xl-1,
    .mx-xl-1 {
        margin-right: 0.25rem !important
    }

    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: 0.25rem !important
    }

    .ml-xl-1,
    .mx-xl-1 {
        margin-left: 0.25rem !important
    }

    .m-xl-2 {
        margin: 0.5rem !important
    }

    .mt-xl-2,
    .my-xl-2 {
        margin-top: 0.5rem !important
    }

    .mr-xl-2,
    .mx-xl-2 {
        margin-right: 0.5rem !important
    }

    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: 0.5rem !important
    }

    .ml-xl-2,
    .mx-xl-2 {
        margin-left: 0.5rem !important
    }

    .m-xl-3 {
        margin: 1rem !important
    }

    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important
    }

    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important
    }

    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important
    }

    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem !important
    }

    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important
    }

    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important
    }

    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem !important
    }

    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important
    }

    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important
    }

    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important
    }

    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important
    }

    .p-xl-0 {
        padding: 0 !important
    }

    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important
    }

    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important
    }

    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important
    }

    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important
    }

    .p-xl-1 {
        padding: 0.25rem !important
    }

    .pt-xl-1,
    .py-xl-1 {
        padding-top: 0.25rem !important
    }

    .pr-xl-1,
    .px-xl-1 {
        padding-right: 0.25rem !important
    }

    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: 0.25rem !important
    }

    .pl-xl-1,
    .px-xl-1 {
        padding-left: 0.25rem !important
    }

    .p-xl-2 {
        padding: 0.5rem !important
    }

    .pt-xl-2,
    .py-xl-2 {
        padding-top: 0.5rem !important
    }

    .pr-xl-2,
    .px-xl-2 {
        padding-right: 0.5rem !important
    }

    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: 0.5rem !important
    }

    .pl-xl-2,
    .px-xl-2 {
        padding-left: 0.5rem !important
    }

    .p-xl-3 {
        padding: 1rem !important
    }

    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important
    }

    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important
    }

    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important
    }

    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem !important
    }

    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important
    }

    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important
    }

    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem !important
    }

    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important
    }

    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important
    }

    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important
    }

    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important
    }

    .m-xl-auto {
        margin: auto !important
    }

    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important
    }

    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important
    }

    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important
    }

    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important
    }
}
/*<--Taken this code End  -->*/
.text-justify {
    text-align: justify !important
}

.text-nowrap {
    white-space: nowrap !important
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.text-left {
    text-align: left !important
}

.text-right {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

@media (min-width:576px) {
    .text-sm-left {
        text-align: left !important
    }

    .text-sm-right {
        text-align: right !important
    }

    .text-sm-center {
        text-align: center !important
    }
}

@media (min-width:768px) {
    .text-md-left {
        text-align: left !important
    }

    .text-md-right {
        text-align: right !important
    }

    .text-md-center {
        text-align: center !important
    }
}

@media (min-width:992px) {
    .text-lg-left {
        text-align: left !important
    }

    .text-lg-right {
        text-align: right !important
    }

    .text-lg-center {
        text-align: center !important
    }
}

@media (min-width:1200px) {
    .text-xl-left {
        text-align: left !important
    }

    .text-xl-right {
        text-align: right !important
    }

    .text-xl-center {
        text-align: center !important
    }
}

.text-lowercase {
    text-transform: lowercase !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-capitalize {
    text-transform: capitalize !important
}

.font-weight-light {
    font-weight: 300 !important
}

.font-weight-normal {
    font-weight: 400 !important
}

.font-weight-bold {
    font-weight: 700 !important
}

.font-italic {
    font-style: italic !important
}

.text-white {
    color: #fff !important
}

.text-primary {
    color: #007bff !important
}

a.text-primary:hover,
a.text-primary:focus {
    color: #0062cc !important
}

.text-secondary {
    color: #6c757d !important
}

a.text-secondary:hover,
a.text-secondary:focus {
    color: #545b62 !important
}

.text-success {
    color: #28a745 !important
}

a.text-success:hover,
a.text-success:focus {
    color: #1e7e34 !important
}

.text-info {
    color: #17a2b8 !important
}

a.text-info:hover,
a.text-info:focus {
    color: #117a8b !important
}

.text-warning {
    color: #ffc107 !important
}

a.text-warning:hover,
a.text-warning:focus {
    color: #d39e00 !important
}

.text-danger {
    color: #dc3545 !important
}

a.text-danger:hover,
a.text-danger:focus {
    color: #bd2130 !important
}

.text-light {
    color: #f8f9fa !important
}

a.text-light:hover,
a.text-light:focus {
    color: #dae0e5 !important
}

.text-dark {
    color: #343a40 !important
}

a.text-dark:hover,
a.text-dark:focus {
    color: #1d2124 !important
}

.text-muted {
    color: #6c757d !important
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.visible {
    visibility: visible !important
}

.invisible {
    visibility: hidden !important
}

.richText {
    position: relative;
    border: #F4F4F4 solid 1px;
    color: #333;
    width: 100%
}

    .richText .richText-form {
        font-family: Calibri, Verdana, Helvetica, sans-serif
    }

        .richText .richText-form label {
            display: block;
            padding: 10px 15px
        }

        .richText .richText-form input[type="text"],
        .richText .richText-form input[type="file"],
        .richText .richText-form input[type="number"],
        .richText .richText-form select {
            padding: 10px 15px;
            border: #999 solid 1px;
            min-width: 200px;
            width: 100%
        }

        .richText .richText-form select {
            cursor: pointer
        }

        .richText .richText-form button {
            margin: 10px 0;
            padding: 10px 15px;
            background-color: #3498db;
            border: none;
            color: #FAFAFA;
            cursor: pointer;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border-radius: 4px
        }

    .richText .richText-toolbar {
        min-height: 40px
    }

        .richText .richText-toolbar .richText-length {
            font-family: Verdana, Helvetica, sans-serif;
            font-size: 13px;
            vertical-align: middle;
            line-height: 34px
        }

            .richText .richText-toolbar .richText-length .black {
                color: #000
            }

            .richText .richText-toolbar .richText-length .orange {
                color: orange
            }

            .richText .richText-toolbar .richText-length .red {
                color: red
            }

        .richText .richText-toolbar ul {
            padding-left: 0;
            padding-right: 0;
            margin-top: 0;
            margin-bottom: 0;
            min-width: 44px
        }

            .richText .richText-toolbar ul li {
                float: left;
                display: block;
                list-style: none
            }

                .richText .richText-toolbar ul li a {
                    color: #b8b8b5;
                    display: block;
                    padding: 10px 13px;
                    border-right: #f4f4f4 solid 1px;
                    text-align: center;
                    cursor: pointer;
                    -webkit-transition: background-color 0.4s;
                    transition: background-color 0.4s
                }

                    .richText .richText-toolbar ul li a .fa,
                    .richText .richText-toolbar ul li a .fas,
                    .richText .richText-toolbar ul li a .far,
                    .richText .richText-toolbar ul li a svg {
                        pointer-events: none
                    }

                    .richText .richText-toolbar ul li a .richText-dropdown-outer {
                        display: none;
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        background-color: rgba(0, 0, 0, .3);
                        cursor: default
                    }

                        .richText .richText-toolbar ul li a .richText-dropdown-outer .richText-dropdown {
                            position: relative;
                            display: block;
                            margin: 3% auto 0 auto;
                            background-color: #FAFAFA;
                            border: #EFEFEF solid 1px;
                            min-width: 100px;
                            width: 300px;
                            max-width: 90%;
                            -webkit-box-shadow: 0 0 5px 0 #333;
                            box-shadow: 0 0 5px 0 #333
                        }

                            .richText .richText-toolbar ul li a .richText-dropdown-outer .richText-dropdown .richText-dropdown-close {
                                position: absolute;
                                top: 0;
                                right: -23px;
                                background: #FFF;
                                color: #333;
                                cursor: pointer;
                                font-size: 20px;
                                text-align: center;
                                width: 20px
                            }

                        .richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown {
                            list-style: none
                        }

                            .richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li {
                                display: block;
                                float: none;
                                font-family: Calibri, Verdana, Helvetica, sans-serif
                            }

                                .richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li a {
                                    display: block;
                                    padding: 10px 15px;
                                    border-bottom: #EFEFEF solid 1px
                                }

                                    .richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li a:hover {
                                        background-color: #FFF
                                    }

                                .richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li.inline {
                                    margin: 10px 6px;
                                    float: left
                                }

                                    .richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li.inline a {
                                        display: block;
                                        padding: 0;
                                        margin: 0;
                                        border: none;
                                        border-radius: 50%;
                                        -webkit-box-shadow: 0 0 10px 0 #999;
                                        box-shadow: 0 0 10px 0 #999
                                    }

                                        .richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li.inline a span {
                                            display: block;
                                            height: 30px;
                                            width: 30px;
                                            border-radius: 50%
                                        }

                        .richText .richText-toolbar ul li a .richText-dropdown-outer div.richText-dropdown {
                            padding: 10px 15px
                        }

                    .richText .richText-toolbar ul li a:hover {
                        background-color: #FFF
                    }

                .richText .richText-toolbar ul li[data-disable="true"] {
                    opacity: .1
                }

                    .richText .richText-toolbar ul li[data-disable="true"] a {
                        cursor: default
                    }

                .richText .richText-toolbar ul li:not([data-disable="true"]).is-selected .richText-dropdown-outer {
                    display: block
                }

            .richText .richText-toolbar ul:after {
                display: block;
                content: "";
                clear: both
            }

        .richText .richText-toolbar:last-child {
            font-size: 12px;
            display: none
        }

        .richText .richText-toolbar:after {
            display: block;
            clear: both;
            content: ""
        }

    .richText .richText-editor {
        padding: 20px;
        background-color: #FFF;
        border-top: #F4F4F4 solid 1px;
        font-family: Calibri, Verdana, Helvetica, sans-serif;
        height: 300px;
        outline: none;
        overflow-y: auto;
        overflow-x: auto
    }

        .richText .richText-editor ul,
        .richText .richText-editor ol {
            margin: 10px 25px
        }

        .richText .richText-editor table {
            margin: 10px 0;
            border-spacing: 0;
            width: 100%
        }

            .richText .richText-editor table td,
            .richText .richText-editor table th {
                padding: 10px;
                border: #EFEFEF solid 1px
            }

        .richText .richText-editor:focus {
            border-left: #3498db solid 2px
        }

    .richText .richText-initial {
        margin-bottom: -4px;
        padding: 10px;
        background-color: #282828;
        border: none;
        color: #3F3;
        font-family: Monospace, Calibri, Verdana, Helvetica, sans-serif;
        max-width: 100%;
        min-width: 100%;
        width: 100%;
        min-height: 400px;
        height: 400px
    }

    .richText .richText-help {
        float: right;
        display: block;
        padding: 10px 15px;
        cursor: pointer
    }

    .richText .richText-undo,
    .richText .richText-redo {
        float: left;
        display: block;
        padding: 10px 15px;
        border-right: #EFEFEF solid 1px;
        cursor: pointer
    }

        .richText .richText-undo.is-disabled,
        .richText .richText-redo.is-disabled {
            opacity: .4
        }

    .richText .richText-help-popup a {
        color: #3498db;
        text-decoration: underline
    }

    .richText .richText-help-popup hr {
        margin: 10px auto 5px auto;
        border: none;
        border-top: #EFEFEF solid 1px
    }

    .richText .richText-list.list-rightclick {
        position: absolute;
        background-color: #FAFAFA;
        border-right: #EFEFEF solid 1px;
        border-bottom: #EFEFEF solid 1px
    }

        .richText .richText-list.list-rightclick li {
            padding: 5px 7px;
            cursor: pointer;
            list-style: none
        }

.img-fluid {
    max-width: 100%;
    height: auto
}

.img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    max-width: 100%;
    height: auto
}

.img-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block
}

    .img-bg:after {
        content: "";
        padding-top: 100%;
        display: block
    }

    .img-bg img {
        display: none
    }

.figure {
    display: inline-block
}

.figure-img {
    margin-bottom: .5rem;
    line-height: 1
}

.figure-caption {
    font-size: 90%;
    color: #6c757d
}

code,
kbd,
pre,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

code {
    font-size: 87.5%;
    color: #e83e8c;
    word-break: break-word
}

a > code {
    color: inherit
}

kbd {
    padding: .2rem .4rem;
    font-size: 87.5%;
    color: #fff;
    background-color: #212529;
    border-radius: .2rem
}

    kbd kbd {
        padding: 0;
        font-size: 100%;
        font-weight: 700
    }

pre {
    display: block;
    font-size: 87.5%;
    color: #212529
}

    pre code {
        font-size: inherit;
        color: inherit;
        word-break: normal
    }

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    /*max-width: 1250px !important;*/
}

@media (min-width:576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px;
        padding-top: 0px !important;
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1340px
    }
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}
/*<--Taken this code Start  -->*/
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}
/*<--Taken this code End  -->*/
.no-gutters {
    margin-right: 0;
    margin-left: 0
}

    .no-gutters > .col,
    .no-gutters > [class*="col-"] {
        padding-right: 0;
        padding-left: 0
    }
/*<--Taken this code Start  -->*/
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
}

.col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none
}

.col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%
}

.col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%
}

.col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%
}

.col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%
}

.col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%
}

.col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%
}

.col-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
}

.col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%
}

.col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%
}

.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1
}

.order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13
}

.order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3
}

.order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4
}

.order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5
}

.order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6
}

.order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7
}

.order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8
}

.order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9
}

.order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10
}

.order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11
}

.order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12
}

.offset-1 {
    margin-left: 8.33333%
}

.offset-2 {
    margin-left: 16.66667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333%
}

.offset-5 {
    margin-left: 41.66667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333%
}

.offset-8 {
    margin-left: 66.66667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333%
}

.offset-11 {
    margin-left: 91.66667%
}

@media (min-width:576px) {
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0%;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .col-sm-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .col-sm-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-sm-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-sm-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-sm-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-sm-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-sm-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-sm-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-sm-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-sm-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-sm-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-sm-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-sm-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .order-sm-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }

    .order-sm-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .order-sm-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .order-sm-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .order-sm-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .order-sm-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .order-sm-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .order-sm-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .order-sm-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .order-sm-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .order-sm-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .order-sm-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .order-sm-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .order-sm-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.33333%
    }

    .offset-sm-2 {
        margin-left: 16.66667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.33333%
    }

    .offset-sm-5 {
        margin-left: 41.66667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.33333%
    }

    .offset-sm-8 {
        margin-left: 66.66667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.33333%
    }

    .offset-sm-11 {
        margin-left: 91.66667%
    }
}

@media (min-width:768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0%;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .col-md-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .col-md-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-md-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-md-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-md-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-md-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-md-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-md-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-md-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .order-md-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }

    .order-md-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .order-md-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .order-md-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .order-md-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .order-md-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .order-md-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .order-md-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .order-md-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .order-md-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .order-md-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .order-md-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .order-md-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .order-md-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.33333%
    }

    .offset-md-2 {
        margin-left: 16.66667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.33333%
    }

    .offset-md-5 {
        margin-left: 41.66667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.33333%
    }

    .offset-md-8 {
        margin-left: 66.66667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.33333%
    }

    .offset-md-11 {
        margin-left: 91.66667%
    }
}

@media (min-width:992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0%;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .col-lg-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .col-lg-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-lg-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-lg-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-lg-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-lg-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-lg-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-lg-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .order-lg-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }

    .order-lg-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .order-lg-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .order-lg-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .order-lg-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .order-lg-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .order-lg-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .order-lg-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .order-lg-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .order-lg-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .order-lg-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .order-lg-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .order-lg-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .order-lg-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.33333%
    }

    .offset-lg-2 {
        margin-left: 16.66667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.33333%
    }

    .offset-lg-5 {
        margin-left: 41.66667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.33333%
    }

    .offset-lg-8 {
        margin-left: 66.66667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.33333%
    }

    .offset-lg-11 {
        margin-left: 91.66667%
    }
}

@media (min-width:1200px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0%;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .col-xl-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .col-xl-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-xl-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-xl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-xl-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-xl-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-xl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-xl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-xl-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-xl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-xl-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-xl-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-xl-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-xl-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .order-xl-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }

    .order-xl-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .order-xl-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .order-xl-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .order-xl-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .order-xl-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .order-xl-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .order-xl-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .order-xl-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .order-xl-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .order-xl-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .order-xl-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .order-xl-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .order-xl-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.33333%
    }

    .offset-xl-2 {
        margin-left: 16.66667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.33333%
    }

    .offset-xl-5 {
        margin-left: 41.66667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.33333%
    }

    .offset-xl-8 {
        margin-left: 66.66667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.33333%
    }

    .offset-xl-11 {
        margin-left: 91.66667%
    }
}
/*<--Taken this code End  -->*/
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent
}

    .table th,
    .table td {
        padding: .75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6
    }

    .table thead th {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6
    }

    .table tbody + tbody {
        border-top: 2px solid #dee2e6
    }

    .table .table {
        background-color: #fff
    }

.table-sm th,
.table-sm td {
    padding: .3rem
}

.table-bordered {
    border: 1px solid #dee2e6
}

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #dee2e6
    }

    .table-bordered thead th,
    .table-bordered thead td {
        border-bottom-width: 2px
    }

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
    border: 0
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, .05)
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, .075)
}

.table-primary,
.table-primary > th,
.table-primary > td {
    background-color: #b8daff
}

.table-hover .table-primary:hover {
    background-color: #9fcdff
}

    .table-hover .table-primary:hover > td,
    .table-hover .table-primary:hover > th {
        background-color: #9fcdff
    }

.table-secondary,
.table-secondary > th,
.table-secondary > td {
    background-color: #d6d8db
}

.table-hover .table-secondary:hover {
    background-color: #c8cbcf
}

    .table-hover .table-secondary:hover > td,
    .table-hover .table-secondary:hover > th {
        background-color: #c8cbcf
    }

.table-success,
.table-success > th,
.table-success > td {
    background-color: #c3e6cb
}

.table-hover .table-success:hover {
    background-color: #b1dfbb
}

    .table-hover .table-success:hover > td,
    .table-hover .table-success:hover > th {
        background-color: #b1dfbb
    }

.table-info,
.table-info > th,
.table-info > td {
    background-color: #bee5eb
}

.table-hover .table-info:hover {
    background-color: #abdde5
}

    .table-hover .table-info:hover > td,
    .table-hover .table-info:hover > th {
        background-color: #abdde5
    }

.table-warning,
.table-warning > th,
.table-warning > td {
    background-color: #ffeeba
}

.table-hover .table-warning:hover {
    background-color: #ffe8a1
}

    .table-hover .table-warning:hover > td,
    .table-hover .table-warning:hover > th {
        background-color: #ffe8a1
    }

.table-danger,
.table-danger > th,
.table-danger > td {
    background-color: #f5c6cb
}

.table-hover .table-danger:hover {
    background-color: #f1b0b7
}

    .table-hover .table-danger:hover > td,
    .table-hover .table-danger:hover > th {
        background-color: #f1b0b7
    }

.table-light,
.table-light > th,
.table-light > td {
    background-color: #fdfdfe
}

.table-hover .table-light:hover {
    background-color: #ececf6
}

    .table-hover .table-light:hover > td,
    .table-hover .table-light:hover > th {
        background-color: #ececf6
    }

.table-dark,
.table-dark > th,
.table-dark > td {
    background-color: #c6c8ca
}

.table-hover .table-dark:hover {
    background-color: #b9bbbe
}

    .table-hover .table-dark:hover > td,
    .table-hover .table-dark:hover > th {
        background-color: #b9bbbe
    }

.table-active,
.table-active > th,
.table-active > td {
    background-color: rgba(0, 0, 0, .075)
}

.table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, .075)
}

    .table-hover .table-active:hover > td,
    .table-hover .table-active:hover > th {
        background-color: rgba(0, 0, 0, .075)
    }

.table .thead-dark th {
    color: #fff;
    background-color: #212529;
    border-color: #32383e
}

.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6
}

.table-dark {
    color: #fff;
    background-color: #212529
}

    .table-dark th,
    .table-dark td,
    .table-dark thead th {
        border-color: #32383e
    }

    .table-dark.table-bordered {
        border: 0
    }

    .table-dark.table-striped tbody tr:nth-of-type(odd) {
        background-color: rgba(255, 255, 255, .05)
    }

    .table-dark.table-hover tbody tr:hover {
        background-color: rgba(255, 255, 255, .075)
    }

@media (max-width:575.98px) {
    .table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar
    }

        .table-responsive-sm > .table-bordered {
            border: 0
        }
}

@media (max-width:767.98px) {
    .table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar
    }

        .table-responsive-md > .table-bordered {
            border: 0
        }
}

@media (max-width:991.98px) {
    .table-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar
    }

        .table-responsive-lg > .table-bordered {
            border: 0
        }
}

@media (max-width:1199.98px) {
    .table-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar
    }

        .table-responsive-xl > .table-bordered {
            border: 0
        }
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar
}

    .table-responsive > .table-bordered {
        border: 0
    }
/*<--Taken this code Start  -->*/
.form-control,
.select2-selection--single,
.select2-selection--multiple,
.select2-search__field {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out
}

@media screen and (prefers-reduced-motion:reduce) {
    .form-control,
    .select2-selection--single,
    .select2-selection--multiple,
    .select2-search__field {
        -webkit-transition: none;
        transition: none
    }
}

.form-control::-ms-expand,
.select2-selection--single::-ms-expand,
.select2-selection--multiple::-ms-expand,
.select2-search__field::-ms-expand {
    background-color: transparent;
    border: 0
}

.form-control:focus,
.select2-selection--single:focus,
.select2-selection--multiple:focus,
.select2-search__field:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.form-control::-webkit-input-placeholder,
.select2-selection--single::-webkit-input-placeholder,
.select2-selection--multiple::-webkit-input-placeholder,
.select2-search__field::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::-moz-placeholder,
.select2-selection--single::-moz-placeholder,
.select2-selection--multiple::-moz-placeholder,
.select2-search__field::-moz-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:-ms-input-placeholder,
.select2-selection--single:-ms-input-placeholder,
.select2-selection--multiple:-ms-input-placeholder,
.select2-search__field:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::-ms-input-placeholder,
.select2-selection--single::-ms-input-placeholder,
.select2-selection--multiple::-ms-input-placeholder,
.select2-search__field::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::placeholder,
.select2-selection--single::placeholder,
.select2-selection--multiple::placeholder,
.select2-search__field::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled,
.select2-selection--single:disabled,
.select2-selection--multiple:disabled,
.select2-search__field:disabled,
.form-control[readonly],
.select2-selection--single[readonly],
.select2-selection--multiple[readonly],
.select2-search__field[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

select.form-control:not([size]):not([multiple]),
select.select2-selection--single:not([size]):not([multiple]),
select.select2-selection--multiple:not([size]):not([multiple]),
select.select2-search__field:not([size]):not([multiple]) {
    height: calc(2.25rem + 2px)
}

select.form-control:focus::-ms-value,
select.select2-selection--single:focus::-ms-value,
select.select2-selection--multiple:focus::-ms-value,
select.select2-search__field:focus::-ms-value {
    color: #495057;
    background-color: #fff
}

div.form-group > label.error {
    margin-left: auto !important;
    margin-right: auto !important;
    display: table;
    color: var(--danger)
}

.form-control-file,
.form-control-range {
    display: block;
    width: 100%
}

.col-form-label {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5
}

.col-form-label-lg {
    padding-top: calc(0.5rem + 1px);
    padding-bottom: calc(0.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5
}

.col-form-label-sm {
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);
    font-size: .875rem;
    line-height: 1.5
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding-top: .375rem;
    padding-bottom: .375rem;
    margin-bottom: 0;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0
}

    .form-control-plaintext.form-control-sm,
    .input-group-sm > .form-control-plaintext.form-control,
    .input-group-sm > .form-control-plaintext.select2-selection--single,
    .input-group-sm > .form-control-plaintext.select2-selection--multiple,
    .input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text,
    .input-group-sm > .input-group-append > .form-control-plaintext.input-group-text,
    .input-group-sm > .input-group-prepend > .form-control-plaintext.btn,
    .input-group-sm > .input-group-append > .form-control-plaintext.btn,
    select.form-control-sm + .select2-container .form-control-plaintext.select2-selection--single,
    select.form-control-sm + .select2-container .form-control-plaintext.select2-selection--multiple,
    .form-control-plaintext.select2-search__field,
    .form-control-plaintext.form-control-lg,
    .input-group-lg > .form-control-plaintext.form-control,
    .input-group-lg > .form-control-plaintext.select2-selection--single,
    .input-group-lg > .form-control-plaintext.select2-selection--multiple,
    .input-group-lg > .form-control-plaintext.select2-search__field,
    .input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text,
    .input-group-lg > .input-group-append > .form-control-plaintext.input-group-text,
    .input-group-lg > .input-group-prepend > .form-control-plaintext.btn,
    .input-group-lg > .input-group-append > .form-control-plaintext.btn,
    select.form-control-lg + .select2-container .form-control-plaintext.select2-selection--single,
    select.form-control-lg + .select2-container .form-control-plaintext.select2-selection--multiple {
        padding-right: 0;
        padding-left: 0
    }

.form-control-sm,
.input-group-sm > .form-control,
.input-group-sm > .select2-selection--single,
.input-group-sm > .select2-selection--multiple,
.input-group-sm > .select2-search__field,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn,
select.form-control-sm + .select2-container .select2-selection--single,
select.form-control-sm + .select2-container .select2-selection--multiple,
.select2-search__field {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

select.form-control-sm:not([size]):not([multiple]),
.input-group-sm > select.form-control:not([size]):not([multiple]),
.input-group-sm > select.select2-selection--single:not([size]):not([multiple]),
.input-group-sm > select.select2-selection--multiple:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]),
select.form-control-sm + .select2-container select.select2-selection--single:not([size]):not([multiple]),
select.form-control-sm + .select2-container select.select2-selection--multiple:not([size]):not([multiple]),
select.select2-search__field:not([size]):not([multiple]) {
    height: calc(1.8125rem + 2px)
}

.form-control-lg,
.input-group-lg > .form-control,
.input-group-lg > .select2-selection--single,
.input-group-lg > .select2-selection--multiple,
.input-group-lg > .select2-search__field,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn,
select.form-control-lg + .select2-container .select2-selection--single,
select.form-control-lg + .select2-container .select2-selection--multiple {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

select.form-control-lg:not([size]):not([multiple]),
.input-group-lg > select.form-control:not([size]):not([multiple]),
.input-group-lg > select.select2-selection--single:not([size]):not([multiple]),
.input-group-lg > select.select2-selection--multiple:not([size]):not([multiple]),
.input-group-lg > select.select2-search__field:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]),
select.form-control-lg + .select2-container select.select2-selection--single:not([size]):not([multiple]),
select.form-control-lg + .select2-container select.select2-selection--multiple:not([size]):not([multiple]) {
    height: calc(2.875rem + 2px)
}

.form-group {
    margin-bottom: 1rem
}

.form-text {
    display: block;
    margin-top: .25rem
}

.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px
}

    .form-row > .col,
    .form-row > [class*="col-"] {
        padding-right: 5px;
        padding-left: 5px
    }

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem
}

.form-check-input {
    position: absolute;
    margin-top: .3rem;
    margin-left: -1.25rem
}

    .form-check-input:disabled ~ .form-check-label {
        color: #6c757d
    }

.form-check-label {
    margin-bottom: 0
}

.form-check-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: .75rem
}

    .form-check-inline .form-check-input {
        position: static;
        margin-top: 0;
        margin-right: .3125rem;
        margin-left: 0
    }

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #28a745
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1;
    color: #fff;
    background-color: rgba(40, 167, 69, .8);
    border-radius: .2rem
}

.was-validated .form-control:valid,
.was-validated .select2-selection--single:valid,
.was-validated .select2-selection--multiple:valid,
.was-validated .select2-search__field:valid,
.form-control.is-valid,
.is-valid.select2-selection--single,
.is-valid.select2-selection--multiple,
.is-valid.select2-search__field,
.was-validated .custom-select:valid,
.custom-select.is-valid {
    border-color: #28a745
}

    .was-validated .form-control:valid:focus,
    .was-validated .select2-selection--single:valid:focus,
    .was-validated .select2-selection--multiple:valid:focus,
    .was-validated .select2-search__field:valid:focus,
    .form-control.is-valid:focus,
    .is-valid.select2-selection--single:focus,
    .is-valid.select2-selection--multiple:focus,
    .is-valid.select2-search__field:focus,
    .was-validated .custom-select:valid:focus,
    .custom-select.is-valid:focus {
        border-color: #28a745;
        -webkit-box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25);
        box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25)
    }

    .was-validated .form-control:valid ~ .valid-feedback,
    .was-validated .select2-selection--single:valid ~ .valid-feedback,
    .was-validated .select2-selection--multiple:valid ~ .valid-feedback,
    .was-validated .select2-search__field:valid ~ .valid-feedback,
    .was-validated .form-control:valid ~ .valid-tooltip,
    .was-validated .select2-selection--single:valid ~ .valid-tooltip,
    .was-validated .select2-selection--multiple:valid ~ .valid-tooltip,
    .was-validated .select2-search__field:valid ~ .valid-tooltip,
    .form-control.is-valid ~ .valid-feedback,
    .is-valid.select2-selection--single ~ .valid-feedback,
    .is-valid.select2-selection--multiple ~ .valid-feedback,
    .is-valid.select2-search__field ~ .valid-feedback,
    .form-control.is-valid ~ .valid-tooltip,
    .is-valid.select2-selection--single ~ .valid-tooltip,
    .is-valid.select2-selection--multiple ~ .valid-tooltip,
    .is-valid.select2-search__field ~ .valid-tooltip,
    .was-validated .custom-select:valid ~ .valid-feedback,
    .was-validated .custom-select:valid ~ .valid-tooltip,
    .custom-select.is-valid ~ .valid-feedback,
    .custom-select.is-valid ~ .valid-tooltip {
        display: block
    }

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
    color: #28a745
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip,
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
    display: block
}

.was-validated .custom-control-input:valid ~ .custom-control-label,
.custom-control-input.is-valid ~ .custom-control-label {
    color: #28a745
}

    .was-validated .custom-control-input:valid ~ .custom-control-label::before,
    .custom-control-input.is-valid ~ .custom-control-label::before {
        background-color: #71dd8a
    }

.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip,
.custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
    display: block
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
    background: #34ce57 -webkit-gradient(linear, left top, left bottom, from(#52d670), to(#34ce57)) repeat-x;
    background: #34ce57 linear-gradient(180deg, #52d670, #34ce57) repeat-x
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
.custom-control-input.is-valid:focus ~ .custom-control-label::before {
    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(40, 167, 69, .25);
    box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(40, 167, 69, .25)
}

.was-validated .file-ui-input:valid ~ .file-ui-label,
.file-ui-input.is-valid ~ .file-ui-label {
    border-color: #28a745
}

    .was-validated .file-ui-input:valid ~ .file-ui-label::before,
    .file-ui-input.is-valid ~ .file-ui-label::before {
        border-color: inherit
    }

.was-validated .file-ui-input:valid ~ .valid-feedback,
.was-validated .file-ui-input:valid ~ .valid-tooltip,
.file-ui-input.is-valid ~ .valid-feedback,
.file-ui-input.is-valid ~ .valid-tooltip {
    display: block
}

.was-validated .file-ui-input:valid:focus ~ .file-ui-label,
.file-ui-input.is-valid:focus ~ .file-ui-label {
    -webkit-box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25);
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25)
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1;
    color: #fff;
    background-color: rgba(220, 53, 69, .8);
    border-radius: .2rem
}

.was-validated .form-control:invalid,
.was-validated .select2-selection--single:invalid,
.was-validated .select2-selection--multiple:invalid,
.was-validated .select2-search__field:invalid,
.form-control.is-invalid,
.is-invalid.select2-selection--single,
.is-invalid.select2-selection--multiple,
.is-invalid.select2-search__field,
.was-validated .custom-select:invalid,
.custom-select.is-invalid {
    border-color: #dc3545
}

    .was-validated .form-control:invalid:focus,
    .was-validated .select2-selection--single:invalid:focus,
    .was-validated .select2-selection--multiple:invalid:focus,
    .was-validated .select2-search__field:invalid:focus,
    .form-control.is-invalid:focus,
    .is-invalid.select2-selection--single:focus,
    .is-invalid.select2-selection--multiple:focus,
    .is-invalid.select2-search__field:focus,
    .was-validated .custom-select:invalid:focus,
    .custom-select.is-invalid:focus {
        border-color: #dc3545;
        -webkit-box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25);
        box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25)
    }

    .was-validated .form-control:invalid ~ .invalid-feedback,
    .was-validated .select2-selection--single:invalid ~ .invalid-feedback,
    .was-validated .select2-selection--multiple:invalid ~ .invalid-feedback,
    .was-validated .select2-search__field:invalid ~ .invalid-feedback,
    .was-validated .form-control:invalid ~ .invalid-tooltip,
    .was-validated .select2-selection--single:invalid ~ .invalid-tooltip,
    .was-validated .select2-selection--multiple:invalid ~ .invalid-tooltip,
    .was-validated .select2-search__field:invalid ~ .invalid-tooltip,
    .form-control.is-invalid ~ .invalid-feedback,
    .is-invalid.select2-selection--single ~ .invalid-feedback,
    .is-invalid.select2-selection--multiple ~ .invalid-feedback,
    .is-invalid.select2-search__field ~ .invalid-feedback,
    .form-control.is-invalid ~ .invalid-tooltip,
    .is-invalid.select2-selection--single ~ .invalid-tooltip,
    .is-invalid.select2-selection--multiple ~ .invalid-tooltip,
    .is-invalid.select2-search__field ~ .invalid-tooltip,
    .was-validated .custom-select:invalid ~ .invalid-feedback,
    .was-validated .custom-select:invalid ~ .invalid-tooltip,
    .custom-select.is-invalid ~ .invalid-feedback,
    .custom-select.is-invalid ~ .invalid-tooltip {
        display: block
    }

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
    color: #dc3545
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip,
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
    display: block
}

.was-validated .custom-control-input:invalid ~ .custom-control-label,
.custom-control-input.is-invalid ~ .custom-control-label {
    color: #dc3545
}

    .was-validated .custom-control-input:invalid ~ .custom-control-label::before,
    .custom-control-input.is-invalid ~ .custom-control-label::before {
        background-color: #efa2a9
    }

.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip,
.custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
    display: block
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
    background: #e4606d -webkit-gradient(linear, left top, left bottom, from(#e87883), to(#e4606d)) repeat-x;
    background: #e4606d linear-gradient(180deg, #e87883, #e4606d) repeat-x
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(220, 53, 69, .25);
    box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(220, 53, 69, .25)
}

.was-validated .file-ui-input:invalid ~ .file-ui-label,
.file-ui-input.is-invalid ~ .file-ui-label {
    border-color: #dc3545
}

    .was-validated .file-ui-input:invalid ~ .file-ui-label::before,
    .file-ui-input.is-invalid ~ .file-ui-label::before {
        border-color: inherit
    }

.was-validated .file-ui-input:invalid ~ .invalid-feedback,
.was-validated .file-ui-input:invalid ~ .invalid-tooltip,
.file-ui-input.is-invalid ~ .invalid-feedback,
.file-ui-input.is-invalid ~ .invalid-tooltip {
    display: block
}

.was-validated .file-ui-input:invalid:focus ~ .file-ui-label,
.file-ui-input.is-invalid:focus ~ .file-ui-label {
    -webkit-box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25);
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25)
}

.form-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

    .form-inline .form-check {
        width: 100%
    }

@media (min-width:576px) {
    .form-inline label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0
    }

    .form-inline .form-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0
    }

    .form-inline .form-control,
    .form-inline .select2-selection--single,
    .form-inline .select2-selection--multiple,
    .form-inline .select2-search__field {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .form-inline .form-control-plaintext {
        display: inline-block
    }

    .form-inline .input-group,
    .form-inline .custom-select {
        width: auto
    }

    .form-inline .form-check {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: auto;
        padding-left: 0
    }

    .form-inline .form-check-input {
        position: relative;
        margin-top: 0;
        margin-right: .25rem;
        margin-left: 0
    }

    .form-inline .custom-control {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .form-inline .custom-control-label {
        margin-bottom: 0
    }
}

@font-face {
    font-family: 'Roboto Cn';
    src: url(../fonts/Roboto-BoldCondensed.woff2) format("woff2"), url(../fonts/Roboto-BoldCondensed.woff) format("woff"), url(../fonts/Roboto-BoldCondensed.ttf) format("truetype");
    font-weight: 700;
    font-style: normal
}
@font-face {
    font-family: 'Roboto Condensed';
    src: url(../fonts/RobotoCondensed-Regular.woff2) format("woff2"), url(../fonts/RobotoCondensed-Regular.woff) format("woff"), url(../fonts/RobotoCondensed-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}


@font-face {
    font-family: 'ElegantIcons';
    src: url(../fonts/ElegantIcons.eot);
    src: url("../fonts/ElegantIcons.eot?#iefix") format("embedded-opentype"), url(../fonts/ElegantIcons.woff) format("woff"), url(../fonts/ElegantIcons.ttf) format("truetype"), url("../fonts/ElegantIcons.svg#ElegantIcons") format("svg")
}

[data-icon]:before {
    font-family: 'ElegantIcons';
    content: attr(data-icon);
    speak: none;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.arrow_up,
.arrow_down,
.arrow_left,
.arrow_right,
.arrow_left-up,
.arrow_right-up,
.arrow_right-down,
.arrow_left-down,
.arrow-up-down,
.arrow_up-down_alt,
.arrow_left-right_alt,
.arrow_left-right,
.arrow_expand_alt2,
.arrow_expand_alt,
.arrow_condense,
.arrow_expand,
.arrow_move,
.arrow_carrot-up,
.arrow_carrot-down,
.arrow_carrot-left,
.arrow_carrot-right,
.arrow_carrot-2up,
.arrow_carrot-2down,
.arrow_carrot-2left,
.arrow_carrot-2right,
.arrow_carrot-up_alt2,
.arrow_carrot-down_alt2,
.arrow_carrot-left_alt2,
.arrow_carrot-right_alt2,
.arrow_carrot-2up_alt2,
.arrow_carrot-2down_alt2,
.arrow_carrot-2left_alt2,
.arrow_carrot-2right_alt2,
.arrow_triangle-up,
.arrow_triangle-down,
.arrow_triangle-left,
.arrow_triangle-right,
.arrow_triangle-up_alt2,
.arrow_triangle-down_alt2,
.arrow_triangle-left_alt2,
.arrow_triangle-right_alt2,
.arrow_back,
.icon_minus-06,
.icon_plus,
.icon_close,
.icon_check,
.icon_minus_alt2,
.icon_plus_alt2,
.icon_close_alt2,
.icon_check_alt2,
.icon_zoom-out_alt,
.icon_zoom-in_alt,
.icon_search,
.icon_box-empty,
.icon_box-selected,
.icon_minus-box,
.icon_plus-box,
.icon_box-checked,
.icon_circle-empty,
.icon_circle-slelected,
.icon_stop_alt2,
.icon_stop,
.icon_pause_alt2,
.icon_pause,
.icon_menu,
.icon_menu-square_alt2,
.icon_menu-circle_alt2,
.icon_ul,
.icon_ol,
.icon_adjust-horiz,
.icon_adjust-vert,
.icon_document_alt,
.icon_documents_alt,
.icon_pencil,
.icon_pencil-edit_alt,
.icon_pencil-edit,
.icon_folder-alt,
.icon_folder-open_alt,
.icon_folder-add_alt,
.icon_info_alt,
.icon_error-oct_alt,
.icon_error-circle_alt,
.icon_error-triangle_alt,
.icon_question_alt2,
.icon_question,
.icon_comment_alt,
.icon_chat_alt,
.icon_vol-mute_alt,
.icon_volume-low_alt,
.icon_volume-high_alt,
.icon_quotations,
.icon_quotations_alt2,
.icon_clock_alt,
.icon_lock_alt,
.icon_lock-open_alt,
.icon_key_alt,
.icon_cloud_alt,
.icon_cloud-upload_alt,
.icon_cloud-download_alt,
.icon_image,
.icon_images,
.icon_lightbulb_alt,
.icon_gift_alt,
.icon_house_alt,
.icon_genius,
.icon_mobile,
.icon_tablet,
.icon_laptop,
.icon_desktop,
.icon_camera_alt,
.icon_mail_alt,
.icon_cone_alt,
.icon_ribbon_alt,
.icon_bag_alt,
.icon_creditcard,
.icon_cart_alt,
.icon_paperclip,
.icon_tag_alt,
.icon_tags_alt,
.icon_trash_alt,
.icon_cursor_alt,
.icon_mic_alt,
.icon_compass_alt,
.icon_pin_alt,
.icon_pushpin_alt,
.icon_map_alt,
.icon_drawer_alt,
.icon_toolbox_alt,
.icon_book_alt,
.icon_calendar,
.icon_film,
.icon_table,
.icon_contacts_alt,
.icon_headphones,
.icon_lifesaver,
.icon_piechart,
.icon_refresh,
.icon_link_alt,
.icon_link,
.icon_loading,
.icon_blocked,
.icon_archive_alt,
.icon_heart_alt,
.icon_star_alt,
.icon_star-half_alt,
.icon_star,
.icon_star-half,
.icon_tools,
.icon_tool,
.icon_cog,
.icon_cogs,
.arrow_up_alt,
.arrow_down_alt,
.arrow_left_alt,
.arrow_right_alt,
.arrow_left-up_alt,
.arrow_right-up_alt,
.arrow_right-down_alt,
.arrow_left-down_alt,
.arrow_condense_alt,
.arrow_expand_alt3,
.arrow_carrot_up_alt,
.arrow_carrot-down_alt,
.arrow_carrot-left_alt,
.arrow_carrot-right_alt,
.arrow_carrot-2up_alt,
.arrow_carrot-2dwnn_alt,
.arrow_carrot-2left_alt,
.arrow_carrot-2right_alt,
.arrow_triangle-up_alt,
.arrow_triangle-down_alt,
.arrow_triangle-left_alt,
.arrow_triangle-right_alt,
.icon_minus_alt,
.icon_plus_alt,
.icon_close_alt,
.icon_check_alt,
.icon_zoom-out,
.icon_zoom-in,
.icon_stop_alt,
.icon_menu-square_alt,
.icon_menu-circle_alt,
.icon_document,
.icon_documents,
.icon_pencil_alt,
.icon_folder,
.icon_folder-open,
.icon_folder-add,
.icon_folder_upload,
.icon_folder_download,
.icon_info,
.icon_error-circle,
.icon_error-oct,
.icon_error-triangle,
.icon_question_alt,
.icon_comment,
.icon_chat,
.icon_vol-mute,
.icon_volume-low,
.icon_volume-high,
.icon_quotations_alt,
.icon_clock,
.icon_lock,
.icon_lock-open,
.icon_key,
.icon_cloud,
.icon_cloud-upload,
.icon_cloud-download,
.icon_lightbulb,
.icon_gift,
.icon_house,
.icon_camera,
.icon_mail,
.icon_cone,
.icon_ribbon,
.icon_bag,
.icon_cart,
.icon_tag,
.icon_tags,
.icon_trash,
.icon_cursor,
.icon_mic,
.icon_compass,
.icon_pin,
.icon_pushpin,
.icon_map,
.icon_drawer,
.icon_toolbox,
.icon_book,
.icon_contacts,
.icon_archive,
.icon_heart,
.icon_profile,
.icon_group,
.icon_grid-2x2,
.icon_grid-3x3,
.icon_music,
.icon_pause_alt,
.icon_phone,
.icon_upload,
.icon_download,
.social_facebook,
.social_twitter,
.social_pinterest,
.social_googleplus,
.social_tumblr,
.social_tumbleupon,
.social_wordpress,
.social_instagram,
.social_dribbble,
.social_vimeo,
.social_linkedin,
.social_rss,
.social_deviantart,
.social_share,
.social_myspace,
.social_skype,
.social_youtube,
.social_picassa,
.social_googledrive,
.social_flickr,
.social_blogger,
.social_spotify,
.social_delicious,
.social_facebook_circle,
.social_twitter_circle,
.social_pinterest_circle,
.social_googleplus_circle,
.social_tumblr_circle,
.social_stumbleupon_circle,
.social_wordpress_circle,
.social_instagram_circle,
.social_dribbble_circle,
.social_vimeo_circle,
.social_linkedin_circle,
.social_rss_circle,
.social_deviantart_circle,
.social_share_circle,
.social_myspace_circle,
.social_skype_circle,
.social_youtube_circle,
.social_picassa_circle,
.social_googledrive_alt2,
.social_flickr_circle,
.social_blogger_circle,
.social_spotify_circle,
.social_delicious_circle,
.social_facebook_square,
.social_twitter_square,
.social_pinterest_square,
.social_googleplus_square,
.social_tumblr_square,
.social_stumbleupon_square,
.social_wordpress_square,
.social_instagram_square,
.social_dribbble_square,
.social_vimeo_square,
.social_linkedin_square,
.social_rss_square,
.social_deviantart_square,
.social_share_square,
.social_myspace_square,
.social_skype_square,
.social_youtube_square,
.social_picassa_square,
.social_googledrive_square,
.social_flickr_square,
.social_blogger_square,
.social_spotify_square,
.social_delicious_square,
.icon_printer,
.icon_calulator,
.icon_building,
.icon_floppy,
.icon_drive,
.icon_search-2,
.icon_id,
.icon_id-2,
.icon_puzzle,
.icon_like,
.icon_dislike,
.icon_mug,
.icon_currency,
.icon_wallet,
.icon_pens,
.icon_easel,
.icon_flowchart,
.icon_datareport,
.icon_briefcase,
.icon_shield,
.icon_percent,
.icon_globe,
.icon_globe-2,
.icon_target,
.icon_hourglass,
.icon_balance,
.icon_rook,
.icon_printer-alt,
.icon_calculator_alt,
.icon_building_alt,
.icon_floppy_alt,
.icon_drive_alt,
.icon_search_alt,
.icon_id_alt,
.icon_id-2_alt,
.icon_puzzle_alt,
.icon_like_alt,
.icon_dislike_alt,
.icon_mug_alt,
.icon_currency_alt,
.icon_wallet_alt,
.icon_pens_alt,
.icon_easel_alt,
.icon_flowchart_alt,
.icon_datareport_alt,
.icon_briefcase_alt,
.icon_shield_alt,
.icon_percent_alt,
.icon_globe_alt,
.icon_clipboard {
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased
}

    .arrow_up:before {
        content: "\21"
    }

    .arrow_down:before {
        content: "\22"
    }

    .arrow_left:before {
        content: "\23"
    }

    .arrow_right:before {
        content: "\24"
    }

    .arrow_left-up:before {
        content: "\25"
    }

    .arrow_right-up:before {
        content: "\26"
    }

    .arrow_right-down:before {
        content: "\27"
    }

    .arrow_left-down:before {
        content: "\28"
    }

    .arrow-up-down:before {
        content: "\29"
    }

    .arrow_up-down_alt:before {
        content: "\2a"
    }

    .arrow_left-right_alt:before {
        content: "\2b"
    }

    .arrow_left-right:before {
        content: "\2c"
    }

    .arrow_expand_alt2:before {
        content: "\2d"
    }

    .arrow_expand_alt:before {
        content: "\2e"
    }

    .arrow_condense:before {
        content: "\2f"
    }

    .arrow_expand:before {
        content: "\30"
    }

    .arrow_move:before {
        content: "\31"
    }

    .arrow_carrot-up:before {
        content: "\32"
    }

    .arrow_carrot-down:before {
        content: "\33"
    }

    .arrow_carrot-left:before {
        content: "\34"
    }

    .arrow_carrot-right:before {
        content: "\35"
    }

    .arrow_carrot-2up:before {
        content: "\36"
    }

    .arrow_carrot-2down:before {
        content: "\37"
    }

    .arrow_carrot-2left:before {
        content: "\38"
    }

    .arrow_carrot-2right:before {
        content: "\39"
    }

    .arrow_carrot-up_alt2:before {
        content: "\3a"
    }

    .arrow_carrot-down_alt2:before {
        content: "\3b"
    }

    .arrow_carrot-left_alt2:before {
        content: "\3c"
    }

    .arrow_carrot-right_alt2:before {
        content: "\3d"
    }

    .arrow_carrot-2up_alt2:before {
        content: "\3e"
    }

    .arrow_carrot-2down_alt2:before {
        content: "\3f"
    }

    .arrow_carrot-2left_alt2:before {
        content: "\40"
    }

    .arrow_carrot-2right_alt2:before {
        content: "\41"
    }

    .arrow_triangle-up:before {
        content: "\42"
    }

    .arrow_triangle-down:before {
        content: "\43"
    }

    .arrow_triangle-left:before {
        content: "\44"
    }

    .arrow_triangle-right:before {
        content: "\45"
    }

    .arrow_triangle-up_alt2:before {
        content: "\46"
    }

    .arrow_triangle-down_alt2:before {
        content: "\47"
    }

    .arrow_triangle-left_alt2:before {
        content: "\48"
    }

    .arrow_triangle-right_alt2:before {
        content: "\49"
    }

    .arrow_back:before {
        content: "\4a"
    }

    .icon_minus-06:before {
        content: "\4b"
    }

    .icon_plus:before {
        content: "\4c"
    }

    .icon_close:before {
        content: "\4d"
    }

    .icon_check:before {
        content: "\4e"
    }

    .icon_minus_alt2:before {
        content: "\4f"
    }

    .icon_plus_alt2:before {
        content: "\50"
    }

    .icon_close_alt2:before {
        content: "\51"
    }

    .icon_check_alt2:before {
        content: "\52"
    }

    .icon_zoom-out_alt:before {
        content: "\53"
    }

    .icon_zoom-in_alt:before {
        content: "\54"
    }

    .icon_search:before {
        content: "\55"
    }

    .icon_box-empty:before {
        content: "\56"
    }

    .icon_box-selected:before {
        content: "\57"
    }

    .icon_minus-box:before {
        content: "\58"
    }

    .icon_plus-box:before {
        content: "\59"
    }

    .icon_box-checked:before {
        content: "\5a"
    }

    .icon_circle-empty:before {
        content: "\5b"
    }

    .icon_circle-slelected:before {
        content: "\5c"
    }

    .icon_stop_alt2:before {
        content: "\5d"
    }

    .icon_stop:before {
        content: "\5e"
    }

    .icon_pause_alt2:before {
        content: "\5f"
    }

    .icon_pause:before {
        content: "\60"
    }

    .icon_menu:before {
        content: "\61"
    }

    .icon_menu-square_alt2:before {
        content: "\62"
    }

    .icon_menu-circle_alt2:before {
        content: "\63"
    }

    .icon_ul:before {
        content: "\64"
    }

    .icon_ol:before {
        content: "\65"
    }

    .icon_adjust-horiz:before {
        content: "\66"
    }

    .icon_adjust-vert:before {
        content: "\67"
    }

    .icon_document_alt:before {
        content: "\68"
    }

    .icon_documents_alt:before {
        content: "\69"
    }

    .icon_pencil:before {
        content: "\6a"
    }

    .icon_pencil-edit_alt:before {
        content: "\6b"
    }

    .icon_pencil-edit:before {
        content: "\6c"
    }

    .icon_folder-alt:before {
        content: "\6d"
    }

    .icon_folder-open_alt:before {
        content: "\6e"
    }

    .icon_folder-add_alt:before {
        content: "\6f"
    }

    .icon_info_alt:before {
        content: "\70"
    }

    .icon_error-oct_alt:before {
        content: "\71"
    }

    .icon_error-circle_alt:before {
        content: "\72"
    }

    .icon_error-triangle_alt:before {
        content: "\73"
    }

    .icon_question_alt2:before {
        content: "\74"
    }

    .icon_question:before {
        content: "\75"
    }

    .icon_comment_alt:before {
        content: "\76"
    }

    .icon_chat_alt:before {
        content: "\77"
    }

    .icon_vol-mute_alt:before {
        content: "\78"
    }

    .icon_volume-low_alt:before {
        content: "\79"
    }

    .icon_volume-high_alt:before {
        content: "\7a"
    }

    .icon_quotations:before {
        content: "\7b"
    }

    .icon_quotations_alt2:before {
        content: "\7c"
    }

    .icon_clock_alt:before {
        content: "\7d"
    }

    .icon_lock_alt:before {
        content: "\7e"
    }

    .icon_lock-open_alt:before {
        content: "\e000"
    }

    .icon_key_alt:before {
        content: "\e001"
    }

    .icon_cloud_alt:before {
        content: "\e002"
    }

    .icon_cloud-upload_alt:before {
        content: "\e003"
    }

    .icon_cloud-download_alt:before {
        content: "\e004"
    }

    .icon_image:before {
        content: "\e005"
    }

    .icon_images:before {
        content: "\e006"
    }

    .icon_lightbulb_alt:before {
        content: "\e007"
    }

    .icon_gift_alt:before {
        content: "\e008"
    }

    .icon_house_alt:before {
        content: "\e009"
    }

    .icon_genius:before {
        content: "\e00a"
    }

    .icon_mobile:before {
        content: "\e00b"
    }

    .icon_tablet:before {
        content: "\e00c"
    }

    .icon_laptop:before {
        content: "\e00d"
    }

    .icon_desktop:before {
        content: "\e00e"
    }

    .icon_camera_alt:before {
        content: "\e00f"
    }

    .icon_mail_alt:before {
        content: "\e010"
    }

    .icon_cone_alt:before {
        content: "\e011"
    }

    .icon_ribbon_alt:before {
        content: "\e012"
    }

    .icon_bag_alt:before {
        content: "\e013"
    }

    .icon_creditcard:before {
        content: "\e014"
    }

    .icon_cart_alt:before {
        content: "\e015"
    }

    .icon_paperclip:before {
        content: "\e016"
    }

    .icon_tag_alt:before {
        content: "\e017"
    }

    .icon_tags_alt:before {
        content: "\e018"
    }

    .icon_trash_alt:before {
        content: "\e019"
    }

    .icon_cursor_alt:before {
        content: "\e01a"
    }

    .icon_mic_alt:before {
        content: "\e01b"
    }

    .icon_compass_alt:before {
        content: "\e01c"
    }

    .icon_pin_alt:before {
        content: "\e01d"
    }

    .icon_pushpin_alt:before {
        content: "\e01e"
    }

    .icon_map_alt:before {
        content: "\e01f"
    }

    .icon_drawer_alt:before {
        content: "\e020"
    }

    .icon_toolbox_alt:before {
        content: "\e021"
    }

    .icon_book_alt:before {
        content: "\e022"
    }

    .icon_calendar:before {
        content: "\e023"
    }

    .icon_film:before {
        content: "\e024"
    }

    .icon_table:before {
        content: "\e025"
    }

    .icon_contacts_alt:before {
        content: "\e026"
    }

    .icon_headphones:before {
        content: "\e027"
    }

    .icon_lifesaver:before {
        content: "\e028"
    }

    .icon_piechart:before {
        content: "\e029"
    }

    .icon_refresh:before {
        content: "\e02a"
    }

    .icon_link_alt:before {
        content: "\e02b"
    }

    .icon_link:before {
        content: "\e02c"
    }

    .icon_loading:before {
        content: "\e02d"
    }

    .icon_blocked:before {
        content: "\e02e"
    }

    .icon_archive_alt:before {
        content: "\e02f"
    }

    .icon_heart_alt:before {
        content: "\e030"
    }

    .icon_star_alt:before {
        content: "\e031"
    }

    .icon_star-half_alt:before {
        content: "\e032"
    }

    .icon_star:before {
        content: "\e033"
    }

    .icon_star-half:before {
        content: "\e034"
    }

    .icon_tools:before {
        content: "\e035"
    }

    .icon_tool:before {
        content: "\e036"
    }

    .icon_cog:before {
        content: "\e037"
    }

    .icon_cogs:before {
        content: "\e038"
    }

    .arrow_up_alt:before {
        content: "\e039"
    }

    .arrow_down_alt:before {
        content: "\e03a"
    }

    .arrow_left_alt:before {
        content: "\e03b"
    }

    .arrow_right_alt:before {
        content: "\e03c"
    }

    .arrow_left-up_alt:before {
        content: "\e03d"
    }

    .arrow_right-up_alt:before {
        content: "\e03e"
    }

    .arrow_right-down_alt:before {
        content: "\e03f"
    }

    .arrow_left-down_alt:before {
        content: "\e040"
    }

    .arrow_condense_alt:before {
        content: "\e041"
    }

    .arrow_expand_alt3:before {
        content: "\e042"
    }

    .arrow_carrot_up_alt:before {
        content: "\e043"
    }

    .arrow_carrot-down_alt:before {
        content: "\e044"
    }

    .arrow_carrot-left_alt:before {
        content: "\e045"
    }

    .arrow_carrot-right_alt:before {
        content: "\e046"
    }

    .arrow_carrot-2up_alt:before {
        content: "\e047"
    }

    .arrow_carrot-2dwnn_alt:before {
        content: "\e048"
    }

    .arrow_carrot-2left_alt:before {
        content: "\e049"
    }

    .arrow_carrot-2right_alt:before {
        content: "\e04a"
    }

    .arrow_triangle-up_alt:before {
        content: "\e04b"
    }

    .arrow_triangle-down_alt:before {
        content: "\e04c"
    }

    .arrow_triangle-left_alt:before {
        content: "\e04d"
    }

    .arrow_triangle-right_alt:before {
        content: "\e04e"
    }

    .icon_minus_alt:before {
        content: "\e04f"
    }

    .icon_plus_alt:before {
        content: "\e050"
    }

    .icon_close_alt:before {
        content: "\e051"
    }

    .icon_check_alt:before {
        content: "\e052"
    }

    .icon_zoom-out:before {
        content: "\e053"
    }

    .icon_zoom-in:before {
        content: "\e054"
    }

    .icon_stop_alt:before {
        content: "\e055"
    }

    .icon_menu-square_alt:before {
        content: "\e056"
    }

    .icon_menu-circle_alt:before {
        content: "\e057"
    }

    .icon_document:before {
        content: "\e058"
    }

    .icon_documents:before {
        content: "\e059"
    }

    .icon_pencil_alt:before {
        content: "\e05a"
    }

    .icon_folder:before {
        content: "\e05b"
    }

    .icon_folder-open:before {
        content: "\e05c"
    }

    .icon_folder-add:before {
        content: "\e05d"
    }

    .icon_folder_upload:before {
        content: "\e05e"
    }

    .icon_folder_download:before {
        content: "\e05f"
    }

    .icon_info:before {
        content: "\e060"
    }

    .icon_error-circle:before {
        content: "\e061"
    }

    .icon_error-oct:before {
        content: "\e062"
    }

    .icon_error-triangle:before {
        content: "\e063"
    }

    .icon_question_alt:before {
        content: "\e064"
    }

    .icon_comment:before {
        content: "\e065"
    }

    .icon_chat:before {
        content: "\e066"
    }

    .icon_vol-mute:before {
        content: "\e067"
    }

    .icon_volume-low:before {
        content: "\e068"
    }

    .icon_volume-high:before {
        content: "\e069"
    }

    .icon_quotations_alt:before {
        content: "\e06a"
    }

    .icon_clock:before {
        content: "\e06b"
    }

    .icon_lock:before {
        content: "\e06c"
    }

    .icon_lock-open:before {
        content: "\e06d"
    }

    .icon_key:before {
        content: "\e06e"
    }

    .icon_cloud:before {
        content: "\e06f"
    }

    .icon_cloud-upload:before {
        content: "\e070"
    }

    .icon_cloud-download:before {
        content: "\e071"
    }

    .icon_lightbulb:before {
        content: "\e072"
    }

    .icon_gift:before {
        content: "\e073"
    }

    .icon_house:before {
        content: "\e074"
    }

    .icon_camera:before {
        content: "\e075"
    }

    .icon_mail:before {
        content: "\e076"
    }

    .icon_cone:before {
        content: "\e077"
    }

    .icon_ribbon:before {
        content: "\e078"
    }

    .icon_bag:before {
        content: "\e079"
    }

    .icon_cart:before {
        content: "\e07a"
    }

    .icon_tag:before {
        content: "\e07b"
    }

    .icon_tags:before {
        content: "\e07c"
    }

    .icon_trash:before {
        content: "\e07d"
    }

    .icon_cursor:before {
        content: "\e07e"
    }

    .icon_mic:before {
        content: "\e07f"
    }

    .icon_compass:before {
        content: "\e080"
    }

    .icon_pin:before {
        content: "\e081"
    }

    .icon_pushpin:before {
        content: "\e082"
    }

    .icon_map:before {
        content: "\e083"
    }

    .icon_drawer:before {
        content: "\e084"
    }

    .icon_toolbox:before {
        content: "\e085"
    }

    .icon_book:before {
        content: "\e086"
    }

    .icon_contacts:before {
        content: "\e087"
    }

    .icon_archive:before {
        content: "\e088"
    }

    .icon_heart:before {
        content: "\e089"
    }

    .icon_profile:before {
        content: "\e08a"
    }

    .icon_group:before {
        content: "\e08b"
    }

    .icon_grid-2x2:before {
        content: "\e08c"
    }

    .icon_grid-3x3:before {
        content: "\e08d"
    }

    .icon_music:before {
        content: "\e08e"
    }

    .icon_pause_alt:before {
        content: "\e08f"
    }

    .icon_phone:before {
        content: "\e090"
    }

    .icon_upload:before {
        content: "\e091"
    }

    .icon_download:before {
        content: "\e092"
    }

    .social_facebook:before {
        content: "\e093"
    }

    .social_twitter:before {
        content: "\e094"
    }

    .social_pinterest:before {
        content: "\e095"
    }

    .social_googleplus:before {
        content: "\e096"
    }

    .social_tumblr:before {
        content: "\e097"
    }

    .social_tumbleupon:before {
        content: "\e098"
    }

    .social_wordpress:before {
        content: "\e099"
    }

    .social_instagram:before {
        content: "\e09a"
    }

    .social_dribbble:before {
        content: "\e09b"
    }

    .social_vimeo:before {
        content: "\e09c"
    }

    .social_linkedin:before {
        content: "\e09d"
    }

    .social_rss:before {
        content: "\e09e"
    }

    .social_deviantart:before {
        content: "\e09f"
    }

    .social_share:before {
        content: "\e0a0"
    }

    .social_myspace:before {
        content: "\e0a1"
    }

    .social_skype:before {
        content: "\e0a2"
    }

    .social_youtube:before {
        content: "\e0a3"
    }

    .social_picassa:before {
        content: "\e0a4"
    }

    .social_googledrive:before {
        content: "\e0a5"
    }

    .social_flickr:before {
        content: "\e0a6"
    }

    .social_blogger:before {
        content: "\e0a7"
    }

    .social_spotify:before {
        content: "\e0a8"
    }

    .social_delicious:before {
        content: "\e0a9"
    }

    .social_facebook_circle:before {
        content: "\e0aa"
    }

    .social_twitter_circle:before {
        content: "\e0ab"
    }

    .social_pinterest_circle:before {
        content: "\e0ac"
    }

    .social_googleplus_circle:before {
        content: "\e0ad"
    }

    .social_tumblr_circle:before {
        content: "\e0ae"
    }

    .social_stumbleupon_circle:before {
        content: "\e0af"
    }

    .social_wordpress_circle:before {
        content: "\e0b0"
    }

    .social_instagram_circle:before {
        content: "\e0b1"
    }

    .social_dribbble_circle:before {
        content: "\e0b2"
    }

    .social_vimeo_circle:before {
        content: "\e0b3"
    }

    .social_linkedin_circle:before {
        content: "\e0b4"
    }

    .social_rss_circle:before {
        content: "\e0b5"
    }

    .social_deviantart_circle:before {
        content: "\e0b6"
    }

    .social_share_circle:before {
        content: "\e0b7"
    }

    .social_myspace_circle:before {
        content: "\e0b8"
    }

    .social_skype_circle:before {
        content: "\e0b9"
    }

    .social_youtube_circle:before {
        content: "\e0ba"
    }

    .social_picassa_circle:before {
        content: "\e0bb"
    }

    .social_googledrive_alt2:before {
        content: "\e0bc"
    }

    .social_flickr_circle:before {
        content: "\e0bd"
    }

    .social_blogger_circle:before {
        content: "\e0be"
    }

    .social_spotify_circle:before {
        content: "\e0bf"
    }

    .social_delicious_circle:before {
        content: "\e0c0"
    }

    .social_facebook_square:before {
        content: "\e0c1"
    }

    .social_twitter_square:before {
        content: "\e0c2"
    }

    .social_pinterest_square:before {
        content: "\e0c3"
    }

    .social_googleplus_square:before {
        content: "\e0c4"
    }

    .social_tumblr_square:before {
        content: "\e0c5"
    }

    .social_stumbleupon_square:before {
        content: "\e0c6"
    }

    .social_wordpress_square:before {
        content: "\e0c7"
    }

    .social_instagram_square:before {
        content: "\e0c8"
    }

    .social_dribbble_square:before {
        content: "\e0c9"
    }

    .social_vimeo_square:before {
        content: "\e0ca"
    }

    .social_linkedin_square:before {
        content: "\e0cb"
    }

    .social_rss_square:before {
        content: "\e0cc"
    }

    .social_deviantart_square:before {
        content: "\e0cd"
    }

    .social_share_square:before {
        content: "\e0ce"
    }

    .social_myspace_square:before {
        content: "\e0cf"
    }

    .social_skype_square:before {
        content: "\e0d0"
    }

    .social_youtube_square:before {
        content: "\e0d1"
    }

    .social_picassa_square:before {
        content: "\e0d2"
    }

    .social_googledrive_square:before {
        content: "\e0d3"
    }

    .social_flickr_square:before {
        content: "\e0d4"
    }

    .social_blogger_square:before {
        content: "\e0d5"
    }

    .social_spotify_square:before {
        content: "\e0d6"
    }

    .social_delicious_square:before {
        content: "\e0d7"
    }

    .icon_printer:before {
        content: "\e103"
    }

    .icon_calulator:before {
        content: "\e0ee"
    }

    .icon_building:before {
        content: "\e0ef"
    }

    .icon_floppy:before {
        content: "\e0e8"
    }

    .icon_drive:before {
        content: "\e0ea"
    }

    .icon_search-2:before {
        content: "\e101"
    }

    .icon_id:before {
        content: "\e107"
    }

    .icon_id-2:before {
        content: "\e108"
    }

    .icon_puzzle:before {
        content: "\e102"
    }

    .icon_like:before {
        content: "\e106"
    }

    .icon_dislike:before {
        content: "\e0eb"
    }

    .icon_mug:before {
        content: "\e105"
    }

    .icon_currency:before {
        content: "\e0ed"
    }

    .icon_wallet:before {
        content: "\e100"
    }

    .icon_pens:before {
        content: "\e104"
    }

    .icon_easel:before {
        content: "\e0e9"
    }

    .icon_flowchart:before {
        content: "\e109"
    }

    .icon_datareport:before {
        content: "\e0ec"
    }

    .icon_briefcase:before {
        content: "\e0fe"
    }

    .icon_shield:before {
        content: "\e0f6"
    }

    .icon_percent:before {
        content: "\e0fb"
    }

    .icon_globe:before {
        content: "\e0e2"
    }

    .icon_globe-2:before {
        content: "\e0e3"
    }

    .icon_target:before {
        content: "\e0f5"
    }

    .icon_hourglass:before {
        content: "\e0e1"
    }

    .icon_balance:before {
        content: "\e0ff"
    }

    .icon_rook:before {
        content: "\e0f8"
    }

    .icon_printer-alt:before {
        content: "\e0fa"
    }

    .icon_calculator_alt:before {
        content: "\e0e7"
    }

    .icon_building_alt:before {
        content: "\e0fd"
    }

    .icon_floppy_alt:before {
        content: "\e0e4"
    }

    .icon_drive_alt:before {
        content: "\e0e5"
    }

    .icon_search_alt:before {
        content: "\e0f7"
    }

    .icon_id_alt:before {
        content: "\e0e0"
    }

    .icon_id-2_alt:before {
        content: "\e0fc"
    }

    .icon_puzzle_alt:before {
        content: "\e0f9"
    }

    .icon_like_alt:before {
        content: "\e0dd"
    }

    .icon_dislike_alt:before {
        content: "\e0f1"
    }

    .icon_mug_alt:before {
        content: "\e0dc"
    }

    .icon_currency_alt:before {
        content: "\e0f3"
    }

    .icon_wallet_alt:before {
        content: "\e0d8"
    }

    .icon_pens_alt:before {
        content: "\e0db"
    }

    .icon_easel_alt:before {
        content: "\e0f0"
    }

    .icon_flowchart_alt:before {
        content: "\e0df"
    }

    .icon_datareport_alt:before {
        content: "\e0f2"
    }

    .icon_briefcase_alt:before {
        content: "\e0f4"
    }

    .icon_shield_alt:before {
        content: "\e0d9"
    }

    .icon_percent_alt:before {
        content: "\e0da"
    }

    .icon_globe_alt:before {
        content: "\e0de"
    }

    .icon_clipboard:before {
        content: "\e0e6"
    }

.glyph {
    float: left;
    text-align: center;
    padding: .75em;
    margin: .4em 1.5em .75em 0;
    width: 6em;
    text-shadow: none
}

.glyph_big {
    font-size: 128px;
    color: #59c5dc;
    float: left;
    margin-right: 20px
}

.glyph div {
    padding-bottom: 10px
}

.glyph input {
    font-family: consolas, monospace;
    font-size: 12px;
    width: 100%;
    text-align: center;
    border: 0;
    -webkit-box-shadow: 0 0 0 1px #ccc;
    box-shadow: 0 0 0 1px #ccc;
    padding: .2em;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px
}

.centered {
    margin-left: auto;
    margin-right: auto
}

.glyph .fs1 {
    font-size: 2em
}

@font-face {
    font-family: 'FontAwesome';
    src: url(../fonts/fontawesome-webfont.eot?v=4.7.0);
    src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format("woff2"), url(../fonts/fontawesome-webfont.woff?v=4.7.0) format("woff"), url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
    font-weight: 400;
    font-style: normal
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-lg {
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14286em;
    list-style-type: none
}

    .fa-ul > li {
        position: relative
    }

.fa-li {
    position: absolute;
    left: -2.14286em;
    width: 2.14286em;
    top: .14286em;
    text-align: center
}

    .fa-li.fa-lg {
        left: -1.85714em
    }

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right {
    margin-left: .3em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    transform: scale(1, -1)
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    -webkit-filter: none;
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: ""
}

.fa-music:before {
    content: ""
}

.fa-search:before {
    content: ""
}

.fa-envelope-o:before {
    content: ""
}

.fa-heart:before {
    content: ""
}

.fa-star:before {
    content: ""
}

.fa-star-o:before {
    content: ""
}

.fa-user:before {
    content: ""
}

.fa-film:before {
    content: ""
}

.fa-th-large:before {
    content: ""
}

.fa-th:before {
    content: ""
}

.fa-th-list:before {
    content: ""
}

.fa-check:before {
    content: ""
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: ""
}

.fa-search-plus:before {
    content: ""
}

.fa-search-minus:before {
    content: ""
}

.fa-power-off:before {
    content: ""
}

.fa-signal:before {
    content: ""
}

.fa-gear:before,
.fa-cog:before {
    content: ""
}

.fa-trash-o:before {
    content: ""
}

.fa-home:before {
    content: ""
}

.fa-file-o:before {
    content: ""
}

.fa-clock-o:before {
    content: ""
}

.fa-road:before {
    content: ""
}

.fa-download:before {
    content: ""
}

.fa-arrow-circle-o-down:before {
    content: ""
}

.fa-arrow-circle-o-up:before {
    content: ""
}

.fa-inbox:before {
    content: ""
}

.fa-play-circle-o:before {
    content: ""
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: ""
}

.fa-refresh:before {
    content: ""
}

.fa-list-alt:before {
    content: ""
}

.fa-lock:before {
    content: ""
}

.fa-flag:before {
    content: ""
}

.fa-headphones:before {
    content: ""
}

.fa-volume-off:before {
    content: ""
}

.fa-volume-down:before {
    content: ""
}

.fa-volume-up:before {
    content: ""
}

.fa-qrcode:before {
    content: ""
}

.fa-barcode:before {
    content: ""
}

.fa-tag:before {
    content: ""
}

.fa-tags:before {
    content: ""
}

.fa-book:before {
    content: ""
}

.fa-bookmark:before {
    content: ""
}

.fa-print:before {
    content: ""
}

.fa-camera:before {
    content: ""
}

.fa-font:before {
    content: ""
}

.fa-bold:before {
    content: ""
}

.fa-italic:before {
    content: ""
}

.fa-text-height:before {
    content: ""
}

.fa-text-width:before {
    content: ""
}

.fa-align-left:before {
    content: ""
}

.fa-align-center:before {
    content: ""
}

.fa-align-right:before {
    content: ""
}

.fa-align-justify:before {
    content: ""
}

.fa-list:before {
    content: ""
}

.fa-dedent:before,
.fa-outdent:before {
    content: ""
}

.fa-indent:before {
    content: ""
}

.fa-video-camera:before {
    content: ""
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: ""
}

.fa-pencil:before {
    content: ""
}

.fa-map-marker:before {
    content: ""
}

.fa-adjust:before {
    content: ""
}

.fa-tint:before {
    content: ""
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: ""
}

.fa-share-square-o:before {
    content: ""
}

.fa-check-square-o:before {
    content: ""
}

.fa-arrows:before {
    content: ""
}

.fa-step-backward:before {
    content: ""
}

.fa-fast-backward:before {
    content: ""
}

.fa-backward:before {
    content: ""
}

.fa-play:before {
    content: ""
}

.fa-pause:before {
    content: ""
}

.fa-stop:before {
    content: ""
}

.fa-forward:before {
    content: ""
}

.fa-fast-forward:before {
    content: ""
}

.fa-step-forward:before {
    content: ""
}

.fa-eject:before {
    content: ""
}

.fa-chevron-left:before {
    content: ""
}

.fa-chevron-right:before {
    content: ""
}

.fa-plus-circle:before {
    content: ""
}

.fa-minus-circle:before {
    content: ""
}

.fa-times-circle:before {
    content: ""
}

.fa-check-circle:before {
    content: ""
}

.fa-question-circle:before {
    content: ""
}

.fa-info-circle:before {
    content: ""
}

.fa-crosshairs:before {
    content: ""
}

.fa-times-circle-o:before {
    content: ""
}

.fa-check-circle-o:before {
    content: ""
}

.fa-ban:before {
    content: ""
}

.fa-arrow-left:before {
    content: ""
}

.fa-arrow-right:before {
    content: ""
}

.fa-arrow-up:before {
    content: ""
}

.fa-arrow-down:before {
    content: ""
}

.fa-mail-forward:before,
.fa-share:before {
    content: ""
}

.fa-expand:before {
    content: ""
}

.fa-compress:before {
    content: ""
}

.fa-plus:before {
    content: ""
}

.fa-minus:before {
    content: ""
}

.fa-asterisk:before {
    content: ""
}

.fa-exclamation-circle:before {
    content: ""
}

.fa-gift:before {
    content: ""
}

.fa-leaf:before {
    content: ""
}

.fa-fire:before {
    content: ""
}

.fa-eye:before {
    content: ""
}

.fa-eye-slash:before {
    content: ""
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: ""
}

.fa-plane:before {
    content: ""
}

.fa-calendar:before {
    content: ""
}

.fa-random:before {
    content: ""
}

.fa-comment:before {
    content: ""
}

.fa-magnet:before {
    content: ""
}

.fa-chevron-up:before {
    content: ""
}

.fa-chevron-down:before {
    content: ""
}

.fa-retweet:before {
    content: ""
}

.fa-shopping-cart:before {
    content: ""
}

.fa-folder:before {
    content: ""
}

.fa-folder-open:before {
    content: ""
}

.fa-arrows-v:before {
    content: ""
}

.fa-arrows-h:before {
    content: ""
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: ""
}

.fa-twitter-square:before {
    content: ""
}

.fa-facebook-square:before {
    content: ""
}

.fa-camera-retro:before {
    content: ""
}

.fa-key:before {
    content: ""
}

.fa-gears:before,
.fa-cogs:before {
    content: ""
}

.fa-comments:before {
    content: ""
}

.fa-thumbs-o-up:before {
    content: ""
}

.fa-thumbs-o-down:before {
    content: ""
}

.fa-star-half:before {
    content: ""
}

.fa-heart-o:before {
    content: ""
}

.fa-sign-out:before {
    content: ""
}

.fa-linkedin-square:before {
    content: ""
}

.fa-thumb-tack:before {
    content: ""
}

.fa-external-link:before {
    content: ""
}

.fa-sign-in:before {
    content: ""
}

.fa-trophy:before {
    content: ""
}

.fa-github-square:before {
    content: ""
}

.fa-upload:before {
    content: ""
}

.fa-lemon-o:before {
    content: ""
}

.fa-phone:before {
    content: ""
}

.fa-square-o:before {
    content: ""
}

.fa-bookmark-o:before {
    content: ""
}

.fa-phone-square:before {
    content: ""
}

.fa-twitter:before {
    content: ""
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: ""
}

.fa-github:before {
    content: ""
}

.fa-unlock:before {
    content: ""
}

.fa-credit-card:before {
    content: ""
}

.fa-feed:before,
.fa-rss:before {
    content: ""
}

.fa-hdd-o:before {
    content: ""
}

.fa-bullhorn:before {
    content: ""
}

.fa-bell:before {
    content: ""
}

.fa-certificate:before {
    content: ""
}

.fa-hand-o-right:before {
    content: ""
}

.fa-hand-o-left:before {
    content: ""
}

.fa-hand-o-up:before {
    content: ""
}

.fa-hand-o-down:before {
    content: ""
}

.fa-arrow-circle-left:before {
    content: ""
}

.fa-arrow-circle-right:before {
    content: ""
}

.fa-arrow-circle-up:before {
    content: ""
}

.fa-arrow-circle-down:before {
    content: ""
}

.fa-globe:before {
    content: ""
}

.fa-wrench:before {
    content: ""
}

.fa-tasks:before {
    content: ""
}

.fa-filter:before {
    content: ""
}

.fa-briefcase:before {
    content: ""
}

.fa-arrows-alt:before {
    content: ""
}

.fa-group:before,
.fa-users:before {
    content: ""
}

.fa-chain:before,
.fa-link:before {
    content: ""
}

.fa-cloud:before {
    content: ""
}

.fa-flask:before {
    content: ""
}

.fa-cut:before,
.fa-scissors:before {
    content: ""
}

.fa-copy:before,
.fa-files-o:before {
    content: ""
}

.fa-paperclip:before {
    content: ""
}

.fa-save:before,
.fa-floppy-o:before {
    content: ""
}

.fa-square:before {
    content: ""
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: ""
}

.fa-list-ul:before {
    content: ""
}

.fa-list-ol:before {
    content: ""
}

.fa-strikethrough:before {
    content: ""
}

.fa-underline:before {
    content: ""
}

.fa-table:before {
    content: ""
}

.fa-magic:before {
    content: ""
}

.fa-truck:before {
    content: ""
}

.fa-pinterest:before {
    content: ""
}

.fa-pinterest-square:before {
    content: ""
}

.fa-google-plus-square:before {
    content: ""
}

.fa-google-plus:before {
    content: ""
}

.fa-money:before {
    content: ""
}

.fa-caret-down:before {
    content: ""
}

.fa-caret-up:before {
    content: ""
}

.fa-caret-left:before {
    content: ""
}

.fa-caret-right:before {
    content: ""
}

.fa-columns:before {
    content: ""
}

.fa-unsorted:before,
.fa-sort:before {
    content: ""
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: ""
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: ""
}

.fa-envelope:before {
    content: ""
}

.fa-linkedin:before {
    content: ""
}

.fa-rotate-left:before,
.fa-undo:before {
    content: ""
}

.fa-legal:before,
.fa-gavel:before {
    content: ""
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: ""
}

.fa-comment-o:before {
    content: ""
}

.fa-comments-o:before {
    content: ""
}

.fa-flash:before,
.fa-bolt:before {
    content: ""
}

.fa-sitemap:before {
    content: ""
}

.fa-umbrella:before {
    content: ""
}

.fa-paste:before,
.fa-clipboard:before {
    content: ""
}

.fa-lightbulb-o:before {
    content: ""
}

.fa-exchange:before {
    content: ""
}

.fa-cloud-download:before {
    content: ""
}

.fa-cloud-upload:before {
    content: ""
}

.fa-user-md:before {
    content: ""
}

.fa-stethoscope:before {
    content: ""
}

.fa-suitcase:before {
    content: ""
}

.fa-bell-o:before {
    content: ""
}

.fa-coffee:before {
    content: ""
}

.fa-cutlery:before {
    content: ""
}

.fa-file-text-o:before {
    content: ""
}

.fa-building-o:before {
    content: ""
}

.fa-hospital-o:before {
    content: ""
}

.fa-ambulance:before {
    content: ""
}

.fa-medkit:before {
    content: ""
}

.fa-fighter-jet:before {
    content: ""
}

.fa-beer:before {
    content: ""
}

.fa-h-square:before {
    content: ""
}

.fa-plus-square:before {
    content: ""
}

.fa-angle-double-left:before {
    content: ""
}

.fa-angle-double-right:before {
    content: ""
}

.fa-angle-double-up:before {
    content: ""
}

.fa-angle-double-down:before {
    content: ""
}

.fa-angle-left:before {
    content: ""
}

.fa-angle-right:before {
    content: ""
}

.fa-angle-up:before {
    content: ""
}

.fa-angle-down:before {
    content: ""
}

.fa-desktop:before {
    content: ""
}

.fa-laptop:before {
    content: ""
}

.fa-tablet:before {
    content: ""
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: ""
}

.fa-circle-o:before {
    content: ""
}

.fa-quote-left:before {
    content: ""
}

.fa-quote-right:before {
    content: ""
}

.fa-spinner:before {
    content: ""
}

.fa-circle:before {
    content: ""
}

.fa-mail-reply:before,
.fa-reply:before {
    content: ""
}

.fa-github-alt:before {
    content: ""
}

.fa-folder-o:before {
    content: ""
}

.fa-folder-open-o:before {
    content: ""
}

.fa-smile-o:before {
    content: ""
}

.fa-frown-o:before {
    content: ""
}

.fa-meh-o:before {
    content: ""
}

.fa-gamepad:before {
    content: ""
}

.fa-keyboard-o:before {
    content: ""
}

.fa-flag-o:before {
    content: ""
}

.fa-flag-checkered:before {
    content: ""
}

.fa-terminal:before {
    content: ""
}

.fa-code:before {
    content: ""
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: ""
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: ""
}

.fa-location-arrow:before {
    content: ""
}

.fa-crop:before {
    content: ""
}

.fa-code-fork:before {
    content: ""
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: ""
}

.fa-question:before {
    content: ""
}

.fa-info:before {
    content: ""
}

.fa-exclamation:before {
    content: ""
}

.fa-superscript:before {
    content: ""
}

.fa-subscript:before {
    content: ""
}

.fa-eraser:before {
    content: ""
}

.fa-puzzle-piece:before {
    content: ""
}

.fa-microphone:before {
    content: ""
}

.fa-microphone-slash:before {
    content: ""
}

.fa-shield:before {
    content: ""
}

.fa-calendar-o:before {
    content: ""
}

.fa-fire-extinguisher:before {
    content: ""
}

.fa-rocket:before {
    content: ""
}

.fa-maxcdn:before {
    content: ""
}

.fa-chevron-circle-left:before {
    content: ""
}

.fa-chevron-circle-right:before {
    content: ""
}

.fa-chevron-circle-up:before {
    content: ""
}

.fa-chevron-circle-down:before {
    content: ""
}

.fa-html5:before {
    content: ""
}

.fa-css3:before {
    content: ""
}

.fa-anchor:before {
    content: ""
}

.fa-unlock-alt:before {
    content: ""
}

.fa-bullseye:before {
    content: ""
}

.fa-ellipsis-h:before {
    content: ""
}

.fa-ellipsis-v:before {
    content: ""
}

.fa-rss-square:before {
    content: ""
}

.fa-play-circle:before {
    content: ""
}

.fa-ticket:before {
    content: ""
}

.fa-minus-square:before {
    content: ""
}

.fa-minus-square-o:before {
    content: ""
}

.fa-level-up:before {
    content: ""
}

.fa-level-down:before {
    content: ""
}

.fa-check-square:before {
    content: ""
}

.fa-pencil-square:before {
    content: ""
}

.fa-external-link-square:before {
    content: ""
}

.fa-share-square:before {
    content: ""
}

.fa-compass:before {
    content: ""
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: ""
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: ""
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: ""
}

.fa-euro:before,
.fa-eur:before {
    content: ""
}

.fa-gbp:before {
    content: ""
}

.fa-dollar:before,
.fa-usd:before {
    content: ""
}

.fa-rupee:before,
.fa-inr:before {
    content: ""
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: ""
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: ""
}

.fa-won:before,
.fa-krw:before {
    content: ""
}

.fa-bitcoin:before,
.fa-btc:before {
    content: ""
}

.fa-file:before {
    content: ""
}

.fa-file-text:before {
    content: ""
}

.fa-sort-alpha-asc:before {
    content: ""
}

.fa-sort-alpha-desc:before {
    content: ""
}

.fa-sort-amount-asc:before {
    content: ""
}

.fa-sort-amount-desc:before {
    content: ""
}

.fa-sort-numeric-asc:before {
    content: ""
}

.fa-sort-numeric-desc:before {
    content: ""
}

.fa-thumbs-up:before {
    content: ""
}

.fa-thumbs-down:before {
    content: ""
}

.fa-youtube-square:before {
    content: ""
}

.fa-youtube:before {
    content: ""
}

.fa-xing:before {
    content: ""
}

.fa-xing-square:before {
    content: ""
}

.fa-youtube-play:before {
    content: ""
}

.fa-dropbox:before {
    content: ""
}

.fa-stack-overflow:before {
    content: ""
}

.fa-instagram:before {
    content: ""
}

.fa-flickr:before {
    content: ""
}

.fa-adn:before {
    content: ""
}

.fa-bitbucket:before {
    content: ""
}

.fa-bitbucket-square:before {
    content: ""
}

.fa-tumblr:before {
    content: ""
}

.fa-tumblr-square:before {
    content: ""
}

.fa-long-arrow-down:before {
    content: ""
}

.fa-long-arrow-up:before {
    content: ""
}

.fa-long-arrow-left:before {
    content: ""
}

.fa-long-arrow-right:before {
    content: ""
}

.fa-apple:before {
    content: ""
}

.fa-windows:before {
    content: ""
}

.fa-android:before {
    content: ""
}

.fa-linux:before {
    content: ""
}

.fa-dribbble:before {
    content: ""
}

.fa-skype:before {
    content: ""
}

.fa-foursquare:before {
    content: ""
}

.fa-trello:before {
    content: ""
}

.fa-female:before {
    content: ""
}

.fa-male:before {
    content: ""
}

.fa-gittip:before,
.fa-gratipay:before {
    content: ""
}

.fa-sun-o:before {
    content: ""
}

.fa-moon-o:before {
    content: ""
}

.fa-archive:before {
    content: ""
}

.fa-bug:before {
    content: ""
}

.fa-vk:before {
    content: ""
}

.fa-weibo:before {
    content: ""
}

.fa-renren:before {
    content: ""
}

.fa-pagelines:before {
    content: ""
}

.fa-stack-exchange:before {
    content: ""
}

.fa-arrow-circle-o-right:before {
    content: ""
}

.fa-arrow-circle-o-left:before {
    content: ""
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: ""
}

.fa-dot-circle-o:before {
    content: ""
}

.fa-wheelchair:before {
    content: ""
}

.fa-vimeo-square:before {
    content: ""
}

.fa-turkish-lira:before,
.fa-try:before {
    content: ""
}

.fa-plus-square-o:before {
    content: ""
}

.fa-space-shuttle:before {
    content: ""
}

.fa-slack:before {
    content: ""
}

.fa-envelope-square:before {
    content: ""
}

.fa-wordpress:before {
    content: ""
}

.fa-openid:before {
    content: ""
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: ""
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: ""
}

.fa-yahoo:before {
    content: ""
}

.fa-google:before {
    content: ""
}

.fa-reddit:before {
    content: ""
}

.fa-reddit-square:before {
    content: ""
}

.fa-stumbleupon-circle:before {
    content: ""
}

.fa-stumbleupon:before {
    content: ""
}

.fa-delicious:before {
    content: ""
}

.fa-digg:before {
    content: ""
}

.fa-pied-piper-pp:before {
    content: ""
}

.fa-pied-piper-alt:before {
    content: ""
}

.fa-drupal:before {
    content: ""
}

.fa-joomla:before {
    content: ""
}

.fa-language:before {
    content: ""
}

.fa-fax:before {
    content: ""
}

.fa-building:before {
    content: ""
}

.fa-child:before {
    content: ""
}

.fa-paw:before {
    content: ""
}

.fa-spoon:before {
    content: ""
}

.fa-cube:before {
    content: ""
}

.fa-cubes:before {
    content: ""
}

.fa-behance:before {
    content: ""
}

.fa-behance-square:before {
    content: ""
}

.fa-steam:before {
    content: ""
}

.fa-steam-square:before {
    content: ""
}

.fa-recycle:before {
    content: ""
}

.fa-automobile:before,
.fa-car:before {
    content: ""
}

.fa-cab:before,
.fa-taxi:before {
    content: ""
}

.fa-tree:before {
    content: ""
}

.fa-spotify:before {
    content: ""
}

.fa-deviantart:before {
    content: ""
}

.fa-soundcloud:before {
    content: ""
}

.fa-database:before {
    content: ""
}

.fa-file-pdf-o:before {
    content: ""
}

.fa-file-word-o:before {
    content: ""
}

.fa-file-excel-o:before {
    content: ""
}

.fa-file-powerpoint-o:before {
    content: ""
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: ""
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: ""
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: ""
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: ""
}

.fa-file-code-o:before {
    content: ""
}

.fa-vine:before {
    content: ""
}

.fa-codepen:before {
    content: ""
}

.fa-jsfiddle:before {
    content: ""
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: ""
}

.fa-circle-o-notch:before {
    content: ""
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
    content: ""
}

.fa-ge:before,
.fa-empire:before {
    content: ""
}

.fa-git-square:before {
    content: ""
}

.fa-git:before {
    content: ""
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: ""
}

.fa-tencent-weibo:before {
    content: ""
}

.fa-qq:before {
    content: ""
}

.fa-wechat:before,
.fa-weixin:before {
    content: ""
}

.fa-send:before,
.fa-paper-plane:before {
    content: ""
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: ""
}

.fa-history:before {
    content: ""
}

.fa-circle-thin:before {
    content: ""
}

.fa-header:before {
    content: ""
}

.fa-paragraph:before {
    content: ""
}

.fa-sliders:before {
    content: ""
}

.fa-share-alt:before {
    content: ""
}

.fa-share-alt-square:before {
    content: ""
}

.fa-bomb:before {
    content: ""
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: ""
}

.fa-tty:before {
    content: ""
}

.fa-binoculars:before {
    content: ""
}

.fa-plug:before {
    content: ""
}

.fa-slideshare:before {
    content: ""
}

.fa-twitch:before {
    content: ""
}

.fa-yelp:before {
    content: ""
}

.fa-newspaper-o:before {
    content: ""
}

.fa-wifi:before {
    content: ""
}

.fa-calculator:before {
    content: ""
}

.fa-paypal:before {
    content: ""
}

.fa-google-wallet:before {
    content: ""
}

.fa-cc-visa:before {
    content: ""
}

.fa-cc-mastercard:before {
    content: ""
}

.fa-cc-discover:before {
    content: ""
}

.fa-cc-amex:before {
    content: ""
}

.fa-cc-paypal:before {
    content: ""
}

.fa-cc-stripe:before {
    content: ""
}

.fa-bell-slash:before {
    content: ""
}

.fa-bell-slash-o:before {
    content: ""
}

.fa-trash:before {
    content: ""
}

.fa-copyright:before {
    content: ""
}

.fa-at:before {
    content: ""
}

.fa-eyedropper:before {
    content: ""
}

.fa-paint-brush:before {
    content: ""
}

.fa-birthday-cake:before {
    content: ""
}

.fa-area-chart:before {
    content: ""
}

.fa-pie-chart:before {
    content: ""
}

.fa-line-chart:before {
    content: ""
}

.fa-lastfm:before {
    content: ""
}

.fa-lastfm-square:before {
    content: ""
}

.fa-toggle-off:before {
    content: ""
}

.fa-toggle-on:before {
    content: ""
}

.fa-bicycle:before {
    content: ""
}

.fa-bus:before {
    content: ""
}

.fa-ioxhost:before {
    content: ""
}

.fa-angellist:before {
    content: ""
}

.fa-cc:before {
    content: ""
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: ""
}

.fa-meanpath:before {
    content: ""
}

.fa-buysellads:before {
    content: ""
}

.fa-connectdevelop:before {
    content: ""
}

.fa-dashcube:before {
    content: ""
}

.fa-forumbee:before {
    content: ""
}

.fa-leanpub:before {
    content: ""
}

.fa-sellsy:before {
    content: ""
}

.fa-shirtsinbulk:before {
    content: ""
}

.fa-simplybuilt:before {
    content: ""
}

.fa-skyatlas:before {
    content: ""
}

.fa-cart-plus:before {
    content: ""
}

.fa-cart-arrow-down:before {
    content: ""
}

.fa-diamond:before {
    content: ""
}

.fa-ship:before {
    content: ""
}

.fa-user-secret:before {
    content: ""
}

.fa-motorcycle:before {
    content: ""
}

.fa-street-view:before {
    content: ""
}

.fa-heartbeat:before {
    content: ""
}

.fa-venus:before {
    content: ""
}

.fa-mars:before {
    content: ""
}

.fa-mercury:before {
    content: ""
}

.fa-intersex:before,
.fa-transgender:before {
    content: ""
}

.fa-transgender-alt:before {
    content: ""
}

.fa-venus-double:before {
    content: ""
}

.fa-mars-double:before {
    content: ""
}

.fa-venus-mars:before {
    content: ""
}

.fa-mars-stroke:before {
    content: ""
}

.fa-mars-stroke-v:before {
    content: ""
}

.fa-mars-stroke-h:before {
    content: ""
}

.fa-neuter:before {
    content: ""
}

.fa-genderless:before {
    content: ""
}

.fa-facebook-official:before {
    content: ""
}

.fa-pinterest-p:before {
    content: ""
}

.fa-whatsapp:before {
    content: ""
}

.fa-server:before {
    content: ""
}

.fa-user-plus:before {
    content: ""
}

.fa-user-times:before {
    content: ""
}

.fa-hotel:before,
.fa-bed:before {
    content: ""
}

.fa-viacoin:before {
    content: ""
}

.fa-train:before {
    content: ""
}

.fa-subway:before {
    content: ""
}

.fa-medium:before {
    content: ""
}

.fa-yc:before,
.fa-y-combinator:before {
    content: ""
}

.fa-optin-monster:before {
    content: ""
}

.fa-opencart:before {
    content: ""
}

.fa-expeditedssl:before {
    content: ""
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
    content: ""
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: ""
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: ""
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: ""
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: ""
}

.fa-mouse-pointer:before {
    content: ""
}

.fa-i-cursor:before {
    content: ""
}

.fa-object-group:before {
    content: ""
}

.fa-object-ungroup:before {
    content: ""
}

.fa-sticky-note:before {
    content: ""
}

.fa-sticky-note-o:before {
    content: ""
}

.fa-cc-jcb:before {
    content: ""
}

.fa-cc-diners-club:before {
    content: ""
}

.fa-clone:before {
    content: ""
}

.fa-balance-scale:before {
    content: ""
}

.fa-hourglass-o:before {
    content: ""
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: ""
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: ""
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: ""
}

.fa-hourglass:before {
    content: ""
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: ""
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: ""
}

.fa-hand-scissors-o:before {
    content: ""
}

.fa-hand-lizard-o:before {
    content: ""
}

.fa-hand-spock-o:before {
    content: ""
}

.fa-hand-pointer-o:before {
    content: ""
}

.fa-hand-peace-o:before {
    content: ""
}

.fa-trademark:before {
    content: ""
}

.fa-registered:before {
    content: ""
}

.fa-creative-commons:before {
    content: ""
}

.fa-gg:before {
    content: ""
}

.fa-gg-circle:before {
    content: ""
}

.fa-tripadvisor:before {
    content: ""
}

.fa-odnoklassniki:before {
    content: ""
}

.fa-odnoklassniki-square:before {
    content: ""
}

.fa-get-pocket:before {
    content: ""
}

.fa-wikipedia-w:before {
    content: ""
}

.fa-safari:before {
    content: ""
}

.fa-chrome:before {
    content: ""
}

.fa-firefox:before {
    content: ""
}

.fa-opera:before {
    content: ""
}

.fa-internet-explorer:before {
    content: ""
}

.fa-tv:before,
.fa-television:before {
    content: ""
}

.fa-contao:before {
    content: ""
}

.fa-500px:before {
    content: ""
}

.fa-amazon:before {
    content: ""
}

.fa-calendar-plus-o:before {
    content: ""
}

.fa-calendar-minus-o:before {
    content: ""
}

.fa-calendar-times-o:before {
    content: ""
}

.fa-calendar-check-o:before {
    content: ""
}

.fa-industry:before {
    content: ""
}

.fa-map-pin:before {
    content: ""
}

.fa-map-signs:before {
    content: ""
}

.fa-map-o:before {
    content: ""
}

.fa-map:before {
    content: ""
}

.fa-commenting:before {
    content: ""
}

.fa-commenting-o:before {
    content: ""
}

.fa-houzz:before {
    content: ""
}

.fa-vimeo:before {
    content: ""
}

.fa-black-tie:before {
    content: ""
}

.fa-fonticons:before {
    content: ""
}

.fa-reddit-alien:before {
    content: ""
}

.fa-edge:before {
    content: ""
}

.fa-credit-card-alt:before {
    content: ""
}

.fa-codiepie:before {
    content: ""
}

.fa-modx:before {
    content: ""
}

.fa-fort-awesome:before {
    content: ""
}

.fa-usb:before {
    content: ""
}

.fa-product-hunt:before {
    content: ""
}

.fa-mixcloud:before {
    content: ""
}

.fa-scribd:before {
    content: ""
}

.fa-pause-circle:before {
    content: ""
}

.fa-pause-circle-o:before {
    content: ""
}

.fa-stop-circle:before {
    content: ""
}

.fa-stop-circle-o:before {
    content: ""
}

.fa-shopping-bag:before {
    content: ""
}

.fa-shopping-basket:before {
    content: ""
}

.fa-hashtag:before {
    content: ""
}

.fa-bluetooth:before {
    content: ""
}

.fa-bluetooth-b:before {
    content: ""
}

.fa-percent:before {
    content: ""
}

.fa-gitlab:before {
    content: ""
}

.fa-wpbeginner:before {
    content: ""
}

.fa-wpforms:before {
    content: ""
}

.fa-envira:before {
    content: ""
}

.fa-universal-access:before {
    content: ""
}

.fa-wheelchair-alt:before {
    content: ""
}

.fa-question-circle-o:before {
    content: ""
}

.fa-blind:before {
    content: ""
}

.fa-audio-description:before {
    content: ""
}

.fa-volume-control-phone:before {
    content: ""
}

.fa-braille:before {
    content: ""
}

.fa-assistive-listening-systems:before {
    content: ""
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
    content: ""
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
    content: ""
}

.fa-glide:before {
    content: ""
}

.fa-glide-g:before {
    content: ""
}

.fa-signing:before,
.fa-sign-language:before {
    content: ""
}

.fa-low-vision:before {
    content: ""
}

.fa-viadeo:before {
    content: ""
}

.fa-viadeo-square:before {
    content: ""
}

.fa-snapchat:before {
    content: ""
}

.fa-snapchat-ghost:before {
    content: ""
}

.fa-snapchat-square:before {
    content: ""
}

.fa-pied-piper:before {
    content: ""
}

.fa-first-order:before {
    content: ""
}

.fa-yoast:before {
    content: ""
}

.fa-themeisle:before {
    content: ""
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: ""
}

.fa-fa:before,
.fa-font-awesome:before {
    content: ""
}

.fa-handshake-o:before {
    content: ""
}

.fa-envelope-open:before {
    content: ""
}

.fa-envelope-open-o:before {
    content: ""
}

.fa-linode:before {
    content: ""
}

.fa-address-book:before {
    content: ""
}

.fa-address-book-o:before {
    content: ""
}

.fa-vcard:before,
.fa-address-card:before {
    content: ""
}

.fa-vcard-o:before,
.fa-address-card-o:before {
    content: ""
}

.fa-user-circle:before {
    content: ""
}

.fa-user-circle-o:before {
    content: ""
}

.fa-user-o:before {
    content: ""
}

.fa-id-badge:before {
    content: ""
}

.fa-drivers-license:before,
.fa-id-card:before {
    content: ""
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
    content: ""
}

.fa-quora:before {
    content: ""
}

.fa-free-code-camp:before {
    content: ""
}

.fa-telegram:before {
    content: ""
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
    content: ""
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
    content: ""
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
    content: ""
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
    content: ""
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
    content: ""
}

.fa-shower:before {
    content: ""
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
    content: ""
}

.fa-podcast:before {
    content: ""
}

.fa-window-maximize:before {
    content: ""
}

.fa-window-minimize:before {
    content: ""
}

.fa-window-restore:before {
    content: ""
}

.fa-times-rectangle:before,
.fa-window-close:before {
    content: ""
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
    content: ""
}

.fa-bandcamp:before {
    content: ""
}

.fa-grav:before {
    content: ""
}

.fa-etsy:before {
    content: ""
}

.fa-imdb:before {
    content: ""
}

.fa-ravelry:before {
    content: ""
}

.fa-eercast:before {
    content: ""
}

.fa-microchip:before {
    content: ""
}

.fa-snowflake-o:before {
    content: ""
}

.fa-superpowers:before {
    content: ""
}

.fa-wpexplorer:before {
    content: ""
}

.fa-meetup:before {
    content: ""
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out
}

@media screen and (prefers-reduced-motion:reduce) {
    .btn {
        -webkit-transition: none;
        transition: none
    }
}

.btn:hover,
.btn:focus {
    text-decoration: none
}

.btn:focus,
.btn.focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.btn.disabled,
.btn:disabled {
    opacity: .65
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer
}

    .btn:not(:disabled):not(.disabled):active,
    .btn:not(:disabled):not(.disabled).active {
        background-image: none
    }

a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none
}

.btn-primary {
    color: #fff;
    background: #007bff -webkit-gradient(linear, left top, left bottom, from(#268fff), to(#007bff)) repeat-x;
    background: #007bff linear-gradient(180deg, #268fff, #007bff) repeat-x;
    border-color: #007bff
}

    .btn-primary:hover {
        color: #fff;
        background: #0069d9 -webkit-gradient(linear, left top, left bottom, from(#267fde), to(#0069d9)) repeat-x;
        background: #0069d9 linear-gradient(180deg, #267fde, #0069d9) repeat-x;
        border-color: #0062cc
    }

    .btn-primary:focus,
    .btn-primary.focus {
        -webkit-box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5);
        box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
    }

    .btn-primary.disabled,
    .btn-primary:disabled {
        color: #fff;
        background-color: #007bff;
        border-color: #007bff
    }

    .btn-primary:not(:disabled):not(.disabled):active,
    .btn-primary:not(:disabled):not(.disabled).active,
    .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #0062cc;
        background-image: none;
        border-color: #005cbf
    }

        .btn-primary:not(:disabled):not(.disabled):active:focus,
        .btn-primary:not(:disabled):not(.disabled).active:focus,
        .show > .btn-primary.dropdown-toggle:focus {
            -webkit-box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5);
            box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
        }

.btn-secondary {
    color: #fff;
    background: #6c757d -webkit-gradient(linear, left top, left bottom, from(#828a91), to(#6c757d)) repeat-x;
    background: #6c757d linear-gradient(180deg, #828a91, #6c757d) repeat-x;
    border-color: #6c757d
}

    .btn-secondary:hover {
        color: #fff;
        background: #5a6268 -webkit-gradient(linear, left top, left bottom, from(#73797f), to(#5a6268)) repeat-x;
        background: #5a6268 linear-gradient(180deg, #73797f, #5a6268) repeat-x;
        border-color: #545b62
    }

    .btn-secondary:focus,
    .btn-secondary.focus {
        -webkit-box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5);
        box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
    }

    .btn-secondary.disabled,
    .btn-secondary:disabled {
        color: #fff;
        background-color: #6c757d;
        border-color: #6c757d
    }

    .btn-secondary:not(:disabled):not(.disabled):active,
    .btn-secondary:not(:disabled):not(.disabled).active,
    .show > .btn-secondary.dropdown-toggle {
        color: #fff;
        background-color: #545b62;
        background-image: none;
        border-color: #4e555b
    }

        .btn-secondary:not(:disabled):not(.disabled):active:focus,
        .btn-secondary:not(:disabled):not(.disabled).active:focus,
        .show > .btn-secondary.dropdown-toggle:focus {
            -webkit-box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5);
            box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
        }

.btn-success {
    color: #fff;
    background: #28a745 -webkit-gradient(linear, left top, left bottom, from(#48b461), to(#28a745)) repeat-x;
    background: #28a745 linear-gradient(180deg, #48b461, #28a745) repeat-x;
    border-color: #28a745
}

    .btn-success:hover {
        color: #fff;
        background: #218838 -webkit-gradient(linear, left top, left bottom, from(#429a56), to(#218838)) repeat-x;
        background: #218838 linear-gradient(180deg, #429a56, #218838) repeat-x;
        border-color: #1e7e34
    }

    .btn-success:focus,
    .btn-success.focus {
        -webkit-box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5);
        box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
    }

    .btn-success.disabled,
    .btn-success:disabled {
        color: #fff;
        background-color: #28a745;
        border-color: #28a745
    }

    .btn-success:not(:disabled):not(.disabled):active,
    .btn-success:not(:disabled):not(.disabled).active,
    .show > .btn-success.dropdown-toggle {
        color: #fff;
        background-color: #1e7e34;
        background-image: none;
        border-color: #1c7430
    }

        .btn-success:not(:disabled):not(.disabled):active:focus,
        .btn-success:not(:disabled):not(.disabled).active:focus,
        .show > .btn-success.dropdown-toggle:focus {
            -webkit-box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5);
            box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
        }

.btn-info {
    color: #fff;
    background: #17a2b8 -webkit-gradient(linear, left top, left bottom, from(#3ab0c3), to(#17a2b8)) repeat-x;
    background: #17a2b8 linear-gradient(180deg, #3ab0c3, #17a2b8) repeat-x;
    border-color: #17a2b8
}

    .btn-info:hover {
        color: #fff;
        background: #138496 -webkit-gradient(linear, left top, left bottom, from(#3697a6), to(#138496)) repeat-x;
        background: #138496 linear-gradient(180deg, #3697a6, #138496) repeat-x;
        border-color: #117a8b
    }

    .btn-info:focus,
    .btn-info.focus {
        -webkit-box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
        box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
    }

    .btn-info.disabled,
    .btn-info:disabled {
        color: #fff;
        background-color: #17a2b8;
        border-color: #17a2b8
    }

    .btn-info:not(:disabled):not(.disabled):active,
    .btn-info:not(:disabled):not(.disabled).active,
    .show > .btn-info.dropdown-toggle {
        color: #fff;
        background-color: #117a8b;
        background-image: none;
        border-color: #10707f
    }

        .btn-info:not(:disabled):not(.disabled):active:focus,
        .btn-info:not(:disabled):not(.disabled).active:focus,
        .show > .btn-info.dropdown-toggle:focus {
            -webkit-box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
            box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
        }

.btn-warning {
    color: #212529;
    background: #ffc107 -webkit-gradient(linear, left top, left bottom, from(#ffca2c), to(#ffc107)) repeat-x;
    background: #ffc107 linear-gradient(180deg, #ffca2c, #ffc107) repeat-x;
    border-color: #ffc107
}

    .btn-warning:hover {
        color: #212529;
        background: #e0a800 -webkit-gradient(linear, left top, left bottom, from(#e4b526), to(#e0a800)) repeat-x;
        background: #e0a800 linear-gradient(180deg, #e4b526, #e0a800) repeat-x;
        border-color: #d39e00
    }

    .btn-warning:focus,
    .btn-warning.focus {
        -webkit-box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5);
        box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5)
    }

    .btn-warning.disabled,
    .btn-warning:disabled {
        color: #212529;
        background-color: #ffc107;
        border-color: #ffc107
    }

    .btn-warning:not(:disabled):not(.disabled):active,
    .btn-warning:not(:disabled):not(.disabled).active,
    .show > .btn-warning.dropdown-toggle {
        color: #212529;
        background-color: #d39e00;
        background-image: none;
        border-color: #c69500
    }

        .btn-warning:not(:disabled):not(.disabled):active:focus,
        .btn-warning:not(:disabled):not(.disabled).active:focus,
        .show > .btn-warning.dropdown-toggle:focus {
            -webkit-box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5);
            box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5)
        }

.btn-danger {
    color: #fff;
    background: #dc3545 -webkit-gradient(linear, left top, left bottom, from(#e15361), to(#dc3545)) repeat-x;
    background: #dc3545 linear-gradient(180deg, #e15361, #dc3545) repeat-x;
    border-color: #dc3545
}

    .btn-danger:hover {
        color: #fff;
        background: #c82333 -webkit-gradient(linear, left top, left bottom, from(#d04451), to(#c82333)) repeat-x;
        background: #c82333 linear-gradient(180deg, #d04451, #c82333) repeat-x;
        border-color: #bd2130
    }

    .btn-danger:focus,
    .btn-danger.focus {
        -webkit-box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5);
        box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
    }

    .btn-danger.disabled,
    .btn-danger:disabled {
        color: #fff;
        background-color: #dc3545;
        border-color: #dc3545
    }

    .btn-danger:not(:disabled):not(.disabled):active,
    .btn-danger:not(:disabled):not(.disabled).active,
    .show > .btn-danger.dropdown-toggle {
        color: #fff;
        background-color: #bd2130;
        background-image: none;
        border-color: #b21f2d
    }

        .btn-danger:not(:disabled):not(.disabled):active:focus,
        .btn-danger:not(:disabled):not(.disabled).active:focus,
        .show > .btn-danger.dropdown-toggle:focus {
            -webkit-box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5);
            box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
        }

.btn-light {
    color: #212529;
    background: #f8f9fa -webkit-gradient(linear, left top, left bottom, from(#f9fafb), to(#f8f9fa)) repeat-x;
    background: #f8f9fa linear-gradient(180deg, #f9fafb, #f8f9fa) repeat-x;
    border-color: #f8f9fa
}

    .btn-light:hover {
        color: #212529;
        background: #e2e6ea -webkit-gradient(linear, left top, left bottom, from(#e6eaed), to(#e2e6ea)) repeat-x;
        background: #e2e6ea linear-gradient(180deg, #e6eaed, #e2e6ea) repeat-x;
        border-color: #dae0e5
    }

    .btn-light:focus,
    .btn-light.focus {
        -webkit-box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5);
        box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
    }

    .btn-light.disabled,
    .btn-light:disabled {
        color: #212529;
        background-color: #f8f9fa;
        border-color: #f8f9fa
    }

    .btn-light:not(:disabled):not(.disabled):active,
    .btn-light:not(:disabled):not(.disabled).active,
    .show > .btn-light.dropdown-toggle {
        color: #212529;
        background-color: #dae0e5;
        background-image: none;
        border-color: #d3d9df
    }

        .btn-light:not(:disabled):not(.disabled):active:focus,
        .btn-light:not(:disabled):not(.disabled).active:focus,
        .show > .btn-light.dropdown-toggle:focus {
            -webkit-box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5);
            box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
        }

.btn-dark {
    color: #fff;
    background: #343a40 -webkit-gradient(linear, left top, left bottom, from(#52585d), to(#343a40)) repeat-x;
    background: #343a40 linear-gradient(180deg, #52585d, #343a40) repeat-x;
    border-color: #343a40
}

    .btn-dark:hover {
        color: #fff;
        background: #23272b -webkit-gradient(linear, left top, left bottom, from(#44474b), to(#23272b)) repeat-x;
        background: #23272b linear-gradient(180deg, #44474b, #23272b) repeat-x;
        border-color: #1d2124
    }

    .btn-dark:focus,
    .btn-dark.focus {
        -webkit-box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
        box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
    }

    .btn-dark.disabled,
    .btn-dark:disabled {
        color: #fff;
        background-color: #343a40;
        border-color: #343a40
    }

    .btn-dark:not(:disabled):not(.disabled):active,
    .btn-dark:not(:disabled):not(.disabled).active,
    .show > .btn-dark.dropdown-toggle {
        color: #fff;
        background-color: #1d2124;
        background-image: none;
        border-color: #171a1d
    }

        .btn-dark:not(:disabled):not(.disabled):active:focus,
        .btn-dark:not(:disabled):not(.disabled).active:focus,
        .show > .btn-dark.dropdown-toggle:focus {
            -webkit-box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
            box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
        }

.btn-outline-primary {
    color: #007bff;
    background-color: transparent;
    background-image: none;
    border-color: #007bff
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: #007bff;
        border-color: #007bff
    }

    .btn-outline-primary:focus,
    .btn-outline-primary.focus {
        -webkit-box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5);
        box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
    }

    .btn-outline-primary.disabled,
    .btn-outline-primary:disabled {
        color: #007bff;
        background-color: transparent
    }

    .btn-outline-primary:not(:disabled):not(.disabled):active,
    .btn-outline-primary:not(:disabled):not(.disabled).active,
    .show > .btn-outline-primary.dropdown-toggle {
        color: #fff;
        background-color: #007bff;
        border-color: #007bff
    }

        .btn-outline-primary:not(:disabled):not(.disabled):active:focus,
        .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
        .show > .btn-outline-primary.dropdown-toggle:focus {
            -webkit-box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5);
            box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
        }

.btn-outline-secondary {
    color: #6c757d;
    background-color: transparent;
    background-image: none;
    border-color: #6c757d
}

    .btn-outline-secondary:hover {
        color: #fff;
        background-color: #6c757d;
        border-color: #6c757d
    }

    .btn-outline-secondary:focus,
    .btn-outline-secondary.focus {
        -webkit-box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5);
        box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
    }

    .btn-outline-secondary.disabled,
    .btn-outline-secondary:disabled {
        color: #6c757d;
        background-color: transparent
    }

    .btn-outline-secondary:not(:disabled):not(.disabled):active,
    .btn-outline-secondary:not(:disabled):not(.disabled).active,
    .show > .btn-outline-secondary.dropdown-toggle {
        color: #fff;
        background-color: #6c757d;
        border-color: #6c757d
    }

        .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
        .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
        .show > .btn-outline-secondary.dropdown-toggle:focus {
            -webkit-box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5);
            box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
        }

.btn-outline-success {
    color: #28a745;
    background-color: transparent;
    background-image: none;
    border-color: #28a745
}

    .btn-outline-success:hover {
        color: #fff;
        background-color: #28a745;
        border-color: #28a745
    }

    .btn-outline-success:focus,
    .btn-outline-success.focus {
        -webkit-box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5);
        box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
    }

    .btn-outline-success.disabled,
    .btn-outline-success:disabled {
        color: #28a745;
        background-color: transparent
    }

    .btn-outline-success:not(:disabled):not(.disabled):active,
    .btn-outline-success:not(:disabled):not(.disabled).active,
    .show > .btn-outline-success.dropdown-toggle {
        color: #fff;
        background-color: #28a745;
        border-color: #28a745
    }

        .btn-outline-success:not(:disabled):not(.disabled):active:focus,
        .btn-outline-success:not(:disabled):not(.disabled).active:focus,
        .show > .btn-outline-success.dropdown-toggle:focus {
            -webkit-box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5);
            box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
        }

.btn-outline-info {
    color: #17a2b8;
    background-color: transparent;
    background-image: none;
    border-color: #17a2b8
}

    .btn-outline-info:hover {
        color: #fff;
        background-color: #17a2b8;
        border-color: #17a2b8
    }

    .btn-outline-info:focus,
    .btn-outline-info.focus {
        -webkit-box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
        box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
    }

    .btn-outline-info.disabled,
    .btn-outline-info:disabled {
        color: #17a2b8;
        background-color: transparent
    }

    .btn-outline-info:not(:disabled):not(.disabled):active,
    .btn-outline-info:not(:disabled):not(.disabled).active,
    .show > .btn-outline-info.dropdown-toggle {
        color: #fff;
        background-color: #17a2b8;
        border-color: #17a2b8
    }

        .btn-outline-info:not(:disabled):not(.disabled):active:focus,
        .btn-outline-info:not(:disabled):not(.disabled).active:focus,
        .show > .btn-outline-info.dropdown-toggle:focus {
            -webkit-box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
            box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
        }

.btn-outline-warning {
    color: #ffc107;
    background-color: transparent;
    background-image: none;
    border-color: #ffc107
}

    .btn-outline-warning:hover {
        color: #212529;
        background-color: #ffc107;
        border-color: #ffc107
    }

    .btn-outline-warning:focus,
    .btn-outline-warning.focus {
        -webkit-box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5);
        box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5)
    }

    .btn-outline-warning.disabled,
    .btn-outline-warning:disabled {
        color: #ffc107;
        background-color: transparent
    }

    .btn-outline-warning:not(:disabled):not(.disabled):active,
    .btn-outline-warning:not(:disabled):not(.disabled).active,
    .show > .btn-outline-warning.dropdown-toggle {
        color: #212529;
        background-color: #ffc107;
        border-color: #ffc107
    }

        .btn-outline-warning:not(:disabled):not(.disabled):active:focus,
        .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
        .show > .btn-outline-warning.dropdown-toggle:focus {
            -webkit-box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5);
            box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5)
        }

.btn-outline-danger {
    color: #dc3545;
    background-color: transparent;
    background-image: none;
    border-color: #dc3545
}

    .btn-outline-danger:hover {
        color: #fff;
        background-color: #dc3545;
        border-color: #dc3545
    }

    .btn-outline-danger:focus,
    .btn-outline-danger.focus {
        -webkit-box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5);
        box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
    }

    .btn-outline-danger.disabled,
    .btn-outline-danger:disabled {
        color: #dc3545;
        background-color: transparent
    }

    .btn-outline-danger:not(:disabled):not(.disabled):active,
    .btn-outline-danger:not(:disabled):not(.disabled).active,
    .show > .btn-outline-danger.dropdown-toggle {
        color: #fff;
        background-color: #dc3545;
        border-color: #dc3545
    }

        .btn-outline-danger:not(:disabled):not(.disabled):active:focus,
        .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
        .show > .btn-outline-danger.dropdown-toggle:focus {
            -webkit-box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5);
            box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
        }

.btn-outline-light {
    color: #f8f9fa;
    background-color: transparent;
    background-image: none;
    border-color: #f8f9fa
}

    .btn-outline-light:hover {
        color: #212529;
        background-color: #f8f9fa;
        border-color: #f8f9fa
    }

    .btn-outline-light:focus,
    .btn-outline-light.focus {
        -webkit-box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5);
        box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
    }

    .btn-outline-light.disabled,
    .btn-outline-light:disabled {
        color: #f8f9fa;
        background-color: transparent
    }

    .btn-outline-light:not(:disabled):not(.disabled):active,
    .btn-outline-light:not(:disabled):not(.disabled).active,
    .show > .btn-outline-light.dropdown-toggle {
        color: #212529;
        background-color: #f8f9fa;
        border-color: #f8f9fa
    }

        .btn-outline-light:not(:disabled):not(.disabled):active:focus,
        .btn-outline-light:not(:disabled):not(.disabled).active:focus,
        .show > .btn-outline-light.dropdown-toggle:focus {
            -webkit-box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5);
            box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
        }

.btn-outline-dark {
    color: #343a40;
    background-color: transparent;
    background-image: none;
    border-color: #343a40
}

    .btn-outline-dark:hover {
        color: #fff;
        background-color: #343a40;
        border-color: #343a40
    }

    .btn-outline-dark:focus,
    .btn-outline-dark.focus {
        -webkit-box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
        box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
    }

    .btn-outline-dark.disabled,
    .btn-outline-dark:disabled {
        color: #343a40;
        background-color: transparent
    }

    .btn-outline-dark:not(:disabled):not(.disabled):active,
    .btn-outline-dark:not(:disabled):not(.disabled).active,
    .show > .btn-outline-dark.dropdown-toggle {
        color: #fff;
        background-color: #343a40;
        border-color: #343a40
    }

        .btn-outline-dark:not(:disabled):not(.disabled):active:focus,
        .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
        .show > .btn-outline-dark.dropdown-toggle:focus {
            -webkit-box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
            box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
        }

.btn-link {
    font-weight: 400;
    color: #007bff;
    background-color: transparent
}

    .btn-link:hover {
        color: #0056b3;
        text-decoration: underline;
        background-color: transparent;
        border-color: transparent
    }

    .btn-link:focus,
    .btn-link.focus {
        text-decoration: underline;
        border-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .btn-link:disabled,
    .btn-link.disabled {
        color: #6c757d;
        pointer-events: none
    }

.btn-lg,
.btn-group-lg > .btn {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

.btn-sm,
.btn-group-sm > .btn {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.btn-block {
    display: block;
    width: 100%
}

    .btn-block + .btn-block {
        margin-top: .5rem
    }

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%
}

.fade {
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear
}

@media screen and (prefers-reduced-motion:reduce) {
    .fade {
        -webkit-transition: none;
        transition: none
    }
}

.fade:not(.show) {
    opacity: 0
}

.collapse:not(.show) {
    display: none
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    transition: height 0.35s ease
}

@media screen and (prefers-reduced-motion:reduce) {
    .collapsing {
        -webkit-transition: none;
        transition: none
    }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
    position: relative
}

.dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent
}

.dropdown-toggle:empty::after {
    margin-left: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem
}

.dropdown-menu-right {
    right: 0;
    left: auto
}

.dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: .125rem
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-right: .3em solid transparent;
    border-bottom: .3em solid;
    border-left: .3em solid transparent
}

.dropup .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropright .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: .125rem
}

.dropright .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: 0;
    border-bottom: .3em solid transparent;
    border-left: .3em solid
}

.dropright .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropright .dropdown-toggle::after {
    vertical-align: 0
}

.dropleft .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: .125rem
}

.dropleft .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: ""
}

.dropleft .dropdown-toggle::after {
    display: none
}

.dropleft .dropdown-toggle::before {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: .3em solid;
    border-bottom: .3em solid transparent
}

.dropleft .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropleft .dropdown-toggle::before {
    vertical-align: 0
}

.dropdown-menu[x-placement^="top"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"] {
    right: auto;
    bottom: auto
}

.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}

    .dropdown-item:hover,
    .dropdown-item:focus {
        color: #16181b;
        text-decoration: none;
        background: #f8f9fa -webkit-gradient(linear, left top, left bottom, from(#f9fafb), to(#f8f9fa)) repeat-x;
        background: #f8f9fa linear-gradient(180deg, #f9fafb, #f8f9fa) repeat-x
    }

    .dropdown-item.active,
    .dropdown-item:active {
        color: #fff;
        text-decoration: none;
        background: #007bff -webkit-gradient(linear, left top, left bottom, from(#268fff), to(#007bff)) repeat-x;
        background: #007bff linear-gradient(180deg, #268fff, #007bff) repeat-x
    }

    .dropdown-item.disabled,
    .dropdown-item:disabled {
        color: #6c757d;
        background-color: transparent;
        background-image: none
    }

.dropdown-menu.show {
    display: block
}

.dropdown-header {
    display: block;
    padding: .5rem 1.5rem;
    margin-bottom: 0;
    font-size: .875rem;
    color: #6c757d;
    white-space: nowrap
}

.dropdown-item-text {
    display: block;
    padding: .25rem 1.5rem;
    color: #212529
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle
}

    .btn-group > .btn,
    .btn-group-vertical > .btn {
        position: relative;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto
    }

        .btn-group > .btn:hover,
        .btn-group-vertical > .btn:hover {
            z-index: 1
        }

        .btn-group > .btn:focus,
        .btn-group > .btn:active,
        .btn-group > .btn.active,
        .btn-group-vertical > .btn:focus,
        .btn-group-vertical > .btn:active,
        .btn-group-vertical > .btn.active {
            z-index: 1
        }

    .btn-group .btn + .btn,
    .btn-group .btn + .btn-group,
    .btn-group .btn-group + .btn,
    .btn-group .btn-group + .btn-group,
    .btn-group-vertical .btn + .btn,
    .btn-group-vertical .btn + .btn-group,
    .btn-group-vertical .btn-group + .btn,
    .btn-group-vertical .btn-group + .btn-group {
        margin-left: -1px
    }

.btn-toolbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

    .btn-toolbar .input-group {
        width: auto
    }

.btn-group > .btn:first-child {
    margin-left: 0
}

.btn-group.dropleft > .btn:not(:first-child) {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1
}

.btn-group.dropleft > .btn:not(:first-child),
.btn-group:not(.dropleft) > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group:not(.dropleft) > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn,
.btn-group.dropleft > .btn:not(:last-child):not(.dropdown-toggle) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.dropdown-toggle-split {
    padding-right: .5625rem;
    padding-left: .5625rem
}

    .dropdown-toggle-split::after,
    .dropup .dropdown-toggle-split::after,
    .dropright .dropdown-toggle-split::after {
        margin-left: 0
    }

.dropleft .dropdown-toggle-split::before {
    margin-right: 0
}

.btn-sm + .dropdown-toggle-split,
.btn-group-sm > .btn + .dropdown-toggle-split {
    padding-right: .375rem;
    padding-left: .375rem
}

.btn-lg + .dropdown-toggle-split,
.btn-group-lg > .btn + .dropdown-toggle-split {
    padding-right: .75rem;
    padding-left: .75rem
}

.btn-group-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

    .btn-group-vertical .btn,
    .btn-group-vertical .btn-group {
        width: 100%
    }

    .btn-group-vertical > .btn + .btn,
    .btn-group-vertical > .btn + .btn-group,
    .btn-group-vertical > .btn-group + .btn,
    .btn-group-vertical > .btn-group + .btn-group {
        margin-top: -1px;
        margin-left: 0
    }

    .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
    .btn-group-vertical > .btn-group:not(:last-child) > .btn {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0
    }

    .btn-group-vertical > .btn:not(:first-child),
    .btn-group-vertical > .btn-group:not(:first-child) > .btn {
        border-top-left-radius: 0;
        border-top-right-radius: 0
    }

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
    margin-bottom: 0
}

    .btn-group-toggle > .btn input[type="radio"],
    .btn-group-toggle > .btn input[type="checkbox"],
    .btn-group-toggle > .btn-group > .btn input[type="radio"],
    .btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
        position: absolute;
        clip: rect(0, 0, 0, 0);
        pointer-events: none
    }

.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    /*z-index: -1;*/
}

    .input-group > .form-control,
    .input-group > .select2-selection--single,
    .input-group > .select2-selection--multiple,
    .input-group > .select2-search__field,
    .input-group > .file-ui {
        position: relative;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        width: 1%;
        margin-bottom: 0
    }

        .input-group > .form-control:focus,
        .input-group > .select2-selection--single:focus,
        .input-group > .select2-selection--multiple:focus,
        .input-group > .select2-search__field:focus,
        .input-group > .file-ui:focus {
            z-index: 3
        }

        .input-group > .form-control + .form-control,
        .input-group > .select2-selection--single + .form-control,
        .input-group > .select2-selection--multiple + .form-control,
        .input-group > .select2-search__field + .form-control,
        .input-group > .form-control + .select2-selection--single,
        .input-group > .select2-selection--single + .select2-selection--single,
        .input-group > .select2-selection--multiple + .select2-selection--single,
        .input-group > .select2-search__field + .select2-selection--single,
        .input-group > .form-control + .select2-selection--multiple,
        .input-group > .select2-selection--single + .select2-selection--multiple,
        .input-group > .select2-selection--multiple + .select2-selection--multiple,
        .input-group > .select2-search__field + .select2-selection--multiple,
        .input-group > .form-control + .select2-search__field,
        .input-group > .select2-selection--single + .select2-search__field,
        .input-group > .select2-selection--multiple + .select2-search__field,
        .input-group > .select2-search__field + .select2-search__field,
        .input-group > .form-control + .file-ui,
        .input-group > .select2-selection--single + .file-ui,
        .input-group > .select2-selection--multiple + .file-ui,
        .input-group > .select2-search__field + .file-ui,
        .input-group > .file-ui + .form-control,
        .input-group > .file-ui + .select2-selection--single,
        .input-group > .file-ui + .select2-selection--multiple,
        .input-group > .file-ui + .select2-search__field,
        .input-group > .file-ui + .file-ui {
            margin-left: -1px
        }

        .input-group > .form-control:not(:last-child),
        .input-group > .select2-selection--single:not(:last-child),
        .input-group > .select2-selection--multiple:not(:last-child),
        .input-group > .select2-search__field:not(:last-child) {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0
        }

        .input-group > .form-control:not(:first-child),
        .input-group > .select2-selection--single:not(:first-child),
        .input-group > .select2-selection--multiple:not(:first-child),
        .input-group > .select2-search__field:not(:first-child) {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0
        }

    .input-group > .file-ui {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

        .input-group > .file-ui:not(:last-child) .file-ui-label,
        .input-group > .file-ui:not(:last-child) .file-ui-label::after {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0
        }

        .input-group > .file-ui:not(:first-child) .file-ui-label,
        .input-group > .file-ui:not(:first-child) .file-ui-label::after {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0
        }

.input-group-prepend,
.input-group-append {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

    .input-group-prepend .btn,
    .input-group-append .btn {
        position: relative;
        z-index: 2
    }

        .input-group-prepend .btn + .btn,
        .input-group-prepend .btn + .input-group-text,
        .input-group-prepend .input-group-text + .input-group-text,
        .input-group-prepend .input-group-text + .btn,
        .input-group-append .btn + .btn,
        .input-group-append .btn + .input-group-text,
        .input-group-append .input-group-text + .input-group-text,
        .input-group-append .input-group-text + .btn {
            margin-left: -1px
        }

.input-group-prepend {
    margin-right: -1px
}

.input-group-append {
    margin-left: -1px
}

.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

    .input-group-text input[type="radio"],
    .input-group-text input[type="checkbox"] {
        margin-top: 0
    }

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.ctr-ui {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem
}

.ctr-ui-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem
}

.ctr-ui-input {
    position: absolute;
    z-index: -1;
    opacity: 0
}

    .ctr-ui-input:checked ~ .ctr-ui-label::before {
        color: #fff;
        background: #007bff -webkit-gradient(linear, left top, left bottom, from(#268fff), to(#007bff)) repeat-x;
        background: #007bff linear-gradient(180deg, #268fff, #007bff) repeat-x
    }

    .ctr-ui-input:focus ~ .ctr-ui-label::before {
        -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25);
        box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25)
    }

    .ctr-ui-input:active ~ .ctr-ui-label::before {
        color: #fff;
        background-color: #b3d7ff
    }

    .ctr-ui-input:disabled ~ .ctr-ui-label {
        color: #6c757d
    }

        .ctr-ui-input:disabled ~ .ctr-ui-label::before {
            background-color: #e9ecef
        }

.ctr-ui-label {
    margin-bottom: 0
}

    .ctr-ui-label::before {
        position: absolute;
        top: .25rem;
        left: 0;
        display: block;
        width: 1rem;
        height: 1rem;
        pointer-events: none;
        content: "";
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-color: #dee2e6
    }

    .ctr-ui-label::after {
        position: absolute;
        top: .25rem;
        left: 0;
        display: block;
        width: 1rem;
        height: 1rem;
        content: "";
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 50% 50%
    }

.checkbox-ui .ctr-ui-label::before {
    border-radius: .25rem
}

.checkbox-ui .ctr-ui-input:checked ~ .ctr-ui-label::before {
    background: #007bff -webkit-gradient(linear, left top, left bottom, from(#268fff), to(#007bff)) repeat-x;
    background: #007bff linear-gradient(180deg, #268fff, #007bff) repeat-x
}

.checkbox-ui .ctr-ui-input:checked ~ .ctr-ui-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
}

.checkbox-ui .ctr-ui-input:indeterminate ~ .ctr-ui-label::before {
    background: #007bff -webkit-gradient(linear, left top, left bottom, from(#268fff), to(#007bff)) repeat-x;
    background: #007bff linear-gradient(180deg, #268fff, #007bff) repeat-x
}

.checkbox-ui .ctr-ui-input:indeterminate ~ .ctr-ui-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")
}

.checkbox-ui .ctr-ui-input:disabled:checked ~ .ctr-ui-label::before {
    background-color: rgba(0, 123, 255, .5)
}

.checkbox-ui .ctr-ui-input:disabled:indeterminate ~ .ctr-ui-label::before {
    background-color: rgba(0, 123, 255, .5)
}

.radio-ui .ctr-ui-label::before {
    border-radius: 50%
}

.radio-ui .ctr-ui-input:checked ~ .ctr-ui-label::before {
    background: #007bff -webkit-gradient(linear, left top, left bottom, from(#268fff), to(#007bff)) repeat-x;
    background: #007bff linear-gradient(180deg, #268fff, #007bff) repeat-x
}

.radio-ui .ctr-ui-input:checked ~ .ctr-ui-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")
}

.radio-ui .ctr-ui-input:disabled:checked ~ .ctr-ui-label::before {
    background-color: rgba(0, 123, 255, .5)
}

.file-ui {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin-bottom: 0
}

.file-ui-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin: 0;
    opacity: 0
}

    .file-ui-input:focus ~ .file-ui-label {
        border-color: #80bdff;
        -webkit-box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
        box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
    }

        .file-ui-input:focus ~ .file-ui-label::after {
            border-color: #80bdff
        }

    .file-ui-input:lang(en) ~ .file-ui-label::after {
        content: "Browse"
    }

    .file-ui-input:lang(es) ~ .file-ui-label::after {
        content: "Elegir"
    }

    .file-ui-input:lang(vi) ~ .file-ui-label::after {
        content: "Duyệt"
    }

.file-ui-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

    .file-ui-label::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        display: block;
        height: calc(calc(2.25rem + 2px) - 1px * 2);
        padding: .375rem .75rem;
        line-height: 1.5;
        color: #495057;
        content: "Browse";
        background: #e9ecef -webkit-gradient(linear, left top, left bottom, from(#eceff1), to(#e9ecef)) repeat-x;
        background: #e9ecef linear-gradient(180deg, #eceff1, #e9ecef) repeat-x;
        border-left: 1px solid #ced4da;
        border-radius: 0 .25rem .25rem 0
    }

.custom-range {
    width: 100%;
    padding-left: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

    .custom-range:focus {
        outline: none
    }

    .custom-range::-moz-focus-outer {
        border: 0
    }

    .custom-range::-webkit-slider-thumb {
        width: 1rem;
        height: 1rem;
        margin-top: -.25rem;
        background: #007bff -webkit-gradient(linear, left top, left bottom, from(#268fff), to(#007bff)) repeat-x;
        background: #007bff linear-gradient(180deg, #268fff, #007bff) repeat-x;
        border: 0;
        border-radius: 1rem;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none
    }

        .custom-range::-webkit-slider-thumb:focus {
            outline: none;
            -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25);
            box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25)
        }

        .custom-range::-webkit-slider-thumb:active {
            background: #b3d7ff -webkit-gradient(linear, left top, left bottom, from(#beddff), to(#b3d7ff)) repeat-x;
            background: #b3d7ff linear-gradient(180deg, #beddff, #b3d7ff) repeat-x
        }

    .custom-range::-webkit-slider-runnable-track {
        width: 100%;
        height: .5rem;
        color: transparent;
        cursor: pointer;
        background-color: #dee2e6;
        border-color: transparent;
        border-radius: 1rem
    }

    .custom-range::-moz-range-thumb {
        width: 1rem;
        height: 1rem;
        background: #007bff linear-gradient(180deg, #268fff, #007bff) repeat-x;
        border: 0;
        border-radius: 1rem;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none
    }

        .custom-range::-moz-range-thumb:focus {
            outline: none;
            box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25)
        }

        .custom-range::-moz-range-thumb:active {
            background: #b3d7ff linear-gradient(180deg, #beddff, #b3d7ff) repeat-x
        }

    .custom-range::-moz-range-track {
        width: 100%;
        height: .5rem;
        color: transparent;
        cursor: pointer;
        background-color: #dee2e6;
        border-color: transparent;
        border-radius: 1rem
    }

    .custom-range::-ms-thumb {
        width: 1rem;
        height: 1rem;
        background: #007bff linear-gradient(180deg, #268fff, #007bff) repeat-x;
        border: 0;
        border-radius: 1rem;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none
    }

        .custom-range::-ms-thumb:focus {
            outline: none;
            box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25)
        }

        .custom-range::-ms-thumb:active {
            background: #b3d7ff linear-gradient(180deg, #beddff, #b3d7ff) repeat-x
        }

    .custom-range::-ms-track {
        width: 100%;
        height: .5rem;
        color: transparent;
        cursor: pointer;
        background-color: transparent;
        border-color: transparent;
        border-width: .5rem
    }

    .custom-range::-ms-fill-lower {
        background-color: #dee2e6;
        border-radius: 1rem
    }

    .custom-range::-ms-fill-upper {
        margin-right: 15px;
        background-color: #dee2e6;
        border-radius: 1rem
    }

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-hasChild {
    position: static
}

    .nav-hasChild .dropdown-menu {
        left: 0;
        right: 0
    }

        .nav-hasChild .dropdown-menu > .row {
            margin: 0
        }

.nav-link {
    display: block;
    padding: .5rem 1rem
}

    .nav-link:hover,
    .nav-link:focus {
        text-decoration: none
    }

    .nav-link.disabled {
        color: #6c757d
    }

.nav-tabs {
    border-bottom: 1px solid #dee2e6
}

    .nav-tabs .nav-item {
        margin-bottom: -1px
    }

    .nav-tabs .nav-link {
        border: 1px solid transparent;
        border-top-left-radius: .25rem;
        border-top-right-radius: .25rem
    }

        .nav-tabs .nav-link:hover,
        .nav-tabs .nav-link:focus {
            border-color: #e9ecef #e9ecef #dee2e6
        }

        .nav-tabs .nav-link.disabled {
            color: #6c757d;
            background-color: transparent;
            border-color: transparent
        }

        .nav-tabs .nav-link.active,
        .nav-tabs .nav-item.show .nav-link {
            color: #495057;
            background-color: #fff;
            border-color: #dee2e6 #dee2e6 #fff
        }

    .nav-tabs .dropdown-menu {
        margin-top: -1px;
        border-top-left-radius: 0;
        border-top-right-radius: 0
    }

.nav-pills .nav-link {
    border-radius: .25rem
}

    .nav-pills .nav-link.active,
    .nav-pills .show > .nav-link {
        color: #fff;
        background-color: #007bff
    }

.nav-fill .nav-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center
}

.nav-justified .nav-item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center
}

.tab-content > .tab-pane {
    display: none
}

.tab-content > .active {
    display: block
}

.navbar {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 1rem
}

    .navbar > .container,
    .navbar > .container-fluid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

.navbar-brand {
    display: inline;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap
}

    .navbar-brand:hover,
    .navbar-brand:focus {
        text-decoration: none
    }

.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

    .navbar-nav .nav-link {
        padding-right: 0;
        padding-left: 0
    }

    .navbar-nav .dropdown-menu {
        position: static;
        float: none
    }

.navbar-text {
    display: inline-block;
    padding-top: .5rem;
    padding-bottom: .5rem
}

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem
}

    .navbar-toggler:hover,
    .navbar-toggler:focus {
        text-decoration: none
    }

    .navbar-toggler:not(:disabled):not(.disabled) {
        cursor: pointer
    }

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%
}

@media (max-width:575.98px) {
    .navbar-expand-sm > .container,
    .navbar-expand-sm > .container-fluid {
        padding-right: 0;
        padding-left: 0
    }
}

@media (min-width:576px) {
    .navbar-expand-sm {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

        .navbar-expand-sm .navbar-nav {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row
        }

            .navbar-expand-sm .navbar-nav .dropdown-menu {
                position: absolute
            }

            .navbar-expand-sm .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem
            }

        .navbar-expand-sm > .container,
        .navbar-expand-sm > .container-fluid {
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap
        }

        .navbar-expand-sm .navbar-collapse {
            display: -webkit-box !important;
            display: -ms-flexbox !important;
            display: flex !important;
            -ms-flex-preferred-size: auto;
            flex-basis: auto
        }

        .navbar-expand-sm .navbar-toggler {
            display: none
        }
}

@media (max-width:767.98px) {
    .navbar-expand-md > .container,
    .navbar-expand-md > .container-fluid {
        padding-right: 0;
        padding-left: 0
    }
}

@media (min-width:768px) {
    .navbar-expand-md {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

        .navbar-expand-md .navbar-nav {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row
        }

            .navbar-expand-md .navbar-nav .dropdown-menu {
                position: absolute
            }

            .navbar-expand-md .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem
            }

        .navbar-expand-md > .container,
        .navbar-expand-md > .container-fluid {
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap
        }

        .navbar-expand-md .navbar-collapse {
            display: -webkit-box !important;
            display: -ms-flexbox !important;
            display: flex !important;
            -ms-flex-preferred-size: auto;
            flex-basis: auto
        }

        .navbar-expand-md .navbar-toggler {
            display: none
        }
}

@media (max-width:991.98px) {
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
        padding-right: 0;
        padding-left: 0
    }
}

@media (min-width:992px) {
    .navbar-expand-lg {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

        .navbar-expand-lg .navbar-nav {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row
        }

            .navbar-expand-lg .navbar-nav .dropdown-menu {
                position: absolute
            }

            .navbar-expand-lg .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem;
            }

        .navbar-expand-lg > .container,
        .navbar-expand-lg > .container-fluid {
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap
        }

        .navbar-expand-lg .navbar-collapse {
            display: -webkit-box !important;
            display: -ms-flexbox !important;
            display: flex !important;
            -ms-flex-preferred-size: auto;
            flex-basis: auto
        }

        .navbar-expand-lg .navbar-toggler {
            display: none
        }
}

@media (max-width:1199.98px) {
    .navbar-expand-xl > .container,
    .navbar-expand-xl > .container-fluid {
        padding-right: 0;
        padding-left: 0
    }
}

@media (min-width:1200px) {
    .navbar-expand-xl {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

        .navbar-expand-xl .navbar-nav {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row
        }

            .navbar-expand-xl .navbar-nav .dropdown-menu {
                position: absolute
            }

            .navbar-expand-xl .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem
            }

        .navbar-expand-xl > .container,
        .navbar-expand-xl > .container-fluid {
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap
        }

        .navbar-expand-xl .navbar-collapse {
            display: -webkit-box !important;
            display: -ms-flexbox !important;
            display: flex !important;
            -ms-flex-preferred-size: auto;
            flex-basis: auto
        }

        .navbar-expand-xl .navbar-toggler {
            display: none
        }
}

.navbar-expand {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

    .navbar-expand > .container,
    .navbar-expand > .container-fluid {
        padding-right: 0;
        padding-left: 0
    }

    .navbar-expand .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

        .navbar-expand .navbar-nav .dropdown-menu {
            position: absolute
        }

        .navbar-expand .navbar-nav .nav-link {
            padding-right: .5rem;
            padding-left: .5rem
        }

    .navbar-expand > .container,
    .navbar-expand > .container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .navbar-expand .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand .navbar-toggler {
        display: none
    }

.navbar-light .navbar-brand {
    color: rgba(0, 0, 0, .9)
}

    .navbar-light .navbar-brand:hover,
    .navbar-light .navbar-brand:focus {
        color: rgba(0, 0, 0, .9)
    }

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, .5)
}

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link:focus {
        color: rgba(0, 0, 0, .7)
    }

    .navbar-light .navbar-nav .nav-link.disabled {
        color: rgba(0, 0, 0, .3)
    }

    .navbar-light .navbar-nav .show > .nav-link,
    .navbar-light .navbar-nav .active > .nav-link,
    .navbar-light .navbar-nav .nav-link.show,
    .navbar-light .navbar-nav .nav-link.active {
        color: rgba(0, 0, 0, .9)
    }

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, .5);
    border-color: rgba(0, 0, 0, .1)
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}

.navbar-light .navbar-text {
    color: rgba(0, 0, 0, .5)
}

    .navbar-light .navbar-text a {
        color: rgba(0, 0, 0, .9)
    }

        .navbar-light .navbar-text a:hover,
        .navbar-light .navbar-text a:focus {
            color: rgba(0, 0, 0, .9)
        }

.navbar-dark .navbar-brand {
    color: #fff
}

    .navbar-dark .navbar-brand:hover,
    .navbar-dark .navbar-brand:focus {
        color: #fff
    }

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, .5)
}

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link:focus {
        color: rgba(255, 255, 255, .75)
    }

    .navbar-dark .navbar-nav .nav-link.disabled {
        color: rgba(255, 255, 255, .25)
    }

    .navbar-dark .navbar-nav .show > .nav-link,
    .navbar-dark .navbar-nav .active > .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .navbar-dark .navbar-nav .nav-link.active {
        color: #fff
    }

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, .5);
    border-color: rgba(255, 255, 255, .1)
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}

.navbar-dark .navbar-text {
    color: rgba(255, 255, 255, .5)
}

    .navbar-dark .navbar-text a {
        color: #fff
    }

        .navbar-dark .navbar-text a:hover,
        .navbar-dark .navbar-text a:focus {
            color: #fff
        }

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem
}

    .card > hr {
        margin-right: 0;
        margin-left: 0
    }

    .card > .list-group:first-child .list-group-item:first-child {
        border-top-left-radius: .25rem;
        border-top-right-radius: .25rem
    }

    .card > .list-group:last-child .list-group-item:last-child {
        border-bottom-right-radius: .25rem;
        border-bottom-left-radius: .25rem
    }

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem
}

.card-title {
    margin-bottom: .75rem
}

.card-subtitle {
    margin-top: -.375rem;
    margin-bottom: 0
}

.card-text:last-child {
    margin-bottom: 0
}

.card-link:hover {
    text-decoration: none
}

.card-link + .card-link {
    margin-left: 1.25rem
}

.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .125)
}

    .card-header:first-child {
        border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0
    }

    .card-header + .list-group .list-group-item:first-child {
        border-top: 0
    }

.card-footer {
    padding: .75rem 1.25rem;
    background-color: rgba(0, 0, 0, .03);
    border-top: 1px solid rgba(0, 0, 0, .125)
}

    .card-footer:last-child {
        border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)
    }

.card-header-tabs {
    margin-right: -.625rem;
    margin-bottom: -.75rem;
    margin-left: -.625rem;
    border-bottom: 0
}

.card-header-pills {
    margin-right: -.625rem;
    margin-left: -.625rem
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem
}

.card-img {
    width: 100%;
    border-radius: calc(0.25rem - 1px)
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px)
}

.card-img-bottom {
    width: 100%;
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px)
}

.card-deck {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

    .card-deck .card {
        margin-bottom: 15px
    }

@media (min-width:576px) {
    .card-deck {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px
    }

        .card-deck .card {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-flex: 1;
            -ms-flex: 1 0 0%;
            flex: 1 0 0%;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            margin-right: 15px;
            margin-bottom: 0;
            margin-left: 15px
        }
}

.card-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

    .card-group > .card {
        margin-bottom: 15px
    }

@media (min-width:576px) {
    .card-group {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap
    }

        .card-group > .card {
            -webkit-box-flex: 1;
            -ms-flex: 1 0 0%;
            flex: 1 0 0%;
            margin-bottom: 0
        }

            .card-group > .card + .card {
                margin-left: 0;
                border-left: 0
            }

            .card-group > .card:first-child {
                border-top-right-radius: 0;
                border-bottom-right-radius: 0
            }

                .card-group > .card:first-child .card-img-top,
                .card-group > .card:first-child .card-header {
                    border-top-right-radius: 0
                }

                .card-group > .card:first-child .card-img-bottom,
                .card-group > .card:first-child .card-footer {
                    border-bottom-right-radius: 0
                }

            .card-group > .card:last-child {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0
            }

                .card-group > .card:last-child .card-img-top,
                .card-group > .card:last-child .card-header {
                    border-top-left-radius: 0
                }

                .card-group > .card:last-child .card-img-bottom,
                .card-group > .card:last-child .card-footer {
                    border-bottom-left-radius: 0
                }

            .card-group > .card:only-child {
                border-radius: .25rem
            }

                .card-group > .card:only-child .card-img-top,
                .card-group > .card:only-child .card-header {
                    border-top-left-radius: .25rem;
                    border-top-right-radius: .25rem
                }

                .card-group > .card:only-child .card-img-bottom,
                .card-group > .card:only-child .card-footer {
                    border-bottom-right-radius: .25rem;
                    border-bottom-left-radius: .25rem
                }

            .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
                border-radius: 0
            }

                .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
                .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
                .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
                .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
                    border-radius: 0
                }
}

.card-columns .card {
    margin-bottom: .75rem
}

@media (min-width:576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1
    }

        .card-columns .card {
            display: inline-block;
            width: 100%
        }
}

.accordion .card:not(:first-of-type):not(:last-of-type) {
    border-bottom: 0;
    border-radius: 0
}

.accordion .card:not(:first-of-type) .card-header:first-child {
    border-radius: 0
}

.accordion .card:first-of-type {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.accordion .card:last-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: .25rem
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: .5rem
}

    .breadcrumb-item + .breadcrumb-item::before {
        display: inline-block;
        padding-right: .5rem;
        color: #6c757d;
        content: "/"
    }

    .breadcrumb-item + .breadcrumb-item:hover::before {
        text-decoration: underline
    }

    .breadcrumb-item + .breadcrumb-item:hover::before {
        text-decoration: none
    }

.breadcrumb-item.active {
    color: #6c757d
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6
}

    .page-link:hover {
        z-index: 2;
        color: #0056b3;
        text-decoration: none;
        background-color: #e9ecef;
        border-color: #dee2e6
    }

    .page-link:focus {
        z-index: 2;
        outline: 0;
        -webkit-box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
        box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
    }

    .page-link:not(:disabled):not(.disabled) {
        cursor: pointer
    }

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6
}

.pagination-lg .page-link {
    padding: .75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: .3rem;
    border-bottom-left-radius: .3rem
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem
}

.pagination-sm .page-link {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem
}

.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem
}

    .badge:empty {
        display: none
    }

.btn .badge {
    position: relative;
    top: -1px
}

.badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem
}

.badge-primary {
    color: #fff;
    background-color: #007bff
}

    .badge-primary[href]:hover,
    .badge-primary[href]:focus {
        color: #fff;
        text-decoration: none;
        background-color: #0062cc
    }

.badge-secondary {
    color: #fff;
    background-color: #6c757d
}

    .badge-secondary[href]:hover,
    .badge-secondary[href]:focus {
        color: #fff;
        text-decoration: none;
        background-color: #545b62
    }

.badge-success {
    color: #fff;
    background-color: #28a745
}

    .badge-success[href]:hover,
    .badge-success[href]:focus {
        color: #fff;
        text-decoration: none;
        background-color: #1e7e34
    }

.badge-info {
    color: #fff;
    background-color: #17a2b8
}

    .badge-info[href]:hover,
    .badge-info[href]:focus {
        color: #fff;
        text-decoration: none;
        background-color: #117a8b
    }

.badge-warning {
    color: #212529;
    background-color: #ffc107
}

    .badge-warning[href]:hover,
    .badge-warning[href]:focus {
        color: #212529;
        text-decoration: none;
        background-color: #d39e00
    }

.badge-danger {
    color: #fff;
    background-color: #dc3545
}

    .badge-danger[href]:hover,
    .badge-danger[href]:focus {
        color: #fff;
        text-decoration: none;
        background-color: #bd2130
    }

.badge-light {
    color: #212529;
    background-color: #f8f9fa
}

    .badge-light[href]:hover,
    .badge-light[href]:focus {
        color: #212529;
        text-decoration: none;
        background-color: #dae0e5
    }

.badge-dark {
    color: #fff;
    background-color: #343a40
}

    .badge-dark[href]:hover,
    .badge-dark[href]:focus {
        color: #fff;
        text-decoration: none;
        background-color: #1d2124
    }

.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: .3rem
}

@media (min-width:576px) {
    .jumbotron {
        padding: 4rem 2rem
    }
}

.jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem
}

.alert-heading {
    color: inherit
}

.alert-link {
    font-weight: 700
}

.alert-dismissible {
    padding-right: 4rem
}

    .alert-dismissible .close {
        position: absolute;
        top: 0;
        right: 0;
        padding: .75rem 1.25rem;
        color: inherit
    }

.alert-primary {
    color: #004085;
    background: #cce5ff -webkit-gradient(linear, left top, left bottom, from(#d4e9ff), to(#cce5ff)) repeat-x;
    background: #cce5ff linear-gradient(180deg, #d4e9ff, #cce5ff) repeat-x;
    border-color: #b8daff
}

    .alert-primary hr {
        border-top-color: #9fcdff
    }

    .alert-primary .alert-link {
        color: #002752
    }

.alert-secondary {
    color: #383d41;
    background: #e2e3e5 -webkit-gradient(linear, left top, left bottom, from(#e6e7e9), to(#e2e3e5)) repeat-x;
    background: #e2e3e5 linear-gradient(180deg, #e6e7e9, #e2e3e5) repeat-x;
    border-color: #d6d8db
}

    .alert-secondary hr {
        border-top-color: #c8cbcf
    }

    .alert-secondary .alert-link {
        color: #202326
    }

.alert-success {
    color: #155724;
    background: #d4edda -webkit-gradient(linear, left top, left bottom, from(#daf0e0), to(#d4edda)) repeat-x;
    background: #d4edda linear-gradient(180deg, #daf0e0, #d4edda) repeat-x;
    border-color: #c3e6cb
}

    .alert-success hr {
        border-top-color: #b1dfbb
    }

    .alert-success .alert-link {
        color: #0b2e13
    }

.alert-info {
    color: #0c5460;
    background: #d1ecf1 -webkit-gradient(linear, left top, left bottom, from(#d8eff3), to(#d1ecf1)) repeat-x;
    background: #d1ecf1 linear-gradient(180deg, #d8eff3, #d1ecf1) repeat-x;
    border-color: #bee5eb
}

    .alert-info hr {
        border-top-color: #abdde5
    }

    .alert-info .alert-link {
        color: #062c33
    }

.alert-warning {
    color: #856404;
    background: #fff3cd -webkit-gradient(linear, left top, left bottom, from(#fff5d5), to(#fff3cd)) repeat-x;
    background: #fff3cd linear-gradient(180deg, #fff5d5, #fff3cd) repeat-x;
    border-color: #ffeeba
}

    .alert-warning hr {
        border-top-color: #ffe8a1
    }

    .alert-warning .alert-link {
        color: #533f03
    }

.alert-danger {
    color: #721c24;
    background: #f8d7da -webkit-gradient(linear, left top, left bottom, from(#f9dde0), to(#f8d7da)) repeat-x;
    background: #f8d7da linear-gradient(180deg, #f9dde0, #f8d7da) repeat-x;
    border-color: #f5c6cb
}

    .alert-danger hr {
        border-top-color: #f1b0b7
    }

    .alert-danger .alert-link {
        color: #491217
    }

.alert-light {
    color: #818182;
    background: #fefefe -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#fefefe)) repeat-x;
    background: #fefefe linear-gradient(180deg, #fefefe, #fefefe) repeat-x;
    border-color: #fdfdfe
}

    .alert-light hr {
        border-top-color: #ececf6
    }

    .alert-light .alert-link {
        color: #686868
    }

.alert-dark {
    color: #1b1e21;
    background: #d6d8d9 -webkit-gradient(linear, left top, left bottom, from(#dcdedf), to(#d6d8d9)) repeat-x;
    background: #d6d8d9 linear-gradient(180deg, #dcdedf, #d6d8d9) repeat-x;
    border-color: #c6c8ca
}

    .alert-dark hr {
        border-top-color: #b9bbbe
    }

    .alert-dark .alert-link {
        color: #040505
    }

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0
    }

    to {
        background-position: 0 0
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0
    }

    to {
        background-position: 0 0
    }
}

.progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem
}

.progress-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    -webkit-transition: width 0.6s ease;
    transition: width 0.6s ease
}

@media screen and (prefers-reduced-motion:reduce) {
    .progress-bar {
        -webkit-transition: none;
        transition: none
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem
}

.progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite
}

.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.media-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit
}

    .list-group-item-action:hover,
    .list-group-item-action:focus {
        color: #495057;
        text-decoration: none;
        background-color: #f8f9fa
    }

    .list-group-item-action:active {
        color: #212529;
        background-color: #e9ecef
    }

.list-group-item {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125)
}

    .list-group-item:first-child {
        border-top-left-radius: .25rem;
        border-top-right-radius: .25rem
    }

    .list-group-item:last-child {
        margin-bottom: 0;
        border-bottom-right-radius: .25rem;
        border-bottom-left-radius: .25rem
    }

    .list-group-item:hover,
    .list-group-item:focus {
        z-index: 1;
        text-decoration: none
    }

    .list-group-item.disabled,
    .list-group-item:disabled {
        color: #6c757d;
        background-color: #fff
    }

    .list-group-item.active {
        z-index: 2;
        color: #fff;
        background-color: #007bff;
        border-color: #007bff
    }

.list-group-flush .list-group-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0
}

.list-group-flush:first-child .list-group-item:first-child {
    border-top: 0
}

.list-group-flush:last-child .list-group-item:last-child {
    border-bottom: 0
}

.list-group-item-primary {
    color: #004085;
    background-color: #b8daff
}

    .list-group-item-primary.list-group-item-action:hover,
    .list-group-item-primary.list-group-item-action:focus {
        color: #004085;
        background-color: #9fcdff
    }

    .list-group-item-primary.list-group-item-action.active {
        color: #fff;
        background-color: #004085;
        border-color: #004085
    }

.list-group-item-secondary {
    color: #383d41;
    background-color: #d6d8db
}

    .list-group-item-secondary.list-group-item-action:hover,
    .list-group-item-secondary.list-group-item-action:focus {
        color: #383d41;
        background-color: #c8cbcf
    }

    .list-group-item-secondary.list-group-item-action.active {
        color: #fff;
        background-color: #383d41;
        border-color: #383d41
    }

.list-group-item-success {
    color: #155724;
    background-color: #c3e6cb
}

    .list-group-item-success.list-group-item-action:hover,
    .list-group-item-success.list-group-item-action:focus {
        color: #155724;
        background-color: #b1dfbb
    }

    .list-group-item-success.list-group-item-action.active {
        color: #fff;
        background-color: #155724;
        border-color: #155724
    }

.list-group-item-info {
    color: #0c5460;
    background-color: #bee5eb
}

    .list-group-item-info.list-group-item-action:hover,
    .list-group-item-info.list-group-item-action:focus {
        color: #0c5460;
        background-color: #abdde5
    }

    .list-group-item-info.list-group-item-action.active {
        color: #fff;
        background-color: #0c5460;
        border-color: #0c5460
    }

.list-group-item-warning {
    color: #856404;
    background-color: #ffeeba
}

    .list-group-item-warning.list-group-item-action:hover,
    .list-group-item-warning.list-group-item-action:focus {
        color: #856404;
        background-color: #ffe8a1
    }

    .list-group-item-warning.list-group-item-action.active {
        color: #fff;
        background-color: #856404;
        border-color: #856404
    }

.list-group-item-danger {
    color: #721c24;
    background-color: #f5c6cb
}

    .list-group-item-danger.list-group-item-action:hover,
    .list-group-item-danger.list-group-item-action:focus {
        color: #721c24;
        background-color: #f1b0b7
    }

    .list-group-item-danger.list-group-item-action.active {
        color: #fff;
        background-color: #721c24;
        border-color: #721c24
    }

.list-group-item-light {
    color: #818182;
    background-color: #fdfdfe
}

    .list-group-item-light.list-group-item-action:hover,
    .list-group-item-light.list-group-item-action:focus {
        color: #818182;
        background-color: #ececf6
    }

    .list-group-item-light.list-group-item-action.active {
        color: #fff;
        background-color: #818182;
        border-color: #818182
    }

.list-group-item-dark {
    color: #1b1e21;
    background-color: #c6c8ca
}

    .list-group-item-dark.list-group-item-action:hover,
    .list-group-item-dark.list-group-item-action:focus {
        color: #1b1e21;
        background-color: #b9bbbe
    }

    .list-group-item-dark.list-group-item-action.active {
        color: #fff;
        background-color: #1b1e21;
        border-color: #1b1e21
    }
/*<--Taken this code Start  -->*/
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        opacity: .75
    }

    .close:not(:disabled):not(.disabled) {
        cursor: pointer
    }

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none
}

.modal-open {
    overflow: hidden
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%)
}

@media screen and (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        -webkit-transition: none;
        transition: none
    }
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2))
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

    .modal-backdrop.fade {
        opacity: 0
    }

    .modal-backdrop.show {
        opacity: .5
    }

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem
}

    .modal-header .close {
        padding: 1rem;
        margin: -1rem -1rem -1rem auto
    }

.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef
}

    .modal-footer > :not(:first-child) {
        margin-left: .25rem
    }

    .modal-footer > :not(:last-child) {
        margin-right: .25rem
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width:576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto
    }

    .modal-dialog-centered {
        min-height: calc(100% - (1.75rem * 2))
    }

    .modal-sm {
        max-width: 300px
    }
}

@media (min-width:992px) {
    .modal-lg {
        max-width: 800px
    }

    .modal-xl {
        max-width: 1140px
    }
}
/*<--Taken this code End  -->*/
.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    opacity: 0
}

    .tooltip.show {
        opacity: .9
    }

    .tooltip .arrow {
        position: absolute;
        display: block;
        width: .8rem;
        height: .4rem
    }

        .tooltip .arrow::before {
            position: absolute;
            content: "";
            border-color: transparent;
            border-style: solid
        }

.bs-tooltip-top,
.bs-tooltip-auto[x-placement^="top"] {
    padding: .4rem 0
}

    .bs-tooltip-top .arrow,
    .bs-tooltip-auto[x-placement^="top"] .arrow {
        bottom: 0
    }

        .bs-tooltip-top .arrow::before,
        .bs-tooltip-auto[x-placement^="top"] .arrow::before {
            top: 0;
            border-width: .4rem .4rem 0;
            border-top-color: #000
        }

.bs-tooltip-right,
.bs-tooltip-auto[x-placement^="right"] {
    padding: 0 .4rem
}

    .bs-tooltip-right .arrow,
    .bs-tooltip-auto[x-placement^="right"] .arrow {
        left: 0;
        width: .4rem;
        height: .8rem
    }

        .bs-tooltip-right .arrow::before,
        .bs-tooltip-auto[x-placement^="right"] .arrow::before {
            right: 0;
            border-width: .4rem .4rem .4rem 0;
            border-right-color: #000
        }

.bs-tooltip-bottom,
.bs-tooltip-auto[x-placement^="bottom"] {
    padding: .4rem 0
}

    .bs-tooltip-bottom .arrow,
    .bs-tooltip-auto[x-placement^="bottom"] .arrow {
        top: 0
    }

        .bs-tooltip-bottom .arrow::before,
        .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
            bottom: 0;
            border-width: 0 .4rem .4rem;
            border-bottom-color: #000
        }

.bs-tooltip-left,
.bs-tooltip-auto[x-placement^="left"] {
    padding: 0 .4rem
}

    .bs-tooltip-left .arrow,
    .bs-tooltip-auto[x-placement^="left"] .arrow {
        right: 0;
        width: .4rem;
        height: .8rem
    }

        .bs-tooltip-left .arrow::before,
        .bs-tooltip-auto[x-placement^="left"] .arrow::before {
            left: 0;
            border-width: .4rem 0 .4rem .4rem;
            border-left-color: #000
        }

.tooltip-inner {
    max-width: 200px;
    padding: .25rem .5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: .25rem
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: block;
    max-width: 276px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem
}

    .popover .arrow {
        position: absolute;
        display: block;
        width: 1rem;
        height: .5rem;
        margin: 0 .3rem
    }

        .popover .arrow::before,
        .popover .arrow::after {
            position: absolute;
            display: block;
            content: "";
            border-color: transparent;
            border-style: solid
        }

.bs-popover-top,
.bs-popover-auto[x-placement^="top"] {
    margin-bottom: .5rem
}

    .bs-popover-top .arrow,
    .bs-popover-auto[x-placement^="top"] .arrow {
        bottom: calc((0.5rem + 1px) * -1)
    }

        .bs-popover-top .arrow::before,
        .bs-popover-auto[x-placement^="top"] .arrow::before,
        .bs-popover-top .arrow::after,
        .bs-popover-auto[x-placement^="top"] .arrow::after {
            border-width: .5rem .5rem 0
        }

        .bs-popover-top .arrow::before,
        .bs-popover-auto[x-placement^="top"] .arrow::before {
            bottom: 0;
            border-top-color: rgba(0, 0, 0, .25)
        }

        .bs-popover-top .arrow::after,
        .bs-popover-auto[x-placement^="top"] .arrow::after {
            bottom: 1px;
            border-top-color: #fff
        }

.bs-popover-right,
.bs-popover-auto[x-placement^="right"] {
    margin-left: .5rem
}

    .bs-popover-right .arrow,
    .bs-popover-auto[x-placement^="right"] .arrow {
        left: calc((0.5rem + 1px) * -1);
        width: .5rem;
        height: 1rem;
        margin: .3rem 0
    }

        .bs-popover-right .arrow::before,
        .bs-popover-auto[x-placement^="right"] .arrow::before,
        .bs-popover-right .arrow::after,
        .bs-popover-auto[x-placement^="right"] .arrow::after {
            border-width: .5rem .5rem .5rem 0
        }

        .bs-popover-right .arrow::before,
        .bs-popover-auto[x-placement^="right"] .arrow::before {
            left: 0;
            border-right-color: rgba(0, 0, 0, .25)
        }

        .bs-popover-right .arrow::after,
        .bs-popover-auto[x-placement^="right"] .arrow::after {
            left: 1px;
            border-right-color: #fff
        }

.bs-popover-bottom,
.bs-popover-auto[x-placement^="bottom"] {
    margin-top: .5rem
}

    .bs-popover-bottom .arrow,
    .bs-popover-auto[x-placement^="bottom"] .arrow {
        top: calc((0.5rem + 1px) * -1)
    }

        .bs-popover-bottom .arrow::before,
        .bs-popover-auto[x-placement^="bottom"] .arrow::before,
        .bs-popover-bottom .arrow::after,
        .bs-popover-auto[x-placement^="bottom"] .arrow::after {
            border-width: 0 .5rem .5rem .5rem
        }

        .bs-popover-bottom .arrow::before,
        .bs-popover-auto[x-placement^="bottom"] .arrow::before {
            top: 0;
            border-bottom-color: rgba(0, 0, 0, .25)
        }

        .bs-popover-bottom .arrow::after,
        .bs-popover-auto[x-placement^="bottom"] .arrow::after {
            top: 1px;
            border-bottom-color: #fff
        }

    .bs-popover-bottom .popover-header::before,
    .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
        position: absolute;
        top: 0;
        left: 50%;
        display: block;
        width: 1rem;
        margin-left: -.5rem;
        content: "";
        border-bottom: 1px solid #f7f7f7
    }

.bs-popover-left,
.bs-popover-auto[x-placement^="left"] {
    margin-right: .5rem
}

    .bs-popover-left .arrow,
    .bs-popover-auto[x-placement^="left"] .arrow {
        right: calc((0.5rem + 1px) * -1);
        width: .5rem;
        height: 1rem;
        margin: .3rem 0
    }

        .bs-popover-left .arrow::before,
        .bs-popover-auto[x-placement^="left"] .arrow::before,
        .bs-popover-left .arrow::after,
        .bs-popover-auto[x-placement^="left"] .arrow::after {
            border-width: .5rem 0 .5rem .5rem
        }

        .bs-popover-left .arrow::before,
        .bs-popover-auto[x-placement^="left"] .arrow::before {
            right: 0;
            border-left-color: rgba(0, 0, 0, .25)
        }

        .bs-popover-left .arrow::after,
        .bs-popover-auto[x-placement^="left"] .arrow::after {
            right: 1px;
            border-left-color: #fff
        }

.popover-header {
    padding: .5rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: inherit;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px)
}

    .popover-header:empty {
        display: none
    }

.popover-body {
    padding: .5rem .75rem;
    color: #212529
}

.carousel {
    position: relative
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

.carousel-item {
    position: relative;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px
}

@media screen and (prefers-reduced-motion:reduce) {
    .carousel-item {
        -webkit-transition: none;
        transition: none
    }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block
}

.carousel-item-next,
.carousel-item-prev {
    position: absolute;
    top: 0
}

    .carousel-item-next.carousel-item-left,
    .carousel-item-prev.carousel-item-right {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

@supports (transform-style:preserve-3d) {
    .carousel-item-next.carousel-item-left,
    .carousel-item-prev.carousel-item-right {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.carousel-item-next,
.active.carousel-item-right {
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
}

@supports (transform-style:preserve-3d) {
    .carousel-item-next,
    .active.carousel-item-right {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

.carousel-item-prev,
.active.carousel-item-left {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

@supports (transform-style:preserve-3d) {
    .carousel-item-prev,
    .active.carousel-item-left {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

.carousel-fade .carousel-item {
    opacity: 0;
    -webkit-transition-duration: .6s;
    transition-duration: .6s;
    -webkit-transition-property: opacity;
    transition-property: opacity
}

    .carousel-fade .carousel-item.active,
    .carousel-fade .carousel-item-next.carousel-item-left,
    .carousel-fade .carousel-item-prev.carousel-item-right {
        opacity: 1
    }

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    opacity: 0
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

@supports (transform-style:preserve-3d) {
    .carousel-fade .carousel-item-next,
    .carousel-fade .carousel-item-prev,
    .carousel-fade .carousel-item.active,
    .carousel-fade .active.carousel-item-left,
    .carousel-fade .active.carousel-item-prev {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: .5
}

    .carousel-control-prev:hover,
    .carousel-control-prev:focus,
    .carousel-control-next:hover,
    .carousel-control-next:focus {
        color: #fff;
        text-decoration: none;
        outline: 0;
        opacity: .9
    }

.carousel-control-prev {
    left: 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .25)), to(rgba(0, 0, 0, .001)));
    background: linear-gradient(90deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .001))
}

.carousel-control-next {
    right: 0;
    background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .25)), to(rgba(0, 0, 0, .001)));
    background: linear-gradient(270deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .001))
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent no-repeat center center;
    background-size: 100% 100%
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none
}

    .carousel-indicators li {
        position: relative;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        width: 30px;
        height: 3px;
        margin-right: 3px;
        margin-left: 3px;
        text-indent: -999px;
        background-color: rgba(255, 255, 255, .5)
    }

        .carousel-indicators li::before {
            position: absolute;
            top: -10px;
            left: 0;
            display: inline-block;
            width: 100%;
            height: 10px;
            content: ""
        }

        .carousel-indicators li::after {
            position: absolute;
            bottom: -10px;
            left: 0;
            display: inline-block;
            width: 100%;
            height: 10px;
            content: ""
        }

    .carousel-indicators .active {
        background-color: #fff
    }

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center
}

.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0
}

    .slick-list:focus {
        outline: none
    }

    .slick-list.dragging {
        cursor: pointer;
        cursor: hand
    }

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

    .slick-track:before,
    .slick-track:after {
        content: "";
        display: table
    }

    .slick-track:after {
        clear: both
    }

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none
}

[dir="rtl"] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #000;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease
}

    .slick-lightbox .slick-loading .slick-list {
        background-color: transparent
    }

    .slick-lightbox .slick-prev {
        left: 15px
    }

    .slick-lightbox .slick-next {
        right: 15px
    }

.slick-lightbox-hide {
    opacity: 0
}

    .slick-lightbox-hide.slick-lightbox-ie {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0)
    }

.slick-lightbox-hide-init {
    position: absolute;
    top: -9999px;
    opacity: 0
}

    .slick-lightbox-hide-init.slick-lightbox-ie {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0)
    }

.slick-lightbox-inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.slick-lightbox-slick-item {
    text-align: center;
    overflow: hidden
}

    .slick-lightbox-slick-item:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -.25em
    }

.slick-caption-bottom .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
    margin-bottom: 20px
}

.slick-caption-dynamic .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
    display: block;
    text-align: center
}

.slick-lightbox-slick-item-inner {
    display: inline-block;
    vertical-align: middle;
    max-width: 90%;
    max-height: 90%
}

.slick-lightbox-slick-img {
    margin: 0 auto;
    display: block;
    max-width: 90%;
    max-height: 90%
}

.slick-lightbox-slick-caption {
    margin: 10px 0 0;
    color: #fff
}

.slick-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: transparent;
    color: transparent;
    padding: 0;
    border: none
}

    .slick-lightbox-close:focus {
        outline: none
    }

    .slick-lightbox-close:before {
        font-family: "slick";
        font-size: 20px;
        line-height: 1;
        color: #fff;
        opacity: .85;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: '×'
    }

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    z-index: 2;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent
}

    .slick-prev:hover,
    .slick-prev:focus,
    .slick-next:hover,
    .slick-next:focus {
        color: transparent;
        outline: none;
        background: transparent
    }

        .slick-prev:hover:before,
        .slick-prev:focus:before,
        .slick-next:hover:before,
        .slick-next:focus:before {
            opacity: 1
        }

    .slick-prev.slick-disabled:before,
    .slick-next.slick-disabled:before {
        opacity: .25
    }

    .slick-prev:before,
    .slick-next:before {
        font-family: 'slick';
        font-size: 20px;
        line-height: 1;
        opacity: .75;
        color: #fff;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale
    }

.slick-prev {
    left: -25px
}

    .slick-prev:before {
        content: '←'
    }

.slick-next {
    right: -25px
}

    .slick-next:before {
        content: '→'
    }

[dir='rtl'] .slick-next:before {
    content: '←'
}

.slick-arrow {
    position: absolute;
    top: 50%;
    width: 3em;
    border-radius: 50%;
    margin-top: -1.5em;
    background: #fff;
    cursor: pointer;
    -webkit-box-shadow: 0 .1875em 1.25em rgba(0, 0, 0, .16);
    box-shadow: 0 .1875em 1.25em rgba(0, 0, 0, .16);
    z-index: 1;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out
}

@media screen and (prefers-reduced-motion:reduce) {
    .slick-arrow {
        -webkit-transition: none;
        transition: none
    }
}

.slick-arrow:before,
.slick-arrow:after {
    content: "";
    display: block
}

.slick-arrow:after {
    padding-top: 100%
}

.slick-arrow:before {
    width: 1em;
    height: 1.08125em;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -.54063em;
    margin-left: -.5em;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat
}

.slick-arrow--prev {
    left: 0
}

    .slick-arrow--prev:before {
        margin-left: -.59375em;
        background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.36 17.301'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23d8a079; %7D %3C/style%3E%3C/defs%3E%3Cpath id='Path_249' data-name='Path 249' class='cls-1' d='M1.617,17.3A1.645,1.645,0,0,1,0,15.441V1.859A1.688,1.688,0,0,1,1.617,0,1.778,1.778,0,0,1,2.668.323L14.39,7.114a1.749,1.749,0,0,1,.97,1.536,1.921,1.921,0,0,1-.97,1.536L2.668,16.977a1.779,1.779,0,0,1-1.051.323ZM1.7,1.7V15.765a.25.25,0,0,0,.162-.081L13.582,8.893c.081-.081.162-.081.162-.162l-.162-.162L1.859,1.779A.25.25,0,0,0,1.7,1.7Z' transform='translate(15.36 17.3) rotate(180)'/%3E%3C/svg%3E%0A")
    }

.slick-arrow--next {
    right: 0
}

    .slick-arrow--next:before {
        margin-left: -.46875em;
        background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.36 17.301'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23d8a079; %7D %3C/style%3E%3C/defs%3E%3Cpath id='Path_249' data-name='Path 249' class='cls-1' d='M863.317,947a1.645,1.645,0,0,1-1.617-1.859V931.559a1.688,1.688,0,0,1,1.617-1.859,1.778,1.778,0,0,1,1.051.323l11.722,6.791a1.749,1.749,0,0,1,.97,1.536,1.921,1.921,0,0,1-.97,1.536l-11.722,6.791a1.779,1.779,0,0,1-1.051.323Zm.081-15.6v14.067a.25.25,0,0,0,.162-.081l11.722-6.791c.081-.081.162-.081.162-.162l-.162-.162-11.722-6.791a.25.25,0,0,0-.162-.081Z' transform='translate(-861.7 -929.7)'/%3E%3C/svg%3E%0A")
    }

.slick-arrow:not(.slick-disabled):hover {
    background: #007bff
}

.slick-arrow.slick-disabled {
    opacity: .5
}

.slick-arrow:active {
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out
}

@media screen and (prefers-reduced-motion:reduce) {
    .slick-arrow:active {
        -webkit-transition: none;
        transition: none
    }
}

.slick-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #000;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease
}

    .slick-lightbox .slick-loading .slick-list {
        background-color: transparent
    }

    .slick-lightbox .slick-prev {
        left: 15px
    }

    .slick-lightbox .slick-next {
        right: 15px
    }

.slick-lightbox-hide {
    opacity: 0
}

    .slick-lightbox-hide.slick-lightbox-ie {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0)
    }

.slick-lightbox-hide-init {
    position: absolute;
    top: -9999px;
    opacity: 0
}

    .slick-lightbox-hide-init.slick-lightbox-ie {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0)
    }

.slick-lightbox-inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.slick-lightbox-slick-item {
    text-align: center;
    overflow: hidden
}

    .slick-lightbox-slick-item:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -.25em
    }

.slick-caption-bottom .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
    margin-bottom: 20px
}

.slick-caption-dynamic .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
    display: block;
    text-align: center
}

.slick-lightbox-slick-item-inner {
    display: inline-block;
    vertical-align: middle;
    max-width: 90%;
    max-height: 90%
}

.slick-lightbox-slick-img {
    margin: 0 auto;
    display: block;
    max-width: 90%;
    max-height: 90%
}

.slick-lightbox-slick-caption {
    margin: 10px 0 0;
    color: #fff
}

.slick-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: transparent;
    color: transparent;
    padding: 0;
    border: none
}

    .slick-lightbox-close:focus {
        outline: none
    }

    .slick-lightbox-close:before {
        font-family: "slick";
        font-size: 20px;
        line-height: 1;
        color: #fff;
        opacity: .85;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: '×'
    }

@media print {
    *,
    *::before,
    *::after {
        text-shadow: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important
    }

    a:not(.btn) {
        text-decoration: underline
    }

    abbr[title]::after {
        content: " (" attr(title) ")"
    }

    pre {
        white-space: pre-wrap !important
    }

    pre,
    blockquote {
        border: 1px solid #adb5bd;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    tr,
    img {
        page-break-inside: avoid
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3
    }

    h2,
    h3 {
        page-break-after: avoid
    }

    @page {
        size: a3
    }

    body {
        min-width: 992px !important
    }

    .container {
        min-width: 992px !important
    }

    .navbar {
        display: none
    }

    .badge {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

        .table td,
        .table th {
            background-color: #fff !important
        }

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #dee2e6 !important
    }
}

.select-ui {
    opacity: 0
}

.select2-selection--single,
.select2-selection--multiple {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23212529' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 8px 10px
}

    .select2-selection--single,
    .select2-selection--single:focus,
    .select2-selection--multiple,
    .select2-selection--multiple:focus {
        -webkit-box-shadow: none;
        box-shadow: none
    }

.select2-selection__placeholder {
    color: #6c757d
}

.select2-selection__rendered {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.select2-selection__clear {
    position: relative
}

.select2-selection--multiple::after {
    display: block;
    clear: both;
    content: ""
}

.select2-selection--multiple .select2-search__field {
    border: none;
    padding: 0;
    margin-top: .25rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent
}

.select2-selection--multiple .select2-selection__rendered {
    margin: -.25rem 0 0;
    padding: 0;
    float: left;
    overflow: unset
}

    .select2-selection--multiple .select2-selection__rendered li {
        list-style: none
    }

.select2-selection__choice {
    background-color: #e9ecef;
    -webkit-box-shadow: 0 0 0 1px #ced4da;
    box-shadow: 0 0 0 1px #ced4da;
    cursor: default;
    float: left;
    position: relative;
    margin-right: .25rem;
    margin-top: .25rem;
    padding: 0 1.25rem 0 .25rem;
    border-radius: .25rem
}

.select2-selection__choice__remove {
    line-height: .875rem;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: .25rem;
    margin-top: -.525rem;
    cursor: pointer
}

.select2-search--inline {
    float: left
}

    .select2-search--inline:first-child .select2-search__field {
        width: auto !important
    }

.select2-search__field {
    font-size: 100%;
    outline: none
}

.select2-container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle
}

.select2-container--open .select2-dropdown {
    left: 0
}

.select2-container--open .select2-selection--single,
.select2-container--open .select2-selection--multiple {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--disabled .select2-selection--single,
.select2-container--disabled .select2-selection--multiple {
    color: #495057;
    background-color: #e9ecef;
    border-color: #ced4da
}

.select2-dropdown {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051
}

.select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

    .select2-dropdown--below .select2-results__options:last-child > .select2-results__option:last-child {
        border-bottom-left-radius: .25rem;
        border-bottom-right-radius: .25rem
    }

.select2-search--dropdown {
    display: block;
    padding: .75rem .75rem 0
}

.select2-search__field,
.select2-search__field:focus {
    -webkit-box-shadow: none;
    box-shadow: none
}

.select2-search--hide {
    display: none;
    max-height: 200px
}

.select2-results {
    display: block
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: .75rem 0 0
}

    .select2-results__options[role=tree] {
        border: .5px rgb(186, 186, 186) solid
    }

    .select2-results__options ul {
        padding-top: 0
    }

.select2-results__options--nested {
    margin-top: 8px
}

.select2-results__group {
    padding: 0 .75rem;
    font-size: 90%;
    color: #959595
}

.select2-results__option {
    padding: .3rem .75rem
}

.select2-results__options--nested > .select2-results__option {
    padding: .3rem 1.75rem
}

.select2-results__option[role=group] {
    padding: 0;
    padding-top: .4rem
}

    .select2-results__option[role=group]:last-child {
        padding-top: 1rem
    }

    .select2-results__option[role=group]:first-child {
        padding-top: .4rem
    }

.select2-results__option[aria-selected] {
    cursor: pointer
}

.select2-results__option--highlighted[aria-selected] {
    background: #f6f6f6;
    color: #fff
}

.select2-results__option[aria-selected=true] {
    background-color: #e9ecef;
    color: inherit
}

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0)
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important
}

.input-group > .select2 {
    width: 1% !important;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-bottom: 0
}

    .input-group > .select2:last-child .select2-selection {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }

    .input-group > .select2 + select + .select2 .select2-selection {
        border-left: none
    }

.input-group > select:first-child + .select2 .select2-selection {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group > select:not(:first-child) + .select2:not(:last-child) .select2-selection {
    border-radius: 0
}

.irs {
    position: relative;
    display: block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.irs-line {
    position: relative;
    display: block;
    overflow: hidden;
    outline: none !important
}

.irs-line-left,
.irs-line-mid,
.irs-line-right {
    position: absolute;
    display: block;
    top: 0
}

.irs-line-left {
    left: 0;
    width: 11%
}

.irs-line-mid {
    left: 9%;
    width: 82%
}

.irs-line-right {
    right: 0;
    width: 11%
}

.irs-bar {
    position: absolute;
    display: block;
    left: 0;
    width: 0
}

.irs-bar-edge {
    position: absolute;
    display: block;
    top: 0;
    left: 0
}

.irs-shadow {
    position: absolute;
    display: none;
    left: 0;
    width: 0
}

.irs-slider {
    position: absolute;
    display: block;
    cursor: default;
    z-index: 1
}

    .irs-slider.type_last {
        z-index: 2
    }

.irs-min {
    position: absolute;
    display: block;
    left: 0;
    cursor: default
}

.irs-max {
    position: absolute;
    display: block;
    right: 0;
    cursor: default
}

.irs-from,
.irs-to,
.irs-single {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    cursor: default;
    white-space: nowrap
}

.irs-grid {
    position: absolute;
    display: none;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px
}

.irs-with-grid .irs-grid {
    display: block
}

.irs-grid-pol {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 8px;
    background: #000
}

    .irs-grid-pol.small {
        height: 4px
    }

.irs-grid-text {
    position: absolute;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    text-align: center;
    font-size: 9px;
    line-height: 9px;
    padding: 0 3px;
    color: #000
}

.irs-disable-mask {
    position: absolute;
    display: block;
    top: 0;
    left: -1%;
    width: 102%;
    height: 100%;
    cursor: default;
    background: rgba(0, 0, 0, 0);
    z-index: 2
}

.irs-disabled {
    opacity: .4
}

.lt-ie9 .irs-disabled {
    filter: alpha(opacity=40)
}

.irs-hidden-input {
    position: absolute !important;
    display: block !important;
    top: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    z-index: -9999 !important;
    background: none !important;
    border-style: solid !important;
    border-color: transparent !important;
    opacity: 0 !important;
    visibility: hidden !important
}

.irs-line-mid,
.irs-line-left,
.irs-line-right,
.irs-bar,
.irs-bar-edge,
.irs-slider {
    background: #007bff
}

.irs {
    height: 40px
}

.irs-with-grid {
    height: 60px
}

.irs-line {
    height: 12px;
    top: 25px
}

.irs-line-left {
    height: 12px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px
}

.irs-line-mid {
    height: 12px
}

.irs-line-right {
    height: 12px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px
}

.irs-bar {
    height: 12px;
    top: 25px;
    border-radius: 6px
}

.irs-bar-edge {
    top: 25px;
    height: 12px;
    width: 12px;
    border-radius: 6px
}

.irs-shadow {
    height: 3px;
    top: 34px;
    background: #000;
    opacity: .25
}

.lt-ie9 .irs-shadow {
    filter: alpha(opacity=25)
}

.irs-slider {
    width: 18px;
    height: 18px;
    top: 22px;
    border-radius: 50%;
    cursor: pointer;
    -webkit-box-shadow: 0 0 0 4px rgba(255, 255, 255, .4);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .4)
}

.irs-min,
.irs-max {
    color: #999;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    top: 0;
    padding: 1px 3px;
    background: #e1e4e9;
    border-radius: 4px
}

.irs-from,
.irs-to,
.irs-single {
    color: #fff;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    background: #007bff;
    border-radius: 4px
}

    .irs-from:after,
    .irs-to:after,
    .irs-single:after {
        position: absolute;
        display: block;
        content: "";
        bottom: -6px;
        left: 50%;
        width: 0;
        height: 0;
        margin-left: -3px;
        overflow: hidden;
        border: 3px solid transparent;
        border-top-color: #007bff
    }

.irs-grid-pol {
    background: #e1e4e9
}

.irs-grid-text {
    color: #999
}

.scroll-ui {
    overflow: hidden;
    max-width: 100%
}


.bootstrap-datetimepicker-widget {
    list-style: none
}

    .bootstrap-datetimepicker-widget.dropdown-menu {
        display: block;
        margin: 2px 0;
        padding: 4px;
        width: 19em;
        font-family: "Jost Medium"
    }

@media (min-width:768px) {
    .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
        width: 38em
    }
}

@media (min-width:992px) {
    .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
        width: 38em
    }
}

@media (min-width:1200px) {
    .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
        width: 38em
    }
}

.bootstrap-datetimepicker-widget.dropdown-menu:before,
.bootstrap-datetimepicker-widget.dropdown-menu:after {
    content: '';
    display: inline-block;
    position: absolute
}

.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
    left: auto;
    right: 6px
}

.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
    left: auto;
    right: 7px
}

.bootstrap-datetimepicker-widget .list-unstyled {
    margin: 0;
    padding: 0 !important
}

.bootstrap-datetimepicker-widget a[data-action] {
    padding: 6px 0
}

    .bootstrap-datetimepicker-widget a[data-action]:active {
        -webkit-box-shadow: none;
        box-shadow: none
    }

.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
    width: 54px;
    font-weight: 700;
    font-size: 1.2em;
    margin: 0
}

.bootstrap-datetimepicker-widget button[data-action] {
    padding: 6px
}

.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Increment Hours"
}

.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Increment Minutes"
}

.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Decrement Hours"
}

.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Decrement Minutes"
}

.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Show Hours"
}

.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Show Minutes"
}

.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Toggle AM/PM"
}

.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Clear the picker"
}

.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Set the date to today"
}

.bootstrap-datetimepicker-widget .picker-switch {
    text-align: center
}

    .bootstrap-datetimepicker-widget .picker-switch::after {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
        content: "Toggle Date and Time Screens"
    }

    .bootstrap-datetimepicker-widget .picker-switch td {
        padding: 0;
        margin: 0;
        height: auto;
        width: auto;
        line-height: inherit
    }

        .bootstrap-datetimepicker-widget .picker-switch td span {
            line-height: 3.5;
            height: 3.5em;
            width: 100%
        }

.bootstrap-datetimepicker-widget table {
    width: 100%;
    margin: 0
}

    .bootstrap-datetimepicker-widget table .fa {
        width: 6.32px;
        height: 10.59px;
        color: #c9c9c9
    }

    .bootstrap-datetimepicker-widget table td,
    .bootstrap-datetimepicker-widget table th {
        text-align: center;
        border-radius: 4px
    }

    .bootstrap-datetimepicker-widget table th {
        height: 30px;
        line-height: 30px;
        width: 20px;
        font-family: "Jost Medium";
        font-weight: 400;
        font-size: 13px;
        text-align: center;
        color: #999;
        padding: 14px 0;
        border-bottom: 1px solid #f3f3f3
    }

        .bootstrap-datetimepicker-widget table th.picker-switch {
            width: 145px
        }

        .bootstrap-datetimepicker-widget table th.disabled,
        .bootstrap-datetimepicker-widget table th.disabled:hover {
            background: none;
            color: #777;
            cursor: not-allowed
        }

        .bootstrap-datetimepicker-widget table th.prev::after {
            position: absolute;
            width: 1px;
            height: 1px;
            margin: -1px;
            padding: 0;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
            content: "Previous Month"
        }

        .bootstrap-datetimepicker-widget table th.next::after {
            position: absolute;
            width: 1px;
            height: 1px;
            margin: -1px;
            padding: 0;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
            content: "Next Month"
        }

    .bootstrap-datetimepicker-widget table thead tr:first-child th {
        cursor: pointer;
        font-family: "Jost Medium";
        color: #F47920;
        font-size: 15px !important
    }

        .bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
            background: none
        }

    .bootstrap-datetimepicker-widget table td {
        height: 54px;
        line-height: 54px;
        width: 54px
    }

        .bootstrap-datetimepicker-widget table td.cw {
            font-size: .8em;
            height: 20px;
            line-height: 20px;
            color: #777
        }

        .bootstrap-datetimepicker-widget table td.day {
            height: 30px;
            line-height: 30px;
            width: 32px;
            font-family: "Jost Medium";
            font-weight: 400;
            font-size: 13px;
            text-align: center;
            color: #303030
        }

            .bootstrap-datetimepicker-widget table td.day:hover,
            .bootstrap-datetimepicker-widget table td.hour:hover,
            .bootstrap-datetimepicker-widget table td.minute:hover,
            .bootstrap-datetimepicker-widget table td.second:hover {
                background: #dee2e6;
                cursor: pointer
            }

        .bootstrap-datetimepicker-widget table td.old,
        .bootstrap-datetimepicker-widget table td.new {
            color: #ced4da
        }

        .bootstrap-datetimepicker-widget table td.today {
            position: relative;
            background: #F3F3F3;
            color: #000;
            font-weight: 700
        }

        .bootstrap-datetimepicker-widget table td.active,
        .bootstrap-datetimepicker-widget table td.active:hover {
            background-color: rgba(218, 85, 47, .2);
            color: #dac4be;
            font-family: "Jost Medium";
            font-weight: 700
        }

            .bootstrap-datetimepicker-widget table td.active.today:before {
                border-bottom-color: #fff
            }

        .bootstrap-datetimepicker-widget table td.disabled,
        .bootstrap-datetimepicker-widget table td.disabled:hover {
            background: none;
            color: #dee2e6;
            cursor: not-allowed
        }

        .bootstrap-datetimepicker-widget table td span {
            display: inline-block;
            width: 54px;
            height: 54px;
            line-height: 54px;
            margin: 2px 1.5px;
            cursor: pointer;
            border-radius: 4px
        }

            .bootstrap-datetimepicker-widget table td span:hover {
                background: #dee2e6
            }

            .bootstrap-datetimepicker-widget table td span.active {
                background-color: #007bff;
                color: #fff;
                text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
            }

            .bootstrap-datetimepicker-widget table td span.old {
                color: #dee2e6
            }

            .bootstrap-datetimepicker-widget table td span.disabled,
            .bootstrap-datetimepicker-widget table td span.disabled:hover {
                background: none;
                color: #dee2e6;
                cursor: not-allowed
            }

.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
    height: 27px;
    line-height: 27px
}

.bootstrap-datetimepicker-widget.wider {
    width: 21em
}

.bootstrap-datetimepicker-widget .datepicker-decades .decade {
    line-height: 1.8em !important
}

.input-group.date .input-group-addon {
    cursor: pointer
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

[data-notify="progressbar"] {
    margin-bottom: 0;
    position: absolute;
    bottom: -1px;
    left: -1px;
    right: -1px;
    height: 4px;
    background: transparent;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.stuck {
    position: fixed;
    top: 0;
    z-index: 1071
}

.masthead {
    padding: 200px 0;
    background-color: #fff;
    text-align: center
}

body {
    position: relative;
    /*  min-height: 100vh; commented code for nutrition*/
    padding-bottom: 177px;
}

li a {
    display: block
}

#appliance a {
    display: inline
}

.no-margin {
    margin: 0 !important
}



#modal-error .modal-content,
#modal-add-activity-success .modal-content,
#modal-disconnect .modal-content,
#modal-delete_entry .modal-content {
    border-radius: 0
}

    #modal-error .modal-content .modal-body,
    #modal-add-activity-success .modal-content .modal-body,
    #modal-disconnect .modal-content .modal-body,
    #modal-delete_entry .modal-content .modal-body,
    .wellable.modal .modal-content .modal-body {
        padding: 0
    }

        #modal-error .modal-content .modal-body img,
        #modal-add-activity-success .modal-content .modal-body img,
        #modal-disconnect .modal-content .modal-body img,
        #modal-delete_entry .modal-content .modal-body img {
            margin: 1.25rem 0 0 0
        }

        #modal-error .modal-content .modal-body h2,
        #modal-add-activity-success .modal-content .modal-body h2,
        #modal-disconnect .modal-content .modal-body h2,
        #modal-delete_entry .modal-content .modal-body h2 {
            margin-top: 10px;
            margin-bottom: 17px;
            text-transform: unset
        }

        #modal-error .modal-content .modal-body .btn,
        #modal-add-activity-success .modal-content .modal-body .btn,
        #modal-disconnect .modal-content .modal-body .btn,
        #modal-delete_entry .modal-content .modal-body .btn,
        .wellable.modal .modal-content .modal-body .btn {
            width: 100%;
            font-family: "Jost Book";
            font-weight: 400;
            font-size: 11pt;
            line-height: 20px;
            text-align: center;
            color: #f47920;
            background: #f4f4f4;
            margin: 0;
            padding: 12px 0
        }

        .wellable.modal .modal-content .modal-body .btn {
            text-transform: none
        }

        #modal-add-activity-success .modal-content .modal-body p,
        #modal-disconnect .modal-content .modal-body p,
        #modal-delete_entry .modal-content .modal-body p,
        .wellable.modal .modal-content .modal-body p {
            font-family: "Jost Book";
            font-weight: 400;
            font-size: 11pt;
            line-height: 25px;
            text-align: center;
            color: #54534A
        }

            #modal-add-activity-success .modal-content .modal-body p span,
            #modal-disconnect .modal-content .modal-body p span,
            #modal-delete_entry .modal-content .modal-body p span {
                color: #54534A
            }

                #modal-add-activity-success .modal-content .modal-body p span.number,
                #modal-disconnect .modal-content .modal-body p span.number,
                #modal-delete_entry .modal-content .modal-body p span.number {
                    font-family: "Roboto Medium";
                    color: #F47920
                }

                #modal-add-activity-success .modal-content .modal-body p span.text,
                #modal-disconnect .modal-content .modal-body p span.text,
                #modal-delete_entry .modal-content .modal-body p span.text {
                    color: #f47920
                }

        #modal-add-activity-success .modal-content .modal-body .btn-group,
        #modal-disconnect .modal-content .modal-body .btn-group,
        #modal-delete_entry .modal-content .modal-body .btn-group,
        .wellable.modal .modal-content .modal-body .btn-group {
            width: 100%
        }

            #modal-add-activity-success .modal-content .modal-body .btn-group .btn,
            #modal-disconnect .modal-content .modal-body .btn-group .btn,
            #modal-delete_entry .modal-content .modal-body .btn-group .btn,
            .wellable.modal .modal .modal-dialog .modal-content .modal-body .btn-group .btn {
                width: 50%;
                text-transform: unset
            }

                #modal-add-activity-success .modal-content .modal-body .btn-group .btn.btn-ok,
                #modal-disconnect .modal-content .modal-body .btn-group .btn.btn-ok,
                #modal-delete_entry .modal-content .modal-body .btn-group .btn.btn-ok,
                .wellable.modal .modal-content .modal-body .btn-group .btn.btn-wellable-secondary {
                    font-family: "Jost Book";
                    font-weight: 400;
                    font-size: 12pt;
                    line-height: 20px;
                    text-align: center;
                    color: #54534A;
                    border-right: 1px solid #CAD3DF
                }

                    .wellable.modal .modal-content .modal-body .btn-group .btn.btn-wellable-secondary:hover {
                        color: #fff
                    }

#modal-disconnect h2,
#modal-delete_entry h2 {
    margin: 3rem 0 !important
}

#modal-select-teammate .modal-body,
#modal-select-team .modal-body {
    padding: 0
}

    #modal-select-teammate .modal-body h2,
    #modal-select-team .modal-body h2 {
        font-family: "Roboto Cn";
        font-weight: 700;
        font-size: 12pt;
        line-height: 25px;
        text-align: center;
        color: #54534A;
        text-transform: unset
    }

    #modal-select-teammate .modal-body ul,
    #modal-select-team .modal-body ul {
        list-style: none
    }

        #modal-select-teammate .modal-body ul li,
        #modal-select-team .modal-body ul li {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            margin: 1rem 0
        }

            #modal-select-teammate .modal-body ul li .checkbox-ui .ctr-ui-input:checked ~ .ctr-ui-label::before,
            #modal-select-team .modal-body ul li .checkbox-ui .ctr-ui-input:checked ~ .ctr-ui-label::before {
                background: transparent;
                border-color: #F47920
            }

            #modal-select-teammate .modal-body ul li .checkbox-ui .ctr-ui-input:checked ~ .ctr-ui-label span,
            #modal-select-team .modal-body ul li .checkbox-ui .ctr-ui-input:checked ~ .ctr-ui-label span {
                color: #F47920
            }

            #modal-select-teammate .modal-body ul li .checkbox-ui .ctr-ui-input:checked ~ .ctr-ui-label::after,
            #modal-select-team .modal-body ul li .checkbox-ui .ctr-ui-input:checked ~ .ctr-ui-label::after {
                background-image: url(/images/dashboard/icon/checked.svg)
            }

            #modal-select-teammate .modal-body ul li .ctr-ui-label::before,
            #modal-select-team .modal-body ul li .ctr-ui-label::before {
                border: 1px solid #B8B8B5;
                background: transparent;
                -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
                top: 50%
            }

            #modal-select-teammate .modal-body ul li .ctr-ui-label::after,
            #modal-select-team .modal-body ul li .ctr-ui-label::after {
                -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
                top: 50%
            }

            #modal-select-teammate .modal-body ul li .ctr-ui-label img,
            #modal-select-team .modal-body ul li .ctr-ui-label img {
                width: 30px;
                margin: 0
            }

            #modal-select-teammate .modal-body ul li .ctr-ui-label span,
            #modal-select-team .modal-body ul li .ctr-ui-label span {
                padding-left: 5px
            }

                #modal-select-teammate .modal-body ul li .ctr-ui-label span .hidden,
                #modal-select-team .modal-body ul li .ctr-ui-label span .hidden {
                    display: none
                }

                #modal-select-teammate .modal-body ul li .ctr-ui-label span button,
                #modal-select-team .modal-body ul li .ctr-ui-label span button {
                    border: none;
                    background: transparent
                }

    #modal-select-teammate .modal-body .btn,
    #modal-select-team .modal-body .btn {
        width: 100%;
        background: #F4F4F4;
        font-family: "Jost Book";
        font-weight: 400;
        font-size: 12pt;
        line-height: 20px;
        text-align: center;
        color: #f47920;
        margin: 0
    }

        #modal-select-teammate .modal-body .btn:hover,
        #modal-select-team .modal-body .btn:hover {
            background: #f47920;
            color: #fff
        }

.picker-input {
    position: relative;
    background: #f6f6f6
}

    .picker-input input {
        z-index: 1;
        background: transparent !important;
        position: relative
    }

    .picker-input .add-on {
        position: absolute;
        top: 3px;
        right: 10px;
        font-size: 13.5pt;
        z-index: 0
    }

#wearableDetail .modal-content {
    max-width: 650px;
    margin: auto
}

.connect-modal-connection .modal-content {
    max-width: 400px;
    margin: auto
}

    .connect-modal-connection .modal-content .modal-body .img-conn {
        width: 60px;
        -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
        box-shadow: 0 0 20px rgba(0, 0, 0, .1);
        border-radius: 22.5%
    }

    .connect-modal-connection .modal-content .modal-body .content {
        font-family: "Jost Book";
        font-size: 12pt;
        margin-bottom: 3.25rem
    }

    .connect-modal-connection .modal-content .modal-body .btn-ok {
        position: absolute;
        bottom: 0;
        margin-bottom: 0 !important;
        width: 100%;
        left: 0
    }

.modal-content {
    border: none !important;
    background-clip: unset !important
}

#preloaded-rows {
    display: none
}

#preloaded-export {
    display: none
}

#preloaded-download {
    display: none
}

.builder {
    position: relative;
    overflow: hidden;
    width: 100%;
    float: left;
    padding: 20px 40px 60px 20px;
    overflow: auto
}

.builder__buttons {
    width: 100%
}

    .builder__buttons::after {
        display: block;
        clear: both;
        content: ""
    }

    .builder__buttons .btn i {
        margin-left: 10px
    }

    .builder__buttons .btn + .btn {
        margin-left: 5px
    }

.builder__buttons__add {
    position: relative
}

.builder__buttons__reset {
    float: right
}

.builder__buttons__dropdown {
    position: absolute;
    background-color: #333;
    z-index: 1;
    top: 100%;
    left: -1px;
    text-align: left;
    width: 150px;
    display: none
}

.builder__buttons__dropdown__tab {
    height: 30px;
    width: 100%;
    line-height: 30px;
    -webkit-transition: background 0.5s;
    transition: background 0.5s
}

    .builder__buttons__dropdown__tab i {
        float: right;
        margin-right: 10px;
        line-height: 30px
    }

    .builder__buttons__dropdown__tab p {
        padding: 0;
        float: left;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 12px;
        font-size: 14px
    }

    .builder__buttons__dropdown__tab.current,
    .builder__buttons__dropdown__tab:hover {
        background-color: rgba(153, 153, 153, .2)
    }

.builder__buttons__content {
    height: 500px;
    width: 690px;
    background-color: #464646;
    position: absolute;
    top: 0;
    left: 150px;
    z-index: 1;
    cursor: default;
    overflow-y: scroll;
    padding-bottom: 50px;
    display: none
}

.builder__buttons__content__tab__item {
    width: 590px;
    margin-left: 50px;
    margin-top: 30px;
    position: relative
}

    .builder__buttons__content__tab__item img {
        width: 590px;
        -webkit-transition: all 0.5s;
        transition: all 0.5s
    }

.builder__buttons__content__tab__item__add {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out
}

@media screen and (prefers-reduced-motion:reduce) {
    .builder__buttons__content__tab__item__add {
        -webkit-transition: none;
        transition: none
    }
}

.builder__buttons__content__tab__item:hover img {
    opacity: .6
}

.builder__buttons__content__tab__item:hover .builder__buttons__content__tab__item__add {
    opacity: 1;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    box-shadow: 0 0 30px rgba(0, 0, 0, .1)
}

.builder__icons {
    margin: 0 -10px
}

    .builder__icons i {
        padding: 10px;
        width: 5%;
        text-align: center;
        border-radius: 3px;
        cursor: pointer;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out
    }

@media screen and (prefers-reduced-motion:reduce) {
    .builder__icons i {
        -webkit-transition: none;
        transition: none
    }
}

.builder__icons i:hover {
    background-color: rgba(0, 0, 0, .2)
}

.builder__icons i.selected {
    background: #007bff;
    color: #fff
}

#builder-content {
    margin-top: 40px;
    margin-bottom: 30px;
    background-color: #999
}

    #builder-content .section {
        -webkit-transition: -webkit-box-shadow 0.5s;
        transition: -webkit-box-shadow 0.5s;
        transition: box-shadow 0.5s;
        transition: box-shadow 0.5s, -webkit-box-shadow 0.5s;
        position: relative
    }

        #builder-content .section[style*="position: relative;"] {
            z-index: 0 !important
        }

            #builder-content .section[style*="position: relative;"]:hover {
                z-index: 1 !important
            }

    #builder-content .section__delete {
        height: 40px;
        width: 40px;
        background-color: rgba(255, 255, 255, .5);
        top: 0;
        right: -40px;
        position: absolute;
        color: #666;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        opacity: 0;
        text-align: center;
        font-size: 20px
    }

        #builder-content .section__delete i {
            line-height: 40px
        }

        #builder-content .section__delete:hover {
            background-color: red;
            cursor: pointer;
            color: #fff
        }

    #builder-content .section:hover {
        cursor: move;
        -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, .2);
        box-shadow: 0 0 0 5px rgba(0, 0, 0, .2);
        z-index: 1
    }

        #builder-content .section:hover .section__delete {
            opacity: 1
        }

[data-edit] {
    position: relative
}

    [data-edit] .section__edit {
        height: 100%;
        width: 100%;
        background-color: rgba(63, 141, 191, .8);
        position: absolute;
        left: 0;
        top: 0;
        cursor: default;
        -webkit-transition: all 0.5s;
        transition: all 0.5s
    }

        [data-edit] .section__edit i {
            position: absolute;
            height: 30px;
            width: 30px;
            line-height: 30px;
            left: 50%;
            top: 50%;
            text-align: center;
            margin-top: -15px;
            margin-left: -15px;
            color: #fff;
            -webkit-transition: all 0.5s;
            transition: all 0.5s;
            border-radius: 50%;
            font-size: 16px
        }

            [data-edit] .section__edit i:hover {
                background-color: rgba(0, 0, 0, .5);
                cursor: pointer
            }

.sim-edit {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 2;
    display: none;
    background-repeat: repeat
}

.sim-edit-box {
    width: 400px;
    background-color: #fff;
    margin-right: auto;
    margin-left: auto;
    margin-top: 10%;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, .5);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .5);
    padding: 25px;
    height: 300px;
    display: none
}

.sim-edit-box-title {
    float: left;
    width: 100%;
    font-size: 25px;
    color: #999
}

.sim-edit-box-content-text span {
    font-size: 13px;
    color: #999
}

.sim-edit-box-content {
    float: left;
    width: 100%;
    margin-top: 10px
}

.sim-edit-box-content-text {
    float: left;
    width: 100%;
    font-size: 16px;
    color: #666;
    font-weight: 600;
    margin-top: 15px
}

.sim-edit-box-content-field {
    float: left;
    width: 100%;
    margin-top: 15px
}

.sim-edit-box-content-field-input {
    float: left;
    height: 33px;
    width: 380px;
    border: 1px solid #ccc;
    outline: none;
    font-family: inherit;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 15px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    color: #666
}

    .sim-edit-box-content-field-input:focus {
        -webkit-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, .2);
        box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, .2)
    }

.sim-edit-box-content-field-textarea {
    float: left;
    height: 180px;
    width: 380px;
    border: 1px solid #ccc;
    outline: none;
    font-family: inherit;
    font-size: 15px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    color: #666;
    resize: none;
    padding: 10px
}

    .sim-edit-box-content-field-textarea:focus {
        -webkit-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, .2);
        box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, .2)
    }

.sim-edit-box-content-icons {
    float: left;
    height: 388px;
    width: 388px;
    border: 1px solid #ccc;
    margin-top: 15px;
    overflow-y: scroll
}

    .sim-edit-box-content-icons i {
        line-height: 50px;
        background-color: #e1e1e1;
        float: left;
        height: 50px;
        width: 50px;
        margin-top: 10px;
        margin-left: 10px;
        text-align: center;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        font-size: 28px;
        color: #333
    }

        .sim-edit-box-content-icons i:hover {
            cursor: pointer;
            background-color: #999;
            border-radius: 50%;
            color: #000
        }

.sim-edit-box-buttons {
    float: left;
    width: 100%;
    margin-top: 35px
}

.sim-edit-box-buttons-save {
    background-color: #3f8dbf;
    height: 35px;
    text-align: center;
    line-height: 35px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 3px;
    -webkit-transition: background 0.5s;
    transition: background 0.5s;
    cursor: pointer;
    float: left;
    padding-right: 25px;
    padding-left: 25px
}

    .sim-edit-box-buttons-save:hover {
        background-color: #33afde
    }

.sim-edit-box-buttons-cancel {
    height: 33px;
    text-align: center;
    line-height: 33px;
    color: #54657a;
    font-weight: 600;
    font-size: 14px;
    border-radius: 3px;
    -webkit-transition: background 0.5s;
    transition: background 0.5s;
    cursor: pointer;
    border: 1px solid #e4e4e5;
    float: left;
    padding-right: 25px;
    padding-left: 25px;
    margin-left: 25px
}

    .sim-edit-box-buttons-cancel:hover {
        background-color: rgba(153, 153, 153, .1)
    }

main.wrapper {
    padding: 28.5pt 0
}

.back-over {
    width: 100vw;
    height: 100vh;
    z-index: 98;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #54534A;
    opacity: .5
}

@media only screen and (min-width:1134px) {
    .back-over {
        display: none !important
    }
}
/*<--Taken this code Start  -->*/
/*@media (min-width:1200px) {
    .container {
        max-width: 1090px
    }
}*/

@media (min-width:992px) and (max-width:1199px) {
    .container {
        max-width: 1140px
    }
}

@media (max-width:992px) {
    .container {
        max-width: 1140px;
        /*padding-top: 30px; removed it was impacting on mobile view in all the pages*/
    }
}

@media (max-width: 992px) {
    .container-wrapper {
        padding-top: 30px;
    }
}
/*<--Taken this code End  -->*/
.box {
    position: relative;
    background: #f6f6f6;
    margin-top: 1.25rem
}

    .box select {
        background-color: #f6f6f6 !important;
        color: #54534A !important;
        padding: 6px 12px !important;
        border: none;
        width: 100% !important;
        font-size: 10.5pt;
        font-family: "Jost Book";
        -webkit-appearance: button;
        -moz-appearance: button;
        appearance: button;
        outline: none;
        margin-top: 1.25rem
    }

    .box .select2 {
        width: 100% !important;
        background-color: transparent !important;
        outline: none;
        z-index: 1
    }

        .box .select2 .select2-selection--single {
            background: transparent;
            color: #54534A !important;
            border: none;
            font-size: 10.5pt !important;
            font-family: "Jost Book";
            min-height: 40px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center
        }

        .box .select2 .select2-container--open .select2-selection--single {
            border: none;
            -webkit-box-shadow: none;
            box-shadow: none
        }

    .box i {
        position: absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        top: 0;
        width: 10px;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        right: 14px;
        background: 0 0 !important;
        color: #54534a;
        z-index: 0;
        height: 100%
    }

@-webkit-keyframes menu-run {
    from {
        margin-left: -80%
    }

    to {
        margin-left: 0%
    }
}

@keyframes menu-run {
    from {
        margin-left: -80%
    }

    to {
        margin-left: 0%
    }
}

@-webkit-keyframes menu-run-close {
    from {
        margin-left: 0%
    }

    to {
        margin-left: -80%
    }
}

@keyframes menu-run-close {
    from {
        margin-left: 0%
    }

    to {
        margin-left: -80%
    }
}

.activity .title-activity {
    font-family: "Roboto Cn";
    font-weight: 700;
    font-size: 15pt;
    text-align: center;
    margin: 2.5rem 0;
    color: #54534A
}

@media only screen and (max-width:994px) {
    .activity .title-activity {
        margin-top: 0
    }
}

.activity .activity-tabs {
    width: 55%;
    margin: auto
}

@media only screen and (min-width:1134px) and (max-width:1360px) {
    .activity .activity-tabs {
        width: 70%
    }
}

@media only screen and (max-width:1133px) {
    .activity .activity-tabs {
        width: 90%
    }
}

@media only screen and (max-width:994px) {
    .activity .activity-tabs {
        width: 100%
    }
}

.activity .activity-tabs ul.nav {
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media only screen and (max-width:994px) {
    .activity .activity-tabs ul.nav {
        width: 80%;
        margin: auto
    }
}

@media only screen and (max-width:575px) {
    .activity .activity-tabs ul.nav {
        width: 90%;
        margin: auto
    }

        .activity .activity-tabs ul.nav .col-4 li .tab-name {
            display: none
        }
}

@media only screen and (max-width:424px) {
    .activity .activity-tabs ul.nav {
        width: 100%
    }
}

.activity .activity-tabs ul.nav .col-4 {
    padding: 0
}

    .activity .activity-tabs ul.nav .col-4 li {
        text-align: center
    }

        .activity .activity-tabs ul.nav .col-4 li:hover,
        .activity .activity-tabs ul.nav .col-4 li:focus {
            outline: none !important;
            border: none !important
        }

        .activity .activity-tabs ul.nav .col-4 li .nav-link {
            cursor: pointer;
            padding: 0
        }

            .activity .activity-tabs ul.nav .col-4 li .nav-link:hover,
            .activity .activity-tabs ul.nav .col-4 li .nav-link:focus {
                border-color: transparent
            }

            .activity .activity-tabs ul.nav .col-4 li .nav-link.active,
            .activity .activity-tabs ul.nav .col-4 li .nav-link:hover {
                border-color: transparent !important
            }

                .activity .activity-tabs ul.nav .col-4 li .nav-link.active .tab-item.physical .item-img,
                .activity .activity-tabs ul.nav .col-4 li .nav-link:hover .tab-item.physical .item-img {
                    background: #F47920
                }

                    .activity .activity-tabs ul.nav .col-4 li .nav-link.active .tab-item.physical .item-img .img-activity,
                    .activity .activity-tabs ul.nav .col-4 li .nav-link:hover .tab-item.physical .item-img .img-activity {
                        background-image: url(/images/dashboard/physical-white.svg) !important
                    }

                .activity .activity-tabs ul.nav .col-4 li .nav-link.active .tab-item.physical .tab-name,
                .activity .activity-tabs ul.nav .col-4 li .nav-link:hover .tab-item.physical .tab-name {
                    color: #F47920 !important;
                    font-family: "Roboto Cn" !important
                }

                .activity .activity-tabs ul.nav .col-4 li .nav-link.active .tab-item.daily .item-img,
                .activity .activity-tabs ul.nav .col-4 li .nav-link:hover .tab-item.daily .item-img {
                    background: #4FBF70
                }

                    .activity .activity-tabs ul.nav .col-4 li .nav-link.active .tab-item.daily .item-img .img-activity,
                    .activity .activity-tabs ul.nav .col-4 li .nav-link:hover .tab-item.daily .item-img .img-activity {
                        background-image: url(/images/dashboard/daily-white.svg) !important
                    }

                .activity .activity-tabs ul.nav .col-4 li .nav-link.active .tab-item.daily .tab-name,
                .activity .activity-tabs ul.nav .col-4 li .nav-link:hover .tab-item.daily .tab-name {
                    color: #4FBF70 !important;
                    font-family: "Roboto Cn" !important
                }

                .activity .activity-tabs ul.nav .col-4 li .nav-link.active .tab-item.special .item-img,
                .activity .activity-tabs ul.nav .col-4 li .nav-link:hover .tab-item.special .item-img {
                    background: #5D549D
                }

                    .activity .activity-tabs ul.nav .col-4 li .nav-link.active .tab-item.special .item-img .img-activity,
                    .activity .activity-tabs ul.nav .col-4 li .nav-link:hover .tab-item.special .item-img .img-activity {
                        background-image: url(/images/dashboard/special-white.svg) !important
                    }

                .activity .activity-tabs ul.nav .col-4 li .nav-link.active .tab-item.special .tab-name,
                .activity .activity-tabs ul.nav .col-4 li .nav-link:hover .tab-item.special .tab-name {
                    color: #5D549D !important;
                    font-family: "Roboto Cn" !important
                }

                .activity .activity-tabs ul.nav .col-4 li .nav-link.active .tab-item.nutrition .item-img,
                .activity .activity-tabs ul.nav .col-4 li .nav-link:hover .tab-item.nutrition .item-img {
                    background: #EACA1E
                }

                    .activity .activity-tabs ul.nav .col-4 li .nav-link.active .tab-item.nutrition .item-img .img-activity,
                    .activity .activity-tabs ul.nav .col-4 li .nav-link:hover .tab-item.nutrition .item-img .img-activity {
                        background-image: url(/images/dashboard/nutrition-white.svg) !important
                    }

                .activity .activity-tabs ul.nav .col-4 li .nav-link.active .tab-item.nutrition .tab-name,
                .activity .activity-tabs ul.nav .col-4 li .nav-link:hover .tab-item.nutrition .tab-name {
                    color: #EACA1E !important;
                    font-family: "Roboto Cn" !important
                }

@media only screen and (max-width:994px) {
    .activity .activity-tabs ul.nav .col-4 li .nav-link.active,
    .activity .activity-tabs ul.nav .col-4 li .nav-link:hover {
        font-family: "Jost Medium"
    }
}

.activity .activity-tabs ul.nav .col-4 li .nav-link .tab-item.physical .img-activity {
    background-image: url(/images/dashboard/physical.svg)
}

.activity .activity-tabs ul.nav .col-4 li .nav-link .tab-item.daily .img-activity {
    background-image: url(/images/dashboard/daily.svg)
}

.activity .activity-tabs ul.nav .col-4 li .nav-link .tab-item.special .img-activity {
    background-image: url(/images/dashboard/special.svg)
}

.activity .activity-tabs ul.nav .col-4 li .nav-link .tab-item.nutrition .img-activity {
    background-image: url(/images/dashboard/nutrition.svg)
}

.activity .activity-tabs ul.nav .col-4 li .nav-link .tab-item .item-img {
    width: 120px;
    margin: auto;
    height: 120px;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    margin-bottom: 1.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.875rem 1.25rem
}

    .activity .activity-tabs ul.nav .col-4 li .nav-link .tab-item .item-img .img-activity {
        width: 100%;
        margin: auto;
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain
    }

@media only screen and (max-width:994px) {
    .activity .activity-tabs ul.nav .col-4 li .nav-link .tab-item .item-img {
        padding: 1.25rem;
        width: 110px;
        height: 110px;
        margin-bottom: .75rem
    }

        .activity .activity-tabs ul.nav .col-4 li .nav-link .tab-item .item-img img {
            width: 100%
        }
}

@media only screen and (max-width:575px) {
    .activity .activity-tabs ul.nav .col-4 li .nav-link .tab-item .item-img {
        width: 80px;
        height: 80px
    }

        .activity .activity-tabs ul.nav .col-4 li .nav-link .tab-item .item-img img {
            width: 100%
        }
}

.activity .activity-tabs ul.nav .col-4 li .nav-link .tab-item .tab-name {
    font-family: "Roboto Condensed";
    font-weight: 400;
    font-size: 18.75pt;
    text-align: center;
    color: #54534A;
    text-transform: uppercase
}

@media only screen and (max-width:994px) {
    .activity .activity-tabs ul.nav .col-4 li .nav-link .tab-item .tab-name {
        font-size: 12pt;
        text-transform: uppercase !important;
        font-family: "Roboto Condensed"
    }
}

@media only screen and (max-width:575px) {
    .activity .activity-tabs ul.nav .col-4 li .nav-link .tab-item .tab-name {
        font-size: 12pt;
        text-transform: unset !important;
        font-family: "Jost Book"
    }
}

@media only screen and (max-width:424px) {
    .activity .activity-tabs .activity-tab-content .container {
        padding: 0
    }

        .activity .activity-tabs .activity-tab-content .container .form-add-activity {
            width: 100% !important;
            padding: 0 !important;
            -webkit-box-shadow: none !important;
            box-shadow: none !important
        }

            .activity .activity-tabs .activity-tab-content .container .form-add-activity .action-title {
                display: none
            }

            .activity .activity-tabs .activity-tab-content .container .form-add-activity .btn-add {
                padding-left: 0;
                padding-right: 0
            }

                .activity .activity-tabs .activity-tab-content .container .form-add-activity .btn-add .btn {
                    width: 100%
                }
}

.activity .activity-tabs .activity-tab-content .container .form-add-activity {
    width: 66.66%;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    margin: auto;
    padding: 1rem 1.5rem;
    margin-top: 3.75rem
}

@media only screen and (min-width:425px) and (max-width:767px) {
    .activity .activity-tabs .activity-tab-content .container .form-add-activity {
        width: 70%
    }
}

@media only screen and (max-width:575px) {
    .activity .activity-tabs .activity-tab-content .container .form-add-activity {
        width: 90%
    }
}

.activity .activity-tabs .activity-tab-content .container .form-add-activity .form-control,
.activity .activity-tabs .activity-tab-content .container .form-add-activity .select2-selection--single,
.activity .activity-tabs .activity-tab-content .container .form-add-activity .select2-selection--multiple,
.activity .activity-tabs .activity-tab-content .container .form-add-activity .select2-search__field {
    border: none
}

    .activity .activity-tabs .activity-tab-content .container .form-add-activity .form-control:focus,
    .activity .activity-tabs .activity-tab-content .container .form-add-activity .select2-selection--single:focus,
    .activity .activity-tabs .activity-tab-content .container .form-add-activity .select2-selection--multiple:focus,
    .activity .activity-tabs .activity-tab-content .container .form-add-activity .select2-search__field:focus {
        border-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none
    }

.activity .activity-tabs .activity-tab-content .container .form-add-activity .action-title {
    font-family: "Roboto Condensed";
    font-weight: 400;
    font-size: 14.5pt;
    text-align: left;
    color: #54534A
}

.activity .activity-tabs .activity-tab-content .container .form-add-activity .input-group.calendar {
    background: #f6f6f6;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 1.25rem;
    padding: 6px 0 6px 0;
    min-height: 40px
}

    .activity .activity-tabs .activity-tab-content .container .form-add-activity .input-group.calendar input {
        border: none;
        cursor: pointer;
        padding-left: 12px !important
    }

    .activity .activity-tabs .activity-tab-content .container .form-add-activity .input-group.calendar select {
        border: none;
        cursor: pointer
    }

    .activity .activity-tabs .activity-tab-content .container .form-add-activity .input-group.calendar span.add-on {
        margin-right: .875rem;
        z-index: 0;
        position: absolute;
        right: 0;
        cursor: pointer
    }

    .activity .activity-tabs .activity-tab-content .container .form-add-activity .input-group.calendar .form-control[readonly],
    .activity .activity-tabs .activity-tab-content .container .form-add-activity .input-group.calendar .select2-selection--single[readonly],
    .activity .activity-tabs .activity-tab-content .container .form-add-activity .input-group.calendar .select2-selection--multiple[readonly],
    .activity .activity-tabs .activity-tab-content .container .form-add-activity .input-group.calendar .select2-search__field[readonly] {
        background-color: transparent
    }

    .activity .activity-tabs .activity-tab-content .container .form-add-activity .input-group.calendar input {
        background: transparent;
        font-size: 10.5pt;
        font-family: "Jost Book";
        z-index: 1
    }

.activity .activity-tabs .activity-tab-content .container .form-add-activity .note {
    background: #f6f6f6;
    margin-top: 1.25rem;
    font-size: 10.5pt;
    font-family: "Jost Book";
    min-height: 40px
}

.activity .activity-tabs .activity-tab-content .container .form-add-activity .btn-add .btn {
    padding: .5rem 4.8rem;
    margin-top: 1.25rem;
    font-family: "Jost Medium";
    font-weight: 500;
    font-size: 12pt;
    text-align: center;
    color: #fff;
    border-radius: 0
}

.activity .activity-tabs .activity-tab-content .container .form-add-activity .btn-add .physical {
    background: #F47920
}

.activity .activity-tabs .activity-tab-content .container .form-add-activity .btn-add .daily {
    background: #4FBF70
}

.activity .activity-tabs .activity-tab-content .container .form-add-activity .btn-add .special {
    background: #5D549D
}

.activity .activity-tabs .activity-tab-content .container .form-add-activity .btn-add .nutrition {
    background: #EACA1E
}

.performance {
    margin: 6.25rem 0
}

@media only screen and (max-width:994px) {
    .performance {
        margin: 0
    }
}

@media only screen and (max-width:575px) {
    .performance {
        margin: 0
    }
}

.performance .row {
    margin: 0
}

@media only screen and (max-width:994px) {
    .performance > .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
        padding: 0;
        margin: 0
    }
}

.performance .row .col-chart {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    padding: 1.75rem;
    position: relative
}

@media only screen and (max-width:994px) {
    .performance .row .col-chart {
        margin: 26pt 0rem 0;
        width: auto
    }
}

.performance .row .col-chart .nav-tabs.tabs-chart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: none
}

@media only screen and (max-width:994px) {
    .performance .row .col-chart .nav-tabs.tabs-chart {
        margin-top: 1.75rem
    }
}

.performance .row .col-chart .nav-tabs.tabs-chart .nav-item {
    width: 33.33%
}

    .performance .row .col-chart .nav-tabs.tabs-chart .nav-item .nav-link.active,
    .performance .row .col-chart .nav-tabs.tabs-chart .nav-item .nav-link:hover {
        border-bottom: none;
        border-top: none;
        border-left: none;
        border-right: none
    }

        .performance .row .col-chart .nav-tabs.tabs-chart .nav-item .nav-link.active .tab-name,
        .performance .row .col-chart .nav-tabs.tabs-chart .nav-item .nav-link:hover .tab-name {
            color: #F47920 !important;
            font-weight: 700;
            position: relative
        }

            .performance .row .col-chart .nav-tabs.tabs-chart .nav-item .nav-link.active .tab-name::after,
            .performance .row .col-chart .nav-tabs.tabs-chart .nav-item .nav-link:hover .tab-name::after {
                content: "";
                position: absolute;
                width: 50%;
                margin: auto;
                height: 4px;
                bottom: -10px;
                left: 50%;
                -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
                background: #f47920
            }

@media only screen and (max-width:424px) {
    .performance .row .col-chart .nav-tabs.tabs-chart .nav-item .nav-link.active .tab-name::after,
    .performance .row .col-chart .nav-tabs.tabs-chart .nav-item .nav-link:hover .tab-name::after {
        width: 80%
    }
}

.performance .row .col-chart .nav-tabs.tabs-chart .nav-item .nav-link .tab-name {
    font-family: "Roboto Condensed";
    font-size: 13.5pt;
    text-align: center;
    color: #B8B8B5
}

.performance .row .col-chart .tab-content {
    overflow: auto;
    position: relative
}

    .performance .row .col-chart .tab-content #chartDay,
    .performance .row .col-chart .tab-content #chartWeek,
    .performance .row .col-chart .tab-content #chartMonth {
        min-width: 100%
    }

@media only screen and (max-width:1133px) {
    .performance .row .col-chart .tab-content #chartDay,
    .performance .row .col-chart .tab-content #chartWeek,
    .performance .row .col-chart .tab-content #chartMonth {
        background-position: left -10px
    }
}

.performance .row .col-chart .tab-content #chartDay .highcharts-container,
.performance .row .col-chart .tab-content #chartWeek .highcharts-container,
.performance .row .col-chart .tab-content #chartMonth .highcharts-container {
    background: url(/images/dashboard/bg_chart.jpg) no-repeat;
    background-position: left bottom;
    background-size: 100% 100%
}

.performance .row .col-chart .tab-content .tab-pane {
    padding: 0 !important
}

.performance .row .col-chart .notify-chart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2.25rem
}

@media only screen and (max-width:994px) {
    .performance .row .col-chart .notify-chart {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        margin-top: 1.25rem
    }
}

.performance .row .col-chart .notify-chart,
.performance .row .col-chart .notify-chart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 50%;
    margin-bottom: 1rem
}

@media only screen and (max-width:994px) {
    .performance .row .col-chart .notify-chart,
    .performance .row .col-chart .notify-chart {
        width: 100%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.performance .row .col-chart .notify-chart .physical,
.performance .row .col-chart .notify-chart .nutri,
.performance .row .col-chart .notify-chart .daily,
.performance .row .col-chart .notify-chart .special,
.performance .row .col-chart .notify-chart .physical,
.performance .row .col-chart .notify-chart .nutri,
.performance .row .col-chart .notify-chart .daily,
.performance .row .col-chart .notify-chart .special {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Jost Book"
}

@media only screen and (max-width:994px) {
    .performance .row .col-chart .notify-chart .physical,
    .performance .row .col-chart .notify-chart .nutri,
    .performance .row .col-chart .notify-chart .daily,
    .performance .row .col-chart .notify-chart .special,
    .performance .row .col-chart .notify-chart .physical,
    .performance .row .col-chart .notify-chart .nutri,
    .performance .row .col-chart .notify-chart .daily,
    .performance .row .col-chart .notify-chart .special {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

@media only screen and (max-width:424px) {
    .performance .row .col-chart .notify-chart .physical,
    .performance .row .col-chart .notify-chart .nutri,
    .performance .row .col-chart .notify-chart .daily,
    .performance .row .col-chart .notify-chart .special,
    .performance .row .col-chart .notify-chart .physical,
    .performance .row .col-chart .notify-chart .nutri,
    .performance .row .col-chart .notify-chart .daily,
    .performance .row .col-chart .notify-chart .special {
        font-size: 10.5pt
    }
}

.performance .row .col-chart .notify-chart .physical .color,
.performance .row .col-chart .notify-chart .nutri .color,
.performance .row .col-chart .notify-chart .daily .color,
.performance .row .col-chart .notify-chart .special .color,
.performance .row .col-chart .notify-chart .physical .color,
.performance .row .col-chart .notify-chart .nutri .color,
.performance .row .col-chart .notify-chart .daily .color,
.performance .row .col-chart .notify-chart .special .color {
    height: 20px;
    width: 20px;
    margin-right: 9px
}

.performance .row .col-chart .notify-chart .physical .color,
.performance .row .col-chart .notify-chart .physical .color {
    background: #F47920
}

.performance .row .col-chart .notify-chart .nutri .color,
.performance .row .col-chart .notify-chart .nutri .color {
    background: #EACA1E
}

.performance .row .col-chart .notify-chart .daily .color,
.performance .row .col-chart .notify-chart .daily .color {
    background: #4FBF70
}

.performance .row .col-chart .notify-chart .special .color,
.performance .row .col-chart .notify-chart .special .color {
    background: #5D549D
}

.performance .row .perform {
    margin-left: 5%
}

@media only screen and (max-width:1133px) {
    .performance .row .perform {
        margin-left: 5%
    }
}

@media only screen and (max-width:994px) {
    .performance .row .perform {
        text-align: center;
        padding: 0;
        margin-top: 47.25pt;
        margin-left: 0
    }
}

.performance .row .perform .per-title {
    font-family: "Roboto Cn";
    font-weight: 700;
    font-size: 31.5pt;
    text-align: left;
    color: #54534A
}

@media only screen and (max-width:994px) {
    .performance .row .perform .per-title {
        text-align: center;
        font-size: 24pt
    }
}

@media only screen and (max-width:424px) {
    .performance .row .perform .per-title {
        font-size: 14.5pt
    }
}

.performance .row .perform .per-content {
    font-family: "Jost Book";
    font-weight: 400;
    font-size: 12pt;
    text-align: left;
    color: #54534A;
    margin-top: 1.3125rem
}

@media only screen and (max-width:994px) {
    .performance .row .perform .per-content {
        text-align: center
    }
}

.performance .row .perform .per-content span.orange-txt {
    color: #F47920
}

.performance .row .perform .per-btn button,
.trivia_challenge .pwa-button button {
    background: #F4F4F4;
    padding: .8rem 4.125rem;
    font-family: "Roboto Condensed";
    font-weight: 400;
    font-size: 12pt;
    text-align: center;
    border-radius: 0;
    margin-top: 21pt;
    color: #F47920
}

    .performance .row .perform .per-btn button:hover,
    .trivia_challenge .pwa-button button:hover {
        background: #F47920;
        color: #fff
    }

    .trivia_challenge .pwa-button button.wellable-secondary {
        padding: .8rem 2rem;
        color: #54534A
    }

        .trivia_challenge .pwa-button button.wellable-secondary:hover {
            background: #54534A;
            color: #fff
        }

.pwa-results-table th {
    color: #54534A;
    background-color: #f4f4f4;
    padding: 15px;
    border-top: 60px solid #fff;
    font-size: 22px
}

.pwa-results-table td {
    padding: 5px 15px;
    border-top: 2px rgba(180, 180, 180, .25) solid;
    text-align: justify
}

.pwa-results-table .question td {
    border-top: 35px solid #fff
}

.pwa-results-table .q-number {
    text-align: right;
    width: 35px;
    padding: 5px 0;
    vertical-align: top
}

.pwa-results-table .answer {
    vertical-align: top;
    padding-right: 35px
}

.pwa-results-table .feedback td {
    border-bottom: 40px solid #fff
}

.pwa-results-table .feedback .prompt div {
    min-height: 110px
}

.pwa-results-table .sidebar-a {
    font-family: "Roboto Cn";
    font-size: 20px;
    text-align: center;
    background-color: rgba(244, 121, 32, 1);
    color: #fff;
    border-top: 2px #fff solid
}

.pwa-results-table .sidebar {
    font-family: "Roboto Cn";
    font-size: 20px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    width: 3.5em;
    background-color: rgba(244, 121, 32, 1);
    color: #fff;
    border-top: 2px #fff solid
}

    .pwa-results-table .sidebar div {
        -moz-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        margin-left: -10em;
        margin-right: -10em
    }

@media print {
    .pwa-results-table th {
        border-bottom: 4px #000 solid
    }

    .pwa-results-table td,
    .pwa-results-table .sidebar-a,
    .pwa-results-table .sidebar {
        border-top: 2px rgba(180, 180, 180, .9) solid
    }
}

.activity-log {
    position: relative
}

    .activity-log .log-title {
        font-family: "Roboto Cn";
        font-weight: 700;
        font-size: 31.5pt;
        text-align: left;
        color: #54534A;
        margin-bottom: 1.25rem
    }

@media only screen and (max-width:994px) {
    .activity-log .log-title {
        margin-top: 100px;
        font-size: 24pt;
        text-align: center
    }
}

@media only screen and (max-width:424px) {
    .activity-log .log-title {
        font-size: 14.5pt;
        text-align: center;
        margin-top: 21pt
    }
}

.activity-log .arround {
    position: relative
}

@media only screen and (max-width:1133px) {
    .activity-log .arround {
        overflow: auto;
        -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
        box-shadow: 0 0 20px rgba(0, 0, 0, .1)
    }
}

.activity-log .arround ul.list-log {
    list-style: none;
    padding: 0
}

@media only screen and (max-width:1133px) {
    .activity-log .arround ul.list-log {
        margin-bottom: 0
    }
}

.activity-log .arround ul.list-log li {
    -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, .1);
    box-shadow: 0 1px 10px rgba(0, 0, 0, .1);
    padding: 1.5rem 0;
    border: 1px solid #fff;
    margin-top: 1.25rem;
    display: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 90px;
    max-height: 90px
}

@media only screen and (max-width:575px) {
    .activity-log .arround ul.list-log li {
        height: unset;
        max-height: unset
    }
}

.activity-log .arround ul.list-log li:hover {
    border-color: #F47920
}

    .activity-log .arround ul.list-log li:hover .row .remove img {
        display: inherit !important;
        cursor: pointer
    }

.activity-log .arround ul.list-log li.active {
    border: 1px solid #F47920
}

    .activity-log .arround ul.list-log li.active .row .remove img {
        display: inherit;
        cursor: pointer
    }

.activity-log .arround ul.list-log li.show {
    display: inherit !important
}

@media only screen and (max-width:575px) {
    .activity-log .arround ul.list-log li {
        padding: .725rem 1.25rem
    }
}

.activity-log .arround ul.list-log li .row {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    position: relative;
    height: 100%
}

    .activity-log .arround ul.list-log li .row .col-date .date-title {
        display: none;
        font-family: "Jost Book";
        font-weight: 400;
        font-size: 12pt;
        text-align: left;
        color: #707070
    }

    .activity-log .arround ul.list-log li .row .col-date .log-date {
        font-family: "Jost Book";
        font-weight: 400;
        font-size: 12pt;
        text-align: left;
        color: #707070;
        padding-left: 30px
    }

@media only screen and (max-width:994px) {
    .activity-log .arround ul.list-log li .row .col-date .log-date {
        padding-left: 0 !important
    }
}

@media only screen and (max-width:424px) {
    .activity-log .arround ul.list-log li .row .col-date .log-date {
        padding-left: 10px
    }
}

.activity-log .arround ul.list-log li .row .log-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 49px
}

    .activity-log .arround ul.list-log li .row .log-detail .img-log {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-right: 1.25rem
    }

    .activity-log .arround ul.list-log li .row .log-detail .detail .action-run {
        color: #F47920;
        font-family: "Jost Medium";
        font-size: 12pt
    }

    .activity-log .arround ul.list-log li .row .log-detail .detail .action-detail {
        font-family: "Jost Book";
        font-size: 12pt;
        color: #54534A
    }

        .activity-log .arround ul.list-log li .row .log-detail .detail .action-detail span.action_detail_des {
            font-family: "Jost Medium" !important
        }

.activity-log .arround ul.list-log li .row .col-point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

    .activity-log .arround ul.list-log li .row .col-point .point-title {
        display: none
    }

    .activity-log .arround ul.list-log li .row .col-point .point-unit {
        font-family: "Jost Book";
        color: #707070;
        font-size: 12pt
    }

    .activity-log .arround ul.list-log li .row .col-point .log-point {
        padding-right: 5px;
        padding-left: 5px;
        font-family: "Jost Book";
        color: #707070;
        text-align: right;
        font-size: 12pt
    }

.activity-log .arround ul.list-log li .row .log-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 10px;
    font-family: "Jost Book";
    color: #707070;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media only screen and (max-width:1112px) {
    .activity-log .arround ul.list-log li .row .log-type {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

        .activity-log .arround ul.list-log li .row .log-type .type-name {
            display: none
        }
}

.activity-log .arround ul.list-log li .row .log-type img {
    margin-right: .625rem;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    border-radius: 22.5%;
    width: 30px
}

.activity-log .arround ul.list-log li .row .log-type .type-name {
    font-size: 12pt
}

.activity-log .arround ul.list-log li .row .col-remove .text-remove {
    display: none
}

.activity-log .arround ul.list-log li .row .col-remove .remove {
    cursor: pointer;
    padding-right: 30px
}

@media only screen and (max-width:424px) {
    .activity-log .arround ul.list-log li .row .col-remove .remove {
        padding-left: 10px
    }
}

@media only screen and (max-width:994px) {
    .activity-log .arround ul.list-log li .row .col-remove .remove {
        padding-right: 0 !important
    }
}

.activity-log .arround ul.list-log li .row .col-remove .remove img {
    display: none;
    color: #f47920;
    padding: 10px;
    background: #fff;
    width: 35px;
    float: right
}

.activity-log .arround ul.list-log li .row .col-action-detail {
    display: none
}

@media only screen and (max-width:575px) {
    .activity-log .arround ul.list-log li .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
        flex-flow: column wrap
    }

        .activity-log .arround ul.list-log li .row .col-detail {
            padding-left: 0;
            padding-right: 0;
            -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
            order: 1;
            min-width: 100%;
            width: 100%;
            border-bottom: .5px solid rgba(0, 0, 0, .16);
            font-size: 10.5pt
        }

            .activity-log .arround ul.list-log li .row .col-detail .log-detail {
                min-height: 0;
                padding-bottom: .725rem;
                width: 85%
            }

                .activity-log .arround ul.list-log li .row .col-detail .log-detail img {
                    height: 25px
                }

                .activity-log .arround ul.list-log li .row .col-detail .log-detail .detail .action-detail {
                    display: none
                }

        .activity-log .arround ul.list-log li .row .col-type {
            padding-left: 0;
            padding-right: 0;
            position: absolute;
            right: 0;
            top: 30%;
            font-size: 10.5pt
        }

            .activity-log .arround ul.list-log li .row .col-type .log-type {
                -webkit-box-pack: end;
                -ms-flex-pack: end;
                justify-content: flex-end;
                margin-left: 0
            }

                .activity-log .arround ul.list-log li .row .col-type .log-type img {
                    margin-top: 15px;
                    margin-right: 0;
                    width: 50px
                }

                .activity-log .arround ul.list-log li .row .col-type .log-type .type-name {
                    display: none
                }

        .activity-log .arround ul.list-log li .row .col-date {
            padding-left: 0;
            padding-right: 0;
            -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
            order: 2;
            min-width: 100%;
            width: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: baseline;
            -ms-flex-align: baseline;
            align-items: baseline;
            margin-top: .725rem;
            font-size: 10.5pt
        }

            .activity-log .arround ul.list-log li .row .col-date .date-title {
                font-family: "Jost Book" !important;
                color: #54534A !important;
                display: block;
                font-size: 10.5pt
            }

            .activity-log .arround ul.list-log li .row .col-date .log-date {
                font-family: "Jost Medium" !important;
                color: #54534A !important;
                padding-left: 5px !important;
                font-size: 10.5pt
            }

        .activity-log .arround ul.list-log li .row .col-point {
            padding-left: 0;
            padding-right: 0;
            -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
            order: 3;
            min-width: 100%;
            width: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: baseline;
            -ms-flex-align: baseline;
            align-items: baseline;
            margin-top: 1.25rem;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start
        }

            .activity-log .arround ul.list-log li .row .col-point .point-title {
                font-family: "Jost Book";
                color: #54534A;
                font-size: 10.5pt;
                display: block
            }

            .activity-log .arround ul.list-log li .row .col-point .log-point {
                text-align: left;
                font-family: "Jost Medium" !important;
                color: #54534A !important;
                font-size: 10.5pt
            }

            .activity-log .arround ul.list-log li .row .col-point .point-unit {
                display: none
            }

        .activity-log .arround ul.list-log li .row .col-remove {
            padding-left: 0;
            padding-right: 0;
            position: absolute;
            right: 0;
            width: 100%;
            min-width: 100%;
            text-align: right;
            top: 0;
            color: #f47821;
            text-decoration: underline
        }

            .activity-log .arround ul.list-log li .row .col-remove .remove img {
                color: #f47920;
                margin-right: 7px;
                padding-top: 5px;
                float: right;
                background: none
            }

            .activity-log .arround ul.list-log li .row .col-remove .text-remove {
                display: inherit;
                font-family: "Jost Book";
                font-size: 10.5pt
            }

        .activity-log .arround ul.list-log li .row .col-action-detail {
            padding-left: 0;
            padding-right: 0;
            -webkit-box-ordinal-group: 5;
            -ms-flex-order: 4;
            order: 4;
            margin-top: 1.25rem;
            font-family: "Jost Book";
            color: #54534A;
            font-size: 10.5pt;
            display: block;
            text-align: left !important
        }

            .activity-log .arround ul.list-log li .row .col-action-detail .action_detail_des {
                font-family: "Jost Medium"
            }
}

.activity-log .loadmore {
    width: 100%;
    text-align: center
}

    .activity-log .loadmore button {
        padding: .4375rem 1.625rem;
        background: #F4F4F4;
        color: #F47920;
        font-size: 12pt;
        border-radius: 0;
        margin-top: 1.25rem;
        font-family: Jost Book
    }

        .activity-log .loadmore button i {
            font-size: 12pt
        }

        .activity-log .loadmore button:hover {
            background: #F47920;
            color: #fff
        }

.run {
    color: #F47920 !important
}

.slept {
    color: #4FBF70 !important
}

.break {
    color: #EACA1E !important
}

.fishing {
    color: #5D549D !important
}

.select2-dropdown {
    border: none !important;
    border-radius: 0
}

    .select2-dropdown ul {
        padding: 0
    }

        .select2-dropdown ul li {
            border-radius: 0 !important;
            color: #54534A !important;
            border: none;
            font-size: 10.5pt;
            font-family: "Jost Book"
        }

.arrow_box {
    position: relative;
    background: #fff;
    padding: 15px
}

    .arrow_box:after,
    .arrow_box:before {
        right: 100%;
        top: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none
    }

    .arrow_box:after {
        border-color: rgba(85, 85, 85, 0);
        border-right-color: #555;
        border-width: 10px;
        margin-top: -10px
    }

    .arrow_box:before {
        border-color: rgba(0, 0, 0, 0);
        border-right-color: #000;
        border-width: 13px;
        margin-top: -13px
    }

.title {
    font-family: "Roboto Cn";
    font-weight: 700;
    font-size: 14.5pt;
    line-height: 21.75pt;
    text-align: center;
    color: #54534A;
    margin: 2.5rem
}

@media only screen and (max-width:994px) {
    .title {
        margin-top: 0
    }
}

.input-group .input-group-text {
    font-family: "Jost Book";
    font-weight: 400;
    font-size: 12pt;
    text-align: left;
    color: #54534A;
    background: transparent;
    border: none
}

.input-group .box {
    margin-top: 0
}

    .input-group .box .select2-selection__rendered {
        font-size: 12pt;
        padding-left: .75rem;
        color: #F47920
    }

    .input-group .box i {
        color: #F47920
    }

.input-group .form-control,
.input-group .select2-selection--single,
.input-group .select2-selection--multiple,
.input-group .select2-search__field {
    padding: 0 !important;
    border-radius: 0;
    border: 1px solid #eff2f7
}

.form-search {
    padding: 1.875rem 1.25rem;
    margin: 1.25rem 7%;
    border: 1px solid #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1)
}

@media only screen and (max-width:424px) {
    .form-search {
        padding: 0;
        margin: 0;
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none
    }
}

@media only screen and (min-width:1024px) and (max-width:1999px) {
    .form-search {
        margin: 1.25rem 0
    }
}

@media only screen and (max-width:1133px) {
    .form-search {
        margin: 1.25rem 0
    }
}

.form-search .row {
    padding: 0 16px
}

    .form-search .row .team {
        width: 60%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

        .form-search .row .team .select-when-group {
            margin-left: .5rem
        }

@media only screen and (max-width:994px) {
    .form-search .row .team {
        width: 100%
    }
}

@media only screen and (max-width:424px) {
    .form-search .row .team {
        display: block
    }

        .form-search .row .team .select-when-group {
            margin-left: 0;
            margin-bottom: 0 !important
        }

        .form-search .row .team .input-group {
            display: block;
            margin-bottom: 1.25rem
        }

            .form-search .row .team .input-group .box {
                width: 100%
            }
}

@media only screen and (max-width:424px) {
    .form-search .row .input-group .input-group-text {
        padding: 0 .75rem .375rem 0
    }
}

.form-search .row .input-group .input-group-text {
    padding: 0 .75rem 0 0;
    width: 50px
}

.form-search .row .when {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 .5rem
}

@media only screen and (max-width:994px) {
    .form-search .row .when {
        width: 100%;
        padding: 0;
        margin-bottom: 1.25rem
    }
}

.form-search .row .when .from-to {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%
}

    .form-search .row .when .from-to .picker {
        position: relative
    }

@media only screen and (max-width:994px) {
    .form-search .row .when .from-to .picker {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 50%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 1.25rem
    }
}

@media only screen and (max-width:424px) {
    .form-search .row .when .from-to .picker {
        display: block
    }

        .form-search .row .when .from-to .picker span {
            padding: 0 .75rem .375rem 0
        }
}

.form-search .row .when .from-to .picker span.title-picker {
    display: none;
    font-family: "Jost Book";
    font-weight: 400;
    font-size: 12pt;
    text-align: left;
    color: #54534a;
    background: 0 0;
    border: none
}

@media only screen and (max-width:994px) {
    .form-search .row .when .from-to .picker span.title-picker {
        display: inherit;
        width: 120px;
        padding-right: .75rem
    }
}

.form-search .row .when .from-to .picker input {
    padding: 7px 11px;
    font-family: "Jost Book";
    font-weight: 400;
    font-size: 12pt;
    text-align: left;
    color: #54534A;
    background: #f8f8f8;
    border: 1px solid #eff2f7;
    width: 100%;
    height: 40px
}

@media only screen and (max-width:994px) {
    .form-search .row .when .from-to .picker.leaderboardTo {
        margin-left: .5rem
    }
}

.form-search .row .when .from-to .line {
    width: 8px;
    height: 1.5px;
    background: #54534A;
    margin-left: 15px;
    margin-right: 15px
}

@media only screen and (max-width:994px) {
    .form-search .row .when .from-to .line {
        display: none
    }
}

.form-search .row .when .from-to.hidden {
    visibility: hidden
}

@media only screen and (max-width:424px) {
    .form-search .row .when .from-to.hidden {
        display: none
    }
}

.form-search .row .btn-go {
    width: 10%
}

@media only screen and (max-width:994px) {
    .form-search .row .btn-go {
        width: 100%
    }
}

.form-search .row .btn-go .btn {
    background: #F4F4F4;
    padding: 7px 0;
    color: #F47920;
    font-family: "Jost Medium";
    font-weight: 500;
    font-size: 12pt;
    border-radius: 0;
    float: right;
    min-width: 100%
}

    .form-search .row .btn-go .btn:hover {
        color: #fff;
        background: #F47920
    }

.list-result {
    margin: 0 7%;
    border: 1px solid #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1)
}

@media only screen and (min-width:1024px) and (max-width:1999px) {
    .list-result {
        margin: 1.25rem 0
    }
}

@media only screen and (max-width:1133px) {
    .list-result {
        margin: 1.25rem 0
    }
}

@media only screen and (max-width:424px) {
    .list-result {
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none
    }
}

.list-result ul {
    padding: 0;
    list-style: none;
    margin: 0
}

    .list-result ul li {
        border-bottom: .5px solid #e5e5e5;
        padding: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

@media only screen and (max-width:424px) {
    .list-result ul li {
        padding: 20px 1px
    }
}

.list-result ul li .avatar {
    margin-right: 1.875rem;
    width: 56px;
    height: 50px;
    border-radius: 60px;
    overflow: hidden;
}

@media only screen and (max-width:424px) {
    .list-result ul li .avatar {
        margin-right: .875rem;
        margin-left: .125rem
    }
}

.list-result ul li .detail {
    width: 100%
}

@media only screen and (max-width:424px) {
    .list-result ul li .detail {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.list-result ul li .detail .item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-family: "Jost Medium";
    font-weight: 500;
    font-size: 12pt;
    color: #54534A
}

@media only screen and (max-width:665px) {
    .list-result ul li .detail .item {
        font-size: 10.5pt
    }
}

.list-result ul li .detail .item .name-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

    .list-result ul li .detail .item .name-detail .number {
        text-align: right;
        margin-right: .5rem
    }

@media only screen and (max-width:424px) {
    .list-result ul li .detail .item .point .well-unit {
        display: none
    }
}

.list-result ul li .detail .process {
    height: 5px;
    font-family: "Jost Medium";
    border-radius: 2.5px;
    background: #bdc2cc;
    margin-top: 9px
}

@media only screen and (max-width:424px) {
    .list-result ul li .detail .process {
        display: none
    }
}

.list-result ul li.active {
    background: rgba(244, 121, 32, .1);
    border: .5px solid #F47920
}

    .list-result ul li.active .item {
        color: #F47920
    }

    .list-result ul li.active .process {
        background: #F47920
    }

@media only screen and (max-width:424px) {
    .list-result ul li.active {
        background: #fef2eb;
        border: none;
        margin: -2px -16px 0 -16px;
        padding: 20px 16px
    }
}

.no-border-bot {
    border-bottom: none !important
}

.hidden {
    display: none
}

.content-conn {
    margin: 0 0rem !important;
}

    .content-conn .filter {
        margin: 0;
        padding: 0;
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

        .content-conn .filter .input-group {
            width: 220px;
            margin-right: 5%
        }

@media only screen and (max-width:1133px) {
    .content-conn .filter .input-group {
        margin: auto
    }
}

.content-conn .row {
    margin: 0
}

@media only screen and (min-width:425px) and (max-width:767px) {
    .content-conn .row {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media only screen and (max-width:424px) {
    .content-conn .row {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.content-conn .row .main {
    text-align: center;
    padding: 2.5rem 15px;
    min-width: 20%;
    width: 20%;
    cursor: pointer;
    text-decoration: none;
    color: #54534A
}

    .content-conn .row .main.disabled {
        opacity: .4
    }

@media only screen and (min-width:992px) and (max-width:1360px) {
    .content-conn .row .main {
        min-width: 25%;
        width: 25%
    }
}

@media only screen and (min-width:768px) and (max-width:994px) {
    .content-conn .row .main {
        min-width: 33%;
        width: 33%;
        padding: 2rem 1rem
    }
}

@media only screen and (min-width:425px) and (max-width:767px) {
    .content-conn .row .main {
        min-width: 50%;
        width: 50%;
        padding: 2rem 1rem
    }
}

@media only screen and (max-width:424px) {
    .content-conn .row .main {
        min-width: 50%;
        width: 50%;
        padding: 2rem .5rem
    }
}

.content-conn .row .main:hover .btn {
    background-color: #F47920;
    color: #fff
}

.content-conn .row .main.disabled:hover .btn {
    background: #F4F4F4;
    color: #54534A
}

.content-conn .row .main .img_conn {
    width: 85px;
    height: 85px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: auto
}

    .content-conn .row .main .img_conn img {
        width: 100%;
        -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
        box-shadow: 0 0 20px rgba(0, 0, 0, .1);
        border-radius: 22.5%
    }

@media only screen and (max-width:424px) {
    .content-conn .row .main .img_conn img {
        width: 75%
    }
}

.content-conn .row .main .name_conn {
    font-family: "Jost Medium";
    font-weight: 500;
    font-size: 12pt;
    line-height: 30px;
    color: #54534A;
    margin-top: 1.25rem
}

@media only screen and (min-width:425px) and (max-width:767px) {
    .content-conn .row .main .name_conn {
        font-size: 12pt
    }
}

.content-conn .row .main .name_conn:hover {
    text-decoration: none
}

.content-conn .row .main .des_conn {
    font-family: "Jost Book";
    font-weight: 400;
    font-size: 10.5pt;
    line-height: 20px;
    color: #54534A
}

.content-conn .row .main .btn {
    margin-top: .65rem;
    padding: 8px 1.5rem 9px;
    font-family: "Roboto Condensed";
    font-weight: 400;
    font-size: 10.5pt;
    text-align: center;
    color: #54534A;
    text-transform: uppercase;
    background: #F4F4F4;
    border-radius: 0;
    width: 100%;
    max-width: 120px
}

    .content-conn .row .main .btn.btn-success {
        padding: .5rem .8rem;
        color: #fff;
        background: #28a745 !important
    }

.connection-title {
    font-family: "Roboto Cn";
    font-weight: 700;
    font-size: 31.5pt;
    text-align: left;
    color: #54534A;
    margin-bottom: 1.25rem
}

@media only screen and (max-width:994px) {
    .connection-title {
        margin-top: 100px;
        font-size: 24pt;
        text-align: center
    }
}

@media only screen and (max-width:424px) {
    .connection-title {
        font-size: 14.5pt;
        text-align: center;
        margin-top: 21pt
    }
}

.connection_app {
    margin-top: 2.5rem
}

@media only screen and (max-width:665px) {
    .connection_app {
        padding: 0 1px
    }
}

.connection_app .img_conn {
    text-align: center
}

    .connection_app .img_conn img {
        -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
        box-shadow: 0 0 20px rgba(0, 0, 0, .1);
        border-radius: 22.5%;
        width: 100px
    }

.connection_app .name_conn {
    font-family: "Roboto Condensed";
    font-weight: 400;
    font-size: 14.5pt;
    text-align: center;
    color: #54534A;
    margin-top: 1.25rem;
    text-transform: uppercase
}

.connection_app .btn-disconn {
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 30px
}

    .connection_app .btn-disconn .btn {
        text-transform: uppercase;
        font-family: "Roboto Condensed";
        font-weight: 400;
        font-size: 10.5pt;
        text-align: center;
        color: #54534A;
        padding: 10px 33px;
        border-radius: 0;
        background: #f4f4f4
    }

.connection_app .title-connection-table {
    font-family: "Roboto Cn";
    font-size: 15pt;
    text-align: center;
    margin: 60px 0 30px 0
}

    .connection_app .title-connection-table.nutrition {
        color: #EACA1E
    }

    .connection_app .title-connection-table.activity {
        color: #F47920
    }

.connection_app .info-show {
    font-family: "Roboto Condensed";
    font-weight: 400;
    font-size: 12pt;
    text-align: right;
    color: #53534a;
    margin-bottom: 1.25rem
}

    .connection_app .info-show .total {
        color: #F47920
    }

@media only screen and (max-width:665px) {
    .connection_app .info-show {
        display: none
    }
}

.connection_app ul.conn-detail-list-mobile {
    list-style: none;
    padding: 0;
    display: none
}

@media only screen and (max-width:665px) {
    .connection_app ul.conn-detail-list-mobile {
        display: block
    }
}

.connection_app ul.conn-detail-list-mobile li {
    background: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    padding: 10px 0;
    color: #54534A;
    margin-bottom: 10px
}

    .connection_app ul.conn-detail-list-mobile li .conn-type {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(0, 0, 0, .08)
    }

        .connection_app ul.conn-detail-list-mobile li .conn-type .type-detail {
            padding: 0 20px
        }

            .connection_app ul.conn-detail-list-mobile li .conn-type .type-detail .type {
                margin-left: 5px;
                font-family: "Jost Medium";
                font-size: 10.5pt
            }

                .connection_app ul.conn-detail-list-mobile li .conn-type .type-detail .type.nutrition {
                    color: #EACA1E
                }

                .connection_app ul.conn-detail-list-mobile li .conn-type .type-detail .type.activity {
                    color: #F47920
                }

                .connection_app ul.conn-detail-list-mobile li .conn-type .type-detail .type.slept {
                    color: #4FBF70
                }

    .connection_app ul.conn-detail-list-mobile li .conn-date {
        padding: 0 20px;
        margin: 10px 0;
        font-size: 10.5pt
    }

        .connection_app ul.conn-detail-list-mobile li .conn-date .date-title {
            font-family: "Jost Book"
        }

        .connection_app ul.conn-detail-list-mobile li .conn-date .log-date {
            font-family: "Jost Medium"
        }

    .connection_app ul.conn-detail-list-mobile li .conn-point {
        padding: 0 20px;
        margin: 10px 0;
        font-size: 10.5pt
    }

        .connection_app ul.conn-detail-list-mobile li .conn-point .point-title {
            font-family: "Jost Book"
        }

        .connection_app ul.conn-detail-list-mobile li .conn-point .log-point {
            font-family: "Jost Medium"
        }

    .connection_app ul.conn-detail-list-mobile li .conn-detail {
        padding: 0 20px;
        margin: 10px 0;
        font-size: 10.5pt;
        font-family: "Jost Book"
    }

        .connection_app ul.conn-detail-list-mobile li .conn-detail .action_detail_des {
            font-family: "Jost Medium"
        }

.connection_app table {
    background: transparent;
    border: none
}

@media only screen and (max-width:665px) {
    .connection_app table {
        display: none
    }
}

.connection_app table .tb-head {
    background: #f4f4f4;
    font-family: "Jost Medium";
    font-weight: 500;
    font-size: 12pt;
    line-height: 25px;
    text-align: left;
    color: #54534A
}

    .connection_app table .tb-head th {
        border-bottom: none !important
    }

.connection_app table tbody {
    font-family: "Jost Book";
    font-weight: 400;
    font-size: 12pt;
    line-height: 25px;
    text-align: left;
    color: #53534a
}

    .connection_app table tbody tr.active {
        background: rgba(244, 121, 32, .1);
        color: #F47920;
        border: 2px solid #f47920
    }

        .connection_app table tbody tr.active td {
            border: none
        }

.connection_app table tr th,
.connection_app table tr td {
    padding: 1.25rem 1.875rem
}

.connection_app .nav-pag {
    font-family: "Roboto Condensed";
    font-weight: 400;
    font-size: 12pt;
    text-align: left;
    color: #b8b8b5;
    margin-top: 1.25rem
}

@media only screen and (max-width:665px) {
    .connection_app .nav-pag ul {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }
}

.connection_app .nav-pag ul .prev-pag .page-link,
.connection_app .nav-pag ul .next-pag .page-link {
    color: #F47920
}

.connection_app .nav-pag ul .disabled .page-link {
    color: #b8b8b5;
    cursor: default
}

.connection_app .nav-pag ul li .page-link {
    border: none;
    font-family: "Roboto Condensed";
    font-weight: 400;
    font-size: 12pt;
    text-align: left;
    color: #53534a
}

    .connection_app .nav-pag ul li .page-link:hover {
        background: transparent
    }

@media only screen and (max-width:665px) {
    .connection_app .nav-pag ul li .page-link {
        font-size: 10.5pt;
        padding: .25rem .5rem
    }
}

.connection_app .nav-pag ul .active .page-link {
    background: #F47920;
    color: #fff
}

.connection_app .nav-pag ul .active:hover {
    background: #F47920
}


@media only screen and (max-width:994px) {
    #showPopupConnnection .modal-dialog {
        max-width: 600px
    }
}

#showPopupConnnection .modal-content {
    min-height: 350px;
    max-width: 650px;
    margin: auto
}

@media only screen and (max-width:575px) {
    #showPopupConnnection .modal-content button.close {
        color: #fff
    }
}

#showPopupConnnection .modal-content button.close {
    opacity: 1
}

#showPopupConnnection .modal-content .modal-body {
    padding: 0
}

    #showPopupConnnection .modal-content .modal-body .row {
        margin: 0;
        width: 100%;
        height: 100%
    }

        #showPopupConnnection .modal-content .modal-body .row .background-image {
            background-repeat: no-repeat;
            background-size: cover;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center
        }

            #showPopupConnnection .modal-content .modal-body .row .background-image .bg-image {
                width: 100px;
                height: 100px;
                border-radius: 50%;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                margin: 1.25rem 0
            }

                #showPopupConnnection .modal-content .modal-body .row .background-image .bg-image img {
                    margin: 0;
                    width: 100%;
                    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
                    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
                    border-radius: 22.5%
                }

@media only screen and (max-width:424px) {
    #showPopupConnnection .modal-content .modal-body .row .background-image {
        min-height: 180px
    }
}

#showPopupConnnection .modal-content .modal-body .row .text-left {
    padding-left: 1.75rem;
    background: #fff
}

@media only screen and (max-width:575px) {
    #showPopupConnnection .modal-content .modal-body .row .text-left {
        padding: 0 1rem;
        width: 100%
    }
}

#showPopupConnnection .modal-content .modal-body .row .text-left h2.name {
    margin-top: 2.5rem
}

#showPopupConnnection .modal-content .modal-body .row .text-left .txt-foot {
    margin-bottom: 1.75rem;
    font-family: "Jost Book";
    font-weight: 400;
    font-size: 12pt;
    line-height: 24px;
    text-align: left;
    color: #54534A
}

    #showPopupConnnection .modal-content .modal-body .row .text-left .txt-foot a {
        color: #F47920;
        text-decoration: none
    }

@media only screen and (max-width:665px) {
    #showPopupConnnection .modal-content .modal-body .row .text-left .txt-foot {
        font-size: 12pt
    }
}

@media only screen and (max-width:575px) {
    #showPopupConnnection .modal-content .modal-body .row .text-left .btn.btn-connection {
        width: 100%
    }
}

#showPopupConnnection .modal-content .modal-body .row .text-left .btn.btn-success {
    background: #28a745 -webkit-gradient(linear, left top, left bottom, from(#48b461), to(#28a745)) repeat-x !important;
    background: #28a745 linear-gradient(180deg, #48b461, #28a745) repeat-x !important
}

.title {
    text-transform: uppercase
}

.main-comm {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media only screen and (max-width:665px) {
    .main-comm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.main-comm .select {
    width: 278px;
    background: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    margin: 1.67rem;
    text-align: center;
    text-decoration: none
}

    .main-comm .select:hover .btn {
        background: #F47920;
        color: #fff
    }

    .main-comm .select .mess-detail {
        padding: .625rem 2.8rem
    }

        .main-comm .select .mess-detail .text {
            font-family: "Jost Book";
            font-weight: 400;
            font-size: 10.5pt;
            line-height: 20px;
            text-align: center;
            color: #54534A
        }

    .main-comm .select .btn {
        width: 100%;
        border-radius: 0;
        background: #fff;
        color: #F47920;
        font-family: "Roboto Condensed";
        font-weight: "normal";
        font-size: 12pt;
        line-height: 31px;
        margin-top: 1.5rem;
        border-top: .5px solid #e2e7ed
    }

.body-communicate footer {
    bottom: 0;
    position: absolute;
    left: 0;
    width: 100%
}

.message-team {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

    .message-team a {
        min-width: 100px;
        max-width: 200px;
        width: 50%;
        padding: 0 .6rem;
        margin: 0 1.25rem 1.25rem
    }

@media only screen and (max-width:424px) {
    .message-team a {
        margin: 0 0 1.25rem
    }
}

.message-team a .btn {
    width: 100%;
    min-width: 150px;
    border-radius: 0;
    color: #54534A;
    font-family: "Roboto Condensed";
    font-weight: "normal";
    font-size: 12pt;
    line-height: 31px;
    background: #f4f4f4;
    padding: 3px .75rem 4px
}

    .message-team a .btn a {
        color: #54534A
    }

        .message-team a .btn a:hover,
        .message-team a .btn a.active {
            color: #fff;
            text-decoration: none
        }

    .message-team a .btn:hover,
    .message-team a .btn.active {
        background: #F47920;
        color: #fff
    }

        .message-team a .btn:hover a,
        .message-team a .btn.active a {
            color: #fff
        }

.send-message {
    margin: 0 300px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1)
}

@media only screen and (min-width:1134px) and (max-width:1360px) {
    .send-message {
        margin: 0 100px
    }
}

@media only screen and (max-width:1133px) {
    .send-message {
        margin: 0
    }
}

.send-message .send-to {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 1.875rem
}

    .send-message .send-to label {
        font-family: "Jost Book";
        font-weight: 400;
        font-size: 12pt;
        line-height: 20px;
        text-align: left;
        color: #b8b8b5;
        opacity: 1;
        margin-right: 10px;
        margin-bottom: 0;
        padding: 1rem 0 1rem 1.875rem
    }

.send-message .subject {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 1.875rem;
    border-top: 1px solid #f4f4f4
}

    .send-message .subject label {
        font-family: "Jost Book";
        font-weight: 400;
        font-size: 12pt;
        line-height: 20px;
        text-align: left;
        color: #b8b8b5;
        opacity: 1;
        margin-right: 10px;
        margin-bottom: 0
    }

    .send-message .subject input {
        border: none;
        font-family: "Jost Medium";
        font-weight: 500;
        font-size: 16pt;
        color: #54534A
    }

        .send-message .subject input:focus {
            -webkit-box-shadow: none;
            box-shadow: none
        }

.send-message .control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem 1.875rem;
    border-top: 1px solid #f4f4f4;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media only screen and (max-width:665px) {
    .send-message .control {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.send-message .control .attachment {
    font-family: "Roboto Condensed";
    font-weight: 400;
    font-size: 14pt;
    text-align: left;
    color: #54534A;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media only screen and (max-width:665px) {
    .send-message .control .attachment {
        width: 100%;
        margin-bottom: 1.25rem
    }
}

.send-message .control .attachment .choose-file {
    position: relative
}

    .send-message .control .attachment .choose-file input {
        opacity: 0
    }

    .send-message .control .attachment .choose-file span {
        position: absolute;
        left: 0;
        top: 0;
        font-family: "Roboto Condensed";
        font-weight: 400;
        font-size: 10.5pt;
        text-align: left;
        color: #54534A;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

        .send-message .control .attachment .choose-file span i {
            font-size: 1.5pt;
            -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
            margin-right: 10px
        }

.send-message .control .btn {
    font-family: "Roboto Condensed";
    font-weight: 400;
    font-size: 12pt;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    background: #F47920;
    padding: .6rem 1.8rem;
    border-radius: 0
}

@media only screen and (max-width:665px) {
    .send-message .control .btn {
        width: 100%
    }
}

.message-teammate .send-to .btn.select-teammate,
.message-teammate .send-to .btn.select-team,
.team .send-to .btn.select-teammate,
.team .send-to .btn.select-team {
    padding: 1.25rem;
    background-color: transparent;
    background-image: url(/images/communicate/plus-icon.svg);
    background-repeat: no-repeat;
    background-position: right;
    width: 20px
}

    .message-teammate .send-to .btn.select-teammate:focus,
    .message-teammate .send-to .btn.select-team:focus,
    .team .send-to .btn.select-teammate:focus,
    .team .send-to .btn.select-team:focus {
        -webkit-box-shadow: none;
        box-shadow: none
    }

.message-teammate .send-to .selected-teammate,
.team .send-to .selected-teammate {
    width: 90%;
    background-color: transparent
}

@media only screen and (max-width:424px) {
    .message-teammate .send-to .selected-teammate,
    .team .send-to .selected-teammate {
        width: 100%;
        padding: 1.25rem 0
    }
}

.message-teammate .send-to .selected-teammate ul,
.team .send-to .selected-teammate ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0
}

@media only screen and (max-width:424px) {
    .message-teammate .send-to .selected-teammate ul,
    .team .send-to .selected-teammate ul {
        width: 100%;
        padding: 0
    }
}

.message-teammate .send-to .selected-teammate ul li,
.team .send-to .selected-teammate ul li {
    margin-right: 15px;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 15px;
    margin-top: .5rem
}

    .message-teammate .send-to .selected-teammate ul li img,
    .team .send-to .selected-teammate ul li img {
        width: 40px;
        z-index: 3;
        position: relative
    }

    .message-teammate .send-to .selected-teammate ul li span,
    .team .send-to .selected-teammate ul li span {
        position: relative;
        padding: 0 0 0 15px;
        background: #F4F4F4;
        margin-left: -10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

        .message-teammate .send-to .selected-teammate ul li span.fat,
        .team .send-to .selected-teammate ul li span.fat {
            margin: 0 !important;
            color: #F47920;
            font-size: 10.5pt
        }

        .message-teammate .send-to .selected-teammate ul li span .hidden,
        .team .send-to .selected-teammate ul li span .hidden {
            background: transparent;
            color: #54534A;
            margin-right: 5px
        }

        .message-teammate .send-to .selected-teammate ul li span button,
        .team .send-to .selected-teammate ul li span button {
            width: 15px;
            height: 15px;
            margin-left: 15px;
            border: none;
            cursor: pointer;
            background: url(/images/dashboard/icon/remove.svg) no-repeat;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            background-position: center
        }

.message-teammate .send-to .selected-team,
.team .send-to .selected-team {
    padding: 1.25rem;
    width: 90%;
    background-color: transparent
}

@media only screen and (max-width:424px) {
    .message-teammate .send-to .selected-team,
    .team .send-to .selected-team {
        width: 100%;
        padding: 1.25rem 0
    }
}

.message-teammate .send-to .selected-team ul,
.team .send-to .selected-team ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0
}

@media only screen and (max-width:424px) {
    .message-teammate .send-to .selected-team ul,
    .team .send-to .selected-team ul {
        width: 100%;
        padding: 0
    }
}

.message-teammate .send-to .selected-team ul li,
.team .send-to .selected-team ul li {
    margin-right: 15px;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 15px;
    background: #f4f4f4
}

    .message-teammate .send-to .selected-team ul li img,
    .team .send-to .selected-team ul li img {
        width: 40px;
        z-index: 3;
        position: relative
    }

    .message-teammate .send-to .selected-team ul li span,
    .team .send-to .selected-team ul li span {
        position: relative;
        padding: 0 0 0 15px;
        background: #F4F4F4;
        margin-left: -10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

        .message-teammate .send-to .selected-team ul li span.fat,
        .team .send-to .selected-team ul li span.fat {
            margin-left: -22px;
            color: #F47920;
            font-size: 10.5pt
        }

        .message-teammate .send-to .selected-team ul li span .hidden,
        .team .send-to .selected-team ul li span .hidden {
            background: transparent;
            color: #54534A;
            margin-right: 5px
        }

        .message-teammate .send-to .selected-team ul li span button,
        .team .send-to .selected-team ul li span button {
            width: 15px;
            height: 15px;
            margin-left: 15px;
            border: none;
            cursor: pointer;
            background: url(/images/dashboard/icon/remove.svg) no-repeat;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            background-position: center
        }

.login-page {
    width: 100vw;
    height: 100vh;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

    .login-page .logo {
        position: absolute;
        z-index: 1;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        left: 50%;
        top: 10%
    }

    .login-page .copyright {
        position: absolute;
        z-index: 1;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        left: 50%;
        top: 95%;
        color: #54534a
    }

    .login-page .login-left {
        background: url(/images/illustration/login-left.svg);
        /*-webkit-animation: .5s ease-out 0s 1 slideInFromLeft;
    animation: .5s ease-out 0s 1 slideInFromLeft;*/
        width: 30%;
        height: 100%;
        background-position: right;
        background-size: auto;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .login-page form {
        position: absolute;
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

        .login-page form .form-signin {
            background: #fff;
            -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
            box-shadow: 0 0 20px rgba(0, 0, 0, .1);
            padding: 2.5rem;
            width: 25%;
            /*-webkit-animation: 2s ease-out 0s 1 slideInFromTop;
    animation: 2s ease-out 0s 1 slideInFromTop;*/
            margin-right: -25%;
            position: absolute;
            left: 15%;
            z-index: 1
        }

@media only screen and (min-width:992px) and (max-width:1360px) {
    .login-page form .form-signin {
        width: 33%
    }
}

@media only screen and (max-width:994px) {
    .login-page form .form-signin {
        width: 80%;
        left: 10%
    }
}

.login-page form .form-signin .type {
    text-transform: uppercase;
    font-family: "Roboto Cn";
    font-weight: 700;
    font-size: 21pt;
    line-height: 25px;
    text-align: center;
    color: #53534a;
    margin-bottom: 2rem
}

.login-page form .form-signin .text {
    font-family: "Jost Book";
    font-weight: 400;
    font-size: 12pt;
    line-height: 25px;
    text-align: left;
    color: #53534a;
    margin-bottom: 1.25rem
}

.login-page form .form-signin .form-group input {
    background: #f4f4f4;
    border: none;
    border-radius: 0;
    font-family: "Jost Light";
    font-weight: 300;
    font-size: 12pt;
    line-height: 32px;
    text-align: left;
    color: #696969;
    padding: .5rem 1.25rem;
    margin-bottom: 1.25rem
}

@media only screen and (max-width:424px) {
    .login-page form .form-signin .form-group input {
        font-size: 10.5pt
    }
}

.login-page form .form-signin .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1.25rem
}

    .login-page form .form-signin .form-check .form-check-input {
        margin-top: 0
    }

    .login-page form .form-signin .form-check label {
        font-family: "Jost Light";
        font-weight: 300;
        font-size: 12pt;
        line-height: 25px;
        text-align: left;
        color: #53534a
    }

.login-page form .form-signin .control button {
    border-radius: 0;
    text-transform: uppercase;
    font-family: "Roboto Condensed";
    font-weight: 400;
    font-size: 12pt;
    line-height: 32px;
    text-align: center;
    color: #fff;
    margin-bottom: 10px
}

    .login-page form .form-signin .control button.btn-signin {
        width: 70%;
        background-color: #F47920
    }

.login-page form .form-signin .control buttonsigninsso {
    max-width: 100%;
    background-color: #1b1d35
}

.login-page form .form-signin .control button.btn-help {
    width: 25%;
    float: right;
    background-color: #F4F4F4;
    color: #F47920
}

.login-page form .form-signin a {
    font-family: "Jost Book";
    font-weight: 400;
    font-size: 12pt;
    line-height: 25px;
    text-align: center;
    color: #f47920;
    text-decoration: underline
}

.login-page form .form-signin .privacy {
    padding-top: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 70%;
    margin: auto;
    font-family: "Jost Book";
    font-weight: 400;
    font-size: 12pt;
    text-align: center;
    color: #53534a
}

    .login-page form .form-signin .privacy span {
        font-size: 2rem;
        margin-top: -17px
    }

@media only screen and (max-width:424px) {
    .login-page form .form-signin .privacy {
        width: 100%
    }
}

.login-page .login-right {
    background: url(/images/illustration/login-right.svg);
    -webkit-transition: 2s;
    transition: 2s;
    width: 55%;
    height: 100%;
    background-position: left;
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
    /*-webkit-animation: .5s ease-out 0s 1 slideInFromRight;
    animation: .5s ease-out 0s 1 slideInFromRight*/
}

.login-page .img-load {
    width: 55%;
    height: 100%;
    background-position: left;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    right: 0
}

    .login-page .img-load img {
        position: absolute
    }

        .login-page .img-load img.cloud-01 {
            top: 15%;
            left: 8%;
            /*-webkit-animation: 1.5s ease-out 0s 1 slideInFromTop;
    animation: 1.5s ease-out 0s 1 slideInFromTop*/
        }

        .login-page .img-load img.cloud-02 {
            top: 5%;
            left: 50%;
            /*-webkit-animation: 1.5s ease-out 0s 1 slideInFromTop;
    animation: 1.5s ease-out 0s 1 slideInFromTop*/
        }

        .login-page .img-load img.cloud-03 {
            top: 24%;
            left: 60%;
            width: 13%;
            /*-webkit-animation: 1.5s ease-out 0s 1 slideInFromTop;
    animation: 1.5s ease-out 0s 1 slideInFromTop*/
        }

        .login-page .img-load img.cloud-04 {
            top: 6%;
            right: -16%;
            /*-webkit-animation: 1.5s ease-out 0s 1 slideInFromTop;
    animation: 1.5s ease-out 0s 1 slideInFromTop*/
        }

        .login-page .img-load img.people {
            top: 25%;
            left: 25%;
            /*-webkit-animation: 2s ease-out 0s 1 slideInFromRight;
    animation: 2s ease-out 0s 1 slideInFromRight*/
        }

        .login-page .img-load img.grass-01 {
            top: 68%;
            width: 7%;
            left: 25%;
            /*-webkit-animation: 1s ease-out 0s 1 slideInFromBottom;
    animation: 1s ease-out 0s 1 slideInFromBottom*/
        }

@media only screen and (max-width:994px) {
    .login-page .img-load img.grass-01 {
        visibility: hidden
    }
}

.login-page .img-load img.grass-02 {
    top: 60%;
    width: 20%;
    left: 60%;
    /*-webkit-animation: 1s ease-out 0s 1 slideInFromBottom;
    animation: 1s ease-out 0s 1 slideInFromBottom*/
}

@media only screen and (max-width:994px) {
    .login-page .img-load img.grass-02 {
        visibility: hidden
    }
}

.login-page .img-load img.fire {
    top: 70%;
    right: -10%;
    /*-webkit-animation: 1s ease-out 0s 1 slideInFromBottom;
    animation: 1s ease-out 0s 1 slideInFromBottom;*/
    visibility: hidden
}

@-webkit-keyframes slideInFromLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInFromLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes slideInFromRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }

    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }
}

@keyframes slideInFromRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }

    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }
}

@-webkit-keyframes slideInFromTop {
    0% {
        -webkit-transform: translatey(-100%);
        transform: translatey(-100%)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInFromTop {
    0% {
        -webkit-transform: translatey(-100%);
        transform: translatey(-100%)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes slideInFromBottom {
    0% {
        -webkit-transform: translatey(100%);
        transform: translatey(100%)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInFromBottom {
    0% {
        -webkit-transform: translatey(100%);
        transform: translatey(100%)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.modal {
    padding: 1.875rem 1.25rem
}

    .modal button.close {
        font-size: 2rem;
        color: #54534A;
        float: right;
        position: absolute;
        -webkit-appearance: none;
        right: 20px;
        top: 11px;
        z-index: 2
    }

    .modal .modal-content {
        border-radius: 0
    }

        .modal .modal-content .modal-body {
            text-align: center
        }

            .modal .modal-content .modal-body .device-image {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center
            }

            .modal .modal-content .modal-body .device-image-source {
                margin: 1.25rem 0;
                width: 90%;
                max-width: 150px
            }

            .modal .modal-content .modal-body h2 {
                font-family: "Roboto Cn";
                font-weight: 700;
                font-size: 12pt;
                line-height: 35px;
                color: #54534A;
                text-transform: uppercase;
                margin: 1.25rem 0
            }

            .modal .modal-content .modal-body .content-modal {
                text-align: left;
                font-family: "Jost Book";
                font-weight: 400;
                font-size: 12pt;
                line-height: 24px;
                text-align: left;
                color: #54534A;
                margin-bottom: 1.25rem
            }

                .modal .modal-content .modal-body .content-modal .access-code {
                    font-family: "Jost Medium";
                    font-weight: 500;
                    font-size: 12pt;
                    line-height: 25px;
                    color: #54534A;
                    text-transform: uppercase;
                    margin: 14px 0
                }

                    .modal .modal-content .modal-body .content-modal .access-code span {
                        text-transform: lowercase;
                        color: #F47920
                    }

            .modal .modal-content .modal-body .btn {
                padding: 12px 52px;
                font-family: "Roboto Condensed";
                font-weight: 400;
                font-size: 12pt;
                text-align: center;
                color: #F47920;
                text-transform: uppercase;
                border-radius: 0;
                margin-bottom: 1.25rem;
                background: #F4F4F4
            }

                .modal .modal-content .modal-body .btn:hover {
                    color: #fff;
                    background: #F47920
                }

            .modal .modal-content .modal-body .support {
                font-family: "Jost Book";
                font-weight: 400;
                font-size: 12pt;
                line-height: 24px;
                color: #54534A
            }

                .modal .modal-content .modal-body .support a {
                    color: #F47920;
                    text-decoration: none
                }

    .modal.modal-new-user .modal-content .modal-body {
        padding: 2rem
    }

        .modal.modal-new-user .modal-content .modal-body img {
            max-width: none;
            min-width: 200px;
            width: 40%;
            margin: 1.5rem 0 3.5rem 0
        }

        .modal.modal-new-user .modal-content .modal-body h3 {
            font-family: "Roboto Cn"
        }

        .modal.modal-new-user .modal-content .modal-body p {
            font-family: "Jost Book"
        }

        .modal.modal-new-user .modal-content .modal-body a {
            color: #F47920
        }

.bg-right {
    width: 100%;
    height: 100vh;
    position: fixed
}

    .bg-right .bg-under {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100vh;
        background-image: url(/images/illustration/error-bg.svg);
        background-repeat: no-repeat;
        background-size: 100%;
        -webkit-animation: .5s ease-out 0s 1 slideInFromTop;
        animation: .5s ease-out 0s 1 slideInFromTop
    }

@media only screen and (min-width:992px) and (max-width:1360px) {
    .bg-right .bg-under {
        width: 70%
    }
}

@media only screen and (max-width:994px) {
    .bg-right .bg-under {
        width: 88%
    }
}

.bg-right img {
    position: absolute
}

    .bg-right img.cloud-01 {
        left: 55%;
        top: 3%;
        width: 7%;
        /*-webkit-animation: 1s ease-out 0s 1 slideInFromTop;
    animation: 1s ease-out 0s 1 slideInFromTop*/
    }

@media only screen and (min-width:992px) and (max-width:1360px) {
    .bg-right img.cloud-01 {
        left: 40%
    }
}

.bg-right img.cloud-02 {
    left: 67%;
    width: 5%;
    top: 1%;
    /*-webkit-animation: 1s ease-out 0s 1 slideInFromTop;
    animation: 1s ease-out 0s 1 slideInFromTop*/
}

@media only screen and (min-width:992px) and (max-width:1360px) {
    .bg-right img.cloud-02 {
        left: 55%
    }
}

.bg-right img.cloud-03 {
    left: 75%;
    width: 7%;
    top: 8%;
    /*-webkit-animation: 1s ease-out 0s 1 slideInFromTop;
    animation: 1s ease-out 0s 1 slideInFromTop*/
}

@media only screen and (min-width:992px) and (max-width:1360px) {
    .bg-right img.cloud-03 {
        left: 65%
    }
}

.bg-right img.cloud-04 {
    top: 25%;
    left: 63%;
    width: 10%;
    /*-webkit-animation: 1s ease-out 0s 1 slideInFromRight;
    animation: 1s ease-out 0s 1 slideInFromRight*/
}

@media only screen and (min-width:992px) and (max-width:1360px) {
    .bg-right img.cloud-04 {
        left: 56%
    }
}

.bg-right img.sun {
    left: 87%;
    top: 10%;
    -webkit-animation: 1s ease-out 0s 1 slideInFromTop;
    animation: 1s ease-out 0s 1 slideInFromTop
}

@media only screen and (min-width:992px) and (max-width:1360px) {
    .bg-right img.sun {
        left: 79%
    }
}

.bg-right img.people-error {
    top: 33%;
    left: 52%;
    -webkit-animation: 1.5s ease-out 0s 1 slideInFromBottom;
    animation: 1.5s ease-out 0s 1 slideInFromBottom
}

@media only screen and (min-width:992px) and (max-width:1360px) {
    .bg-right img.people-error {
        left: 40%
    }
}

@media only screen and (max-width:994px) {
    .bg-right img.people-error {
        visibility: hidden
    }
}

.form-text-left {
    position: fixed;
    width: 50%;
    height: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-animation: 2s ease-out 0s 1 slideInFromLeft;
    animation: 2s ease-out 0s 1 slideInFromLeft
}

@media only screen and (max-width:994px) {
    .form-text-left {
        width: 100%;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
}

.form-text-left .content-error {
    width: 50%
}

@media only screen and (max-width:994px) {
    .form-text-left .content-error {
        width: 90%
    }
}

.form-text-left .content-error .type {
    font-family: "Roboto Cn";
    font-weight: 700;
    font-size: 32pt;
    color: #54534A;
    text-transform: uppercase
}

.form-text-left .content-error .text {
    font-family: "Jost Book";
    font-weight: 400;
    font-size: 12pt;
    margin: 1.25rem 0;
    text-align: left;
    color: #54534A
}

.form-text-left .content-error button {
    padding: .75rem 2.5rem;
    text-transform: uppercase;
    border-radius: 0;
    background: #F47920;
    font-family: "Roboto Condensed";
    font-weight: 400;
    font-size: 12pt;
    line-height: 32px;
    text-align: left;
    color: #fff
}

.accordion {
    border: none;
    padding: 0 100px
}

@media only screen and (min-width:992px) and (max-width:1360px) {
    .accordion {
        padding: 0 80px
    }
}

@media only screen and (min-width:768px) and (max-width:994px) {
    .accordion {
        padding: 0 60px
    }
}

@media only screen and (min-width:425px) and (max-width:767px) {
    .accordion {
        padding: 0 40px
    }
}

@media only screen and (max-width:424px) {
    .accordion {
        padding: 0 20px
    }
}

.accordion .card {
    border: none;
    margin-bottom: 10px
}

    .accordion .card .card-header {
        border: none;
        background: transparent;
        padding: 0
    }

        .accordion .card .card-header h5 {
            cursor: pointer;
            font-family: "Roboto Condensed";
            font-weight: 400;
            font-size: 14.5pt;
            line-height: 25px;
            text-align: left;
            color: #54534A;
            padding: 1.125rem 2.5rem;
            background: #f4f4f4;
            position: relative
        }

@media only screen and (max-width:424px) {
    .accordion .card .card-header h5 {
        font-size: 12pt;
        padding-left: 1.5rem;
        padding-right: 3rem
    }
}

.accordion .card .card-header h5[aria-expanded="true"] {
    color: #F47920;
    font-family: "Roboto Cn";
    background: transparent
}

.accordion .card .card-header h5::after {
    content: "";
    background: url(/images/dashboard/icon/expanded.svg);
    float: right;
    font-size: 2rem;
    color: #f47920;
    font-weight: 500;
    font-family: "Arial";
    width: 20px;
    background-repeat: no-repeat;
    position: absolute;
    right: 20px;
    height: 100%;
    background-position: center;
    top: 0
}

.accordion .card .card-header h5.collapsed::after {
    content: "";
    background: url(/images/dashboard/icon/noexpand.svg);
    float: right;
    font-size: 30pt;
    color: #f47920;
    font-weight: 500;
    font-family: "Arial";
    width: 20px;
    background-repeat: no-repeat;
    position: absolute;
    right: 20px;
    height: 100%;
    background-position: center;
    top: 0
}

.accordion .card .card-body {
    font-family: "Jost Book";
    font-weight: 400;
    font-size: 12pt;
    line-height: 30px;
    text-align: left;
    color: #54534A;
    padding: 1.25rem 2.5rem
}

.accordion#pwa-accordion {
    padding: 0
}

    .accordion#pwa-accordion .card .card-header .collapsed.notStarted::after {
        content: "";
        background: url(../../images/grey-elipse-full.svg);
        float: right;
        color: #f47920;
        font-weight: 500;
        width: 20px;
        background-repeat: no-repeat;
        background-size: 20px;
        background-position: center;
        position: absolute;
        right: 20px;
        height: 100%;
        top: 0
    }

    .accordion#pwa-accordion .card .card-header .notStarted::after {
        content: "";
        background: url(../../images/grey-elipse-empty.svg);
        float: right;
        color: #f47920;
        font-weight: 500;
        width: 20px;
        background-repeat: no-repeat;
        background-size: 20px;
        background-position: center;
        position: absolute;
        right: 20px;
        height: 100%;
        top: 0
    }

    .accordion#pwa-accordion .card .card-header .collapsed.inProgress::after {
        content: "";
        background: url(../../images/green-elipse-progress.svg);
        float: right;
        color: #f47920;
        font-weight: 500;
        width: 20px;
        background-repeat: no-repeat;
        background-size: 20px;
        background-position: center;
        position: absolute;
        right: 20px;
        height: 100%;
        top: 0
    }

    .accordion#pwa-accordion .card .card-header .inProgress::after {
        content: "";
        background: url(../../images/green-elipse-progress-empty.svg);
        float: right;
        color: #f47920;
        font-weight: 500;
        width: 20px;
        background-repeat: no-repeat;
        background-size: 20px;
        background-position: center;
        position: absolute;
        right: 20px;
        height: 100%;
        top: 0
    }

    .accordion#pwa-accordion .card .card-header .collapsed.completed::after {
        content: "";
        background: url(../../images/green-elipse-checkmark.svg);
        float: right;
        color: #f47920;
        font-weight: 500;
        width: 20px;
        background-repeat: no-repeat;
        background-size: 20px;
        background-position: center;
        position: absolute;
        right: 20px;
        height: 100%;
        top: 0
    }

    .accordion#pwa-accordion .card .card-header .completed::after {
        content: "";
        background: url(../../images/green-elipse-minus.svg);
        float: right;
        color: #f47920;
        font-weight: 500;
        width: 20px;
        background-repeat: no-repeat;
        background-size: 20px;
        background-position: center;
        position: absolute;
        right: 20px;
        height: 100%;
        top: 0
    }

    .accordion#pwa-accordion .card .list-group-item {
        display: flex;
        display: -webkit-box;
        display: -ms-flexbox
    }

        .accordion#pwa-accordion .card .list-group-item .status {
            background-size: 20px;
            background-repeat: no-repeat;
            background-position: top;
            background-origin: content-box;
            width: 20px;
            padding-top: 4px
        }

            .accordion#pwa-accordion .card .list-group-item .status.incomplete {
                background-image: url(../../images/grey-elipse-full.svg)
            }

            .accordion#pwa-accordion .card .list-group-item .status.completed {
                background-image: url(../../images/green-elipse-checkmark.svg)
            }

        .accordion#pwa-accordion .card .list-group-item .q-number {
            margin-right: 5px;
            text-align: right;
            width: 35px
        }

        .accordion#pwa-accordion .card .list-group-item .q-text {
            width: 90%
        }

.container-form-edit {
    padding: 0 1px
}

.form-edit {
    width: 80%;
    margin: auto
}

@media only screen and (max-width:424px) {
    .form-edit {
        width: 100%
    }
}

.form-edit .padd-right {
    padding-right: 8%
}

@media only screen and (max-width:994px) {
    .form-edit .padd-right {
        padding: 0 1%
    }
}

.form-edit .padd-left {
    padding-left: 8%
}

@media only screen and (max-width:994px) {
    .form-edit .padd-left {
        padding: 0 1%
    }
}

@media only screen and (max-width:424px) {
    .form-edit .col-xs-12 {
        padding: 0 !important
    }
}

.form-edit .btn {
    background: #f47920;
    font-family: "Roboto Condensed";
    font-weight: 400;
    font-size: 12pt;
    text-align: left;
    color: #f4f4f4;
    text-transform: uppercase;
    padding: .6rem 0;
    margin-top: 2.5rem;
    border-radius: 0;
    max-width: 100%;
    width: 280px;
    text-align: center
}

@media only screen and (max-width:424px) {
    .form-edit .btn {
        width: 100%
    }
}

.form-edit .form-group {
    margin-top: 1.25rem
}

@media only screen and (max-width:424px) {
    .form-edit .form-group {
        margin-top: 0;
        margin-bottom: 30px
    }
}

.form-edit .form-group label {
    font-family: "Jost Book";
    font-weight: 400;
    font-size: 12pt;
    text-align: left;
    color: #53534a
}

.form-edit .form-group input {
    background: #f8f8f8;
    font-family: "Jost Medium";
    font-weight: 500;
    font-size: 10.5pt;
    line-height: 20px;
    text-align: left;
    color: #54534A;
    opacity: 1;
    border-radius: 0;
    border: none;
    padding: 10px;
    height: 40px
}

    .form-edit .form-group input:focus {
        -webkit-box-shadow: none;
        box-shadow: none
    }

.form-change {
    width: 20%;
    margin: auto
}

@media only screen and (max-width:994px) {
    .form-change {
        width: 40%
    }
}

@media only screen and (max-width:424px) {
    .form-change {
        width: 60%
    }
}

.form-change .form-group {
    margin-top: 2.5rem;
    margin-bottom: 0
}

.form-change .btn {
    width: 100%;
    padding: .6rem 0;
    text-align: center
}

.profile .form-edit {
    width: 280px;
    margin: auto
}

    .profile .form-edit .current-avatar {
        text-align: center;
        margin-bottom: 2.5rem
    }

        .profile .form-edit .current-avatar .avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%
        }

    .profile .form-edit .btn {
        width: 100%;
        text-align: center;
        padding-left: 0;
        padding-right: 0
    }

.profile .select-avatar {
    margin-top: 3.75rem;
    padding: 0 10px
}

.slick-arrow {
    margin-top: -5px
}

.slick-prev {
    left: 10px
}

    .slick-prev:before {
        content: "";
        background: url(/images/dashboard/icon/arrow-left.svg) no-repeat
    }

.slick-next {
    right: 0
}

    .slick-next:before {
        content: "";
        background: url(/images/dashboard/icon/arrow-right.svg) no-repeat
    }

.slick-track .slick-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

    .slick-track .slick-slide.active img {
        border-radius: 50%;
        border: 3px solid #4FBF70
    }

    .slick-track .slick-slide.active::after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        background: url(/images/dashboard/icon/active-avatar.svg) no-repeat;
        background-position-x: 75%
    }

.slick-slider ul.slick-dots {
    display: none !important
}

.control-account {
    width: 280px;
    margin: auto
}

    .control-account .btn {
        width: 100%;
        padding: .625rem 0;
        text-transform: uppercase;
        font-family: "Roboto Condensed";
        font-weight: 400;
        font-size: 12pt;
        text-align: center;
        color: #54534A;
        border-radius: 0;
        margin-bottom: 1.875rem;
        background: #F8F8F8
    }

        .control-account .btn a {
            color: #54534A
        }

            .control-account .btn a:hover {
                text-decoration: none
            }

        .control-account .btn:hover {
            background: #F47920;
            color: #f4f4f4
        }

            .control-account .btn:hover a {
                color: #f4f4f4
            }

.modal-confirm-profile .modal-content {
    position: relative;
    border-radius: 0;
    max-width: 350px;
    margin: auto
}

    .modal-confirm-profile .modal-content .content {
        font-family: "Jost Book";
        font-size: 14pt;
        margin-bottom: 3.25rem;
        padding: 1.25rem 0
    }

    .modal-confirm-profile .modal-content .btn-ok {
        position: absolute;
        bottom: 0;
        margin-bottom: 0 !important;
        width: 100%;
        left: 0
    }

.wearable-devices {
    margin: 0 10%;
    position: relative
}

@media only screen and (max-width:665px) {
    .wearable-devices {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.wearable-devices .search-control {
    width: 100%
}

@media only screen and (max-width:665px) {
    .wearable-devices .search-control {
        width: 100%;
        max-width: 100%
    }
}

.wearable-devices .search-control .input-group {
    width: 40%
}

@media only screen and (max-width:665px) {
    .wearable-devices .search-control .input-group {
        width: 100%
    }
}

.wearable-devices .search-control .input-group input {
    color: #F47920;
    background: #F8F8F8;
    padding: 8px 20px !important;
    border: none;
    font-size: 12pt;
    font-family: "Jost Book";
    -webkit-appearance: button;
    outline: none
}

.wearable-devices .search-control .input-group .input-group-prepend {
    background: #f47920;
    color: #fff
}

    .wearable-devices .search-control .input-group .input-group-prepend span {
        color: #fff
    }

.wearable-devices .sort {
    position: absolute;
    right: 0;
    width: 50%
}

@media only screen and (max-width:665px) {
    .wearable-devices .sort {
        width: 100%;
        max-width: 100%;
        position: relative
    }
}

.wearable-devices .sort .input-group {
    max-width: 220px;
    float: right
}

@media only screen and (max-width:665px) {
    .wearable-devices .sort .input-group {
        width: 200px;
        float: unset;
        margin: auto;
        margin-top: 1.25rem
    }
}

.wearable-list {
    margin: 2.5rem 7%
}

@media only screen and (max-width:424px) {
    .wearable-list {
        margin: 2.5rem 1rem
    }
}

.wearable-list .row {
    margin: 0
}

@media only screen and (min-width:425px) and (max-width:767px) {
    .wearable-list .row {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media only screen and (max-width:424px) {
    .wearable-list .row {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.wearable-list .row .main {
    text-align: center;
    padding: 2rem 15px;
    min-width: 20%;
    width: 20%
}

    .wearable-list .row .main:hover .btn {
        background-color: #F47920;
        color: #fff
    }

@media only screen and (min-width:992px) and (max-width:1360px) {
    .wearable-list .row .main {
        min-width: 25%;
        width: 25%
    }
}

@media only screen and (min-width:768px) and (max-width:994px) {
    .wearable-list .row .main {
        min-width: 33%;
        width: 33%;
        padding: 2rem 1rem
    }
}

@media only screen and (min-width:425px) and (max-width:767px) {
    .wearable-list .row .main {
        min-width: 50%;
        width: 50%;
        padding: 2rem 1rem
    }
}

@media only screen and (max-width:424px) {
    .wearable-list .row .main {
        min-width: 50%;
        width: 50%;
        padding: 2rem .5rem
    }
}

.wearable-list .row .main .img_wearable {
    width: 85px;
    height: 85px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: auto;
    cursor: pointer
}

    .wearable-list .row .main .img_wearable img {
        height: 100%
    }

.wearable-list .row .main .name_wearable {
    font-family: "Jost Book";
    font-weight: 500;
    font-size: 12pt;
    line-height: 30px;
    color: #54534A;
    margin-top: 1.25rem
}

@media only screen and (min-width:425px) and (max-width:767px) {
    .wearable-list .row .main .name_wearable {
        font-size: 12pt
    }
}

.wearable-list .row .main .money {
    font-family: "Jost Book";
    font-weight: 400;
    font-size: 10.5pt;
    line-height: 20px;
    color: #F47920
}

.wearable-list .row .main .btn {
    margin-top: .65rem;
    padding: 9px 0 8px;
    font-family: "Roboto Condensed";
    font-weight: 400;
    font-size: 10.5pt;
    text-align: center;
    color: #54534A;
    text-transform: uppercase;
    background: #F4F4F4;
    border-radius: 0;
    width: 100%;
    max-width: 140px
}

    .wearable-list .row .main .btn:hover {
        background-color: #F47920;
        color: #fff
    }

    .wearable-list .row .main .btn.btn-success {
        padding: .5rem .8rem;
        color: #fff
    }

@media only screen and (max-width:575px) {
    #wearableDetail button.btn {
        width: 100%
    }
}

@media only screen and (max-width:575px), (min-width:992px) {
    .perform .row div.py-0 {
        padding-left: 0;
        padding-right: 0
    }
}

.performance .perform .col-chart {
    padding: 20px
}

.perform .col-chart .performance-img {
    width: 15%;
    padding-left: 10px
}

@media only screen and (min-width:425px) {
    .perform .col-chart .performance-img {
        padding: 10px
    }
}

@media only screen and (min-width:575px) {
    .perform .col-chart .performance-img {
        display: none
    }
}

@media only screen and (min-width:860px) {
    .perform .col-chart .performance-img {
        width: 25%;
        display: block
    }
}

@media only screen and (min-width:992px) {
    .perform .col-chart .performance-img {
        padding: 20px;
        padding-left: 20px
    }
}
/*<--Taken this code End  -->*/
table.dataTable {
    width: 100%;
    margin: 0 auto;
    clear: both;
    border-spacing: 0
}

.dataTables_wrapper {
    position: relative;
    clear: both;
    *zoom: 1;
    zoom: 1;
    padding-top: 50px
}

    .dataTables_wrapper .dataTables_length {
        float: left
    }

    .dataTables_wrapper .dataTables_filter {
        float: right;
        text-align: right
    }

        .dataTables_wrapper .dataTables_filter input {
            margin-left: .5em
        }

    .dataTables_wrapper .dataTables_info {
        clear: both;
        padding-top: .755em;
        position: absolute;
        top: 0;
        right: 0;
        font-family: "Roboto Condensed";
        font-weight: 400;
        font-size: 12pt;
        text-align: right;
        color: #53534a;
        margin-bottom: 1.25rem
    }

        .dataTables_wrapper .dataTables_info .total {
            color: #F47920
        }

    .dataTables_wrapper .dataTables_paginate {
        float: right;
        text-align: right;
        padding-top: 1.25em;
        border: none;
        font-family: "Roboto Condensed";
        font-weight: 400;
        font-size: 12pt;
        color: #53534a
    }

        .dataTables_wrapper .dataTables_paginate .paginate_button {
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            display: inline-block;
            min-width: 1.5em;
            padding: .5rem .75rem;
            margin-left: 2px;
            text-align: center;
            text-decoration: none !important;
            cursor: pointer;
            *cursor: hand;
            color: #333 !important;
            border: 1px solid transparent;
            border-radius: 2px
        }

            .dataTables_wrapper .dataTables_paginate .paginate_button.current,
            .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
                background: #f47920;
                color: #fff !important
            }

            .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
            .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
            .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
                cursor: default;
                color: #b8b8b5 !important;
                border: 1px solid transparent;
                background: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .dataTables_wrapper .dataTables_paginate .ellipsis {
            padding: 0 1em
        }

    .dataTables_wrapper .dataTables_processing {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 40px;
        margin-left: -50%;
        margin-top: -25px;
        padding-top: 20px;
        text-align: center;
        font-size: 1.2em;
        background-color: #fff;
        background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, .9)), color-stop(75%, rgba(255, 255, 255, .9)), to(rgba(255, 255, 255, 0)));
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .9) 25%, rgba(255, 255, 255, .9) 75%, rgba(255, 255, 255, 0) 100%)
    }

    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter,
    .dataTables_wrapper .dataTables_info,
    .dataTables_wrapper .dataTables_processing,
    .dataTables_wrapper .dataTables_paginate {
        color: #333
    }

    .dataTables_wrapper .dataTables_scroll {
        clear: both
    }

        .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
            *margin-top: -1px;
            -webkit-overflow-scrolling: touch
        }

            .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th,
            .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td,
            .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th,
            .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
                vertical-align: middle
            }

                .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
                .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing,
                .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing,
                .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
                    height: 0;
                    overflow: hidden;
                    margin: 0 !important;
                    padding: 0 !important
                }

    .dataTables_wrapper.no-footer .dataTables_scrollBody {
        border-bottom: 1px solid #dee2e6
    }

    .dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
    .dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
        border-bottom: none
    }

    .dataTables_wrapper:after {
        visibility: hidden;
        display: block;
        content: "";
        clear: both;
        height: 0
    }

table.dataTable.hover tbody tr:hover td,
table.dataTable.display tbody tr:hover td {
    background: rgba(244, 121, 32, .1);
    color: #f47920 !important;
    border: 1px solid #f47920 !important
}

    table.dataTable.hover tbody tr:hover td:not(:last-child),
    table.dataTable.display tbody tr:hover td:not(:last-child) {
        border-right: 0 !important
    }

    table.dataTable.hover tbody tr:hover td:not(:first-child),
    table.dataTable.display tbody tr:hover td:not(:first-child) {
        border-left: 0 !important
    }

@media screen and (max-width:767px) {
    .dataTables_wrapper .dataTables_info,
    .dataTables_wrapper .dataTables_paginate {
        float: none;
        text-align: center
    }

    .dataTables_wrapper .dataTables_paginate {
        margin-top: .5em
    }
}

@media screen and (max-width:640px) {
    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter {
        float: none;
        text-align: center
    }

    .dataTables_wrapper .dataTables_filter {
        margin-top: .5em
    }
}

@media only screen and (max-width:575px) {
    .activity .activity-tabs ul.nav {
        width: 90%;
        margin: auto
    }

        .activity .activity-tabs ul.nav .col-6 li .tab-name {
            display: none
        }
}

@media only screen and (max-width:424px) {
    .activity .activity-tabs ul.nav {
        width: 100%
    }
}

.activity .activity-tabs ul.nav .col-6 {
    padding: 0
}

    .activity .activity-tabs ul.nav .col-6 li {
        text-align: center
    }

        .activity .activity-tabs ul.nav .col-6 li:hover,
        .activity .activity-tabs ul.nav .col-6 li:focus {
            outline: none !important;
            border: none !important
        }

        .activity .activity-tabs ul.nav .col-6 li .nav-link {
            cursor: pointer;
            padding: 0
        }

            .activity .activity-tabs ul.nav .col-6 li .nav-link:hover,
            .activity .activity-tabs ul.nav .col-6 li .nav-link:focus {
                border-color: transparent
            }

            .activity .activity-tabs ul.nav .col-6 li .nav-link.active,
            .activity .activity-tabs ul.nav .col-6 li .nav-link:hover {
                border-color: transparent !important
            }

                .activity .activity-tabs ul.nav .col-6 li .nav-link.active .tab-item.physical .item-img,
                .activity .activity-tabs ul.nav .col-6 li .nav-link:hover .tab-item.physical .item-img {
                    background: #F47920
                }

                    .activity .activity-tabs ul.nav .col-6 li .nav-link.active .tab-item.physical .item-img .img-activity,
                    .activity .activity-tabs ul.nav .col-6 li .nav-link:hover .tab-item.physical .item-img .img-activity {
                        background-image: url(/images/dashboard/physical-white.svg) !important
                    }

                .activity .activity-tabs ul.nav .col-6 li .nav-link.active .tab-item.physical .tab-name,
                .activity .activity-tabs ul.nav .col-6 li .nav-link:hover .tab-item.physical .tab-name {
                    color: #F47920 !important;
                    font-family: "Roboto Cn" !important
                }

                .activity .activity-tabs ul.nav .col-6 li .nav-link.active .tab-item.daily .item-img,
                .activity .activity-tabs ul.nav .col-6 li .nav-link:hover .tab-item.daily .item-img {
                    background: #4FBF70
                }

                    .activity .activity-tabs ul.nav .col-6 li .nav-link.active .tab-item.daily .item-img .img-activity,
                    .activity .activity-tabs ul.nav .col-6 li .nav-link:hover .tab-item.daily .item-img .img-activity {
                        background-image: url(/images/dashboard/daily-white.svg) !important
                    }

                .activity .activity-tabs ul.nav .col-6 li .nav-link.active .tab-item.daily .tab-name,
                .activity .activity-tabs ul.nav .col-6 li .nav-link:hover .tab-item.daily .tab-name {
                    color: #4FBF70 !important;
                    font-family: "Roboto Cn" !important
                }

                .activity .activity-tabs ul.nav .col-6 li .nav-link.active .tab-item.special .item-img,
                .activity .activity-tabs ul.nav .col-6 li .nav-link:hover .tab-item.special .item-img {
                    background: #5D549D
                }

                    .activity .activity-tabs ul.nav .col-6 li .nav-link.active .tab-item.special .item-img .img-activity,
                    .activity .activity-tabs ul.nav .col-6 li .nav-link:hover .tab-item.special .item-img .img-activity {
                        background-image: url(/images/dashboard/special-white.svg) !important
                    }

                .activity .activity-tabs ul.nav .col-6 li .nav-link.active .tab-item.special .tab-name,
                .activity .activity-tabs ul.nav .col-6 li .nav-link:hover .tab-item.special .tab-name {
                    color: #5D549D !important;
                    font-family: "Roboto Cn" !important
                }

                .activity .activity-tabs ul.nav .col-6 li .nav-link.active .tab-item.nutrition .item-img,
                .activity .activity-tabs ul.nav .col-6 li .nav-link:hover .tab-item.nutrition .item-img {
                    background: #EACA1E
                }

                    .activity .activity-tabs ul.nav .col-6 li .nav-link.active .tab-item.nutrition .item-img .img-activity,
                    .activity .activity-tabs ul.nav .col-6 li .nav-link:hover .tab-item.nutrition .item-img .img-activity {
                        background-image: url(/images/dashboard/nutrition-white.svg) !important
                    }

                .activity .activity-tabs ul.nav .col-6 li .nav-link.active .tab-item.nutrition .tab-name,
                .activity .activity-tabs ul.nav .col-6 li .nav-link:hover .tab-item.nutrition .tab-name {
                    color: #EACA1E !important;
                    font-family: "Roboto Cn" !important
                }

@media only screen and (max-width:994px) {
    .activity .activity-tabs ul.nav .col-6 li .nav-link.active,
    .activity .activity-tabs ul.nav .col-6 li .nav-link:hover {
        font-family: "Jost Medium"
    }
}

.activity .activity-tabs ul.nav .col-6 li .nav-link .tab-item.physical .img-activity {
    background-image: url(/images/dashboard/physical.svg)
}

.activity .activity-tabs ul.nav .col-6 li .nav-link .tab-item.daily .img-activity {
    background-image: url(/images/dashboard/daily.svg)
}

.activity .activity-tabs ul.nav .col-6 li .nav-link .tab-item.special .img-activity {
    background-image: url(/images/dashboard/special.svg)
}

.activity .activity-tabs ul.nav .col-6 li .nav-link .tab-item.nutrition .img-activity {
    background-image: url(/images/dashboard/nutrition.svg)
}

.activity .activity-tabs ul.nav .col-6 li .nav-link .tab-item .item-img {
    width: 120px;
    margin: auto;
    height: 120px;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    margin-bottom: 1.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.875rem 1.25rem
}

    .activity .activity-tabs ul.nav .col-6 li .nav-link .tab-item .item-img .img-activity {
        width: 100%;
        margin: auto;
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain
    }

@media only screen and (max-width:994px) {
    .activity .activity-tabs ul.nav .col-6 li .nav-link .tab-item .item-img {
        padding: 1.25rem;
        width: 110px;
        height: 110px;
        margin-bottom: .75rem
    }

        .activity .activity-tabs ul.nav .col-6 li .nav-link .tab-item .item-img img {
            width: 100%
        }
}

@media only screen and (max-width:575px) {
    .activity .activity-tabs ul.nav .col-6 li .nav-link .tab-item .item-img {
        width: 80px;
        height: 80px
    }

        .activity .activity-tabs ul.nav .col-6 li .nav-link .tab-item .item-img img {
            width: 100%
        }
}

.activity .activity-tabs ul.nav .col-6 li .nav-link .tab-item .tab-name {
    font-family: "Roboto Condensed";
    font-weight: 400;
    font-size: 18.75pt;
    text-align: center;
    color: #54534A;
    text-transform: uppercase
}

@media only screen and (max-width:994px) {
    .activity .activity-tabs ul.nav .col-6 li .nav-link .tab-item .tab-name {
        font-size: 12pt;
        text-transform: uppercase !important;
        font-family: "Roboto Condensed"
    }
}

@media only screen and (max-width:575px) {
    .activity .activity-tabs ul.nav .col-6 li .nav-link .tab-item .tab-name {
        font-size: 12pt;
        text-transform: unset !important;
        font-family: "Jost Book"
    }
}

@media only screen and (max-width:575px) {
    .activity .activity-tabs ul.nav {
        width: 90%;
        margin: auto
    }

        .activity .activity-tabs ul.nav .col-12 li .tab-name {
            display: none
        }
}

@media only screen and (max-width:424px) {
    .activity .activity-tabs ul.nav {
        width: 100%
    }
}

.activity .activity-tabs ul.nav .col-12 {
    padding: 0
}

    .activity .activity-tabs ul.nav .col-12 li {
        text-align: center
    }

        .activity .activity-tabs ul.nav .col-12 li:hover,
        .activity .activity-tabs ul.nav .col-12 li:focus {
            outline: none !important;
            border: none !important
        }

        .activity .activity-tabs ul.nav .col-12 li .nav-link {
            cursor: pointer;
            padding: 0
        }

            .activity .activity-tabs ul.nav .col-12 li .nav-link:hover,
            .activity .activity-tabs ul.nav .col-12 li .nav-link:focus {
                border-color: transparent
            }

            .activity .activity-tabs ul.nav .col-12 li .nav-link.active,
            .activity .activity-tabs ul.nav .col-12 li .nav-link:hover {
                border-color: transparent !important
            }

                .activity .activity-tabs ul.nav .col-12 li .nav-link.active .tab-item.physical .item-img,
                .activity .activity-tabs ul.nav .col-12 li .nav-link:hover .tab-item.physical .item-img {
                    background: #F47920
                }

                    .activity .activity-tabs ul.nav .col-12 li .nav-link.active .tab-item.physical .item-img .img-activity,
                    .activity .activity-tabs ul.nav .col-12 li .nav-link:hover .tab-item.physical .item-img .img-activity {
                        background-image: url(/images/dashboard/physical-white.svg) !important
                    }

                .activity .activity-tabs ul.nav .col-12 li .nav-link.active .tab-item.physical .tab-name,
                .activity .activity-tabs ul.nav .col-12 li .nav-link:hover .tab-item.physical .tab-name {
                    color: #F47920 !important;
                    font-family: "Roboto Cn" !important
                }

                .activity .activity-tabs ul.nav .col-12 li .nav-link.active .tab-item.daily .item-img,
                .activity .activity-tabs ul.nav .col-12 li .nav-link:hover .tab-item.daily .item-img {
                    background: #4FBF70
                }

                    .activity .activity-tabs ul.nav .col-12 li .nav-link.active .tab-item.daily .item-img .img-activity,
                    .activity .activity-tabs ul.nav .col-12 li .nav-link:hover .tab-item.daily .item-img .img-activity {
                        background-image: url(/images/dashboard/daily-white.svg) !important
                    }

                .activity .activity-tabs ul.nav .col-12 li .nav-link.active .tab-item.daily .tab-name,
                .activity .activity-tabs ul.nav .col-12 li .nav-link:hover .tab-item.daily .tab-name {
                    color: #4FBF70 !important;
                    font-family: "Roboto Cn" !important
                }

                .activity .activity-tabs ul.nav .col-12 li .nav-link.active .tab-item.special .item-img,
                .activity .activity-tabs ul.nav .col-12 li .nav-link:hover .tab-item.special .item-img {
                    background: #5D549D
                }

                    .activity .activity-tabs ul.nav .col-12 li .nav-link.active .tab-item.special .item-img .img-activity,
                    .activity .activity-tabs ul.nav .col-12 li .nav-link:hover .tab-item.special .item-img .img-activity {
                        background-image: url(/images/dashboard/special-white.svg) !important
                    }

                .activity .activity-tabs ul.nav .col-12 li .nav-link.active .tab-item.special .tab-name,
                .activity .activity-tabs ul.nav .col-12 li .nav-link:hover .tab-item.special .tab-name {
                    color: #5D549D !important;
                    font-family: "Roboto Cn" !important
                }

                .activity .activity-tabs ul.nav .col-12 li .nav-link.active .tab-item.nutrition .item-img,
                .activity .activity-tabs ul.nav .col-12 li .nav-link:hover .tab-item.nutrition .item-img {
                    background: #EACA1E
                }

                    .activity .activity-tabs ul.nav .col-12 li .nav-link.active .tab-item.nutrition .item-img .img-activity,
                    .activity .activity-tabs ul.nav .col-12 li .nav-link:hover .tab-item.nutrition .item-img .img-activity {
                        background-image: url(/images/dashboard/nutrition-white.svg) !important
                    }

                .activity .activity-tabs ul.nav .col-12 li .nav-link.active .tab-item.nutrition .tab-name,
                .activity .activity-tabs ul.nav .col-12 li .nav-link:hover .tab-item.nutrition .tab-name {
                    color: #EACA1E !important;
                    font-family: "Roboto Cn" !important
                }

@media only screen and (max-width:994px) {
    .activity .activity-tabs ul.nav .col-12 li .nav-link.active,
    .activity .activity-tabs ul.nav .col-12 li .nav-link:hover {
        font-family: "Jost Medium"
    }
}

.activity .activity-tabs ul.nav .col-12 li .nav-link .tab-item.physical .img-activity {
    background-image: url(/images/dashboard/physical.svg)
}

.activity .activity-tabs ul.nav .col-12 li .nav-link .tab-item.daily .img-activity {
    background-image: url(/images/dashboard/daily.svg)
}

.activity .activity-tabs ul.nav .col-12 li .nav-link .tab-item.special .img-activity {
    background-image: url(/images/dashboard/special.svg)
}

.activity .activity-tabs ul.nav .col-12 li .nav-link .tab-item .item-img {
    width: 120px;
    margin: auto;
    height: 120px;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    margin-bottom: 1.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.875rem 1.25rem
}

    .activity .activity-tabs ul.nav .col-12 li .nav-link .tab-item .item-img .img-activity {
        width: 100%;
        margin: auto;
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain
    }

@media only screen and (max-width:994px) {
    .activity .activity-tabs ul.nav .col-12 li .nav-link .tab-item .item-img {
        padding: 1.25rem;
        width: 110px;
        height: 110px;
        margin-bottom: .75rem
    }

        .activity .activity-tabs ul.nav .col-12 li .nav-link .tab-item .item-img img {
            width: 100%
        }
}

@media only screen and (max-width:575px) {
    .activity .activity-tabs ul.nav .col-12 li .nav-link .tab-item .item-img {
        width: 80px;
        height: 80px
    }

        .activity .activity-tabs ul.nav .col-12 li .nav-link .tab-item .item-img img {
            width: 100%
        }
}

.activity .activity-tabs ul.nav .col-12 li .nav-link .tab-item .tab-name {
    font-family: "Roboto Condensed";
    font-weight: 400;
    font-size: 18.75pt;
    text-align: center;
    color: #54534A;
    text-transform: uppercase
}

@media only screen and (max-width:994px) {
    .activity .activity-tabs ul.nav .col-12 li .nav-link .tab-item .tab-name {
        font-size: 12pt;
        text-transform: uppercase !important;
        font-family: "Roboto Condensed"
    }
}

@media only screen and (max-width:575px) {
    .activity .activity-tabs ul.nav .col-12 li .nav-link .tab-item .tab-name {
        font-size: 12pt;
        text-transform: unset !important;
        font-family: "Jost Book"
    }
}

@media only screen and (max-width:665px) {
    .connection_app .table-responsive-sm {
        display: none
    }
}

@media only screen and (max-width:994px) {
    #dialogBoxMessage .modal-dialog {
        max-width: 600px
    }
}

#dialogBoxMessage .modal-content {
    min-height: 350px;
    max-width: 650px;
    margin: auto
}

.modal-body .introheader {
    margin-top: 25px
}

.modal-body .question {
    margin-bottom: 0
}

@media only screen and (max-width:994px) {
    #dialogBoxMessagewel .modal-dialog {
        max-width: 600px
    }
}

#dialogBoxMessagewel .modal-content {
    max-width: 650px;
    margin: auto
}

.option-user .avartar {
    border-radius: 50%
}

.list-result #avtcir {
    border-radius: 50%
}
/*<--Taken this code Start  -->*/
.bulletinboard {
    margin: 0 10%;
    position: relative
}

@media only screen and (max-width:665px) {
    .bulletinboard {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.bulletinboard-list {
    margin: 2.5rem 7%
}

@media only screen and (max-width:424px) {
    .bulletinboard-list {
        margin: 2.5rem 1rem;
        padding-right: 15px
    }
}

.bulletin {
    text-align: justify;
    font-family: helvetica, sans-serif;
    font-size: 12pt;
    margin-top: 70px
}
/*<--Taken this code End  -->*/
.leftalign {
    text-align: left
}

.content_page h1,
.content_page h2,
.content_page h3,
.content_page h4,
.content_page h5,
.content_page .h1,
.content_page .h2,
.content_page .h3,
.content_page .h4,
.content_page .h5,
.content_page p,
.content_page li,
.content_page label,
.content_page i {
    color: #54534A
}

.content_page h1,
.content_page h2,
.content_page h3,
.content_page h4,
.content_page h5,
.content_page .h1,
.content_page .h2,
.content_page .h3,
.content_page .h4,
.content_page .h5 {
    font-family: Roboto Cn
}

.content_page h1 {
    text-align: center;
    margin-bottom: 20px
}

.content_page p,
.content_page li,
.content_page label {
    font-family: Jost Book
}

.content_page p {
    text-align: justify
}

.content_page a {
    color: #F47920
}

.content_page label.center_message {
    text-align: center;
    color: rgb(244, 121, 32);
    width: 100%
}

.content_page img {
    margin: 40px auto;
    display: block
}

.content_page audio {
    width: 100%;
    margin: 0 auto;
    display: block
}

.content_page video {
    width: 100%
}

.content_page ul.no-bullets {
    list-style-type: none;
    padding: 0
}

.content_page input[type="text"] {
    background: #f6f6f6;
    font-size: 10.5pt;
    font-family: "Jost Book";
    min-height: 40px;
    border: none;
    padding: .375rem .75rem;
    color: #495057
}

.content_page input.btn:hover {
    color: #fff;
    background: #F47920
}

.content_page input.btn {
    background: #F4F4F4;
    padding: 7px 0;
    color: #F47920;
    font-family: "Jost Medium";
    font-weight: 500;
    font-size: 12pt;
    border-radius: 0;
    cursor: pointer
}

.content_page select {
    background-color: #f6f6f6 !important;
    color: #54534A !important;
    padding: 6px 12px !important;
    border: none;
    width: 100% !important;
    font-size: 10.5pt;
    font-family: "Jost Book";
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    outline: none;
    min-height: 40px;
    border-radius: 0
}

#select2-unitofmeasurement-results {
    height: auto
}

#select2-gender-results {
    height: auto
}

@media only screen and (min-width:666px) {
    .connection_app1 .table-responsive-sm1 {
        display: none
    }
}

.connection_app1 .table1 {
    background: transparent;
    border: none
}

@media only screen and (min-width:666px) {
    .connection_app1 .table1 {
        display: none
    }
}

.connection_app1 .title-connection-table {
    font-family: "Roboto Cn";
    font-size: 15pt;
    text-align: center;
    margin: 60px 0 30px 0
}

    .connection_app1 .title-connection-table.nutrition {
        color: #EACA1E
    }

    .connection_app1 .title-connection-table.activity {
        color: #F47920
    }

.connection_app1 .dataTables_wrapper .dataTables_paginate .paginate_button {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: unset !important;
    min-width: 1.5em;
    padding: .05rem .45rem .05rem .45rem !important;
    margin-left: 0;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    *cursor: hand;
    border: 1px solid transparent;
    border-radius: 2px
}

.connection_app1 .ellipsis {
    padding-left: 2px !important;
    padding-right: 2px !important
}

.connection_app1 #tableConnectedAppDetailM_previous {
    float: left !important
}

.connection_app1 #tableConnectedAppDetailM_next {
    float: right !important
}

.connection_app1 #tableConnectedAppDetailN_previous {
    float: left !important
}

.connection_app1 #tableConnectedAppDetailN_next {
    float: right !important
}

@media (max-width:992px) {
    #covid19 {
        margin-top: -22px !important
    }

    #flushot {
        margin-top: 49px !important
    }

    #annual {
        margin-top: -22px !important
    }
}

@media (max-width:447px) {

    #pills-tab .nav-link {
        display: block;
        padding: 0.5rem 0.2rem;
    }
}

@media (max-width:365px) {

    #pills-tab .nav-link {
        display: block;
        padding: 0.5rem 1.5rem;
    }
}

@media (max-width:309px) {

    #pills-tab .nav-link {
        display: block;
        padding: 0.5rem 1rem;
        flex: none;
    }
}

@media (max-width:261px) {

    #pills-tab .nav-link {
        display: block;
        padding: 0.5rem 0.8rem;
        flex: none;
    }
}

@media (max-width:242px) {
    #pills-tab .nav-link {
        display: block;
        padding: 0.5rem 0.5rem;
        flex: none;
    }
}

footer {
    position: absolute;
    /*width: 90%;*/
    width: -webkit-fill-available;
    width: -moz-available;
    bottom: 0;
    border-top: 1px solid rgba(78, 79, 85, .1)
}

.foot-content {
    padding: 18px 15px 20px 15px;
    font-size: 12pt;
}

@media only screen and (max-width:665px) {
    .foot-content {
        /*padding: 32px 30px; syed*/
        font-size: 12pt
    }
}

@media only screen and (max-width:424px) {
    .foot-content {
        padding: 32px 10px;
        font-size: 10.5pt;
    }
}

.foot-content .privacy,
.foot-content .term {
    font-family: "Jost Book";
    font-weight: 400;
    color: #F47920;
    text-decoration: none
}

.foot-content .copyright {
    font-family: "Jost Book";
    font-weight: 400;
    float: right;
    color: #54534A
}

@media (min-width:992px) and (max-width:1199px) {
    .footer-container {
        max-width: 1140px
    }
}

@media (max-width:992px) {
    .footer-container {
        max-width: 1140px
    }
}

.user-name-logo {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #54534A;
}


.body-blankheader {
    padding: 40px 0 0 0px !important;
}


@media ( min-width: 1230px ) {
    .activity-log .arround ul.list-log li .row .log-detail .detail .action-run {
        text-align: left;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        width: 450px;
    }
}

@media only screen and (min-width:768px) and (max-width:994px) {
    main .contentcontainer {
        padding-top: 60px
    }
}

@media only screen and (min-width:425px) and (max-width:767px) {
    main .contentcontainer {
        padding-top: 60px
    }

    .select-option ul li, .select-option ul li.active {
        padding: 1rem 0 0 1.8rem !important;
        position: relative;
        background-color: white !important;
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 16px;
    }
}

@media only screen and (max-width:424px) {
    main .contentcontainer {
        padding-top: 60px
    }

    .select-option ul li, .select-option ul li.active {
        padding: 1rem 0 0 1.8rem !important;
        position: relative;
        background-color: white !important;
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 16px;
    }
}


@media only screen and (min-width:768px) and (max-width:994px) {
    main {
        width: 100%;
        min-height: calc(100vh - 137px) !important;
    }
}

@media only screen and (min-width:425px) and (max-width:767px) {
    main {
        width: 100%;
        min-height: calc(100vh - 137px) !important;
    }
}

@media only screen and (max-width:424px) {
    main {
        width: 100%;
        min-height: calc(100vh - 137px) !important;
    }
}

@media (min-width: 1200px) {
    main {
        width: 100%;
        min-height: calc(100vh - 212px) !important;
    }
}

@media only screen and (min-width: 360px) and (max-width: 767px) {
    main .container-paddingtop {
        padding-top: 20px;
    }
}

@media only screen and (min-width: 1134px) and (max-width: 3000px) {
    .activity .fourtiles-activity-tabs {
        width: 80% !important;
    }
}

.input-group input {
    color: #54534A;
    background: #F8F8F8;
    padding: 8px 20px !important;
    border: none;
    font-size: 12pt;
    font-family: "Jost Book";
    -webkit-appearance: button;
    outline: none;
    width: 100%;
}

.activity .activity-tabs ul.nav .col-12 li .nav-link .tab-item.nutrition .img-activity {
    background-image: url(/images/dashboard/nutrition.svg)
}


/**sidebar addons**/
.sidebar ul li a,.sidebar ul li a .menu-textContext {
    font-size: 14px !important;
}

    .sidebar ul li a .menu-textContext {
        width: 160px !important;
    }

.sidebar.active ul li a {
    min-width: 150px;
}

.sidebar ul li a .menu-textContext {
    width: 0px !important;
    display: none !important;
}

.sidebar ul li a .menu-iconContext {
    font-size: 16px;
}

.sidebar ul li a span.menu-textContent {
    width: 0px;
}

.sidebar.active ul li a {
    gap: 15px;
}

/**Simple Bar Custom CSS**/
.sidebar [data-simplebar] {
    height: 100%;
}

.simplebar-track.simplebar-vertical {
    width: 9px !important;
    right: 4px;
}

.simplebar-scrollbar:before {
    background: #959491 !important;
}

@media screen and (max-width: 767.8px) {
    .sidebar.active {
        width: 301px;
        z-index:9999;
    }

        .sidebar .hidden-desktop {
            display: flex;
            flex-direction: row-reverse;
            justify-content: space-between;
            margin-bottom: 16px;
            align-items:center;
        }

    .sidebar {
        padding-top: 0px;
    }
}

.sidebar {
    overflow: hidden;
}


@media screen and (max-width: 991px) {
    .sidebar .user-profile-wrapper {
        padding-top: 0px;
        padding-left: 20px;
        margin: 0px;
    }
}

body.desktopAgent .sidebar {
    padding: 0px;
}

body.desktopAgent .user-profile-wrapper:hover .select-option {
    visibility: visible !important;
}

/***Css update for side navigation bar - screen height***/
@media screen and (max-height: 1200px) {

    .sidebar ul li {
        margin: 0;
        padding: 0;
        display: flex;
        padding: 22px 20px 22px 22px !important;
        border-radius: 10px;
    }

    /* .sidebar ul li a {
            font-size: 26px !important;
        }*/
}

@media screen and (max-height: 900px) {

    .sidebar ul li {
        margin: 0;
        padding: 0;
        display: flex;
        padding: 20px 20px 20px 22px !important;
        border-radius: 10px;
    }
    /*.sidebar ul li a {
            font-size: 20px !important;
        }*/
}


@media screen and (max-height: 800px) {

    .sidebar ul li {
        margin: 0;
        padding: 0;
        display: flex;
        padding: 18px 20px 18px 22px !important;
        border-radius: 10px;
    }

        .sidebar ul li a span {
            font-size: 18px !important;
        }
}

@media screen and (max-height: 750px) {

    .sidebar ul li {
        margin: 0;
        padding: 0;
        display: flex;
        padding: 14px 20px 14px 22px !important;
        border-radius: 10px;
    }

    /* .sidebar ul li a {
            font-size: 20px !important;
        }*/
}

@media screen and (max-height: 700px) {

    .sidebar ul li {
        margin: 0;
        padding: 0;
        display: flex;
        padding: 10px 20px 12px 22px !important;
        border-radius: 10px;
    }

        .sidebar ul li a {
            font-size: 16px !important;
            gap: 18px !important;
        }

            .sidebar ul li a span {
                font-size: 16px !important;
            }
}

@media screen and (max-height: 600px) {

    .sidebar ul li {
        margin: 0;
        padding: 0;
        display: flex;
        padding: 9px 20px 10px 22px !important;
        border-radius: 10px;
    }

        .sidebar ul li a {
            font-size: 14px !important;
        }

            .sidebar ul li a span {
                font-size: 18px;
            }
}

@media screen and (max-height:500px) {

    .sidebar ul li {
        margin: 0;
        padding: 0;
        display: flex;
        padding: 8px 20px 6px 22px !important;
        border-radius: 10px;
    }

        .sidebar ul li a {
            font-size: 14px !important;
        }

            .sidebar ul li a span {
                font-size: 18px;
            }
}
/***Css update for side navigation bar - screen height***/


@media screen and (max-height: 1200px) {

    .sidebar ul li {
        margin: 0;
        padding: 0;
        display: flex;
        padding: 22px 20px 22px 22px !important;
        border-radius: 10px;
    }

    /* .sidebar ul li a {
            font-size: 26px !important;
        }*/
}

@media screen and (max-height: 900px) {

    .sidebar ul li {
        margin: 0;
        padding: 0;
        display: flex;
        padding: 20px 20px 20px 22px !important;
        border-radius: 10px;
    }
    /*.sidebar ul li a {
            font-size: 20px !important;
        }*/
}


@media screen and (max-height: 800px) {

    .sidebar ul li {
        margin: 0;
        padding: 0;
        display: flex;
        padding: 18px 20px 18px 22px !important;
        border-radius: 10px;
    }

        .sidebar ul li a span {
            font-size: 18px !important;
        }
}

@media screen and (max-height: 750px) {

    .sidebar ul li {
        margin: 0;
        padding: 0;
        display: flex;
        padding: 14px 20px 14px 22px !important;
        border-radius: 10px;
    }

    /* .sidebar ul li a {
            font-size: 20px !important;
        }*/
}

@media screen and (max-height: 700px) {

    .sidebar ul li {
        margin: 0;
        padding: 0;
        display: flex;
        padding: 10px 20px 12px 22px !important;
        border-radius: 10px;
    }

        .sidebar ul li a {
            font-size: 16px !important;
            gap: 18px !important;
        }

            .sidebar ul li a span {
                font-size: 16px !important;
            }
}

@media screen and (max-height: 600px) {

    .sidebar ul li {
        margin: 0;
        padding: 0;
        display: flex;
        padding: 9px 20px 10px 22px !important;
        border-radius: 10px;
    }

        .sidebar ul li a {
            font-size: 14px !important;
        }

            .sidebar ul li a span {
                font-size: 18px;
            }
}

@media screen and (max-height:500px) {

    .sidebar ul li {
        margin: 0;
        padding: 0;
        display: flex;
        padding: 8px 20px 6px 22px !important;
        border-radius: 10px;
    }

        .sidebar ul li a {
            font-size: 14px !important;
        }

            .sidebar ul li a span {
                font-size: 18px;
            }
}



/**additional Jost font declaration**/

.col-chart .tab-content text tspan, .col-chart .tab-content text,
.form-edit .form-group input,
.form-edit .form-group select, .box .select2 .select2-selection--single, .select2-dropdown ul li {
    font-family: 'Jost Book' !important;
}

.list-leaderboard .point {
    font-family: 'Jost Medium' !important;
}

.list-leaderboard .teamName, .health-content p, .content_page label, .content_page li, .content_page p {
    font-family: 'Jost Book' !important;
}