/* luminous */

@keyframes a {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes b {
    0% {
        transform: scale(.5);
        opacity: 0
    }
    to {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes c {
    0% {
        transform: translate(-50%, -50%) rotate(0)
    }
    50% {
        transform: translate(-50%, -50%) rotate(-180deg)
    }
    to {
        transform: translate(-50%, -50%) rotate(-1turn)
    }
}

@keyframes d {
    0% {
        transform: scale(1)
    }
    10% {
        transform: scale(1.2) translateX(6px)
    }
    25% {
        transform: scale(1.3) translateX(8px)
    }
    40% {
        transform: scale(1.2) translateX(6px)
    }
    50% {
        transform: scale(1)
    }
    60% {
        transform: scale(.8) translateX(6px)
    }
    75% {
        transform: scale(.7) translateX(8px)
    }
    90% {
        transform: scale(.8) translateX(6px)
    }
    to {
        transform: scale(1)
    }
}

@keyframes e {
    0% {
        transform: scale(1)
    }
    10% {
        transform: scale(1.2) translateX(-6px)
    }
    25% {
        transform: scale(1.3) translateX(-8px)
    }
    40% {
        transform: scale(1.2) translateX(-6px)
    }
    50% {
        transform: scale(1)
    }
    60% {
        transform: scale(.8) translateX(-6px)
    }
    75% {
        transform: scale(.7) translateX(-8px)
    }
    90% {
        transform: scale(.8) translateX(-6px)
    }
    to {
        transform: scale(1)
    }
}

.lum-lightbox {
    z-index: 1111;
    background: rgba(0, 0, 0, .6)
}

.lum-lightbox-inner {
    top: 2.5%;
    right: 2.5%;
    bottom: 2.5%;
    left: 2.5%
}

.lum-lightbox-inner img {
    position: relative
}

.lum-lightbox-inner .lum-lightbox-caption {
    margin: 0 auto;
    color: #fff;
    max-width: 700px;
    text-align: center
}

.lum-loading .lum-lightbox-loader {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 20px;
    animation: c 1.8s linear infinite
}

.lum-lightbox-loader:after,
.lum-lightbox-loader:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    border-radius: 20px;
    background: hsla(0, 0%, 100%, .9)
}

.lum-lightbox-loader:before {
    left: 0;
    animation: d 1.8s linear infinite
}

.lum-lightbox-loader:after {
    right: 0;
    animation: e 1.8s linear infinite;
    animation-delay: -.9s
}

.lum-lightbox.lum-opening {
    animation: a .18s ease-out
}

.lum-lightbox.lum-opening .lum-lightbox-inner {
    animation: b .18s ease-out
}

.lum-lightbox.lum-closing {
    animation: a .3s ease-in;
    animation-direction: reverse
}

.lum-lightbox.lum-closing .lum-lightbox-inner {
    animation: b .3s ease-in;
    animation-direction: reverse
}

.lum-img {
    transition: opacity .12s ease-out
}

.lum-loading .lum-img {
    opacity: 0
}

.lum-gallery-button {
    overflow: hidden;
    text-indent: 150%;
    white-space: nowrap;
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    outline: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 100px;
    max-height: 100%;
    width: 60px;
    cursor: pointer
}

.lum-close-button {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 32px;
    height: 32px;
    opacity: .8
}

.lum-close-button:hover {
    opacity: 1
}

.lum-close-button:after,
.lum-close-button:before {
    position: absolute;
    left: 15px;
    content: " ";
    height: 33px;
    width: 5px;
    background-color: #fff
}

.lum-close-button:before {
    transform: rotate(45deg)
}

.lum-close-button:after {
    transform: rotate(-45deg)
}

.lum-previous-button {
    left: 12px
}

.lum-next-button {
    right: 12px
}

.lum-gallery-button:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 36px;
    height: 36px;
    border-top: 4px solid hsla(0, 0%, 100%, .8)
}

.lum-previous-button:after {
    transform: translateY(-50%) rotate(-45deg);
    border-left: 4px solid hsla(0, 0%, 100%, .8);
    box-shadow: -2px 0 rgba(0, 0, 0, .2);
    left: 12%;
    border-radius: 3px 0 0 0
}

.lum-next-button:after {
    transform: translateY(-50%) rotate(45deg);
    border-right: 4px solid hsla(0, 0%, 100%, .8);
    box-shadow: 2px 0 rgba(0, 0, 0, .2);
    right: 12%;
    border-radius: 0 3px 0 0
}

@media (max-width:460px) {
    .lum-lightbox-image-wrapper {
        display: flex;
        overflow: auto;
        -webkit-overflow-scrolling: touch
    }
    .lum-lightbox-caption {
        width: 100%;
        position: absolute;
        bottom: 0
    }
    .lum-lightbox-position-helper {
        margin: auto
    }
    .lum-lightbox-inner img {
        max-width: 100%;
        max-height: 100%
    }
}

a:hover {
    cursor: pointer;
}

.text-danger {
    color: #d50000 !important;
}

.header .shopping-cart {
    margin: 20px 0;
    display: none;
    position: absolute;
    background: #fff;
    width: 320px;
    border-radius: 3px;
    padding: 20px;
    z-index: 110;
    right: 0;
    top: 16px;
    box-shadow: rgba(0, 0, 0, .1) 0 2px 2px;
    border: 1px solid #E8E8E8;
    font-family: Raleway, sans-serif;
    font-weight: 300;
    font-size: 16px;
    margin-top: 22px;
}

.header .shopping-cart::before,
.header .shopping-cart::after {
    bottom: 100%;
    left: 280px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: #fff;
    border-width: 8px;
    margin-left: -8px;
}

.header .shopping-cart::before {
    border-width: 9px;
    margin-left: -9px;
    border-color: transparent;
    border-bottom-color: #ddd;
}

.header .shopping-cart .shopping-cart-header {
    border-bottom: 1px solid #E8E8E8;
    padding-bottom: 15px;
}

.header .shopping-cart .shopping-cart-items {
    max-height: 230px;
    overflow-y: scroll;
    font-family: Raleway, sans-serif;
    font-weight: 300;
    font-size: 14px;
    margin: 20px 0;
    padding-right: 10px;
}

.header .shopping-cart .shopping-cart-items .img-fluid {
    max-height: 120px;
}

.header .shopping-cart .button {
    display: block;
    width: 100%;
    padding: 5px 11px;
    border-radius: 5px;
    color: #fff;
    background: #8f3d97;
    font-size: 14px;
    text-align: center;
    -webkit-transition: all 350ms ease;
    -moz-transition: all 350ms ease;
    -ms-transition: all 350ms ease;
    -o-transition: all 350ms ease;
    transition: all 350ms ease;
}

.header .shopping-cart .shopping-cart-items .row {
    margin-bottom: 10px !important;
}

.header .shopping-cart .shopping-cart-items .item-name {
    display: block;
    padding-top: 10px;
    font-size: 13px;
    line-height: 16px;
    font-family: Raleway, sans-serif;
    font-weight: 600;
    padding-left: 20px;
    color: #000;
    -webkit-transition: all 350ms ease;
    -moz-transition: all 350ms ease;
    -ms-transition: all 350ms ease;
    -o-transition: all 350ms ease;
    transition: all 350ms ease;
}

.header .shopping-cart .basket_delete {
    display: inline-block;
    margin-top: 20px;
    text-align: center;
    width: 100%;
    cursor: pointer;
    color: #8f3d97;
}

.header .shopping-cart .shopping-cart-header .shopping-cart-total {
    float: right;
    font-size: 14px;
}

.alert-invisible {
    display: none;
    padding: 4px;
}

table.szukaj-kontekst {
    vertical-align: middle;
    padding: 5px;
    z-index: 111;
}

table.szukaj-kontekst td {
    vertical-align: middle;
    padding: 5px;
    z-index: 111;
}

#searchInfo {
    padding: 5px;

}

.navbar .dropdown-toggle::after {
    display: none;
}

.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0px;
}

.dropdown:hover>.dropdown-menu.float-right {
    right: 0;
    left: auto;
    margin-right: 4px;
}

.dropdown>.dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
    pointer-events: none;
}

.menuTop .dropdown-menu {
    max-width: none;
}

.alert i {
    font-size: 32px;
    float: left;
    display: inline-block;
    margin-left: -24px;
    background: #fff;
    border-radius: 100px;
    margin-right: 12px;
}

.alert {
    border-width: 1px;
    background: #fff !important;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    text-align: left;
    min-height: 44px;
    font-weight: bold;
    border-radius: 0px;
    margin: 12px auto !important;
    padding-right: 12px !important;
    max-width: 240px;
}

.alert:after,
.alert:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.alert:after {
    border-bottom-color: #fff;
    border-width: 6px;
    margin-left: -6px;
}

.alert:before {
    border-width: 7px;
    margin-left: -7px;
}

.alert.alert-danger:before {
    border-color: transparent;
    border-bottom-color: #dd0000;
}

.alert-danger {
    border-color: #dd0000;
    color: #dd0000;
}

.alert.alert-success:before {
    border-color: transparent;
    border-bottom-color: #155724;
}

.alert-success {
    color: #155724;
    border-color: #155724;
}

div.rabat {
    background: #dd0000;
    color: #fff;
    font-weight: bold;
}

div.rabat i {
    background: #fff;
    color: #dd0000;
    padding: 2px;
    border-radius: 100px;
    width: 18px;
    margin: 0px 12px 0px -12px;
    display: inline-block;
    text-align: center;
}

i.rabat {
    color: #fff;
    border-radius: 100px;
    padding: 4px 3px 2px 4px;
    width: 18px;
    text-align: center;
    font-size: 12px;
    background: #7a2d7b;
}

.header .header_tel span {
    font-weight: normal;
}

.header .header_basket i,
.header .header_cash i,
.header .header_lang i,
.header .header_tel i {
    display: none;
    margin-left: 2px;
    font-size: 16px;
}

.header .header_tel span:nth-child(3) {
    font-weight: bold;
}

.navbar-toggler {
    display: none;
    color: #864186;
}

.navbar-toggler span {
    color: #864186;
}

#dropdownMenuLink {
    background: #fff;
    border: none;
}

#dropdownMenuLink span {
    margin-left: 4px;
}

.header .header_links a.dropdown-item {
    margin-left: 0px !important;
}

.header button {
    margin-left: -15px;
    line-height: 24px;
    width: 35px;
    top: 17px;
    height: 35px;
    border: none;
    box-shadow: none;
    cursor: pointer;
    outline: 0;
    opacity: .2;
    -webkit-transition: all 350ms ease;
    -moz-transition: all 350ms ease;
    -ms-transition: all 350ms ease;
    -o-transition: all 350ms ease;
    transition: all 350ms ease;
}

.header button:active,
.header button:focus {
    border: none;
    box-shadow: none;
    outline: 0
}

.header button:hover {
    opacity: .4;
    background: transparent;
    color: #666;
}

.header form {
    width: 90%;
}

.categoryList_products_action {
    margin-bottom: 12px;
}

.spis_produktow_lista_produkty h3:first-child {
    padding-top: 16px;
    color: #7a2d7b;
}

.spis_produktow .spis_produktow_lista select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none appearance: none;
    display: inline-block;
    position: relative;
    padding: 5px 5px 5px 10px;
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 12px;
    min-width: 40px;
    background: url(../img/bg-arrow-select.png) top right no-repeat;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    outline: 0;
}

.spis_produktow .spis_produktow_lista .sort_price {
    min-width: 120px;
}

.spis_produktow .spis_produktow_lista .spis_produktow_lista_produkty .categoryList_products>.row>li {
    border: 1px solid #fff !important;
    text-align: center;
    padding: 0px !important;
    margin: 0px !important;
    transition: all 0.25s ease-in;
}

.spis_produktow .spis_produktow_lista .spis_produktow_lista_produkty .categoryList_products>.row>li a {
    color: #333;
    padding: 16px !important;
    margin: 0px 16px;
    display: block;
    overflow: hidden;
}

.spis_produktow .spis_produktow_lista .spis_produktow_lista_produkty .categoryList_products>.row>li a:hover {
    text-decoration: none;
}

.spis_produktow .spis_produktow_lista .spis_produktow_lista_produkty .categoryList_products>.row>li a span {
    display: block;
    margin: 0px auto;
}

.spis_produktow .spis_produktow_menu li.poziom1 {
    padding-left: 0px;
}

.spis_produktow .spis_produktow_menu li.poziom2 {
    margin-left: 15px;
    border-left: none;
}

.spis_produktow .spis_produktow_menu li.poziom2 a {
    font-size: 13px;
    margin: 0px;
    padding: 5px 10px 0px 10px;
    background: #ebebeb;
}

.spis_produktow .spis_produktow_menu li.poziom2 a:before {
    bottom: 0px;
}

.header .shopping-cart::after {
    left: 49%;
}

.header .shopping-cart .shopping-cart-footer a .fa {
    margin-left: 0px;
}

.header .shopping-cart .shopping-cart-footer a.button:first-child {
    width: 12%;
    float: left;
    background-color: #999;
    text-align: center;
}

.header .shopping-cart .shopping-cart-footer a.button:nth-child(2) {
    width: 86%;
    float: right;
    margin-left: 5px;
}

.isMobile .shopping-cart .shopping-cart-items {
    max-height: 80vh;
}

.isMobile .shopping-cart {
    position: absolute;
    display: none;
    flex-flow: column;
    height: 100vh;
    z-index: 10001;
    width: 100%;
    top: -20px;
    padding-bottom: 0px;
    bottom: -20px;
}

.isMobile .shopping-cart.cart-show {
    display: flex;
}

.isMobile .shopping-cart .shopping-cart-header {
    flex: 0 1 auto;
    /* The above is shorthand for:
  flex-grow: 0,
  flex-shrink: 1,
  flex-basis: auto
  */
}

.isMobile .shopping-cart .shopping-cart-items {
    flex: 1 1 auto;
    margin-right: -15px;
}

.isMobile .shopping-cart .shopping-cart-footer {
    flex: 0 1 10px;
}

.isMobile .shopping-cart .shopping-cart-footer #cartClose {
    position: absolute;
    top: 10px;
    right: 16px;
    color: #010301 !important;
    background: transparent !important;
    width: 22px;
    font-size: 20px;
}

.isMobile .shopping-cart .shopping-cart-header .shopping-cart-total {
    margin-right: 44px;
}

.isMobile .shopping-cart .shopping-cart-footer a.button:nth-child(2) {
    width: 98%;
}

.isMobile .shopping-cart::after,
.isMobile .shopping-cart::before {
    display: none;
}

.isMobile .shopping-cart {
    margin: 0px;
    top: 0px;
    bottom: 0px;
}

.usersAaccount .usersAaccount_basekt .usersAaccount_basekt_listOrder .input_buy div {
    top: 5px;
}

.usersAaccount_basekt_btn>input {
    padding-left: 32px;
    height: 32px;
    border: 1px solid #ddd;
    cursor: pointer;
}

.usersAaccount_basekt_btn>input:hover {
    background-color: #f7f7f7 !important;
}

.usersAaccount .usersAaccount_basekt .usersAaccount_basekt_btn .wzorzec {
    background: url(../icons/icon-wzorzec.png) 3px 3px no-repeat #fff;
}

.usersAaccount_basekt_btn p:first-of-type {
    margin-top: 8px;
}

p.bg-light.text-danger {
    font-weight: bold;
    background: #ffebee !important;
}

#ProductThumbs a {
    margin: 8px 4px;
    display: inline-block;
}

#ProductThumbs img {
    max-height: 64px;
    width: auto;
    display: inline-block;
}

.ilosc-strona i,
.sortuj i {
    display: none;
}

.kokpit a {
    border: 1px solid #ddd;
    text-align: center;
    padding: 8px;
    transition: all .25s ease-in
}

.kokpit a span {
    display: block;
    clear: both;
    color: #4d555b!important
}

.kokpit a:hover {
    background: #f7f7f7;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    border-color: #f7f7f7;
    text-decoration: none
}

.komunikaty {
    background-color: transparent !important;
    border: none;
    padding: 16px;
    color: #731f73;
    text-align: center;
    border-bottom: 4px solid #eee;
}

.komunikaty i {
    color: #fff;
    background: #731f73;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    border-radius: 16px;
    padding: 7px;
    margin-right: 8px;
}

@media (max-width: 992px) {
    .navbar-toggler {
        display: block;
        width: 100%;
        text-align: left;
    }
    .spis_produktow .spis_produktow_lista .spis_produktow_lista_produkty ul li {
        padding: 0 16px !important
    }
    .header .header_tel i {
        display: inline-block;
    }
    .header .header_tel span:nth-child(2) {
        display: none;
    }
    .header .header_links {
        text-align: center;
        justify-content: center;
    }
    .header .header_links a {
        margin-left: 16px;
    }
    .header .header_links a:first-child {
        margin-left: 0px;
    }
    .menuTop {
        margin-top: 8px;
    }
    #navbarSupportedContent a {
        padding: 4px 8px 4px 16px;
    }
    .col.sidemenu {
        position: absolute !important;
        display: none !important;
    }
    .menuTop .navbar-expand-lg .navbar-nav .nav-link {
        padding: 8px 8px 8px 16px;
    }
    .spis_produktow .spis_produktow_lista .spis_produktow_lista_produkty ul li {
        padding-bottom: 46px !important;
    }
    .ilosc-strona i,
    .sortuj i {
        display: inline-block;
    }
    .ilosc-strona span,
    .sortuj span {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .usersAaccount {
        padding: 0px;
    }
    .usersAaccount .navbar {
        margin-bottom: 8px;
    }
    .usersAaccount h1 {
        margin-bottom: 16px;
    }
    .usersAaccount .row>div {
        padding: 8px !important;
    }
    .usersAaccount .usersAaccount_basekt .usersAaccount_basekt_listOrder .input_buy div {
        width: 16px;
        background-size: 16px 16px;
        top: 5px;
    }
    .usersAaccount .usersAaccount_basekt .usersAaccount_basekt_listOrder .input_buy .input_buy_plus {
        right: 12px;
    }
    .usersAaccount .usersAaccount_basekt .usersAaccount_basekt_listOrder .input_buy .input_buy_minus {
        left: 16px;
    }
    .usersAaccount .usersAaccount_basekt .usersAaccount_basekt_listOrder .table.table-sm tr th:nth-child(1),
    .usersAaccount .usersAaccount_basekt .usersAaccount_basekt_listOrder .table.table-sm tr td:nth-child(1) {
        display: none;
    }
    .usersAaccount .usersAaccount_basekt .usersAaccount_basekt_listOrder .table.table-sm tr th:nth-child(3),
    .usersAaccount .usersAaccount_basekt .usersAaccount_basekt_listOrder .table.table-sm tr td:nth-child(3) {
        display: none;
    }
    .usersAaccount .usersAaccount_basekt .usersAaccount_basekt_listOrder .table.table-sm tr th:nth-child(4),
    .usersAaccount .usersAaccount_basekt .usersAaccount_basekt_listOrder .table.table-sm tr td:nth-child(4) {
        display: none;
    }
    .usersAaccount .usersAaccount_basekt .usersAaccount_basekt_listOrder .table.table-sm tr th:nth-child(5),
    .usersAaccount .usersAaccount_basekt .usersAaccount_basekt_listOrder .table.table-sm tr td:nth-child(5) {
        display: none;
    }
    .usersAaccount .usersAaccount_basekt .usersAaccount_basekt_listOrder .table.table-sm tr.suma td {
        display: table-cell !important;
    }
    .isMobile #searchInfo {
        padding: 8px;
        width: auto;
    }
    .isMobile #searchInfo table tr td:first-child {
        display: none;
    }
    .isMobile #searchInfo table tr td:nth-child(2) a {
        margin-left: 0px;
    }
    .isMobile #searchInfo table tr td {
        border-bottom: 1px solid #fff;
        padding-top: 8px;
    }
    .isMobile #searchInfo table tr :hover td {
        background: #efefef;
    }
    .isMobile #searchInfo .btn_shop.btn_shop--basket {
        width: 32px !important;
    }
    .isMobile #searchInfo .btn_shop.btn_shop--basket span {
        text-indent: -300px;
    }
    .isMobile #searchInfo .btn_shop--basket span::after {
        right: 0px;
    }
    .isMobile .shopping-cart .shopping-cart-footer {
        padding: 8px 0px;
    }
    .zalogujSie {
        padding-top: 16px;
    }
    .header .shopping-cart .shopping-cart-items .img-fluid {
        max-height: 80px;
    }
    .header .header_firstRow {
        background: #f6f6f6;
        border-bottom: #fdfdfd;
    }
    .header .header_firstRow .header_dropdown {
        position: absolute;
        background: #fff;
        margin-left: 2px;
    }
    .sciezka>div {
        padding-left: 8px !important;
    }
    #dropdownMenuLink span {
        display: none;
    }
    .stopka .col-12 {
        padding: 4px 16px !important;
    }
    .spis_produktow .spis_produktow_lista {
        padding-left: 0px;
    }
    .dropdown-item {
        white-space: normal;
    }
    .header {
        padding-top: 0px;
    }
    .header form>div {
        margin-bottom: 0px !important;
    }
    .header .header_row ::after {
        background: none !important;
        display: none;
    }
    .header .header_twoRow {
        padding-top: 52px;
        text-align: center;
    }
    .header .header_row div {
        margin: 0px;
        width: 25%;
        text-align: left;
        padding-left: 2px;
    }
    .header .header_row div:nth-child(3) {
        width: 48%;
    }
    .header .header_tel {
        display: none;
    }
    .header .header_basket {
        background: #f6f6f6 !important;
        padding: 6px 0px;
    }
    .header .header_basket:before {
        display: none !important;
    }
    .header .header_basket i,
    .header .header_cash i,
    .header .header_lang i,
    .header .header_tel i {
        display: inline-block;
    }
    .header .header_basket span,
    .header .header_cash span,
    .header .header_lang span,
    .header .header_tel span:nth-child(2) {
        display: none;
    }
    .active-filters-inner a.text-danger {
        display: block;
        clear: both;
    }
    .spis_produktow .spis_produktow_single {
        padding-left: 0px;
    }
    .spis_produktow_lista_produkty h3:first-child {
        padding-left: 16px;
    }
    .spis_produktow_lista_sort div.row>div:last-child {
        margin-top: 0px;
    }
    .spis_produktow .spis_produktow_lista .spis_produktow_lista_produkty ul li .btn_shop {
        width: 96%;
        margin: 8px auto;
        float: none;
    }
    .ilosc-strona span,
    .sortuj span {
        display: none;
    }
    .spis_produktow .spis_produktow_lista .sort_price {
        min-width: 60px;
    }
}



/* POPRAWKI PAWEŁ */
.komunikat__godziny {
display: block;
position: relative;
background-color:#CCCCCC;
padding: 7px;
border: none;
font-size: 15px;
font-weight: 600;
text-align: center;
}
.komunikat__godziny span {
display: inline-block;
position: relative;
padding-left: 30px;
}
.komunikat__godziny span:before {
color: #fff;
background: #731f73 url('../icons/icon-wykrzyknik.png') center center no-repeat;
width: 22px;
height: 22px;
border-radius: 50%;
display: block;
position: absolute;
content:'';
left: 0px;
top:50%;
margin-top: -11px;
}

body {
opacity: 0;  
}

.dropdown-item.active, .dropdown-item:active {background: white !important}
.onas .onasCnt p a {color: black}
.txtPage {font-family: Lato,sans-serif;  font-weight: 400; color: #747373;}
.txtPage a {font-family: Lato,sans-serif;  font-weight: 400; color:black;}