/**
 * HTML elements
 */
body {
    font-family: 'Noto Sans', sans-serif;
    font-size: .85rem;
}

/**
 * Guest styles
 */
.form-container {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
    z-index: 2;
}

.arrow-help{
    width: 62px;
    height:auto;
}

/**
  * Navigation menus
  */
.left-nav,
.left-nav-embedded {
    position: fixed;
    left: -260px;
    /* top: 54px; */
    top: 0;
    padding-top: 54px;
    /* end safari fix */
    width: 260px;
    height: 100vh;
    overflow-y: auto;
    z-index: 2;
}

.slide-left-nav-in {
    left: 0;
    animation: slide_left_nav_in 0.3s ease;
}

.slide-left-nav-out {
    left: -260px;
    animation: slide_left_nav_out 0.3s ease;
}

.left-nav header {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    text-align: center;
}

.left-nav-menu-group {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing:.12rem;
}

.left-nav .nav-link,
.left-nav-embedded .nav-link {
    font-weight: 500;
}

.left-nav .mdi::before,
.left-nav-embedded .mdi::before { 
    font-size: 1.2rem;
    vertical-align: top;
    margin-right: 4px;
}

.main-nav,
.main-nav-embedded {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
}

.main-nav-component {
    height: 68px;
    line-height: 68px;
    padding: 0px 10px;
} 

.main-nav-search-input {
    -webkit-border-radius: .25rem!important;
}

/*
ul.main-nav-menu {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    padding-left: 0;
    border-top: 1px solid #747d84;
}

ul.main-nav-menu li {
    list-style: none;
    white-space: nowrap;
    margin-right: 1.5rem;
}
*/

.profile-image {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.main-nav-component a.dropdown-toggle {
    text-decoration: none;
}

.main-nav-component .dropdown-item {
    line-height: 2rem;
}

.search-result {
    cursor: pointer;
    line-height: 1.5;
}

.search-result:hover,
.search-result:hover .search-result-small {
    background-color: #4ab19d;
    color: #fff !important;
}

input[type=search]::-ms-clear {  display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal {  display: none; width : 0; height: 0; }
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }

/**
 * Application components
 */
.toast-title,
.toast-message {
    white-space: nowrap;
    margin-right: 10px;
}

.main-container,
.main-container-embedded {
    margin-top: 54px;
}

.page-title {
    font-weight: 600;
}

.box-shadow-none {
    outline: none;
    border: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-disabled {
    cursor: not-allowed;
}

.form-input-row:hover {
    background-color: #f8f9fa;
}

.form-input-row-body: {
    display: block;
    position: relative;
}

.form-input-row-delete {
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px 15px;
    padding: 0;
}

.campaign-management-description {
    height: 40px;
}

.qr-code img {
    width: 100%;
}

a.magic-button:hover,
a.magic-button:active {
    color: #fff!important;
}

/**
 * Material Design Icons
 */

.mdi::before {
    font-size: 24px;
    line-height: 14px;
}

.btn .mdi::before {
    position: relative;
    top: 4px;
}

small .mdi::before,
small.mdi::before,
.btn-xs .mdi::before,
.btn-sm .mdi::before {
    font-size: 18px;
    top: 3px;
}

/* Pagination */
span[class*="mdi-chevron"]::before,
span[class*="mdi-page"]::before {
    vertical-align: top;
    padding-top: 4px;
}

.dropdown-menu .mdi {
    width: 18px;
}

.dropdown-menu .mdi::before {
    position: relative;
    top: 4px;
    left: -8px;
}

.nav .mdi::before {
    position: relative;
    top: 4px;
}

.navbar .navbar-toggle .mdi::before {
    position: relative;
    top: 4px;
}

.breadcrumb .mdi::before {
    position: relative;
    top: 4px;
}

.breadcrumb a:hover {
    text-decoration: none;
}

.breadcrumb a:hover span {
    text-decoration: underline;
}

.alert .mdi::before {
    position: relative;
    top: 4px;
    margin-right: 2px;
}

.input-group-addon .mdi::before {
    position: relative;
    top: 3px;
}

.navbar-brand .mdi::before {
    position: relative;
    top: 2px;
    margin-right: 2px;
}

.list-group-item .mdi::before {
    position: relative;
    top: 3px;
    left: -3px
}

.mdi-12px.mdi-set,
.mdi-12px.mdi:before{
    font-size:12px
}

/**
 * CSS animations
 */
@keyframes slide_left_nav_in {
    from {
        left: -260px;
    }
    to {
        left: 0;
    }
}

@keyframes slide_left_nav_out {
    from {
        left: 0;
    }
    to {
        left: -260px;
    }
}

/**
 * Media Queries
 */
/*
@media (prefers-color-scheme: dark) {}

*/
@media (min-width: 768px) {
    .toast-bottom-full-width {
        width: initial;
        top: 64px;
        right: 12px;
    }

    a.magic-button {
        width: auto;
        display: inline;
        border: none;
        padding: 0;
    }

    a.magic-button:hover,
    a.magic-button:active {
        color: inherit!important;
        background-color: transparent!important;
        text-decoration: underline;
        outline: none;
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        box-shadow: none !important;
    }
}

@media (min-width: 992px) {
    .left-nav {
        left: 0;
    }

    .main-nav {
        left: 260px;
        width: auto;
    }

    ul.main-nav-menu {
        border-top: none;
    }

    .main-container {
        margin-top: 54px;
        margin-left: 260px;
        width: auto;
    }

}

@media (min-width: 1200px) {
    .form-input-row-body {
        display: flex;
        position: static;
    }

    .form-input-row-details {
        position: static;
        flex-grow: 1;
    }

    .form-input-row-delete {
        position: static;
        align-self: center;
        margin: 0;
        padding-right: .5rem;
        padding-left: .5rem;
    }

}
