.bg-style-one {
    /* background: #D0104C; */
    background: #F596AA;
}

.bg-style-one a {
    color: #fff;
}

.bg-style-one a:hover {
    /*color: #E3916E;*/
    color: #000;
}

.bg-style-one a:active {
    color: #000;
}

.bg-style-one .nav-link[aria-selected="true"] {
    color: #000;
}

.mobile-menu {
    /* background: #D0CEDF; */
    background: #F596AA;
    padding: 0;
    display: flex;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.mobile-menu::-webkit-scrollbar {
    display: none;
}

.mobile-menu .nav-item,
.mobile-menu .nav-item:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    white-space: nowrap;
}

.mobile-menu .nav-item[aria-selected="true"] {
    color: #000;
    border-bottom: 5px solid #E64A19;
}

.mobile-menu .nav-item:not(:last-child) {
    border-right: 1px solid rgba(114, 124, 135, 0.2);
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mainmenu {
    flex-direction: row;
}

.mainmenu .nav-item {
    padding: 0 1rem;
    white-space: nowrap;
    position: relative;
}


@media screen and (max-width: 768px) {
    #header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 2;
    }
    .view-wrapper {
        padding-top: 90px;
        position: relative;
        z-index: 1;
        min-height: 100vh;
    }
}

.pagination a, .pagination span {
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
}

.pagination a:hover {
    background-color: #ddd;
}

.breadcrumb {
    font-size: 12px;
}


/* @media screen and (min-width: 768px) {
    .mainmenu {
        display: flex;
    }
} */


/* .fast-link {
    position: relative;
    z-index: 3;
    height: 40px;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .fast-link {
        display: none;
    }
}

.fast-link .tabs-link {
    font-weight: bolder;
    border-bottom: 2px solid transparent;
    text-decoration: none;
}

.fast-link .tabs-active {
    border-bottom: 2px solid;
} */

.page {
    padding: 8px 16px;
    background-color: #4CAF50;
}

.triangle-left {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 20px solid red;
    border-bottom: 10px solid transparent;
}

.triangle-right {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 10px solid red;
    border-bottom: 10px solid transparent;
}

.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.overlay a:hover,
.overlay a:focus {
    color: #f1f1f1;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}